AdRotate Banner Manager - Version 3.11.7

Version Description

FREE = * [new] More 'after paragraph' options for Post Injection * [change] Removed all 'every N paragraph' options for post injection * [fix] Responsive class overwriting existing html classes * [fix] Post Injection cutting off content at the end of posts * [fix] Impression timer not always accurate for some users * [fix] Timezone notation not always valid * [i18n] New and updated strings

Download this release

Release Info

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

Code changes from version 3.11.6 to 3.11.7

adrotate-functions.php CHANGED
@@ -32,15 +32,11 @@ function adrotate_shortcode($atts, $content = null) {
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.', 0, 0, 0) -->';
42
  $output .= adrotate_group($group_ids, 0, 0, 0);
43
- if($adrotate_config['supercache'] == "Y") $output .= '<!--/mfunc-->';
44
  }
45
 
46
  if($adrotate_config['w3caching'] == "Y") $output .= '<!-- /mfunc -->';
@@ -59,7 +55,7 @@ function adrotate_shortcode($atts, $content = null) {
59
  function adrotate_is_networked() {
60
  if(!function_exists('is_plugin_active_for_network')) require_once(ABSPATH.'/wp-admin/includes/plugin.php');
61
 
62
- if(is_plugin_active_for_network(ADROTATE_FOLDER.'/adrotate.php')) {
63
  return true;
64
  }
65
  return false;
@@ -625,7 +621,7 @@ function adrotate_ad_is_in_groups($id) {
625
  Name: adrotate_hash
626
 
627
  Purpose: Generate the adverts clicktracking hash
628
- Receive: $ad, $group, $remote, $blog_id
629
  Return: $result
630
  Since: 3.9.12
631
  -------------------------------------------------------------*/
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
  $output .= adrotate_ad($banner_id, true, 0, 0);
 
36
  }
37
 
38
  if($banner_id == 0 AND $group_ids > 0) { // Show group
 
39
  $output .= adrotate_group($group_ids, 0, 0, 0);
 
40
  }
41
 
42
  if($adrotate_config['w3caching'] == "Y") $output .= '<!-- /mfunc -->';
55
  function adrotate_is_networked() {
56
  if(!function_exists('is_plugin_active_for_network')) require_once(ABSPATH.'/wp-admin/includes/plugin.php');
57
 
58
+ if(is_plugin_active_for_network('adrotate/adrotate.php')) {
59
  return true;
60
  }
61
  return false;
621
  Name: adrotate_hash
622
 
623
  Purpose: Generate the adverts clicktracking hash
624
+ Receive: $ad, $group, $blog_id
625
  Return: $result
626
  Since: 3.9.12
627
  -------------------------------------------------------------*/
adrotate-manage-publisher.php CHANGED
@@ -333,6 +333,8 @@ function adrotate_insert_group() {
333
  function adrotate_request_action() {
334
  global $wpdb, $adrotate_config;
335
 
 
 
336
  if(wp_verify_nonce($_POST['adrotate_nonce'],'adrotate_bulk_ads_active') OR wp_verify_nonce($_POST['adrotate_nonce'],'adrotate_bulk_ads_disable')
337
  OR wp_verify_nonce($_POST['adrotate_nonce'],'adrotate_bulk_ads_error') OR wp_verify_nonce($_POST['adrotate_nonce'],'adrotate_bulk_ads_queue')
338
  OR wp_verify_nonce($_POST['adrotate_nonce'],'adrotate_bulk_groups')) {
@@ -352,9 +354,6 @@ function adrotate_request_action() {
352
  } else if(isset($_POST['adrotate_error_action'])) {
353
  // Erroneous ads listing call
354
  $actions = $_POST['adrotate_error_action'];
355
- } else {
356
- // If neither, protect user with invalid ID
357
- $banner_ids = $group_ids = '';
358
  }
359
  list($action, $specific) = explode("-", $actions);
360
 
@@ -627,8 +626,6 @@ function adrotate_options_submit() {
627
  else $config['widgetpadding'] = 'N';
628
  if(isset($_POST['adrotate_w3caching'])) $config['w3caching'] = 'Y';
629
  else $config['w3caching'] = 'N';
630
- if(isset($_POST['adrotate_supercache'])) $config['supercache'] = 'Y';
631
- else $config['supercache'] = 'N';
632
  if(isset($_POST['adrotate_jquery'])) $config['jquery'] = 'Y';
633
  else $config['jquery'] = 'N';
634
  if(isset($_POST['adrotate_jsfooter'])) $config['jsfooter'] = 'Y';
333
  function adrotate_request_action() {
334
  global $wpdb, $adrotate_config;
335
 
336
+ $banner_ids = $group_ids = '';
337
+
338
  if(wp_verify_nonce($_POST['adrotate_nonce'],'adrotate_bulk_ads_active') OR wp_verify_nonce($_POST['adrotate_nonce'],'adrotate_bulk_ads_disable')
339
  OR wp_verify_nonce($_POST['adrotate_nonce'],'adrotate_bulk_ads_error') OR wp_verify_nonce($_POST['adrotate_nonce'],'adrotate_bulk_ads_queue')
340
  OR wp_verify_nonce($_POST['adrotate_nonce'],'adrotate_bulk_groups')) {
354
  } else if(isset($_POST['adrotate_error_action'])) {
355
  // Erroneous ads listing call
356
  $actions = $_POST['adrotate_error_action'];
 
 
 
357
  }
358
  list($action, $specific) = explode("-", $actions);
359
 
626
  else $config['widgetpadding'] = 'N';
627
  if(isset($_POST['adrotate_w3caching'])) $config['w3caching'] = 'Y';
628
  else $config['w3caching'] = 'N';
 
 
629
  if(isset($_POST['adrotate_jquery'])) $config['jquery'] = 'Y';
630
  else $config['jquery'] = 'N';
631
  if(isset($_POST['adrotate_jsfooter'])) $config['jsfooter'] = 'Y';
adrotate-output.php CHANGED
@@ -46,7 +46,7 @@ function adrotate_ad($banner_id, $individual = true, $group = null, $site = 0) {
46
  if($individual == true) $output .= '</div>';
47
 
48
  if($adrotate_config['stats'] == 1 AND $banner->tracker == "Y") {
49
- adrotate_count_impression($banner->id, 0, 0);
50
  }
51
  } else {
52
  $output .= adrotate_error('ad_expired', array($banner_id));
@@ -179,7 +179,7 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
179
  }
180
 
181
  if($adrotate_config['stats'] == 1){
182
- adrotate_count_impression($selected[$banner_id]->id, $group->id, 0);
183
  }
184
 
185
  unset($selected[$banner_id]);
@@ -194,7 +194,7 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
194
  $output .= '</div>';
195
 
196
  if($adrotate_config['stats'] == 1){
197
- adrotate_count_impression($selected[$banner_id]->id, $group->id, 0);
198
  }
199
  }
200
 
@@ -218,208 +218,118 @@ function adrotate_group($group_ids, $fallback = 0, $weight = 0, $site = 0) {
218
  }
219
 
220
  /*-------------------------------------------------------------
221
- Name: adrotate_inject_pages
222
 
223
- Purpose: Add an advert to a single page
224
  Receive: $post_content
225
  Return: $post_content
226
  Added: 3.7
227
  -------------------------------------------------------------*/
228
- function adrotate_inject_pages($post_content) {
229
  global $wpdb, $post, $adrotate_debug;
230
-
 
 
231
  if(is_page()) {
232
  // Inject ads into page
233
  $ids = $wpdb->get_results("SELECT `id`, `page`, `page_loc`, `page_par` FROM `{$wpdb->prefix}adrotate_groups` WHERE `page_loc` > 0;");
234
 
235
- $group_array = array();
236
  foreach($ids as $id) {
237
  $pages = explode(",", $id->page);
238
  if(!is_array($pages)) $pages = array();
239
 
240
  if(in_array($post->ID, $pages)) {
241
- $group_array[$id->id] = array('location' => $id->page_loc, 'paragraph' => $id->page_par, 'pages' => $pages);
242
  }
243
  }
244
-
245
- if($adrotate_debug['general'] == true) {
246
- echo "<p><strong>[DEBUG][adrotate_inject_posts()] group_array</strong><pre>";
247
- print_r($group_array);
248
- echo "</pre></p>";
249
- }
250
  unset($ids, $pages);
251
-
252
- $group_count = count($group_array);
253
- if($group_count > 0) {
254
- if($group_count > 1) {
255
- // Try to prevent the same ad from showing when there are multiple ads to show
256
- $paragraph_count = substr_count($post_content, '<p>');
257
- if($paragraph_count == 0 OR $group_count < $paragraph_count) {
258
- $paragraph_count = $group_count;
259
- }
260
- $group_choice = array_rand($group_array, $paragraph_count);
261
- if(!is_array($group_choice)) $group_choice = array($group_choice);
262
-
263
- shuffle($group_choice);
264
- } else {
265
- $group_choice = array_rand($group_array, 1);
266
- $group_choice = array($group_choice,$group_choice);
267
- }
268
-
269
- if($adrotate_debug['general'] == true) {
270
- echo "<p><strong>[DEBUG][adrotate_inject_posts()] Choices</strong><pre>";
271
- echo "Group count: ".$group_count."</br>";
272
- print_r($group_choice);
273
- echo "</pre></p>";
274
- }
275
-
276
- $before = $after = 0;
277
- foreach($group_choice as $key => $group_id) {
278
- if(is_page($group_array[$group_id]['pages'])) {
279
- // Advert in front of content
280
- if(($group_array[$group_id]['location'] == 1 OR $group_array[$group_id]['location'] == 3) AND $before == 0) {
281
- $post_content = adrotate_group($group_id).$post_content;
282
- $before = 1;
283
- }
284
-
285
- // Advert behind the content
286
- if(($group_array[$group_id]['location'] == 2 OR $group_array[$group_id]['location'] == 3) AND $after == 0) {
287
- $post_content = $post_content.adrotate_group($group_id);
288
- $after = 1;
289
- }
290
-
291
- // Adverts inside the content
292
- if($group_array[$group_id]['location'] == 4 AND $key == 0) {
293
- preg_match_all("/(?:.*?)<p[^>]*>(?:.*?)<\/p>(?:<\/[a-z]*?>)*/is", $post_content, $paragraphs);
294
- // $paragraphs = explode("</p>", $post_content);
295
-
296
- $par = 1;
297
- $post_content = '';
298
- foreach($paragraphs[0] as &$paragraph) {
299
- // foreach($paragraphs as &$paragraph) {
300
- if($par == $group_array[$group_id]['paragraph']
301
- OR ($par == 2 AND $group_array[$group_id]['paragraph'] == 20)
302
- OR ($par == 3 AND $group_array[$group_id]['paragraph'] == 30)
303
- OR ($par == 4 AND $group_array[$group_id]['paragraph'] == 40)) {
304
- $paragraph .= adrotate_group($group_id);
305
-
306
- $par++;
307
- if($group_array[$group_id]['paragraph'] > 1 AND $group_array[$group_id]['paragraph'] < 10) {
308
- $par = 1;
309
- }
310
- } else {
311
- $par++;
312
- }
313
- $post_content .= $paragraph;
314
- unset($paragraph);
315
- }
316
- }
317
- }
318
- }
319
- }
320
- unset($group_choice, $group_count, $group_array, $paragraph, $paragraph_count, $before, $after);
321
  }
322
- return $post_content;
323
- }
324
-
325
- /*-------------------------------------------------------------
326
- Name: adrotate_inject_posts
327
-
328
- Purpose: Add an advert to a single post
329
- Receive: $post_content
330
- Return: $post_content
331
- Added: 3.7
332
- -------------------------------------------------------------*/
333
- function adrotate_inject_posts($post_content) {
334
- global $wpdb, $adrotate_debug;
335
 
336
  if(is_single()) {
337
  // Inject ads into posts in specified category
338
  $ids = $wpdb->get_results("SELECT `id`, `cat`, `cat_loc`, `cat_par` FROM `{$wpdb->prefix}adrotate_groups` WHERE `cat_loc` > 0;");
339
  $wp_categories = get_terms('category', array('fields' => 'ids'));
340
 
341
- $group_array = array();
342
  foreach($ids as $id) {
343
  $categories = explode(",", $id->cat);
344
  if(!is_array($categories)) $categories = array();
345
 
346
  foreach($wp_categories as &$value) {
347
  if(in_array($value, $categories)) {
348
- $group_array[$id->id] = array('location' => $id->cat_loc, 'paragraph' => $id->cat_par, 'categories' => $categories);
349
  }
350
  }
351
  }
352
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
353
  if($adrotate_debug['general'] == true) {
354
- echo "<p><strong>[DEBUG][adrotate_inject_posts()] group_array</strong><pre>";
355
- print_r($group_array);
356
  echo "</pre></p>";
357
- }
358
- unset($ids, $wp_categories, $categories);
359
-
360
- $group_count = count($group_array);
361
- if($group_count > 0) {
362
- if($group_count > 1) {
363
- // Try to prevent the same ad from showing when there are multiple ads to show
364
- $paragraph_count = substr_count($post_content, '<p>');
365
- if($paragraph_count == 0 OR $group_count < $paragraph_count) {
366
- $paragraph_count = $group_count;
 
 
 
 
 
367
  }
368
- $group_choice = array_rand($group_array, $paragraph_count);
369
- if(!is_array($group_choice)) $group_choice = array($group_choice);
370
 
371
- shuffle($group_choice);
372
- } else {
373
- $group_choice = array_rand($group_array, 1);
374
- $group_choice = array($group_choice,$group_choice);
375
- }
376
-
377
- if($adrotate_debug['general'] == true) {
378
- echo "<p><strong>[DEBUG][adrotate_inject_posts()] group_choice</strong><pre>";
379
- print_r($group_choice);
380
- echo "</pre></p>";
381
- }
382
-
383
- $before = $after = 0;
384
- foreach($group_choice as $key => $group_id) {
385
- if(in_category($group_array[$group_id]['categories'])) {
386
- // Advert in front of content
387
- if(($group_array[$group_id]['location'] == 1 OR $group_array[$group_id]['location'] == 3) AND $before == 0) {
388
- $post_content = adrotate_group($group_id).$post_content;
389
- $before = 1;
390
- }
391
 
392
- // Advert behind content
393
- if(($group_array[$group_id]['location'] == 2 OR $group_array[$group_id]['location'] == 3) AND $after == 0) {
394
- $post_content = $post_content.adrotate_group($group_id);
395
- $after = 1;
396
- }
397
-
398
- // Adverts inside the content
399
- if($group_array[$group_id]['location'] == 4 AND $key == 0) {
400
- preg_match_all("/(?:.*?)<p[^>]*>(?:.*?)<\/p>(?:<\/[a-z]*?>)*/is", $post_content, $paragraphs);
401
- // $paragraphs = explode("</p>", $post_content);
402
-
403
- $par = 1;
404
- $post_content = '';
405
- foreach($paragraphs[0] as &$paragraph) {
406
- // foreach($paragraphs as &$paragraph) {
407
- if($par == $group_array[$group_id]['paragraph']
408
- OR ($par == 2 AND $group_array[$group_id]['paragraph'] == 20)
409
- OR ($par == 3 AND $group_array[$group_id]['paragraph'] == 30)
410
- OR ($par == 4 AND $group_array[$group_id]['paragraph'] == 40)) {
411
- $paragraph .= adrotate_group($group_id);
412
-
413
- $par++;
414
- if($group_array[$group_id]['paragraph'] > 1 AND $group_array[$group_id]['paragraph'] < 10) {
415
- $par = 1;
416
- }
417
- } else {
418
- $par++;
419
- }
420
- $post_content .= $paragraph;
421
- unset($paragraph);
422
  }
 
 
 
 
423
  }
424
  }
425
  }
@@ -430,18 +340,6 @@ function adrotate_inject_posts($post_content) {
430
  return $post_content;
431
  }
432
 
433
- /*-------------------------------------------------------------
434
- Name: adrotate_block (OBSOLETE)
435
-
436
- Purpose: This function is no longer supported. Replace blocks with groups!
437
- Receive: $block_id, $weight
438
- Return: $output
439
- Since: 3.0
440
- -------------------------------------------------------------*/
441
- function adrotate_block($block_id = 0, $weight = 0) {
442
- return null;
443
- }
444
-
445
  /*-------------------------------------------------------------
446
  Name: adrotate_preview
447
 
@@ -522,7 +420,7 @@ function adrotate_ad_output($id, $group = 0, $bannercode, $tracker, $link, $imag
522
  preg_match_all('/<img[^>](?:.*?)>/i', $banner_output, $matches, PREG_SET_ORDER);
523
  if(isset($matches[0])) {
524
  foreach($matches[0] as $value) {
525
- if(preg_match('/<img[^>]+class=\"(?:.+?)\"[^>]*>/i', $value, $regs)) {
526
  $result = $regs[1];
527
  if($responsive == 'Y') $result .= " responsive";
528
  $result = trim($result);
@@ -566,12 +464,12 @@ function adrotate_custom_scripts() {
566
  }
567
 
568
  if($adrotate_config['jquery'] == 'Y') wp_enqueue_script('jquery', false, false, false, $in_footer);
569
- if(get_option('adrotate_dynamic_required') > 0) wp_enqueue_script('jshowoff-adrotate', plugins_url('/library/jquery.adrotate.dyngroup.js', __FILE__), false, '0.7', $in_footer);
570
- if(get_option('adrotate_responsive_required') > 0) wp_enqueue_script('responsive-adrotate', plugins_url('/library/jquery.adrotate.responsive.js', __FILE__), false, '0.4', $in_footer);
571
 
572
  // Make clicktracking and impression tracking a possibility
573
  if($adrotate_config['stats'] == 1){
574
- wp_enqueue_script('clicktrack-adrotate', plugins_url('/library/jquery.adrotate.clicktracker.js', __FILE__), false, '0.7', $in_footer);
575
  wp_localize_script('jshowoff-adrotate', 'impression_object', array('ajax_url' => admin_url( 'admin-ajax.php')));
576
  wp_localize_script('clicktrack-adrotate', 'click_object', array('ajax_url' => admin_url('admin-ajax.php')));
577
  }
@@ -838,7 +736,7 @@ function adrotate_notifications_dashboard() {
838
  echo ' <div class="adrotate_banner">';
839
  echo ' <div class="button_div"><a class="button" target="_blank" href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-upgradebanner&pk_kwd=upgrade_adrotatefree">'.__('Learn More', 'adrotate').'</a></div>';
840
  echo ' <div class="text">'.__("You've been using <strong>AdRotate</strong> for a while now. Why not upgrade to the <strong>PRO</strong> version", 'adrotate').'?<br /><span>'.__('Get more features to even better run your advertising campaigns.', 'adrotate' ).' '.__('Thank you for your consideration!', 'adrotate' ).'</span></div>';
841
- echo ' <a class="close_banner" href="admin.php?page=adrotate-pro&hide=1"><img title="Close" src="'.plugins_url('images/close-icon.png', __FILE__).'" alt=""/></a>';
842
  echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
843
  echo ' </div>';
844
  echo '</div>';
@@ -850,7 +748,7 @@ function adrotate_notifications_dashboard() {
850
  echo ' <div class="adrotate_banner">';
851
  echo ' <div class="button_div"><a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform">Rate AdRotate</a></div>';
852
  echo ' <div class="text">If you like <strong>AdRotate</strong> please let the world know that you do. Thanks for your support!<br /><span>If you have questions, suggestions or something else that doesn\'t belong in a review, please <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree-reviewbanner&pk_kwd=get_help" target="_blank">get in touch</a>!</span></div>';
853
- echo ' <a class="close_banner" href="admin.php?page=adrotate&hide=2"><img title="Close" src="'.plugins_url('images/close-icon.png', __FILE__).'" alt=""/></a>';
854
  echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
855
  echo ' </div>';
856
  echo '</div>';
46
  if($individual == true) $output .= '</div>';
47
 
48
  if($adrotate_config['stats'] == 1 AND $banner->tracker == "Y") {
49
+ adrotate_count_impression($banner->id, 0, 0, $adrotate_config['impression_timer']);
50
  }
51
  } else {
52
  $output .= adrotate_error('ad_expired', array($banner_id));
179
  }
180
 
181
  if($adrotate_config['stats'] == 1){
182
+ adrotate_count_impression($selected[$banner_id]->id, $group->id, 0, $adrotate_config['impression_timer']);
183
  }
184
 
185
  unset($selected[$banner_id]);
194
  $output .= '</div>';
195
 
196
  if($adrotate_config['stats'] == 1){
197
+ adrotate_count_impression($selected[$banner_id]->id, $group->id, 0, $adrotate_config['impression_timer']);
198
  }
199
  }
200
 
218
  }
219
 
220
  /*-------------------------------------------------------------
221
+ Name: adrotate_inject_posts
222
 
223
+ Purpose: Add an advert to a single post
224
  Receive: $post_content
225
  Return: $post_content
226
  Added: 3.7
227
  -------------------------------------------------------------*/
228
+ function adrotate_inject_posts($post_content) {
229
  global $wpdb, $post, $adrotate_debug;
230
+
231
+ $group_array = array();
232
+
233
  if(is_page()) {
234
  // Inject ads into page
235
  $ids = $wpdb->get_results("SELECT `id`, `page`, `page_loc`, `page_par` FROM `{$wpdb->prefix}adrotate_groups` WHERE `page_loc` > 0;");
236
 
 
237
  foreach($ids as $id) {
238
  $pages = explode(",", $id->page);
239
  if(!is_array($pages)) $pages = array();
240
 
241
  if(in_array($post->ID, $pages)) {
242
+ $group_array[$id->id] = array('location' => $id->page_loc, 'paragraph' => $id->page_par, 'pages' => $pages, 'categories' => array());
243
  }
244
  }
 
 
 
 
 
 
245
  unset($ids, $pages);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
247
 
248
  if(is_single()) {
249
  // Inject ads into posts in specified category
250
  $ids = $wpdb->get_results("SELECT `id`, `cat`, `cat_loc`, `cat_par` FROM `{$wpdb->prefix}adrotate_groups` WHERE `cat_loc` > 0;");
251
  $wp_categories = get_terms('category', array('fields' => 'ids'));
252
 
 
253
  foreach($ids as $id) {
254
  $categories = explode(",", $id->cat);
255
  if(!is_array($categories)) $categories = array();
256
 
257
  foreach($wp_categories as &$value) {
258
  if(in_array($value, $categories)) {
259
+ $group_array[$id->id] = array('location' => $id->cat_loc, 'paragraph' => $id->cat_par, 'pages' => array(), 'categories' => $categories);
260
  }
261
  }
262
  }
263
+ unset($ids, $wp_categories, $categories);
264
+ }
265
+
266
+ if($adrotate_debug['general'] == true) {
267
+ echo "<p><strong>[DEBUG][adrotate_inject_posts()] group_array</strong><pre>";
268
+ print_r($group_array);
269
+ echo "</pre></p>";
270
+ }
271
+
272
+ $group_count = count($group_array);
273
+ if($group_count > 0) {
274
+ if($group_count > 1) {
275
+ // Try to prevent the same ad from showing when there are multiple ads to show
276
+ $paragraph_count = substr_count($post_content, '<p>');
277
+ if($paragraph_count == 0 OR $group_count < $paragraph_count) {
278
+ $paragraph_count = $group_count;
279
+ }
280
+ $group_choice = array_rand($group_array, $paragraph_count);
281
+ if(!is_array($group_choice)) $group_choice = array($group_choice);
282
+
283
+ shuffle($group_choice);
284
+ } else {
285
+ $group_choice = array_rand($group_array, 1);
286
+ $group_choice = array($group_choice,$group_choice);
287
+ }
288
+
289
  if($adrotate_debug['general'] == true) {
290
+ echo "<p><strong>[DEBUG][adrotate_inject_posts()] group_choice</strong><pre>";
291
+ print_r($group_choice);
292
  echo "</pre></p>";
293
+ }
294
+
295
+ $before = $after = 0;
296
+ foreach($group_choice as $key => $group_id) {
297
+ if(is_page($group_array[$group_id]['pages']) OR in_category($group_array[$group_id]['categories'])) {
298
+ // Advert in front of content
299
+ if(($group_array[$group_id]['location'] == 1 OR $group_array[$group_id]['location'] == 3) AND $before == 0) {
300
+ $post_content = adrotate_group($group_id).$post_content;
301
+ $before = 1;
302
+ }
303
+
304
+ // Advert behind content
305
+ if(($group_array[$group_id]['location'] == 2 OR $group_array[$group_id]['location'] == 3) AND $after == 0) {
306
+ $post_content = $post_content.adrotate_group($group_id);
307
+ $after = 1;
308
  }
 
 
309
 
310
+ // Adverts inside the content
311
+ if($group_array[$group_id]['location'] == 4 AND $key == 0) {
312
+ $paragraphs = explode("</p>", $post_content);
313
+ $paragraph_count = count($paragraphs);
314
+ $par = 1;
315
+ $post_content = '';
316
+
317
+ // Backward compatibility
318
+ if($group_array[$group_id]['paragraph'] == 20) $group_array[$group_id]['paragraph'] == 2;
319
+ if($group_array[$group_id]['paragraph'] == 30) $group_array[$group_id]['paragraph'] == 3;
320
+ if($group_array[$group_id]['paragraph'] == 40) $group_array[$group_id]['paragraph'] == 4;
 
 
 
 
 
 
 
 
 
321
 
322
+ // Advanced setting
323
+ $middle = ($group_array[$group_id]['paragraph'] == 99) ? ceil($paragraph_count / 2) : 1;
324
+
325
+ foreach($paragraphs as &$paragraph) {
326
+ if($par == $group_array[$group_id]['paragraph'] OR ($par == $middle AND $group_array[$group_id]['paragraph'] == 99)) {
327
+ $paragraph .= adrotate_group($group_id);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
328
  }
329
+ $post_content .= $paragraph."</p>";
330
+ $par++;
331
+
332
+ unset($paragraph);
333
  }
334
  }
335
  }
340
  return $post_content;
341
  }
342
 
 
 
 
 
 
 
 
 
 
 
 
 
343
  /*-------------------------------------------------------------
344
  Name: adrotate_preview
345
 
420
  preg_match_all('/<img[^>](?:.*?)>/i', $banner_output, $matches, PREG_SET_ORDER);
421
  if(isset($matches[0])) {
422
  foreach($matches[0] as $value) {
423
+ if(preg_match('/<img[^>]+class=\"(.+?)\"[^>]*>/i', $value, $regs)) {
424
  $result = $regs[1];
425
  if($responsive == 'Y') $result .= " responsive";
426
  $result = trim($result);
464
  }
465
 
466
  if($adrotate_config['jquery'] == 'Y') wp_enqueue_script('jquery', false, false, false, $in_footer);
467
+ if(get_option('adrotate_dynamic_required') > 0) wp_enqueue_script('jshowoff-adrotate', plugins_url('/library/jquery.adrotate.dyngroup.js', __FILE__), false, null, $in_footer);
468
+ if(get_option('adrotate_responsive_required') > 0) wp_enqueue_script('responsive-adrotate', plugins_url('/library/jquery.adrotate.responsive.js', __FILE__), false, null, $in_footer);
469
 
470
  // Make clicktracking and impression tracking a possibility
471
  if($adrotate_config['stats'] == 1){
472
+ wp_enqueue_script('clicktrack-adrotate', plugins_url('/library/jquery.adrotate.clicktracker.js', __FILE__), false, null, $in_footer);
473
  wp_localize_script('jshowoff-adrotate', 'impression_object', array('ajax_url' => admin_url( 'admin-ajax.php')));
474
  wp_localize_script('clicktrack-adrotate', 'click_object', array('ajax_url' => admin_url('admin-ajax.php')));
475
  }
736
  echo ' <div class="adrotate_banner">';
737
  echo ' <div class="button_div"><a class="button" target="_blank" href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-upgradebanner&pk_kwd=upgrade_adrotatefree">'.__('Learn More', 'adrotate').'</a></div>';
738
  echo ' <div class="text">'.__("You've been using <strong>AdRotate</strong> for a while now. Why not upgrade to the <strong>PRO</strong> version", 'adrotate').'?<br /><span>'.__('Get more features to even better run your advertising campaigns.', 'adrotate' ).' '.__('Thank you for your consideration!', 'adrotate' ).'</span></div>';
739
+ echo ' <a class="close_banner" href="admin.php?page=adrotate-pro&hide=1"><img title="Close" src="'.plugins_url('images/icon-close.png', __FILE__).'" alt=""/></a>';
740
  echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
741
  echo ' </div>';
742
  echo '</div>';
748
  echo ' <div class="adrotate_banner">';
749
  echo ' <div class="button_div"><a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform">Rate AdRotate</a></div>';
750
  echo ' <div class="text">If you like <strong>AdRotate</strong> please let the world know that you do. Thanks for your support!<br /><span>If you have questions, suggestions or something else that doesn\'t belong in a review, please <a href="https://ajdg.solutions/forums/forum/adrotate-for-wordpress/?pk_campaign=adrotatefree-reviewbanner&pk_kwd=get_help" target="_blank">get in touch</a>!</span></div>';
751
+ echo ' <a class="close_banner" href="admin.php?page=adrotate&hide=2"><img title="Close" src="'.plugins_url('images/icon-close.png', __FILE__).'" alt=""/></a>';
752
  echo ' <div class="icon"><img title="" src="'.plugins_url('images/adrotate-logo-60x60.png', __FILE__).'" alt=""/></div>';
753
  echo ' </div>';
754
  echo '</div>';
adrotate-setup.php CHANGED
@@ -46,7 +46,7 @@ function adrotate_activate($network_wide) {
46
  Since: 0.1
47
  -------------------------------------------------------------*/
48
  function adrotate_activate_setup() {
49
- global $wpdb, $current_user, $userdata;
50
 
51
  if(version_compare(PHP_VERSION, '5.3.0', '<') == -1) {
52
  deactivate_plugins(plugin_basename('adrotate/adrotate.php'));
@@ -159,7 +159,7 @@ function adrotate_deactivate_setup() {
159
  Return: -none-
160
  Since: 2.4.2
161
  -------------------------------------------------------------*/
162
- function adrotate_uninstall() {
163
  adrotate_network_propagate('adrotate_uninstall_setup', $network_wide);
164
  }
165
 
@@ -284,7 +284,6 @@ function adrotate_check_config() {
284
  if(!isset($config['widgetalign']) OR ($config['widgetalign'] != 'Y' AND $config['widgetalign'] != 'N')) $config['widgetalign'] = 'N';
285
  if(!isset($config['widgetpadding']) OR ($config['widgetpadding'] != 'Y' AND $config['widgetpadding'] != 'N')) $config['widgetpadding'] = 'N';
286
  if(!isset($config['w3caching']) OR ($config['w3caching'] != 'Y' AND $config['w3caching'] != 'N')) $config['w3caching'] = 'N';
287
- if(!isset($config['supercache']) OR ($config['supercache'] != 'Y' AND $config['supercache'] != 'N')) $config['supercache'] = 'N';
288
  if(!isset($config['jquery']) OR ($config['jquery'] != 'Y' AND $config['jquery'] != 'N')) $config['jquery'] = 'N';
289
  if(!isset($config['jsfooter']) OR ($config['jsfooter'] != 'Y' AND $config['jsfooter'] != 'N')) $config['jsfooter'] = 'Y';
290
  if(!isset($config['adblock']) OR ($config['adblock'] != 'Y' AND $config['adblock'] != 'N')) $config['adblock'] = 'N';
@@ -320,7 +319,7 @@ function adrotate_check_config() {
320
  Since: 3.11.3
321
  -------------------------------------------------------------*/
322
  function adrotate_dummy_data() {
323
- global $wpdb;
324
 
325
  // Initial data
326
  $now = adrotate_now();
46
  Since: 0.1
47
  -------------------------------------------------------------*/
48
  function adrotate_activate_setup() {
49
+ global $wpdb, $userdata;
50
 
51
  if(version_compare(PHP_VERSION, '5.3.0', '<') == -1) {
52
  deactivate_plugins(plugin_basename('adrotate/adrotate.php'));
159
  Return: -none-
160
  Since: 2.4.2
161
  -------------------------------------------------------------*/
162
+ function adrotate_uninstall($network_wide) {
163
  adrotate_network_propagate('adrotate_uninstall_setup', $network_wide);
164
  }
165
 
284
  if(!isset($config['widgetalign']) OR ($config['widgetalign'] != 'Y' AND $config['widgetalign'] != 'N')) $config['widgetalign'] = 'N';
285
  if(!isset($config['widgetpadding']) OR ($config['widgetpadding'] != 'Y' AND $config['widgetpadding'] != 'N')) $config['widgetpadding'] = 'N';
286
  if(!isset($config['w3caching']) OR ($config['w3caching'] != 'Y' AND $config['w3caching'] != 'N')) $config['w3caching'] = 'N';
 
287
  if(!isset($config['jquery']) OR ($config['jquery'] != 'Y' AND $config['jquery'] != 'N')) $config['jquery'] = 'N';
288
  if(!isset($config['jsfooter']) OR ($config['jsfooter'] != 'Y' AND $config['jsfooter'] != 'N')) $config['jsfooter'] = 'Y';
289
  if(!isset($config['adblock']) OR ($config['adblock'] != 'Y' AND $config['adblock'] != 'N')) $config['adblock'] = 'N';
319
  Since: 3.11.3
320
  -------------------------------------------------------------*/
321
  function adrotate_dummy_data() {
322
+ global $wpdb, $current_user;
323
 
324
  // Initial data
325
  $now = adrotate_now();
adrotate-statistics.php CHANGED
@@ -327,7 +327,7 @@ function adrotate_date_start($what) {
327
  case 'day' :
328
  $timezone = get_option('timezone_string');
329
  if($timezone) {
330
- $server_timezone = date('T');
331
  date_default_timezone_set($timezone);
332
  $result = strtotime('00:00:00') + (get_option('gmt_offset') * HOUR_IN_SECONDS);
333
  date_default_timezone_set($server_timezone);
@@ -338,7 +338,7 @@ function adrotate_date_start($what) {
338
  case 'week' :
339
  $timezone = get_option('timezone_string');
340
  if($timezone) {
341
- $server_timezone = date('T');
342
  date_default_timezone_set($timezone);
343
  $result = strtotime('Last Monday', $now) + (get_option('gmt_offset') * HOUR_IN_SECONDS);
344
  date_default_timezone_set($server_timezone);
327
  case 'day' :
328
  $timezone = get_option('timezone_string');
329
  if($timezone) {
330
+ $server_timezone = date('e');
331
  date_default_timezone_set($timezone);
332
  $result = strtotime('00:00:00') + (get_option('gmt_offset') * HOUR_IN_SECONDS);
333
  date_default_timezone_set($server_timezone);
338
  case 'week' :
339
  $timezone = get_option('timezone_string');
340
  if($timezone) {
341
+ $server_timezone = date('e');
342
  date_default_timezone_set($timezone);
343
  $result = strtotime('Last Monday', $now) + (get_option('gmt_offset') * HOUR_IN_SECONDS);
344
  date_default_timezone_set($server_timezone);
adrotate-widget.php CHANGED
@@ -50,15 +50,11 @@ class adrotate_widgets extends WP_Widget {
50
  if($adrotate_config['w3caching'] == 'Y') echo '<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
51
 
52
  if($instance['type'] == "single") {
53
- if($adrotate_config['supercache'] == "Y") echo '<!--mfunc echo adrotate_ad('.$instance['adid'].', true, 0, 0, '.$instance['siteid'].') -->';
54
  echo adrotate_ad($instance['adid'], true, 0, 0, 0);
55
- if($adrotate_config['supercache'] == "Y") echo '<!--/mfunc-->';
56
  }
57
 
58
  if($instance['type'] == "group") {
59
- if($adrotate_config['supercache'] == "Y") echo '<!--mfunc echo adrotate_group('.$instance['adid'].', 0, 0, '.$instance['siteid'].') -->';
60
  echo adrotate_group($instance['adid'], 0, 0, 0);
61
- if($adrotate_config['supercache'] == "Y") echo '<!--/mfunc-->';
62
  }
63
 
64
  if($adrotate_config['w3caching'] == 'Y') echo '<!-- /mfunc -->';
50
  if($adrotate_config['w3caching'] == 'Y') echo '<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
51
 
52
  if($instance['type'] == "single") {
 
53
  echo adrotate_ad($instance['adid'], true, 0, 0, 0);
 
54
  }
55
 
56
  if($instance['type'] == "group") {
 
57
  echo adrotate_group($instance['adid'], 0, 0, 0);
 
58
  }
59
 
60
  if($adrotate_config['w3caching'] == 'Y') echo '<!-- /mfunc -->';
adrotate.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=
5
  Author: Arnan de Gans of AJdG Solutions
6
  Author URI: http://ajdg.solutions/?pk_campaign=adrotatefree-pluginpage&pk_kwd=authorurl
7
  Description: Used on over a hundred thousand websites and by even more people! AdRotate is the popular choice for monetizing your website with adverts while keeping things simple.
8
- Version: 3.11.6
9
  License: GPLv3
10
  */
11
 
@@ -20,20 +20,19 @@ License: GPLv3
20
  ------------------------------------------------------------------------------------ */
21
 
22
  /*--- AdRotate values ---------------------------------------*/
23
- define("ADROTATE_DISPLAY", '3.11.6');
24
  define("ADROTATE_VERSION", 379);
25
  define("ADROTATE_DB_VERSION", 51);
26
- define("ADROTATE_FOLDER", 'adrotate');
27
  /*-----------------------------------------------------------*/
28
 
29
  /*--- Load Files --------------------------------------------*/
30
- include_once(WP_CONTENT_DIR.'/plugins/'.ADROTATE_FOLDER.'/adrotate-setup.php');
31
- include_once(WP_CONTENT_DIR.'/plugins/'.ADROTATE_FOLDER.'/adrotate-manage-publisher.php');
32
- include_once(WP_CONTENT_DIR.'/plugins/'.ADROTATE_FOLDER.'/adrotate-functions.php');
33
- include_once(WP_CONTENT_DIR.'/plugins/'.ADROTATE_FOLDER.'/adrotate-statistics.php');
34
- include_once(WP_CONTENT_DIR.'/plugins/'.ADROTATE_FOLDER.'/adrotate-export.php');
35
- include_once(WP_CONTENT_DIR.'/plugins/'.ADROTATE_FOLDER.'/adrotate-output.php');
36
- include_once(WP_CONTENT_DIR.'/plugins/'.ADROTATE_FOLDER.'/adrotate-widget.php');
37
  /*-----------------------------------------------------------*/
38
 
39
  /*--- Check and Load config ---------------------------------*/
@@ -67,8 +66,7 @@ if(!is_admin()) {
67
  add_shortcode('adrotate', 'adrotate_shortcode');
68
  add_action("wp_enqueue_scripts", 'adrotate_custom_scripts');
69
  add_action('wp_head', 'adrotate_custom_css');
70
- add_filter('the_content', 'adrotate_inject_pages');
71
- add_filter('the_content', 'adrotate_inject_posts');
72
  }
73
  /*-----------------------------------------------------------*/
74
 
@@ -103,7 +101,7 @@ function adrotate_dashboard() {
103
  global $adrotate_config;
104
 
105
  $adrotate_page = $adrotate_pro = $adrotate_adverts = $adrotate_groups = $adrotate_schedules = $adrotate_media = $adrotate_settings = '';
106
- $adrotate_page = add_menu_page('AdRotate', 'AdRotate', 'adrotate_ad_manage', 'adrotate', 'adrotate_info', plugins_url('/images/icon.png', __FILE__), '25.8');
107
  $adrotate_page = add_submenu_page('adrotate', 'AdRotate > '.__('General Info', 'adrotate'), __('General Info', 'adrotate'), 'adrotate_ad_manage', 'adrotate', 'adrotate_info');
108
  $adrotate_pro = add_submenu_page('adrotate', 'AdRotate > '.__('AdRotate Pro', 'adrotate'), __('AdRotate Pro', 'adrotate'), 'adrotate_ad_manage', 'adrotate-pro', 'adrotate_pro');
109
  $adrotate_adverts = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Ads', 'adrotate'), __('Manage Ads', 'adrotate'), 'adrotate_ad_manage', 'adrotate-ads', 'adrotate_manage');
@@ -526,21 +524,22 @@ function adrotate_manage_media() {
526
  <div class="wrap">
527
  <h2><?php _e('Media Management available in AdRotate Pro', 'adrotate'); ?></h2>
528
 
529
- <p><?php _e('Upload images to the AdRotate Pro banners folder from here. This is especially useful if you use responsive adverts with multiple images.', 'adrotate'); ?><br /><?php _e('Media uploading and management is available in AdRotate Pro.', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('More information', 'adrotate'); ?></a>.</p>
530
 
531
- <h3><?php _e('Upload new banner image', 'adrotate'); ?></h3>
532
- <label for="adrotate_image"><input tabindex="1" type="file" name="adrotate_image" disabled /><br /><em><strong><?php _e('Accepted files are:', 'adrotate'); ?></strong> jpg, jpeg, gif, png, swf and flv. <?php _e('Maximum size is 512Kb.', 'adrotate'); ?></em><br /><em><strong><?php _e('Important:', 'adrotate'); ?></strong> <?php _e('Make sure your file has no spaces or special characters in the name. Replace spaces with a - or _.', 'adrotate'); ?></em></label>
 
533
  <?php if(get_option('adrotate_responsive_required') > 0) { ?>
534
  <p><em><?php _e('For responsive adverts make sure the filename is in the following format; "imagename.full.ext". A full set of sized images is strongly recommended.', 'adrotate'); ?></em><br />
535
  <em><?php _e('For smaller size images use ".320", ".480", ".768" or ".1024" in the filename instead of ".full" for the various viewports.', 'adrotate'); ?></em><br />
536
  <em><strong><?php _e('Example:', 'adrotate'); ?></strong> <?php _e('image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert for different viewports.', 'adrotate'); ?></em></p>
537
- <?php } ?>
538
 
539
  <p class="submit">
540
- <input tabindex="2" type="submit" name="adrotate_media_submit" class="button-primary" value="<?php _e('Upload image', 'adrotate'); ?>" disabled />
541
  </p>
542
 
543
- <h3><?php _e('Available banner images in', 'adrotate'); ?> '<?php echo $adrotate_config['banner_folder']; ?>'</h3>
544
  <table class="widefat" style="margin-top: .5em">
545
 
546
  <thead>
@@ -554,6 +553,8 @@ function adrotate_manage_media() {
554
  <tr><td>your-awesome-campaign.jpg</td><td><center><?php _e('Delete', 'adrotate'); ?></center></td></tr>
555
  <tr class="alternate"><td>728x90-advert.jpg</td><td><center><?php _e('Delete', 'adrotate'); ?></center></td></tr>
556
  <tr><td>adrotate-468x60.jpg</td><td><center><?php _e('Delete', 'adrotate'); ?></center></td></tr>
 
 
557
  <tr class="alternate"><td>adrotate-200x200-blue.jpg</td><td><center><?php _e('Delete', 'adrotate'); ?></center></td></tr>
558
  <tr><td>advertising-campaign.jpg</td><td><center><?php _e('Delete', 'adrotate'); ?></center></td></tr>
559
  </tbody>
@@ -754,29 +755,14 @@ function adrotate_options() {
754
  <th valign="top"><?php _e('Widget padding', 'adrotate'); ?></th>
755
  <td><label for="adrotate_widgetpadding"><input type="checkbox" name="adrotate_widgetpadding" <?php if($adrotate_config['widgetpadding'] == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable this to remove the padding (blank space) around ads in widgets. (Does not always work!)', 'adrotate'); ?></label></td>
756
  </tr>
757
-
758
- <?php if($adrotate_config['w3caching'] == "Y" AND !defined('W3TC_DYNAMIC_SECURITY')) { ?>
759
  <tr>
760
  <th valign="top"><?php _e('NOTICE:', 'adrotate'); ?></th>
761
  <td><span style="color:#f00;"><?php _e('You have enabled W3 Total Caching support but not defined the security hash. You need to add the following line to your wp-config.php near the bottom or below line 52 (which defines another hash.) Using the "late init" function needs to be enabled in W3 Total Cache as well too.', 'adrotate'); ?></span><br /><pre>define('W3TC_DYNAMIC_SECURITY', '<?php echo md5(rand(0,999)); ?>');</pre></td>
762
  </tr>
763
- <?php } ?>
764
  <tr>
765
  <th valign="top"><?php _e('W3 Total Caching', 'adrotate'); ?></th>
766
  <td><label for="adrotate_w3caching"><input type="checkbox" name="adrotate_w3caching" <?php if($adrotate_config['w3caching'] == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Check this box if you use W3 Total Caching on your site.', 'adrotate'); ?></label></td>
767
  </tr>
768
-
769
- <?php if($adrotate_config['supercache'] == "Y") { ?>
770
- <tr>
771
- <th valign="top"><?php _e('NOTICE:', 'adrotate'); ?></th>
772
- <td><span style="color:#f00;"><?php _e('You have enabled WP Super Cache support. If you have version 1.4 or newer, this function will not work. WP Super Cache has discontinued support for dynamic content.', 'adrotate'); ?></span></td>
773
- </tr>
774
- <?php } ?>
775
- <tr>
776
- <th valign="top"><?php _e('WP Super Cache', 'adrotate'); ?></th>
777
- <td><label for="adrotate_supercache"><input type="checkbox" name="adrotate_supercache" <?php if($adrotate_config['supercache'] == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Check this box if you use WP Super Cache on your site.', 'adrotate'); ?></label>
778
- </td>
779
- </tr>
780
  <tr>
781
  <th valign="top">&nbsp;</th>
782
  <td><span class="description"><?php _e('It may take a while for the ad to start rotating. The caching plugin needs to refresh the cache. This can take up to a week if not done manually.', 'adrotate'); ?> <?php _e('Caching support only works for [shortcodes] and the AdRotate Widget. If you use a PHP Snippet you need to wrap your PHP in the exclusion code yourself.', 'adrotate'); ?></span></td>
5
  Author: Arnan de Gans of AJdG Solutions
6
  Author URI: http://ajdg.solutions/?pk_campaign=adrotatefree-pluginpage&pk_kwd=authorurl
7
  Description: Used on over a hundred thousand websites and by even more people! AdRotate is the popular choice for monetizing your website with adverts while keeping things simple.
8
+ Version: 3.11.7
9
  License: GPLv3
10
  */
11
 
20
  ------------------------------------------------------------------------------------ */
21
 
22
  /*--- AdRotate values ---------------------------------------*/
23
+ define("ADROTATE_DISPLAY", '3.11.7');
24
  define("ADROTATE_VERSION", 379);
25
  define("ADROTATE_DB_VERSION", 51);
 
26
  /*-----------------------------------------------------------*/
27
 
28
  /*--- Load Files --------------------------------------------*/
29
+ include_once(WP_CONTENT_DIR.'/plugins/adrotate/adrotate-setup.php');
30
+ include_once(WP_CONTENT_DIR.'/plugins/adrotate/adrotate-manage-publisher.php');
31
+ include_once(WP_CONTENT_DIR.'/plugins/adrotate/adrotate-functions.php');
32
+ include_once(WP_CONTENT_DIR.'/plugins/adrotate/adrotate-statistics.php');
33
+ include_once(WP_CONTENT_DIR.'/plugins/adrotate/adrotate-export.php');
34
+ include_once(WP_CONTENT_DIR.'/plugins/adrotate/adrotate-output.php');
35
+ include_once(WP_CONTENT_DIR.'/plugins/adrotate/adrotate-widget.php');
36
  /*-----------------------------------------------------------*/
37
 
38
  /*--- Check and Load config ---------------------------------*/
66
  add_shortcode('adrotate', 'adrotate_shortcode');
67
  add_action("wp_enqueue_scripts", 'adrotate_custom_scripts');
68
  add_action('wp_head', 'adrotate_custom_css');
69
+ add_filter('the_content', 'adrotate_inject_posts', 12);
 
70
  }
71
  /*-----------------------------------------------------------*/
72
 
101
  global $adrotate_config;
102
 
103
  $adrotate_page = $adrotate_pro = $adrotate_adverts = $adrotate_groups = $adrotate_schedules = $adrotate_media = $adrotate_settings = '';
104
+ $adrotate_page = add_menu_page('AdRotate', 'AdRotate', 'adrotate_ad_manage', 'adrotate', 'adrotate_info', plugins_url('/images/icon-menu.png', __FILE__), '25.8');
105
  $adrotate_page = add_submenu_page('adrotate', 'AdRotate > '.__('General Info', 'adrotate'), __('General Info', 'adrotate'), 'adrotate_ad_manage', 'adrotate', 'adrotate_info');
106
  $adrotate_pro = add_submenu_page('adrotate', 'AdRotate > '.__('AdRotate Pro', 'adrotate'), __('AdRotate Pro', 'adrotate'), 'adrotate_ad_manage', 'adrotate-pro', 'adrotate_pro');
107
  $adrotate_adverts = add_submenu_page('adrotate', 'AdRotate > '.__('Manage Ads', 'adrotate'), __('Manage Ads', 'adrotate'), 'adrotate_ad_manage', 'adrotate-ads', 'adrotate_manage');
524
  <div class="wrap">
525
  <h2><?php _e('Media Management available in AdRotate Pro', 'adrotate'); ?></h2>
526
 
527
+ <p><?php _e('Upload images to the AdRotate Pro banners folder from here. This is useful if you use responsive adverts with multiple images or have HTML5 adverts containing multiple files.', 'adrotate'); ?><br /><?php _e('Media uploading and management is available in AdRotate Pro.', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('More information', 'adrotate'); ?></a>.</p>
528
 
529
+ <h3><?php _e('Upload new file', 'adrotate'); ?></h3>
530
+ <label for="adrotate_image"><input tabindex="1" type="file" name="adrotate_image" disabled /><br /><em><strong><?php _e('Accepted files:', 'adrotate'); ?></strong> jpg, jpeg, gif, png, swf and flv. <?php _e('For HTML5 ads you can also upload html and javascript files.', 'adrotate'); ?> <?php _e('Maximum size is 512Kb.', 'adrotate'); ?></em><br /><em><strong><?php _e('Important:', 'adrotate'); ?></strong> <?php _e('Make sure your file has no spaces or special characters in the name. Replace spaces with a - or _.', 'adrotate'); ?><br /><?php _e('If you remove spaces from filenames for HTML5 adverts also edit the html file so it knows about the changed name. For example for the javascript file.', 'adrotate'); ?></em></label>
531
+
532
  <?php if(get_option('adrotate_responsive_required') > 0) { ?>
533
  <p><em><?php _e('For responsive adverts make sure the filename is in the following format; "imagename.full.ext". A full set of sized images is strongly recommended.', 'adrotate'); ?></em><br />
534
  <em><?php _e('For smaller size images use ".320", ".480", ".768" or ".1024" in the filename instead of ".full" for the various viewports.', 'adrotate'); ?></em><br />
535
  <em><strong><?php _e('Example:', 'adrotate'); ?></strong> <?php _e('image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert for different viewports.', 'adrotate'); ?></em></p>
536
+ <?php } ?>
537
 
538
  <p class="submit">
539
+ <input tabindex="2" type="submit" name="adrotate_media_submit" class="button-primary" value="<?php _e('Upload file', 'adrotate'); ?>" disabled /> <em><?php _e('Click only once per file!', 'adrotate'); ?></em>
540
  </p>
541
 
542
+ <h3><?php _e('Available files in', 'adrotate'); ?> '<?php echo $adrotate_config['banner_folder']; ?>'</h3>
543
  <table class="widefat" style="margin-top: .5em">
544
 
545
  <thead>
553
  <tr><td>your-awesome-campaign.jpg</td><td><center><?php _e('Delete', 'adrotate'); ?></center></td></tr>
554
  <tr class="alternate"><td>728x90-advert.jpg</td><td><center><?php _e('Delete', 'adrotate'); ?></center></td></tr>
555
  <tr><td>adrotate-468x60.jpg</td><td><center><?php _e('Delete', 'adrotate'); ?></center></td></tr>
556
+ <tr class="alternate"><td>html5-468x60-blue_edge.js</td><td><center><?php _e('Delete', 'adrotate'); ?></center></td></tr>
557
+ <tr><td>html5-468x60-blue.html</td><td><center><?php _e('Delete', 'adrotate'); ?></center></td></tr>
558
  <tr class="alternate"><td>adrotate-200x200-blue.jpg</td><td><center><?php _e('Delete', 'adrotate'); ?></center></td></tr>
559
  <tr><td>advertising-campaign.jpg</td><td><center><?php _e('Delete', 'adrotate'); ?></center></td></tr>
560
  </tbody>
755
  <th valign="top"><?php _e('Widget padding', 'adrotate'); ?></th>
756
  <td><label for="adrotate_widgetpadding"><input type="checkbox" name="adrotate_widgetpadding" <?php if($adrotate_config['widgetpadding'] == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable this to remove the padding (blank space) around ads in widgets. (Does not always work!)', 'adrotate'); ?></label></td>
757
  </tr>
 
 
758
  <tr>
759
  <th valign="top"><?php _e('NOTICE:', 'adrotate'); ?></th>
760
  <td><span style="color:#f00;"><?php _e('You have enabled W3 Total Caching support but not defined the security hash. You need to add the following line to your wp-config.php near the bottom or below line 52 (which defines another hash.) Using the "late init" function needs to be enabled in W3 Total Cache as well too.', 'adrotate'); ?></span><br /><pre>define('W3TC_DYNAMIC_SECURITY', '<?php echo md5(rand(0,999)); ?>');</pre></td>
761
  </tr>
 
762
  <tr>
763
  <th valign="top"><?php _e('W3 Total Caching', 'adrotate'); ?></th>
764
  <td><label for="adrotate_w3caching"><input type="checkbox" name="adrotate_w3caching" <?php if($adrotate_config['w3caching'] == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Check this box if you use W3 Total Caching on your site.', 'adrotate'); ?></label></td>
765
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
766
  <tr>
767
  <th valign="top">&nbsp;</th>
768
  <td><span class="description"><?php _e('It may take a while for the ad to start rotating. The caching plugin needs to refresh the cache. This can take up to a week if not done manually.', 'adrotate'); ?> <?php _e('Caching support only works for [shortcodes] and the AdRotate Widget. If you use a PHP Snippet you need to wrap your PHP in the exclusion code yourself.', 'adrotate'); ?></span></td>
dashboard/adrotate-info.php CHANGED
@@ -153,7 +153,7 @@ $adrotate_config = get_option('adrotate_config');
153
  <div class="inside">
154
  <?php
155
  wp_widget_rss_output(array(
156
- 'url' => array('http://meandmymac.net/feed/', 'http://ajdg.solutions/feed/',),
157
  'title' => 'AdRotate Development News',
158
  'items' => 4,
159
  'show_summary' => 1,
@@ -196,7 +196,7 @@ $adrotate_config = get_option('adrotate_config');
196
  <div class="postbox-adrotate">
197
  <div class="inside">
198
  <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-infopage&pk_kwd=compare_license"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/adrotate-product.png" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
199
- <p><h4><?php _e('Singe License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('For one WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&pk_campaign=adrotatefree-infopage&pk_kwd=buy_single" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
200
  <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&pk_campaign=adrotatefree-infopage&pk_kwd=buy_duo" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
201
  <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&pk_campaign=adrotatefree-infopage&pk_kwd=buy_multi" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
202
  <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 299.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&pk_campaign=adrotatefree-infopage&pk_kwd=buy_developer" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
153
  <div class="inside">
154
  <?php
155
  wp_widget_rss_output(array(
156
+ 'url' => array('http://meandmymac.net/feed/', 'http://www.floatingcoconut.net/feed/', 'http://ajdg.solutions/feed/',),
157
  'title' => 'AdRotate Development News',
158
  'items' => 4,
159
  'show_summary' => 1,
196
  <div class="postbox-adrotate">
197
  <div class="inside">
198
  <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-infopage&pk_kwd=compare_license"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/adrotate-product.png" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
199
+ <p><h4><?php _e('Single License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('For one WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&pk_campaign=adrotatefree-infopage&pk_kwd=buy_single" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
200
  <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&pk_campaign=adrotatefree-infopage&pk_kwd=buy_duo" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
201
  <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&pk_campaign=adrotatefree-infopage&pk_kwd=buy_multi" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
202
  <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 299.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&pk_campaign=adrotatefree-infopage&pk_kwd=buy_developer" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
dashboard/adrotate-pro.php CHANGED
@@ -20,23 +20,21 @@
20
  <h3><?php _e('Satisfy your advertisers', 'adrotate'); ?></h3>
21
  <div class="postbox-adrotate">
22
  <div class="inside">
23
- <p><?php _e('Set up advertisers and let them log in to their statistics or even create their own adverts. Created adverts go into a moderation queue for your staff to review. Advertisers have access to their own little dashboard where they can see their adverts performance.', 'adrotate'); ?></p>
24
- <center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-advertisers.jpg" /></a></center>
25
  </div>
26
  </div>
27
 
28
  <h3><?php _e('Localize your ad campaigns with Geo Targeting', 'adrotate'); ?></h3>
29
  <div class="postbox-adrotate">
30
  <div class="inside">
31
- <p><?php _e('Go nationwide or global with localized adverts for your various audiences. Set up adverts for countries and cities and sell impressions per general area. Connect your site to MaxMinds GeoIP2: Precision, FreegeoIP (MaxMind GeoLITE) or GeoBytes GeoSelect services.', 'adrotate'); ?></p>
32
- <center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-geotargetting.jpg" /></a></center>
33
  </div>
34
  </div>
35
 
36
  <h3><?php _e('Get Premium Support almost all year round', 'adrotate'); ?></h3>
37
  <div class="postbox-adrotate">
38
  <div class="inside">
39
- <p><?php _e('When you activate your AdRotate Pro license you are entitled to ticket support. AdRotate premium support which takes priority over the Forums and even email. Get a solution (usually) within a day.', 'adrotate'); ?></p>
40
  </div>
41
  </div>
42
 
@@ -60,16 +58,14 @@
60
  <h3><?php _e('Schedule all campaigns with ease', 'adrotate'); ?></h3>
61
  <div class="postbox-adrotate">
62
  <div class="inside">
63
- <p><?php _e('Schedule your adverts and set up advertising campaigns based on date without hassle. Seasonal adverts, weekly adverts. You name it. AdRotate schedules it.', 'adrotate'); ?></p>
64
- <center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-schedules.jpg" /></a></center>
65
  </div>
66
  </div>
67
 
68
- <h3><?php _e('Stay up-to-date with the notification system', 'adrotate'); ?></h3>
69
  <div class="postbox-adrotate">
70
  <div class="inside">
71
- <p><?php _e('Stay in touch with Email and/or push notifications. Get notified when adverts expire, have errors or when advertisers create new adverts. Never miss an expiration date again.', 'adrotate'); ?></p>
72
- <center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-notifications.jpg" /></a></center>
73
  </div>
74
  </div>
75
 
@@ -77,7 +73,7 @@
77
  <div class="postbox-adrotate">
78
  <div class="inside">
79
  <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=compare_license"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/adrotate-product.png" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
80
- <p><h4><?php _e('Singe License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('For one WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&pk_campaign=adrotatefree-propage&pk_kwd=buy_single" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
81
  <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&pk_campaign=adrotatefree-propage&pk_kwd=buy_duo" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
82
  <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&pk_campaign=adrotatefree-propage&pk_kwd=buy_multi" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
83
  <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 299.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&pk_campaign=adrotatefree-propage&pk_kwd=buy_developer" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
20
  <h3><?php _e('Satisfy your advertisers', 'adrotate'); ?></h3>
21
  <div class="postbox-adrotate">
22
  <div class="inside">
23
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-satisfy.png" class="alignleft pro-image" /></a><?php _e('Set up advertisers and let them log in to their statistics or even create their own adverts. Created adverts go into a moderation queue for your staff to review. Advertisers have access to their own little dashboard where they can see their adverts performance.', 'adrotate'); ?></p>
 
24
  </div>
25
  </div>
26
 
27
  <h3><?php _e('Localize your ad campaigns with Geo Targeting', 'adrotate'); ?></h3>
28
  <div class="postbox-adrotate">
29
  <div class="inside">
30
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-geo-targeting.png" class="alignleft pro-image" /></a><?php _e('Go nationwide or global with localized adverts for your various audiences. Set up adverts for countries and cities and sell impressions per general area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users.', 'adrotate'); ?></p>
 
31
  </div>
32
  </div>
33
 
34
  <h3><?php _e('Get Premium Support almost all year round', 'adrotate'); ?></h3>
35
  <div class="postbox-adrotate">
36
  <div class="inside">
37
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-support.png" class="alignleft pro-image" /></a><?php _e('When you activate your AdRotate Pro license you can use fast and personal email support. No more queueing up in the forums. AdRotate premium support takes priority over the forums and is checked much more often than the forum. Get a solution (usually) within a day.', 'adrotate'); ?></p>
38
  </div>
39
  </div>
40
 
58
  <h3><?php _e('Schedule all campaigns with ease', 'adrotate'); ?></h3>
59
  <div class="postbox-adrotate">
60
  <div class="inside">
61
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-schedule.png" class="alignleft pro-image" /></a><?php _e('Schedule your adverts and set up advertising campaigns based on dates you or your advertisers specify without hassle. Seasonal adverts, weekly adverts. You name it, AdRotate schedules it. This makes planning your revenue stream much more easy. You can set one or many schedules for adverts.', 'adrotate'); ?></p>
 
62
  </div>
63
  </div>
64
 
65
+ <h3><?php _e('Stay up-to-date with notifications', 'adrotate'); ?></h3>
66
  <div class="postbox-adrotate">
67
  <div class="inside">
68
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=upgrade_adrotatefree" target="_blank"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/demo-notifications.png" class="alignleft pro-image" /></a><?php _e('Stay in touch with Email notifications. Have AdRotate send you an alert when adverts expire or need your attention. Additionally, you can have AdRotate send push notifications to your iOS or Android smartphone. Get notified when adverts expire, have errors or when advertisers create new adverts. Never miss an expiration date again.', 'adrotate'); ?></p>
 
69
  </div>
70
  </div>
71
 
73
  <div class="postbox-adrotate">
74
  <div class="inside">
75
  <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-propage&pk_kwd=compare_license"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/adrotate-product.png" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
76
+ <p><h4><?php _e('Single License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('For one WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&pk_campaign=adrotatefree-propage&pk_kwd=buy_single" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
77
  <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&pk_campaign=adrotatefree-propage&pk_kwd=buy_duo" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
78
  <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&pk_campaign=adrotatefree-propage&pk_kwd=buy_multi" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
79
  <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 299.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&pk_campaign=adrotatefree-propage&pk_kwd=buy_developer" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
dashboard/publisher/adrotate-ads-edit.php CHANGED
@@ -27,7 +27,7 @@ $schedules = $wpdb->get_row("SELECT `{$wpdb->prefix}adrotate_schedule`.`id`, `st
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'));
31
 
32
  list($sday, $smonth, $syear, $shour, $sminute) = explode(" ", date("d m Y H i", $schedules->starttime));
33
  list($eday, $emonth, $eyear, $ehour, $eminute) = explode(" ", date("d m Y H i", $schedules->stoptime));
@@ -46,17 +46,17 @@ if($ad_edit_id) {
46
  echo '<div class="error"><p>'. __('The AdCode cannot be empty!', 'adrotate').'</p></div>';
47
 
48
  if(!preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->image != '')
49
- echo '<div class="error"><p>'. __('You did not use %image% in your AdCode but did select an image!', 'adrotate').'</p></div>';
50
 
51
  if(preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->image == '')
52
- echo '<div class="error"><p>'. __('You did use %image% in your AdCode but did not select an image!', 'adrotate').'</p></div>';
 
 
 
53
 
54
  if((($edit_banner->imagetype != '' AND $edit_banner->image == '') OR ($edit_banner->imagetype == '' AND $edit_banner->image != '')))
55
  echo '<div class="error"><p>'. __('There is a problem saving the image. Please reset your image and re-save the ad!', 'adrotate').'</p></div>';
56
 
57
- if(!preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->responsive == 'Y')
58
- echo '<div class="error"><p>'. __(' You did not use %image% in your AdCode. The responsive checkbox will be ineffective.', 'adrotate').'</p></div>';
59
-
60
  if(strlen($edit_banner->image) > 0 AND !preg_match("/full/", $edit_banner->image) AND $edit_banner->responsive == 'Y')
61
  echo '<div class="error"><p>'. __('Responsive is enabled but your banner image has the wrong name.', 'adrotate').'</p></div>';
62
 
@@ -124,19 +124,19 @@ if($edit_banner->imagetype == "field") {
124
  </td>
125
  <td width="40%">
126
  <p><strong><?php _e('Basic Examples:', 'adrotate'); ?></strong></p>
127
- <p>1. <em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;https://ajdg.solutions/&quot;&gt;Buy AdRotate Pro here!&lt;/a&gt;');return false;">&lt;a href="https://ajdg.solutions/"&gt;Buy AdRotate Pro here!&lt;/a&gt;</a></em></p>
128
- <p>2. <em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;http://www.floatingcoconut.net&quot;&gt;&lt;img src=&quot;%image%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="http://www.floatingcoconut.net"&gt;&lt;img src="%image%" /&gt;&lt;/a&gt;</a></em></p>
129
- <p>3. <em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;span class=&quot;ad-%id%&quot;&gt;&lt;a href=&quot;http://www.ajdg.net&quot;&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;');return false;">&lt;span class="ad-%id%"&gt;&lt;a href="http://www.ajdg.net"&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;</a></em></p>
130
  </td>
131
  </tr>
132
  <tr>
133
  <th valign="top"><?php _e('Useful tags', 'adrotate'); ?></th>
134
  <td colspan="2">
135
- <p><em><a href="#" title="<?php _e('Insert the advert ID Number.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%id%');return false;">%id%</a>, <a href="#" title="<?php _e('Insert the %image% tag. Required when selecting a image below.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%image%');return false;">%image%</a>, <a href="#" title="<?php _e('Insert the advert name.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%title%');return false;">%title%</a>, <a href="#" title="<?php _e('Insert a random seed. Useful for DFP/DoubleClick type adverts.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%random%');return false;">%random%</a>, <a href="#" title="<?php _e('Add inside the <a> tag to open advert in a new window.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','target=&quot;_blank&quot;');return false;">target="_blank"</a>, <a href="#" title="<?php _e('Add inside the <a> tag to tell crawlers to ignore this link', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','rel=&quot;nofollow&quot;');return false;">rel="nofollow"</a></em><br /><?php _e('Place the cursor in your AdCode where you want to add any of these tags and click to add it.', 'adrotate'); ?></p>
136
  </td>
137
  </tr>
138
  <tr>
139
- <th valign="top"><?php _e('Banner image', 'adrotate'); ?></th>
140
  <td colspan="2">
141
  <label for="adrotate_image">
142
  <?php _e('WordPress media:', 'adrotate'); ?> <input tabindex="3" id="adrotate_image" type="text" size="50" name="adrotate_image" value="<?php echo $image_field; ?>" /> <input tabindex="4" id="adrotate_image_button" class="button" type="button" value="<?php _e('Select Banner', 'adrotate'); ?>" />
@@ -148,7 +148,7 @@ if($edit_banner->imagetype == "field") {
148
  <?php echo adrotate_folder_contents($image_dropdown); ?>
149
  </select><br />
150
  </label>
151
- <em><?php _e('Use %image% in the code. Accepted files are:', 'adrotate'); ?> jpg, jpeg, gif, png, swf <?php _e('and', 'adrotate'); ?> flv. <?php _e('Use either the text field or the dropdown. If the textfield has content that field has priority.', 'adrotate'); ?></em>
152
  </td>
153
  </tr>
154
  <?php if($adrotate_config['stats'] > 0) { ?>
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/library/uploader-hook.js', array('jquery'));
31
 
32
  list($sday, $smonth, $syear, $shour, $sminute) = explode(" ", date("d m Y H i", $schedules->starttime));
33
  list($eday, $emonth, $eyear, $ehour, $eminute) = explode(" ", date("d m Y H i", $schedules->stoptime));
46
  echo '<div class="error"><p>'. __('The AdCode cannot be empty!', 'adrotate').'</p></div>';
47
 
48
  if(!preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->image != '')
49
+ echo '<div class="error"><p>'. __('You did not use %image% in your AdCode but did select a file to use!', 'adrotate').'</p></div>';
50
 
51
  if(preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->image == '')
52
+ echo '<div class="error"><p>'. __('You did use %image% in your AdCode but did not select a file to use!', 'adrotate').'</p></div>';
53
+
54
+ if(!preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->responsive == 'Y')
55
+ echo '<div class="error"><p>'. __('You did not use %image% in your AdCode. The responsive checkbox will be ineffective.', 'adrotate').'</p></div>';
56
 
57
  if((($edit_banner->imagetype != '' AND $edit_banner->image == '') OR ($edit_banner->imagetype == '' AND $edit_banner->image != '')))
58
  echo '<div class="error"><p>'. __('There is a problem saving the image. Please reset your image and re-save the ad!', 'adrotate').'</p></div>';
59
 
 
 
 
60
  if(strlen($edit_banner->image) > 0 AND !preg_match("/full/", $edit_banner->image) AND $edit_banner->responsive == 'Y')
61
  echo '<div class="error"><p>'. __('Responsive is enabled but your banner image has the wrong name.', 'adrotate').'</p></div>';
62
 
124
  </td>
125
  <td width="40%">
126
  <p><strong><?php _e('Basic Examples:', 'adrotate'); ?></strong></p>
127
+ <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;http://www.floatingcoconut.net&quot;&gt;&lt;img src=&quot;%image%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="http://www.floatingcoconut.net"&gt;&lt;img src="%image%" /&gt;&lt;/a&gt;</a></em></p>
128
+ <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;span class=&quot;ad-%id%&quot;&gt;&lt;a href=&quot;http://www.ajdg.net&quot;&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;');return false;">&lt;span class="ad-%id%"&gt;&lt;a href="http://www.ajdg.net"&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;</a></em></p>
129
+ <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;iframe src=&quot;%image%&quot; height=&quot;250&quot; frameborder=&quot;0&quot; style=&quot;border:none;&quot;&gt;&lt;/iframe&gt;');return false;">&lt;iframe src=&quot;%image%&quot; height=&quot;250&quot; frameborder=&quot;0&quot; style=&quot;border:none;&quot;&gt;&lt;/iframe&gt;</a></em></p>
130
  </td>
131
  </tr>
132
  <tr>
133
  <th valign="top"><?php _e('Useful tags', 'adrotate'); ?></th>
134
  <td colspan="2">
135
+ <p><em><a href="#" title="<?php _e('Insert the advert ID Number.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%id%');return false;">%id%</a>, <a href="#" title="<?php _e('Required when selecting a image below.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%image%');return false;">%image%</a>, <a href="#" title="<?php _e('Insert the advert name.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%title%');return false;">%title%</a>, <a href="#" title="<?php _e('Insert a random seed. Useful for DFP/DoubleClick type adverts.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%random%');return false;">%random%</a>, <a href="#" title="<?php _e('Add inside the <a> tag to open advert in a new window.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','target=&quot;_blank&quot;');return false;">target="_blank"</a>, <a href="#" title="<?php _e('Add inside the <a> tag to tell crawlers to ignore this link', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','rel=&quot;nofollow&quot;');return false;">rel="nofollow"</a></em><br /><?php _e('Place the cursor in your AdCode where you want to add any of these tags and click to add it.', 'adrotate'); ?></p>
136
  </td>
137
  </tr>
138
  <tr>
139
+ <th valign="top"><?php _e('Banner asset', 'adrotate'); ?></th>
140
  <td colspan="2">
141
  <label for="adrotate_image">
142
  <?php _e('WordPress media:', 'adrotate'); ?> <input tabindex="3" id="adrotate_image" type="text" size="50" name="adrotate_image" value="<?php echo $image_field; ?>" /> <input tabindex="4" id="adrotate_image_button" class="button" type="button" value="<?php _e('Select Banner', 'adrotate'); ?>" />
148
  <?php echo adrotate_folder_contents($image_dropdown); ?>
149
  </select><br />
150
  </label>
151
+ <em><?php _e('Use %image% in the adcode instead of the file path.', 'adrotate'); ?> <?php _e('Use either the text field or the dropdown. If the textfield has content that field has priority.', 'adrotate'); ?></em>
152
  </td>
153
  </tr>
154
  <?php if($adrotate_config['stats'] > 0) { ?>
dashboard/publisher/adrotate-groups-edit.php CHANGED
@@ -210,24 +210,21 @@ if(!is_array($meta_array)) $meta_array = array();
210
  <option value="1" <?php if($edit_group->cat_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate'); ?></option>
211
  <option value="2" <?php if($edit_group->cat_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate'); ?></option>
212
  <option value="3" <?php if($edit_group->cat_loc == 3) { echo 'selected'; } ?>><?php _e('Before and after content', 'adrotate'); ?></option>
213
- <option value="4" <?php if($edit_group->cat_loc == 4) { echo 'selected'; } ?>><?php _e('After...', 'adrotate'); ?></option>
214
  </select>
215
  </label>
216
  <label for="adrotate_cat_paragraph">
217
  <select tabindex="13" name="adrotate_cat_paragraph">
218
  <option value="0" <?php if($edit_group->cat_par == 0) { echo 'selected'; } ?>>...</option>
219
- <option value="1" <?php if($edit_group->cat_par == 1) { echo 'selected'; } ?>><?php _e('the first paragraph', 'adrotate'); ?></option>
220
- <option value="20" <?php if($edit_group->cat_par == 20) { echo 'selected'; } ?>><?php _e('the second paragraph', 'adrotate'); ?></option>
221
- <option value="30" <?php if($edit_group->cat_par == 30) { echo 'selected'; } ?>><?php _e('the third paragraph', 'adrotate'); ?></option>
222
- <option value="40" <?php if($edit_group->cat_par == 40) { echo 'selected'; } ?>><?php _e('the fourth paragraph', 'adrotate'); ?></option>
223
- <option value="0" disabled>---</option>
224
- <option value="2" <?php if($edit_group->cat_par == 2) { echo 'selected'; } ?>><?php _e('every 2nd paragraph', 'adrotate'); ?></option>
225
- <option value="3" <?php if($edit_group->cat_par == 3) { echo 'selected'; } ?>><?php _e('every 3rd paragraph', 'adrotate'); ?></option>
226
- <option value="4" <?php if($edit_group->cat_par == 4) { echo 'selected'; } ?>><?php _e('every 4th paragraph', 'adrotate'); ?></option>
227
- <option value="5" <?php if($edit_group->cat_par == 5) { echo 'selected'; } ?>><?php _e('every 5th paragraph', 'adrotate'); ?></option>
228
- <option value="6" <?php if($edit_group->cat_par == 6) { echo 'selected'; } ?>><?php _e('every 6th paragraph', 'adrotate'); ?></option>
229
- <option value="7" <?php if($edit_group->cat_par == 7) { echo 'selected'; } ?>><?php _e('every 7th paragraph', 'adrotate'); ?></option>
230
- <option value="8" <?php if($edit_group->cat_par == 8) { echo 'selected'; } ?>><?php _e('every 8th paragraph', 'adrotate'); ?></option>
231
  </select>
232
  </label>
233
  </td>
@@ -251,24 +248,21 @@ if(!is_array($meta_array)) $meta_array = array();
251
  <option value="1" <?php if($edit_group->page_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate'); ?></option>
252
  <option value="2" <?php if($edit_group->page_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate'); ?></option>
253
  <option value="3" <?php if($edit_group->page_loc == 3) { echo 'selected'; } ?>><?php _e('Before and after content', 'adrotate'); ?></option>
254
- <option value="4" <?php if($edit_group->page_loc == 4) { echo 'selected'; } ?>><?php _e('After...', 'adrotate'); ?></option>
255
  </select>
256
  </label>
257
  <label for="adrotate_page_paragraph">
258
  <select tabindex="15" name="adrotate_page_paragraph">
259
  <option value="0" <?php if($edit_group->page_par == 0) { echo 'selected'; } ?>>...</option>
260
- <option value="1" <?php if($edit_group->page_par == 1) { echo 'selected'; } ?>><?php _e('the first paragraph', 'adrotate'); ?></option>
261
- <option value="20" <?php if($edit_group->page_par == 20) { echo 'selected'; } ?>><?php _e('the second paragraph', 'adrotate'); ?></option>
262
- <option value="30" <?php if($edit_group->page_par == 30) { echo 'selected'; } ?>><?php _e('the third paragraph', 'adrotate'); ?></option>
263
- <option value="40" <?php if($edit_group->page_par == 40) { echo 'selected'; } ?>><?php _e('the fourth paragraph', 'adrotate'); ?></option>
264
- <option value="0" disabled>---</option>
265
- <option value="2" <?php if($edit_group->page_par == 2) { echo 'selected'; } ?>><?php _e('every 2nd paragraph', 'adrotate'); ?></option>
266
- <option value="3" <?php if($edit_group->page_par == 3) { echo 'selected'; } ?>><?php _e('every 3rd paragraph', 'adrotate'); ?></option>
267
- <option value="4" <?php if($edit_group->page_par == 4) { echo 'selected'; } ?>><?php _e('every 4th paragraph', 'adrotate'); ?></option>
268
- <option value="5" <?php if($edit_group->page_par == 5) { echo 'selected'; } ?>><?php _e('every 5th paragraph', 'adrotate'); ?></option>
269
- <option value="6" <?php if($edit_group->page_par == 6) { echo 'selected'; } ?>><?php _e('every 6th paragraph', 'adrotate'); ?></option>
270
- <option value="7" <?php if($edit_group->page_par == 7) { echo 'selected'; } ?>><?php _e('every 7th paragraph', 'adrotate'); ?></option>
271
- <option value="8" <?php if($edit_group->page_par == 8) { echo 'selected'; } ?>><?php _e('every 8th paragraph', 'adrotate'); ?></option>
272
  </select>
273
  </label>
274
  </td>
210
  <option value="1" <?php if($edit_group->cat_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate'); ?></option>
211
  <option value="2" <?php if($edit_group->cat_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate'); ?></option>
212
  <option value="3" <?php if($edit_group->cat_loc == 3) { echo 'selected'; } ?>><?php _e('Before and after content', 'adrotate'); ?></option>
213
+ <option value="4" <?php if($edit_group->cat_loc == 4) { echo 'selected'; } ?>><?php _e('Inside the content...', 'adrotate'); ?></option>
214
  </select>
215
  </label>
216
  <label for="adrotate_cat_paragraph">
217
  <select tabindex="13" name="adrotate_cat_paragraph">
218
  <option value="0" <?php if($edit_group->cat_par == 0) { echo 'selected'; } ?>>...</option>
219
+ <option value="98" <?php if($edit_group->cat_par == 98) { echo 'selected'; } ?>><?php _e('after the middle paragraph', 'adrotate'); ?></option>
220
+ <option value="1" <?php if($edit_group->cat_par == 1) { echo 'selected'; } ?>><?php _e('after the 1st paragraph', 'adrotate'); ?></option>
221
+ <option value="2" <?php if($edit_group->cat_par == 2) { echo 'selected'; } ?>><?php _e('after the 2nd paragraph', 'adrotate'); ?></option>
222
+ <option value="3" <?php if($edit_group->cat_par == 3) { echo 'selected'; } ?>><?php _e('after the 3rd paragraph', 'adrotate'); ?></option>
223
+ <option value="4" <?php if($edit_group->cat_par == 4) { echo 'selected'; } ?>><?php _e('after the 4th paragraph', 'adrotate'); ?></option>
224
+ <option value="5" <?php if($edit_group->cat_par == 5) { echo 'selected'; } ?>><?php _e('after the 5th paragraph', 'adrotate'); ?></option>
225
+ <option value="6" <?php if($edit_group->cat_par == 6) { echo 'selected'; } ?>><?php _e('after the 6th paragraph', 'adrotate'); ?></option>
226
+ <option value="7" <?php if($edit_group->cat_par == 7) { echo 'selected'; } ?>><?php _e('after the 7th paragraph', 'adrotate'); ?></option>
227
+ <option value="8" <?php if($edit_group->cat_par == 8) { echo 'selected'; } ?>><?php _e('after the 8th paragraph', 'adrotate'); ?></option>
 
 
 
228
  </select>
229
  </label>
230
  </td>
248
  <option value="1" <?php if($edit_group->page_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate'); ?></option>
249
  <option value="2" <?php if($edit_group->page_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate'); ?></option>
250
  <option value="3" <?php if($edit_group->page_loc == 3) { echo 'selected'; } ?>><?php _e('Before and after content', 'adrotate'); ?></option>
251
+ <option value="4" <?php if($edit_group->page_loc == 4) { echo 'selected'; } ?>><?php _e('Inside the content...', 'adrotate'); ?></option>
252
  </select>
253
  </label>
254
  <label for="adrotate_page_paragraph">
255
  <select tabindex="15" name="adrotate_page_paragraph">
256
  <option value="0" <?php if($edit_group->page_par == 0) { echo 'selected'; } ?>>...</option>
257
+ <option value="99" <?php if($edit_group->page_par == 99) { echo 'selected'; } ?>><?php _e('after the middle paragraph', 'adrotate'); ?></option>
258
+ <option value="1" <?php if($edit_group->page_par == 1) { echo 'selected'; } ?>><?php _e('after the 1st paragraph', 'adrotate'); ?></option>
259
+ <option value="2" <?php if($edit_group->page_par == 2) { echo 'selected'; } ?>><?php _e('after the 2nd paragraph', 'adrotate'); ?></option>
260
+ <option value="3" <?php if($edit_group->page_par == 3) { echo 'selected'; } ?>><?php _e('after the 3rd paragraph', 'adrotate'); ?></option>
261
+ <option value="4" <?php if($edit_group->page_par == 4) { echo 'selected'; } ?>><?php _e('after the 4th paragraph', 'adrotate'); ?></option>
262
+ <option value="5" <?php if($edit_group->page_par == 5) { echo 'selected'; } ?>><?php _e('after the 5th paragraph', 'adrotate'); ?></option>
263
+ <option value="6" <?php if($edit_group->page_par == 6) { echo 'selected'; } ?>><?php _e('after the 6th paragraph', 'adrotate'); ?></option>
264
+ <option value="7" <?php if($edit_group->page_par == 7) { echo 'selected'; } ?>><?php _e('after the 7th paragraph', 'adrotate'); ?></option>
265
+ <option value="8" <?php if($edit_group->page_par == 8) { echo 'selected'; } ?>><?php _e('after the 8th paragraph', 'adrotate'); ?></option>
 
 
 
266
  </select>
267
  </label>
268
  </td>
images/demo-advertisers.jpg DELETED
Binary file
images/demo-geo-targeting.png ADDED
Binary file
images/demo-geotargetting.jpg DELETED
Binary file
images/demo-notifications.jpg DELETED
Binary file
images/demo-notifications.png ADDED
Binary file
images/demo-satisfy.png ADDED
Binary file
images/demo-schedule.png ADDED
Binary file
images/demo-schedules.jpg DELETED
Binary file
images/demo-support.png ADDED
Binary file
images/{close-icon.png → icon-close.png} RENAMED
File without changes
images/{icon.png → icon-menu.png} RENAMED
File without changes
language/adrotate-bg_BG.mo CHANGED
Binary file
language/adrotate-bg_BG.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-15 01:46+0100\n"
6
- "PO-Revision-Date: 2015-05-15 01:46+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,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.5\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:801
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
- #: adrotate-functions.php:804
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
- #: adrotate-output.php:737
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "О не! Нещо се случи!"
31
 
32
- #: adrotate-output.php:738
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:739
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:740
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
50
 
51
- #: adrotate-output.php:758
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:760
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:767 adrotate-output.php:769
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:775
74
  msgid "Error, no Ad ID set! Check your syntax!"
75
  msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
76
 
77
- #: adrotate-output.php:781
78
  msgid "Error, no group ID set! Check your syntax!"
79
  msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
80
 
81
- #: adrotate-output.php:786
82
  msgid "Error, group does not exist! Check your syntax!"
83
  msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
84
 
85
- #: adrotate-output.php:792
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:792
94
  msgid "If this does not solve the issue please seek support at"
95
  msgstr "Ако това не решава проблема, моля потърсете помощ на"
96
 
97
- #: adrotate-output.php:798
98
  msgid "An unknown error occured."
99
  msgstr "Възникна неизвестна грешка."
100
 
101
- #: adrotate-output.php:823
102
  msgid "active ad(s) expired."
103
  msgstr "изтекла/и активна/и реклама/и."
104
 
105
- #: adrotate-output.php:823
106
  msgid "Take action now"
107
  msgstr "Предприемане на действия"
108
 
109
- #: adrotate-output.php:825
110
  msgid "active ad(s) are about to expire."
111
  msgstr "изтичаща/и активна/и реклама/и."
112
 
113
- #: adrotate-output.php:825
114
  msgid "Check it out"
115
  msgstr "Проверете го"
116
 
117
- #: adrotate-output.php:827
118
  msgid "active ad(s) with configuration errors."
119
  msgstr "активна(и) реклама(и) с грешни настройки."
120
 
121
- #: adrotate-output.php:827
122
  msgid "Solve this"
123
  msgstr "Разреши това"
124
 
125
- #: adrotate-output.php:829
126
  msgid "ad(s) expired."
127
  msgstr "изтекла/и реклама/и."
128
 
129
- #: adrotate-output.php:829
130
  msgid "ad(s) are about to expire."
131
  msgstr "реклама/и изтича(т)."
132
 
133
- #: adrotate-output.php:829
134
  msgid "ad(s) with configuration errors."
135
  msgstr "реклама/и с грешни настройки."
136
 
137
- #: adrotate-output.php:829
138
  msgid "Fix this as soon as possible"
139
  msgstr "Поправка възможно най-скоро"
140
 
141
- #: adrotate-output.php:841
142
  msgid "Learn More"
143
  msgstr "Научете повече"
144
 
145
- #: adrotate-output.php:842
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,67 +150,67 @@ msgstr ""
150
  "Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
151
  "до <strong>PRO</strong> версията"
152
 
153
- #: adrotate-output.php:842
154
  msgid "Get more features to even better run your advertising campaigns."
155
  msgstr ""
156
  "Вземете повече опции за дори по-добро управление на вашите рекламни кампании."
157
 
158
- #: adrotate-output.php:842
159
  msgid "Thank you for your consideration!"
160
  msgstr "Благодарим Ви, че го обмислихте!"
161
 
162
- #: adrotate-output.php:886
163
  msgid ""
164
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
165
  "this menu. Check out the"
166
  msgstr ""
167
 
168
- #: adrotate-output.php:886
169
  msgid "manuals"
170
  msgstr "ръководства"
171
 
172
- #: adrotate-output.php:886 adrotate-output.php:962
173
  #: dashboard/publisher/adrotate-ads-edit.php:151
174
  msgid "and"
175
  msgstr "и"
176
 
177
- #: adrotate-output.php:886
178
  msgid "forums"
179
  msgstr ""
180
 
181
- #: adrotate-output.php:922
182
  msgid "Useful Links"
183
  msgstr "Полезни връзки"
184
 
185
- #: adrotate-output.php:923
186
  msgid "Useful links to learn more about AdRotate"
187
  msgstr "Полезни връзки, за да получите повече информация за AdRotate"
188
 
189
- #: adrotate-output.php:925
190
  msgid "AdRotate Page"
191
  msgstr ""
192
 
193
- #: adrotate-output.php:926
194
  msgid "Getting Started With AdRotate"
195
  msgstr "Започнете от нулата с AdRotate Pro"
196
 
197
- #: adrotate-output.php:927
198
  msgid "AdRotate manuals"
199
  msgstr ""
200
 
201
- #: adrotate-output.php:928
202
  msgid "AdRotate Support Forum"
203
  msgstr "Форум за поддръжка на AdRotate"
204
 
205
- #: adrotate-output.php:954
206
  msgid "Help AdRotate Grow"
207
  msgstr "Помогнете за развитието на AdRotate"
208
 
209
- #: adrotate-output.php:955
210
  msgid "Brought to you by"
211
  msgstr "Достига до Вас благодарение на"
212
 
213
- #: adrotate-output.php:962
214
  msgid ""
215
  "A lot of users only think to review AdRotate when something goes wrong while "
216
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
@@ -219,23 +219,23 @@ msgstr ""
219
  "се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
220
  "това да остане незабелязано."
221
 
222
- #: adrotate-output.php:962
223
  msgid "If you find AdRotate useful please leave your honest"
224
  msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
225
 
226
- #: adrotate-output.php:962
227
  msgid "rating"
228
  msgstr "оценка"
229
 
230
- #: adrotate-output.php:962
231
  msgid "review"
232
  msgstr "мнение"
233
 
234
- #: adrotate-output.php:962
235
  msgid "on WordPress.org to help AdRotate grow in a positive way"
236
  msgstr "на WordPress.org, за да се развива AdRotate"
237
 
238
- #: adrotate-output.php:965
239
  msgid ""
240
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
241
  "out more about what I can do for you!"
@@ -243,27 +243,27 @@ msgstr ""
243
  "Мястото, където да се консултирате и/или да поръчате разработка за "
244
  "WordPress! Открийте с какво мога да Ви бъда полезен!"
245
 
246
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
247
  msgid "Visit the"
248
  msgstr "Посетете"
249
 
250
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
251
  msgid "website"
252
  msgstr "уебсайт"
253
 
254
- #: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
255
  msgid "Available in AdRotate Pro"
256
  msgstr "Налично в AdRotate Pro"
257
 
258
- #: adrotate-output.php:995
259
  msgid "More information..."
260
  msgstr "Повече информация..."
261
 
262
- #: adrotate-output.php:996
263
  msgid "This feature is available in AdRotate Pro"
264
  msgstr "Тази функционалност е налична в AdRotate Pro"
265
 
266
- #: adrotate-output.php:996
267
  msgid "Learn more"
268
  msgstr "Повече информация"
269
 
@@ -339,47 +339,47 @@ msgstr "Този месец"
339
  msgid "Next"
340
  msgstr "Следващ"
341
 
342
- #: adrotate-statistics.php:284 dashboard/adrotate-info.php:123
343
  msgid "No data to show!"
344
  msgstr "Няма информация!"
345
 
346
- #: adrotate-widget.php:116
347
  msgid "Title (optional):"
348
  msgstr "Заглавие (не е задължително):"
349
 
350
- #: adrotate-widget.php:119
351
  msgid "HTML will be stripped out."
352
  msgstr "HTML тагове не се поддържат."
353
 
354
- #: adrotate-widget.php:122
355
  msgid "Description (optional):"
356
  msgstr "Описание (не е задължително):"
357
 
358
- #: adrotate-widget.php:125
359
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
360
  msgstr "За какво се използва тази джаджа? (Не се поддържат HTML тагове.)"
361
 
362
- #: adrotate-widget.php:128
363
  msgid "Type:"
364
  msgstr "Тип:"
365
 
366
- #: adrotate-widget.php:130
367
  msgid "Single Ad - Use Ad ID"
368
  msgstr "Единична реклама - Използване на ID на рекламата"
369
 
370
- #: adrotate-widget.php:131
371
  msgid "Group of Ads - Use group ID"
372
  msgstr "Група реклами - Използване на ID на групата"
373
 
374
- #: adrotate-widget.php:134
375
  msgid "Choose what you want to use this widget for"
376
  msgstr "Изберете за какво иската да използвате тази джаджа"
377
 
378
- #: adrotate-widget.php:137
379
  msgid "ID:"
380
  msgstr "ID:"
381
 
382
- #: adrotate-widget.php:140
383
  msgid "Fill in the ID of the type you want to display!"
384
  msgstr "Попълнете ID-то на типа, който искате да се показва!"
385
 
@@ -764,8 +764,8 @@ msgstr "Изтриване на групи"
764
  msgid "Role to delete groups."
765
  msgstr "Роля за изтриване на групи."
766
 
767
- #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
768
- #: adrotate.php:890
769
  msgid "Update Options"
770
  msgstr "Опции за обновяване"
771
 
@@ -932,11 +932,11 @@ msgstr ""
932
  "Сложете отметка, за да премахнете празното пространство около рекламите в "
933
  "джаджата. (Не винаги работи!)"
934
 
935
- #: adrotate.php:760 adrotate.php:771
936
  msgid "NOTICE:"
937
  msgstr "ЗАБЕЛЕЖКА:"
938
 
939
- #: adrotate.php:761
940
  msgid ""
941
  "You have enabled W3 Total Caching support but not defined the security hash. "
942
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -948,33 +948,15 @@ msgstr ""
948
  "до края или под ред 52. Също така функцията \"late init\" трябва да бъде "
949
  "включена в W3 Total Cache."
950
 
951
- #: adrotate.php:765
952
  msgid "W3 Total Caching"
953
  msgstr "W3 Total Caching"
954
 
955
- #: adrotate.php:766
956
  msgid "Check this box if you use W3 Total Caching on your site."
957
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
958
 
959
- #: adrotate.php:772
960
- msgid ""
961
- "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
962
- "this function will not work. WP Super Cache has discontinued support for "
963
- "dynamic content."
964
- msgstr ""
965
- "Включили сте поддръжката на WP Super Cache. Ако имате версия 1.4 или по-"
966
- "нова, тази функция няма да работи. WP Super Cache прекрати поддръжката за "
967
- "динамично съдържание."
968
-
969
- #: adrotate.php:776
970
- msgid "WP Super Cache"
971
- msgstr "WP Super Cache"
972
-
973
- #: adrotate.php:777
974
- msgid "Check this box if you use WP Super Cache on your site."
975
- msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
976
-
977
- #: adrotate.php:782
978
  msgid ""
979
  "It may take a while for the ad to start rotating. The caching plugin needs "
980
  "to refresh the cache. This can take up to a week if not done manually."
@@ -983,7 +965,7 @@ msgstr ""
983
  "Кеширащото разширение трябва да обнови данните. Това може да отнеме до една "
984
  "седмица, ако не го направите ръчно."
985
 
986
- #: adrotate.php:782
987
  msgid ""
988
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
989
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -992,15 +974,15 @@ msgstr ""
992
  "на AdRotate. Ако използвате PHP кода, трябва да го поставите в изключващ код "
993
  "сами."
994
 
995
- #: adrotate.php:786
996
  msgid "Javascript"
997
  msgstr ""
998
 
999
- #: adrotate.php:789
1000
  msgid "Load jQuery"
1001
  msgstr "Зареди jQuery"
1002
 
1003
- #: adrotate.php:790
1004
  msgid ""
1005
  "jQuery is required for all Javascript features below. Enable this if your "
1006
  "theme does not load jQuery already."
@@ -1008,11 +990,11 @@ msgstr ""
1008
  " jQuery е необходим за всички Javascript опции по-долу. Включете го само ако "
1009
  "темата ви вече не го е заредила."
1010
 
1011
- #: adrotate.php:793
1012
  msgid "Load in footer?"
1013
  msgstr "Зареди във футера?"
1014
 
1015
- #: adrotate.php:794
1016
  msgid ""
1017
  "Enable if you want to load the above libraries in the footer. Your theme "
1018
  "needs to call wp_footer() for this to work."
@@ -1020,11 +1002,11 @@ msgstr ""
1020
  "Включете, ако искате да заредите изброените по-горе библиотеки във футера. "
1021
  "Необходимо е темата ви да извиква wp_footer(), за да проработи."
1022
 
1023
- #: adrotate.php:802
1024
  msgid "Maintenance"
1025
  msgstr "Поддръжка"
1026
 
1027
- #: adrotate.php:803
1028
  msgid ""
1029
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1030
  "They only apply to your ads/groups and stats. Not to other settings or other "
@@ -1038,19 +1020,19 @@ msgstr ""
1038
  "функции само когато забележите, че вашата база данни е бавна, мудна или не "
1039
  "отговаря."
1040
 
1041
- #: adrotate.php:818 adrotate.php:820
1042
  msgid "Optimize Database"
1043
  msgstr "Оптимизиране на базата данни"
1044
 
1045
- #: adrotate.php:820
1046
  msgid "You are about to optimize the AdRotate database."
1047
  msgstr "На път сте да оптимизирате базата данни на AdRotate."
1048
 
1049
- #: adrotate.php:820
1050
  msgid "Did you make a backup of your database?"
1051
  msgstr "Направихте ли резервно копие на своята база данни?"
1052
 
1053
- #: adrotate.php:820
1054
  msgid ""
1055
  "This may take a moment and may cause your website to respond slow "
1056
  "temporarily!"
@@ -1058,16 +1040,16 @@ msgstr ""
1058
  "Това ще отнеме малко време и може да накара сайта Ви да работи по-бавно за "
1059
  "момент!"
1060
 
1061
- #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1062
  #: dashboard/publisher/adrotate-groups-main.php:24
1063
  msgid "OK to continue, CANCEL to stop."
1064
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1065
 
1066
- #: adrotate.php:821
1067
  msgid "Cleans up overhead data in the AdRotate tables."
1068
  msgstr "Почиста overhead данните в таблиците на AdRotate."
1069
 
1070
- #: adrotate.php:822
1071
  msgid ""
1072
  "Overhead data is accumulated garbage resulting from many changes you've "
1073
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1075,11 +1057,11 @@ msgstr ""
1075
  "Overhead данните са боклук, акумулиран в резултат на множеството промени, "
1076
  "които правите. Те могар да варират от 0 до хиляди KB."
1077
 
1078
- #: adrotate.php:826 adrotate.php:828
1079
  msgid "Clean-up Database"
1080
  msgstr "Почистване на базата данни"
1081
 
1082
- #: adrotate.php:828
1083
  msgid ""
1084
  "You are about to clean up your database. This may delete expired schedules "
1085
  "and older statistics."
@@ -1087,21 +1069,21 @@ msgstr ""
1087
  "На път сте да почистите базата с данни. Това може да изтрие истекли графици "
1088
  "и стари статистики."
1089
 
1090
- #: adrotate.php:828
1091
  msgid "Are you sure you want to continue?"
1092
  msgstr "Сигурни ли сте, че искате да продължите?"
1093
 
1094
- #: adrotate.php:828 adrotate.php:836
1095
  msgid "This might take a while and may slow down your site during this action!"
1096
  msgstr ""
1097
  "Това действие ще отнеме време и може да забави сайта ви по време на "
1098
  "изпълнението му!"
1099
 
1100
- #: adrotate.php:829
1101
  msgid "Delete stats older than 356 days (Optional)."
1102
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
1103
 
1104
- #: adrotate.php:830
1105
  msgid ""
1106
  "AdRotate creates empty records when you start making ads or groups. In rare "
1107
  "occasions these records are faulty."
@@ -1109,7 +1091,7 @@ msgstr ""
1109
  "AdRotate създава празни записи, когато започнете да създавате реклама или "
1110
  "група. В редки случай тези записи са дефектни."
1111
 
1112
- #: adrotate.php:830
1113
  msgid ""
1114
  "If you made an ad or group that does not save when you make it use this "
1115
  "button to delete those empty records."
@@ -1117,7 +1099,7 @@ msgstr ""
1117
  "Ако създадете реклама или група, която не може да се запише, използвайте "
1118
  "този бутон, за да изтриете празните полета."
1119
 
1120
- #: adrotate.php:830
1121
  msgid ""
1122
  "Additionally you can clean up old statistics. This will improve the speed of "
1123
  "your site."
@@ -1125,19 +1107,19 @@ msgstr ""
1125
  "Също така можете да изчистите остарелите статистики. Това ще подобри "
1126
  "скоростта на сайта Ви."
1127
 
1128
- #: adrotate.php:834
1129
  msgid "Re-evaluate Ads"
1130
  msgstr "Преоценка на реклами"
1131
 
1132
- #: adrotate.php:836
1133
  msgid "Re-evaluate all ads"
1134
  msgstr "Преоценка на всички реклами"
1135
 
1136
- #: adrotate.php:836
1137
  msgid "You are about to check all ads for errors."
1138
  msgstr "На път сте да проверите всички реклами за грешки."
1139
 
1140
- #: adrotate.php:837
1141
  msgid ""
1142
  "This will apply all evaluation rules to all ads to see if any error slipped "
1143
  "in. Normally you should not need this feature."
@@ -1145,7 +1127,7 @@ msgstr ""
1145
  "Това ще провери всички реклами за грешки. Попринцип не би трябвало да имате "
1146
  "нужда от тази функция."
1147
 
1148
- #: adrotate.php:841
1149
  msgid ""
1150
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1151
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1162,65 +1144,65 @@ msgstr ""
1162
  "Отстояването на тезата, че всичко е работело нормално преди да кликнете на "
1163
  "тези бутони е безсмислено."
1164
 
1165
- #: adrotate.php:849
1166
  msgid "Troubleshooting"
1167
  msgstr "Отстраняване на проблеми"
1168
 
1169
- #: adrotate.php:852
1170
  msgid "Current version:"
1171
  msgstr "Текуща версия:"
1172
 
1173
- #: adrotate.php:853
1174
  msgid "Previous version:"
1175
  msgstr "Предишна версия:"
1176
 
1177
- #: adrotate.php:856
1178
  msgid "Current database version:"
1179
  msgstr "Текуща верския на базата данни:"
1180
 
1181
- #: adrotate.php:857
1182
  msgid "Previous database version:"
1183
  msgstr "Предишна версия на базата данни:"
1184
 
1185
- #: adrotate.php:860
1186
  #, fuzzy
1187
  msgid "Ad evaluation next run:"
1188
  msgstr "Оценка на рекламата:"
1189
 
1190
- #: adrotate.php:861 adrotate.php:865
1191
  msgid "Not scheduled!"
1192
  msgstr "Не е планирано!"
1193
 
1194
- #: adrotate.php:864
1195
  #, fuzzy
1196
  msgid "Clean Trackerdata next run:"
1197
  msgstr "Изчистване на Trackerdata при следващо стартиране:"
1198
 
1199
- #: adrotate.php:868
1200
  msgid "Current status of adverts"
1201
  msgstr "Настоящ статус на рекламите"
1202
 
1203
- #: adrotate.php:869
1204
  msgid "Normal"
1205
  msgstr "Нормално"
1206
 
1207
- #: adrotate.php:869
1208
  msgid "Error"
1209
  msgstr "Грешка"
1210
 
1211
- #: adrotate.php:869
1212
  msgid "Expired"
1213
  msgstr "Изтекло"
1214
 
1215
- #: adrotate.php:869
1216
  msgid "Expires Soon"
1217
  msgstr "Изтича скоро"
1218
 
1219
- #: adrotate.php:869
1220
  msgid "Unknown Status"
1221
  msgstr "Неизвестен статус"
1222
 
1223
- #: adrotate.php:872
1224
  msgid ""
1225
  "NOTE: The below options are not meant for normal use and are only there for "
1226
  "developers to review saved settings or how ads are selected. These can be "
@@ -1233,35 +1215,35 @@ msgstr ""
1233
  "проблем, който трябва да се разреши. При нормална употреба оставете опциите "
1234
  "ИЗКЛЮЧЕНИ!!"
1235
 
1236
- #: adrotate.php:876
1237
  msgid "Developer Debug"
1238
  msgstr "Developer Debug"
1239
 
1240
- #: adrotate.php:878
1241
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1242
  msgstr ""
1243
  "Проверк за грешки в рекламите и как (дали) са закачени. Има потребителски "
1244
  "изглед."
1245
 
1246
- #: adrotate.php:879
1247
  msgid "Show all settings, dashboard routines and related values."
1248
  msgstr "Показване на всички настройки, рутинни процедури и свързани стойности."
1249
 
1250
- #: adrotate.php:880
1251
  msgid "Show array of all userroles and capabilities."
1252
  msgstr "Покажи масив с всички потребителски роли и възможности."
1253
 
1254
- #: adrotate.php:881
1255
  msgid "Review saved advertisers! Visible to advertisers."
1256
  msgstr "Преглед на записаните рекламодатели! Видимо за рекламодатели."
1257
 
1258
- #: adrotate.php:882
1259
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1260
  msgstr ""
1261
  "Преглед на глобални статитики, статистика за реклама/група. Видимо само за "
1262
  "автори."
1263
 
1264
- #: adrotate.php:883
1265
  msgid ""
1266
  "Disable timers for clicks and impressions and enable a alert window for "
1267
  "clicktracking."
@@ -1269,67 +1251,75 @@ msgstr ""
1269
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
1270
  "за проследяване на кликове."
1271
 
1272
- #: adrotate.php:884
1273
  msgid "Temporarily disable encryption on the redirect url."
1274
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
1275
 
1276
- #: dashboard/adrotate-info.php:65
1277
  msgid "Currently"
1278
  msgstr "В момента"
1279
 
1280
- #: dashboard/adrotate-info.php:71
1281
  msgid "Your setup"
1282
  msgstr "Вие имате"
1283
 
1284
- #: dashboard/adrotate-info.php:72
1285
  msgid "Adverts that need you"
1286
  msgstr "Реклами, които изискват вниманието Ви"
1287
 
1288
- #: dashboard/adrotate-info.php:78
1289
  msgid "Adverts"
1290
  msgstr "Реклами"
1291
 
1292
- #: dashboard/adrotate-info.php:79
1293
  msgid "(Almost) Expired"
1294
  msgstr "(Почти) Изтекли"
1295
 
1296
- #: dashboard/adrotate-info.php:82
1297
  msgid "Groups"
1298
  msgstr "Групи"
1299
 
1300
- #: dashboard/adrotate-info.php:83
1301
  msgid "Have errors"
1302
  msgstr "Има грешки"
1303
 
1304
- #: dashboard/adrotate-info.php:87
1305
  msgid "Queued"
1306
  msgstr "На опашка"
1307
 
1308
- #: dashboard/adrotate-info.php:93
1309
  msgid "The last few days"
1310
  msgstr "Последни няколко дни"
1311
 
1312
- #: dashboard/adrotate-info.php:132
1313
  msgid "Support AdRotate"
1314
  msgstr "Подкрепете AdRotate"
1315
 
1316
- #: dashboard/adrotate-info.php:139
1317
  msgid "Your gift helps ensure the continued development of AdRotate!"
1318
  msgstr ""
1319
 
1320
- #: dashboard/adrotate-info.php:139
1321
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1322
  msgstr ""
1323
 
1324
- #: dashboard/adrotate-info.php:148
1325
  msgid "AdRotate News and Developer Blog"
1326
  msgstr "AdRotate блог за новини и разработка"
1327
 
1328
  #: dashboard/adrotate-info.php:168
 
 
 
 
 
 
 
 
1329
  msgid "Get more features with AdRotate Pro"
1330
  msgstr "Получете по-голяма функционалност с AdRotate Pro"
1331
 
1332
- #: dashboard/adrotate-info.php:171
1333
  msgid ""
1334
  "Benefit from extra features to reinforce your income with advertising "
1335
  "campaigns. Make the most of your website with the powerful tools AdRotate "
@@ -1339,79 +1329,79 @@ msgstr ""
1339
  "подобрите приходите. Използвайте пълния потенциал на сайта си с мощните "
1340
  "функции, които предлага AdRotate Pro спрямо безплатната версия."
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
  msgid "Buy AdRotate Professional"
1348
  msgstr "Купете AdRotate Professional"
1349
 
1350
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1351
- msgid "Singe License"
1352
- msgstr "Singe лиценз"
1353
 
1354
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1355
  msgid "For one WordPress installation."
1356
  msgstr "За една инсталация на WordPress."
1357
 
1358
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1359
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1360
- #: dashboard/adrotate-info.php:183 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
  msgid "Buy now"
1364
  msgstr "Купи сега"
1365
 
1366
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1367
  msgid "Duo License"
1368
  msgstr "Duo лиценз"
1369
 
1370
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1371
  msgid "For two WordPress installations."
1372
  msgstr "За две Wordpress инсталации."
1373
 
1374
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1375
  msgid "Multi License"
1376
  msgstr "Multi лиценз"
1377
 
1378
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1379
  msgid " For up to five WordPress installations."
1380
  msgstr " За до 5 Wordpress инсталации."
1381
 
1382
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1383
  msgid "Developer License"
1384
  msgstr "Developer лиценз"
1385
 
1386
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1387
  msgid "Unlimited WordPress installations and/or networks."
1388
  msgstr ""
1389
 
1390
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1391
  msgid "Network License"
1392
  msgstr "Network лиценз"
1393
 
1394
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1395
  msgid "Set up your own advertising network on a WordPress Multisite."
1396
  msgstr "Направете своя собствена рекламна мрежа чрез WordPress мултисайт."
1397
 
1398
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1399
  msgid "Compare licenses"
1400
  msgstr "Сравнение на лицензи"
1401
 
1402
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1403
  msgid "Not sure which license is for you? Compare them..."
1404
  msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
1405
 
1406
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1407
  msgid "All Licenses"
1408
  msgstr "Всички лицензи"
1409
 
1410
- #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
1411
  msgid "AdRotate is brought to you by"
1412
  msgstr "AdRotate достига до Вас, благодарение на"
1413
 
1414
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1415
  msgid ""
1416
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1417
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1422,11 +1412,11 @@ msgstr ""
1422
  "искате сайта Ви да бъде мигриран? Посетете страницата ми за повече "
1423
  "информация!"
1424
 
1425
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1426
  msgid "Find out more"
1427
  msgstr "Научете повече"
1428
 
1429
- #: dashboard/adrotate-info.php:194
1430
  msgid "Follow"
1431
  msgstr "Последвай"
1432
 
@@ -1446,63 +1436,58 @@ msgstr ""
1446
  "за одобрение от модератор. Рекламодателите ще имат достъп до малко табло, "
1447
  "където да се информират за представянето не рекламите си."
1448
 
1449
- #: dashboard/adrotate-pro.php:28
1450
  msgid "Localize your ad campaigns with Geo Targeting"
1451
  msgstr "Локализирайте своите рекламни кампании с Таргетиране по местоположение"
1452
 
1453
- #: dashboard/adrotate-pro.php:31
1454
  msgid ""
1455
  "Go nationwide or global with localized adverts for your various audiences. "
1456
  "Set up adverts for countries and cities and sell impressions per general "
1457
- "area. Connect your site to MaxMinds GeoIP2: Precision, FreegeoIP (MaxMind "
1458
- "GeoLITE) or GeoBytes GeoSelect services."
1459
  msgstr ""
1460
- "Бъдете представени национално или глобално с реклами по местоположение. "
1461
- "Задайте реклами по определени страни и градове и продавайте импресии по "
1462
- "разположение на банера. Свържете сайта си с услугите на MaxMinds GeoIP2: "
1463
- "Precision, FreegeoIP (MaxMind GeoLITE) или GeoBytes GeoSelect."
1464
 
1465
- #: dashboard/adrotate-pro.php:36
1466
  msgid "Get Premium Support almost all year round"
1467
  msgstr "Получете премиум поддръжка почти през цялата година"
1468
 
1469
- #: dashboard/adrotate-pro.php:39
1470
  msgid ""
1471
- "When you activate your AdRotate Pro license you are entitled to ticket "
1472
- "support. AdRotate premium support which takes priority over the Forums and "
1473
- "even email. Get a solution (usually) within a day."
 
1474
  msgstr ""
1475
- "Когато активирате вашия AdRotate Pro лиценз ще имате достъп до ticket "
1476
- "системата за поддръжка. AdRotate премиум поддръжката е с приоритет спрямо "
1477
- "форумите и дори Email съобщенията. В общия случай ще получите отговор до 1 "
1478
- "ден."
1479
 
1480
- #: dashboard/adrotate-pro.php:60
1481
  msgid "Schedule all campaigns with ease"
1482
  msgstr "Планиране на всички кампании с лекота"
1483
 
1484
- #: dashboard/adrotate-pro.php:63
1485
  msgid ""
1486
- "Schedule your adverts and set up advertising campaigns based on date without "
1487
- "hassle. Seasonal adverts, weekly adverts. You name it. AdRotate schedules it."
 
 
1488
  msgstr ""
1489
- "Задайте графици за своите обяви и създавайте рекламни кампании по дати. "
1490
- "Сезонни реклами, ежеседмични събития и всичко каквото се сетите ... с "
1491
- "AdRotate."
1492
 
1493
- #: dashboard/adrotate-pro.php:68
1494
- msgid "Stay up-to-date with the notification system"
1495
- msgstr "Бъдете осведомени със системата за известия"
1496
 
1497
- #: dashboard/adrotate-pro.php:71
1498
  msgid ""
1499
- "Stay in touch with Email and/or push notifications. Get notified when "
 
 
1500
  "adverts expire, have errors or when advertisers create new adverts. Never "
1501
  "miss an expiration date again."
1502
  msgstr ""
1503
- "Бъдете информирани, използвайте известията по Email и/или с push съобщения. "
1504
- "Ще разберете кога изтичат обявите, какви грешки са възникнали и кога "
1505
- "рекламодателите добавят нови реклами."
 
1506
 
1507
  #: dashboard/publisher/adrotate-ads-edit.php:46
1508
  msgid "The AdCode cannot be empty!"
@@ -2482,6 +2467,63 @@ msgstr "Няма създадени групи!"
2482
  msgid "Statistics for group"
2483
  msgstr "Статистика за групи"
2484
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2485
  #~ msgid "Title:"
2486
  #~ msgstr "Заглавие:"
2487
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-30 02:48+0100\n"
6
+ "PO-Revision-Date: 2015-05-30 02:48+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.8.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:796
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
+ #: adrotate-functions.php:799
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
+ #: adrotate-output.php:735
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "О не! Нещо се случи!"
31
 
32
+ #: adrotate-output.php:736
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:737
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:738
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
50
 
51
+ #: adrotate-output.php:756
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:758
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:765 adrotate-output.php:767
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:773
74
  msgid "Error, no Ad ID set! Check your syntax!"
75
  msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
76
 
77
+ #: adrotate-output.php:779
78
  msgid "Error, no group ID set! Check your syntax!"
79
  msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
80
 
81
+ #: adrotate-output.php:784
82
  msgid "Error, group does not exist! Check your syntax!"
83
  msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
84
 
85
+ #: adrotate-output.php:790
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:790
94
  msgid "If this does not solve the issue please seek support at"
95
  msgstr "Ако това не решава проблема, моля потърсете помощ на"
96
 
97
+ #: adrotate-output.php:796
98
  msgid "An unknown error occured."
99
  msgstr "Възникна неизвестна грешка."
100
 
101
+ #: adrotate-output.php:821
102
  msgid "active ad(s) expired."
103
  msgstr "изтекла/и активна/и реклама/и."
104
 
105
+ #: adrotate-output.php:821
106
  msgid "Take action now"
107
  msgstr "Предприемане на действия"
108
 
109
+ #: adrotate-output.php:823
110
  msgid "active ad(s) are about to expire."
111
  msgstr "изтичаща/и активна/и реклама/и."
112
 
113
+ #: adrotate-output.php:823
114
  msgid "Check it out"
115
  msgstr "Проверете го"
116
 
117
+ #: adrotate-output.php:825
118
  msgid "active ad(s) with configuration errors."
119
  msgstr "активна(и) реклама(и) с грешни настройки."
120
 
121
+ #: adrotate-output.php:825
122
  msgid "Solve this"
123
  msgstr "Разреши това"
124
 
125
+ #: adrotate-output.php:827
126
  msgid "ad(s) expired."
127
  msgstr "изтекла/и реклама/и."
128
 
129
+ #: adrotate-output.php:827
130
  msgid "ad(s) are about to expire."
131
  msgstr "реклама/и изтича(т)."
132
 
133
+ #: adrotate-output.php:827
134
  msgid "ad(s) with configuration errors."
135
  msgstr "реклама/и с грешни настройки."
136
 
137
+ #: adrotate-output.php:827
138
  msgid "Fix this as soon as possible"
139
  msgstr "Поправка възможно най-скоро"
140
 
141
+ #: adrotate-output.php:839
142
  msgid "Learn More"
143
  msgstr "Научете повече"
144
 
145
+ #: adrotate-output.php:840
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:840
154
  msgid "Get more features to even better run your advertising campaigns."
155
  msgstr ""
156
  "Вземете повече опции за дори по-добро управление на вашите рекламни кампании."
157
 
158
+ #: adrotate-output.php:840
159
  msgid "Thank you for your consideration!"
160
  msgstr "Благодарим Ви, че го обмислихте!"
161
 
162
+ #: adrotate-output.php:884
163
  msgid ""
164
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
165
  "this menu. Check out the"
166
  msgstr ""
167
 
168
+ #: adrotate-output.php:884
169
  msgid "manuals"
170
  msgstr "ръководства"
171
 
172
+ #: adrotate-output.php:884 adrotate-output.php:960
173
  #: dashboard/publisher/adrotate-ads-edit.php:151
174
  msgid "and"
175
  msgstr "и"
176
 
177
+ #: adrotate-output.php:884
178
  msgid "forums"
179
  msgstr ""
180
 
181
+ #: adrotate-output.php:920
182
  msgid "Useful Links"
183
  msgstr "Полезни връзки"
184
 
185
+ #: adrotate-output.php:921
186
  msgid "Useful links to learn more about AdRotate"
187
  msgstr "Полезни връзки, за да получите повече информация за AdRotate"
188
 
189
+ #: adrotate-output.php:923
190
  msgid "AdRotate Page"
191
  msgstr ""
192
 
193
+ #: adrotate-output.php:924
194
  msgid "Getting Started With AdRotate"
195
  msgstr "Започнете от нулата с AdRotate Pro"
196
 
197
+ #: adrotate-output.php:925
198
  msgid "AdRotate manuals"
199
  msgstr ""
200
 
201
+ #: adrotate-output.php:926
202
  msgid "AdRotate Support Forum"
203
  msgstr "Форум за поддръжка на AdRotate"
204
 
205
+ #: adrotate-output.php:952
206
  msgid "Help AdRotate Grow"
207
  msgstr "Помогнете за развитието на AdRotate"
208
 
209
+ #: adrotate-output.php:953
210
  msgid "Brought to you by"
211
  msgstr "Достига до Вас благодарение на"
212
 
213
+ #: adrotate-output.php:960
214
  msgid ""
215
  "A lot of users only think to review AdRotate when something goes wrong while "
216
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
219
  "се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
220
  "това да остане незабелязано."
221
 
222
+ #: adrotate-output.php:960
223
  msgid "If you find AdRotate useful please leave your honest"
224
  msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
225
 
226
+ #: adrotate-output.php:960
227
  msgid "rating"
228
  msgstr "оценка"
229
 
230
+ #: adrotate-output.php:960
231
  msgid "review"
232
  msgstr "мнение"
233
 
234
+ #: adrotate-output.php:960
235
  msgid "on WordPress.org to help AdRotate grow in a positive way"
236
  msgstr "на WordPress.org, за да се развива AdRotate"
237
 
238
+ #: adrotate-output.php:963
239
  msgid ""
240
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
241
  "out more about what I can do for you!"
243
  "Мястото, където да се консултирате и/или да поръчате разработка за "
244
  "WordPress! Открийте с какво мога да Ви бъда полезен!"
245
 
246
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
247
  msgid "Visit the"
248
  msgstr "Посетете"
249
 
250
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
251
  msgid "website"
252
  msgstr "уебсайт"
253
 
254
+ #: adrotate-output.php:993 dashboard/publisher/adrotate-ads-edit.php:313
255
  msgid "Available in AdRotate Pro"
256
  msgstr "Налично в AdRotate Pro"
257
 
258
+ #: adrotate-output.php:993
259
  msgid "More information..."
260
  msgstr "Повече информация..."
261
 
262
+ #: adrotate-output.php:994
263
  msgid "This feature is available in AdRotate Pro"
264
  msgstr "Тази функционалност е налична в AdRotate Pro"
265
 
266
+ #: adrotate-output.php:994
267
  msgid "Learn more"
268
  msgstr "Повече информация"
269
 
339
  msgid "Next"
340
  msgstr "Следващ"
341
 
342
+ #: adrotate-statistics.php:284 dashboard/adrotate-info.php:125
343
  msgid "No data to show!"
344
  msgstr "Няма информация!"
345
 
346
+ #: adrotate-widget.php:112
347
  msgid "Title (optional):"
348
  msgstr "Заглавие (не е задължително):"
349
 
350
+ #: adrotate-widget.php:115
351
  msgid "HTML will be stripped out."
352
  msgstr "HTML тагове не се поддържат."
353
 
354
+ #: adrotate-widget.php:118
355
  msgid "Description (optional):"
356
  msgstr "Описание (не е задължително):"
357
 
358
+ #: adrotate-widget.php:121
359
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
360
  msgstr "За какво се използва тази джаджа? (Не се поддържат HTML тагове.)"
361
 
362
+ #: adrotate-widget.php:124
363
  msgid "Type:"
364
  msgstr "Тип:"
365
 
366
+ #: adrotate-widget.php:126
367
  msgid "Single Ad - Use Ad ID"
368
  msgstr "Единична реклама - Използване на ID на рекламата"
369
 
370
+ #: adrotate-widget.php:127
371
  msgid "Group of Ads - Use group ID"
372
  msgstr "Група реклами - Използване на ID на групата"
373
 
374
+ #: adrotate-widget.php:130
375
  msgid "Choose what you want to use this widget for"
376
  msgstr "Изберете за какво иската да използвате тази джаджа"
377
 
378
+ #: adrotate-widget.php:133
379
  msgid "ID:"
380
  msgstr "ID:"
381
 
382
+ #: adrotate-widget.php:136
383
  msgid "Fill in the ID of the type you want to display!"
384
  msgstr "Попълнете ID-то на типа, който искате да се показва!"
385
 
764
  msgid "Role to delete groups."
765
  msgstr "Роля за изтриване на групи."
766
 
767
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:784 adrotate.php:831
768
+ #: adrotate.php:875
769
  msgid "Update Options"
770
  msgstr "Опции за обновяване"
771
 
932
  "Сложете отметка, за да премахнете празното пространство около рекламите в "
933
  "джаджата. (Не винаги работи!)"
934
 
935
+ #: adrotate.php:758
936
  msgid "NOTICE:"
937
  msgstr "ЗАБЕЛЕЖКА:"
938
 
939
+ #: adrotate.php:759
940
  msgid ""
941
  "You have enabled W3 Total Caching support but not defined the security hash. "
942
  "You need to add the following line to your wp-config.php near the bottom or "
948
  "до края или под ред 52. Също така функцията \"late init\" трябва да бъде "
949
  "включена в W3 Total Cache."
950
 
951
+ #: adrotate.php:762
952
  msgid "W3 Total Caching"
953
  msgstr "W3 Total Caching"
954
 
955
+ #: adrotate.php:763
956
  msgid "Check this box if you use W3 Total Caching on your site."
957
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
958
 
959
+ #: adrotate.php:767
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
960
  msgid ""
961
  "It may take a while for the ad to start rotating. The caching plugin needs "
962
  "to refresh the cache. This can take up to a week if not done manually."
965
  "Кеширащото разширение трябва да обнови данните. Това може да отнеме до една "
966
  "седмица, ако не го направите ръчно."
967
 
968
+ #: adrotate.php:767
969
  msgid ""
970
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
971
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
974
  "на AdRotate. Ако използвате PHP кода, трябва да го поставите в изключващ код "
975
  "сами."
976
 
977
+ #: adrotate.php:771
978
  msgid "Javascript"
979
  msgstr ""
980
 
981
+ #: adrotate.php:774
982
  msgid "Load jQuery"
983
  msgstr "Зареди jQuery"
984
 
985
+ #: adrotate.php:775
986
  msgid ""
987
  "jQuery is required for all Javascript features below. Enable this if your "
988
  "theme does not load jQuery already."
990
  " jQuery е необходим за всички Javascript опции по-долу. Включете го само ако "
991
  "темата ви вече не го е заредила."
992
 
993
+ #: adrotate.php:778
994
  msgid "Load in footer?"
995
  msgstr "Зареди във футера?"
996
 
997
+ #: adrotate.php:779
998
  msgid ""
999
  "Enable if you want to load the above libraries in the footer. Your theme "
1000
  "needs to call wp_footer() for this to work."
1002
  "Включете, ако искате да заредите изброените по-горе библиотеки във футера. "
1003
  "Необходимо е темата ви да извиква wp_footer(), за да проработи."
1004
 
1005
+ #: adrotate.php:787
1006
  msgid "Maintenance"
1007
  msgstr "Поддръжка"
1008
 
1009
+ #: adrotate.php:788
1010
  msgid ""
1011
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1012
  "They only apply to your ads/groups and stats. Not to other settings or other "
1020
  "функции само когато забележите, че вашата база данни е бавна, мудна или не "
1021
  "отговаря."
1022
 
1023
+ #: adrotate.php:803 adrotate.php:805
1024
  msgid "Optimize Database"
1025
  msgstr "Оптимизиране на базата данни"
1026
 
1027
+ #: adrotate.php:805
1028
  msgid "You are about to optimize the AdRotate database."
1029
  msgstr "На път сте да оптимизирате базата данни на AdRotate."
1030
 
1031
+ #: adrotate.php:805
1032
  msgid "Did you make a backup of your database?"
1033
  msgstr "Направихте ли резервно копие на своята база данни?"
1034
 
1035
+ #: adrotate.php:805
1036
  msgid ""
1037
  "This may take a moment and may cause your website to respond slow "
1038
  "temporarily!"
1040
  "Това ще отнеме малко време и може да накара сайта Ви да работи по-бавно за "
1041
  "момент!"
1042
 
1043
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1044
  #: dashboard/publisher/adrotate-groups-main.php:24
1045
  msgid "OK to continue, CANCEL to stop."
1046
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1047
 
1048
+ #: adrotate.php:806
1049
  msgid "Cleans up overhead data in the AdRotate tables."
1050
  msgstr "Почиста overhead данните в таблиците на AdRotate."
1051
 
1052
+ #: adrotate.php:807
1053
  msgid ""
1054
  "Overhead data is accumulated garbage resulting from many changes you've "
1055
  "made. This can vary from nothing to hundreds of KiB of data."
1057
  "Overhead данните са боклук, акумулиран в резултат на множеството промени, "
1058
  "които правите. Те могар да варират от 0 до хиляди KB."
1059
 
1060
+ #: adrotate.php:811 adrotate.php:813
1061
  msgid "Clean-up Database"
1062
  msgstr "Почистване на базата данни"
1063
 
1064
+ #: adrotate.php:813
1065
  msgid ""
1066
  "You are about to clean up your database. This may delete expired schedules "
1067
  "and older statistics."
1069
  "На път сте да почистите базата с данни. Това може да изтрие истекли графици "
1070
  "и стари статистики."
1071
 
1072
+ #: adrotate.php:813
1073
  msgid "Are you sure you want to continue?"
1074
  msgstr "Сигурни ли сте, че искате да продължите?"
1075
 
1076
+ #: adrotate.php:813 adrotate.php:821
1077
  msgid "This might take a while and may slow down your site during this action!"
1078
  msgstr ""
1079
  "Това действие ще отнеме време и може да забави сайта ви по време на "
1080
  "изпълнението му!"
1081
 
1082
+ #: adrotate.php:814
1083
  msgid "Delete stats older than 356 days (Optional)."
1084
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
1085
 
1086
+ #: adrotate.php:815
1087
  msgid ""
1088
  "AdRotate creates empty records when you start making ads or groups. In rare "
1089
  "occasions these records are faulty."
1091
  "AdRotate създава празни записи, когато започнете да създавате реклама или "
1092
  "група. В редки случай тези записи са дефектни."
1093
 
1094
+ #: adrotate.php:815
1095
  msgid ""
1096
  "If you made an ad or group that does not save when you make it use this "
1097
  "button to delete those empty records."
1099
  "Ако създадете реклама или група, която не може да се запише, използвайте "
1100
  "този бутон, за да изтриете празните полета."
1101
 
1102
+ #: adrotate.php:815
1103
  msgid ""
1104
  "Additionally you can clean up old statistics. This will improve the speed of "
1105
  "your site."
1107
  "Също така можете да изчистите остарелите статистики. Това ще подобри "
1108
  "скоростта на сайта Ви."
1109
 
1110
+ #: adrotate.php:819
1111
  msgid "Re-evaluate Ads"
1112
  msgstr "Преоценка на реклами"
1113
 
1114
+ #: adrotate.php:821
1115
  msgid "Re-evaluate all ads"
1116
  msgstr "Преоценка на всички реклами"
1117
 
1118
+ #: adrotate.php:821
1119
  msgid "You are about to check all ads for errors."
1120
  msgstr "На път сте да проверите всички реклами за грешки."
1121
 
1122
+ #: adrotate.php:822
1123
  msgid ""
1124
  "This will apply all evaluation rules to all ads to see if any error slipped "
1125
  "in. Normally you should not need this feature."
1127
  "Това ще провери всички реклами за грешки. Попринцип не би трябвало да имате "
1128
  "нужда от тази функция."
1129
 
1130
+ #: adrotate.php:826
1131
  msgid ""
1132
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1133
  "becomes unusable in any way or by any means in whichever way I will not take "
1144
  "Отстояването на тезата, че всичко е работело нормално преди да кликнете на "
1145
  "тези бутони е безсмислено."
1146
 
1147
+ #: adrotate.php:834
1148
  msgid "Troubleshooting"
1149
  msgstr "Отстраняване на проблеми"
1150
 
1151
+ #: adrotate.php:837
1152
  msgid "Current version:"
1153
  msgstr "Текуща версия:"
1154
 
1155
+ #: adrotate.php:838
1156
  msgid "Previous version:"
1157
  msgstr "Предишна версия:"
1158
 
1159
+ #: adrotate.php:841
1160
  msgid "Current database version:"
1161
  msgstr "Текуща верския на базата данни:"
1162
 
1163
+ #: adrotate.php:842
1164
  msgid "Previous database version:"
1165
  msgstr "Предишна версия на базата данни:"
1166
 
1167
+ #: adrotate.php:845
1168
  #, fuzzy
1169
  msgid "Ad evaluation next run:"
1170
  msgstr "Оценка на рекламата:"
1171
 
1172
+ #: adrotate.php:846 adrotate.php:850
1173
  msgid "Not scheduled!"
1174
  msgstr "Не е планирано!"
1175
 
1176
+ #: adrotate.php:849
1177
  #, fuzzy
1178
  msgid "Clean Trackerdata next run:"
1179
  msgstr "Изчистване на Trackerdata при следващо стартиране:"
1180
 
1181
+ #: adrotate.php:853
1182
  msgid "Current status of adverts"
1183
  msgstr "Настоящ статус на рекламите"
1184
 
1185
+ #: adrotate.php:854
1186
  msgid "Normal"
1187
  msgstr "Нормално"
1188
 
1189
+ #: adrotate.php:854
1190
  msgid "Error"
1191
  msgstr "Грешка"
1192
 
1193
+ #: adrotate.php:854
1194
  msgid "Expired"
1195
  msgstr "Изтекло"
1196
 
1197
+ #: adrotate.php:854
1198
  msgid "Expires Soon"
1199
  msgstr "Изтича скоро"
1200
 
1201
+ #: adrotate.php:854
1202
  msgid "Unknown Status"
1203
  msgstr "Неизвестен статус"
1204
 
1205
+ #: adrotate.php:857
1206
  msgid ""
1207
  "NOTE: The below options are not meant for normal use and are only there for "
1208
  "developers to review saved settings or how ads are selected. These can be "
1215
  "проблем, който трябва да се разреши. При нормална употреба оставете опциите "
1216
  "ИЗКЛЮЧЕНИ!!"
1217
 
1218
+ #: adrotate.php:861
1219
  msgid "Developer Debug"
1220
  msgstr "Developer Debug"
1221
 
1222
+ #: adrotate.php:863
1223
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1224
  msgstr ""
1225
  "Проверк за грешки в рекламите и как (дали) са закачени. Има потребителски "
1226
  "изглед."
1227
 
1228
+ #: adrotate.php:864
1229
  msgid "Show all settings, dashboard routines and related values."
1230
  msgstr "Показване на всички настройки, рутинни процедури и свързани стойности."
1231
 
1232
+ #: adrotate.php:865
1233
  msgid "Show array of all userroles and capabilities."
1234
  msgstr "Покажи масив с всички потребителски роли и възможности."
1235
 
1236
+ #: adrotate.php:866
1237
  msgid "Review saved advertisers! Visible to advertisers."
1238
  msgstr "Преглед на записаните рекламодатели! Видимо за рекламодатели."
1239
 
1240
+ #: adrotate.php:867
1241
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1242
  msgstr ""
1243
  "Преглед на глобални статитики, статистика за реклама/група. Видимо само за "
1244
  "автори."
1245
 
1246
+ #: adrotate.php:868
1247
  msgid ""
1248
  "Disable timers for clicks and impressions and enable a alert window for "
1249
  "clicktracking."
1251
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
1252
  "за проследяване на кликове."
1253
 
1254
+ #: adrotate.php:869
1255
  msgid "Temporarily disable encryption on the redirect url."
1256
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
1257
 
1258
+ #: dashboard/adrotate-info.php:66
1259
  msgid "Currently"
1260
  msgstr "В момента"
1261
 
1262
+ #: dashboard/adrotate-info.php:72
1263
  msgid "Your setup"
1264
  msgstr "Вие имате"
1265
 
1266
+ #: dashboard/adrotate-info.php:73
1267
  msgid "Adverts that need you"
1268
  msgstr "Реклами, които изискват вниманието Ви"
1269
 
1270
+ #: dashboard/adrotate-info.php:79
1271
  msgid "Adverts"
1272
  msgstr "Реклами"
1273
 
1274
+ #: dashboard/adrotate-info.php:80
1275
  msgid "(Almost) Expired"
1276
  msgstr "(Почти) Изтекли"
1277
 
1278
+ #: dashboard/adrotate-info.php:83
1279
  msgid "Groups"
1280
  msgstr "Групи"
1281
 
1282
+ #: dashboard/adrotate-info.php:84
1283
  msgid "Have errors"
1284
  msgstr "Има грешки"
1285
 
1286
+ #: dashboard/adrotate-info.php:88
1287
  msgid "Queued"
1288
  msgstr "На опашка"
1289
 
1290
+ #: dashboard/adrotate-info.php:95
1291
  msgid "The last few days"
1292
  msgstr "Последни няколко дни"
1293
 
1294
+ #: dashboard/adrotate-info.php:135
1295
  msgid "Support AdRotate"
1296
  msgstr "Подкрепете AdRotate"
1297
 
1298
+ #: dashboard/adrotate-info.php:142
1299
  msgid "Your gift helps ensure the continued development of AdRotate!"
1300
  msgstr ""
1301
 
1302
+ #: dashboard/adrotate-info.php:142
1303
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1304
  msgstr ""
1305
 
1306
+ #: dashboard/adrotate-info.php:151
1307
  msgid "AdRotate News and Developer Blog"
1308
  msgstr "AdRotate блог за новини и разработка"
1309
 
1310
  #: dashboard/adrotate-info.php:168
1311
+ msgid "Get notified of AdRotate updates via Pushover"
1312
+ msgstr ""
1313
+
1314
+ #: dashboard/adrotate-info.php:175
1315
+ msgid "Pushover is a push notification service for iOS and Android!"
1316
+ msgstr ""
1317
+
1318
+ #: dashboard/adrotate-info.php:188
1319
  msgid "Get more features with AdRotate Pro"
1320
  msgstr "Получете по-голяма функционалност с AdRotate Pro"
1321
 
1322
+ #: dashboard/adrotate-info.php:191
1323
  msgid ""
1324
  "Benefit from extra features to reinforce your income with advertising "
1325
  "campaigns. Make the most of your website with the powerful tools AdRotate "
1329
  "подобрите приходите. Използвайте пълния потенциал на сайта си с мощните "
1330
  "функции, които предлага AdRotate Pro спрямо безплатната версия."
1331
 
1332
+ #: dashboard/adrotate-info.php:191
1333
  msgid "Want to know more about"
1334
  msgstr ""
1335
 
1336
+ #: dashboard/adrotate-info.php:195 dashboard/adrotate-pro.php:72
1337
  msgid "Buy AdRotate Professional"
1338
  msgstr "Купете AdRotate Professional"
1339
 
1340
+ #: dashboard/adrotate-info.php:199
1341
+ msgid "Single License"
1342
+ msgstr ""
1343
 
1344
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-pro.php:76
1345
  msgid "For one WordPress installation."
1346
  msgstr "За една инсталация на WordPress."
1347
 
1348
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-info.php:200
1349
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-info.php:202
1350
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:76
1351
+ #: dashboard/adrotate-pro.php:77 dashboard/adrotate-pro.php:78
1352
+ #: dashboard/adrotate-pro.php:79 dashboard/adrotate-pro.php:80
1353
  msgid "Buy now"
1354
  msgstr "Купи сега"
1355
 
1356
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1357
  msgid "Duo License"
1358
  msgstr "Duo лиценз"
1359
 
1360
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1361
  msgid "For two WordPress installations."
1362
  msgstr "За две Wordpress инсталации."
1363
 
1364
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1365
  msgid "Multi License"
1366
  msgstr "Multi лиценз"
1367
 
1368
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1369
  msgid " For up to five WordPress installations."
1370
  msgstr " За до 5 Wordpress инсталации."
1371
 
1372
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1373
  msgid "Developer License"
1374
  msgstr "Developer лиценз"
1375
 
1376
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1377
  msgid "Unlimited WordPress installations and/or networks."
1378
  msgstr ""
1379
 
1380
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1381
  msgid "Network License"
1382
  msgstr "Network лиценз"
1383
 
1384
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1385
  msgid "Set up your own advertising network on a WordPress Multisite."
1386
  msgstr "Направете своя собствена рекламна мрежа чрез WordPress мултисайт."
1387
 
1388
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1389
  msgid "Compare licenses"
1390
  msgstr "Сравнение на лицензи"
1391
 
1392
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1393
  msgid "Not sure which license is for you? Compare them..."
1394
  msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
1395
 
1396
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1397
  msgid "All Licenses"
1398
  msgstr "Всички лицензи"
1399
 
1400
+ #: dashboard/adrotate-info.php:208 dashboard/adrotate-pro.php:41
1401
  msgid "AdRotate is brought to you by"
1402
  msgstr "AdRotate достига до Вас, благодарение на"
1403
 
1404
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1405
  msgid ""
1406
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1407
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1412
  "искате сайта Ви да бъде мигриран? Посетете страницата ми за повече "
1413
  "информация!"
1414
 
1415
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1416
  msgid "Find out more"
1417
  msgstr "Научете повече"
1418
 
1419
+ #: dashboard/adrotate-info.php:214
1420
  msgid "Follow"
1421
  msgstr "Последвай"
1422
 
1436
  "за одобрение от модератор. Рекламодателите ще имат достъп до малко табло, "
1437
  "където да се информират за представянето не рекламите си."
1438
 
1439
+ #: dashboard/adrotate-pro.php:27
1440
  msgid "Localize your ad campaigns with Geo Targeting"
1441
  msgstr "Локализирайте своите рекламни кампании с Таргетиране по местоположение"
1442
 
1443
+ #: dashboard/adrotate-pro.php:30
1444
  msgid ""
1445
  "Go nationwide or global with localized adverts for your various audiences. "
1446
  "Set up adverts for countries and cities and sell impressions per general "
1447
+ "area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
1448
+ "Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
1449
  msgstr ""
 
 
 
 
1450
 
1451
+ #: dashboard/adrotate-pro.php:34
1452
  msgid "Get Premium Support almost all year round"
1453
  msgstr "Получете премиум поддръжка почти през цялата година"
1454
 
1455
+ #: dashboard/adrotate-pro.php:37
1456
  msgid ""
1457
+ "When you activate your AdRotate Pro license you can use fast and personal "
1458
+ "email support. No more queueing up in the forums. AdRotate premium support "
1459
+ "takes priority over the forums and is checked much more often than the "
1460
+ "forum. Get a solution (usually) within a day."
1461
  msgstr ""
 
 
 
 
1462
 
1463
+ #: dashboard/adrotate-pro.php:58
1464
  msgid "Schedule all campaigns with ease"
1465
  msgstr "Планиране на всички кампании с лекота"
1466
 
1467
+ #: dashboard/adrotate-pro.php:61
1468
  msgid ""
1469
+ "Schedule your adverts and set up advertising campaigns based on dates you or "
1470
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
1471
+ "You name it, AdRotate schedules it. This makes planning your revenue stream "
1472
+ "much more easy. You can set one or many schedules for adverts."
1473
  msgstr ""
 
 
 
1474
 
1475
+ #: dashboard/adrotate-pro.php:65
1476
+ msgid "Stay up-to-date with notifications"
1477
+ msgstr ""
1478
 
1479
+ #: dashboard/adrotate-pro.php:68
1480
  msgid ""
1481
+ "Stay in touch with Email notifications. Have AdRotate send you an alert when "
1482
+ "adverts expire or need your attention. Additionally, you can have AdRotate "
1483
+ "send push notifications to your iOS or Android smartphone. Get notified when "
1484
  "adverts expire, have errors or when advertisers create new adverts. Never "
1485
  "miss an expiration date again."
1486
  msgstr ""
1487
+
1488
+ #: dashboard/adrotate-pro.php:76
1489
+ msgid "Singe License"
1490
+ msgstr "Singe лиценз"
1491
 
1492
  #: dashboard/publisher/adrotate-ads-edit.php:46
1493
  msgid "The AdCode cannot be empty!"
2467
  msgid "Statistics for group"
2468
  msgstr "Статистика за групи"
2469
 
2470
+ #~ msgid ""
2471
+ #~ "You have enabled WP Super Cache support. If you have version 1.4 or "
2472
+ #~ "newer, this function will not work. WP Super Cache has discontinued "
2473
+ #~ "support for dynamic content."
2474
+ #~ msgstr ""
2475
+ #~ "Включили сте поддръжката на WP Super Cache. Ако имате версия 1.4 или по-"
2476
+ #~ "нова, тази функция няма да работи. WP Super Cache прекрати поддръжката за "
2477
+ #~ "динамично съдържание."
2478
+
2479
+ #~ msgid "WP Super Cache"
2480
+ #~ msgstr "WP Super Cache"
2481
+
2482
+ #~ msgid "Check this box if you use WP Super Cache on your site."
2483
+ #~ msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
2484
+
2485
+ #~ msgid ""
2486
+ #~ "Go nationwide or global with localized adverts for your various "
2487
+ #~ "audiences. Set up adverts for countries and cities and sell impressions "
2488
+ #~ "per general area. Connect your site to MaxMinds GeoIP2: Precision, "
2489
+ #~ "FreegeoIP (MaxMind GeoLITE) or GeoBytes GeoSelect services."
2490
+ #~ msgstr ""
2491
+ #~ "Бъдете представени национално или глобално с реклами по местоположение. "
2492
+ #~ "Задайте реклами по определени страни и градове и продавайте импресии по "
2493
+ #~ "разположение на банера. Свържете сайта си с услугите на MaxMinds GeoIP2: "
2494
+ #~ "Precision, FreegeoIP (MaxMind GeoLITE) или GeoBytes GeoSelect."
2495
+
2496
+ #~ msgid ""
2497
+ #~ "When you activate your AdRotate Pro license you are entitled to ticket "
2498
+ #~ "support. AdRotate premium support which takes priority over the Forums "
2499
+ #~ "and even email. Get a solution (usually) within a day."
2500
+ #~ msgstr ""
2501
+ #~ "Когато активирате вашия AdRotate Pro лиценз ще имате достъп до ticket "
2502
+ #~ "системата за поддръжка. AdRotate премиум поддръжката е с приоритет спрямо "
2503
+ #~ "форумите и дори Email съобщенията. В общия случай ще получите отговор до "
2504
+ #~ "1 ден."
2505
+
2506
+ #~ msgid ""
2507
+ #~ "Schedule your adverts and set up advertising campaigns based on date "
2508
+ #~ "without hassle. Seasonal adverts, weekly adverts. You name it. AdRotate "
2509
+ #~ "schedules it."
2510
+ #~ msgstr ""
2511
+ #~ "Задайте графици за своите обяви и създавайте рекламни кампании по дати. "
2512
+ #~ "Сезонни реклами, ежеседмични събития и всичко каквото се сетите ... с "
2513
+ #~ "AdRotate."
2514
+
2515
+ #~ msgid "Stay up-to-date with the notification system"
2516
+ #~ msgstr "Бъдете осведомени със системата за известия"
2517
+
2518
+ #~ msgid ""
2519
+ #~ "Stay in touch with Email and/or push notifications. Get notified when "
2520
+ #~ "adverts expire, have errors or when advertisers create new adverts. Never "
2521
+ #~ "miss an expiration date again."
2522
+ #~ msgstr ""
2523
+ #~ "Бъдете информирани, използвайте известията по Email и/или с push "
2524
+ #~ "съобщения. Ще разберете кога изтичат обявите, какви грешки са възникнали "
2525
+ #~ "и кога рекламодателите добавят нови реклами."
2526
+
2527
  #~ msgid "Title:"
2528
  #~ msgstr "Заглавие:"
2529
 
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-05-15 01:46+0100\n"
6
- "PO-Revision-Date: 2015-05-15 01:46+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.5\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: adrotate-functions.php:801
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
- #: adrotate-functions.php:804
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
- #: adrotate-output.php:737
30
  msgid "Oh no! Something went wrong!"
31
  msgstr "Παρουσιάστηκε κάποιο σφάλμα."
32
 
33
- #: adrotate-output.php:738
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:739
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:740
51
  msgid "Contact support if the issue persists:"
52
  msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
53
 
54
- #: adrotate-output.php:758
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:760
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:767 adrotate-output.php:769
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:775
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr ""
81
  "Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
82
 
83
- #: adrotate-output.php:781
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
86
 
87
- #: adrotate-output.php:786
88
  msgid "Error, group does not exist! Check your syntax!"
89
  msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
90
 
91
- #: adrotate-output.php:792
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,155 +97,155 @@ msgstr ""
97
  "Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
98
  "προσθέτων!!"
99
 
100
- #: adrotate-output.php:792
101
  msgid "If this does not solve the issue please seek support at"
102
  msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
103
 
104
- #: adrotate-output.php:798
105
  msgid "An unknown error occured."
106
  msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
107
 
108
- #: adrotate-output.php:823
109
  msgid "active ad(s) expired."
110
  msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
111
 
112
- #: adrotate-output.php:823
113
  msgid "Take action now"
114
  msgstr "Λάβετε μέτρα τώρα"
115
 
116
- #: adrotate-output.php:825
117
  msgid "active ad(s) are about to expire."
118
  msgstr "ενεργή(ές) διαφήμιση(εις) είναι έτοιμες να λήξουν."
119
 
120
- #: adrotate-output.php:825
121
  msgid "Check it out"
122
  msgstr "Ελέγξτε το"
123
 
124
- #: adrotate-output.php:827
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "ενεργή(ές) διαφήμιση(εις) με σφάλματα ρύθμισης."
127
 
128
- #: adrotate-output.php:827
129
  msgid "Solve this"
130
  msgstr "Λύστε το"
131
 
132
- #: adrotate-output.php:829
133
  msgid "ad(s) expired."
134
  msgstr "διαφήμιση(εις) έληξε(αν)"
135
 
136
- #: adrotate-output.php:829
137
  msgid "ad(s) are about to expire."
138
  msgstr "διαφήμιση(εις) θα λήξει(ουν)"
139
 
140
- #: adrotate-output.php:829
141
  msgid "ad(s) with configuration errors."
142
  msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
143
 
144
- #: adrotate-output.php:829
145
  msgid "Fix this as soon as possible"
146
  msgstr "Διορθώστε το το συντομότερο δυνατόν"
147
 
148
- #: adrotate-output.php:841
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Μάθετε περισσότερα σχετικά"
152
 
153
- #: adrotate-output.php:842
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:842
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
- #: adrotate-output.php:842
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
167
 
168
- #: adrotate-output.php:886
169
  msgid ""
170
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
171
  "this menu. Check out the"
172
  msgstr ""
173
 
174
- #: adrotate-output.php:886
175
  msgid "manuals"
176
  msgstr "εγχειρίδια"
177
 
178
- #: adrotate-output.php:886 adrotate-output.php:962
179
  #: dashboard/publisher/adrotate-ads-edit.php:151
180
  msgid "and"
181
  msgstr ""
182
 
183
- #: adrotate-output.php:886
184
  msgid "forums"
185
  msgstr ""
186
 
187
- #: adrotate-output.php:922
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Χρήσιμοι σύνδεσμοι"
191
 
192
- #: adrotate-output.php:923
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
- #: adrotate-output.php:925
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
- #: adrotate-output.php:926
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
205
 
206
- #: adrotate-output.php:927
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Πληροφορίες του AdRotate"
210
 
211
- #: adrotate-output.php:928
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Κατάστημα του AdRotate"
215
 
216
- #: adrotate-output.php:954
217
  #, fuzzy
218
  msgid "Help AdRotate Grow"
219
  msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
220
 
221
- #: adrotate-output.php:955
222
  msgid "Brought to you by"
223
  msgstr "Σας προσφέρεται από"
224
 
225
- #: adrotate-output.php:962
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:962
232
  msgid "If you find AdRotate useful please leave your honest"
233
  msgstr ""
234
 
235
- #: adrotate-output.php:962
236
  msgid "rating"
237
  msgstr ""
238
 
239
- #: adrotate-output.php:962
240
  #, fuzzy
241
  msgid "review"
242
  msgstr "Αξιολογήστε και σχολιάστε"
243
 
244
- #: adrotate-output.php:962
245
  msgid "on WordPress.org to help AdRotate grow in a positive way"
246
  msgstr ""
247
 
248
- #: adrotate-output.php:965
249
  msgid ""
250
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
251
  "out more about what I can do for you!"
@@ -253,28 +253,28 @@ msgstr ""
253
  "Η μοναδική σας στάση για ανάπτυξη, συμβουλές και οτιδήποτε για WordPress! "
254
  "Μάθετε περισσότερα για αυτά που μπορώ να κάνω για σας!"
255
 
256
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
257
  msgid "Visit the"
258
  msgstr "Επισκεφθείτε το"
259
 
260
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
261
  msgid "website"
262
  msgstr "ιστοσελίδα"
263
 
264
- #: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
265
  msgid "Available in AdRotate Pro"
266
  msgstr "Διαθέσιμο στο AdRotate Pro"
267
 
268
- #: adrotate-output.php:995
269
  #, fuzzy
270
  msgid "More information..."
271
  msgstr "Περισσότερες πληροφορίες"
272
 
273
- #: adrotate-output.php:996
274
  msgid "This feature is available in AdRotate Pro"
275
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
276
 
277
- #: adrotate-output.php:996
278
  #, fuzzy
279
  msgid "Learn more"
280
  msgstr "Μάθετε περισσότερα σχετικά"
@@ -351,49 +351,49 @@ msgstr "Αυτό το μήνα"
351
  msgid "Next"
352
  msgstr "Επόμενο"
353
 
354
- #: adrotate-statistics.php:284 dashboard/adrotate-info.php:123
355
  msgid "No data to show!"
356
  msgstr "Δεν υπάρχουν δεδομένα."
357
 
358
- #: adrotate-widget.php:116
359
  msgid "Title (optional):"
360
  msgstr "Τίτλος (προαιρετικό):"
361
 
362
- #: adrotate-widget.php:119
363
  msgid "HTML will be stripped out."
364
  msgstr "Το HTML θα αφαιρεθεί."
365
 
366
- #: adrotate-widget.php:122
367
  msgid "Description (optional):"
368
  msgstr "Περιγραφή (προαιρετικό):"
369
 
370
- #: adrotate-widget.php:125
371
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
372
  msgstr ""
373
  "Για ποιο σκοπό χρησιμοποιείται αυτή η μονάδα; (Δεν θα αναλυθεί, το HTML θα "
374
  "αφαιρεθεί.)"
375
 
376
- #: adrotate-widget.php:128
377
  msgid "Type:"
378
  msgstr "Τύπος:"
379
 
380
- #: adrotate-widget.php:130
381
  msgid "Single Ad - Use Ad ID"
382
  msgstr "Μονή Διαφήμιση - Δώστε Κωδ. Διαφ."
383
 
384
- #: adrotate-widget.php:131
385
  msgid "Group of Ads - Use group ID"
386
  msgstr "Oμάδα Διαφημίσεων - Δώστε Κωδ. Ομάδ."
387
 
388
- #: adrotate-widget.php:134
389
  msgid "Choose what you want to use this widget for"
390
  msgstr "Επιλέξτε γιατί θέλετε να χρησιμοποιήσετε αυτή τη μονάδα"
391
 
392
- #: adrotate-widget.php:137
393
  msgid "ID:"
394
  msgstr "Κωδ:"
395
 
396
- #: adrotate-widget.php:140
397
  msgid "Fill in the ID of the type you want to display!"
398
  msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
399
 
@@ -785,8 +785,8 @@ msgstr "Διαγραφή ομάδων"
785
  msgid "Role to delete groups."
786
  msgstr "Ρόλος για τη διαγραφή ομάδων."
787
 
788
- #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
789
- #: adrotate.php:890
790
  msgid "Update Options"
791
  msgstr "Επιλογές Ανανέωσης"
792
 
@@ -965,11 +965,11 @@ msgstr ""
965
  "Ενεργοποιήστε την επιλογή για να αφαιρέσετε τα κενά περιθώρια γύρω από "
966
  "διαφημίσεις σε μονάδες. (Δεν δουλεύει πάντα!)"
967
 
968
- #: adrotate.php:760 adrotate.php:771
969
  msgid "NOTICE:"
970
  msgstr ""
971
 
972
- #: adrotate.php:761
973
  msgid ""
974
  "You have enabled W3 Total Caching support but not defined the security hash. "
975
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -977,34 +977,17 @@ msgid ""
977
  "needs to be enabled in W3 Total Cache as well too."
978
  msgstr ""
979
 
980
- #: adrotate.php:765
981
  msgid "W3 Total Caching"
982
  msgstr "W3 Total Caching"
983
 
984
- #: adrotate.php:766
985
  msgid "Check this box if you use W3 Total Caching on your site."
986
  msgstr ""
987
  "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το W3 Total Caching στην ιστοσελίδα "
988
  "σας."
989
 
990
- #: adrotate.php:772
991
- msgid ""
992
- "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
993
- "this function will not work. WP Super Cache has discontinued support for "
994
- "dynamic content."
995
- msgstr ""
996
-
997
- #: adrotate.php:776
998
- msgid "WP Super Cache"
999
- msgstr "WP Super Cache"
1000
-
1001
- #: adrotate.php:777
1002
- msgid "Check this box if you use WP Super Cache on your site."
1003
- msgstr ""
1004
- "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το WP Super Cache στην ιστοσελίδα "
1005
- "σας."
1006
-
1007
- #: adrotate.php:782
1008
  msgid ""
1009
  "It may take a while for the ad to start rotating. The caching plugin needs "
1010
  "to refresh the cache. This can take up to a week if not done manually."
@@ -1013,7 +996,7 @@ msgstr ""
1013
  "πρόσθετο caching πρέπει να ανανεώσει την προσωρινή μνήμη. Αυτό μπορεί να "
1014
  "πάρει μέχρι και μια εβδομάδα αν δεν γίνει χειροκίνητα."
1015
 
1016
- #: adrotate.php:782
1017
  msgid ""
1018
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1019
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -1022,16 +1005,16 @@ msgstr ""
1022
  "μονάδες AdRotate. Αν χρησιμοποιείτε κάποιο PHP Snippet πρέπει να περιλάβετε "
1023
  "μόνοι σας τον κώδικά σας στον κώδικα εξαίρεσης. "
1024
 
1025
- #: adrotate.php:786
1026
  msgid "Javascript"
1027
  msgstr ""
1028
 
1029
- #: adrotate.php:789
1030
  #, fuzzy
1031
  msgid "Load jQuery"
1032
  msgstr "Να περιληφθεί η jQuery"
1033
 
1034
- #: adrotate.php:790
1035
  #, fuzzy
1036
  msgid ""
1037
  "jQuery is required for all Javascript features below. Enable this if your "
@@ -1040,21 +1023,21 @@ msgstr ""
1040
  "Η jQuery είναι απαραίτητη για τις Δυναμικές Ομάδες. Ενεργοποιήστε την "
1041
  "επιλογή αν το θέμα σας δεν τη φορτώνει μόνο του."
1042
 
1043
- #: adrotate.php:793
1044
  msgid "Load in footer?"
1045
  msgstr ""
1046
 
1047
- #: adrotate.php:794
1048
  msgid ""
1049
  "Enable if you want to load the above libraries in the footer. Your theme "
1050
  "needs to call wp_footer() for this to work."
1051
  msgstr ""
1052
 
1053
- #: adrotate.php:802
1054
  msgid "Maintenance"
1055
  msgstr "Συντήρηση"
1056
 
1057
- #: adrotate.php:803
1058
  #, fuzzy
1059
  msgid ""
1060
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
@@ -1070,19 +1053,19 @@ msgstr ""
1070
  "χρησιμοποιούνται όταν νιώθετε ότι η βάση σας είναι αργή και δεν "
1071
  "ανταποκρίνεται καλά."
1072
 
1073
- #: adrotate.php:818 adrotate.php:820
1074
  msgid "Optimize Database"
1075
  msgstr "Βελτιστοποίηση Βάσης Δεδομένων"
1076
 
1077
- #: adrotate.php:820
1078
  msgid "You are about to optimize the AdRotate database."
1079
  msgstr "Πρόκειται να βελτιστοποιήσετε τη βάση δεδομένων του AdRotate."
1080
 
1081
- #: adrotate.php:820
1082
  msgid "Did you make a backup of your database?"
1083
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
1084
 
1085
- #: adrotate.php:820
1086
  msgid ""
1087
  "This may take a moment and may cause your website to respond slow "
1088
  "temporarily!"
@@ -1090,16 +1073,16 @@ msgstr ""
1090
  "Αυτή η ενέργεια μπορεί να διαρκέσει λίγα λεπτά και να κάνει την ιστοσελίδα "
1091
  "σας να είναι προσωρινά αργή!"
1092
 
1093
- #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1094
  #: dashboard/publisher/adrotate-groups-main.php:24
1095
  msgid "OK to continue, CANCEL to stop."
1096
  msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
1097
 
1098
- #: adrotate.php:821
1099
  msgid "Cleans up overhead data in the AdRotate tables."
1100
  msgstr "Καθαρίζει άχρηστα δεδομένα στους πίνακες του AdRotate."
1101
 
1102
- #: adrotate.php:822
1103
  msgid ""
1104
  "Overhead data is accumulated garbage resulting from many changes you've "
1105
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1108,11 +1091,11 @@ msgstr ""
1108
  "τις πολλές αλλαγές που έχετε κάνει στη βάση. Μπορεί να είναι από τίποτε "
1109
  "μέχρι εκατοντάδες kilobytes δεδομένων."
1110
 
1111
- #: adrotate.php:826 adrotate.php:828
1112
  msgid "Clean-up Database"
1113
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
1114
 
1115
- #: adrotate.php:828
1116
  msgid ""
1117
  "You are about to clean up your database. This may delete expired schedules "
1118
  "and older statistics."
@@ -1120,19 +1103,19 @@ msgstr ""
1120
  "Πρόκειται να καθαρίσετε τη βάση δεδομένων. Αυτή η ενέργεια θα διαγράψει "
1121
  "ληγμένα προγράμαμτα και παλαιότερες στατιστικές."
1122
 
1123
- #: adrotate.php:828
1124
  msgid "Are you sure you want to continue?"
1125
  msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
1126
 
1127
- #: adrotate.php:828 adrotate.php:836
1128
  msgid "This might take a while and may slow down your site during this action!"
1129
  msgstr ""
1130
 
1131
- #: adrotate.php:829
1132
  msgid "Delete stats older than 356 days (Optional)."
1133
  msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
1134
 
1135
- #: adrotate.php:830
1136
  #, fuzzy
1137
  msgid ""
1138
  "AdRotate creates empty records when you start making ads or groups. In rare "
@@ -1142,7 +1125,7 @@ msgstr ""
1142
  "διαφημίσεις, ομάδες ή μποκ. Σε σπάνιες περιπτώσεις αυτές οι εγγραφές είναι "
1143
  "λανθασμένες."
1144
 
1145
- #: adrotate.php:830
1146
  msgid ""
1147
  "If you made an ad or group that does not save when you make it use this "
1148
  "button to delete those empty records."
@@ -1150,7 +1133,7 @@ msgstr ""
1150
  "Αν κάνατε μια διαφήμιση ή μια ομάδα που δεν αποθηκεύεται, χρησιμοποιείστε "
1151
  "αυτό το κουμπί για να σβήσετε αυτές τις κενές εγγραφές. "
1152
 
1153
- #: adrotate.php:830
1154
  msgid ""
1155
  "Additionally you can clean up old statistics. This will improve the speed of "
1156
  "your site."
@@ -1158,27 +1141,27 @@ msgstr ""
1158
  "Επιπλέον μπορείτε να διαγράψετε παλιά στατιστικά. Αυτό θα βελτιώσει την "
1159
  "ταχύτητα της ιστοσελίδας σας."
1160
 
1161
- #: adrotate.php:834
1162
  #, fuzzy
1163
  msgid "Re-evaluate Ads"
1164
  msgstr "Διαφημίσεις"
1165
 
1166
- #: adrotate.php:836
1167
  msgid "Re-evaluate all ads"
1168
  msgstr ""
1169
 
1170
- #: adrotate.php:836
1171
  #, fuzzy
1172
  msgid "You are about to check all ads for errors."
1173
  msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
1174
 
1175
- #: adrotate.php:837
1176
  msgid ""
1177
  "This will apply all evaluation rules to all ads to see if any error slipped "
1178
  "in. Normally you should not need this feature."
1179
  msgstr ""
1180
 
1181
- #: adrotate.php:841
1182
  msgid ""
1183
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1184
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1195,64 +1178,64 @@ msgstr ""
1195
  "ισχυρισμός ότι λειτουργούσε πριν πατήσετε το κουμπί δεν είναι έγκυρος σε "
1196
  "καμμία περίπτωση. "
1197
 
1198
- #: adrotate.php:849
1199
  msgid "Troubleshooting"
1200
  msgstr "Αντιμετώπιση προβλημάτων"
1201
 
1202
- #: adrotate.php:852
1203
  msgid "Current version:"
1204
  msgstr "Τρέχουσα έκδοση:"
1205
 
1206
- #: adrotate.php:853
1207
  msgid "Previous version:"
1208
  msgstr "Προηγούμενη έκδοση:"
1209
 
1210
- #: adrotate.php:856
1211
  msgid "Current database version:"
1212
  msgstr "Τρέχουσα έκδοση βάσης:"
1213
 
1214
- #: adrotate.php:857
1215
  msgid "Previous database version:"
1216
  msgstr "Προηγούμενη έκδοση βάσης:"
1217
 
1218
- #: adrotate.php:860
1219
  #, fuzzy
1220
  msgid "Ad evaluation next run:"
1221
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
1222
 
1223
- #: adrotate.php:861 adrotate.php:865
1224
  msgid "Not scheduled!"
1225
  msgstr "Δεν έχει προγραμματιστεί!"
1226
 
1227
- #: adrotate.php:864
1228
  msgid "Clean Trackerdata next run:"
1229
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
1230
 
1231
- #: adrotate.php:868
1232
  msgid "Current status of adverts"
1233
  msgstr "Τρέχουσα κατάσταση διαφημίσεων"
1234
 
1235
- #: adrotate.php:869
1236
  msgid "Normal"
1237
  msgstr "Φυσιολογική"
1238
 
1239
- #: adrotate.php:869
1240
  msgid "Error"
1241
  msgstr "Σφάλμα"
1242
 
1243
- #: adrotate.php:869
1244
  msgid "Expired"
1245
  msgstr "Έληξε"
1246
 
1247
- #: adrotate.php:869
1248
  msgid "Expires Soon"
1249
  msgstr "Λήγει Σύντομα"
1250
 
1251
- #: adrotate.php:869
1252
  msgid "Unknown Status"
1253
  msgstr "Άγνωστη Κατάσταση"
1254
 
1255
- #: adrotate.php:872
1256
  msgid ""
1257
  "NOTE: The below options are not meant for normal use and are only there for "
1258
  "developers to review saved settings or how ads are selected. These can be "
@@ -1266,190 +1249,198 @@ msgstr ""
1266
  "σχετικό αίτημα, αλλά υπό κανονικές συνθήκες ΠΡΕΠΕΙ ΝΑ ΜΕΙΝΟΥΝ ΜΗ "
1267
  "ΕΠΙΛΕΓΜΕΝΕΣ!! "
1268
 
1269
- #: adrotate.php:876
1270
  msgid "Developer Debug"
1271
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
1272
 
1273
- #: adrotate.php:878
1274
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1275
  msgstr ""
1276
  "Αντιμετώπιση προβλημάτων διαφημίσεων και πως (αν) έχουν επιλεγεί και τι "
1277
  "έξοδο στην ιστοσελίδα δίνουν."
1278
 
1279
- #: adrotate.php:879
1280
  msgid "Show all settings, dashboard routines and related values."
1281
  msgstr ""
1282
  "Προβολή όλων των ρυθμίσεων, των ρουτινών του πίνακα ελέγχου και των σχετικών "
1283
  "τιμών."
1284
 
1285
- #: adrotate.php:880
1286
  msgid "Show array of all userroles and capabilities."
1287
  msgstr "Προβολή όλων των ρόλων χρηστών και των δυνατοτήτων τους."
1288
 
1289
- #: adrotate.php:881
1290
  msgid "Review saved advertisers! Visible to advertisers."
1291
  msgstr ""
1292
  "Ανασκόπηση των αποθηκευμένων διαφημιζομένων! Ορατό στους διαφημιζόμενους."
1293
 
1294
- #: adrotate.php:882
1295
  #, fuzzy
1296
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1297
  msgstr ""
1298
  "Ανασκόπηση συνολικών στατιστικών, ανά διαφήμιση/ομάδα/μπλοκ στατιστικών. "
1299
  "Ορατό μόνο σε εκδότες."
1300
 
1301
- #: adrotate.php:883
1302
  #, fuzzy
1303
  msgid ""
1304
  "Disable timers for clicks and impressions and enable a alert window for "
1305
  "clicktracking."
1306
  msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
1307
 
1308
- #: adrotate.php:884
1309
  msgid "Temporarily disable encryption on the redirect url."
1310
  msgstr ""
1311
  "Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
1312
 
1313
- #: dashboard/adrotate-info.php:65
1314
  msgid "Currently"
1315
  msgstr "Τρέχουσα Κατάσταση"
1316
 
1317
- #: dashboard/adrotate-info.php:71
1318
  msgid "Your setup"
1319
  msgstr "Η εγκατάστασή σας"
1320
 
1321
- #: dashboard/adrotate-info.php:72
1322
  msgid "Adverts that need you"
1323
  msgstr "Διαφημίσεις που χρειάζονται την προσοχή σας"
1324
 
1325
- #: dashboard/adrotate-info.php:78
1326
  msgid "Adverts"
1327
  msgstr "Διαφημίσεις"
1328
 
1329
- #: dashboard/adrotate-info.php:79
1330
  msgid "(Almost) Expired"
1331
  msgstr "(Σχεδόν) Έληξαν"
1332
 
1333
- #: dashboard/adrotate-info.php:82
1334
  msgid "Groups"
1335
  msgstr "Ομάδες"
1336
 
1337
- #: dashboard/adrotate-info.php:83
1338
  msgid "Have errors"
1339
  msgstr "Έχουν σφάλματα"
1340
 
1341
- #: dashboard/adrotate-info.php:87
1342
  msgid "Queued"
1343
  msgstr "Στην ουρά"
1344
 
1345
- #: dashboard/adrotate-info.php:93
1346
  msgid "The last few days"
1347
  msgstr "Οι τελευταίες ημέρες"
1348
 
1349
- #: dashboard/adrotate-info.php:132
1350
  msgid "Support AdRotate"
1351
  msgstr "Υποστηρίξτε το AdRotate"
1352
 
1353
- #: dashboard/adrotate-info.php:139
1354
  msgid "Your gift helps ensure the continued development of AdRotate!"
1355
  msgstr ""
1356
 
1357
- #: dashboard/adrotate-info.php:139
1358
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1359
  msgstr ""
1360
 
1361
- #: dashboard/adrotate-info.php:148
1362
  msgid "AdRotate News and Developer Blog"
1363
  msgstr "Νέα και Προγραμματιστικό Ιστολόγιο του AdRotate"
1364
 
1365
  #: dashboard/adrotate-info.php:168
 
 
 
 
 
 
 
 
1366
  #, fuzzy
1367
  msgid "Get more features with AdRotate Pro"
1368
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
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 Pro"
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 dashboard/adrotate-pro.php:83
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
  msgid "All Licenses"
1446
  msgstr ""
1447
 
1448
- #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
1449
  msgid "AdRotate is brought to you by"
1450
  msgstr "Το AdRotate έρχεται από την "
1451
 
1452
- #: dashboard/adrotate-info.php:192 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 +1451,11 @@ msgstr ""
1460
  "μετακινήσετε την ιστοσελίδα σας, επισκεφθείτε τον ιστοτόπο μας για "
1461
  "πληροφορίες!"
1462
 
1463
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1464
  msgid "Find out more"
1465
  msgstr "Μάθετε περισσότερα"
1466
 
1467
- #: dashboard/adrotate-info.php:194
1468
  msgid "Follow"
1469
  msgstr ""
1470
 
@@ -1481,50 +1472,59 @@ msgid ""
1481
  "can see their adverts performance."
1482
  msgstr ""
1483
 
1484
- #: dashboard/adrotate-pro.php:28
1485
  msgid "Localize your ad campaigns with Geo Targeting"
1486
  msgstr ""
1487
 
1488
- #: dashboard/adrotate-pro.php:31
1489
  msgid ""
1490
  "Go nationwide or global with localized adverts for your various audiences. "
1491
  "Set up adverts for countries and cities and sell impressions per general "
1492
- "area. Connect your site to MaxMinds GeoIP2: Precision, FreegeoIP (MaxMind "
1493
- "GeoLITE) or GeoBytes GeoSelect services."
1494
  msgstr ""
1495
 
1496
- #: dashboard/adrotate-pro.php:36
1497
  msgid "Get Premium Support almost all year round"
1498
  msgstr ""
1499
 
1500
- #: dashboard/adrotate-pro.php:39
1501
  msgid ""
1502
- "When you activate your AdRotate Pro license you are entitled to ticket "
1503
- "support. AdRotate premium support which takes priority over the Forums and "
1504
- "even email. Get a solution (usually) within a day."
 
1505
  msgstr ""
1506
 
1507
- #: dashboard/adrotate-pro.php:60
1508
  msgid "Schedule all campaigns with ease"
1509
  msgstr ""
1510
 
1511
- #: dashboard/adrotate-pro.php:63
1512
  msgid ""
1513
- "Schedule your adverts and set up advertising campaigns based on date without "
1514
- "hassle. Seasonal adverts, weekly adverts. You name it. AdRotate schedules it."
 
 
1515
  msgstr ""
1516
 
1517
- #: dashboard/adrotate-pro.php:68
1518
- msgid "Stay up-to-date with the notification system"
1519
  msgstr ""
1520
 
1521
- #: dashboard/adrotate-pro.php:71
1522
  msgid ""
1523
- "Stay in touch with Email and/or push notifications. Get notified when "
 
 
1524
  "adverts expire, have errors or when advertisers create new adverts. Never "
1525
  "miss an expiration date again."
1526
  msgstr ""
1527
 
 
 
 
 
1528
  #: dashboard/publisher/adrotate-ads-edit.php:46
1529
  msgid "The AdCode cannot be empty!"
1530
  msgstr "Ο AdCode δεν μπορεί να είναι κενός!"
@@ -2535,6 +2535,14 @@ msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
2535
  msgid "Statistics for group"
2536
  msgstr "Στατιστικά για την ομάδα"
2537
 
 
 
 
 
 
 
 
 
2538
  #~ msgid "Title:"
2539
  #~ msgstr "Τίτλος:"
2540
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-30 02:48+0100\n"
6
+ "PO-Revision-Date: 2015-05-30 02:48+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.8.1\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: adrotate-functions.php:796
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
+ #: adrotate-functions.php:799
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
+ #: adrotate-output.php:735
30
  msgid "Oh no! Something went wrong!"
31
  msgstr "Παρουσιάστηκε κάποιο σφάλμα."
32
 
33
+ #: adrotate-output.php:736
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:737
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:738
51
  msgid "Contact support if the issue persists:"
52
  msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
53
 
54
+ #: adrotate-output.php:756
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:758
63
  msgid ""
64
  "Error, Ad is not available at this time due to schedule/geolocation "
65
  "restrictions!"
67
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
68
  "χρονικών περιορισμών."
69
 
70
+ #: adrotate-output.php:765 adrotate-output.php:767
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:773
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr ""
81
  "Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
82
 
83
+ #: adrotate-output.php:779
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
86
 
87
+ #: adrotate-output.php:784
88
  msgid "Error, group does not exist! Check your syntax!"
89
  msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
90
 
91
+ #: adrotate-output.php:790
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:790
101
  msgid "If this does not solve the issue please seek support at"
102
  msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
103
 
104
+ #: adrotate-output.php:796
105
  msgid "An unknown error occured."
106
  msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
107
 
108
+ #: adrotate-output.php:821
109
  msgid "active ad(s) expired."
110
  msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
111
 
112
+ #: adrotate-output.php:821
113
  msgid "Take action now"
114
  msgstr "Λάβετε μέτρα τώρα"
115
 
116
+ #: adrotate-output.php:823
117
  msgid "active ad(s) are about to expire."
118
  msgstr "ενεργή(ές) διαφήμιση(εις) είναι έτοιμες να λήξουν."
119
 
120
+ #: adrotate-output.php:823
121
  msgid "Check it out"
122
  msgstr "Ελέγξτε το"
123
 
124
+ #: adrotate-output.php:825
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "ενεργή(ές) διαφήμιση(εις) με σφάλματα ρύθμισης."
127
 
128
+ #: adrotate-output.php:825
129
  msgid "Solve this"
130
  msgstr "Λύστε το"
131
 
132
+ #: adrotate-output.php:827
133
  msgid "ad(s) expired."
134
  msgstr "διαφήμιση(εις) έληξε(αν)"
135
 
136
+ #: adrotate-output.php:827
137
  msgid "ad(s) are about to expire."
138
  msgstr "διαφήμιση(εις) θα λήξει(ουν)"
139
 
140
+ #: adrotate-output.php:827
141
  msgid "ad(s) with configuration errors."
142
  msgstr "διαφήμιση(εις) με σφάλματα ρύθμισης."
143
 
144
+ #: adrotate-output.php:827
145
  msgid "Fix this as soon as possible"
146
  msgstr "Διορθώστε το το συντομότερο δυνατόν"
147
 
148
+ #: adrotate-output.php:839
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Μάθετε περισσότερα σχετικά"
152
 
153
+ #: adrotate-output.php:840
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:840
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
+ #: adrotate-output.php:840
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
167
 
168
+ #: adrotate-output.php:884
169
  msgid ""
170
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
171
  "this menu. Check out the"
172
  msgstr ""
173
 
174
+ #: adrotate-output.php:884
175
  msgid "manuals"
176
  msgstr "εγχειρίδια"
177
 
178
+ #: adrotate-output.php:884 adrotate-output.php:960
179
  #: dashboard/publisher/adrotate-ads-edit.php:151
180
  msgid "and"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:884
184
  msgid "forums"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:920
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Χρήσιμοι σύνδεσμοι"
191
 
192
+ #: adrotate-output.php:921
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:923
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
+ #: adrotate-output.php:924
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
205
 
206
+ #: adrotate-output.php:925
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Πληροφορίες του AdRotate"
210
 
211
+ #: adrotate-output.php:926
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Κατάστημα του AdRotate"
215
 
216
+ #: adrotate-output.php:952
217
  #, fuzzy
218
  msgid "Help AdRotate Grow"
219
  msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
220
 
221
+ #: adrotate-output.php:953
222
  msgid "Brought to you by"
223
  msgstr "Σας προσφέρεται από"
224
 
225
+ #: adrotate-output.php:960
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:960
232
  msgid "If you find AdRotate useful please leave your honest"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:960
236
  msgid "rating"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:960
240
  #, fuzzy
241
  msgid "review"
242
  msgstr "Αξιολογήστε και σχολιάστε"
243
 
244
+ #: adrotate-output.php:960
245
  msgid "on WordPress.org to help AdRotate grow in a positive way"
246
  msgstr ""
247
 
248
+ #: adrotate-output.php:963
249
  msgid ""
250
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
251
  "out more about what I can do for you!"
253
  "Η μοναδική σας στάση για ανάπτυξη, συμβουλές και οτιδήποτε για WordPress! "
254
  "Μάθετε περισσότερα για αυτά που μπορώ να κάνω για σας!"
255
 
256
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
257
  msgid "Visit the"
258
  msgstr "Επισκεφθείτε το"
259
 
260
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
261
  msgid "website"
262
  msgstr "ιστοσελίδα"
263
 
264
+ #: adrotate-output.php:993 dashboard/publisher/adrotate-ads-edit.php:313
265
  msgid "Available in AdRotate Pro"
266
  msgstr "Διαθέσιμο στο AdRotate Pro"
267
 
268
+ #: adrotate-output.php:993
269
  #, fuzzy
270
  msgid "More information..."
271
  msgstr "Περισσότερες πληροφορίες"
272
 
273
+ #: adrotate-output.php:994
274
  msgid "This feature is available in AdRotate Pro"
275
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
276
 
277
+ #: adrotate-output.php:994
278
  #, fuzzy
279
  msgid "Learn more"
280
  msgstr "Μάθετε περισσότερα σχετικά"
351
  msgid "Next"
352
  msgstr "Επόμενο"
353
 
354
+ #: adrotate-statistics.php:284 dashboard/adrotate-info.php:125
355
  msgid "No data to show!"
356
  msgstr "Δεν υπάρχουν δεδομένα."
357
 
358
+ #: adrotate-widget.php:112
359
  msgid "Title (optional):"
360
  msgstr "Τίτλος (προαιρετικό):"
361
 
362
+ #: adrotate-widget.php:115
363
  msgid "HTML will be stripped out."
364
  msgstr "Το HTML θα αφαιρεθεί."
365
 
366
+ #: adrotate-widget.php:118
367
  msgid "Description (optional):"
368
  msgstr "Περιγραφή (προαιρετικό):"
369
 
370
+ #: adrotate-widget.php:121
371
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
372
  msgstr ""
373
  "Για ποιο σκοπό χρησιμοποιείται αυτή η μονάδα; (Δεν θα αναλυθεί, το HTML θα "
374
  "αφαιρεθεί.)"
375
 
376
+ #: adrotate-widget.php:124
377
  msgid "Type:"
378
  msgstr "Τύπος:"
379
 
380
+ #: adrotate-widget.php:126
381
  msgid "Single Ad - Use Ad ID"
382
  msgstr "Μονή Διαφήμιση - Δώστε Κωδ. Διαφ."
383
 
384
+ #: adrotate-widget.php:127
385
  msgid "Group of Ads - Use group ID"
386
  msgstr "Oμάδα Διαφημίσεων - Δώστε Κωδ. Ομάδ."
387
 
388
+ #: adrotate-widget.php:130
389
  msgid "Choose what you want to use this widget for"
390
  msgstr "Επιλέξτε γιατί θέλετε να χρησιμοποιήσετε αυτή τη μονάδα"
391
 
392
+ #: adrotate-widget.php:133
393
  msgid "ID:"
394
  msgstr "Κωδ:"
395
 
396
+ #: adrotate-widget.php:136
397
  msgid "Fill in the ID of the type you want to display!"
398
  msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
399
 
785
  msgid "Role to delete groups."
786
  msgstr "Ρόλος για τη διαγραφή ομάδων."
787
 
788
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:784 adrotate.php:831
789
+ #: adrotate.php:875
790
  msgid "Update Options"
791
  msgstr "Επιλογές Ανανέωσης"
792
 
965
  "Ενεργοποιήστε την επιλογή για να αφαιρέσετε τα κενά περιθώρια γύρω από "
966
  "διαφημίσεις σε μονάδες. (Δεν δουλεύει πάντα!)"
967
 
968
+ #: adrotate.php:758
969
  msgid "NOTICE:"
970
  msgstr ""
971
 
972
+ #: adrotate.php:759
973
  msgid ""
974
  "You have enabled W3 Total Caching support but not defined the security hash. "
975
  "You need to add the following line to your wp-config.php near the bottom or "
977
  "needs to be enabled in W3 Total Cache as well too."
978
  msgstr ""
979
 
980
+ #: adrotate.php:762
981
  msgid "W3 Total Caching"
982
  msgstr "W3 Total Caching"
983
 
984
+ #: adrotate.php:763
985
  msgid "Check this box if you use W3 Total Caching on your site."
986
  msgstr ""
987
  "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το W3 Total Caching στην ιστοσελίδα "
988
  "σας."
989
 
990
+ #: adrotate.php:767
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
991
  msgid ""
992
  "It may take a while for the ad to start rotating. The caching plugin needs "
993
  "to refresh the cache. This can take up to a week if not done manually."
996
  "πρόσθετο caching πρέπει να ανανεώσει την προσωρινή μνήμη. Αυτό μπορεί να "
997
  "πάρει μέχρι και μια εβδομάδα αν δεν γίνει χειροκίνητα."
998
 
999
+ #: adrotate.php:767
1000
  msgid ""
1001
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1002
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1005
  "μονάδες AdRotate. Αν χρησιμοποιείτε κάποιο PHP Snippet πρέπει να περιλάβετε "
1006
  "μόνοι σας τον κώδικά σας στον κώδικα εξαίρεσης. "
1007
 
1008
+ #: adrotate.php:771
1009
  msgid "Javascript"
1010
  msgstr ""
1011
 
1012
+ #: adrotate.php:774
1013
  #, fuzzy
1014
  msgid "Load jQuery"
1015
  msgstr "Να περιληφθεί η jQuery"
1016
 
1017
+ #: adrotate.php:775
1018
  #, fuzzy
1019
  msgid ""
1020
  "jQuery is required for all Javascript features below. Enable this if your "
1023
  "Η jQuery είναι απαραίτητη για τις Δυναμικές Ομάδες. Ενεργοποιήστε την "
1024
  "επιλογή αν το θέμα σας δεν τη φορτώνει μόνο του."
1025
 
1026
+ #: adrotate.php:778
1027
  msgid "Load in footer?"
1028
  msgstr ""
1029
 
1030
+ #: adrotate.php:779
1031
  msgid ""
1032
  "Enable if you want to load the above libraries in the footer. Your theme "
1033
  "needs to call wp_footer() for this to work."
1034
  msgstr ""
1035
 
1036
+ #: adrotate.php:787
1037
  msgid "Maintenance"
1038
  msgstr "Συντήρηση"
1039
 
1040
+ #: adrotate.php:788
1041
  #, fuzzy
1042
  msgid ""
1043
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1053
  "χρησιμοποιούνται όταν νιώθετε ότι η βάση σας είναι αργή και δεν "
1054
  "ανταποκρίνεται καλά."
1055
 
1056
+ #: adrotate.php:803 adrotate.php:805
1057
  msgid "Optimize Database"
1058
  msgstr "Βελτιστοποίηση Βάσης Δεδομένων"
1059
 
1060
+ #: adrotate.php:805
1061
  msgid "You are about to optimize the AdRotate database."
1062
  msgstr "Πρόκειται να βελτιστοποιήσετε τη βάση δεδομένων του AdRotate."
1063
 
1064
+ #: adrotate.php:805
1065
  msgid "Did you make a backup of your database?"
1066
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
1067
 
1068
+ #: adrotate.php:805
1069
  msgid ""
1070
  "This may take a moment and may cause your website to respond slow "
1071
  "temporarily!"
1073
  "Αυτή η ενέργεια μπορεί να διαρκέσει λίγα λεπτά και να κάνει την ιστοσελίδα "
1074
  "σας να είναι προσωρινά αργή!"
1075
 
1076
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1077
  #: dashboard/publisher/adrotate-groups-main.php:24
1078
  msgid "OK to continue, CANCEL to stop."
1079
  msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
1080
 
1081
+ #: adrotate.php:806
1082
  msgid "Cleans up overhead data in the AdRotate tables."
1083
  msgstr "Καθαρίζει άχρηστα δεδομένα στους πίνακες του AdRotate."
1084
 
1085
+ #: adrotate.php:807
1086
  msgid ""
1087
  "Overhead data is accumulated garbage resulting from many changes you've "
1088
  "made. This can vary from nothing to hundreds of KiB of data."
1091
  "τις πολλές αλλαγές που έχετε κάνει στη βάση. Μπορεί να είναι από τίποτε "
1092
  "μέχρι εκατοντάδες kilobytes δεδομένων."
1093
 
1094
+ #: adrotate.php:811 adrotate.php:813
1095
  msgid "Clean-up Database"
1096
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
1097
 
1098
+ #: adrotate.php:813
1099
  msgid ""
1100
  "You are about to clean up your database. This may delete expired schedules "
1101
  "and older statistics."
1103
  "Πρόκειται να καθαρίσετε τη βάση δεδομένων. Αυτή η ενέργεια θα διαγράψει "
1104
  "ληγμένα προγράμαμτα και παλαιότερες στατιστικές."
1105
 
1106
+ #: adrotate.php:813
1107
  msgid "Are you sure you want to continue?"
1108
  msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
1109
 
1110
+ #: adrotate.php:813 adrotate.php:821
1111
  msgid "This might take a while and may slow down your site during this action!"
1112
  msgstr ""
1113
 
1114
+ #: adrotate.php:814
1115
  msgid "Delete stats older than 356 days (Optional)."
1116
  msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
1117
 
1118
+ #: adrotate.php:815
1119
  #, fuzzy
1120
  msgid ""
1121
  "AdRotate creates empty records when you start making ads or groups. In rare "
1125
  "διαφημίσεις, ομάδες ή μποκ. Σε σπάνιες περιπτώσεις αυτές οι εγγραφές είναι "
1126
  "λανθασμένες."
1127
 
1128
+ #: adrotate.php:815
1129
  msgid ""
1130
  "If you made an ad or group that does not save when you make it use this "
1131
  "button to delete those empty records."
1133
  "Αν κάνατε μια διαφήμιση ή μια ομάδα που δεν αποθηκεύεται, χρησιμοποιείστε "
1134
  "αυτό το κουμπί για να σβήσετε αυτές τις κενές εγγραφές. "
1135
 
1136
+ #: adrotate.php:815
1137
  msgid ""
1138
  "Additionally you can clean up old statistics. This will improve the speed of "
1139
  "your site."
1141
  "Επιπλέον μπορείτε να διαγράψετε παλιά στατιστικά. Αυτό θα βελτιώσει την "
1142
  "ταχύτητα της ιστοσελίδας σας."
1143
 
1144
+ #: adrotate.php:819
1145
  #, fuzzy
1146
  msgid "Re-evaluate Ads"
1147
  msgstr "Διαφημίσεις"
1148
 
1149
+ #: adrotate.php:821
1150
  msgid "Re-evaluate all ads"
1151
  msgstr ""
1152
 
1153
+ #: adrotate.php:821
1154
  #, fuzzy
1155
  msgid "You are about to check all ads for errors."
1156
  msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
1157
 
1158
+ #: adrotate.php:822
1159
  msgid ""
1160
  "This will apply all evaluation rules to all ads to see if any error slipped "
1161
  "in. Normally you should not need this feature."
1162
  msgstr ""
1163
 
1164
+ #: adrotate.php:826
1165
  msgid ""
1166
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1167
  "becomes unusable in any way or by any means in whichever way I will not take "
1178
  "ισχυρισμός ότι λειτουργούσε πριν πατήσετε το κουμπί δεν είναι έγκυρος σε "
1179
  "καμμία περίπτωση. "
1180
 
1181
+ #: adrotate.php:834
1182
  msgid "Troubleshooting"
1183
  msgstr "Αντιμετώπιση προβλημάτων"
1184
 
1185
+ #: adrotate.php:837
1186
  msgid "Current version:"
1187
  msgstr "Τρέχουσα έκδοση:"
1188
 
1189
+ #: adrotate.php:838
1190
  msgid "Previous version:"
1191
  msgstr "Προηγούμενη έκδοση:"
1192
 
1193
+ #: adrotate.php:841
1194
  msgid "Current database version:"
1195
  msgstr "Τρέχουσα έκδοση βάσης:"
1196
 
1197
+ #: adrotate.php:842
1198
  msgid "Previous database version:"
1199
  msgstr "Προηγούμενη έκδοση βάσης:"
1200
 
1201
+ #: adrotate.php:845
1202
  #, fuzzy
1203
  msgid "Ad evaluation next run:"
1204
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
1205
 
1206
+ #: adrotate.php:846 adrotate.php:850
1207
  msgid "Not scheduled!"
1208
  msgstr "Δεν έχει προγραμματιστεί!"
1209
 
1210
+ #: adrotate.php:849
1211
  msgid "Clean Trackerdata next run:"
1212
  msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
1213
 
1214
+ #: adrotate.php:853
1215
  msgid "Current status of adverts"
1216
  msgstr "Τρέχουσα κατάσταση διαφημίσεων"
1217
 
1218
+ #: adrotate.php:854
1219
  msgid "Normal"
1220
  msgstr "Φυσιολογική"
1221
 
1222
+ #: adrotate.php:854
1223
  msgid "Error"
1224
  msgstr "Σφάλμα"
1225
 
1226
+ #: adrotate.php:854
1227
  msgid "Expired"
1228
  msgstr "Έληξε"
1229
 
1230
+ #: adrotate.php:854
1231
  msgid "Expires Soon"
1232
  msgstr "Λήγει Σύντομα"
1233
 
1234
+ #: adrotate.php:854
1235
  msgid "Unknown Status"
1236
  msgstr "Άγνωστη Κατάσταση"
1237
 
1238
+ #: adrotate.php:857
1239
  msgid ""
1240
  "NOTE: The below options are not meant for normal use and are only there for "
1241
  "developers to review saved settings or how ads are selected. These can be "
1249
  "σχετικό αίτημα, αλλά υπό κανονικές συνθήκες ΠΡΕΠΕΙ ΝΑ ΜΕΙΝΟΥΝ ΜΗ "
1250
  "ΕΠΙΛΕΓΜΕΝΕΣ!! "
1251
 
1252
+ #: adrotate.php:861
1253
  msgid "Developer Debug"
1254
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
1255
 
1256
+ #: adrotate.php:863
1257
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1258
  msgstr ""
1259
  "Αντιμετώπιση προβλημάτων διαφημίσεων και πως (αν) έχουν επιλεγεί και τι "
1260
  "έξοδο στην ιστοσελίδα δίνουν."
1261
 
1262
+ #: adrotate.php:864
1263
  msgid "Show all settings, dashboard routines and related values."
1264
  msgstr ""
1265
  "Προβολή όλων των ρυθμίσεων, των ρουτινών του πίνακα ελέγχου και των σχετικών "
1266
  "τιμών."
1267
 
1268
+ #: adrotate.php:865
1269
  msgid "Show array of all userroles and capabilities."
1270
  msgstr "Προβολή όλων των ρόλων χρηστών και των δυνατοτήτων τους."
1271
 
1272
+ #: adrotate.php:866
1273
  msgid "Review saved advertisers! Visible to advertisers."
1274
  msgstr ""
1275
  "Ανασκόπηση των αποθηκευμένων διαφημιζομένων! Ορατό στους διαφημιζόμενους."
1276
 
1277
+ #: adrotate.php:867
1278
  #, fuzzy
1279
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1280
  msgstr ""
1281
  "Ανασκόπηση συνολικών στατιστικών, ανά διαφήμιση/ομάδα/μπλοκ στατιστικών. "
1282
  "Ορατό μόνο σε εκδότες."
1283
 
1284
+ #: adrotate.php:868
1285
  #, fuzzy
1286
  msgid ""
1287
  "Disable timers for clicks and impressions and enable a alert window for "
1288
  "clicktracking."
1289
  msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
1290
 
1291
+ #: adrotate.php:869
1292
  msgid "Temporarily disable encryption on the redirect url."
1293
  msgstr ""
1294
  "Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
1295
 
1296
+ #: dashboard/adrotate-info.php:66
1297
  msgid "Currently"
1298
  msgstr "Τρέχουσα Κατάσταση"
1299
 
1300
+ #: dashboard/adrotate-info.php:72
1301
  msgid "Your setup"
1302
  msgstr "Η εγκατάστασή σας"
1303
 
1304
+ #: dashboard/adrotate-info.php:73
1305
  msgid "Adverts that need you"
1306
  msgstr "Διαφημίσεις που χρειάζονται την προσοχή σας"
1307
 
1308
+ #: dashboard/adrotate-info.php:79
1309
  msgid "Adverts"
1310
  msgstr "Διαφημίσεις"
1311
 
1312
+ #: dashboard/adrotate-info.php:80
1313
  msgid "(Almost) Expired"
1314
  msgstr "(Σχεδόν) Έληξαν"
1315
 
1316
+ #: dashboard/adrotate-info.php:83
1317
  msgid "Groups"
1318
  msgstr "Ομάδες"
1319
 
1320
+ #: dashboard/adrotate-info.php:84
1321
  msgid "Have errors"
1322
  msgstr "Έχουν σφάλματα"
1323
 
1324
+ #: dashboard/adrotate-info.php:88
1325
  msgid "Queued"
1326
  msgstr "Στην ουρά"
1327
 
1328
+ #: dashboard/adrotate-info.php:95
1329
  msgid "The last few days"
1330
  msgstr "Οι τελευταίες ημέρες"
1331
 
1332
+ #: dashboard/adrotate-info.php:135
1333
  msgid "Support AdRotate"
1334
  msgstr "Υποστηρίξτε το AdRotate"
1335
 
1336
+ #: dashboard/adrotate-info.php:142
1337
  msgid "Your gift helps ensure the continued development of AdRotate!"
1338
  msgstr ""
1339
 
1340
+ #: dashboard/adrotate-info.php:142
1341
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1342
  msgstr ""
1343
 
1344
+ #: dashboard/adrotate-info.php:151
1345
  msgid "AdRotate News and Developer Blog"
1346
  msgstr "Νέα και Προγραμματιστικό Ιστολόγιο του AdRotate"
1347
 
1348
  #: dashboard/adrotate-info.php:168
1349
+ msgid "Get notified of AdRotate updates via Pushover"
1350
+ msgstr ""
1351
+
1352
+ #: dashboard/adrotate-info.php:175
1353
+ msgid "Pushover is a push notification service for iOS and Android!"
1354
+ msgstr ""
1355
+
1356
+ #: dashboard/adrotate-info.php:188
1357
  #, fuzzy
1358
  msgid "Get more features with AdRotate Pro"
1359
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1360
 
1361
+ #: dashboard/adrotate-info.php:191
1362
  msgid ""
1363
  "Benefit from extra features to reinforce your income with advertising "
1364
  "campaigns. Make the most of your website with the powerful tools AdRotate "
1365
  "Pro offers on top of the trusted features included in the free version."
1366
  msgstr ""
1367
 
1368
+ #: dashboard/adrotate-info.php:191
1369
  msgid "Want to know more about"
1370
  msgstr ""
1371
 
1372
+ #: dashboard/adrotate-info.php:195 dashboard/adrotate-pro.php:72
1373
  #, fuzzy
1374
  msgid "Buy AdRotate Professional"
1375
  msgstr "AdRotate Pro"
1376
 
1377
+ #: dashboard/adrotate-info.php:199
1378
+ msgid "Single License"
1379
  msgstr ""
1380
 
1381
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-pro.php:76
1382
  msgid "For one WordPress installation."
1383
  msgstr ""
1384
 
1385
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-info.php:200
1386
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-info.php:202
1387
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:76
1388
+ #: dashboard/adrotate-pro.php:77 dashboard/adrotate-pro.php:78
1389
+ #: dashboard/adrotate-pro.php:79 dashboard/adrotate-pro.php:80
1390
  #, fuzzy
1391
  msgid "Buy now"
1392
  msgstr "Λάβετε μέτρα τώρα"
1393
 
1394
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1395
  msgid "Duo License"
1396
  msgstr ""
1397
 
1398
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1399
  msgid "For two WordPress installations."
1400
  msgstr ""
1401
 
1402
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1403
  msgid "Multi License"
1404
  msgstr ""
1405
 
1406
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1407
  msgid " For up to five WordPress installations."
1408
  msgstr ""
1409
 
1410
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1411
  #, fuzzy
1412
  msgid "Developer License"
1413
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
1414
 
1415
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1416
  msgid "Unlimited WordPress installations and/or networks."
1417
  msgstr ""
1418
 
1419
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1420
  msgid "Network License"
1421
  msgstr ""
1422
 
1423
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1424
  msgid "Set up your own advertising network on a WordPress Multisite."
1425
  msgstr ""
1426
 
1427
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1428
  msgid "Compare licenses"
1429
  msgstr ""
1430
 
1431
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1432
  msgid "Not sure which license is for you? Compare them..."
1433
  msgstr ""
1434
 
1435
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1436
  msgid "All Licenses"
1437
  msgstr ""
1438
 
1439
+ #: dashboard/adrotate-info.php:208 dashboard/adrotate-pro.php:41
1440
  msgid "AdRotate is brought to you by"
1441
  msgstr "Το AdRotate έρχεται από την "
1442
 
1443
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1444
  msgid ""
1445
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1446
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1451
  "μετακινήσετε την ιστοσελίδα σας, επισκεφθείτε τον ιστοτόπο μας για "
1452
  "πληροφορίες!"
1453
 
1454
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1455
  msgid "Find out more"
1456
  msgstr "Μάθετε περισσότερα"
1457
 
1458
+ #: dashboard/adrotate-info.php:214
1459
  msgid "Follow"
1460
  msgstr ""
1461
 
1472
  "can see their adverts performance."
1473
  msgstr ""
1474
 
1475
+ #: dashboard/adrotate-pro.php:27
1476
  msgid "Localize your ad campaigns with Geo Targeting"
1477
  msgstr ""
1478
 
1479
+ #: dashboard/adrotate-pro.php:30
1480
  msgid ""
1481
  "Go nationwide or global with localized adverts for your various audiences. "
1482
  "Set up adverts for countries and cities and sell impressions per general "
1483
+ "area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
1484
+ "Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
1485
  msgstr ""
1486
 
1487
+ #: dashboard/adrotate-pro.php:34
1488
  msgid "Get Premium Support almost all year round"
1489
  msgstr ""
1490
 
1491
+ #: dashboard/adrotate-pro.php:37
1492
  msgid ""
1493
+ "When you activate your AdRotate Pro license you can use fast and personal "
1494
+ "email support. No more queueing up in the forums. AdRotate premium support "
1495
+ "takes priority over the forums and is checked much more often than the "
1496
+ "forum. Get a solution (usually) within a day."
1497
  msgstr ""
1498
 
1499
+ #: dashboard/adrotate-pro.php:58
1500
  msgid "Schedule all campaigns with ease"
1501
  msgstr ""
1502
 
1503
+ #: dashboard/adrotate-pro.php:61
1504
  msgid ""
1505
+ "Schedule your adverts and set up advertising campaigns based on dates you or "
1506
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
1507
+ "You name it, AdRotate schedules it. This makes planning your revenue stream "
1508
+ "much more easy. You can set one or many schedules for adverts."
1509
  msgstr ""
1510
 
1511
+ #: dashboard/adrotate-pro.php:65
1512
+ msgid "Stay up-to-date with notifications"
1513
  msgstr ""
1514
 
1515
+ #: dashboard/adrotate-pro.php:68
1516
  msgid ""
1517
+ "Stay in touch with Email notifications. Have AdRotate send you an alert when "
1518
+ "adverts expire or need your attention. Additionally, you can have AdRotate "
1519
+ "send push notifications to your iOS or Android smartphone. Get notified when "
1520
  "adverts expire, have errors or when advertisers create new adverts. Never "
1521
  "miss an expiration date again."
1522
  msgstr ""
1523
 
1524
+ #: dashboard/adrotate-pro.php:76
1525
+ msgid "Singe License"
1526
+ msgstr ""
1527
+
1528
  #: dashboard/publisher/adrotate-ads-edit.php:46
1529
  msgid "The AdCode cannot be empty!"
1530
  msgstr "Ο AdCode δεν μπορεί να είναι κενός!"
2535
  msgid "Statistics for group"
2536
  msgstr "Στατιστικά για την ομάδα"
2537
 
2538
+ #~ msgid "WP Super Cache"
2539
+ #~ msgstr "WP Super Cache"
2540
+
2541
+ #~ msgid "Check this box if you use WP Super Cache on your site."
2542
+ #~ msgstr ""
2543
+ #~ "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το WP Super Cache στην "
2544
+ #~ "ιστοσελίδα σας."
2545
+
2546
  #~ msgid "Title:"
2547
  #~ msgstr "Τίτλος:"
2548
 
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-05-15 01:46+0100\n"
6
- "PO-Revision-Date: 2015-05-15 01:46+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.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:801
20
  #, fuzzy
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
- #: adrotate-functions.php:804
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:737
30
  #, fuzzy
31
  msgid "Oh no! Something went wrong!"
32
  msgstr "Oh no! Un problème est survenu!"
33
 
34
- #: adrotate-output.php:738
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:739
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:740
52
  #, fuzzy
53
  msgid "Contact support if the issue persists:"
54
  msgstr "Contactez le support si le soucis persiste :"
55
 
56
- #: adrotate-output.php:758
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:760
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:767 adrotate-output.php:769
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:775
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:781
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:786
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:792
99
  #, fuzzy
100
  msgid ""
101
  "There was an error locating the database tables for AdRotate. Please "
@@ -105,169 +105,169 @@ msgstr ""
105
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
106
  "extensions. "
107
 
108
- #: adrotate-output.php:792
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:798
116
  #, fuzzy
117
  msgid "An unknown error occured."
118
  msgstr "Une erreur inconnue s'est produite."
119
 
120
- #: adrotate-output.php:823
121
  #, fuzzy
122
  msgid "active ad(s) expired."
123
  msgstr "publicité(s) active(s) ont expirée(s)."
124
 
125
- #: adrotate-output.php:823
126
  #, fuzzy
127
  msgid "Take action now"
128
  msgstr "Agir maintenant"
129
 
130
- #: adrotate-output.php:825
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:825
136
  #, fuzzy
137
  msgid "Check it out"
138
  msgstr "Vérifier-le"
139
 
140
- #: adrotate-output.php:827
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:827
146
  #, fuzzy
147
  msgid "Solve this"
148
  msgstr "Résoudre"
149
 
150
- #: adrotate-output.php:829
151
  #, fuzzy
152
  msgid "ad(s) expired."
153
  msgstr "publicité(s) active(s) ont expirée(s)."
154
 
155
- #: adrotate-output.php:829
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:829
161
  #, fuzzy
162
  msgid "ad(s) with configuration errors."
163
  msgstr "publicité(s) avec des erreurs de configuration."
164
 
165
- #: adrotate-output.php:829
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:841
171
  #, fuzzy
172
  msgid "Learn More"
173
  msgstr "En savoir plus"
174
 
175
- #: adrotate-output.php:842
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:842
182
  msgid "Get more features to even better run your advertising campaigns."
183
  msgstr ""
184
 
185
- #: adrotate-output.php:842
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:886
191
  msgid ""
192
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
193
  "this menu. Check out the"
194
  msgstr ""
195
 
196
- #: adrotate-output.php:886
197
  msgid "manuals"
198
  msgstr ""
199
 
200
- #: adrotate-output.php:886 adrotate-output.php:962
201
  #: dashboard/publisher/adrotate-ads-edit.php:151
202
  msgid "and"
203
  msgstr ""
204
 
205
- #: adrotate-output.php:886
206
  msgid "forums"
207
  msgstr ""
208
 
209
- #: adrotate-output.php:922
210
  msgid "Useful Links"
211
  msgstr ""
212
 
213
- #: adrotate-output.php:923
214
  msgid "Useful links to learn more about AdRotate"
215
  msgstr ""
216
 
217
- #: adrotate-output.php:925
218
  #, fuzzy
219
  msgid "AdRotate Page"
220
  msgstr "AdRotate Pro"
221
 
222
- #: adrotate-output.php:926
223
  #, fuzzy
224
  msgid "Getting Started With AdRotate"
225
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
226
 
227
- #: adrotate-output.php:927
228
  #, fuzzy
229
  msgid "AdRotate manuals"
230
  msgstr "Informations sur Adrotate"
231
 
232
- #: adrotate-output.php:928
233
  #, fuzzy
234
  msgid "AdRotate Support Forum"
235
  msgstr "Magasin AdRotate"
236
 
237
- #: adrotate-output.php:954
238
  #, fuzzy
239
  msgid "Help AdRotate Grow"
240
  msgstr "Bloqué avec AdRotate? Je peux vous aider!"
241
 
242
- #: adrotate-output.php:955
243
  #, fuzzy
244
  msgid "Brought to you by"
245
  msgstr "Présenté par"
246
 
247
- #: adrotate-output.php:962
248
  msgid ""
249
  "A lot of users only think to review AdRotate when something goes wrong while "
250
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
251
  msgstr ""
252
 
253
- #: adrotate-output.php:962
254
  msgid "If you find AdRotate useful please leave your honest"
255
  msgstr ""
256
 
257
- #: adrotate-output.php:962
258
  msgid "rating"
259
  msgstr ""
260
 
261
- #: adrotate-output.php:962
262
  #, fuzzy
263
  msgid "review"
264
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
265
 
266
- #: adrotate-output.php:962
267
  msgid "on WordPress.org to help AdRotate grow in a positive way"
268
  msgstr ""
269
 
270
- #: adrotate-output.php:965
271
  #, fuzzy
272
  msgid ""
273
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
@@ -276,32 +276,32 @@ msgstr ""
276
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
277
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
278
 
279
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
280
  #, fuzzy
281
  msgid "Visit the"
282
  msgstr "Visitez le"
283
 
284
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
285
  #, fuzzy
286
  msgid "website"
287
  msgstr "site"
288
 
289
- #: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
290
  #, fuzzy
291
  msgid "Available in AdRotate Pro"
292
  msgstr "Disponible dans Adrotate Pro"
293
 
294
- #: adrotate-output.php:995
295
  #, fuzzy
296
  msgid "More information..."
297
  msgstr "Plus d'informations..."
298
 
299
- #: adrotate-output.php:996
300
  #, fuzzy
301
  msgid "This feature is available in AdRotate Pro"
302
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
303
 
304
- #: adrotate-output.php:996
305
  #, fuzzy
306
  msgid "Learn more"
307
  msgstr "En savoir plus"
@@ -393,59 +393,59 @@ msgstr "Ce mois-ci"
393
  msgid "Next"
394
  msgstr "Prochain"
395
 
396
- #: adrotate-statistics.php:284 dashboard/adrotate-info.php:123
397
  #, fuzzy
398
  msgid "No data to show!"
399
  msgstr "Aucune donnée à montrer!"
400
 
401
- #: adrotate-widget.php:116
402
  #, fuzzy
403
  msgid "Title (optional):"
404
  msgstr "Titre (optionel) :"
405
 
406
- #: adrotate-widget.php:119
407
  #, fuzzy
408
  msgid "HTML will be stripped out."
409
  msgstr "Le code HTML sera retiré."
410
 
411
- #: adrotate-widget.php:122
412
  #, fuzzy
413
  msgid "Description (optional):"
414
  msgstr "Description (optionelle) :"
415
 
416
- #: adrotate-widget.php:125
417
  #, fuzzy
418
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
419
  msgstr ""
420
  "Quelle est l'utilisation de ce widget? (Non executé, le code HTML sera "
421
  "dépouillé.)"
422
 
423
- #: adrotate-widget.php:128
424
  #, fuzzy
425
  msgid "Type:"
426
  msgstr "Type :"
427
 
428
- #: adrotate-widget.php:130
429
  #, fuzzy
430
  msgid "Single Ad - Use Ad ID"
431
  msgstr "Ad Unique - Mettre l'identifiant de la publicité"
432
 
433
- #: adrotate-widget.php:131
434
  #, fuzzy
435
  msgid "Group of Ads - Use group ID"
436
  msgstr "Groupe de Pub - Mettre l'identifiant du groupe"
437
 
438
- #: adrotate-widget.php:134
439
  #, fuzzy
440
  msgid "Choose what you want to use this widget for"
441
  msgstr "Choisissez le fonction de ce widget"
442
 
443
- #: adrotate-widget.php:137
444
  #, fuzzy
445
  msgid "ID:"
446
  msgstr "ID :"
447
 
448
- #: adrotate-widget.php:140
449
  #, fuzzy
450
  msgid "Fill in the ID of the type you want to display!"
451
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
@@ -892,8 +892,8 @@ msgstr "Effacer les groups"
892
  msgid "Role to delete groups."
893
  msgstr "Rôle pour supprimer les groupes."
894
 
895
- #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
896
- #: adrotate.php:890
897
  #, fuzzy
898
  msgid "Update Options"
899
  msgstr "Mettre à jour les options"
@@ -1085,7 +1085,7 @@ msgstr ""
1085
  "Activez cette option pour supprimer la marge (espace vide) autour des "
1086
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
1087
 
1088
- #: adrotate.php:760 adrotate.php:771
1089
  #, fuzzy
1090
  msgid "NOTICE:"
1091
  msgstr ""
@@ -1095,7 +1095,7 @@ msgstr ""
1095
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1096
  "de données est lente ou ne réponds pas."
1097
 
1098
- #: adrotate.php:761
1099
  #, fuzzy
1100
  msgid ""
1101
  "You have enabled W3 Total Caching support but not defined the security hash. "
@@ -1108,38 +1108,17 @@ msgstr ""
1108
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
1109
  "fonction \"late init\" doit être activée dans W3 Total Cache."
1110
 
1111
- #: adrotate.php:765
1112
  #, fuzzy
1113
  msgid "W3 Total Caching"
1114
  msgstr "W3 Total Caching"
1115
 
1116
- #: adrotate.php:766
1117
  #, fuzzy
1118
  msgid "Check this box if you use W3 Total Caching on your site."
1119
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
1120
 
1121
- #: adrotate.php:772
1122
- #, fuzzy
1123
- msgid ""
1124
- "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
1125
- "this function will not work. WP Super Cache has discontinued support for "
1126
- "dynamic content."
1127
- msgstr ""
1128
- "Vous avez activé le support de WP Super Cache. Si vous avez la version 1.4 "
1129
- "ou plus récent, cette fonction ne marchera pas. WP Super Cache a arrêté le "
1130
- "support pour le contenu dynamique."
1131
-
1132
- #: adrotate.php:776
1133
- #, fuzzy
1134
- msgid "WP Super Cache"
1135
- msgstr "WP Super Cache"
1136
-
1137
- #: adrotate.php:777
1138
- #, fuzzy
1139
- msgid "Check this box if you use WP Super Cache on your site."
1140
- msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
1141
-
1142
- #: adrotate.php:782
1143
  #, fuzzy
1144
  msgid ""
1145
  "It may take a while for the ad to start rotating. The caching plugin needs "
@@ -1150,7 +1129,7 @@ msgstr ""
1150
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
1151
  "pas fait manuellement."
1152
 
1153
- #: adrotate.php:782
1154
  #, fuzzy
1155
  msgid ""
1156
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
@@ -1160,16 +1139,16 @@ msgstr ""
1160
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
1161
  "PHP dans le code d'exclusion vous-même."
1162
 
1163
- #: adrotate.php:786
1164
  msgid "Javascript"
1165
  msgstr ""
1166
 
1167
- #: adrotate.php:789
1168
  #, fuzzy
1169
  msgid "Load jQuery"
1170
  msgstr "Utilisez jQuery"
1171
 
1172
- #: adrotate.php:790
1173
  #, fuzzy
1174
  msgid ""
1175
  "jQuery is required for all Javascript features below. Enable this if your "
@@ -1178,12 +1157,12 @@ msgstr ""
1178
  "jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
1179
  "le si votre thème ne charge pas jQuery directement."
1180
 
1181
- #: adrotate.php:793
1182
  #, fuzzy
1183
  msgid "Load in footer?"
1184
  msgstr "Chargement dans le pied de page?"
1185
 
1186
- #: adrotate.php:794
1187
  #, fuzzy
1188
  msgid ""
1189
  "Enable if you want to load the above libraries in the footer. Your theme "
@@ -1192,12 +1171,12 @@ msgstr ""
1192
  "Activez cette option si vous voulez charger les bibliothèques dans le pied "
1193
  "de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
1194
 
1195
- #: adrotate.php:802
1196
  #, fuzzy
1197
  msgid "Maintenance"
1198
  msgstr "Maintenance"
1199
 
1200
- #: adrotate.php:803
1201
  #, fuzzy
1202
  msgid ""
1203
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
@@ -1212,22 +1191,22 @@ msgstr ""
1212
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1213
  "de données est lente ou ne réponds pas."
1214
 
1215
- #: adrotate.php:818 adrotate.php:820
1216
  #, fuzzy
1217
  msgid "Optimize Database"
1218
  msgstr "Optimiser la base de données"
1219
 
1220
- #: adrotate.php:820
1221
  #, fuzzy
1222
  msgid "You are about to optimize the AdRotate database."
1223
  msgstr "Vous allez optimiser la base de données de Adrotate."
1224
 
1225
- #: adrotate.php:820
1226
  #, fuzzy
1227
  msgid "Did you make a backup of your database?"
1228
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
1229
 
1230
- #: adrotate.php:820
1231
  #, fuzzy
1232
  msgid ""
1233
  "This may take a moment and may cause your website to respond slow "
@@ -1236,18 +1215,18 @@ msgstr ""
1236
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
1237
  "temporaire!"
1238
 
1239
- #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1240
  #: dashboard/publisher/adrotate-groups-main.php:24
1241
  #, fuzzy
1242
  msgid "OK to continue, CANCEL to stop."
1243
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1244
 
1245
- #: adrotate.php:821
1246
  #, fuzzy
1247
  msgid "Cleans up overhead data in the AdRotate tables."
1248
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
1249
 
1250
- #: adrotate.php:822
1251
  #, fuzzy
1252
  msgid ""
1253
  "Overhead data is accumulated garbage resulting from many changes you've "
@@ -1257,12 +1236,12 @@ msgstr ""
1257
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
1258
  "KB de données."
1259
 
1260
- #: adrotate.php:826 adrotate.php:828
1261
  #, fuzzy
1262
  msgid "Clean-up Database"
1263
  msgstr "Nettoyer la base de données"
1264
 
1265
- #: adrotate.php:828
1266
  #, fuzzy
1267
  msgid ""
1268
  "You are about to clean up your database. This may delete expired schedules "
@@ -1271,24 +1250,24 @@ msgstr ""
1271
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
1272
  "supprimer des calendriers périmés et des vieilles statistiques.."
1273
 
1274
- #: adrotate.php:828
1275
  #, fuzzy
1276
  msgid "Are you sure you want to continue?"
1277
  msgstr "Etes-vous certains de vouloir continuer?"
1278
 
1279
- #: adrotate.php:828 adrotate.php:836
1280
  #, fuzzy
1281
  msgid "This might take a while and may slow down your site during this action!"
1282
  msgstr ""
1283
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
1284
  "interval!"
1285
 
1286
- #: adrotate.php:829
1287
  #, fuzzy
1288
  msgid "Delete stats older than 356 days (Optional)."
1289
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
1290
 
1291
- #: adrotate.php:830
1292
  #, fuzzy
1293
  msgid ""
1294
  "AdRotate creates empty records when you start making ads or groups. In rare "
@@ -1297,7 +1276,7 @@ msgstr ""
1297
  "AdRotate crée des registres vides lorsque vous commencez à faire des "
1298
  "annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
1299
 
1300
- #: adrotate.php:830
1301
  #, fuzzy
1302
  msgid ""
1303
  "If you made an ad or group that does not save when you make it use this "
@@ -1307,7 +1286,7 @@ msgstr ""
1307
  "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
1308
  "registres vides."
1309
 
1310
- #: adrotate.php:830
1311
  #, fuzzy
1312
  msgid ""
1313
  "Additionally you can clean up old statistics. This will improve the speed of "
@@ -1316,22 +1295,22 @@ msgstr ""
1316
  "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
1317
  "d'améliorer la vitesse de votre site."
1318
 
1319
- #: adrotate.php:834
1320
  #, fuzzy
1321
  msgid "Re-evaluate Ads"
1322
  msgstr "Re-évaluer les publicités"
1323
 
1324
- #: adrotate.php:836
1325
  #, fuzzy
1326
  msgid "Re-evaluate all ads"
1327
  msgstr "Re-évaluer toutes les publicités"
1328
 
1329
- #: adrotate.php:836
1330
  #, fuzzy
1331
  msgid "You are about to check all ads for errors."
1332
  msgstr "Vous allez véifier l'état de toutes les publicités."
1333
 
1334
- #: adrotate.php:837
1335
  #, fuzzy
1336
  msgid ""
1337
  "This will apply all evaluation rules to all ads to see if any error slipped "
@@ -1341,7 +1320,7 @@ msgstr ""
1341
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
1342
  "fonctionalité."
1343
 
1344
- #: adrotate.php:841
1345
  #, fuzzy
1346
  msgid ""
1347
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
@@ -1359,75 +1338,75 @@ msgstr ""
1359
  "probablement déjà au-delà de la réparation. Affirmer que le site "
1360
  "fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
1361
 
1362
- #: adrotate.php:849
1363
  #, fuzzy
1364
  msgid "Troubleshooting"
1365
  msgstr "Diagnostic de dépannage"
1366
 
1367
- #: adrotate.php:852
1368
  #, fuzzy
1369
  msgid "Current version:"
1370
  msgstr "Version actuelle :"
1371
 
1372
- #: adrotate.php:853
1373
  #, fuzzy
1374
  msgid "Previous version:"
1375
  msgstr "Version antérieure :"
1376
 
1377
- #: adrotate.php:856
1378
  #, fuzzy
1379
  msgid "Current database version:"
1380
  msgstr "Version actuelle de la base de données :"
1381
 
1382
- #: adrotate.php:857
1383
  #, fuzzy
1384
  msgid "Previous database version:"
1385
  msgstr "Version antérieure de la base de données :"
1386
 
1387
- #: adrotate.php:860
1388
  msgid "Ad evaluation next run:"
1389
  msgstr ""
1390
 
1391
- #: adrotate.php:861 adrotate.php:865
1392
  #, fuzzy
1393
  msgid "Not scheduled!"
1394
  msgstr "Pas planifié!"
1395
 
1396
- #: adrotate.php:864
1397
  msgid "Clean Trackerdata next run:"
1398
  msgstr ""
1399
 
1400
- #: adrotate.php:868
1401
  #, fuzzy
1402
  msgid "Current status of adverts"
1403
  msgstr "Etat actuel des publicités"
1404
 
1405
- #: adrotate.php:869
1406
  #, fuzzy
1407
  msgid "Normal"
1408
  msgstr "Normal"
1409
 
1410
- #: adrotate.php:869
1411
  #, fuzzy
1412
  msgid "Error"
1413
  msgstr "Erreur"
1414
 
1415
- #: adrotate.php:869
1416
  #, fuzzy
1417
  msgid "Expired"
1418
  msgstr "Expiré"
1419
 
1420
- #: adrotate.php:869
1421
  #, fuzzy
1422
  msgid "Expires Soon"
1423
  msgstr "Expire bientôt."
1424
 
1425
- #: adrotate.php:869
1426
  #, fuzzy
1427
  msgid "Unknown Status"
1428
  msgstr "Statut Inconnu"
1429
 
1430
- #: adrotate.php:872
1431
  #, fuzzy
1432
  msgid ""
1433
  "NOTE: The below options are not meant for normal use and are only there for "
@@ -1441,43 +1420,43 @@ msgstr ""
1441
  "peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
1442
  "une utilisation normale, ils ne doivent pas être activés!"
1443
 
1444
- #: adrotate.php:876
1445
  #, fuzzy
1446
  msgid "Developer Debug"
1447
  msgstr "Debuggage de développeur"
1448
 
1449
- #: adrotate.php:878
1450
  #, fuzzy
1451
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1452
  msgstr ""
1453
  "Dépannage des publicités. Si cette option est activée, les données seront "
1454
  "placées sur le site."
1455
 
1456
- #: adrotate.php:879
1457
  #, fuzzy
1458
  msgid "Show all settings, dashboard routines and related values."
1459
  msgstr ""
1460
  "Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
1461
  "connexes."
1462
 
1463
- #: adrotate.php:880
1464
  #, fuzzy
1465
  msgid "Show array of all userroles and capabilities."
1466
  msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
1467
 
1468
- #: adrotate.php:881
1469
  #, fuzzy
1470
  msgid "Review saved advertisers! Visible to advertisers."
1471
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
1472
 
1473
- #: adrotate.php:882
1474
  #, fuzzy
1475
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1476
  msgstr ""
1477
  "Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
1478
  "Visible uniquement aux annonceurs."
1479
 
1480
- #: adrotate.php:883
1481
  #, fuzzy
1482
  msgid ""
1483
  "Disable timers for clicks and impressions and enable a alert window for "
@@ -1486,80 +1465,88 @@ msgstr ""
1486
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
1487
  "fenêtre d'alerte pour le suivi des clicks."
1488
 
1489
- #: adrotate.php:884
1490
  #, fuzzy
1491
  msgid "Temporarily disable encryption on the redirect url."
1492
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
1493
 
1494
- #: dashboard/adrotate-info.php:65
1495
  #, fuzzy
1496
  msgid "Currently"
1497
  msgstr "Actuellement"
1498
 
1499
- #: dashboard/adrotate-info.php:71
1500
  #, fuzzy
1501
  msgid "Your setup"
1502
  msgstr "Votre configuration"
1503
 
1504
- #: dashboard/adrotate-info.php:72
1505
  #, fuzzy
1506
  msgid "Adverts that need you"
1507
  msgstr "Publicités qui ont besoin de votre attention"
1508
 
1509
- #: dashboard/adrotate-info.php:78
1510
  #, fuzzy
1511
  msgid "Adverts"
1512
  msgstr "Publicités"
1513
 
1514
- #: dashboard/adrotate-info.php:79
1515
  #, fuzzy
1516
  msgid "(Almost) Expired"
1517
  msgstr "(presque) expiré"
1518
 
1519
- #: dashboard/adrotate-info.php:82
1520
  #, fuzzy
1521
  msgid "Groups"
1522
  msgstr "Groupes"
1523
 
1524
- #: dashboard/adrotate-info.php:83
1525
  #, fuzzy
1526
  msgid "Have errors"
1527
  msgstr "Il y a des erreurs"
1528
 
1529
- #: dashboard/adrotate-info.php:87
1530
  #, fuzzy
1531
  msgid "Queued"
1532
  msgstr "File d'attente"
1533
 
1534
- #: dashboard/adrotate-info.php:93
1535
  #, fuzzy
1536
  msgid "The last few days"
1537
  msgstr "Les derniers jours"
1538
 
1539
- #: dashboard/adrotate-info.php:132
1540
  #, fuzzy
1541
  msgid "Support AdRotate"
1542
  msgstr "Soutenez AdRotate"
1543
 
1544
- #: dashboard/adrotate-info.php:139
1545
  msgid "Your gift helps ensure the continued development of AdRotate!"
1546
  msgstr ""
1547
 
1548
- #: dashboard/adrotate-info.php:139
1549
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1550
  msgstr ""
1551
 
1552
- #: dashboard/adrotate-info.php:148
1553
  #, fuzzy
1554
  msgid "AdRotate News and Developer Blog"
1555
  msgstr "Actus AdRotate et blog du développeur"
1556
 
1557
  #: dashboard/adrotate-info.php:168
 
 
 
 
 
 
 
 
1558
  #, fuzzy
1559
  msgid "Get more features with AdRotate Pro"
1560
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
1561
 
1562
- #: dashboard/adrotate-info.php:171
1563
  #, fuzzy
1564
  msgid ""
1565
  "Benefit from extra features to reinforce your income with advertising "
@@ -1571,97 +1558,96 @@ msgstr ""
1571
  "outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
1572
  "la version gratuite."
1573
 
1574
- #: dashboard/adrotate-info.php:171
1575
  msgid "Want to know more about"
1576
  msgstr ""
1577
 
1578
- #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1579
  #, fuzzy
1580
  msgid "Buy AdRotate Professional"
1581
  msgstr "Achetez AdRotate Professionel"
1582
 
1583
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1584
- #, fuzzy
1585
- msgid "Singe License"
1586
- msgstr "Licence Unique"
1587
 
1588
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1589
  #, fuzzy
1590
  msgid "For one WordPress installation."
1591
  msgstr "Pour une installation Wordpress."
1592
 
1593
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1594
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1595
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1596
- #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1597
- #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1598
  #, fuzzy
1599
  msgid "Buy now"
1600
  msgstr "Achetez AdRotate Professionel"
1601
 
1602
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1603
  #, fuzzy
1604
  msgid "Duo License"
1605
  msgstr "Licence Duo"
1606
 
1607
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1608
  #, fuzzy
1609
  msgid "For two WordPress installations."
1610
  msgstr "Pour deux installations Wordpress."
1611
 
1612
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1613
  #, fuzzy
1614
  msgid "Multi License"
1615
  msgstr "Licence Multiple"
1616
 
1617
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1618
  #, fuzzy
1619
  msgid " For up to five WordPress installations."
1620
  msgstr "Pour un max de cinq installation Wordpress."
1621
 
1622
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1623
  #, fuzzy
1624
  msgid "Developer License"
1625
  msgstr "Licence de Developpeur"
1626
 
1627
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1628
  msgid "Unlimited WordPress installations and/or networks."
1629
  msgstr ""
1630
 
1631
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1632
  #, fuzzy
1633
  msgid "Network License"
1634
  msgstr "Licence Réseau"
1635
 
1636
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1637
  #, fuzzy
1638
  msgid "Set up your own advertising network on a WordPress Multisite."
1639
  msgstr ""
1640
  "Mettez en place votre propre réseau de publicité sur une installation "
1641
  "Wordpress Multisite."
1642
 
1643
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1644
  #, fuzzy
1645
  msgid "Compare licenses"
1646
  msgstr "Comparer les licences"
1647
 
1648
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1649
  #, fuzzy
1650
  msgid "Not sure which license is for you? Compare them..."
1651
  msgstr ""
1652
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
1653
 
1654
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1655
  #, fuzzy
1656
  msgid "All Licenses"
1657
  msgstr "Toutes les licences"
1658
 
1659
- #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
1660
  #, fuzzy
1661
  msgid "AdRotate is brought to you by"
1662
  msgstr "AdRotate est offert par"
1663
 
1664
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1665
  #, fuzzy
1666
  msgid ""
1667
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
@@ -1673,12 +1659,12 @@ msgstr ""
1673
  "personnalisation de thème ou pour la migration de votre site entier, visitez "
1674
  "mon site pour tous les détails!"
1675
 
1676
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1677
  #, fuzzy
1678
  msgid "Find out more"
1679
  msgstr "En savoir plus"
1680
 
1681
- #: dashboard/adrotate-info.php:194
1682
  #, fuzzy
1683
  msgid "Follow"
1684
  msgstr "Suivre"
@@ -1702,66 +1688,62 @@ msgstr ""
1702
  "votre personel. Les annonceurs ont accès à leur propre petit tableau de bord "
1703
  "où ils peuvent voir les performances de leur publicités."
1704
 
1705
- #: dashboard/adrotate-pro.php:28
1706
  #, fuzzy
1707
  msgid "Localize your ad campaigns with Geo Targeting"
1708
  msgstr "Localiser vos campagnes publicitaires avec le ciblage géographique"
1709
 
1710
- #: dashboard/adrotate-pro.php:31
1711
  msgid ""
1712
  "Go nationwide or global with localized adverts for your various audiences. "
1713
  "Set up adverts for countries and cities and sell impressions per general "
1714
- "area. Connect your site to MaxMinds GeoIP2: Precision, FreegeoIP (MaxMind "
1715
- "GeoLITE) or GeoBytes GeoSelect services."
1716
  msgstr ""
1717
 
1718
- #: dashboard/adrotate-pro.php:36
1719
  #, fuzzy
1720
  msgid "Get Premium Support almost all year round"
1721
  msgstr "Obtenez du soutien Premium pendant toute l'année"
1722
 
1723
- #: dashboard/adrotate-pro.php:39
1724
- #, fuzzy
1725
  msgid ""
1726
- "When you activate your AdRotate Pro license you are entitled to ticket "
1727
- "support. AdRotate premium support which takes priority over the Forums and "
1728
- "even email. Get a solution (usually) within a day."
 
1729
  msgstr ""
1730
- "Lorsque vous activez votre licence AdRotate Pro vous bénéficiez d'une "
1731
- "assistance premium qui a la priorité sur les forums et même les e-mails. "
1732
- "Vous obtiendraient une solution (en général) dans la journée."
1733
 
1734
- #: dashboard/adrotate-pro.php:60
1735
  #, fuzzy
1736
  msgid "Schedule all campaigns with ease"
1737
  msgstr "Planifier toutes vos campagnes en toute simplicité"
1738
 
1739
- #: dashboard/adrotate-pro.php:63
1740
- #, fuzzy
1741
  msgid ""
1742
- "Schedule your adverts and set up advertising campaigns based on date without "
1743
- "hassle. Seasonal adverts, weekly adverts. You name it. AdRotate schedules it."
 
 
1744
  msgstr ""
1745
- "Planifiez vos publicités et mettez en place des campagnes de publicité "
1746
- "basées sur les dates facilement. Vous pouvez utiliser AdRotate pour "
1747
- "planifier des annonces saisonnières, hebdomadaires ou à la carte. "
1748
 
1749
- #: dashboard/adrotate-pro.php:68
1750
- #, fuzzy
1751
- msgid "Stay up-to-date with the notification system"
1752
- msgstr "Restez à jour avec le système de notification"
1753
 
1754
- #: dashboard/adrotate-pro.php:71
1755
- #, fuzzy
1756
  msgid ""
1757
- "Stay in touch with Email and/or push notifications. Get notified when "
 
 
1758
  "adverts expire, have errors or when advertisers create new adverts. Never "
1759
  "miss an expiration date again."
1760
  msgstr ""
1761
- "Restez en contact avec Email et / ou les notifications push. Recevez des "
1762
- "messages quand les publicités expirent, ont des erreurs ou lorsque les "
1763
- "annonceurs créent de nouvelles annonces. Ne manquez plus jamais une date "
1764
- "d'expiration."
 
1765
 
1766
  #: dashboard/publisher/adrotate-ads-edit.php:46
1767
  #, fuzzy
@@ -2880,6 +2862,59 @@ msgstr "Aucun groupe n'a été créé!"
2880
  msgid "Statistics for group"
2881
  msgstr "Statistiques pour le groupe"
2882
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2883
  #, fuzzy
2884
  #~ msgid "Title:"
2885
  #~ msgstr "Titre :"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-30 02:48+0100\n"
6
+ "PO-Revision-Date: 2015-05-30 02:48+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.8.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:796
20
  #, fuzzy
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
+ #: adrotate-functions.php:799
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:735
30
  #, fuzzy
31
  msgid "Oh no! Something went wrong!"
32
  msgstr "Oh no! Un problème est survenu!"
33
 
34
+ #: adrotate-output.php:736
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:737
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:738
52
  #, fuzzy
53
  msgid "Contact support if the issue persists:"
54
  msgstr "Contactez le support si le soucis persiste :"
55
 
56
+ #: adrotate-output.php:756
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:758
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:765 adrotate-output.php:767
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:773
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:779
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:784
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:790
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:790
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:796
116
  #, fuzzy
117
  msgid "An unknown error occured."
118
  msgstr "Une erreur inconnue s'est produite."
119
 
120
+ #: adrotate-output.php:821
121
  #, fuzzy
122
  msgid "active ad(s) expired."
123
  msgstr "publicité(s) active(s) ont expirée(s)."
124
 
125
+ #: adrotate-output.php:821
126
  #, fuzzy
127
  msgid "Take action now"
128
  msgstr "Agir maintenant"
129
 
130
+ #: adrotate-output.php:823
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:823
136
  #, fuzzy
137
  msgid "Check it out"
138
  msgstr "Vérifier-le"
139
 
140
+ #: adrotate-output.php:825
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:825
146
  #, fuzzy
147
  msgid "Solve this"
148
  msgstr "Résoudre"
149
 
150
+ #: adrotate-output.php:827
151
  #, fuzzy
152
  msgid "ad(s) expired."
153
  msgstr "publicité(s) active(s) ont expirée(s)."
154
 
155
+ #: adrotate-output.php:827
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:827
161
  #, fuzzy
162
  msgid "ad(s) with configuration errors."
163
  msgstr "publicité(s) avec des erreurs de configuration."
164
 
165
+ #: adrotate-output.php:827
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:839
171
  #, fuzzy
172
  msgid "Learn More"
173
  msgstr "En savoir plus"
174
 
175
+ #: adrotate-output.php:840
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:840
182
  msgid "Get more features to even better run your advertising campaigns."
183
  msgstr ""
184
 
185
+ #: adrotate-output.php:840
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:884
191
  msgid ""
192
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
193
  "this menu. Check out the"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:884
197
  msgid "manuals"
198
  msgstr ""
199
 
200
+ #: adrotate-output.php:884 adrotate-output.php:960
201
  #: dashboard/publisher/adrotate-ads-edit.php:151
202
  msgid "and"
203
  msgstr ""
204
 
205
+ #: adrotate-output.php:884
206
  msgid "forums"
207
  msgstr ""
208
 
209
+ #: adrotate-output.php:920
210
  msgid "Useful Links"
211
  msgstr ""
212
 
213
+ #: adrotate-output.php:921
214
  msgid "Useful links to learn more about AdRotate"
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:923
218
  #, fuzzy
219
  msgid "AdRotate Page"
220
  msgstr "AdRotate Pro"
221
 
222
+ #: adrotate-output.php:924
223
  #, fuzzy
224
  msgid "Getting Started With AdRotate"
225
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
226
 
227
+ #: adrotate-output.php:925
228
  #, fuzzy
229
  msgid "AdRotate manuals"
230
  msgstr "Informations sur Adrotate"
231
 
232
+ #: adrotate-output.php:926
233
  #, fuzzy
234
  msgid "AdRotate Support Forum"
235
  msgstr "Magasin AdRotate"
236
 
237
+ #: adrotate-output.php:952
238
  #, fuzzy
239
  msgid "Help AdRotate Grow"
240
  msgstr "Bloqué avec AdRotate? Je peux vous aider!"
241
 
242
+ #: adrotate-output.php:953
243
  #, fuzzy
244
  msgid "Brought to you by"
245
  msgstr "Présenté par"
246
 
247
+ #: adrotate-output.php:960
248
  msgid ""
249
  "A lot of users only think to review AdRotate when something goes wrong while "
250
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
251
  msgstr ""
252
 
253
+ #: adrotate-output.php:960
254
  msgid "If you find AdRotate useful please leave your honest"
255
  msgstr ""
256
 
257
+ #: adrotate-output.php:960
258
  msgid "rating"
259
  msgstr ""
260
 
261
+ #: adrotate-output.php:960
262
  #, fuzzy
263
  msgid "review"
264
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
265
 
266
+ #: adrotate-output.php:960
267
  msgid "on WordPress.org to help AdRotate grow in a positive way"
268
  msgstr ""
269
 
270
+ #: adrotate-output.php:963
271
  #, fuzzy
272
  msgid ""
273
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
276
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
277
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
278
 
279
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
280
  #, fuzzy
281
  msgid "Visit the"
282
  msgstr "Visitez le"
283
 
284
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
285
  #, fuzzy
286
  msgid "website"
287
  msgstr "site"
288
 
289
+ #: adrotate-output.php:993 dashboard/publisher/adrotate-ads-edit.php:313
290
  #, fuzzy
291
  msgid "Available in AdRotate Pro"
292
  msgstr "Disponible dans Adrotate Pro"
293
 
294
+ #: adrotate-output.php:993
295
  #, fuzzy
296
  msgid "More information..."
297
  msgstr "Plus d'informations..."
298
 
299
+ #: adrotate-output.php:994
300
  #, fuzzy
301
  msgid "This feature is available in AdRotate Pro"
302
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
303
 
304
+ #: adrotate-output.php:994
305
  #, fuzzy
306
  msgid "Learn more"
307
  msgstr "En savoir plus"
393
  msgid "Next"
394
  msgstr "Prochain"
395
 
396
+ #: adrotate-statistics.php:284 dashboard/adrotate-info.php:125
397
  #, fuzzy
398
  msgid "No data to show!"
399
  msgstr "Aucune donnée à montrer!"
400
 
401
+ #: adrotate-widget.php:112
402
  #, fuzzy
403
  msgid "Title (optional):"
404
  msgstr "Titre (optionel) :"
405
 
406
+ #: adrotate-widget.php:115
407
  #, fuzzy
408
  msgid "HTML will be stripped out."
409
  msgstr "Le code HTML sera retiré."
410
 
411
+ #: adrotate-widget.php:118
412
  #, fuzzy
413
  msgid "Description (optional):"
414
  msgstr "Description (optionelle) :"
415
 
416
+ #: adrotate-widget.php:121
417
  #, fuzzy
418
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
419
  msgstr ""
420
  "Quelle est l'utilisation de ce widget? (Non executé, le code HTML sera "
421
  "dépouillé.)"
422
 
423
+ #: adrotate-widget.php:124
424
  #, fuzzy
425
  msgid "Type:"
426
  msgstr "Type :"
427
 
428
+ #: adrotate-widget.php:126
429
  #, fuzzy
430
  msgid "Single Ad - Use Ad ID"
431
  msgstr "Ad Unique - Mettre l'identifiant de la publicité"
432
 
433
+ #: adrotate-widget.php:127
434
  #, fuzzy
435
  msgid "Group of Ads - Use group ID"
436
  msgstr "Groupe de Pub - Mettre l'identifiant du groupe"
437
 
438
+ #: adrotate-widget.php:130
439
  #, fuzzy
440
  msgid "Choose what you want to use this widget for"
441
  msgstr "Choisissez le fonction de ce widget"
442
 
443
+ #: adrotate-widget.php:133
444
  #, fuzzy
445
  msgid "ID:"
446
  msgstr "ID :"
447
 
448
+ #: adrotate-widget.php:136
449
  #, fuzzy
450
  msgid "Fill in the ID of the type you want to display!"
451
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
892
  msgid "Role to delete groups."
893
  msgstr "Rôle pour supprimer les groupes."
894
 
895
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:784 adrotate.php:831
896
+ #: adrotate.php:875
897
  #, fuzzy
898
  msgid "Update Options"
899
  msgstr "Mettre à jour les options"
1085
  "Activez cette option pour supprimer la marge (espace vide) autour des "
1086
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
1087
 
1088
+ #: adrotate.php:758
1089
  #, fuzzy
1090
  msgid "NOTICE:"
1091
  msgstr ""
1095
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1096
  "de données est lente ou ne réponds pas."
1097
 
1098
+ #: adrotate.php:759
1099
  #, fuzzy
1100
  msgid ""
1101
  "You have enabled W3 Total Caching support but not defined the security hash. "
1108
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
1109
  "fonction \"late init\" doit être activée dans W3 Total Cache."
1110
 
1111
+ #: adrotate.php:762
1112
  #, fuzzy
1113
  msgid "W3 Total Caching"
1114
  msgstr "W3 Total Caching"
1115
 
1116
+ #: adrotate.php:763
1117
  #, fuzzy
1118
  msgid "Check this box if you use W3 Total Caching on your site."
1119
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
1120
 
1121
+ #: adrotate.php:767
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1122
  #, fuzzy
1123
  msgid ""
1124
  "It may take a while for the ad to start rotating. The caching plugin needs "
1129
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
1130
  "pas fait manuellement."
1131
 
1132
+ #: adrotate.php:767
1133
  #, fuzzy
1134
  msgid ""
1135
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1139
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
1140
  "PHP dans le code d'exclusion vous-même."
1141
 
1142
+ #: adrotate.php:771
1143
  msgid "Javascript"
1144
  msgstr ""
1145
 
1146
+ #: adrotate.php:774
1147
  #, fuzzy
1148
  msgid "Load jQuery"
1149
  msgstr "Utilisez jQuery"
1150
 
1151
+ #: adrotate.php:775
1152
  #, fuzzy
1153
  msgid ""
1154
  "jQuery is required for all Javascript features below. Enable this if your "
1157
  "jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
1158
  "le si votre thème ne charge pas jQuery directement."
1159
 
1160
+ #: adrotate.php:778
1161
  #, fuzzy
1162
  msgid "Load in footer?"
1163
  msgstr "Chargement dans le pied de page?"
1164
 
1165
+ #: adrotate.php:779
1166
  #, fuzzy
1167
  msgid ""
1168
  "Enable if you want to load the above libraries in the footer. Your theme "
1171
  "Activez cette option si vous voulez charger les bibliothèques dans le pied "
1172
  "de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
1173
 
1174
+ #: adrotate.php:787
1175
  #, fuzzy
1176
  msgid "Maintenance"
1177
  msgstr "Maintenance"
1178
 
1179
+ #: adrotate.php:788
1180
  #, fuzzy
1181
  msgid ""
1182
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1191
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1192
  "de données est lente ou ne réponds pas."
1193
 
1194
+ #: adrotate.php:803 adrotate.php:805
1195
  #, fuzzy
1196
  msgid "Optimize Database"
1197
  msgstr "Optimiser la base de données"
1198
 
1199
+ #: adrotate.php:805
1200
  #, fuzzy
1201
  msgid "You are about to optimize the AdRotate database."
1202
  msgstr "Vous allez optimiser la base de données de Adrotate."
1203
 
1204
+ #: adrotate.php:805
1205
  #, fuzzy
1206
  msgid "Did you make a backup of your database?"
1207
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
1208
 
1209
+ #: adrotate.php:805
1210
  #, fuzzy
1211
  msgid ""
1212
  "This may take a moment and may cause your website to respond slow "
1215
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
1216
  "temporaire!"
1217
 
1218
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1219
  #: dashboard/publisher/adrotate-groups-main.php:24
1220
  #, fuzzy
1221
  msgid "OK to continue, CANCEL to stop."
1222
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1223
 
1224
+ #: adrotate.php:806
1225
  #, fuzzy
1226
  msgid "Cleans up overhead data in the AdRotate tables."
1227
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
1228
 
1229
+ #: adrotate.php:807
1230
  #, fuzzy
1231
  msgid ""
1232
  "Overhead data is accumulated garbage resulting from many changes you've "
1236
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
1237
  "KB de données."
1238
 
1239
+ #: adrotate.php:811 adrotate.php:813
1240
  #, fuzzy
1241
  msgid "Clean-up Database"
1242
  msgstr "Nettoyer la base de données"
1243
 
1244
+ #: adrotate.php:813
1245
  #, fuzzy
1246
  msgid ""
1247
  "You are about to clean up your database. This may delete expired schedules "
1250
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
1251
  "supprimer des calendriers périmés et des vieilles statistiques.."
1252
 
1253
+ #: adrotate.php:813
1254
  #, fuzzy
1255
  msgid "Are you sure you want to continue?"
1256
  msgstr "Etes-vous certains de vouloir continuer?"
1257
 
1258
+ #: adrotate.php:813 adrotate.php:821
1259
  #, fuzzy
1260
  msgid "This might take a while and may slow down your site during this action!"
1261
  msgstr ""
1262
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
1263
  "interval!"
1264
 
1265
+ #: adrotate.php:814
1266
  #, fuzzy
1267
  msgid "Delete stats older than 356 days (Optional)."
1268
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
1269
 
1270
+ #: adrotate.php:815
1271
  #, fuzzy
1272
  msgid ""
1273
  "AdRotate creates empty records when you start making ads or groups. In rare "
1276
  "AdRotate crée des registres vides lorsque vous commencez à faire des "
1277
  "annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
1278
 
1279
+ #: adrotate.php:815
1280
  #, fuzzy
1281
  msgid ""
1282
  "If you made an ad or group that does not save when you make it use this "
1286
  "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
1287
  "registres vides."
1288
 
1289
+ #: adrotate.php:815
1290
  #, fuzzy
1291
  msgid ""
1292
  "Additionally you can clean up old statistics. This will improve the speed of "
1295
  "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
1296
  "d'améliorer la vitesse de votre site."
1297
 
1298
+ #: adrotate.php:819
1299
  #, fuzzy
1300
  msgid "Re-evaluate Ads"
1301
  msgstr "Re-évaluer les publicités"
1302
 
1303
+ #: adrotate.php:821
1304
  #, fuzzy
1305
  msgid "Re-evaluate all ads"
1306
  msgstr "Re-évaluer toutes les publicités"
1307
 
1308
+ #: adrotate.php:821
1309
  #, fuzzy
1310
  msgid "You are about to check all ads for errors."
1311
  msgstr "Vous allez véifier l'état de toutes les publicités."
1312
 
1313
+ #: adrotate.php:822
1314
  #, fuzzy
1315
  msgid ""
1316
  "This will apply all evaluation rules to all ads to see if any error slipped "
1320
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
1321
  "fonctionalité."
1322
 
1323
+ #: adrotate.php:826
1324
  #, fuzzy
1325
  msgid ""
1326
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1338
  "probablement déjà au-delà de la réparation. Affirmer que le site "
1339
  "fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
1340
 
1341
+ #: adrotate.php:834
1342
  #, fuzzy
1343
  msgid "Troubleshooting"
1344
  msgstr "Diagnostic de dépannage"
1345
 
1346
+ #: adrotate.php:837
1347
  #, fuzzy
1348
  msgid "Current version:"
1349
  msgstr "Version actuelle :"
1350
 
1351
+ #: adrotate.php:838
1352
  #, fuzzy
1353
  msgid "Previous version:"
1354
  msgstr "Version antérieure :"
1355
 
1356
+ #: adrotate.php:841
1357
  #, fuzzy
1358
  msgid "Current database version:"
1359
  msgstr "Version actuelle de la base de données :"
1360
 
1361
+ #: adrotate.php:842
1362
  #, fuzzy
1363
  msgid "Previous database version:"
1364
  msgstr "Version antérieure de la base de données :"
1365
 
1366
+ #: adrotate.php:845
1367
  msgid "Ad evaluation next run:"
1368
  msgstr ""
1369
 
1370
+ #: adrotate.php:846 adrotate.php:850
1371
  #, fuzzy
1372
  msgid "Not scheduled!"
1373
  msgstr "Pas planifié!"
1374
 
1375
+ #: adrotate.php:849
1376
  msgid "Clean Trackerdata next run:"
1377
  msgstr ""
1378
 
1379
+ #: adrotate.php:853
1380
  #, fuzzy
1381
  msgid "Current status of adverts"
1382
  msgstr "Etat actuel des publicités"
1383
 
1384
+ #: adrotate.php:854
1385
  #, fuzzy
1386
  msgid "Normal"
1387
  msgstr "Normal"
1388
 
1389
+ #: adrotate.php:854
1390
  #, fuzzy
1391
  msgid "Error"
1392
  msgstr "Erreur"
1393
 
1394
+ #: adrotate.php:854
1395
  #, fuzzy
1396
  msgid "Expired"
1397
  msgstr "Expiré"
1398
 
1399
+ #: adrotate.php:854
1400
  #, fuzzy
1401
  msgid "Expires Soon"
1402
  msgstr "Expire bientôt."
1403
 
1404
+ #: adrotate.php:854
1405
  #, fuzzy
1406
  msgid "Unknown Status"
1407
  msgstr "Statut Inconnu"
1408
 
1409
+ #: adrotate.php:857
1410
  #, fuzzy
1411
  msgid ""
1412
  "NOTE: The below options are not meant for normal use and are only there for "
1420
  "peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
1421
  "une utilisation normale, ils ne doivent pas être activés!"
1422
 
1423
+ #: adrotate.php:861
1424
  #, fuzzy
1425
  msgid "Developer Debug"
1426
  msgstr "Debuggage de développeur"
1427
 
1428
+ #: adrotate.php:863
1429
  #, fuzzy
1430
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1431
  msgstr ""
1432
  "Dépannage des publicités. Si cette option est activée, les données seront "
1433
  "placées sur le site."
1434
 
1435
+ #: adrotate.php:864
1436
  #, fuzzy
1437
  msgid "Show all settings, dashboard routines and related values."
1438
  msgstr ""
1439
  "Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
1440
  "connexes."
1441
 
1442
+ #: adrotate.php:865
1443
  #, fuzzy
1444
  msgid "Show array of all userroles and capabilities."
1445
  msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
1446
 
1447
+ #: adrotate.php:866
1448
  #, fuzzy
1449
  msgid "Review saved advertisers! Visible to advertisers."
1450
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
1451
 
1452
+ #: adrotate.php:867
1453
  #, fuzzy
1454
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1455
  msgstr ""
1456
  "Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
1457
  "Visible uniquement aux annonceurs."
1458
 
1459
+ #: adrotate.php:868
1460
  #, fuzzy
1461
  msgid ""
1462
  "Disable timers for clicks and impressions and enable a alert window for "
1465
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
1466
  "fenêtre d'alerte pour le suivi des clicks."
1467
 
1468
+ #: adrotate.php:869
1469
  #, fuzzy
1470
  msgid "Temporarily disable encryption on the redirect url."
1471
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
1472
 
1473
+ #: dashboard/adrotate-info.php:66
1474
  #, fuzzy
1475
  msgid "Currently"
1476
  msgstr "Actuellement"
1477
 
1478
+ #: dashboard/adrotate-info.php:72
1479
  #, fuzzy
1480
  msgid "Your setup"
1481
  msgstr "Votre configuration"
1482
 
1483
+ #: dashboard/adrotate-info.php:73
1484
  #, fuzzy
1485
  msgid "Adverts that need you"
1486
  msgstr "Publicités qui ont besoin de votre attention"
1487
 
1488
+ #: dashboard/adrotate-info.php:79
1489
  #, fuzzy
1490
  msgid "Adverts"
1491
  msgstr "Publicités"
1492
 
1493
+ #: dashboard/adrotate-info.php:80
1494
  #, fuzzy
1495
  msgid "(Almost) Expired"
1496
  msgstr "(presque) expiré"
1497
 
1498
+ #: dashboard/adrotate-info.php:83
1499
  #, fuzzy
1500
  msgid "Groups"
1501
  msgstr "Groupes"
1502
 
1503
+ #: dashboard/adrotate-info.php:84
1504
  #, fuzzy
1505
  msgid "Have errors"
1506
  msgstr "Il y a des erreurs"
1507
 
1508
+ #: dashboard/adrotate-info.php:88
1509
  #, fuzzy
1510
  msgid "Queued"
1511
  msgstr "File d'attente"
1512
 
1513
+ #: dashboard/adrotate-info.php:95
1514
  #, fuzzy
1515
  msgid "The last few days"
1516
  msgstr "Les derniers jours"
1517
 
1518
+ #: dashboard/adrotate-info.php:135
1519
  #, fuzzy
1520
  msgid "Support AdRotate"
1521
  msgstr "Soutenez AdRotate"
1522
 
1523
+ #: dashboard/adrotate-info.php:142
1524
  msgid "Your gift helps ensure the continued development of AdRotate!"
1525
  msgstr ""
1526
 
1527
+ #: dashboard/adrotate-info.php:142
1528
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1529
  msgstr ""
1530
 
1531
+ #: dashboard/adrotate-info.php:151
1532
  #, fuzzy
1533
  msgid "AdRotate News and Developer Blog"
1534
  msgstr "Actus AdRotate et blog du développeur"
1535
 
1536
  #: dashboard/adrotate-info.php:168
1537
+ msgid "Get notified of AdRotate updates via Pushover"
1538
+ msgstr ""
1539
+
1540
+ #: dashboard/adrotate-info.php:175
1541
+ msgid "Pushover is a push notification service for iOS and Android!"
1542
+ msgstr ""
1543
+
1544
+ #: dashboard/adrotate-info.php:188
1545
  #, fuzzy
1546
  msgid "Get more features with AdRotate Pro"
1547
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
1548
 
1549
+ #: dashboard/adrotate-info.php:191
1550
  #, fuzzy
1551
  msgid ""
1552
  "Benefit from extra features to reinforce your income with advertising "
1558
  "outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
1559
  "la version gratuite."
1560
 
1561
+ #: dashboard/adrotate-info.php:191
1562
  msgid "Want to know more about"
1563
  msgstr ""
1564
 
1565
+ #: dashboard/adrotate-info.php:195 dashboard/adrotate-pro.php:72
1566
  #, fuzzy
1567
  msgid "Buy AdRotate Professional"
1568
  msgstr "Achetez AdRotate Professionel"
1569
 
1570
+ #: dashboard/adrotate-info.php:199
1571
+ msgid "Single License"
1572
+ msgstr ""
 
1573
 
1574
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-pro.php:76
1575
  #, fuzzy
1576
  msgid "For one WordPress installation."
1577
  msgstr "Pour une installation Wordpress."
1578
 
1579
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-info.php:200
1580
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-info.php:202
1581
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:76
1582
+ #: dashboard/adrotate-pro.php:77 dashboard/adrotate-pro.php:78
1583
+ #: dashboard/adrotate-pro.php:79 dashboard/adrotate-pro.php:80
1584
  #, fuzzy
1585
  msgid "Buy now"
1586
  msgstr "Achetez AdRotate Professionel"
1587
 
1588
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1589
  #, fuzzy
1590
  msgid "Duo License"
1591
  msgstr "Licence Duo"
1592
 
1593
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1594
  #, fuzzy
1595
  msgid "For two WordPress installations."
1596
  msgstr "Pour deux installations Wordpress."
1597
 
1598
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1599
  #, fuzzy
1600
  msgid "Multi License"
1601
  msgstr "Licence Multiple"
1602
 
1603
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1604
  #, fuzzy
1605
  msgid " For up to five WordPress installations."
1606
  msgstr "Pour un max de cinq installation Wordpress."
1607
 
1608
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1609
  #, fuzzy
1610
  msgid "Developer License"
1611
  msgstr "Licence de Developpeur"
1612
 
1613
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1614
  msgid "Unlimited WordPress installations and/or networks."
1615
  msgstr ""
1616
 
1617
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1618
  #, fuzzy
1619
  msgid "Network License"
1620
  msgstr "Licence Réseau"
1621
 
1622
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1623
  #, fuzzy
1624
  msgid "Set up your own advertising network on a WordPress Multisite."
1625
  msgstr ""
1626
  "Mettez en place votre propre réseau de publicité sur une installation "
1627
  "Wordpress Multisite."
1628
 
1629
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1630
  #, fuzzy
1631
  msgid "Compare licenses"
1632
  msgstr "Comparer les licences"
1633
 
1634
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1635
  #, fuzzy
1636
  msgid "Not sure which license is for you? Compare them..."
1637
  msgstr ""
1638
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
1639
 
1640
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1641
  #, fuzzy
1642
  msgid "All Licenses"
1643
  msgstr "Toutes les licences"
1644
 
1645
+ #: dashboard/adrotate-info.php:208 dashboard/adrotate-pro.php:41
1646
  #, fuzzy
1647
  msgid "AdRotate is brought to you by"
1648
  msgstr "AdRotate est offert par"
1649
 
1650
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1651
  #, fuzzy
1652
  msgid ""
1653
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1659
  "personnalisation de thème ou pour la migration de votre site entier, visitez "
1660
  "mon site pour tous les détails!"
1661
 
1662
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1663
  #, fuzzy
1664
  msgid "Find out more"
1665
  msgstr "En savoir plus"
1666
 
1667
+ #: dashboard/adrotate-info.php:214
1668
  #, fuzzy
1669
  msgid "Follow"
1670
  msgstr "Suivre"
1688
  "votre personel. Les annonceurs ont accès à leur propre petit tableau de bord "
1689
  "où ils peuvent voir les performances de leur publicités."
1690
 
1691
+ #: dashboard/adrotate-pro.php:27
1692
  #, fuzzy
1693
  msgid "Localize your ad campaigns with Geo Targeting"
1694
  msgstr "Localiser vos campagnes publicitaires avec le ciblage géographique"
1695
 
1696
+ #: dashboard/adrotate-pro.php:30
1697
  msgid ""
1698
  "Go nationwide or global with localized adverts for your various audiences. "
1699
  "Set up adverts for countries and cities and sell impressions per general "
1700
+ "area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
1701
+ "Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
1702
  msgstr ""
1703
 
1704
+ #: dashboard/adrotate-pro.php:34
1705
  #, fuzzy
1706
  msgid "Get Premium Support almost all year round"
1707
  msgstr "Obtenez du soutien Premium pendant toute l'année"
1708
 
1709
+ #: dashboard/adrotate-pro.php:37
 
1710
  msgid ""
1711
+ "When you activate your AdRotate Pro license you can use fast and personal "
1712
+ "email support. No more queueing up in the forums. AdRotate premium support "
1713
+ "takes priority over the forums and is checked much more often than the "
1714
+ "forum. Get a solution (usually) within a day."
1715
  msgstr ""
 
 
 
1716
 
1717
+ #: dashboard/adrotate-pro.php:58
1718
  #, fuzzy
1719
  msgid "Schedule all campaigns with ease"
1720
  msgstr "Planifier toutes vos campagnes en toute simplicité"
1721
 
1722
+ #: dashboard/adrotate-pro.php:61
 
1723
  msgid ""
1724
+ "Schedule your adverts and set up advertising campaigns based on dates you or "
1725
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
1726
+ "You name it, AdRotate schedules it. This makes planning your revenue stream "
1727
+ "much more easy. You can set one or many schedules for adverts."
1728
  msgstr ""
 
 
 
1729
 
1730
+ #: dashboard/adrotate-pro.php:65
1731
+ msgid "Stay up-to-date with notifications"
1732
+ msgstr ""
 
1733
 
1734
+ #: dashboard/adrotate-pro.php:68
 
1735
  msgid ""
1736
+ "Stay in touch with Email notifications. Have AdRotate send you an alert when "
1737
+ "adverts expire or need your attention. Additionally, you can have AdRotate "
1738
+ "send push notifications to your iOS or Android smartphone. Get notified when "
1739
  "adverts expire, have errors or when advertisers create new adverts. Never "
1740
  "miss an expiration date again."
1741
  msgstr ""
1742
+
1743
+ #: dashboard/adrotate-pro.php:76
1744
+ #, fuzzy
1745
+ msgid "Singe License"
1746
+ msgstr "Licence Unique"
1747
 
1748
  #: dashboard/publisher/adrotate-ads-edit.php:46
1749
  #, fuzzy
2862
  msgid "Statistics for group"
2863
  msgstr "Statistiques pour le groupe"
2864
 
2865
+ #, fuzzy
2866
+ #~ msgid ""
2867
+ #~ "You have enabled WP Super Cache support. If you have version 1.4 or "
2868
+ #~ "newer, this function will not work. WP Super Cache has discontinued "
2869
+ #~ "support for dynamic content."
2870
+ #~ msgstr ""
2871
+ #~ "Vous avez activé le support de WP Super Cache. Si vous avez la version "
2872
+ #~ "1.4 ou plus récent, cette fonction ne marchera pas. WP Super Cache a "
2873
+ #~ "arrêté le support pour le contenu dynamique."
2874
+
2875
+ #, fuzzy
2876
+ #~ msgid "WP Super Cache"
2877
+ #~ msgstr "WP Super Cache"
2878
+
2879
+ #, fuzzy
2880
+ #~ msgid "Check this box if you use WP Super Cache on your site."
2881
+ #~ msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
2882
+
2883
+ #, fuzzy
2884
+ #~ msgid ""
2885
+ #~ "When you activate your AdRotate Pro license you are entitled to ticket "
2886
+ #~ "support. AdRotate premium support which takes priority over the Forums "
2887
+ #~ "and even email. Get a solution (usually) within a day."
2888
+ #~ msgstr ""
2889
+ #~ "Lorsque vous activez votre licence AdRotate Pro vous bénéficiez d'une "
2890
+ #~ "assistance premium qui a la priorité sur les forums et même les e-mails. "
2891
+ #~ "Vous obtiendraient une solution (en général) dans la journée."
2892
+
2893
+ #, fuzzy
2894
+ #~ msgid ""
2895
+ #~ "Schedule your adverts and set up advertising campaigns based on date "
2896
+ #~ "without hassle. Seasonal adverts, weekly adverts. You name it. AdRotate "
2897
+ #~ "schedules it."
2898
+ #~ msgstr ""
2899
+ #~ "Planifiez vos publicités et mettez en place des campagnes de publicité "
2900
+ #~ "basées sur les dates facilement. Vous pouvez utiliser AdRotate pour "
2901
+ #~ "planifier des annonces saisonnières, hebdomadaires ou à la carte. "
2902
+
2903
+ #, fuzzy
2904
+ #~ msgid "Stay up-to-date with the notification system"
2905
+ #~ msgstr "Restez à jour avec le système de notification"
2906
+
2907
+ #, fuzzy
2908
+ #~ msgid ""
2909
+ #~ "Stay in touch with Email and/or push notifications. Get notified when "
2910
+ #~ "adverts expire, have errors or when advertisers create new adverts. Never "
2911
+ #~ "miss an expiration date again."
2912
+ #~ msgstr ""
2913
+ #~ "Restez en contact avec Email et / ou les notifications push. Recevez des "
2914
+ #~ "messages quand les publicités expirent, ont des erreurs ou lorsque les "
2915
+ #~ "annonceurs créent de nouvelles annonces. Ne manquez plus jamais une date "
2916
+ #~ "d'expiration."
2917
+
2918
  #, fuzzy
2919
  #~ msgid "Title:"
2920
  #~ msgstr "Titre :"
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-05-15 01:46+0100\n"
6
- "PO-Revision-Date: 2015-05-15 01:46+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.5\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:801
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
- #: adrotate-functions.php:804
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
- #: adrotate-output.php:737
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "¡Oh, no! Algo salió mal!"
31
 
32
- #: adrotate-output.php:738
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:739
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:740
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Si el problema persiste, contacte con el soporte:"
51
 
52
- #: adrotate-output.php:758
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:760
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:767 adrotate-output.php:769
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:775
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:781
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:786
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:792
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,155 +93,155 @@ msgstr ""
93
  "Hubo un error al ubicar las tablas de la base de AdRotate. Por favor, "
94
  "desactivar y volver a activar el plugin AdRotate de la página!"
95
 
96
- #: adrotate-output.php:792
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:798
101
  msgid "An unknown error occured."
102
  msgstr "Ha ocurrido un error desconocido."
103
 
104
- #: adrotate-output.php:823
105
  msgid "active ad(s) expired."
106
  msgstr "anuncio(s) activo(s) caducó."
107
 
108
- #: adrotate-output.php:823
109
  msgid "Take action now"
110
  msgstr "Tomar medidas ahora"
111
 
112
- #: adrotate-output.php:825
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:825
117
  msgid "Check it out"
118
  msgstr "Compruébelo"
119
 
120
- #: adrotate-output.php:827
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "anuncio(s) activo(s) con errores de configuración."
123
 
124
- #: adrotate-output.php:827
125
  msgid "Solve this"
126
  msgstr "Solucione este"
127
 
128
- #: adrotate-output.php:829
129
  msgid "ad(s) expired."
130
  msgstr "anuncio(s) caducado."
131
 
132
- #: adrotate-output.php:829
133
  msgid "ad(s) are about to expire."
134
  msgstr "anuncio(s) están a punto de caducar."
135
 
136
- #: adrotate-output.php:829
137
  msgid "ad(s) with configuration errors."
138
  msgstr "anuncio(s) con errores de configuración."
139
 
140
- #: adrotate-output.php:829
141
  msgid "Fix this as soon as possible"
142
  msgstr "Solucionar esto en cuanto sea posible"
143
 
144
- #: adrotate-output.php:841
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Aprender más"
148
 
149
- #: adrotate-output.php:842
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:842
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
- #: adrotate-output.php:842
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:886
165
  msgid ""
166
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
167
  "this menu. Check out the"
168
  msgstr ""
169
 
170
- #: adrotate-output.php:886
171
  msgid "manuals"
172
  msgstr "manuales"
173
 
174
- #: adrotate-output.php:886 adrotate-output.php:962
175
  #: dashboard/publisher/adrotate-ads-edit.php:151
176
  msgid "and"
177
  msgstr ""
178
 
179
- #: adrotate-output.php:886
180
  msgid "forums"
181
  msgstr ""
182
 
183
- #: adrotate-output.php:922
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Enlaces de interés"
187
 
188
- #: adrotate-output.php:923
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
- #: adrotate-output.php:925
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
- #: adrotate-output.php:926
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Obtenga más funciones con AdRotate Pro"
201
 
202
- #: adrotate-output.php:927
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "Información de AdRotate"
206
 
207
- #: adrotate-output.php:928
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "Tienda AdRotate"
211
 
212
- #: adrotate-output.php:954
213
  #, fuzzy
214
  msgid "Help AdRotate Grow"
215
  msgstr "Atascado con AdRotate? Yo te ayudaré!"
216
 
217
- #: adrotate-output.php:955
218
  msgid "Brought to you by"
219
  msgstr "Presentado por"
220
 
221
- #: adrotate-output.php:962
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:962
228
  msgid "If you find AdRotate useful please leave your honest"
229
  msgstr ""
230
 
231
- #: adrotate-output.php:962
232
  msgid "rating"
233
  msgstr ""
234
 
235
- #: adrotate-output.php:962
236
  #, fuzzy
237
  msgid "review"
238
  msgstr "Revise el anuncio aquí:"
239
 
240
- #: adrotate-output.php:962
241
  msgid "on WordPress.org to help AdRotate grow in a positive way"
242
  msgstr ""
243
 
244
- #: adrotate-output.php:965
245
  msgid ""
246
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
247
  "out more about what I can do for you!"
@@ -249,27 +249,27 @@ msgstr ""
249
  "Su sitio para Desarrollo web, consultoría y cualquier otra cosa para "
250
  "WordPress! Para saber más sobre lo que puedo hacer por usted!"
251
 
252
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
253
  msgid "Visit the"
254
  msgstr "Visite la"
255
 
256
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
257
  msgid "website"
258
  msgstr "página web"
259
 
260
- #: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
261
  msgid "Available in AdRotate Pro"
262
  msgstr "Disponible en AdRotate Pro"
263
 
264
- #: adrotate-output.php:995
265
  msgid "More information..."
266
  msgstr "Más información..."
267
 
268
- #: adrotate-output.php:996
269
  msgid "This feature is available in AdRotate Pro"
270
  msgstr "Esta función está disponible en AdRotate Pro"
271
 
272
- #: adrotate-output.php:996
273
  msgid "Learn more"
274
  msgstr "Aprender más"
275
 
@@ -345,48 +345,48 @@ msgstr "Este més"
345
  msgid "Next"
346
  msgstr "Siguiente"
347
 
348
- #: adrotate-statistics.php:284 dashboard/adrotate-info.php:123
349
  msgid "No data to show!"
350
  msgstr "No hay datos para mostrar!"
351
 
352
- #: adrotate-widget.php:116
353
  msgid "Title (optional):"
354
  msgstr "Título (opcional):"
355
 
356
- #: adrotate-widget.php:119
357
  msgid "HTML will be stripped out."
358
  msgstr "El HTML será eliminado"
359
 
360
- #: adrotate-widget.php:122
361
  msgid "Description (optional):"
362
  msgstr "Descripción (opcional):"
363
 
364
- #: adrotate-widget.php:125
365
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
366
  msgstr ""
367
  "¿Qué es este widget se utiliza? (Sin analizar, el codigo HTML se quitará.)"
368
 
369
- #: adrotate-widget.php:128
370
  msgid "Type:"
371
  msgstr "Tipo:"
372
 
373
- #: adrotate-widget.php:130
374
  msgid "Single Ad - Use Ad ID"
375
  msgstr "Anuncio Individual - Utilizar ID de Anuncio"
376
 
377
- #: adrotate-widget.php:131
378
  msgid "Group of Ads - Use group ID"
379
  msgstr "Grupo de Anuncios - Utilizar ID de grupo"
380
 
381
- #: adrotate-widget.php:134
382
  msgid "Choose what you want to use this widget for"
383
  msgstr "Elija lo que desea utilizar en este widget para"
384
 
385
- #: adrotate-widget.php:137
386
  msgid "ID:"
387
  msgstr "ID:"
388
 
389
- #: adrotate-widget.php:140
390
  msgid "Fill in the ID of the type you want to display!"
391
  msgstr "Rellene con el ID del tipo que desea mostrar!"
392
 
@@ -794,8 +794,8 @@ msgstr "Eliminar grupos"
794
  msgid "Role to delete groups."
795
  msgstr "Perfil para eliminar grupos"
796
 
797
- #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
798
- #: adrotate.php:890
799
  msgid "Update Options"
800
  msgstr "Actualizar Opciones"
801
 
@@ -969,12 +969,12 @@ msgstr ""
969
  "Habilitar esta opción para eliminar el relleno (espacio en blanco) alrededor "
970
  "de los anuncios en los widgets. (No siempre funciona!)"
971
 
972
- #: adrotate.php:760 adrotate.php:771
973
  #, fuzzy
974
  msgid "NOTICE:"
975
  msgstr "Aviso"
976
 
977
- #: adrotate.php:761
978
  msgid ""
979
  "You have enabled W3 Total Caching support but not defined the security hash. "
980
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -986,33 +986,15 @@ msgstr ""
986
  "inferior o por debajo de la línea 52 (que define otra hash.) Usando la "
987
  "función \"late init \" tambien debe estar habilitado en W3 Total Cache."
988
 
989
- #: adrotate.php:765
990
  msgid "W3 Total Caching"
991
  msgstr "W3 Total Cache"
992
 
993
- #: adrotate.php:766
994
  msgid "Check this box if you use W3 Total Caching on your site."
995
  msgstr "Marque esta casilla si utiliza W3 Total Cache en su sitio."
996
 
997
- #: adrotate.php:772
998
- msgid ""
999
- "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
1000
- "this function will not work. WP Super Cache has discontinued support for "
1001
- "dynamic content."
1002
- msgstr ""
1003
- "Ha activado el soporte WP Super Cache. Si tiene la versión 1.4 o posterior, "
1004
- "esta función no funcionará. WP Super Cache ha interrumpido el soporte para "
1005
- "el contenido dinámico."
1006
-
1007
- #: adrotate.php:776
1008
- msgid "WP Super Cache"
1009
- msgstr "WP Super Cache"
1010
-
1011
- #: adrotate.php:777
1012
- msgid "Check this box if you use WP Super Cache on your site."
1013
- msgstr "Marque esta casilla si utiliza WP Super Cache en su sitio."
1014
-
1015
- #: adrotate.php:782
1016
  msgid ""
1017
  "It may take a while for the ad to start rotating. The caching plugin needs "
1018
  "to refresh the cache. This can take up to a week if not done manually."
@@ -1021,7 +1003,7 @@ msgstr ""
1021
  "caché tiene que actualizar la memoria caché. Esto puede tomar hasta una "
1022
  "semana si no se realiza de forma manual."
1023
 
1024
- #: adrotate.php:782
1025
  msgid ""
1026
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1027
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -1030,15 +1012,15 @@ msgstr ""
1030
  "el Widget AdRotate. Si utiliza un fragmento PHP necesita envolver dentro del "
1031
  "código PHP la exclusión a ti mismo."
1032
 
1033
- #: adrotate.php:786
1034
  msgid "Javascript"
1035
  msgstr ""
1036
 
1037
- #: adrotate.php:789
1038
  msgid "Load jQuery"
1039
  msgstr "Cargar jQuery"
1040
 
1041
- #: adrotate.php:790
1042
  msgid ""
1043
  "jQuery is required for all Javascript features below. Enable this if your "
1044
  "theme does not load jQuery already."
@@ -1046,11 +1028,11 @@ msgstr ""
1046
  "jQuery es necesaria para todas las características Javascript siguientes. "
1047
  "Habilite esta opción si su tema no carga jQuery por defecto."
1048
 
1049
- #: adrotate.php:793
1050
  msgid "Load in footer?"
1051
  msgstr "¿Cargar en el pie de página?"
1052
 
1053
- #: adrotate.php:794
1054
  msgid ""
1055
  "Enable if you want to load the above libraries in the footer. Your theme "
1056
  "needs to call wp_footer() for this to work."
@@ -1058,11 +1040,11 @@ msgstr ""
1058
  "Activar si desea cargar las bibliotecas anteriores en el pie de página. El "
1059
  "tema tiene que llamar a la función wp_footer() para que esto funcione."
1060
 
1061
- #: adrotate.php:802
1062
  msgid "Maintenance"
1063
  msgstr "Mantenimiento"
1064
 
1065
- #: adrotate.php:803
1066
  msgid ""
1067
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1068
  "They only apply to your ads/groups and stats. Not to other settings or other "
@@ -1076,19 +1058,19 @@ msgstr ""
1076
  "Haga siempre una copia de seguridad! Estas funciones deben ser utilizadas "
1077
  "cuando se siente o nota que su base de datos va lenta o no responde."
1078
 
1079
- #: adrotate.php:818 adrotate.php:820
1080
  msgid "Optimize Database"
1081
  msgstr "Optimizar la Base de Datos"
1082
 
1083
- #: adrotate.php:820
1084
  msgid "You are about to optimize the AdRotate database."
1085
  msgstr "Vas a optimizar la base de datos AdRotate."
1086
 
1087
- #: adrotate.php:820
1088
  msgid "Did you make a backup of your database?"
1089
  msgstr "¿Hiciste una copia de seguridad de la base de datos?"
1090
 
1091
- #: adrotate.php:820
1092
  msgid ""
1093
  "This may take a moment and may cause your website to respond slow "
1094
  "temporarily!"
@@ -1096,16 +1078,16 @@ msgstr ""
1096
  "Esto puede tardar un momento y puede hacer que su sitio web responda "
1097
  "lentamente temporalmente!"
1098
 
1099
- #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1100
  #: dashboard/publisher/adrotate-groups-main.php:24
1101
  msgid "OK to continue, CANCEL to stop."
1102
  msgstr "OK para continuar, CANCELAR para detenerlo."
1103
 
1104
- #: adrotate.php:821
1105
  msgid "Cleans up overhead data in the AdRotate tables."
1106
  msgstr "Limpiar los datos generales de las tablas AdRotate."
1107
 
1108
- #: adrotate.php:822
1109
  msgid ""
1110
  "Overhead data is accumulated garbage resulting from many changes you've "
1111
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1114,11 +1096,11 @@ msgstr ""
1114
  "cambios que haya realizado. Esto puede variar de cero a cientos de Kb de "
1115
  "datos."
1116
 
1117
- #: adrotate.php:826 adrotate.php:828
1118
  msgid "Clean-up Database"
1119
  msgstr "Limpieza de la Base de Datos"
1120
 
1121
- #: adrotate.php:828
1122
  msgid ""
1123
  "You are about to clean up your database. This may delete expired schedules "
1124
  "and older statistics."
@@ -1126,20 +1108,20 @@ msgstr ""
1126
  "Vas a limpiar tu base de datos. Esto puede eliminar programas vencidos y las "
1127
  "estadísticas más antigüas."
1128
 
1129
- #: adrotate.php:828
1130
  msgid "Are you sure you want to continue?"
1131
  msgstr "¿Está seguro que desea continuar?"
1132
 
1133
- #: adrotate.php:828 adrotate.php:836
1134
  msgid "This might take a while and may slow down your site during this action!"
1135
  msgstr ""
1136
  "Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
1137
 
1138
- #: adrotate.php:829
1139
  msgid "Delete stats older than 356 days (Optional)."
1140
  msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
1141
 
1142
- #: adrotate.php:830
1143
  msgid ""
1144
  "AdRotate creates empty records when you start making ads or groups. In rare "
1145
  "occasions these records are faulty."
@@ -1147,7 +1129,7 @@ msgstr ""
1147
  "AdRotate crea registros vacíos cuando usted comienza a realizar anuncios o "
1148
  "grupos. En raras ocasiones, estos registros son defectuosos."
1149
 
1150
- #: adrotate.php:830
1151
  msgid ""
1152
  "If you made an ad or group that does not save when you make it use this "
1153
  "button to delete those empty records."
@@ -1155,7 +1137,7 @@ msgstr ""
1155
  "Si comienza a crear un anuncio o grupo pero no lo guarda cuando lo hace, "
1156
  "utilize este botón para borrar esos registros vacíos."
1157
 
1158
- #: adrotate.php:830
1159
  msgid ""
1160
  "Additionally you can clean up old statistics. This will improve the speed of "
1161
  "your site."
@@ -1163,19 +1145,19 @@ msgstr ""
1163
  "Adicionalmente puede limpiar las estadísticas antiguas. Esto mejorará la "
1164
  "velocidad de su sitio."
1165
 
1166
- #: adrotate.php:834
1167
  msgid "Re-evaluate Ads"
1168
  msgstr "Reevaluar Anuncios"
1169
 
1170
- #: adrotate.php:836
1171
  msgid "Re-evaluate all ads"
1172
  msgstr "Reevaluar todos los Anuncios"
1173
 
1174
- #: adrotate.php:836
1175
  msgid "You are about to check all ads for errors."
1176
  msgstr "Vas a comprobar todos los anuncios para localizar errores."
1177
 
1178
- #: adrotate.php:837
1179
  msgid ""
1180
  "This will apply all evaluation rules to all ads to see if any error slipped "
1181
  "in. Normally you should not need this feature."
@@ -1183,7 +1165,7 @@ msgstr ""
1183
  "Esto aplicará las reglas de evaluación a todos los anuncios para ver si hay "
1184
  "algún error. Normalmente no debería necesitar esta función."
1185
 
1186
- #: adrotate.php:841
1187
  msgid ""
1188
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1189
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1201,64 +1183,64 @@ msgstr ""
1201
  "alegar que funcionaba antes de hacer clic en estos botones no es razón "
1202
  "suficiente."
1203
 
1204
- #: adrotate.php:849
1205
  msgid "Troubleshooting"
1206
  msgstr "Solución de problemas"
1207
 
1208
- #: adrotate.php:852
1209
  msgid "Current version:"
1210
  msgstr "Versión actual:"
1211
 
1212
- #: adrotate.php:853
1213
  msgid "Previous version:"
1214
  msgstr "Versión anterior:"
1215
 
1216
- #: adrotate.php:856
1217
  msgid "Current database version:"
1218
  msgstr "Versión actual de la base de datos:"
1219
 
1220
- #: adrotate.php:857
1221
  msgid "Previous database version:"
1222
  msgstr "Versión anterior de la base de datos:"
1223
 
1224
- #: adrotate.php:860
1225
  #, fuzzy
1226
  msgid "Ad evaluation next run:"
1227
  msgstr "Evaluación de Anuncios en la siguiente ejecución:"
1228
 
1229
- #: adrotate.php:861 adrotate.php:865
1230
  msgid "Not scheduled!"
1231
  msgstr "No Programada!"
1232
 
1233
- #: adrotate.php:864
1234
  msgid "Clean Trackerdata next run:"
1235
  msgstr "Ultima ejecución de la limpieza de la base de datos:"
1236
 
1237
- #: adrotate.php:868
1238
  msgid "Current status of adverts"
1239
  msgstr "Estado actual de los anuncios"
1240
 
1241
- #: adrotate.php:869
1242
  msgid "Normal"
1243
  msgstr "Normal"
1244
 
1245
- #: adrotate.php:869
1246
  msgid "Error"
1247
  msgstr "Error"
1248
 
1249
- #: adrotate.php:869
1250
  msgid "Expired"
1251
  msgstr "Caducado"
1252
 
1253
- #: adrotate.php:869
1254
  msgid "Expires Soon"
1255
  msgstr "Caduca Pronto"
1256
 
1257
- #: adrotate.php:869
1258
  msgid "Unknown Status"
1259
  msgstr "Estado Desconocido"
1260
 
1261
- #: adrotate.php:872
1262
  msgid ""
1263
  "NOTE: The below options are not meant for normal use and are only there for "
1264
  "developers to review saved settings or how ads are selected. These can be "
@@ -1271,37 +1253,37 @@ msgstr ""
1271
  "para la resolución de problemas a petición, pero NO ESTA COMPROBADO PARA SU "
1272
  "USO CON NORMALIDAD!"
1273
 
1274
- #: adrotate.php:876
1275
  msgid "Developer Debug"
1276
  msgstr "Depurar (Test) del Desarrollador"
1277
 
1278
- #: adrotate.php:878
1279
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1280
  msgstr ""
1281
  "Solucionar problemas de los anuncios y de que forma se seleccionan si los "
1282
  "hay, tiene salida en las aplicaciones para usuario."
1283
 
1284
- #: adrotate.php:879
1285
  msgid "Show all settings, dashboard routines and related values."
1286
  msgstr ""
1287
  "Mostrar todas las configuraciones, las rutinas del panel y los valores "
1288
  "relacionados."
1289
 
1290
- #: adrotate.php:880
1291
  msgid "Show array of all userroles and capabilities."
1292
  msgstr "Mostrar matriz de todas las funciones de usuario y capacidades."
1293
 
1294
- #: adrotate.php:881
1295
  msgid "Review saved advertisers! Visible to advertisers."
1296
  msgstr "Opinión de los anunciantes guardada! Visible para los anunciantes."
1297
 
1298
- #: adrotate.php:882
1299
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1300
  msgstr ""
1301
  "Revisar las estadísticas globales, las estadísticas por anuncio/grupo. "
1302
  "Visible sólo a los editores."
1303
 
1304
- #: adrotate.php:883
1305
  msgid ""
1306
  "Disable timers for clicks and impressions and enable a alert window for "
1307
  "clicktracking."
@@ -1309,67 +1291,75 @@ msgstr ""
1309
  "Deshabilitar contadores de tiempo de clics e impresiones y activar una "
1310
  "ventana de alerta para el seguimiento de clics."
1311
 
1312
- #: adrotate.php:884
1313
  msgid "Temporarily disable encryption on the redirect url."
1314
  msgstr "Desactivar temporalmente el cifrado en la redireccion de la url."
1315
 
1316
- #: dashboard/adrotate-info.php:65
1317
  msgid "Currently"
1318
  msgstr "En la actualidad"
1319
 
1320
- #: dashboard/adrotate-info.php:71
1321
  msgid "Your setup"
1322
  msgstr "Su configuración"
1323
 
1324
- #: dashboard/adrotate-info.php:72
1325
  msgid "Adverts that need you"
1326
  msgstr "Estos Anuncios"
1327
 
1328
- #: dashboard/adrotate-info.php:78
1329
  msgid "Adverts"
1330
  msgstr "Anuncios"
1331
 
1332
- #: dashboard/adrotate-info.php:79
1333
  msgid "(Almost) Expired"
1334
  msgstr "Expirados (o casi)"
1335
 
1336
- #: dashboard/adrotate-info.php:82
1337
  msgid "Groups"
1338
  msgstr "Grupos"
1339
 
1340
- #: dashboard/adrotate-info.php:83
1341
  msgid "Have errors"
1342
  msgstr "Tienen errores"
1343
 
1344
- #: dashboard/adrotate-info.php:87
1345
  msgid "Queued"
1346
  msgstr "En cola"
1347
 
1348
- #: dashboard/adrotate-info.php:93
1349
  msgid "The last few days"
1350
  msgstr "Los últimos días"
1351
 
1352
- #: dashboard/adrotate-info.php:132
1353
  msgid "Support AdRotate"
1354
  msgstr "Apoye a AdRotate"
1355
 
1356
- #: dashboard/adrotate-info.php:139
1357
  msgid "Your gift helps ensure the continued development of AdRotate!"
1358
  msgstr ""
1359
 
1360
- #: dashboard/adrotate-info.php:139
1361
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1362
  msgstr ""
1363
 
1364
- #: dashboard/adrotate-info.php:148
1365
  msgid "AdRotate News and Developer Blog"
1366
  msgstr "Noticias y Blog del Desarrollador de AdRotate "
1367
 
1368
  #: dashboard/adrotate-info.php:168
 
 
 
 
 
 
 
 
1369
  msgid "Get more features with AdRotate Pro"
1370
  msgstr "Obtenga más funciones con AdRotate Pro"
1371
 
1372
- #: dashboard/adrotate-info.php:171
1373
  msgid ""
1374
  "Benefit from extra features to reinforce your income with advertising "
1375
  "campaigns. Make the most of your website with the powerful tools AdRotate "
@@ -1380,80 +1370,80 @@ msgstr ""
1380
  "las potentes herramientas que AdRotate Pro le ofrece, además de las "
1381
  "funcionalidades más que fiables incluidas en la versión gratuita."
1382
 
1383
- #: dashboard/adrotate-info.php:171
1384
  msgid "Want to know more about"
1385
  msgstr ""
1386
 
1387
- #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1388
  msgid "Buy AdRotate Professional"
1389
  msgstr "Comprar AdRotate Profesional"
1390
 
1391
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1392
- msgid "Singe License"
1393
- msgstr "Singe Licencia"
1394
 
1395
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1396
  msgid "For one WordPress installation."
1397
  msgstr "Para una instalación de WordPress."
1398
 
1399
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1400
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1401
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1402
- #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1403
- #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1404
  #, fuzzy
1405
  msgid "Buy now"
1406
  msgstr "Comprar"
1407
 
1408
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1409
  msgid "Duo License"
1410
  msgstr "Duo Licencia"
1411
 
1412
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1413
  msgid "For two WordPress installations."
1414
  msgstr "Para dos instalaciónes de WordPress."
1415
 
1416
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1417
  msgid "Multi License"
1418
  msgstr "Multi Licencia"
1419
 
1420
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1421
  msgid " For up to five WordPress installations."
1422
  msgstr "Para un máximo de cinco instalaciones de WordPress."
1423
 
1424
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1425
  msgid "Developer License"
1426
  msgstr "Developer Licencia"
1427
 
1428
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1429
  msgid "Unlimited WordPress installations and/or networks."
1430
  msgstr ""
1431
 
1432
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1433
  msgid "Network License"
1434
  msgstr "Network Licencia"
1435
 
1436
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1437
  msgid "Set up your own advertising network on a WordPress Multisite."
1438
  msgstr "Configure su propia red de publicidad en un WordPress Multisite."
1439
 
1440
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1441
  msgid "Compare licenses"
1442
  msgstr "Comparar licencias"
1443
 
1444
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1445
  msgid "Not sure which license is for you? Compare them..."
1446
  msgstr "No está seguro de que licencia es para usted? Comparelas..."
1447
 
1448
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1449
  msgid "All Licenses"
1450
  msgstr "Todas las licencias"
1451
 
1452
- #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
1453
  msgid "AdRotate is brought to you by"
1454
  msgstr "AdRotate es ofrecido por"
1455
 
1456
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1457
  msgid ""
1458
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1459
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1464,11 +1454,11 @@ msgstr ""
1464
  "(Theme) o si necesita trasladar/migrar su sitio completamente. Visite mi "
1465
  "página web para más detalles!"
1466
 
1467
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1468
  msgid "Find out more"
1469
  msgstr "Para saber más"
1470
 
1471
- #: dashboard/adrotate-info.php:194
1472
  msgid "Follow"
1473
  msgstr "Continuar"
1474
 
@@ -1488,65 +1478,58 @@ msgstr ""
1488
  "moderación para que puedan ser revisados. Los anunciantes tienen acceso a su "
1489
  "propio panel donde pueden ver el rendimiento de sus anuncios."
1490
 
1491
- #: dashboard/adrotate-pro.php:28
1492
  msgid "Localize your ad campaigns with Geo Targeting"
1493
  msgstr "Localizar sus campañas publicitarias con Geo Targeting"
1494
 
1495
- #: dashboard/adrotate-pro.php:31
1496
- #, fuzzy
1497
  msgid ""
1498
  "Go nationwide or global with localized adverts for your various audiences. "
1499
  "Set up adverts for countries and cities and sell impressions per general "
1500
- "area. Connect your site to MaxMinds GeoIP2: Precision, FreegeoIP (MaxMind "
1501
- "GeoLITE) or GeoBytes GeoSelect services."
1502
  msgstr ""
1503
- "Ponga a nivel nacional o mundial los anuncios localizados para los "
1504
- "diferentes públicos. Configure anuncios para los países y ciudades y venda "
1505
- "impresiones por areas generales. Esta información la proporciona Geo "
1506
- "FreegeoIP (MaxMind) y GeoSelect."
1507
 
1508
- #: dashboard/adrotate-pro.php:36
1509
  msgid "Get Premium Support almost all year round"
1510
  msgstr "Obtenga Soporte Premium completo durante todo el año"
1511
 
1512
- #: dashboard/adrotate-pro.php:39
1513
  msgid ""
1514
- "When you activate your AdRotate Pro license you are entitled to ticket "
1515
- "support. AdRotate premium support which takes priority over the Forums and "
1516
- "even email. Get a solution (usually) within a day."
 
1517
  msgstr ""
1518
- "Al activar su licencia AdRotate Pro usted tiene derecho a tickets de "
1519
- "soporte. El soporte Premium de AdRotate tiene prioridad respecto al de los "
1520
- "foros e incluso al de correo electrónico. Obtenga una solución (por lo "
1521
- "general) en un día."
1522
 
1523
- #: dashboard/adrotate-pro.php:60
1524
  msgid "Schedule all campaigns with ease"
1525
  msgstr "Programe todas las campañas con facilidad"
1526
 
1527
- #: dashboard/adrotate-pro.php:63
1528
  msgid ""
1529
- "Schedule your adverts and set up advertising campaigns based on date without "
1530
- "hassle. Seasonal adverts, weekly adverts. You name it. AdRotate schedules it."
 
 
1531
  msgstr ""
1532
- "Programe sus anuncios y configure campañas de publicidad basados en la fecha "
1533
- "sin problemas. Anuncios de temporada, anuncios semanales, lo que sea. "
1534
- "Calendario AdRotate."
1535
 
1536
- #: dashboard/adrotate-pro.php:68
1537
- msgid "Stay up-to-date with the notification system"
1538
- msgstr "Manténgase al día con el sistema de notificaciones"
1539
 
1540
- #: dashboard/adrotate-pro.php:71
1541
  msgid ""
1542
- "Stay in touch with Email and/or push notifications. Get notified when "
 
 
1543
  "adverts expire, have errors or when advertisers create new adverts. Never "
1544
  "miss an expiration date again."
1545
  msgstr ""
1546
- "Mantente en contacto con el correo electrónico y/o las notificaciones push. "
1547
- "Apúntate para saber cuándo expiran los anuncios, si tienen errores o cuando "
1548
- "los anunciantes crean nuevos anuncios. Que no se te pase más ninguna fecha "
1549
- "de expiración de tus anuncios."
1550
 
1551
  #: dashboard/publisher/adrotate-ads-edit.php:46
1552
  msgid "The AdCode cannot be empty!"
@@ -2538,6 +2521,65 @@ msgstr "No hay grupos creados!"
2538
  msgid "Statistics for group"
2539
  msgstr "Estadisticas por Grupo"
2540
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2541
  #~ msgid "Title:"
2542
  #~ msgstr "Título:"
2543
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate v 3.10.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-30 02:48+0100\n"
6
+ "PO-Revision-Date: 2015-05-30 02:48+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.8.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:796
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
+ #: adrotate-functions.php:799
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
+ #: adrotate-output.php:735
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "¡Oh, no! Algo salió mal!"
31
 
32
+ #: adrotate-output.php:736
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:737
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:738
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Si el problema persiste, contacte con el soporte:"
51
 
52
+ #: adrotate-output.php:756
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:758
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:765 adrotate-output.php:767
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:773
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:779
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:784
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:790
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:790
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:796
101
  msgid "An unknown error occured."
102
  msgstr "Ha ocurrido un error desconocido."
103
 
104
+ #: adrotate-output.php:821
105
  msgid "active ad(s) expired."
106
  msgstr "anuncio(s) activo(s) caducó."
107
 
108
+ #: adrotate-output.php:821
109
  msgid "Take action now"
110
  msgstr "Tomar medidas ahora"
111
 
112
+ #: adrotate-output.php:823
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:823
117
  msgid "Check it out"
118
  msgstr "Compruébelo"
119
 
120
+ #: adrotate-output.php:825
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "anuncio(s) activo(s) con errores de configuración."
123
 
124
+ #: adrotate-output.php:825
125
  msgid "Solve this"
126
  msgstr "Solucione este"
127
 
128
+ #: adrotate-output.php:827
129
  msgid "ad(s) expired."
130
  msgstr "anuncio(s) caducado."
131
 
132
+ #: adrotate-output.php:827
133
  msgid "ad(s) are about to expire."
134
  msgstr "anuncio(s) están a punto de caducar."
135
 
136
+ #: adrotate-output.php:827
137
  msgid "ad(s) with configuration errors."
138
  msgstr "anuncio(s) con errores de configuración."
139
 
140
+ #: adrotate-output.php:827
141
  msgid "Fix this as soon as possible"
142
  msgstr "Solucionar esto en cuanto sea posible"
143
 
144
+ #: adrotate-output.php:839
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Aprender más"
148
 
149
+ #: adrotate-output.php:840
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:840
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:840
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:884
165
  msgid ""
166
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
167
  "this menu. Check out the"
168
  msgstr ""
169
 
170
+ #: adrotate-output.php:884
171
  msgid "manuals"
172
  msgstr "manuales"
173
 
174
+ #: adrotate-output.php:884 adrotate-output.php:960
175
  #: dashboard/publisher/adrotate-ads-edit.php:151
176
  msgid "and"
177
  msgstr ""
178
 
179
+ #: adrotate-output.php:884
180
  msgid "forums"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:920
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Enlaces de interés"
187
 
188
+ #: adrotate-output.php:921
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
+ #: adrotate-output.php:923
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
+ #: adrotate-output.php:924
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Obtenga más funciones con AdRotate Pro"
201
 
202
+ #: adrotate-output.php:925
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "Información de AdRotate"
206
 
207
+ #: adrotate-output.php:926
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "Tienda AdRotate"
211
 
212
+ #: adrotate-output.php:952
213
  #, fuzzy
214
  msgid "Help AdRotate Grow"
215
  msgstr "Atascado con AdRotate? Yo te ayudaré!"
216
 
217
+ #: adrotate-output.php:953
218
  msgid "Brought to you by"
219
  msgstr "Presentado por"
220
 
221
+ #: adrotate-output.php:960
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:960
228
  msgid "If you find AdRotate useful please leave your honest"
229
  msgstr ""
230
 
231
+ #: adrotate-output.php:960
232
  msgid "rating"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:960
236
  #, fuzzy
237
  msgid "review"
238
  msgstr "Revise el anuncio aquí:"
239
 
240
+ #: adrotate-output.php:960
241
  msgid "on WordPress.org to help AdRotate grow in a positive way"
242
  msgstr ""
243
 
244
+ #: adrotate-output.php:963
245
  msgid ""
246
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
247
  "out more about what I can do for you!"
249
  "Su sitio para Desarrollo web, consultoría y cualquier otra cosa para "
250
  "WordPress! Para saber más sobre lo que puedo hacer por usted!"
251
 
252
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
253
  msgid "Visit the"
254
  msgstr "Visite la"
255
 
256
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
257
  msgid "website"
258
  msgstr "página web"
259
 
260
+ #: adrotate-output.php:993 dashboard/publisher/adrotate-ads-edit.php:313
261
  msgid "Available in AdRotate Pro"
262
  msgstr "Disponible en AdRotate Pro"
263
 
264
+ #: adrotate-output.php:993
265
  msgid "More information..."
266
  msgstr "Más información..."
267
 
268
+ #: adrotate-output.php:994
269
  msgid "This feature is available in AdRotate Pro"
270
  msgstr "Esta función está disponible en AdRotate Pro"
271
 
272
+ #: adrotate-output.php:994
273
  msgid "Learn more"
274
  msgstr "Aprender más"
275
 
345
  msgid "Next"
346
  msgstr "Siguiente"
347
 
348
+ #: adrotate-statistics.php:284 dashboard/adrotate-info.php:125
349
  msgid "No data to show!"
350
  msgstr "No hay datos para mostrar!"
351
 
352
+ #: adrotate-widget.php:112
353
  msgid "Title (optional):"
354
  msgstr "Título (opcional):"
355
 
356
+ #: adrotate-widget.php:115
357
  msgid "HTML will be stripped out."
358
  msgstr "El HTML será eliminado"
359
 
360
+ #: adrotate-widget.php:118
361
  msgid "Description (optional):"
362
  msgstr "Descripción (opcional):"
363
 
364
+ #: adrotate-widget.php:121
365
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
366
  msgstr ""
367
  "¿Qué es este widget se utiliza? (Sin analizar, el codigo HTML se quitará.)"
368
 
369
+ #: adrotate-widget.php:124
370
  msgid "Type:"
371
  msgstr "Tipo:"
372
 
373
+ #: adrotate-widget.php:126
374
  msgid "Single Ad - Use Ad ID"
375
  msgstr "Anuncio Individual - Utilizar ID de Anuncio"
376
 
377
+ #: adrotate-widget.php:127
378
  msgid "Group of Ads - Use group ID"
379
  msgstr "Grupo de Anuncios - Utilizar ID de grupo"
380
 
381
+ #: adrotate-widget.php:130
382
  msgid "Choose what you want to use this widget for"
383
  msgstr "Elija lo que desea utilizar en este widget para"
384
 
385
+ #: adrotate-widget.php:133
386
  msgid "ID:"
387
  msgstr "ID:"
388
 
389
+ #: adrotate-widget.php:136
390
  msgid "Fill in the ID of the type you want to display!"
391
  msgstr "Rellene con el ID del tipo que desea mostrar!"
392
 
794
  msgid "Role to delete groups."
795
  msgstr "Perfil para eliminar grupos"
796
 
797
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:784 adrotate.php:831
798
+ #: adrotate.php:875
799
  msgid "Update Options"
800
  msgstr "Actualizar Opciones"
801
 
969
  "Habilitar esta opción para eliminar el relleno (espacio en blanco) alrededor "
970
  "de los anuncios en los widgets. (No siempre funciona!)"
971
 
972
+ #: adrotate.php:758
973
  #, fuzzy
974
  msgid "NOTICE:"
975
  msgstr "Aviso"
976
 
977
+ #: adrotate.php:759
978
  msgid ""
979
  "You have enabled W3 Total Caching support but not defined the security hash. "
980
  "You need to add the following line to your wp-config.php near the bottom or "
986
  "inferior o por debajo de la línea 52 (que define otra hash.) Usando la "
987
  "función \"late init \" tambien debe estar habilitado en W3 Total Cache."
988
 
989
+ #: adrotate.php:762
990
  msgid "W3 Total Caching"
991
  msgstr "W3 Total Cache"
992
 
993
+ #: adrotate.php:763
994
  msgid "Check this box if you use W3 Total Caching on your site."
995
  msgstr "Marque esta casilla si utiliza W3 Total Cache en su sitio."
996
 
997
+ #: adrotate.php:767
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
998
  msgid ""
999
  "It may take a while for the ad to start rotating. The caching plugin needs "
1000
  "to refresh the cache. This can take up to a week if not done manually."
1003
  "caché tiene que actualizar la memoria caché. Esto puede tomar hasta una "
1004
  "semana si no se realiza de forma manual."
1005
 
1006
+ #: adrotate.php:767
1007
  msgid ""
1008
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1009
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1012
  "el Widget AdRotate. Si utiliza un fragmento PHP necesita envolver dentro del "
1013
  "código PHP la exclusión a ti mismo."
1014
 
1015
+ #: adrotate.php:771
1016
  msgid "Javascript"
1017
  msgstr ""
1018
 
1019
+ #: adrotate.php:774
1020
  msgid "Load jQuery"
1021
  msgstr "Cargar jQuery"
1022
 
1023
+ #: adrotate.php:775
1024
  msgid ""
1025
  "jQuery is required for all Javascript features below. Enable this if your "
1026
  "theme does not load jQuery already."
1028
  "jQuery es necesaria para todas las características Javascript siguientes. "
1029
  "Habilite esta opción si su tema no carga jQuery por defecto."
1030
 
1031
+ #: adrotate.php:778
1032
  msgid "Load in footer?"
1033
  msgstr "¿Cargar en el pie de página?"
1034
 
1035
+ #: adrotate.php:779
1036
  msgid ""
1037
  "Enable if you want to load the above libraries in the footer. Your theme "
1038
  "needs to call wp_footer() for this to work."
1040
  "Activar si desea cargar las bibliotecas anteriores en el pie de página. El "
1041
  "tema tiene que llamar a la función wp_footer() para que esto funcione."
1042
 
1043
+ #: adrotate.php:787
1044
  msgid "Maintenance"
1045
  msgstr "Mantenimiento"
1046
 
1047
+ #: adrotate.php:788
1048
  msgid ""
1049
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1050
  "They only apply to your ads/groups and stats. Not to other settings or other "
1058
  "Haga siempre una copia de seguridad! Estas funciones deben ser utilizadas "
1059
  "cuando se siente o nota que su base de datos va lenta o no responde."
1060
 
1061
+ #: adrotate.php:803 adrotate.php:805
1062
  msgid "Optimize Database"
1063
  msgstr "Optimizar la Base de Datos"
1064
 
1065
+ #: adrotate.php:805
1066
  msgid "You are about to optimize the AdRotate database."
1067
  msgstr "Vas a optimizar la base de datos AdRotate."
1068
 
1069
+ #: adrotate.php:805
1070
  msgid "Did you make a backup of your database?"
1071
  msgstr "¿Hiciste una copia de seguridad de la base de datos?"
1072
 
1073
+ #: adrotate.php:805
1074
  msgid ""
1075
  "This may take a moment and may cause your website to respond slow "
1076
  "temporarily!"
1078
  "Esto puede tardar un momento y puede hacer que su sitio web responda "
1079
  "lentamente temporalmente!"
1080
 
1081
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1082
  #: dashboard/publisher/adrotate-groups-main.php:24
1083
  msgid "OK to continue, CANCEL to stop."
1084
  msgstr "OK para continuar, CANCELAR para detenerlo."
1085
 
1086
+ #: adrotate.php:806
1087
  msgid "Cleans up overhead data in the AdRotate tables."
1088
  msgstr "Limpiar los datos generales de las tablas AdRotate."
1089
 
1090
+ #: adrotate.php:807
1091
  msgid ""
1092
  "Overhead data is accumulated garbage resulting from many changes you've "
1093
  "made. This can vary from nothing to hundreds of KiB of data."
1096
  "cambios que haya realizado. Esto puede variar de cero a cientos de Kb de "
1097
  "datos."
1098
 
1099
+ #: adrotate.php:811 adrotate.php:813
1100
  msgid "Clean-up Database"
1101
  msgstr "Limpieza de la Base de Datos"
1102
 
1103
+ #: adrotate.php:813
1104
  msgid ""
1105
  "You are about to clean up your database. This may delete expired schedules "
1106
  "and older statistics."
1108
  "Vas a limpiar tu base de datos. Esto puede eliminar programas vencidos y las "
1109
  "estadísticas más antigüas."
1110
 
1111
+ #: adrotate.php:813
1112
  msgid "Are you sure you want to continue?"
1113
  msgstr "¿Está seguro que desea continuar?"
1114
 
1115
+ #: adrotate.php:813 adrotate.php:821
1116
  msgid "This might take a while and may slow down your site during this action!"
1117
  msgstr ""
1118
  "Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
1119
 
1120
+ #: adrotate.php:814
1121
  msgid "Delete stats older than 356 days (Optional)."
1122
  msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
1123
 
1124
+ #: adrotate.php:815
1125
  msgid ""
1126
  "AdRotate creates empty records when you start making ads or groups. In rare "
1127
  "occasions these records are faulty."
1129
  "AdRotate crea registros vacíos cuando usted comienza a realizar anuncios o "
1130
  "grupos. En raras ocasiones, estos registros son defectuosos."
1131
 
1132
+ #: adrotate.php:815
1133
  msgid ""
1134
  "If you made an ad or group that does not save when you make it use this "
1135
  "button to delete those empty records."
1137
  "Si comienza a crear un anuncio o grupo pero no lo guarda cuando lo hace, "
1138
  "utilize este botón para borrar esos registros vacíos."
1139
 
1140
+ #: adrotate.php:815
1141
  msgid ""
1142
  "Additionally you can clean up old statistics. This will improve the speed of "
1143
  "your site."
1145
  "Adicionalmente puede limpiar las estadísticas antiguas. Esto mejorará la "
1146
  "velocidad de su sitio."
1147
 
1148
+ #: adrotate.php:819
1149
  msgid "Re-evaluate Ads"
1150
  msgstr "Reevaluar Anuncios"
1151
 
1152
+ #: adrotate.php:821
1153
  msgid "Re-evaluate all ads"
1154
  msgstr "Reevaluar todos los Anuncios"
1155
 
1156
+ #: adrotate.php:821
1157
  msgid "You are about to check all ads for errors."
1158
  msgstr "Vas a comprobar todos los anuncios para localizar errores."
1159
 
1160
+ #: adrotate.php:822
1161
  msgid ""
1162
  "This will apply all evaluation rules to all ads to see if any error slipped "
1163
  "in. Normally you should not need this feature."
1165
  "Esto aplicará las reglas de evaluación a todos los anuncios para ver si hay "
1166
  "algún error. Normalmente no debería necesitar esta función."
1167
 
1168
+ #: adrotate.php:826
1169
  msgid ""
1170
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1171
  "becomes unusable in any way or by any means in whichever way I will not take "
1183
  "alegar que funcionaba antes de hacer clic en estos botones no es razón "
1184
  "suficiente."
1185
 
1186
+ #: adrotate.php:834
1187
  msgid "Troubleshooting"
1188
  msgstr "Solución de problemas"
1189
 
1190
+ #: adrotate.php:837
1191
  msgid "Current version:"
1192
  msgstr "Versión actual:"
1193
 
1194
+ #: adrotate.php:838
1195
  msgid "Previous version:"
1196
  msgstr "Versión anterior:"
1197
 
1198
+ #: adrotate.php:841
1199
  msgid "Current database version:"
1200
  msgstr "Versión actual de la base de datos:"
1201
 
1202
+ #: adrotate.php:842
1203
  msgid "Previous database version:"
1204
  msgstr "Versión anterior de la base de datos:"
1205
 
1206
+ #: adrotate.php:845
1207
  #, fuzzy
1208
  msgid "Ad evaluation next run:"
1209
  msgstr "Evaluación de Anuncios en la siguiente ejecución:"
1210
 
1211
+ #: adrotate.php:846 adrotate.php:850
1212
  msgid "Not scheduled!"
1213
  msgstr "No Programada!"
1214
 
1215
+ #: adrotate.php:849
1216
  msgid "Clean Trackerdata next run:"
1217
  msgstr "Ultima ejecución de la limpieza de la base de datos:"
1218
 
1219
+ #: adrotate.php:853
1220
  msgid "Current status of adverts"
1221
  msgstr "Estado actual de los anuncios"
1222
 
1223
+ #: adrotate.php:854
1224
  msgid "Normal"
1225
  msgstr "Normal"
1226
 
1227
+ #: adrotate.php:854
1228
  msgid "Error"
1229
  msgstr "Error"
1230
 
1231
+ #: adrotate.php:854
1232
  msgid "Expired"
1233
  msgstr "Caducado"
1234
 
1235
+ #: adrotate.php:854
1236
  msgid "Expires Soon"
1237
  msgstr "Caduca Pronto"
1238
 
1239
+ #: adrotate.php:854
1240
  msgid "Unknown Status"
1241
  msgstr "Estado Desconocido"
1242
 
1243
+ #: adrotate.php:857
1244
  msgid ""
1245
  "NOTE: The below options are not meant for normal use and are only there for "
1246
  "developers to review saved settings or how ads are selected. These can be "
1253
  "para la resolución de problemas a petición, pero NO ESTA COMPROBADO PARA SU "
1254
  "USO CON NORMALIDAD!"
1255
 
1256
+ #: adrotate.php:861
1257
  msgid "Developer Debug"
1258
  msgstr "Depurar (Test) del Desarrollador"
1259
 
1260
+ #: adrotate.php:863
1261
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1262
  msgstr ""
1263
  "Solucionar problemas de los anuncios y de que forma se seleccionan si los "
1264
  "hay, tiene salida en las aplicaciones para usuario."
1265
 
1266
+ #: adrotate.php:864
1267
  msgid "Show all settings, dashboard routines and related values."
1268
  msgstr ""
1269
  "Mostrar todas las configuraciones, las rutinas del panel y los valores "
1270
  "relacionados."
1271
 
1272
+ #: adrotate.php:865
1273
  msgid "Show array of all userroles and capabilities."
1274
  msgstr "Mostrar matriz de todas las funciones de usuario y capacidades."
1275
 
1276
+ #: adrotate.php:866
1277
  msgid "Review saved advertisers! Visible to advertisers."
1278
  msgstr "Opinión de los anunciantes guardada! Visible para los anunciantes."
1279
 
1280
+ #: adrotate.php:867
1281
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1282
  msgstr ""
1283
  "Revisar las estadísticas globales, las estadísticas por anuncio/grupo. "
1284
  "Visible sólo a los editores."
1285
 
1286
+ #: adrotate.php:868
1287
  msgid ""
1288
  "Disable timers for clicks and impressions and enable a alert window for "
1289
  "clicktracking."
1291
  "Deshabilitar contadores de tiempo de clics e impresiones y activar una "
1292
  "ventana de alerta para el seguimiento de clics."
1293
 
1294
+ #: adrotate.php:869
1295
  msgid "Temporarily disable encryption on the redirect url."
1296
  msgstr "Desactivar temporalmente el cifrado en la redireccion de la url."
1297
 
1298
+ #: dashboard/adrotate-info.php:66
1299
  msgid "Currently"
1300
  msgstr "En la actualidad"
1301
 
1302
+ #: dashboard/adrotate-info.php:72
1303
  msgid "Your setup"
1304
  msgstr "Su configuración"
1305
 
1306
+ #: dashboard/adrotate-info.php:73
1307
  msgid "Adverts that need you"
1308
  msgstr "Estos Anuncios"
1309
 
1310
+ #: dashboard/adrotate-info.php:79
1311
  msgid "Adverts"
1312
  msgstr "Anuncios"
1313
 
1314
+ #: dashboard/adrotate-info.php:80
1315
  msgid "(Almost) Expired"
1316
  msgstr "Expirados (o casi)"
1317
 
1318
+ #: dashboard/adrotate-info.php:83
1319
  msgid "Groups"
1320
  msgstr "Grupos"
1321
 
1322
+ #: dashboard/adrotate-info.php:84
1323
  msgid "Have errors"
1324
  msgstr "Tienen errores"
1325
 
1326
+ #: dashboard/adrotate-info.php:88
1327
  msgid "Queued"
1328
  msgstr "En cola"
1329
 
1330
+ #: dashboard/adrotate-info.php:95
1331
  msgid "The last few days"
1332
  msgstr "Los últimos días"
1333
 
1334
+ #: dashboard/adrotate-info.php:135
1335
  msgid "Support AdRotate"
1336
  msgstr "Apoye a AdRotate"
1337
 
1338
+ #: dashboard/adrotate-info.php:142
1339
  msgid "Your gift helps ensure the continued development of AdRotate!"
1340
  msgstr ""
1341
 
1342
+ #: dashboard/adrotate-info.php:142
1343
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1344
  msgstr ""
1345
 
1346
+ #: dashboard/adrotate-info.php:151
1347
  msgid "AdRotate News and Developer Blog"
1348
  msgstr "Noticias y Blog del Desarrollador de AdRotate "
1349
 
1350
  #: dashboard/adrotate-info.php:168
1351
+ msgid "Get notified of AdRotate updates via Pushover"
1352
+ msgstr ""
1353
+
1354
+ #: dashboard/adrotate-info.php:175
1355
+ msgid "Pushover is a push notification service for iOS and Android!"
1356
+ msgstr ""
1357
+
1358
+ #: dashboard/adrotate-info.php:188
1359
  msgid "Get more features with AdRotate Pro"
1360
  msgstr "Obtenga más funciones con AdRotate Pro"
1361
 
1362
+ #: dashboard/adrotate-info.php:191
1363
  msgid ""
1364
  "Benefit from extra features to reinforce your income with advertising "
1365
  "campaigns. Make the most of your website with the powerful tools AdRotate "
1370
  "las potentes herramientas que AdRotate Pro le ofrece, además de las "
1371
  "funcionalidades más que fiables incluidas en la versión gratuita."
1372
 
1373
+ #: dashboard/adrotate-info.php:191
1374
  msgid "Want to know more about"
1375
  msgstr ""
1376
 
1377
+ #: dashboard/adrotate-info.php:195 dashboard/adrotate-pro.php:72
1378
  msgid "Buy AdRotate Professional"
1379
  msgstr "Comprar AdRotate Profesional"
1380
 
1381
+ #: dashboard/adrotate-info.php:199
1382
+ msgid "Single License"
1383
+ msgstr ""
1384
 
1385
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-pro.php:76
1386
  msgid "For one WordPress installation."
1387
  msgstr "Para una instalación de WordPress."
1388
 
1389
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-info.php:200
1390
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-info.php:202
1391
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:76
1392
+ #: dashboard/adrotate-pro.php:77 dashboard/adrotate-pro.php:78
1393
+ #: dashboard/adrotate-pro.php:79 dashboard/adrotate-pro.php:80
1394
  #, fuzzy
1395
  msgid "Buy now"
1396
  msgstr "Comprar"
1397
 
1398
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1399
  msgid "Duo License"
1400
  msgstr "Duo Licencia"
1401
 
1402
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1403
  msgid "For two WordPress installations."
1404
  msgstr "Para dos instalaciónes de WordPress."
1405
 
1406
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1407
  msgid "Multi License"
1408
  msgstr "Multi Licencia"
1409
 
1410
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1411
  msgid " For up to five WordPress installations."
1412
  msgstr "Para un máximo de cinco instalaciones de WordPress."
1413
 
1414
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1415
  msgid "Developer License"
1416
  msgstr "Developer Licencia"
1417
 
1418
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1419
  msgid "Unlimited WordPress installations and/or networks."
1420
  msgstr ""
1421
 
1422
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1423
  msgid "Network License"
1424
  msgstr "Network Licencia"
1425
 
1426
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1427
  msgid "Set up your own advertising network on a WordPress Multisite."
1428
  msgstr "Configure su propia red de publicidad en un WordPress Multisite."
1429
 
1430
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1431
  msgid "Compare licenses"
1432
  msgstr "Comparar licencias"
1433
 
1434
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1435
  msgid "Not sure which license is for you? Compare them..."
1436
  msgstr "No está seguro de que licencia es para usted? Comparelas..."
1437
 
1438
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1439
  msgid "All Licenses"
1440
  msgstr "Todas las licencias"
1441
 
1442
+ #: dashboard/adrotate-info.php:208 dashboard/adrotate-pro.php:41
1443
  msgid "AdRotate is brought to you by"
1444
  msgstr "AdRotate es ofrecido por"
1445
 
1446
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1447
  msgid ""
1448
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1449
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1454
  "(Theme) o si necesita trasladar/migrar su sitio completamente. Visite mi "
1455
  "página web para más detalles!"
1456
 
1457
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1458
  msgid "Find out more"
1459
  msgstr "Para saber más"
1460
 
1461
+ #: dashboard/adrotate-info.php:214
1462
  msgid "Follow"
1463
  msgstr "Continuar"
1464
 
1478
  "moderación para que puedan ser revisados. Los anunciantes tienen acceso a su "
1479
  "propio panel donde pueden ver el rendimiento de sus anuncios."
1480
 
1481
+ #: dashboard/adrotate-pro.php:27
1482
  msgid "Localize your ad campaigns with Geo Targeting"
1483
  msgstr "Localizar sus campañas publicitarias con Geo Targeting"
1484
 
1485
+ #: dashboard/adrotate-pro.php:30
 
1486
  msgid ""
1487
  "Go nationwide or global with localized adverts for your various audiences. "
1488
  "Set up adverts for countries and cities and sell impressions per general "
1489
+ "area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
1490
+ "Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
1491
  msgstr ""
 
 
 
 
1492
 
1493
+ #: dashboard/adrotate-pro.php:34
1494
  msgid "Get Premium Support almost all year round"
1495
  msgstr "Obtenga Soporte Premium completo durante todo el año"
1496
 
1497
+ #: dashboard/adrotate-pro.php:37
1498
  msgid ""
1499
+ "When you activate your AdRotate Pro license you can use fast and personal "
1500
+ "email support. No more queueing up in the forums. AdRotate premium support "
1501
+ "takes priority over the forums and is checked much more often than the "
1502
+ "forum. Get a solution (usually) within a day."
1503
  msgstr ""
 
 
 
 
1504
 
1505
+ #: dashboard/adrotate-pro.php:58
1506
  msgid "Schedule all campaigns with ease"
1507
  msgstr "Programe todas las campañas con facilidad"
1508
 
1509
+ #: dashboard/adrotate-pro.php:61
1510
  msgid ""
1511
+ "Schedule your adverts and set up advertising campaigns based on dates you or "
1512
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
1513
+ "You name it, AdRotate schedules it. This makes planning your revenue stream "
1514
+ "much more easy. You can set one or many schedules for adverts."
1515
  msgstr ""
 
 
 
1516
 
1517
+ #: dashboard/adrotate-pro.php:65
1518
+ msgid "Stay up-to-date with notifications"
1519
+ msgstr ""
1520
 
1521
+ #: dashboard/adrotate-pro.php:68
1522
  msgid ""
1523
+ "Stay in touch with Email notifications. Have AdRotate send you an alert when "
1524
+ "adverts expire or need your attention. Additionally, you can have AdRotate "
1525
+ "send push notifications to your iOS or Android smartphone. Get notified when "
1526
  "adverts expire, have errors or when advertisers create new adverts. Never "
1527
  "miss an expiration date again."
1528
  msgstr ""
1529
+
1530
+ #: dashboard/adrotate-pro.php:76
1531
+ msgid "Singe License"
1532
+ msgstr "Singe Licencia"
1533
 
1534
  #: dashboard/publisher/adrotate-ads-edit.php:46
1535
  msgid "The AdCode cannot be empty!"
2521
  msgid "Statistics for group"
2522
  msgstr "Estadisticas por Grupo"
2523
 
2524
+ #~ msgid ""
2525
+ #~ "You have enabled WP Super Cache support. If you have version 1.4 or "
2526
+ #~ "newer, this function will not work. WP Super Cache has discontinued "
2527
+ #~ "support for dynamic content."
2528
+ #~ msgstr ""
2529
+ #~ "Ha activado el soporte WP Super Cache. Si tiene la versión 1.4 o "
2530
+ #~ "posterior, esta función no funcionará. WP Super Cache ha interrumpido el "
2531
+ #~ "soporte para el contenido dinámico."
2532
+
2533
+ #~ msgid "WP Super Cache"
2534
+ #~ msgstr "WP Super Cache"
2535
+
2536
+ #~ msgid "Check this box if you use WP Super Cache on your site."
2537
+ #~ msgstr "Marque esta casilla si utiliza WP Super Cache en su sitio."
2538
+
2539
+ #, fuzzy
2540
+ #~ msgid ""
2541
+ #~ "Go nationwide or global with localized adverts for your various "
2542
+ #~ "audiences. Set up adverts for countries and cities and sell impressions "
2543
+ #~ "per general area. Connect your site to MaxMinds GeoIP2: Precision, "
2544
+ #~ "FreegeoIP (MaxMind GeoLITE) or GeoBytes GeoSelect services."
2545
+ #~ msgstr ""
2546
+ #~ "Ponga a nivel nacional o mundial los anuncios localizados para los "
2547
+ #~ "diferentes públicos. Configure anuncios para los países y ciudades y "
2548
+ #~ "venda impresiones por areas generales. Esta información la proporciona "
2549
+ #~ "Geo FreegeoIP (MaxMind) y GeoSelect."
2550
+
2551
+ #~ msgid ""
2552
+ #~ "When you activate your AdRotate Pro license you are entitled to ticket "
2553
+ #~ "support. AdRotate premium support which takes priority over the Forums "
2554
+ #~ "and even email. Get a solution (usually) within a day."
2555
+ #~ msgstr ""
2556
+ #~ "Al activar su licencia AdRotate Pro usted tiene derecho a tickets de "
2557
+ #~ "soporte. El soporte Premium de AdRotate tiene prioridad respecto al de "
2558
+ #~ "los foros e incluso al de correo electrónico. Obtenga una solución (por "
2559
+ #~ "lo general) en un día."
2560
+
2561
+ #~ msgid ""
2562
+ #~ "Schedule your adverts and set up advertising campaigns based on date "
2563
+ #~ "without hassle. Seasonal adverts, weekly adverts. You name it. AdRotate "
2564
+ #~ "schedules it."
2565
+ #~ msgstr ""
2566
+ #~ "Programe sus anuncios y configure campañas de publicidad basados en la "
2567
+ #~ "fecha sin problemas. Anuncios de temporada, anuncios semanales, lo que "
2568
+ #~ "sea. Calendario AdRotate."
2569
+
2570
+ #~ msgid "Stay up-to-date with the notification system"
2571
+ #~ msgstr "Manténgase al día con el sistema de notificaciones"
2572
+
2573
+ #~ msgid ""
2574
+ #~ "Stay in touch with Email and/or push notifications. Get notified when "
2575
+ #~ "adverts expire, have errors or when advertisers create new adverts. Never "
2576
+ #~ "miss an expiration date again."
2577
+ #~ msgstr ""
2578
+ #~ "Mantente en contacto con el correo electrónico y/o las notificaciones "
2579
+ #~ "push. Apúntate para saber cuándo expiran los anuncios, si tienen errores "
2580
+ #~ "o cuando los anunciantes crean nuevos anuncios. Que no se te pase más "
2581
+ #~ "ninguna fecha de expiración de tus anuncios."
2582
+
2583
  #~ msgid "Title:"
2584
  #~ msgstr "Título:"
2585
 
language/adrotate-fr_FR.mo CHANGED
Binary file
language/adrotate-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-05-15 01:46+0100\n"
6
- "PO-Revision-Date: 2015-05-15 01:46+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"
@@ -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.5\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:801
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
- #: adrotate-functions.php:804
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:737
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Oh no! Un problème est survenu!"
31
 
32
- #: adrotate-output.php:738
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:739
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:740
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Contactez le support si le soucis persiste :"
50
 
51
- #: adrotate-output.php:758
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:760
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:767 adrotate-output.php:769
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:775
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:781
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:786
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:792
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,151 +93,151 @@ msgstr ""
93
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
94
  "extensions. "
95
 
96
- #: adrotate-output.php:792
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:798
103
  msgid "An unknown error occured."
104
  msgstr "Une erreur inconnue s'est produite."
105
 
106
- #: adrotate-output.php:823
107
  msgid "active ad(s) expired."
108
  msgstr "publicité(s) active(s) ont expirée(s)."
109
 
110
- #: adrotate-output.php:823
111
  msgid "Take action now"
112
  msgstr "Agir maintenant"
113
 
114
- #: adrotate-output.php:825
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:825
119
  msgid "Check it out"
120
  msgstr "Vérifier-le"
121
 
122
- #: adrotate-output.php:827
123
  msgid "active ad(s) with configuration errors."
124
  msgstr "publicité(s) active(s) avec des erreurs de configuration."
125
 
126
- #: adrotate-output.php:827
127
  msgid "Solve this"
128
  msgstr "Résoudre"
129
 
130
- #: adrotate-output.php:829
131
  msgid "ad(s) expired."
132
  msgstr "publicité(s) expirée(s)"
133
 
134
- #: adrotate-output.php:829
135
  msgid "ad(s) are about to expire."
136
  msgstr "publicité(s) sont sur le point d'expirer"
137
 
138
- #: adrotate-output.php:829
139
  msgid "ad(s) with configuration errors."
140
  msgstr "publicité(s) avec des erreurs de configuration."
141
 
142
- #: adrotate-output.php:829
143
  msgid "Fix this as soon as possible"
144
  msgstr "Résoudre ce soucis dans les meilleurs délais"
145
 
146
- #: adrotate-output.php:841
147
  #, fuzzy
148
  msgid "Learn More"
149
  msgstr "En savoir plus"
150
 
151
- #: adrotate-output.php:842
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:842
158
  msgid "Get more features to even better run your advertising campaigns."
159
  msgstr ""
160
 
161
- #: adrotate-output.php:842
162
  msgid "Thank you for your consideration!"
163
  msgstr ""
164
 
165
- #: adrotate-output.php:886
166
  msgid ""
167
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
168
  "this menu. Check out the"
169
  msgstr ""
170
 
171
- #: adrotate-output.php:886
172
  msgid "manuals"
173
  msgstr "manuels"
174
 
175
- #: adrotate-output.php:886 adrotate-output.php:962
176
  #: dashboard/publisher/adrotate-ads-edit.php:151
177
  msgid "and"
178
  msgstr ""
179
 
180
- #: adrotate-output.php:886
181
  msgid "forums"
182
  msgstr ""
183
 
184
- #: adrotate-output.php:922
185
  msgid "Useful Links"
186
  msgstr ""
187
 
188
- #: adrotate-output.php:923
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
- #: adrotate-output.php:925
193
  msgid "AdRotate Page"
194
  msgstr ""
195
 
196
- #: adrotate-output.php:926
197
  msgid "Getting Started With AdRotate"
198
  msgstr ""
199
 
200
- #: adrotate-output.php:927
201
  msgid "AdRotate manuals"
202
  msgstr ""
203
 
204
- #: adrotate-output.php:928
205
  msgid "AdRotate Support Forum"
206
  msgstr ""
207
 
208
- #: adrotate-output.php:954
209
  #, fuzzy
210
  msgid "Help AdRotate Grow"
211
  msgstr "AdRotate Pro"
212
 
213
- #: adrotate-output.php:955
214
  msgid "Brought to you by"
215
  msgstr "Présenté par"
216
 
217
- #: adrotate-output.php:962
218
  msgid ""
219
  "A lot of users only think to review AdRotate when something goes wrong while "
220
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
221
  msgstr ""
222
 
223
- #: adrotate-output.php:962
224
  msgid "If you find AdRotate useful please leave your honest"
225
  msgstr ""
226
 
227
- #: adrotate-output.php:962
228
  msgid "rating"
229
  msgstr ""
230
 
231
- #: adrotate-output.php:962
232
  #, fuzzy
233
  msgid "review"
234
  msgstr "En avant-première"
235
 
236
- #: adrotate-output.php:962
237
  msgid "on WordPress.org to help AdRotate grow in a positive way"
238
  msgstr ""
239
 
240
- #: adrotate-output.php:965
241
  msgid ""
242
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
243
  "out more about what I can do for you!"
@@ -245,27 +245,27 @@ msgstr ""
245
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
246
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
247
 
248
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
249
  msgid "Visit the"
250
  msgstr "Visitez le"
251
 
252
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
253
  msgid "website"
254
  msgstr "site"
255
 
256
- #: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
257
  msgid "Available in AdRotate Pro"
258
  msgstr "Disponible dans Adrotate Pro"
259
 
260
- #: adrotate-output.php:995
261
  msgid "More information..."
262
  msgstr "Plus d'informations..."
263
 
264
- #: adrotate-output.php:996
265
  msgid "This feature is available in AdRotate Pro"
266
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
267
 
268
- #: adrotate-output.php:996
269
  msgid "Learn more"
270
  msgstr "En savoir plus"
271
 
@@ -341,49 +341,49 @@ msgstr "Ce mois-ci"
341
  msgid "Next"
342
  msgstr "Prochain"
343
 
344
- #: adrotate-statistics.php:284 dashboard/adrotate-info.php:123
345
  msgid "No data to show!"
346
  msgstr "Aucune donnée à montrer!"
347
 
348
- #: adrotate-widget.php:116
349
  msgid "Title (optional):"
350
  msgstr "Titre (optionel) :"
351
 
352
- #: adrotate-widget.php:119
353
  msgid "HTML will be stripped out."
354
  msgstr "Le code HTML sera retiré."
355
 
356
- #: adrotate-widget.php:122
357
  msgid "Description (optional):"
358
  msgstr "Description (optionelle) :"
359
 
360
- #: adrotate-widget.php:125
361
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
362
  msgstr ""
363
  "Quelle est l'utilisation de ce widget? (Non executé, le code HTML sera "
364
  "dépouillé.)"
365
 
366
- #: adrotate-widget.php:128
367
  msgid "Type:"
368
  msgstr "Type :"
369
 
370
- #: adrotate-widget.php:130
371
  msgid "Single Ad - Use Ad ID"
372
  msgstr "Ad Unique - Mettre l'identifiant de la publicité"
373
 
374
- #: adrotate-widget.php:131
375
  msgid "Group of Ads - Use group ID"
376
  msgstr "Groupe de Pub - Mettre l'identifiant du groupe"
377
 
378
- #: adrotate-widget.php:134
379
  msgid "Choose what you want to use this widget for"
380
  msgstr "Choisissez le fonction de ce widget"
381
 
382
- #: adrotate-widget.php:137
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 "Insérez l'identifiant du type que vous voulez afficher!"
389
 
@@ -782,8 +782,8 @@ msgstr "Effacer les groups"
782
  msgid "Role to delete groups."
783
  msgstr "Rôle pour supprimer les groupes."
784
 
785
- #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
786
- #: adrotate.php:890
787
  msgid "Update Options"
788
  msgstr "Mettre à jour les options"
789
 
@@ -950,11 +950,11 @@ msgstr ""
950
  "Activez cette option pour supprimer la marge (espace vide) autour des "
951
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
952
 
953
- #: adrotate.php:760 adrotate.php:771
954
  msgid "NOTICE:"
955
  msgstr ""
956
 
957
- #: adrotate.php:761
958
  msgid ""
959
  "You have enabled W3 Total Caching support but not defined the security hash. "
960
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -966,33 +966,15 @@ msgstr ""
966
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
967
  "fonction \"late init\" doit être activée dans W3 Total Cache."
968
 
969
- #: adrotate.php:765
970
  msgid "W3 Total Caching"
971
  msgstr "W3 Total Caching"
972
 
973
- #: adrotate.php:766
974
  msgid "Check this box if you use W3 Total Caching on your site."
975
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
976
 
977
- #: adrotate.php:772
978
- msgid ""
979
- "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
980
- "this function will not work. WP Super Cache has discontinued support for "
981
- "dynamic content."
982
- msgstr ""
983
- "Vous avez activé le support de WP Super Cache. Si vous avez la version 1.4 "
984
- "ou plus récent, cette fonction ne marchera pas. WP Super Cache a arrêté le "
985
- "support pour le contenu dynamique."
986
-
987
- #: adrotate.php:776
988
- msgid "WP Super Cache"
989
- msgstr "WP Super Cache"
990
-
991
- #: adrotate.php:777
992
- msgid "Check this box if you use WP Super Cache on your site."
993
- msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
994
-
995
- #: adrotate.php:782
996
  msgid ""
997
  "It may take a while for the ad to start rotating. The caching plugin needs "
998
  "to refresh the cache. This can take up to a week if not done manually."
@@ -1002,7 +984,7 @@ msgstr ""
1002
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
1003
  "pas fait manuellement."
1004
 
1005
- #: adrotate.php:782
1006
  msgid ""
1007
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1008
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -1011,15 +993,15 @@ msgstr ""
1011
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
1012
  "PHP dans le code d'exclusion vous-même."
1013
 
1014
- #: adrotate.php:786
1015
  msgid "Javascript"
1016
  msgstr ""
1017
 
1018
- #: adrotate.php:789
1019
  msgid "Load jQuery"
1020
  msgstr "Utilisez jQuery"
1021
 
1022
- #: adrotate.php:790
1023
  msgid ""
1024
  "jQuery is required for all Javascript features below. Enable this if your "
1025
  "theme does not load jQuery already."
@@ -1027,11 +1009,11 @@ msgstr ""
1027
  "jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
1028
  "le si votre thème ne charge pas jQuery directement."
1029
 
1030
- #: adrotate.php:793
1031
  msgid "Load in footer?"
1032
  msgstr "Chargement dans le pied de page?"
1033
 
1034
- #: adrotate.php:794
1035
  msgid ""
1036
  "Enable if you want to load the above libraries in the footer. Your theme "
1037
  "needs to call wp_footer() for this to work."
@@ -1039,11 +1021,11 @@ msgstr ""
1039
  "Activez cette option si vous voulez charger les bibliothèques dans le pied "
1040
  "de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
1041
 
1042
- #: adrotate.php:802
1043
  msgid "Maintenance"
1044
  msgstr "Maintenance"
1045
 
1046
- #: adrotate.php:803
1047
  msgid ""
1048
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1049
  "They only apply to your ads/groups and stats. Not to other settings or other "
@@ -1057,19 +1039,19 @@ msgstr ""
1057
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1058
  "de données est lente ou ne réponds pas."
1059
 
1060
- #: adrotate.php:818 adrotate.php:820
1061
  msgid "Optimize Database"
1062
  msgstr "Optimiser la base de données"
1063
 
1064
- #: adrotate.php:820
1065
  msgid "You are about to optimize the AdRotate database."
1066
  msgstr "Vous allez optimiser la base de données de Adrotate."
1067
 
1068
- #: adrotate.php:820
1069
  msgid "Did you make a backup of your database?"
1070
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
1071
 
1072
- #: adrotate.php:820
1073
  msgid ""
1074
  "This may take a moment and may cause your website to respond slow "
1075
  "temporarily!"
@@ -1077,16 +1059,16 @@ msgstr ""
1077
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
1078
  "temporaire!"
1079
 
1080
- #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1081
  #: dashboard/publisher/adrotate-groups-main.php:24
1082
  msgid "OK to continue, CANCEL to stop."
1083
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1084
 
1085
- #: adrotate.php:821
1086
  msgid "Cleans up overhead data in the AdRotate tables."
1087
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
1088
 
1089
- #: adrotate.php:822
1090
  msgid ""
1091
  "Overhead data is accumulated garbage resulting from many changes you've "
1092
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1095,11 +1077,11 @@ msgstr ""
1095
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
1096
  "KB de données."
1097
 
1098
- #: adrotate.php:826 adrotate.php:828
1099
  msgid "Clean-up Database"
1100
  msgstr "Nettoyer la base de données"
1101
 
1102
- #: adrotate.php:828
1103
  msgid ""
1104
  "You are about to clean up your database. This may delete expired schedules "
1105
  "and older statistics."
@@ -1107,21 +1089,21 @@ msgstr ""
1107
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
1108
  "supprimer des calendriers périmés et des vieilles statistiques.."
1109
 
1110
- #: adrotate.php:828
1111
  msgid "Are you sure you want to continue?"
1112
  msgstr "Etes-vous certains de vouloir continuer?"
1113
 
1114
- #: adrotate.php:828 adrotate.php:836
1115
  msgid "This might take a while and may slow down your site during this action!"
1116
  msgstr ""
1117
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
1118
  "interval!"
1119
 
1120
- #: adrotate.php:829
1121
  msgid "Delete stats older than 356 days (Optional)."
1122
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
1123
 
1124
- #: adrotate.php:830
1125
  msgid ""
1126
  "AdRotate creates empty records when you start making ads or groups. In rare "
1127
  "occasions these records are faulty."
@@ -1129,7 +1111,7 @@ msgstr ""
1129
  "AdRotate crée des registres vides lorsque vous commencez à faire des "
1130
  "annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
1131
 
1132
- #: adrotate.php:830
1133
  msgid ""
1134
  "If you made an ad or group that does not save when you make it use this "
1135
  "button to delete those empty records."
@@ -1138,7 +1120,7 @@ msgstr ""
1138
  "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
1139
  "registres vides."
1140
 
1141
- #: adrotate.php:830
1142
  msgid ""
1143
  "Additionally you can clean up old statistics. This will improve the speed of "
1144
  "your site."
@@ -1146,19 +1128,19 @@ msgstr ""
1146
  "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
1147
  "d'améliorer la vitesse de votre site."
1148
 
1149
- #: adrotate.php:834
1150
  msgid "Re-evaluate Ads"
1151
  msgstr "Re-évaluer les publicités"
1152
 
1153
- #: adrotate.php:836
1154
  msgid "Re-evaluate all ads"
1155
  msgstr "Re-évaluer toutes les publicités"
1156
 
1157
- #: adrotate.php:836
1158
  msgid "You are about to check all ads for errors."
1159
  msgstr "Vous allez véifier l'état de toutes les publicités."
1160
 
1161
- #: adrotate.php:837
1162
  msgid ""
1163
  "This will apply all evaluation rules to all ads to see if any error slipped "
1164
  "in. Normally you should not need this feature."
@@ -1167,7 +1149,7 @@ msgstr ""
1167
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
1168
  "fonctionalité."
1169
 
1170
- #: adrotate.php:841
1171
  msgid ""
1172
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1173
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1184,63 +1166,63 @@ msgstr ""
1184
  "probablement déjà au-delà de la réparation. Affirmer que le site "
1185
  "fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
1186
 
1187
- #: adrotate.php:849
1188
  msgid "Troubleshooting"
1189
  msgstr "Diagnostic de dépannage"
1190
 
1191
- #: adrotate.php:852
1192
  msgid "Current version:"
1193
  msgstr "Version actuelle :"
1194
 
1195
- #: adrotate.php:853
1196
  msgid "Previous version:"
1197
  msgstr "Version antérieure :"
1198
 
1199
- #: adrotate.php:856
1200
  msgid "Current database version:"
1201
  msgstr "Version actuelle de la base de données :"
1202
 
1203
- #: adrotate.php:857
1204
  msgid "Previous database version:"
1205
  msgstr "Version antérieure de la base de données :"
1206
 
1207
- #: adrotate.php:860
1208
  msgid "Ad evaluation next run:"
1209
  msgstr ""
1210
 
1211
- #: adrotate.php:861 adrotate.php:865
1212
  msgid "Not scheduled!"
1213
  msgstr "Pas planifié!"
1214
 
1215
- #: adrotate.php:864
1216
  msgid "Clean Trackerdata next run:"
1217
  msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
1218
 
1219
- #: adrotate.php:868
1220
  msgid "Current status of adverts"
1221
  msgstr "Etat actuel des publicités"
1222
 
1223
- #: adrotate.php:869
1224
  msgid "Normal"
1225
  msgstr "Normal"
1226
 
1227
- #: adrotate.php:869
1228
  msgid "Error"
1229
  msgstr "Erreur"
1230
 
1231
- #: adrotate.php:869
1232
  msgid "Expired"
1233
  msgstr "Expiré"
1234
 
1235
- #: adrotate.php:869
1236
  msgid "Expires Soon"
1237
  msgstr "Expire bientôt"
1238
 
1239
- #: adrotate.php:869
1240
  msgid "Unknown Status"
1241
  msgstr "Statut Inconnu"
1242
 
1243
- #: adrotate.php:872
1244
  msgid ""
1245
  "NOTE: The below options are not meant for normal use and are only there for "
1246
  "developers to review saved settings or how ads are selected. These can be "
@@ -1253,37 +1235,37 @@ msgstr ""
1253
  "peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
1254
  "une utilisation normale, ils ne doivent pas être activés!"
1255
 
1256
- #: adrotate.php:876
1257
  msgid "Developer Debug"
1258
  msgstr "Debuggage de développeur"
1259
 
1260
- #: adrotate.php:878
1261
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1262
  msgstr ""
1263
  "Dépannage des publicités. Si cette option est activée, les données seront "
1264
  "placées sur le site."
1265
 
1266
- #: adrotate.php:879
1267
  msgid "Show all settings, dashboard routines and related values."
1268
  msgstr ""
1269
  "Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
1270
  "connexes."
1271
 
1272
- #: adrotate.php:880
1273
  msgid "Show array of all userroles and capabilities."
1274
  msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
1275
 
1276
- #: adrotate.php:881
1277
  msgid "Review saved advertisers! Visible to advertisers."
1278
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
1279
 
1280
- #: adrotate.php:882
1281
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1282
  msgstr ""
1283
  "Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
1284
  "Visible uniquement aux annonceurs."
1285
 
1286
- #: adrotate.php:883
1287
  msgid ""
1288
  "Disable timers for clicks and impressions and enable a alert window for "
1289
  "clicktracking."
@@ -1291,67 +1273,75 @@ msgstr ""
1291
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
1292
  "fenêtre d'alerte pour le suivi des clicks."
1293
 
1294
- #: adrotate.php:884
1295
  msgid "Temporarily disable encryption on the redirect url."
1296
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
1297
 
1298
- #: dashboard/adrotate-info.php:65
1299
  msgid "Currently"
1300
  msgstr "Actuellement"
1301
 
1302
- #: dashboard/adrotate-info.php:71
1303
  msgid "Your setup"
1304
  msgstr "Votre configuration"
1305
 
1306
- #: dashboard/adrotate-info.php:72
1307
  msgid "Adverts that need you"
1308
  msgstr "Publicités qui ont besoin de votre attention"
1309
 
1310
- #: dashboard/adrotate-info.php:78
1311
  msgid "Adverts"
1312
  msgstr "Publicités"
1313
 
1314
- #: dashboard/adrotate-info.php:79
1315
  msgid "(Almost) Expired"
1316
  msgstr "(presque) expiré"
1317
 
1318
- #: dashboard/adrotate-info.php:82
1319
  msgid "Groups"
1320
  msgstr "Groupes"
1321
 
1322
- #: dashboard/adrotate-info.php:83
1323
  msgid "Have errors"
1324
  msgstr "Il y a des erreurs"
1325
 
1326
- #: dashboard/adrotate-info.php:87
1327
  msgid "Queued"
1328
  msgstr "File d'attente"
1329
 
1330
- #: dashboard/adrotate-info.php:93
1331
  msgid "The last few days"
1332
  msgstr "Les derniers jours"
1333
 
1334
- #: dashboard/adrotate-info.php:132
1335
  msgid "Support AdRotate"
1336
  msgstr "Soutenez AdRotate"
1337
 
1338
- #: dashboard/adrotate-info.php:139
1339
  msgid "Your gift helps ensure the continued development of AdRotate!"
1340
  msgstr ""
1341
 
1342
- #: dashboard/adrotate-info.php:139
1343
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1344
  msgstr ""
1345
 
1346
- #: dashboard/adrotate-info.php:148
1347
  msgid "AdRotate News and Developer Blog"
1348
  msgstr "Actus AdRotate et blog du développeur"
1349
 
1350
  #: dashboard/adrotate-info.php:168
 
 
 
 
 
 
 
 
1351
  msgid "Get more features with AdRotate Pro"
1352
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
1353
 
1354
- #: dashboard/adrotate-info.php:171
1355
  msgid ""
1356
  "Benefit from extra features to reinforce your income with advertising "
1357
  "campaigns. Make the most of your website with the powerful tools AdRotate "
@@ -1362,82 +1352,82 @@ msgstr ""
1362
  "outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
1363
  "la version gratuite."
1364
 
1365
- #: dashboard/adrotate-info.php:171
1366
  msgid "Want to know more about"
1367
  msgstr ""
1368
 
1369
- #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1370
  msgid "Buy AdRotate Professional"
1371
  msgstr "Achetez AdRotate Professionel"
1372
 
1373
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1374
- msgid "Singe License"
1375
- msgstr "Licence Unique"
1376
 
1377
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1378
  msgid "For one WordPress installation."
1379
  msgstr "Pour une installation Wordpress."
1380
 
1381
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1382
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1383
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1384
- #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1385
- #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1386
  msgid "Buy now"
1387
  msgstr ""
1388
 
1389
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1390
  msgid "Duo License"
1391
  msgstr "Licence Duo"
1392
 
1393
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1394
  msgid "For two WordPress installations."
1395
  msgstr "Pour deux installations Wordpress."
1396
 
1397
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1398
  msgid "Multi License"
1399
  msgstr "Licence Multiple"
1400
 
1401
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1402
  msgid " For up to five WordPress installations."
1403
  msgstr "Pour un max de cinq installation Wordpress."
1404
 
1405
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1406
  msgid "Developer License"
1407
  msgstr "Licence de Developpeur"
1408
 
1409
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1410
  msgid "Unlimited WordPress installations and/or networks."
1411
  msgstr ""
1412
 
1413
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1414
  msgid "Network License"
1415
  msgstr "Licence Réseau"
1416
 
1417
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1418
  msgid "Set up your own advertising network on a WordPress Multisite."
1419
  msgstr ""
1420
  "Mettez en place votre propre réseau de publicité sur une installation "
1421
  "Wordpress Multisite."
1422
 
1423
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1424
  msgid "Compare licenses"
1425
  msgstr "Comparer les licences"
1426
 
1427
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1428
  msgid "Not sure which license is for you? Compare them..."
1429
  msgstr ""
1430
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
1431
 
1432
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1433
  msgid "All Licenses"
1434
  msgstr "Toutes les licences"
1435
 
1436
- #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
1437
  msgid "AdRotate is brought to you by"
1438
  msgstr "AdRotate est offert par"
1439
 
1440
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1441
  msgid ""
1442
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1443
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1448,11 +1438,11 @@ msgstr ""
1448
  "personnalisation de thème ou pour la migration de votre site entier, visitez "
1449
  "mon site pour tous les détails!"
1450
 
1451
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1452
  msgid "Find out more"
1453
  msgstr "En savoir plus"
1454
 
1455
- #: dashboard/adrotate-info.php:194
1456
  msgid "Follow"
1457
  msgstr "Suivre"
1458
 
@@ -1473,64 +1463,58 @@ msgstr ""
1473
  "votre personel. Les annonceurs ont accès à leur propre petit tableau de bord "
1474
  "où ils peuvent voir les performances de leur publicités."
1475
 
1476
- #: dashboard/adrotate-pro.php:28
1477
  msgid "Localize your ad campaigns with Geo Targeting"
1478
  msgstr "Localiser vos campagnes publicitaires avec le ciblage géographique"
1479
 
1480
- #: dashboard/adrotate-pro.php:31
1481
- #, fuzzy
1482
  msgid ""
1483
  "Go nationwide or global with localized adverts for your various audiences. "
1484
  "Set up adverts for countries and cities and sell impressions per general "
1485
- "area. Connect your site to MaxMinds GeoIP2: Precision, FreegeoIP (MaxMind "
1486
- "GeoLITE) or GeoBytes GeoSelect services."
1487
  msgstr ""
1488
- "Allez à l'échelle nationale ou mondiale avec les publicités localisées pour "
1489
- "votre audience. Mettez en place des publicités par pays et villes et vendez "
1490
- "des impressions par zone géographique. Celle-ci sont fournies par FreegeoIP "
1491
- "(MaxMind) et GeoSelect."
1492
 
1493
- #: dashboard/adrotate-pro.php:36
1494
  msgid "Get Premium Support almost all year round"
1495
  msgstr "Obtenez du soutien Premium pendant toute l'année"
1496
 
1497
- #: dashboard/adrotate-pro.php:39
1498
  msgid ""
1499
- "When you activate your AdRotate Pro license you are entitled to ticket "
1500
- "support. AdRotate premium support which takes priority over the Forums and "
1501
- "even email. Get a solution (usually) within a day."
 
1502
  msgstr ""
1503
- "Lorsque vous activez votre licence AdRotate Pro vous bénéficiez d'une "
1504
- "assistance premium qui a la priorité sur les forums et même les e-mails. "
1505
- "Vous obtiendraient une solution (en général) dans la journée."
1506
 
1507
- #: dashboard/adrotate-pro.php:60
1508
  msgid "Schedule all campaigns with ease"
1509
  msgstr "Planifier toutes vos campagnes en toute simplicité"
1510
 
1511
- #: dashboard/adrotate-pro.php:63
1512
  msgid ""
1513
- "Schedule your adverts and set up advertising campaigns based on date without "
1514
- "hassle. Seasonal adverts, weekly adverts. You name it. AdRotate schedules it."
 
 
1515
  msgstr ""
1516
- "Planifiez vos publicités et mettez en place des campagnes de publicité "
1517
- "basées sur les dates facilement. Vous pouvez utiliser AdRotate pour "
1518
- "planifier des annonces saisonnières, hebdomadaires ou à la carte. "
1519
 
1520
- #: dashboard/adrotate-pro.php:68
1521
- msgid "Stay up-to-date with the notification system"
1522
- msgstr "Restez à jour avec le système de notification"
1523
 
1524
- #: dashboard/adrotate-pro.php:71
1525
  msgid ""
1526
- "Stay in touch with Email and/or push notifications. Get notified when "
 
 
1527
  "adverts expire, have errors or when advertisers create new adverts. Never "
1528
  "miss an expiration date again."
1529
  msgstr ""
1530
- "Restez en contact avec Email et / ou les notifications push. Recevez des "
1531
- "messages quand les publicités expirent, ont des erreurs ou lorsque les "
1532
- "annonceurs créent de nouvelles annonces. Ne manquez plus jamais une date "
1533
- "d'expiration."
1534
 
1535
  #: dashboard/publisher/adrotate-ads-edit.php:46
1536
  msgid "The AdCode cannot be empty!"
@@ -2515,6 +2499,64 @@ msgstr "Aucun groupe n'a été créé!"
2515
  msgid "Statistics for group"
2516
  msgstr "Statistiques pour le groupe"
2517
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2518
  #~ msgid "Title:"
2519
  #~ msgstr "Titre :"
2520
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-30 02:48+0100\n"
6
+ "PO-Revision-Date: 2015-05-30 02:48+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"
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.8.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:796
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
+ #: adrotate-functions.php:799
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:735
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Oh no! Un problème est survenu!"
31
 
32
+ #: adrotate-output.php:736
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:737
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:738
48
  msgid "Contact support if the issue persists:"
49
  msgstr "Contactez le support si le soucis persiste :"
50
 
51
+ #: adrotate-output.php:756
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:758
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:765 adrotate-output.php:767
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:773
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:779
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:784
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:790
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:790
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:796
103
  msgid "An unknown error occured."
104
  msgstr "Une erreur inconnue s'est produite."
105
 
106
+ #: adrotate-output.php:821
107
  msgid "active ad(s) expired."
108
  msgstr "publicité(s) active(s) ont expirée(s)."
109
 
110
+ #: adrotate-output.php:821
111
  msgid "Take action now"
112
  msgstr "Agir maintenant"
113
 
114
+ #: adrotate-output.php:823
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:823
119
  msgid "Check it out"
120
  msgstr "Vérifier-le"
121
 
122
+ #: adrotate-output.php:825
123
  msgid "active ad(s) with configuration errors."
124
  msgstr "publicité(s) active(s) avec des erreurs de configuration."
125
 
126
+ #: adrotate-output.php:825
127
  msgid "Solve this"
128
  msgstr "Résoudre"
129
 
130
+ #: adrotate-output.php:827
131
  msgid "ad(s) expired."
132
  msgstr "publicité(s) expirée(s)"
133
 
134
+ #: adrotate-output.php:827
135
  msgid "ad(s) are about to expire."
136
  msgstr "publicité(s) sont sur le point d'expirer"
137
 
138
+ #: adrotate-output.php:827
139
  msgid "ad(s) with configuration errors."
140
  msgstr "publicité(s) avec des erreurs de configuration."
141
 
142
+ #: adrotate-output.php:827
143
  msgid "Fix this as soon as possible"
144
  msgstr "Résoudre ce soucis dans les meilleurs délais"
145
 
146
+ #: adrotate-output.php:839
147
  #, fuzzy
148
  msgid "Learn More"
149
  msgstr "En savoir plus"
150
 
151
+ #: adrotate-output.php:840
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:840
158
  msgid "Get more features to even better run your advertising campaigns."
159
  msgstr ""
160
 
161
+ #: adrotate-output.php:840
162
  msgid "Thank you for your consideration!"
163
  msgstr ""
164
 
165
+ #: adrotate-output.php:884
166
  msgid ""
167
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
168
  "this menu. Check out the"
169
  msgstr ""
170
 
171
+ #: adrotate-output.php:884
172
  msgid "manuals"
173
  msgstr "manuels"
174
 
175
+ #: adrotate-output.php:884 adrotate-output.php:960
176
  #: dashboard/publisher/adrotate-ads-edit.php:151
177
  msgid "and"
178
  msgstr ""
179
 
180
+ #: adrotate-output.php:884
181
  msgid "forums"
182
  msgstr ""
183
 
184
+ #: adrotate-output.php:920
185
  msgid "Useful Links"
186
  msgstr ""
187
 
188
+ #: adrotate-output.php:921
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
+ #: adrotate-output.php:923
193
  msgid "AdRotate Page"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:924
197
  msgid "Getting Started With AdRotate"
198
  msgstr ""
199
 
200
+ #: adrotate-output.php:925
201
  msgid "AdRotate manuals"
202
  msgstr ""
203
 
204
+ #: adrotate-output.php:926
205
  msgid "AdRotate Support Forum"
206
  msgstr ""
207
 
208
+ #: adrotate-output.php:952
209
  #, fuzzy
210
  msgid "Help AdRotate Grow"
211
  msgstr "AdRotate Pro"
212
 
213
+ #: adrotate-output.php:953
214
  msgid "Brought to you by"
215
  msgstr "Présenté par"
216
 
217
+ #: adrotate-output.php:960
218
  msgid ""
219
  "A lot of users only think to review AdRotate when something goes wrong while "
220
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
221
  msgstr ""
222
 
223
+ #: adrotate-output.php:960
224
  msgid "If you find AdRotate useful please leave your honest"
225
  msgstr ""
226
 
227
+ #: adrotate-output.php:960
228
  msgid "rating"
229
  msgstr ""
230
 
231
+ #: adrotate-output.php:960
232
  #, fuzzy
233
  msgid "review"
234
  msgstr "En avant-première"
235
 
236
+ #: adrotate-output.php:960
237
  msgid "on WordPress.org to help AdRotate grow in a positive way"
238
  msgstr ""
239
 
240
+ #: adrotate-output.php:963
241
  msgid ""
242
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
243
  "out more about what I can do for you!"
245
  "Votre guichet unique pour le développement Web, le consulting et toutes les "
246
  "façettes de Wordpress! Découvrez plus sur ce que je peux faire pour vous!"
247
 
248
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
249
  msgid "Visit the"
250
  msgstr "Visitez le"
251
 
252
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
253
  msgid "website"
254
  msgstr "site"
255
 
256
+ #: adrotate-output.php:993 dashboard/publisher/adrotate-ads-edit.php:313
257
  msgid "Available in AdRotate Pro"
258
  msgstr "Disponible dans Adrotate Pro"
259
 
260
+ #: adrotate-output.php:993
261
  msgid "More information..."
262
  msgstr "Plus d'informations..."
263
 
264
+ #: adrotate-output.php:994
265
  msgid "This feature is available in AdRotate Pro"
266
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
267
 
268
+ #: adrotate-output.php:994
269
  msgid "Learn more"
270
  msgstr "En savoir plus"
271
 
341
  msgid "Next"
342
  msgstr "Prochain"
343
 
344
+ #: adrotate-statistics.php:284 dashboard/adrotate-info.php:125
345
  msgid "No data to show!"
346
  msgstr "Aucune donnée à montrer!"
347
 
348
+ #: adrotate-widget.php:112
349
  msgid "Title (optional):"
350
  msgstr "Titre (optionel) :"
351
 
352
+ #: adrotate-widget.php:115
353
  msgid "HTML will be stripped out."
354
  msgstr "Le code HTML sera retiré."
355
 
356
+ #: adrotate-widget.php:118
357
  msgid "Description (optional):"
358
  msgstr "Description (optionelle) :"
359
 
360
+ #: adrotate-widget.php:121
361
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
362
  msgstr ""
363
  "Quelle est l'utilisation de ce widget? (Non executé, le code HTML sera "
364
  "dépouillé.)"
365
 
366
+ #: adrotate-widget.php:124
367
  msgid "Type:"
368
  msgstr "Type :"
369
 
370
+ #: adrotate-widget.php:126
371
  msgid "Single Ad - Use Ad ID"
372
  msgstr "Ad Unique - Mettre l'identifiant de la publicité"
373
 
374
+ #: adrotate-widget.php:127
375
  msgid "Group of Ads - Use group ID"
376
  msgstr "Groupe de Pub - Mettre l'identifiant du groupe"
377
 
378
+ #: adrotate-widget.php:130
379
  msgid "Choose what you want to use this widget for"
380
  msgstr "Choisissez le fonction de ce widget"
381
 
382
+ #: adrotate-widget.php:133
383
  msgid "ID:"
384
  msgstr "ID :"
385
 
386
+ #: adrotate-widget.php:136
387
  msgid "Fill in the ID of the type you want to display!"
388
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
389
 
782
  msgid "Role to delete groups."
783
  msgstr "Rôle pour supprimer les groupes."
784
 
785
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:784 adrotate.php:831
786
+ #: adrotate.php:875
787
  msgid "Update Options"
788
  msgstr "Mettre à jour les options"
789
 
950
  "Activez cette option pour supprimer la marge (espace vide) autour des "
951
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
952
 
953
+ #: adrotate.php:758
954
  msgid "NOTICE:"
955
  msgstr ""
956
 
957
+ #: adrotate.php:759
958
  msgid ""
959
  "You have enabled W3 Total Caching support but not defined the security hash. "
960
  "You need to add the following line to your wp-config.php near the bottom or "
966
  "config.php après la ligne 52 (qui définit un autre hash). De plus, la "
967
  "fonction \"late init\" doit être activée dans W3 Total Cache."
968
 
969
+ #: adrotate.php:762
970
  msgid "W3 Total Caching"
971
  msgstr "W3 Total Caching"
972
 
973
+ #: adrotate.php:763
974
  msgid "Check this box if you use W3 Total Caching on your site."
975
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
976
 
977
+ #: adrotate.php:767
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
978
  msgid ""
979
  "It may take a while for the ad to start rotating. The caching plugin needs "
980
  "to refresh the cache. This can take up to a week if not done manually."
984
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
985
  "pas fait manuellement."
986
 
987
+ #: adrotate.php:767
988
  msgid ""
989
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
990
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
993
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
994
  "PHP dans le code d'exclusion vous-même."
995
 
996
+ #: adrotate.php:771
997
  msgid "Javascript"
998
  msgstr ""
999
 
1000
+ #: adrotate.php:774
1001
  msgid "Load jQuery"
1002
  msgstr "Utilisez jQuery"
1003
 
1004
+ #: adrotate.php:775
1005
  msgid ""
1006
  "jQuery is required for all Javascript features below. Enable this if your "
1007
  "theme does not load jQuery already."
1009
  "jQuery est requis pour toutes les fonctions Javascript ci-dessous. Activez-"
1010
  "le si votre thème ne charge pas jQuery directement."
1011
 
1012
+ #: adrotate.php:778
1013
  msgid "Load in footer?"
1014
  msgstr "Chargement dans le pied de page?"
1015
 
1016
+ #: adrotate.php:779
1017
  msgid ""
1018
  "Enable if you want to load the above libraries in the footer. Your theme "
1019
  "needs to call wp_footer() for this to work."
1021
  "Activez cette option si vous voulez charger les bibliothèques dans le pied "
1022
  "de page. Votre thème doit appeler wp_footer() pour que cela fonctionne."
1023
 
1024
+ #: adrotate.php:787
1025
  msgid "Maintenance"
1026
  msgstr "Maintenance"
1027
 
1028
+ #: adrotate.php:788
1029
  msgid ""
1030
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1031
  "They only apply to your ads/groups and stats. Not to other settings or other "
1039
  "votre site! Ces fonctions seront utilisées quand vous sentez que votre base "
1040
  "de données est lente ou ne réponds pas."
1041
 
1042
+ #: adrotate.php:803 adrotate.php:805
1043
  msgid "Optimize Database"
1044
  msgstr "Optimiser la base de données"
1045
 
1046
+ #: adrotate.php:805
1047
  msgid "You are about to optimize the AdRotate database."
1048
  msgstr "Vous allez optimiser la base de données de Adrotate."
1049
 
1050
+ #: adrotate.php:805
1051
  msgid "Did you make a backup of your database?"
1052
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
1053
 
1054
+ #: adrotate.php:805
1055
  msgid ""
1056
  "This may take a moment and may cause your website to respond slow "
1057
  "temporarily!"
1059
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
1060
  "temporaire!"
1061
 
1062
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1063
  #: dashboard/publisher/adrotate-groups-main.php:24
1064
  msgid "OK to continue, CANCEL to stop."
1065
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1066
 
1067
+ #: adrotate.php:806
1068
  msgid "Cleans up overhead data in the AdRotate tables."
1069
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
1070
 
1071
+ #: adrotate.php:807
1072
  msgid ""
1073
  "Overhead data is accumulated garbage resulting from many changes you've "
1074
  "made. This can vary from nothing to hundreds of KiB of data."
1077
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
1078
  "KB de données."
1079
 
1080
+ #: adrotate.php:811 adrotate.php:813
1081
  msgid "Clean-up Database"
1082
  msgstr "Nettoyer la base de données"
1083
 
1084
+ #: adrotate.php:813
1085
  msgid ""
1086
  "You are about to clean up your database. This may delete expired schedules "
1087
  "and older statistics."
1089
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
1090
  "supprimer des calendriers périmés et des vieilles statistiques.."
1091
 
1092
+ #: adrotate.php:813
1093
  msgid "Are you sure you want to continue?"
1094
  msgstr "Etes-vous certains de vouloir continuer?"
1095
 
1096
+ #: adrotate.php:813 adrotate.php:821
1097
  msgid "This might take a while and may slow down your site during this action!"
1098
  msgstr ""
1099
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
1100
  "interval!"
1101
 
1102
+ #: adrotate.php:814
1103
  msgid "Delete stats older than 356 days (Optional)."
1104
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
1105
 
1106
+ #: adrotate.php:815
1107
  msgid ""
1108
  "AdRotate creates empty records when you start making ads or groups. In rare "
1109
  "occasions these records are faulty."
1111
  "AdRotate crée des registres vides lorsque vous commencez à faire des "
1112
  "annonces ou des groupes. Dans de rares cas, ces registres sont défectueux."
1113
 
1114
+ #: adrotate.php:815
1115
  msgid ""
1116
  "If you made an ad or group that does not save when you make it use this "
1117
  "button to delete those empty records."
1120
  "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
1121
  "registres vides."
1122
 
1123
+ #: adrotate.php:815
1124
  msgid ""
1125
  "Additionally you can clean up old statistics. This will improve the speed of "
1126
  "your site."
1128
  "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
1129
  "d'améliorer la vitesse de votre site."
1130
 
1131
+ #: adrotate.php:819
1132
  msgid "Re-evaluate Ads"
1133
  msgstr "Re-évaluer les publicités"
1134
 
1135
+ #: adrotate.php:821
1136
  msgid "Re-evaluate all ads"
1137
  msgstr "Re-évaluer toutes les publicités"
1138
 
1139
+ #: adrotate.php:821
1140
  msgid "You are about to check all ads for errors."
1141
  msgstr "Vous allez véifier l'état de toutes les publicités."
1142
 
1143
+ #: adrotate.php:822
1144
  msgid ""
1145
  "This will apply all evaluation rules to all ads to see if any error slipped "
1146
  "in. Normally you should not need this feature."
1149
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
1150
  "fonctionalité."
1151
 
1152
+ #: adrotate.php:826
1153
  msgid ""
1154
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1155
  "becomes unusable in any way or by any means in whichever way I will not take "
1166
  "probablement déjà au-delà de la réparation. Affirmer que le site "
1167
  "fonctionnait avant de cliquer sur ces boutons n'est pas un argument valable."
1168
 
1169
+ #: adrotate.php:834
1170
  msgid "Troubleshooting"
1171
  msgstr "Diagnostic de dépannage"
1172
 
1173
+ #: adrotate.php:837
1174
  msgid "Current version:"
1175
  msgstr "Version actuelle :"
1176
 
1177
+ #: adrotate.php:838
1178
  msgid "Previous version:"
1179
  msgstr "Version antérieure :"
1180
 
1181
+ #: adrotate.php:841
1182
  msgid "Current database version:"
1183
  msgstr "Version actuelle de la base de données :"
1184
 
1185
+ #: adrotate.php:842
1186
  msgid "Previous database version:"
1187
  msgstr "Version antérieure de la base de données :"
1188
 
1189
+ #: adrotate.php:845
1190
  msgid "Ad evaluation next run:"
1191
  msgstr ""
1192
 
1193
+ #: adrotate.php:846 adrotate.php:850
1194
  msgid "Not scheduled!"
1195
  msgstr "Pas planifié!"
1196
 
1197
+ #: adrotate.php:849
1198
  msgid "Clean Trackerdata next run:"
1199
  msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
1200
 
1201
+ #: adrotate.php:853
1202
  msgid "Current status of adverts"
1203
  msgstr "Etat actuel des publicités"
1204
 
1205
+ #: adrotate.php:854
1206
  msgid "Normal"
1207
  msgstr "Normal"
1208
 
1209
+ #: adrotate.php:854
1210
  msgid "Error"
1211
  msgstr "Erreur"
1212
 
1213
+ #: adrotate.php:854
1214
  msgid "Expired"
1215
  msgstr "Expiré"
1216
 
1217
+ #: adrotate.php:854
1218
  msgid "Expires Soon"
1219
  msgstr "Expire bientôt"
1220
 
1221
+ #: adrotate.php:854
1222
  msgid "Unknown Status"
1223
  msgstr "Statut Inconnu"
1224
 
1225
+ #: adrotate.php:857
1226
  msgid ""
1227
  "NOTE: The below options are not meant for normal use and are only there for "
1228
  "developers to review saved settings or how ads are selected. These can be "
1235
  "peuvent être utilisés comme une mesure de dépannage sur demande, mais pour "
1236
  "une utilisation normale, ils ne doivent pas être activés!"
1237
 
1238
+ #: adrotate.php:861
1239
  msgid "Developer Debug"
1240
  msgstr "Debuggage de développeur"
1241
 
1242
+ #: adrotate.php:863
1243
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1244
  msgstr ""
1245
  "Dépannage des publicités. Si cette option est activée, les données seront "
1246
  "placées sur le site."
1247
 
1248
+ #: adrotate.php:864
1249
  msgid "Show all settings, dashboard routines and related values."
1250
  msgstr ""
1251
  "Afficher tous les paramétres, les widgets du tableau de bord et les valeurs "
1252
  "connexes."
1253
 
1254
+ #: adrotate.php:865
1255
  msgid "Show array of all userroles and capabilities."
1256
  msgstr "Voir les données de tous les rôles d'utilisateurs et leur capacités."
1257
 
1258
+ #: adrotate.php:866
1259
  msgid "Review saved advertisers! Visible to advertisers."
1260
  msgstr "Réexaminer les annonceurs! Visible pour les annonceurs."
1261
 
1262
+ #: adrotate.php:867
1263
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1264
  msgstr ""
1265
  "Voir le suivi des statistiques globales, ainsi que par publicité/groupe. "
1266
  "Visible uniquement aux annonceurs."
1267
 
1268
+ #: adrotate.php:868
1269
  msgid ""
1270
  "Disable timers for clicks and impressions and enable a alert window for "
1271
  "clicktracking."
1273
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
1274
  "fenêtre d'alerte pour le suivi des clicks."
1275
 
1276
+ #: adrotate.php:869
1277
  msgid "Temporarily disable encryption on the redirect url."
1278
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
1279
 
1280
+ #: dashboard/adrotate-info.php:66
1281
  msgid "Currently"
1282
  msgstr "Actuellement"
1283
 
1284
+ #: dashboard/adrotate-info.php:72
1285
  msgid "Your setup"
1286
  msgstr "Votre configuration"
1287
 
1288
+ #: dashboard/adrotate-info.php:73
1289
  msgid "Adverts that need you"
1290
  msgstr "Publicités qui ont besoin de votre attention"
1291
 
1292
+ #: dashboard/adrotate-info.php:79
1293
  msgid "Adverts"
1294
  msgstr "Publicités"
1295
 
1296
+ #: dashboard/adrotate-info.php:80
1297
  msgid "(Almost) Expired"
1298
  msgstr "(presque) expiré"
1299
 
1300
+ #: dashboard/adrotate-info.php:83
1301
  msgid "Groups"
1302
  msgstr "Groupes"
1303
 
1304
+ #: dashboard/adrotate-info.php:84
1305
  msgid "Have errors"
1306
  msgstr "Il y a des erreurs"
1307
 
1308
+ #: dashboard/adrotate-info.php:88
1309
  msgid "Queued"
1310
  msgstr "File d'attente"
1311
 
1312
+ #: dashboard/adrotate-info.php:95
1313
  msgid "The last few days"
1314
  msgstr "Les derniers jours"
1315
 
1316
+ #: dashboard/adrotate-info.php:135
1317
  msgid "Support AdRotate"
1318
  msgstr "Soutenez AdRotate"
1319
 
1320
+ #: dashboard/adrotate-info.php:142
1321
  msgid "Your gift helps ensure the continued development of AdRotate!"
1322
  msgstr ""
1323
 
1324
+ #: dashboard/adrotate-info.php:142
1325
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1326
  msgstr ""
1327
 
1328
+ #: dashboard/adrotate-info.php:151
1329
  msgid "AdRotate News and Developer Blog"
1330
  msgstr "Actus AdRotate et blog du développeur"
1331
 
1332
  #: dashboard/adrotate-info.php:168
1333
+ msgid "Get notified of AdRotate updates via Pushover"
1334
+ msgstr ""
1335
+
1336
+ #: dashboard/adrotate-info.php:175
1337
+ msgid "Pushover is a push notification service for iOS and Android!"
1338
+ msgstr ""
1339
+
1340
+ #: dashboard/adrotate-info.php:188
1341
  msgid "Get more features with AdRotate Pro"
1342
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
1343
 
1344
+ #: dashboard/adrotate-info.php:191
1345
  msgid ""
1346
  "Benefit from extra features to reinforce your income with advertising "
1347
  "campaigns. Make the most of your website with the powerful tools AdRotate "
1352
  "outils puissants qu'AdRotate Pro offre en plus des fonctions incluses dans "
1353
  "la version gratuite."
1354
 
1355
+ #: dashboard/adrotate-info.php:191
1356
  msgid "Want to know more about"
1357
  msgstr ""
1358
 
1359
+ #: dashboard/adrotate-info.php:195 dashboard/adrotate-pro.php:72
1360
  msgid "Buy AdRotate Professional"
1361
  msgstr "Achetez AdRotate Professionel"
1362
 
1363
+ #: dashboard/adrotate-info.php:199
1364
+ msgid "Single License"
1365
+ msgstr ""
1366
 
1367
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-pro.php:76
1368
  msgid "For one WordPress installation."
1369
  msgstr "Pour une installation Wordpress."
1370
 
1371
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-info.php:200
1372
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-info.php:202
1373
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:76
1374
+ #: dashboard/adrotate-pro.php:77 dashboard/adrotate-pro.php:78
1375
+ #: dashboard/adrotate-pro.php:79 dashboard/adrotate-pro.php:80
1376
  msgid "Buy now"
1377
  msgstr ""
1378
 
1379
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1380
  msgid "Duo License"
1381
  msgstr "Licence Duo"
1382
 
1383
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1384
  msgid "For two WordPress installations."
1385
  msgstr "Pour deux installations Wordpress."
1386
 
1387
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1388
  msgid "Multi License"
1389
  msgstr "Licence Multiple"
1390
 
1391
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1392
  msgid " For up to five WordPress installations."
1393
  msgstr "Pour un max de cinq installation Wordpress."
1394
 
1395
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1396
  msgid "Developer License"
1397
  msgstr "Licence de Developpeur"
1398
 
1399
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1400
  msgid "Unlimited WordPress installations and/or networks."
1401
  msgstr ""
1402
 
1403
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1404
  msgid "Network License"
1405
  msgstr "Licence Réseau"
1406
 
1407
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1408
  msgid "Set up your own advertising network on a WordPress Multisite."
1409
  msgstr ""
1410
  "Mettez en place votre propre réseau de publicité sur une installation "
1411
  "Wordpress Multisite."
1412
 
1413
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1414
  msgid "Compare licenses"
1415
  msgstr "Comparer les licences"
1416
 
1417
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1418
  msgid "Not sure which license is for you? Compare them..."
1419
  msgstr ""
1420
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
1421
 
1422
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1423
  msgid "All Licenses"
1424
  msgstr "Toutes les licences"
1425
 
1426
+ #: dashboard/adrotate-info.php:208 dashboard/adrotate-pro.php:41
1427
  msgid "AdRotate is brought to you by"
1428
  msgstr "AdRotate est offert par"
1429
 
1430
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1431
  msgid ""
1432
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1433
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1438
  "personnalisation de thème ou pour la migration de votre site entier, visitez "
1439
  "mon site pour tous les détails!"
1440
 
1441
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1442
  msgid "Find out more"
1443
  msgstr "En savoir plus"
1444
 
1445
+ #: dashboard/adrotate-info.php:214
1446
  msgid "Follow"
1447
  msgstr "Suivre"
1448
 
1463
  "votre personel. Les annonceurs ont accès à leur propre petit tableau de bord "
1464
  "où ils peuvent voir les performances de leur publicités."
1465
 
1466
+ #: dashboard/adrotate-pro.php:27
1467
  msgid "Localize your ad campaigns with Geo Targeting"
1468
  msgstr "Localiser vos campagnes publicitaires avec le ciblage géographique"
1469
 
1470
+ #: dashboard/adrotate-pro.php:30
 
1471
  msgid ""
1472
  "Go nationwide or global with localized adverts for your various audiences. "
1473
  "Set up adverts for countries and cities and sell impressions per general "
1474
+ "area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
1475
+ "Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
1476
  msgstr ""
 
 
 
 
1477
 
1478
+ #: dashboard/adrotate-pro.php:34
1479
  msgid "Get Premium Support almost all year round"
1480
  msgstr "Obtenez du soutien Premium pendant toute l'année"
1481
 
1482
+ #: dashboard/adrotate-pro.php:37
1483
  msgid ""
1484
+ "When you activate your AdRotate Pro license you can use fast and personal "
1485
+ "email support. No more queueing up in the forums. AdRotate premium support "
1486
+ "takes priority over the forums and is checked much more often than the "
1487
+ "forum. Get a solution (usually) within a day."
1488
  msgstr ""
 
 
 
1489
 
1490
+ #: dashboard/adrotate-pro.php:58
1491
  msgid "Schedule all campaigns with ease"
1492
  msgstr "Planifier toutes vos campagnes en toute simplicité"
1493
 
1494
+ #: dashboard/adrotate-pro.php:61
1495
  msgid ""
1496
+ "Schedule your adverts and set up advertising campaigns based on dates you or "
1497
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
1498
+ "You name it, AdRotate schedules it. This makes planning your revenue stream "
1499
+ "much more easy. You can set one or many schedules for adverts."
1500
  msgstr ""
 
 
 
1501
 
1502
+ #: dashboard/adrotate-pro.php:65
1503
+ msgid "Stay up-to-date with notifications"
1504
+ msgstr ""
1505
 
1506
+ #: dashboard/adrotate-pro.php:68
1507
  msgid ""
1508
+ "Stay in touch with Email notifications. Have AdRotate send you an alert when "
1509
+ "adverts expire or need your attention. Additionally, you can have AdRotate "
1510
+ "send push notifications to your iOS or Android smartphone. Get notified when "
1511
  "adverts expire, have errors or when advertisers create new adverts. Never "
1512
  "miss an expiration date again."
1513
  msgstr ""
1514
+
1515
+ #: dashboard/adrotate-pro.php:76
1516
+ msgid "Singe License"
1517
+ msgstr "Licence Unique"
1518
 
1519
  #: dashboard/publisher/adrotate-ads-edit.php:46
1520
  msgid "The AdCode cannot be empty!"
2499
  msgid "Statistics for group"
2500
  msgstr "Statistiques pour le groupe"
2501
 
2502
+ #~ msgid ""
2503
+ #~ "You have enabled WP Super Cache support. If you have version 1.4 or "
2504
+ #~ "newer, this function will not work. WP Super Cache has discontinued "
2505
+ #~ "support for dynamic content."
2506
+ #~ msgstr ""
2507
+ #~ "Vous avez activé le support de WP Super Cache. Si vous avez la version "
2508
+ #~ "1.4 ou plus récent, cette fonction ne marchera pas. WP Super Cache a "
2509
+ #~ "arrêté le support pour le contenu dynamique."
2510
+
2511
+ #~ msgid "WP Super Cache"
2512
+ #~ msgstr "WP Super Cache"
2513
+
2514
+ #~ msgid "Check this box if you use WP Super Cache on your site."
2515
+ #~ msgstr "Cochez cette option si vous utilisez WP Super Cache sur votre site."
2516
+
2517
+ #, fuzzy
2518
+ #~ msgid ""
2519
+ #~ "Go nationwide or global with localized adverts for your various "
2520
+ #~ "audiences. Set up adverts for countries and cities and sell impressions "
2521
+ #~ "per general area. Connect your site to MaxMinds GeoIP2: Precision, "
2522
+ #~ "FreegeoIP (MaxMind GeoLITE) or GeoBytes GeoSelect services."
2523
+ #~ msgstr ""
2524
+ #~ "Allez à l'échelle nationale ou mondiale avec les publicités localisées "
2525
+ #~ "pour votre audience. Mettez en place des publicités par pays et villes et "
2526
+ #~ "vendez des impressions par zone géographique. Celle-ci sont fournies par "
2527
+ #~ "FreegeoIP (MaxMind) et GeoSelect."
2528
+
2529
+ #~ msgid ""
2530
+ #~ "When you activate your AdRotate Pro license you are entitled to ticket "
2531
+ #~ "support. AdRotate premium support which takes priority over the Forums "
2532
+ #~ "and even email. Get a solution (usually) within a day."
2533
+ #~ msgstr ""
2534
+ #~ "Lorsque vous activez votre licence AdRotate Pro vous bénéficiez d'une "
2535
+ #~ "assistance premium qui a la priorité sur les forums et même les e-mails. "
2536
+ #~ "Vous obtiendraient une solution (en général) dans la journée."
2537
+
2538
+ #~ msgid ""
2539
+ #~ "Schedule your adverts and set up advertising campaigns based on date "
2540
+ #~ "without hassle. Seasonal adverts, weekly adverts. You name it. AdRotate "
2541
+ #~ "schedules it."
2542
+ #~ msgstr ""
2543
+ #~ "Planifiez vos publicités et mettez en place des campagnes de publicité "
2544
+ #~ "basées sur les dates facilement. Vous pouvez utiliser AdRotate pour "
2545
+ #~ "planifier des annonces saisonnières, hebdomadaires ou à la carte. "
2546
+
2547
+ #~ msgid "Stay up-to-date with the notification system"
2548
+ #~ msgstr "Restez à jour avec le système de notification"
2549
+
2550
+ #~ msgid ""
2551
+ #~ "Stay in touch with Email and/or push notifications. Get notified when "
2552
+ #~ "adverts expire, have errors or when advertisers create new adverts. Never "
2553
+ #~ "miss an expiration date again."
2554
+ #~ msgstr ""
2555
+ #~ "Restez en contact avec Email et / ou les notifications push. Recevez des "
2556
+ #~ "messages quand les publicités expirent, ont des erreurs ou lorsque les "
2557
+ #~ "annonceurs créent de nouvelles annonces. Ne manquez plus jamais une date "
2558
+ #~ "d'expiration."
2559
+
2560
  #~ msgid "Title:"
2561
  #~ msgstr "Titre :"
2562
 
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-05-15 01:46+0100\n"
6
- "PO-Revision-Date: 2015-05-15 01:46+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.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:801
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
- #: adrotate-functions.php:804
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
- #: adrotate-output.php:737
28
  msgid "Oh no! Something went wrong!"
29
  msgstr ""
30
 
31
- #: adrotate-output.php:738
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:739
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:740
49
  #, fuzzy
50
  msgid "Contact support if the issue persists:"
51
  msgstr ""
52
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
53
  "さい。"
54
 
55
- #: adrotate-output.php:758
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:760
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:767 adrotate-output.php:769
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:775
78
  #, fuzzy
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr "広告 - 広告IDを使ってください。"
81
 
82
- #: adrotate-output.php:781
83
  #, fuzzy
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "広告グループ - グループIDを使ってください。"
86
 
87
- #: adrotate-output.php:786
88
  #, fuzzy
89
  msgid "Error, group does not exist! Check your syntax!"
90
  msgstr ""
91
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
92
  "クスをオンにします。"
93
 
94
- #: adrotate-output.php:792
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,160 +99,160 @@ msgstr ""
99
  "AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
100
  "して、再登録して下さい。"
101
 
102
- #: adrotate-output.php:792
103
  msgid "If this does not solve the issue please seek support at"
104
  msgstr ""
105
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
106
  "さい。"
107
 
108
- #: adrotate-output.php:798
109
  msgid "An unknown error occured."
110
  msgstr "理解できないエラーが起こっています。"
111
 
112
- #: adrotate-output.php:823
113
  msgid "active ad(s) expired."
114
  msgstr "個の広告が期限切れです。"
115
 
116
- #: adrotate-output.php:823
117
  msgid "Take action now"
118
  msgstr "継続する場合は対応して下さい。"
119
 
120
- #: adrotate-output.php:825
121
  msgid "active ad(s) are about to expire."
122
  msgstr "個の広告がまもなく期限切れです。"
123
 
124
- #: adrotate-output.php:825
125
  msgid "Check it out"
126
  msgstr "チェックして下さい。"
127
 
128
- #: adrotate-output.php:827
129
  msgid "active ad(s) with configuration errors."
130
  msgstr "個の広告が設定エラーになっています。"
131
 
132
- #: adrotate-output.php:827
133
  msgid "Solve this"
134
  msgstr "これを解決して下さい。"
135
 
136
- #: adrotate-output.php:829
137
  msgid "ad(s) expired."
138
  msgstr "個の広告が期限切れです。"
139
 
140
- #: adrotate-output.php:829
141
  msgid "ad(s) are about to expire."
142
  msgstr "個の広告がまもなく期限切れです。"
143
 
144
- #: adrotate-output.php:829
145
  msgid "ad(s) with configuration errors."
146
  msgstr "個の広告が設定エラーになっています。"
147
 
148
- #: adrotate-output.php:829
149
  msgid "Fix this as soon as possible"
150
  msgstr "これは出来る限り早く修正して下さい。"
151
 
152
- #: adrotate-output.php:841
153
  #, fuzzy
154
  msgid "Learn More"
155
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
156
 
157
- #: adrotate-output.php:842
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:842
164
  msgid "Get more features to even better run your advertising campaigns."
165
  msgstr ""
166
 
167
- #: adrotate-output.php:842
168
  #, fuzzy
169
  msgid "Thank you for your consideration!"
170
  msgstr "データベースのバックアップを取りましたか?"
171
 
172
- #: adrotate-output.php:886
173
  msgid ""
174
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
175
  "this menu. Check out the"
176
  msgstr ""
177
 
178
- #: adrotate-output.php:886
179
  msgid "manuals"
180
  msgstr "マニュアル(英語サイト)"
181
 
182
- #: adrotate-output.php:886 adrotate-output.php:962
183
  #: dashboard/publisher/adrotate-ads-edit.php:151
184
  msgid "and"
185
  msgstr ""
186
 
187
- #: adrotate-output.php:886
188
  #, fuzzy
189
  msgid "forums"
190
  msgstr "フォーラム"
191
 
192
- #: adrotate-output.php:922
193
  #, fuzzy
194
  msgid "Useful Links"
195
  msgstr "役に立つ情報"
196
 
197
- #: adrotate-output.php:923
198
  msgid "Useful links to learn more about AdRotate"
199
  msgstr ""
200
 
201
- #: adrotate-output.php:925
202
  #, fuzzy
203
  msgid "AdRotate Page"
204
  msgstr "AdRotate Blog"
205
 
206
- #: adrotate-output.php:926
207
  #, fuzzy
208
  msgid "Getting Started With AdRotate"
209
  msgstr ""
210
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
211
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
212
 
213
- #: adrotate-output.php:927
214
  #, fuzzy
215
  msgid "AdRotate manuals"
216
  msgstr "AdRotate Blog"
217
 
218
- #: adrotate-output.php:928
219
  #, fuzzy
220
  msgid "AdRotate Support Forum"
221
  msgstr "AdRotate Blog"
222
 
223
- #: adrotate-output.php:954
224
  #, fuzzy
225
  msgid "Help AdRotate Grow"
226
  msgstr "AdRotate Blog"
227
 
228
- #: adrotate-output.php:955
229
  msgid "Brought to you by"
230
  msgstr "サービス紹介"
231
 
232
- #: adrotate-output.php:962
233
  msgid ""
234
  "A lot of users only think to review AdRotate when something goes wrong while "
235
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
236
  msgstr ""
237
 
238
- #: adrotate-output.php:962
239
  msgid "If you find AdRotate useful please leave your honest"
240
  msgstr ""
241
 
242
- #: adrotate-output.php:962
243
  msgid "rating"
244
  msgstr ""
245
 
246
- #: adrotate-output.php:962
247
  #, fuzzy
248
  msgid "review"
249
  msgstr "全般レポートを見れる権限"
250
 
251
- #: adrotate-output.php:962
252
  msgid "on WordPress.org to help AdRotate grow in a positive way"
253
  msgstr ""
254
 
255
- #: adrotate-output.php:965
256
  #, fuzzy
257
  msgid ""
258
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
@@ -262,7 +262,7 @@ msgstr ""
262
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
263
  "さい。英語ですが。"
264
 
265
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
266
  #, fuzzy
267
  msgid "Visit the"
268
  msgstr ""
@@ -270,27 +270,27 @@ msgstr ""
270
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
271
  "さい。英語ですが。"
272
 
273
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
274
  #, fuzzy
275
  msgid "website"
276
  msgstr "開発者のWEBサイトは以下です。"
277
 
278
- #: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
279
  #, fuzzy
280
  msgid "Available in AdRotate Pro"
281
  msgstr "AdRotate Blog"
282
 
283
- #: adrotate-output.php:995
284
  #, fuzzy
285
  msgid "More information..."
286
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
287
 
288
- #: adrotate-output.php:996
289
  #, fuzzy
290
  msgid "This feature is available in AdRotate Pro"
291
  msgstr "この機能は使いません。"
292
 
293
- #: adrotate-output.php:996
294
  #, fuzzy
295
  msgid "Learn more"
296
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
@@ -368,50 +368,50 @@ msgstr ""
368
  msgid "Next"
369
  msgstr ""
370
 
371
- #: adrotate-statistics.php:284 dashboard/adrotate-info.php:123
372
  msgid "No data to show!"
373
  msgstr "表示できるデータがありません。"
374
 
375
- #: adrotate-widget.php:116
376
  msgid "Title (optional):"
377
  msgstr "タイトル(オプション):"
378
 
379
- #: adrotate-widget.php:119
380
  msgid "HTML will be stripped out."
381
  msgstr "HTMLタグは取り除かれます。"
382
 
383
- #: adrotate-widget.php:122
384
  #, fuzzy
385
  msgid "Description (optional):"
386
  msgstr "タイトル(オプション):"
387
 
388
- #: adrotate-widget.php:125
389
  #, fuzzy
390
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
391
  msgstr "HTMLタグは取り除かれます。"
392
 
393
- #: adrotate-widget.php:128
394
  msgid "Type:"
395
  msgstr "タイプ:"
396
 
397
- #: adrotate-widget.php:130
398
  msgid "Single Ad - Use Ad ID"
399
  msgstr "広告 - 広告IDを使ってください。"
400
 
401
- #: adrotate-widget.php:131
402
  msgid "Group of Ads - Use group ID"
403
  msgstr "広告グループ - グループIDを使ってください。"
404
 
405
- #: adrotate-widget.php:134
406
  msgid "Choose what you want to use this widget for"
407
  msgstr "このウィジェットに使いたい物を選んで下さい。"
408
 
409
- #: adrotate-widget.php:137
410
  #, fuzzy
411
  msgid "ID:"
412
  msgstr "広告ブロック - ブロックIDを使ってください。"
413
 
414
- #: adrotate-widget.php:140
415
  msgid "Fill in the ID of the type you want to display!"
416
  msgstr "表示したいタイプのIDを入力してください!"
417
 
@@ -813,8 +813,8 @@ msgstr "グループの削除"
813
  msgid "Role to delete groups."
814
  msgstr "グループを削除できる権限"
815
 
816
- #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
817
- #: adrotate.php:890
818
  msgid "Update Options"
819
  msgstr "設定の更新"
820
 
@@ -993,11 +993,11 @@ msgstr ""
993
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
994
  "クスをオンにします。"
995
 
996
- #: adrotate.php:760 adrotate.php:771
997
  msgid "NOTICE:"
998
  msgstr ""
999
 
1000
- #: adrotate.php:761
1001
  msgid ""
1002
  "You have enabled W3 Total Caching support but not defined the security hash. "
1003
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -1005,36 +1005,18 @@ msgid ""
1005
  "needs to be enabled in W3 Total Cache as well too."
1006
  msgstr ""
1007
 
1008
- #: adrotate.php:765
1009
  msgid "W3 Total Caching"
1010
  msgstr ""
1011
 
1012
- #: adrotate.php:766
1013
  #, fuzzy
1014
  msgid "Check this box if you use W3 Total Caching on your site."
1015
  msgstr ""
1016
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
1017
  "クスをオンにします。"
1018
 
1019
- #: adrotate.php:772
1020
- msgid ""
1021
- "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
1022
- "this function will not work. WP Super Cache has discontinued support for "
1023
- "dynamic content."
1024
- msgstr ""
1025
-
1026
- #: adrotate.php:776
1027
- msgid "WP Super Cache"
1028
- msgstr ""
1029
-
1030
- #: adrotate.php:777
1031
- #, fuzzy
1032
- msgid "Check this box if you use WP Super Cache on your site."
1033
- msgstr ""
1034
- "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
1035
- "クスをオンにします。"
1036
-
1037
- #: adrotate.php:782
1038
  #, fuzzy
1039
  msgid ""
1040
  "It may take a while for the ad to start rotating. The caching plugin needs "
@@ -1043,33 +1025,33 @@ msgstr ""
1043
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1044
  "可能性があります。"
1045
 
1046
- #: adrotate.php:782
1047
  #, fuzzy
1048
  msgid ""
1049
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1050
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1051
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1052
 
1053
- #: adrotate.php:786
1054
  msgid "Javascript"
1055
  msgstr ""
1056
 
1057
- #: adrotate.php:789
1058
  msgid "Load jQuery"
1059
  msgstr ""
1060
 
1061
- #: adrotate.php:790
1062
  #, fuzzy
1063
  msgid ""
1064
  "jQuery is required for all Javascript features below. Enable this if your "
1065
  "theme does not load jQuery already."
1066
  msgstr "テキストリンク(クリック数調査付):"
1067
 
1068
- #: adrotate.php:793
1069
  msgid "Load in footer?"
1070
  msgstr ""
1071
 
1072
- #: adrotate.php:794
1073
  #, fuzzy
1074
  msgid ""
1075
  "Enable if you want to load the above libraries in the footer. Your theme "
@@ -1079,11 +1061,11 @@ msgstr ""
1079
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
1080
  "さい。英語ですが。"
1081
 
1082
- #: adrotate.php:802
1083
  msgid "Maintenance"
1084
  msgstr "メンテナンス"
1085
 
1086
- #: adrotate.php:803
1087
  #, fuzzy
1088
  msgid ""
1089
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
@@ -1093,19 +1075,19 @@ msgid ""
1093
  "sluggish."
1094
  msgstr "データベースのバックアップを取りましたか?"
1095
 
1096
- #: adrotate.php:818 adrotate.php:820
1097
  msgid "Optimize Database"
1098
  msgstr "データベースの最適化"
1099
 
1100
- #: adrotate.php:820
1101
  msgid "You are about to optimize the AdRotate database."
1102
  msgstr "AdRotateのデータベースの最適化を行います。"
1103
 
1104
- #: adrotate.php:820
1105
  msgid "Did you make a backup of your database?"
1106
  msgstr "データベースのバックアップを取りましたか?"
1107
 
1108
- #: adrotate.php:820
1109
  msgid ""
1110
  "This may take a moment and may cause your website to respond slow "
1111
  "temporarily!"
@@ -1113,91 +1095,91 @@ msgstr ""
1113
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1114
  "可能性があります。"
1115
 
1116
- #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1117
  #: dashboard/publisher/adrotate-groups-main.php:24
1118
  msgid "OK to continue, CANCEL to stop."
1119
  msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
1120
 
1121
- #: adrotate.php:821
1122
  msgid "Cleans up overhead data in the AdRotate tables."
1123
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
1124
 
1125
- #: adrotate.php:822
1126
  #, fuzzy
1127
  msgid ""
1128
  "Overhead data is accumulated garbage resulting from many changes you've "
1129
  "made. This can vary from nothing to hundreds of KiB of data."
1130
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
1131
 
1132
- #: adrotate.php:826 adrotate.php:828
1133
  msgid "Clean-up Database"
1134
  msgstr "データベースのクリーンアップ"
1135
 
1136
- #: adrotate.php:828
1137
  #, fuzzy
1138
  msgid ""
1139
  "You are about to clean up your database. This may delete expired schedules "
1140
  "and older statistics."
1141
  msgstr "データベースのクリーンアップ"
1142
 
1143
- #: adrotate.php:828
1144
  #, fuzzy
1145
  msgid "Are you sure you want to continue?"
1146
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1147
 
1148
- #: adrotate.php:828 adrotate.php:836
1149
  #, fuzzy
1150
  msgid "This might take a while and may slow down your site during this action!"
1151
  msgstr ""
1152
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1153
  "可能性があります。"
1154
 
1155
- #: adrotate.php:829
1156
  #, fuzzy
1157
  msgid "Delete stats older than 356 days (Optional)."
1158
  msgstr "広告の削除やリセットする権限"
1159
 
1160
- #: adrotate.php:830
1161
  #, fuzzy
1162
  msgid ""
1163
  "AdRotate creates empty records when you start making ads or groups. In rare "
1164
  "occasions these records are faulty."
1165
  msgstr "空のデータベースは削除されました。"
1166
 
1167
- #: adrotate.php:830
1168
  #, fuzzy
1169
  msgid ""
1170
  "If you made an ad or group that does not save when you make it use this "
1171
  "button to delete those empty records."
1172
  msgstr "グループを削除しようとしています。"
1173
 
1174
- #: adrotate.php:830
1175
  #, fuzzy
1176
  msgid ""
1177
  "Additionally you can clean up old statistics. This will improve the speed of "
1178
  "your site."
1179
  msgstr "データベースのクリーンアップ"
1180
 
1181
- #: adrotate.php:834
1182
  msgid "Re-evaluate Ads"
1183
  msgstr "広告の再評価"
1184
 
1185
- #: adrotate.php:836
1186
  msgid "Re-evaluate all ads"
1187
  msgstr "すべての広告の再評価"
1188
 
1189
- #: adrotate.php:836
1190
  msgid "You are about to check all ads for errors."
1191
  msgstr "すべての広告のエラーをチェックしようとしています。"
1192
 
1193
- #: adrotate.php:837
1194
  #, fuzzy
1195
  msgid ""
1196
  "This will apply all evaluation rules to all ads to see if any error slipped "
1197
  "in. Normally you should not need this feature."
1198
  msgstr "すべての広告のエラーをチェックしようとしています。"
1199
 
1200
- #: adrotate.php:841
1201
  #, fuzzy
1202
  msgid ""
1203
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
@@ -1208,76 +1190,76 @@ msgid ""
1208
  "clicking these buttons is not a valid point in any case."
1209
  msgstr "データベースのバックアップを取りましたか?"
1210
 
1211
- #: adrotate.php:849
1212
  msgid "Troubleshooting"
1213
  msgstr "トラブルシューティング(トラブル対応)"
1214
 
1215
- #: adrotate.php:852
1216
  #, fuzzy
1217
  msgid "Current version:"
1218
  msgstr "現在のスケジュール"
1219
 
1220
- #: adrotate.php:853
1221
  #, fuzzy
1222
  msgid "Previous version:"
1223
  msgstr "プレビュー"
1224
 
1225
- #: adrotate.php:856
1226
  #, fuzzy
1227
  msgid "Current database version:"
1228
  msgstr "現在のスケジュール"
1229
 
1230
- #: adrotate.php:857
1231
  #, fuzzy
1232
  msgid "Previous database version:"
1233
  msgstr "データベースの最適化"
1234
 
1235
- #: adrotate.php:860
1236
  #, fuzzy
1237
  msgid "Ad evaluation next run:"
1238
  msgstr "通知先"
1239
 
1240
- #: adrotate.php:861 adrotate.php:865
1241
  #, fuzzy
1242
  msgid "Not scheduled!"
1243
  msgstr "掲載期間"
1244
 
1245
- #: adrotate.php:864
1246
  #, fuzzy
1247
  msgid "Clean Trackerdata next run:"
1248
  msgstr "データベースのクリーンアップ"
1249
 
1250
- #: adrotate.php:868
1251
  #, fuzzy
1252
  msgid "Current status of adverts"
1253
  msgstr "現在のスケジュール"
1254
 
1255
- #: adrotate.php:869
1256
  #, fuzzy
1257
  msgid "Normal"
1258
  msgstr "平均的表示(50%程度)"
1259
 
1260
- #: adrotate.php:869
1261
  #, fuzzy
1262
  msgid "Error"
1263
  msgstr "理解できないエラーが起こっています。"
1264
 
1265
- #: adrotate.php:869
1266
  #, fuzzy
1267
  msgid "Expired"
1268
  msgstr "個の広告が期限切れです。"
1269
 
1270
- #: adrotate.php:869
1271
  #, fuzzy
1272
  msgid "Expires Soon"
1273
  msgstr "これは出来る限り早く修正して下さい。"
1274
 
1275
- #: adrotate.php:869
1276
  #, fuzzy
1277
  msgid "Unknown Status"
1278
  msgstr "理解できないエラーが起こっています。"
1279
 
1280
- #: adrotate.php:872
1281
  msgid ""
1282
  "NOTE: The below options are not meant for normal use and are only there for "
1283
  "developers to review saved settings or how ads are selected. These can be "
@@ -1287,62 +1269,62 @@ msgstr ""
1287
  "注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
1288
  "用しないで下さい。基本的にチェックを入れない!"
1289
 
1290
- #: adrotate.php:876
1291
  msgid "Developer Debug"
1292
  msgstr "開発者向けデバッグ"
1293
 
1294
- #: adrotate.php:878
1295
  #, fuzzy
1296
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1297
  msgstr ""
1298
  "注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
1299
  "用しないで下さい。基本的にチェックを入れない!"
1300
 
1301
- #: adrotate.php:879
1302
  #, fuzzy
1303
  msgid "Show all settings, dashboard routines and related values."
1304
  msgstr "設定"
1305
 
1306
- #: adrotate.php:880
1307
  #, fuzzy
1308
  msgid "Show array of all userroles and capabilities."
1309
  msgstr "表示できるデータがありません。"
1310
 
1311
- #: adrotate.php:881
1312
  #, fuzzy
1313
  msgid "Review saved advertisers! Visible to advertisers."
1314
  msgstr "広告主から提出された広告を承認する権限"
1315
 
1316
- #: adrotate.php:882
1317
  #, fuzzy
1318
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1319
  msgstr "統計リセット"
1320
 
1321
- #: adrotate.php:883
1322
  #, fuzzy
1323
  msgid ""
1324
  "Disable timers for clicks and impressions and enable a alert window for "
1325
  "clicktracking."
1326
  msgstr "テキストリンク(クリック数調査付):"
1327
 
1328
- #: adrotate.php:884
1329
  #, fuzzy
1330
  msgid "Temporarily disable encryption on the redirect url."
1331
  msgstr ""
1332
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1333
  "可能性があります。"
1334
 
1335
- #: dashboard/adrotate-info.php:65
1336
  #, fuzzy
1337
  msgid "Currently"
1338
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
1339
 
1340
- #: dashboard/adrotate-info.php:71
1341
  #, fuzzy
1342
  msgid "Your setup"
1343
  msgstr "データベースのバックアップを取りましたか?"
1344
 
1345
- #: dashboard/adrotate-info.php:72
1346
  #, fuzzy
1347
  msgid "Adverts that need you"
1348
  msgstr ""
@@ -1350,144 +1332,152 @@ msgstr ""
1350
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
1351
  "さい。英語ですが。"
1352
 
1353
- #: dashboard/adrotate-info.php:78
1354
  #, fuzzy
1355
  msgid "Adverts"
1356
  msgstr "新しい広告の承認"
1357
 
1358
- #: dashboard/adrotate-info.php:79
1359
  #, fuzzy
1360
  msgid "(Almost) Expired"
1361
  msgstr "個の広告が期限切れです。"
1362
 
1363
- #: dashboard/adrotate-info.php:82
1364
  msgid "Groups"
1365
  msgstr "グループ"
1366
 
1367
- #: dashboard/adrotate-info.php:83
1368
  #, fuzzy
1369
  msgid "Have errors"
1370
  msgstr "個の広告が設定エラーになっています。"
1371
 
1372
- #: dashboard/adrotate-info.php:87
1373
  msgid "Queued"
1374
  msgstr ""
1375
 
1376
- #: dashboard/adrotate-info.php:93
1377
  #, fuzzy
1378
  msgid "The last few days"
1379
  msgstr "6ヶ月(180日)"
1380
 
1381
- #: dashboard/adrotate-info.php:132
1382
  #, fuzzy
1383
  msgid "Support AdRotate"
1384
  msgstr "AdRotate Blog"
1385
 
1386
- #: dashboard/adrotate-info.php:139
1387
  msgid "Your gift helps ensure the continued development of AdRotate!"
1388
  msgstr ""
1389
 
1390
- #: dashboard/adrotate-info.php:139
1391
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1392
  msgstr ""
1393
 
1394
- #: dashboard/adrotate-info.php:148
1395
  #, fuzzy
1396
  msgid "AdRotate News and Developer Blog"
1397
  msgstr "AdRotate Blog"
1398
 
1399
  #: dashboard/adrotate-info.php:168
 
 
 
 
 
 
 
 
1400
  #, fuzzy
1401
  msgid "Get more features with AdRotate Pro"
1402
  msgstr ""
1403
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1404
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1405
 
1406
- #: dashboard/adrotate-info.php:171
1407
  msgid ""
1408
  "Benefit from extra features to reinforce your income with advertising "
1409
  "campaigns. Make the most of your website with the powerful tools AdRotate "
1410
  "Pro offers on top of the trusted features included in the free version."
1411
  msgstr ""
1412
 
1413
- #: dashboard/adrotate-info.php:171
1414
  msgid "Want to know more about"
1415
  msgstr ""
1416
 
1417
- #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1418
  #, fuzzy
1419
  msgid "Buy AdRotate Professional"
1420
  msgstr "AdRotate Blog"
1421
 
1422
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1423
- msgid "Singe License"
1424
  msgstr ""
1425
 
1426
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1427
  msgid "For one WordPress installation."
1428
  msgstr ""
1429
 
1430
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1431
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1432
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1433
- #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1434
- #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1435
  #, fuzzy
1436
  msgid "Buy now"
1437
  msgstr "継続する場合は対応して下さい。"
1438
 
1439
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1440
  msgid "Duo License"
1441
  msgstr ""
1442
 
1443
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1444
  msgid "For two WordPress installations."
1445
  msgstr ""
1446
 
1447
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1448
  msgid "Multi License"
1449
  msgstr ""
1450
 
1451
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1452
  msgid " For up to five WordPress installations."
1453
  msgstr ""
1454
 
1455
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1456
  #, fuzzy
1457
  msgid "Developer License"
1458
  msgstr "開発者向けデバッグ"
1459
 
1460
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1461
  msgid "Unlimited WordPress installations and/or networks."
1462
  msgstr ""
1463
 
1464
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1465
  msgid "Network License"
1466
  msgstr ""
1467
 
1468
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1469
  msgid "Set up your own advertising network on a WordPress Multisite."
1470
  msgstr ""
1471
 
1472
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1473
  msgid "Compare licenses"
1474
  msgstr ""
1475
 
1476
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1477
  msgid "Not sure which license is for you? Compare them..."
1478
  msgstr ""
1479
 
1480
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1481
  #, fuzzy
1482
  msgid "All Licenses"
1483
  msgstr "すべての広告の再評価"
1484
 
1485
- #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
1486
  #, fuzzy
1487
  msgid "AdRotate is brought to you by"
1488
  msgstr "サービス紹介"
1489
 
1490
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1491
  msgid ""
1492
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1493
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1497,12 +1487,12 @@ msgstr ""
1497
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
1498
  "さい。英語ですが。"
1499
 
1500
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1501
  #, fuzzy
1502
  msgid "Find out more"
1503
  msgstr "以下のURLをチェック下さい。"
1504
 
1505
- #: dashboard/adrotate-info.php:194
1506
  msgid "Follow"
1507
  msgstr ""
1508
 
@@ -1519,51 +1509,59 @@ msgid ""
1519
  "can see their adverts performance."
1520
  msgstr ""
1521
 
1522
- #: dashboard/adrotate-pro.php:28
1523
  msgid "Localize your ad campaigns with Geo Targeting"
1524
  msgstr ""
1525
 
1526
- #: dashboard/adrotate-pro.php:31
1527
  msgid ""
1528
  "Go nationwide or global with localized adverts for your various audiences. "
1529
  "Set up adverts for countries and cities and sell impressions per general "
1530
- "area. Connect your site to MaxMinds GeoIP2: Precision, FreegeoIP (MaxMind "
1531
- "GeoLITE) or GeoBytes GeoSelect services."
1532
  msgstr ""
1533
 
1534
- #: dashboard/adrotate-pro.php:36
1535
  msgid "Get Premium Support almost all year round"
1536
  msgstr ""
1537
 
1538
- #: dashboard/adrotate-pro.php:39
1539
  msgid ""
1540
- "When you activate your AdRotate Pro license you are entitled to ticket "
1541
- "support. AdRotate premium support which takes priority over the Forums and "
1542
- "even email. Get a solution (usually) within a day."
 
1543
  msgstr ""
1544
 
1545
- #: dashboard/adrotate-pro.php:60
1546
  msgid "Schedule all campaigns with ease"
1547
  msgstr ""
1548
 
1549
- #: dashboard/adrotate-pro.php:63
1550
  msgid ""
1551
- "Schedule your adverts and set up advertising campaigns based on date without "
1552
- "hassle. Seasonal adverts, weekly adverts. You name it. AdRotate schedules it."
 
 
1553
  msgstr ""
1554
 
1555
- #: dashboard/adrotate-pro.php:68
1556
- #, fuzzy
1557
- msgid "Stay up-to-date with the notification system"
1558
- msgstr "すぐに注意を必要とする広告"
1559
 
1560
- #: dashboard/adrotate-pro.php:71
1561
  msgid ""
1562
- "Stay in touch with Email and/or push notifications. Get notified when "
 
 
1563
  "adverts expire, have errors or when advertisers create new adverts. Never "
1564
  "miss an expiration date again."
1565
  msgstr ""
1566
 
 
 
 
 
1567
  #: dashboard/publisher/adrotate-ads-edit.php:46
1568
  msgid "The AdCode cannot be empty!"
1569
  msgstr "AdCodeを空にすることはできません!"
@@ -2590,6 +2588,16 @@ msgstr "グループがまだ作られていません。"
2590
  msgid "Statistics for group"
2591
  msgstr "統計 "
2592
 
 
 
 
 
 
 
 
 
 
 
2593
  #~ msgid "Title:"
2594
  #~ msgstr "広告タイトル:"
2595
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-30 02:48+0100\n"
6
+ "PO-Revision-Date: 2015-05-30 02:48+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.8.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:796
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
+ #: adrotate-functions.php:799
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
+ #: adrotate-output.php:735
28
  msgid "Oh no! Something went wrong!"
29
  msgstr ""
30
 
31
+ #: adrotate-output.php:736
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:737
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:738
49
  #, fuzzy
50
  msgid "Contact support if the issue persists:"
51
  msgstr ""
52
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
53
  "さい。"
54
 
55
+ #: adrotate-output.php:756
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:758
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:765 adrotate-output.php:767
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:773
78
  #, fuzzy
79
  msgid "Error, no Ad ID set! Check your syntax!"
80
  msgstr "広告 - 広告IDを使ってください。"
81
 
82
+ #: adrotate-output.php:779
83
  #, fuzzy
84
  msgid "Error, no group ID set! Check your syntax!"
85
  msgstr "広告グループ - グループIDを使ってください。"
86
 
87
+ #: adrotate-output.php:784
88
  #, fuzzy
89
  msgid "Error, group does not exist! Check your syntax!"
90
  msgstr ""
91
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
92
  "クスをオンにします。"
93
 
94
+ #: adrotate-output.php:790
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:790
103
  msgid "If this does not solve the issue please seek support at"
104
  msgstr ""
105
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
106
  "さい。"
107
 
108
+ #: adrotate-output.php:796
109
  msgid "An unknown error occured."
110
  msgstr "理解できないエラーが起こっています。"
111
 
112
+ #: adrotate-output.php:821
113
  msgid "active ad(s) expired."
114
  msgstr "個の広告が期限切れです。"
115
 
116
+ #: adrotate-output.php:821
117
  msgid "Take action now"
118
  msgstr "継続する場合は対応して下さい。"
119
 
120
+ #: adrotate-output.php:823
121
  msgid "active ad(s) are about to expire."
122
  msgstr "個の広告がまもなく期限切れです。"
123
 
124
+ #: adrotate-output.php:823
125
  msgid "Check it out"
126
  msgstr "チェックして下さい。"
127
 
128
+ #: adrotate-output.php:825
129
  msgid "active ad(s) with configuration errors."
130
  msgstr "個の広告が設定エラーになっています。"
131
 
132
+ #: adrotate-output.php:825
133
  msgid "Solve this"
134
  msgstr "これを解決して下さい。"
135
 
136
+ #: adrotate-output.php:827
137
  msgid "ad(s) expired."
138
  msgstr "個の広告が期限切れです。"
139
 
140
+ #: adrotate-output.php:827
141
  msgid "ad(s) are about to expire."
142
  msgstr "個の広告がまもなく期限切れです。"
143
 
144
+ #: adrotate-output.php:827
145
  msgid "ad(s) with configuration errors."
146
  msgstr "個の広告が設定エラーになっています。"
147
 
148
+ #: adrotate-output.php:827
149
  msgid "Fix this as soon as possible"
150
  msgstr "これは出来る限り早く修正して下さい。"
151
 
152
+ #: adrotate-output.php:839
153
  #, fuzzy
154
  msgid "Learn More"
155
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
156
 
157
+ #: adrotate-output.php:840
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:840
164
  msgid "Get more features to even better run your advertising campaigns."
165
  msgstr ""
166
 
167
+ #: adrotate-output.php:840
168
  #, fuzzy
169
  msgid "Thank you for your consideration!"
170
  msgstr "データベースのバックアップを取りましたか?"
171
 
172
+ #: adrotate-output.php:884
173
  msgid ""
174
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
175
  "this menu. Check out the"
176
  msgstr ""
177
 
178
+ #: adrotate-output.php:884
179
  msgid "manuals"
180
  msgstr "マニュアル(英語サイト)"
181
 
182
+ #: adrotate-output.php:884 adrotate-output.php:960
183
  #: dashboard/publisher/adrotate-ads-edit.php:151
184
  msgid "and"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:884
188
  #, fuzzy
189
  msgid "forums"
190
  msgstr "フォーラム"
191
 
192
+ #: adrotate-output.php:920
193
  #, fuzzy
194
  msgid "Useful Links"
195
  msgstr "役に立つ情報"
196
 
197
+ #: adrotate-output.php:921
198
  msgid "Useful links to learn more about AdRotate"
199
  msgstr ""
200
 
201
+ #: adrotate-output.php:923
202
  #, fuzzy
203
  msgid "AdRotate Page"
204
  msgstr "AdRotate Blog"
205
 
206
+ #: adrotate-output.php:924
207
  #, fuzzy
208
  msgid "Getting Started With AdRotate"
209
  msgstr ""
210
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
211
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
212
 
213
+ #: adrotate-output.php:925
214
  #, fuzzy
215
  msgid "AdRotate manuals"
216
  msgstr "AdRotate Blog"
217
 
218
+ #: adrotate-output.php:926
219
  #, fuzzy
220
  msgid "AdRotate Support Forum"
221
  msgstr "AdRotate Blog"
222
 
223
+ #: adrotate-output.php:952
224
  #, fuzzy
225
  msgid "Help AdRotate Grow"
226
  msgstr "AdRotate Blog"
227
 
228
+ #: adrotate-output.php:953
229
  msgid "Brought to you by"
230
  msgstr "サービス紹介"
231
 
232
+ #: adrotate-output.php:960
233
  msgid ""
234
  "A lot of users only think to review AdRotate when something goes wrong while "
235
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
236
  msgstr ""
237
 
238
+ #: adrotate-output.php:960
239
  msgid "If you find AdRotate useful please leave your honest"
240
  msgstr ""
241
 
242
+ #: adrotate-output.php:960
243
  msgid "rating"
244
  msgstr ""
245
 
246
+ #: adrotate-output.php:960
247
  #, fuzzy
248
  msgid "review"
249
  msgstr "全般レポートを見れる権限"
250
 
251
+ #: adrotate-output.php:960
252
  msgid "on WordPress.org to help AdRotate grow in a positive way"
253
  msgstr ""
254
 
255
+ #: adrotate-output.php:963
256
  #, fuzzy
257
  msgid ""
258
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
262
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
263
  "さい。英語ですが。"
264
 
265
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
266
  #, fuzzy
267
  msgid "Visit the"
268
  msgstr ""
270
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
271
  "さい。英語ですが。"
272
 
273
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
274
  #, fuzzy
275
  msgid "website"
276
  msgstr "開発者のWEBサイトは以下です。"
277
 
278
+ #: adrotate-output.php:993 dashboard/publisher/adrotate-ads-edit.php:313
279
  #, fuzzy
280
  msgid "Available in AdRotate Pro"
281
  msgstr "AdRotate Blog"
282
 
283
+ #: adrotate-output.php:993
284
  #, fuzzy
285
  msgid "More information..."
286
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
287
 
288
+ #: adrotate-output.php:994
289
  #, fuzzy
290
  msgid "This feature is available in AdRotate Pro"
291
  msgstr "この機能は使いません。"
292
 
293
+ #: adrotate-output.php:994
294
  #, fuzzy
295
  msgid "Learn more"
296
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
368
  msgid "Next"
369
  msgstr ""
370
 
371
+ #: adrotate-statistics.php:284 dashboard/adrotate-info.php:125
372
  msgid "No data to show!"
373
  msgstr "表示できるデータがありません。"
374
 
375
+ #: adrotate-widget.php:112
376
  msgid "Title (optional):"
377
  msgstr "タイトル(オプション):"
378
 
379
+ #: adrotate-widget.php:115
380
  msgid "HTML will be stripped out."
381
  msgstr "HTMLタグは取り除かれます。"
382
 
383
+ #: adrotate-widget.php:118
384
  #, fuzzy
385
  msgid "Description (optional):"
386
  msgstr "タイトル(オプション):"
387
 
388
+ #: adrotate-widget.php:121
389
  #, fuzzy
390
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
391
  msgstr "HTMLタグは取り除かれます。"
392
 
393
+ #: adrotate-widget.php:124
394
  msgid "Type:"
395
  msgstr "タイプ:"
396
 
397
+ #: adrotate-widget.php:126
398
  msgid "Single Ad - Use Ad ID"
399
  msgstr "広告 - 広告IDを使ってください。"
400
 
401
+ #: adrotate-widget.php:127
402
  msgid "Group of Ads - Use group ID"
403
  msgstr "広告グループ - グループIDを使ってください。"
404
 
405
+ #: adrotate-widget.php:130
406
  msgid "Choose what you want to use this widget for"
407
  msgstr "このウィジェットに使いたい物を選んで下さい。"
408
 
409
+ #: adrotate-widget.php:133
410
  #, fuzzy
411
  msgid "ID:"
412
  msgstr "広告ブロック - ブロックIDを使ってください。"
413
 
414
+ #: adrotate-widget.php:136
415
  msgid "Fill in the ID of the type you want to display!"
416
  msgstr "表示したいタイプのIDを入力してください!"
417
 
813
  msgid "Role to delete groups."
814
  msgstr "グループを削除できる権限"
815
 
816
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:784 adrotate.php:831
817
+ #: adrotate.php:875
818
  msgid "Update Options"
819
  msgstr "設定の更新"
820
 
993
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
994
  "クスをオンにします。"
995
 
996
+ #: adrotate.php:758
997
  msgid "NOTICE:"
998
  msgstr ""
999
 
1000
+ #: adrotate.php:759
1001
  msgid ""
1002
  "You have enabled W3 Total Caching support but not defined the security hash. "
1003
  "You need to add the following line to your wp-config.php near the bottom or "
1005
  "needs to be enabled in W3 Total Cache as well too."
1006
  msgstr ""
1007
 
1008
+ #: adrotate.php:762
1009
  msgid "W3 Total Caching"
1010
  msgstr ""
1011
 
1012
+ #: adrotate.php:763
1013
  #, fuzzy
1014
  msgid "Check this box if you use W3 Total Caching on your site."
1015
  msgstr ""
1016
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
1017
  "クスをオンにします。"
1018
 
1019
+ #: adrotate.php:767
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1020
  #, fuzzy
1021
  msgid ""
1022
  "It may take a while for the ad to start rotating. The caching plugin needs "
1025
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1026
  "可能性があります。"
1027
 
1028
+ #: adrotate.php:767
1029
  #, fuzzy
1030
  msgid ""
1031
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1032
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1033
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1034
 
1035
+ #: adrotate.php:771
1036
  msgid "Javascript"
1037
  msgstr ""
1038
 
1039
+ #: adrotate.php:774
1040
  msgid "Load jQuery"
1041
  msgstr ""
1042
 
1043
+ #: adrotate.php:775
1044
  #, fuzzy
1045
  msgid ""
1046
  "jQuery is required for all Javascript features below. Enable this if your "
1047
  "theme does not load jQuery already."
1048
  msgstr "テキストリンク(クリック数調査付):"
1049
 
1050
+ #: adrotate.php:778
1051
  msgid "Load in footer?"
1052
  msgstr ""
1053
 
1054
+ #: adrotate.php:779
1055
  #, fuzzy
1056
  msgid ""
1057
  "Enable if you want to load the above libraries in the footer. Your theme "
1061
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
1062
  "さい。英語ですが。"
1063
 
1064
+ #: adrotate.php:787
1065
  msgid "Maintenance"
1066
  msgstr "メンテナンス"
1067
 
1068
+ #: adrotate.php:788
1069
  #, fuzzy
1070
  msgid ""
1071
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1075
  "sluggish."
1076
  msgstr "データベースのバックアップを取りましたか?"
1077
 
1078
+ #: adrotate.php:803 adrotate.php:805
1079
  msgid "Optimize Database"
1080
  msgstr "データベースの最適化"
1081
 
1082
+ #: adrotate.php:805
1083
  msgid "You are about to optimize the AdRotate database."
1084
  msgstr "AdRotateのデータベースの最適化を行います。"
1085
 
1086
+ #: adrotate.php:805
1087
  msgid "Did you make a backup of your database?"
1088
  msgstr "データベースのバックアップを取りましたか?"
1089
 
1090
+ #: adrotate.php:805
1091
  msgid ""
1092
  "This may take a moment and may cause your website to respond slow "
1093
  "temporarily!"
1095
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1096
  "可能性があります。"
1097
 
1098
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1099
  #: dashboard/publisher/adrotate-groups-main.php:24
1100
  msgid "OK to continue, CANCEL to stop."
1101
  msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
1102
 
1103
+ #: adrotate.php:806
1104
  msgid "Cleans up overhead data in the AdRotate tables."
1105
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
1106
 
1107
+ #: adrotate.php:807
1108
  #, fuzzy
1109
  msgid ""
1110
  "Overhead data is accumulated garbage resulting from many changes you've "
1111
  "made. This can vary from nothing to hundreds of KiB of data."
1112
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
1113
 
1114
+ #: adrotate.php:811 adrotate.php:813
1115
  msgid "Clean-up Database"
1116
  msgstr "データベースのクリーンアップ"
1117
 
1118
+ #: adrotate.php:813
1119
  #, fuzzy
1120
  msgid ""
1121
  "You are about to clean up your database. This may delete expired schedules "
1122
  "and older statistics."
1123
  msgstr "データベースのクリーンアップ"
1124
 
1125
+ #: adrotate.php:813
1126
  #, fuzzy
1127
  msgid "Are you sure you want to continue?"
1128
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1129
 
1130
+ #: adrotate.php:813 adrotate.php:821
1131
  #, fuzzy
1132
  msgid "This might take a while and may slow down your site during this action!"
1133
  msgstr ""
1134
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1135
  "可能性があります。"
1136
 
1137
+ #: adrotate.php:814
1138
  #, fuzzy
1139
  msgid "Delete stats older than 356 days (Optional)."
1140
  msgstr "広告の削除やリセットする権限"
1141
 
1142
+ #: adrotate.php:815
1143
  #, fuzzy
1144
  msgid ""
1145
  "AdRotate creates empty records when you start making ads or groups. In rare "
1146
  "occasions these records are faulty."
1147
  msgstr "空のデータベースは削除されました。"
1148
 
1149
+ #: adrotate.php:815
1150
  #, fuzzy
1151
  msgid ""
1152
  "If you made an ad or group that does not save when you make it use this "
1153
  "button to delete those empty records."
1154
  msgstr "グループを削除しようとしています。"
1155
 
1156
+ #: adrotate.php:815
1157
  #, fuzzy
1158
  msgid ""
1159
  "Additionally you can clean up old statistics. This will improve the speed of "
1160
  "your site."
1161
  msgstr "データベースのクリーンアップ"
1162
 
1163
+ #: adrotate.php:819
1164
  msgid "Re-evaluate Ads"
1165
  msgstr "広告の再評価"
1166
 
1167
+ #: adrotate.php:821
1168
  msgid "Re-evaluate all ads"
1169
  msgstr "すべての広告の再評価"
1170
 
1171
+ #: adrotate.php:821
1172
  msgid "You are about to check all ads for errors."
1173
  msgstr "すべての広告のエラーをチェックしようとしています。"
1174
 
1175
+ #: adrotate.php:822
1176
  #, fuzzy
1177
  msgid ""
1178
  "This will apply all evaluation rules to all ads to see if any error slipped "
1179
  "in. Normally you should not need this feature."
1180
  msgstr "すべての広告のエラーをチェックしようとしています。"
1181
 
1182
+ #: adrotate.php:826
1183
  #, fuzzy
1184
  msgid ""
1185
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1190
  "clicking these buttons is not a valid point in any case."
1191
  msgstr "データベースのバックアップを取りましたか?"
1192
 
1193
+ #: adrotate.php:834
1194
  msgid "Troubleshooting"
1195
  msgstr "トラブルシューティング(トラブル対応)"
1196
 
1197
+ #: adrotate.php:837
1198
  #, fuzzy
1199
  msgid "Current version:"
1200
  msgstr "現在のスケジュール"
1201
 
1202
+ #: adrotate.php:838
1203
  #, fuzzy
1204
  msgid "Previous version:"
1205
  msgstr "プレビュー"
1206
 
1207
+ #: adrotate.php:841
1208
  #, fuzzy
1209
  msgid "Current database version:"
1210
  msgstr "現在のスケジュール"
1211
 
1212
+ #: adrotate.php:842
1213
  #, fuzzy
1214
  msgid "Previous database version:"
1215
  msgstr "データベースの最適化"
1216
 
1217
+ #: adrotate.php:845
1218
  #, fuzzy
1219
  msgid "Ad evaluation next run:"
1220
  msgstr "通知先"
1221
 
1222
+ #: adrotate.php:846 adrotate.php:850
1223
  #, fuzzy
1224
  msgid "Not scheduled!"
1225
  msgstr "掲載期間"
1226
 
1227
+ #: adrotate.php:849
1228
  #, fuzzy
1229
  msgid "Clean Trackerdata next run:"
1230
  msgstr "データベースのクリーンアップ"
1231
 
1232
+ #: adrotate.php:853
1233
  #, fuzzy
1234
  msgid "Current status of adverts"
1235
  msgstr "現在のスケジュール"
1236
 
1237
+ #: adrotate.php:854
1238
  #, fuzzy
1239
  msgid "Normal"
1240
  msgstr "平均的表示(50%程度)"
1241
 
1242
+ #: adrotate.php:854
1243
  #, fuzzy
1244
  msgid "Error"
1245
  msgstr "理解できないエラーが起こっています。"
1246
 
1247
+ #: adrotate.php:854
1248
  #, fuzzy
1249
  msgid "Expired"
1250
  msgstr "個の広告が期限切れです。"
1251
 
1252
+ #: adrotate.php:854
1253
  #, fuzzy
1254
  msgid "Expires Soon"
1255
  msgstr "これは出来る限り早く修正して下さい。"
1256
 
1257
+ #: adrotate.php:854
1258
  #, fuzzy
1259
  msgid "Unknown Status"
1260
  msgstr "理解できないエラーが起こっています。"
1261
 
1262
+ #: adrotate.php:857
1263
  msgid ""
1264
  "NOTE: The below options are not meant for normal use and are only there for "
1265
  "developers to review saved settings or how ads are selected. These can be "
1269
  "注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
1270
  "用しないで下さい。基本的にチェックを入れない!"
1271
 
1272
+ #: adrotate.php:861
1273
  msgid "Developer Debug"
1274
  msgstr "開発者向けデバッグ"
1275
 
1276
+ #: adrotate.php:863
1277
  #, fuzzy
1278
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1279
  msgstr ""
1280
  "注意:以下の機能は開発者向けに準備されている機能となりますので、通常ではご利"
1281
  "用しないで下さい。基本的にチェックを入れない!"
1282
 
1283
+ #: adrotate.php:864
1284
  #, fuzzy
1285
  msgid "Show all settings, dashboard routines and related values."
1286
  msgstr "設定"
1287
 
1288
+ #: adrotate.php:865
1289
  #, fuzzy
1290
  msgid "Show array of all userroles and capabilities."
1291
  msgstr "表示できるデータがありません。"
1292
 
1293
+ #: adrotate.php:866
1294
  #, fuzzy
1295
  msgid "Review saved advertisers! Visible to advertisers."
1296
  msgstr "広告主から提出された広告を承認する権限"
1297
 
1298
+ #: adrotate.php:867
1299
  #, fuzzy
1300
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1301
  msgstr "統計リセット"
1302
 
1303
+ #: adrotate.php:868
1304
  #, fuzzy
1305
  msgid ""
1306
  "Disable timers for clicks and impressions and enable a alert window for "
1307
  "clicktracking."
1308
  msgstr "テキストリンク(クリック数調査付):"
1309
 
1310
+ #: adrotate.php:869
1311
  #, fuzzy
1312
  msgid "Temporarily disable encryption on the redirect url."
1313
  msgstr ""
1314
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
1315
  "可能性があります。"
1316
 
1317
+ #: dashboard/adrotate-info.php:66
1318
  #, fuzzy
1319
  msgid "Currently"
1320
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
1321
 
1322
+ #: dashboard/adrotate-info.php:72
1323
  #, fuzzy
1324
  msgid "Your setup"
1325
  msgstr "データベースのバックアップを取りましたか?"
1326
 
1327
+ #: dashboard/adrotate-info.php:73
1328
  #, fuzzy
1329
  msgid "Adverts that need you"
1330
  msgstr ""
1332
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
1333
  "さい。英語ですが。"
1334
 
1335
+ #: dashboard/adrotate-info.php:79
1336
  #, fuzzy
1337
  msgid "Adverts"
1338
  msgstr "新しい広告の承認"
1339
 
1340
+ #: dashboard/adrotate-info.php:80
1341
  #, fuzzy
1342
  msgid "(Almost) Expired"
1343
  msgstr "個の広告が期限切れです。"
1344
 
1345
+ #: dashboard/adrotate-info.php:83
1346
  msgid "Groups"
1347
  msgstr "グループ"
1348
 
1349
+ #: dashboard/adrotate-info.php:84
1350
  #, fuzzy
1351
  msgid "Have errors"
1352
  msgstr "個の広告が設定エラーになっています。"
1353
 
1354
+ #: dashboard/adrotate-info.php:88
1355
  msgid "Queued"
1356
  msgstr ""
1357
 
1358
+ #: dashboard/adrotate-info.php:95
1359
  #, fuzzy
1360
  msgid "The last few days"
1361
  msgstr "6ヶ月(180日)"
1362
 
1363
+ #: dashboard/adrotate-info.php:135
1364
  #, fuzzy
1365
  msgid "Support AdRotate"
1366
  msgstr "AdRotate Blog"
1367
 
1368
+ #: dashboard/adrotate-info.php:142
1369
  msgid "Your gift helps ensure the continued development of AdRotate!"
1370
  msgstr ""
1371
 
1372
+ #: dashboard/adrotate-info.php:142
1373
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1374
  msgstr ""
1375
 
1376
+ #: dashboard/adrotate-info.php:151
1377
  #, fuzzy
1378
  msgid "AdRotate News and Developer Blog"
1379
  msgstr "AdRotate Blog"
1380
 
1381
  #: dashboard/adrotate-info.php:168
1382
+ msgid "Get notified of AdRotate updates via Pushover"
1383
+ msgstr ""
1384
+
1385
+ #: dashboard/adrotate-info.php:175
1386
+ msgid "Pushover is a push notification service for iOS and Android!"
1387
+ msgstr ""
1388
+
1389
+ #: dashboard/adrotate-info.php:188
1390
  #, fuzzy
1391
  msgid "Get more features with AdRotate Pro"
1392
  msgstr ""
1393
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1394
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1395
 
1396
+ #: dashboard/adrotate-info.php:191
1397
  msgid ""
1398
  "Benefit from extra features to reinforce your income with advertising "
1399
  "campaigns. Make the most of your website with the powerful tools AdRotate "
1400
  "Pro offers on top of the trusted features included in the free version."
1401
  msgstr ""
1402
 
1403
+ #: dashboard/adrotate-info.php:191
1404
  msgid "Want to know more about"
1405
  msgstr ""
1406
 
1407
+ #: dashboard/adrotate-info.php:195 dashboard/adrotate-pro.php:72
1408
  #, fuzzy
1409
  msgid "Buy AdRotate Professional"
1410
  msgstr "AdRotate Blog"
1411
 
1412
+ #: dashboard/adrotate-info.php:199
1413
+ msgid "Single License"
1414
  msgstr ""
1415
 
1416
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-pro.php:76
1417
  msgid "For one WordPress installation."
1418
  msgstr ""
1419
 
1420
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-info.php:200
1421
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-info.php:202
1422
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:76
1423
+ #: dashboard/adrotate-pro.php:77 dashboard/adrotate-pro.php:78
1424
+ #: dashboard/adrotate-pro.php:79 dashboard/adrotate-pro.php:80
1425
  #, fuzzy
1426
  msgid "Buy now"
1427
  msgstr "継続する場合は対応して下さい。"
1428
 
1429
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1430
  msgid "Duo License"
1431
  msgstr ""
1432
 
1433
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1434
  msgid "For two WordPress installations."
1435
  msgstr ""
1436
 
1437
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1438
  msgid "Multi License"
1439
  msgstr ""
1440
 
1441
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1442
  msgid " For up to five WordPress installations."
1443
  msgstr ""
1444
 
1445
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1446
  #, fuzzy
1447
  msgid "Developer License"
1448
  msgstr "開発者向けデバッグ"
1449
 
1450
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1451
  msgid "Unlimited WordPress installations and/or networks."
1452
  msgstr ""
1453
 
1454
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1455
  msgid "Network License"
1456
  msgstr ""
1457
 
1458
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1459
  msgid "Set up your own advertising network on a WordPress Multisite."
1460
  msgstr ""
1461
 
1462
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1463
  msgid "Compare licenses"
1464
  msgstr ""
1465
 
1466
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1467
  msgid "Not sure which license is for you? Compare them..."
1468
  msgstr ""
1469
 
1470
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1471
  #, fuzzy
1472
  msgid "All Licenses"
1473
  msgstr "すべての広告の再評価"
1474
 
1475
+ #: dashboard/adrotate-info.php:208 dashboard/adrotate-pro.php:41
1476
  #, fuzzy
1477
  msgid "AdRotate is brought to you by"
1478
  msgstr "サービス紹介"
1479
 
1480
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1481
  msgid ""
1482
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1483
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1487
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
1488
  "さい。英語ですが。"
1489
 
1490
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1491
  #, fuzzy
1492
  msgid "Find out more"
1493
  msgstr "以下のURLをチェック下さい。"
1494
 
1495
+ #: dashboard/adrotate-info.php:214
1496
  msgid "Follow"
1497
  msgstr ""
1498
 
1509
  "can see their adverts performance."
1510
  msgstr ""
1511
 
1512
+ #: dashboard/adrotate-pro.php:27
1513
  msgid "Localize your ad campaigns with Geo Targeting"
1514
  msgstr ""
1515
 
1516
+ #: dashboard/adrotate-pro.php:30
1517
  msgid ""
1518
  "Go nationwide or global with localized adverts for your various audiences. "
1519
  "Set up adverts for countries and cities and sell impressions per general "
1520
+ "area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
1521
+ "Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
1522
  msgstr ""
1523
 
1524
+ #: dashboard/adrotate-pro.php:34
1525
  msgid "Get Premium Support almost all year round"
1526
  msgstr ""
1527
 
1528
+ #: dashboard/adrotate-pro.php:37
1529
  msgid ""
1530
+ "When you activate your AdRotate Pro license you can use fast and personal "
1531
+ "email support. No more queueing up in the forums. AdRotate premium support "
1532
+ "takes priority over the forums and is checked much more often than the "
1533
+ "forum. Get a solution (usually) within a day."
1534
  msgstr ""
1535
 
1536
+ #: dashboard/adrotate-pro.php:58
1537
  msgid "Schedule all campaigns with ease"
1538
  msgstr ""
1539
 
1540
+ #: dashboard/adrotate-pro.php:61
1541
  msgid ""
1542
+ "Schedule your adverts and set up advertising campaigns based on dates you or "
1543
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
1544
+ "You name it, AdRotate schedules it. This makes planning your revenue stream "
1545
+ "much more easy. You can set one or many schedules for adverts."
1546
  msgstr ""
1547
 
1548
+ #: dashboard/adrotate-pro.php:65
1549
+ msgid "Stay up-to-date with notifications"
1550
+ msgstr ""
 
1551
 
1552
+ #: dashboard/adrotate-pro.php:68
1553
  msgid ""
1554
+ "Stay in touch with Email notifications. Have AdRotate send you an alert when "
1555
+ "adverts expire or need your attention. Additionally, you can have AdRotate "
1556
+ "send push notifications to your iOS or Android smartphone. Get notified when "
1557
  "adverts expire, have errors or when advertisers create new adverts. Never "
1558
  "miss an expiration date again."
1559
  msgstr ""
1560
 
1561
+ #: dashboard/adrotate-pro.php:76
1562
+ msgid "Singe License"
1563
+ msgstr ""
1564
+
1565
  #: dashboard/publisher/adrotate-ads-edit.php:46
1566
  msgid "The AdCode cannot be empty!"
1567
  msgstr "AdCodeを空にすることはできません!"
2588
  msgid "Statistics for group"
2589
  msgstr "統計 "
2590
 
2591
+ #, fuzzy
2592
+ #~ msgid "Check this box if you use WP Super Cache on your site."
2593
+ #~ msgstr ""
2594
+ #~ "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェック"
2595
+ #~ "ボックスをオンにします。"
2596
+
2597
+ #, fuzzy
2598
+ #~ msgid "Stay up-to-date with the notification system"
2599
+ #~ msgstr "すぐに注意を必要とする広告"
2600
+
2601
  #~ msgid "Title:"
2602
  #~ msgstr "広告タイトル:"
2603
 
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-05-15 01:46+0100\n"
6
- "PO-Revision-Date: 2015-05-15 01:46+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.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:801
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
- #: adrotate-functions.php:804
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
- #: adrotate-output.php:737
32
  msgid "Oh no! Something went wrong!"
33
  msgstr "Uwaga ! Coś poszło nie tak !"
34
 
35
- #: adrotate-output.php:738
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:739
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:740
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:758
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:760
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:767 adrotate-output.php:769
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:775
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:781
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:786
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:792
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,157 +96,157 @@ msgstr ""
96
  "Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz a potem włącz "
97
  "AdRote na panelu wtyczek."
98
 
99
- #: adrotate-output.php:792
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:798
105
  msgid "An unknown error occured."
106
  msgstr "Pojawił się nieznany błąd."
107
 
108
- #: adrotate-output.php:823
109
  msgid "active ad(s) expired."
110
  msgstr "Aktywne reklamy wygasły."
111
 
112
- #: adrotate-output.php:823
113
  msgid "Take action now"
114
  msgstr "Uruchom natymiastowo."
115
 
116
- #: adrotate-output.php:825
117
  msgid "active ad(s) are about to expire."
118
  msgstr "Aktywne reklamy niedługo wygasną."
119
 
120
- #: adrotate-output.php:825
121
  msgid "Check it out"
122
  msgstr "Sprawdz to"
123
 
124
- #: adrotate-output.php:827
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "Aktywne reklamy z błędami konfiguracyjnymi."
127
 
128
- #: adrotate-output.php:827
129
  msgid "Solve this"
130
  msgstr "Napraw to"
131
 
132
- #: adrotate-output.php:829
133
  msgid "ad(s) expired."
134
  msgstr "Reklama wygasła."
135
 
136
- #: adrotate-output.php:829
137
  msgid "ad(s) are about to expire."
138
  msgstr "Reklama które wygasną."
139
 
140
- #: adrotate-output.php:829
141
  msgid "ad(s) with configuration errors."
142
  msgstr "Reklamy z błędami konfuguracyjnymi."
143
 
144
- #: adrotate-output.php:829
145
  msgid "Fix this as soon as possible"
146
  msgstr "Napraw to tak szybko jak to możliwe"
147
 
148
- #: adrotate-output.php:841
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Dowiedź się więcej"
152
 
153
- #: adrotate-output.php:842
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:842
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
- #: adrotate-output.php:842
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
167
 
168
- #: adrotate-output.php:886
169
  msgid ""
170
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
171
  "this menu. Check out the"
172
  msgstr ""
173
 
174
- #: adrotate-output.php:886
175
  msgid "manuals"
176
  msgstr "instrukcje"
177
 
178
- #: adrotate-output.php:886 adrotate-output.php:962
179
  #: dashboard/publisher/adrotate-ads-edit.php:151
180
  msgid "and"
181
  msgstr ""
182
 
183
- #: adrotate-output.php:886
184
  msgid "forums"
185
  msgstr ""
186
 
187
- #: adrotate-output.php:922
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Użyteczne odnośniki."
191
 
192
- #: adrotate-output.php:923
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
- #: adrotate-output.php:925
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
- #: adrotate-output.php:926
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Więcej ustawień z AdRotate Pro"
205
 
206
- #: adrotate-output.php:927
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Informacja AdRotate "
210
 
211
- #: adrotate-output.php:928
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Sklep AdRotate"
215
 
216
- #: adrotate-output.php:954
217
  #, fuzzy
218
  msgid "Help AdRotate Grow"
219
  msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
220
 
221
- #: adrotate-output.php:955
222
  msgid "Brought to you by"
223
  msgstr "Dostarczone przez "
224
 
225
- #: adrotate-output.php:962
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:962
232
  msgid "If you find AdRotate useful please leave your honest"
233
  msgstr ""
234
 
235
- #: adrotate-output.php:962
236
  msgid "rating"
237
  msgstr ""
238
 
239
- #: adrotate-output.php:962
240
  #, fuzzy
241
  msgid "review"
242
  msgstr ""
243
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
244
 
245
- #: adrotate-output.php:962
246
  msgid "on WordPress.org to help AdRotate grow in a positive way"
247
  msgstr ""
248
 
249
- #: adrotate-output.php:965
250
  msgid ""
251
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
252
  "out more about what I can do for you!"
@@ -255,27 +255,27 @@ msgstr ""
255
  "informacje o projektowaniu stron internetowych, usługi konsultingowe i wiele "
256
  "więcej dla Wordpress'a."
257
 
258
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
259
  msgid "Visit the"
260
  msgstr "Odwiedź"
261
 
262
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
263
  msgid "website"
264
  msgstr "strone internetową"
265
 
266
- #: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
267
  msgid "Available in AdRotate Pro"
268
  msgstr "Dostępne w wersji AdRotate Pro"
269
 
270
- #: adrotate-output.php:995
271
  msgid "More information..."
272
  msgstr "Więcej informacji"
273
 
274
- #: adrotate-output.php:996
275
  msgid "This feature is available in AdRotate Pro"
276
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
277
 
278
- #: adrotate-output.php:996
279
  msgid "Learn more"
280
  msgstr "Dowiedź się więcej"
281
 
@@ -351,47 +351,47 @@ msgstr "Obecny miesiąc"
351
  msgid "Next"
352
  msgstr "Następny"
353
 
354
- #: adrotate-statistics.php:284 dashboard/adrotate-info.php:123
355
  msgid "No data to show!"
356
  msgstr "Brak danych !"
357
 
358
- #: adrotate-widget.php:116
359
  msgid "Title (optional):"
360
  msgstr "Tytuł (opcjonalnie):"
361
 
362
- #: adrotate-widget.php:119
363
  msgid "HTML will be stripped out."
364
  msgstr "Znaczniki HTML będą wyrzucane."
365
 
366
- #: adrotate-widget.php:122
367
  msgid "Description (optional):"
368
  msgstr "Opis (opcjonalny):"
369
 
370
- #: adrotate-widget.php:125
371
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
372
  msgstr "Do czego używasz tego widżetu ?? (HTML będzie usunięty.)"
373
 
374
- #: adrotate-widget.php:128
375
  msgid "Type:"
376
  msgstr "Typ:"
377
 
378
- #: adrotate-widget.php:130
379
  msgid "Single Ad - Use Ad ID"
380
  msgstr "Pojedyńcza Reklama - Użyj ID (numeru identyfikacyjnego) reklamy"
381
 
382
- #: adrotate-widget.php:131
383
  msgid "Group of Ads - Use group ID"
384
  msgstr "Grupa Reklam - Użyj ID (numeru identyfikacyjnego) grupy"
385
 
386
- #: adrotate-widget.php:134
387
  msgid "Choose what you want to use this widget for"
388
  msgstr "Wybierz do czego chcesz użyć tego widżetu"
389
 
390
- #: adrotate-widget.php:137
391
  msgid "ID:"
392
  msgstr "ID:"
393
 
394
- #: adrotate-widget.php:140
395
  msgid "Fill in the ID of the type you want to display!"
396
  msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
397
 
@@ -786,8 +786,8 @@ msgstr "Usuwanie grup"
786
  msgid "Role to delete groups."
787
  msgstr "Uprawnienia do usuwania grup"
788
 
789
- #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
790
- #: adrotate.php:890
791
  msgid "Update Options"
792
  msgstr "Zapisz opcje"
793
 
@@ -958,7 +958,7 @@ msgstr ""
958
  "Włacz to by usunąć pustą powierzchnię wokół reklam w widżecie. (Nie zawsze "
959
  "działa)"
960
 
961
- #: adrotate.php:760 adrotate.php:771
962
  #, fuzzy
963
  msgid "NOTICE:"
964
  msgstr ""
@@ -968,7 +968,7 @@ msgstr ""
968
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
969
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
970
 
971
- #: adrotate.php:761
972
  msgid ""
973
  "You have enabled W3 Total Caching support but not defined the security hash. "
974
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -976,30 +976,15 @@ msgid ""
976
  "needs to be enabled in W3 Total Cache as well too."
977
  msgstr ""
978
 
979
- #: adrotate.php:765
980
  msgid "W3 Total Caching"
981
  msgstr "W3 Total Caching"
982
 
983
- #: adrotate.php:766
984
  msgid "Check this box if you use W3 Total Caching on your site."
985
  msgstr "Zaznacz jeśli używasz W3 Total Caching na swojej stronie."
986
 
987
- #: adrotate.php:772
988
- msgid ""
989
- "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
990
- "this function will not work. WP Super Cache has discontinued support for "
991
- "dynamic content."
992
- msgstr ""
993
-
994
- #: adrotate.php:776
995
- msgid "WP Super Cache"
996
- msgstr "WP Super Cache"
997
-
998
- #: adrotate.php:777
999
- msgid "Check this box if you use WP Super Cache on your site."
1000
- msgstr "Zaznacz jeśli używasz WP Super Cache na swoje stronie."
1001
-
1002
- #: adrotate.php:782
1003
  msgid ""
1004
  "It may take a while for the ad to start rotating. The caching plugin needs "
1005
  "to refresh the cache. This can take up to a week if not done manually."
@@ -1008,7 +993,7 @@ msgstr ""
1008
  "rotacyjnym. Wtyczką cachująca musi się odświeżyć czasami zajmuje to tydzień "
1009
  "jeśli nie wykonasz tego ręcznie."
1010
 
1011
- #: adrotate.php:782
1012
  msgid ""
1013
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1014
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -1017,15 +1002,15 @@ msgstr ""
1017
  "AdRotate. Jeśli używasz kodu PHP musisz sam wprowadzić poprwany kod do "
1018
  "strony."
1019
 
1020
- #: adrotate.php:786
1021
  msgid "Javascript"
1022
  msgstr ""
1023
 
1024
- #: adrotate.php:789
1025
  msgid "Load jQuery"
1026
  msgstr "Załąduj jQuery"
1027
 
1028
- #: adrotate.php:790
1029
  msgid ""
1030
  "jQuery is required for all Javascript features below. Enable this if your "
1031
  "theme does not load jQuery already."
@@ -1033,11 +1018,11 @@ msgstr ""
1033
  "jQuery jest wymagane dla wszystkich poniższych zastosowań. Włącz tą opcję "
1034
  "jeśli strona nie załądowałą jeszcze jQuery."
1035
 
1036
- #: adrotate.php:793
1037
  msgid "Load in footer?"
1038
  msgstr "Załadować do stopki?"
1039
 
1040
- #: adrotate.php:794
1041
  msgid ""
1042
  "Enable if you want to load the above libraries in the footer. Your theme "
1043
  "needs to call wp_footer() for this to work."
@@ -1045,11 +1030,11 @@ msgstr ""
1045
  "Włącz jeśli chcesz załądować powyższe biblioteki do stopki strony. Twój "
1046
  "szablon musi odwoływać się do wp_footer() by działać."
1047
 
1048
- #: adrotate.php:802
1049
  msgid "Maintenance"
1050
  msgstr "Ostrzeżenie"
1051
 
1052
- #: adrotate.php:803
1053
  msgid ""
1054
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1055
  "They only apply to your ads/groups and stats. Not to other settings or other "
@@ -1063,19 +1048,19 @@ msgstr ""
1063
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
1064
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
1065
 
1066
- #: adrotate.php:818 adrotate.php:820
1067
  msgid "Optimize Database"
1068
  msgstr "Optymalizuj bazę danych"
1069
 
1070
- #: adrotate.php:820
1071
  msgid "You are about to optimize the AdRotate database."
1072
  msgstr "Powinieneś zoptymalizować bazę danych AdRotate."
1073
 
1074
- #: adrotate.php:820
1075
  msgid "Did you make a backup of your database?"
1076
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
1077
 
1078
- #: adrotate.php:820
1079
  msgid ""
1080
  "This may take a moment and may cause your website to respond slow "
1081
  "temporarily!"
@@ -1083,16 +1068,16 @@ msgstr ""
1083
  "To może zająć jaki czas i spowodować że twoja strona będzie odpowiadać "
1084
  "wolniej przez jakiś czas."
1085
 
1086
- #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1087
  #: dashboard/publisher/adrotate-groups-main.php:24
1088
  msgid "OK to continue, CANCEL to stop."
1089
  msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
1090
 
1091
- #: adrotate.php:821
1092
  msgid "Cleans up overhead data in the AdRotate tables."
1093
  msgstr "Wyczyść nadmiarowe dane z tabel AdRotate"
1094
 
1095
- #: adrotate.php:822
1096
  msgid ""
1097
  "Overhead data is accumulated garbage resulting from many changes you've "
1098
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1101,11 +1086,11 @@ msgstr ""
1101
  "dokonujesz. Może to skutkować wzrostem przechowywanych danych od kilku "
1102
  "kilobajtow do kilku GB."
1103
 
1104
- #: adrotate.php:826 adrotate.php:828
1105
  msgid "Clean-up Database"
1106
  msgstr "Wyczyść bazę danych"
1107
 
1108
- #: adrotate.php:828
1109
  msgid ""
1110
  "You are about to clean up your database. This may delete expired schedules "
1111
  "and older statistics."
@@ -1113,19 +1098,19 @@ msgstr ""
1113
  "Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
1114
  "harmonogramów i starych statystyk."
1115
 
1116
- #: adrotate.php:828
1117
  msgid "Are you sure you want to continue?"
1118
  msgstr "Czy jesteś pewien że chcesz kontynuować?"
1119
 
1120
- #: adrotate.php:828 adrotate.php:836
1121
  msgid "This might take a while and may slow down your site during this action!"
1122
  msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
1123
 
1124
- #: adrotate.php:829
1125
  msgid "Delete stats older than 356 days (Optional)."
1126
  msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
1127
 
1128
- #: adrotate.php:830
1129
  msgid ""
1130
  "AdRotate creates empty records when you start making ads or groups. In rare "
1131
  "occasions these records are faulty."
@@ -1134,7 +1119,7 @@ msgstr ""
1134
  "Przeważnie rekordy te nie są wadliwe i nie mają złego działania dla całego "
1135
  "systemu."
1136
 
1137
- #: adrotate.php:830
1138
  msgid ""
1139
  "If you made an ad or group that does not save when you make it use this "
1140
  "button to delete those empty records."
@@ -1142,7 +1127,7 @@ msgstr ""
1142
  "Jeśli tworzyłeś reklamę lub grupę reklam i nie zapisały się one poprawnie po "
1143
  "ich utworzeniu, użyj przycisku \"usuń\" by usunąć puste rekordy."
1144
 
1145
- #: adrotate.php:830
1146
  msgid ""
1147
  "Additionally you can clean up old statistics. This will improve the speed of "
1148
  "your site."
@@ -1150,19 +1135,19 @@ msgstr ""
1150
  "Dodatkowo możęsz usunąć stare statystyki to poprawi szybkość działania "
1151
  "strony."
1152
 
1153
- #: adrotate.php:834
1154
  msgid "Re-evaluate Ads"
1155
  msgstr "Oszacuj ponownie reklamy."
1156
 
1157
- #: adrotate.php:836
1158
  msgid "Re-evaluate all ads"
1159
  msgstr "Oszacuj ponownie wszystkie reklamy."
1160
 
1161
- #: adrotate.php:836
1162
  msgid "You are about to check all ads for errors."
1163
  msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
1164
 
1165
- #: adrotate.php:837
1166
  msgid ""
1167
  "This will apply all evaluation rules to all ads to see if any error slipped "
1168
  "in. Normally you should not need this feature."
@@ -1171,7 +1156,7 @@ msgstr ""
1171
  "na wszystkich reklamach oraz przejrze nie wszystkich błędów. Normalnie nie "
1172
  "potrzebujesz wykorzystywać tej funkcji."
1173
 
1174
- #: adrotate.php:841
1175
  msgid ""
1176
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1177
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1188,64 +1173,64 @@ msgstr ""
1188
  "kliknięciem jakiegoś z przycisków nie jest podstawą do jakichkolwiek "
1189
  "roszczeń."
1190
 
1191
- #: adrotate.php:849
1192
  msgid "Troubleshooting"
1193
  msgstr "Masz problem"
1194
 
1195
- #: adrotate.php:852
1196
  msgid "Current version:"
1197
  msgstr "Bieżąca wersja:"
1198
 
1199
- #: adrotate.php:853
1200
  msgid "Previous version:"
1201
  msgstr "Poprzednia wersja:"
1202
 
1203
- #: adrotate.php:856
1204
  msgid "Current database version:"
1205
  msgstr "Obecna wersja bazy danych:"
1206
 
1207
- #: adrotate.php:857
1208
  msgid "Previous database version:"
1209
  msgstr "Poprzednia wersja bazy danych:"
1210
 
1211
- #: adrotate.php:860
1212
  #, fuzzy
1213
  msgid "Ad evaluation next run:"
1214
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
1215
 
1216
- #: adrotate.php:861 adrotate.php:865
1217
  msgid "Not scheduled!"
1218
  msgstr "Nie ustalono harmnogramu!"
1219
 
1220
- #: adrotate.php:864
1221
  msgid "Clean Trackerdata next run:"
1222
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
1223
 
1224
- #: adrotate.php:868
1225
  msgid "Current status of adverts"
1226
  msgstr "Bieżący status reklam"
1227
 
1228
- #: adrotate.php:869
1229
  msgid "Normal"
1230
  msgstr "Normalny"
1231
 
1232
- #: adrotate.php:869
1233
  msgid "Error"
1234
  msgstr "Błąd"
1235
 
1236
- #: adrotate.php:869
1237
  msgid "Expired"
1238
  msgstr "Wygasa"
1239
 
1240
- #: adrotate.php:869
1241
  msgid "Expires Soon"
1242
  msgstr "Wygas wkrótce"
1243
 
1244
- #: adrotate.php:869
1245
  msgid "Unknown Status"
1246
  msgstr "Nieznany status"
1247
 
1248
- #: adrotate.php:872
1249
  msgid ""
1250
  "NOTE: The below options are not meant for normal use and are only there for "
1251
  "developers to review saved settings or how ads are selected. These can be "
@@ -1258,37 +1243,37 @@ msgstr ""
1258
  "problemów na żądanie, ale do normalnego użytkowania, powinny one być "
1259
  "pozostawiona nie zaznaczone!"
1260
 
1261
- #: adrotate.php:876
1262
  msgid "Developer Debug"
1263
  msgstr "Debuger dewelopera"
1264
 
1265
- #: adrotate.php:878
1266
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1267
  msgstr ""
1268
  "Rozwiązywanie problemów z wyświetlaniem reklamami ma zawsze rozwiązanie "
1269
  "związane z zewnętrznym widokiem Wordpressa."
1270
 
1271
- #: adrotate.php:879
1272
  msgid "Show all settings, dashboard routines and related values."
1273
  msgstr ""
1274
  "Wyświetl wszystkie ustawienia, panele uprawnien i powiązanych wartości."
1275
 
1276
- #: adrotate.php:880
1277
  msgid "Show array of all userroles and capabilities."
1278
  msgstr "Pokaż tablice wszystkich ról i uprawnień."
1279
 
1280
- #: adrotate.php:881
1281
  msgid "Review saved advertisers! Visible to advertisers."
1282
  msgstr ""
1283
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
1284
 
1285
- #: adrotate.php:882
1286
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1287
  msgstr ""
1288
  "Przeglądaj globalne statystyki dla każdej reklamy z osobna i dla każdej "
1289
  "grupy. Widoczne tylko dla reklamodawców."
1290
 
1291
- #: adrotate.php:883
1292
  msgid ""
1293
  "Disable timers for clicks and impressions and enable a alert window for "
1294
  "clicktracking."
@@ -1296,67 +1281,75 @@ msgstr ""
1296
  "Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
1297
  "śledzenia kliknięć."
1298
 
1299
- #: adrotate.php:884
1300
  msgid "Temporarily disable encryption on the redirect url."
1301
  msgstr "Tymczasowo wyłącz szyfrowanie na przekierowanym adresie URL."
1302
 
1303
- #: dashboard/adrotate-info.php:65
1304
  msgid "Currently"
1305
  msgstr "Bieżace"
1306
 
1307
- #: dashboard/adrotate-info.php:71
1308
  msgid "Your setup"
1309
  msgstr "Twoje ustawienia"
1310
 
1311
- #: dashboard/adrotate-info.php:72
1312
  msgid "Adverts that need you"
1313
  msgstr "Reklamy wymagające uwagi"
1314
 
1315
- #: dashboard/adrotate-info.php:78
1316
  msgid "Adverts"
1317
  msgstr "Reklamy"
1318
 
1319
- #: dashboard/adrotate-info.php:79
1320
  msgid "(Almost) Expired"
1321
  msgstr "(Wkrótce) wygasa "
1322
 
1323
- #: dashboard/adrotate-info.php:82
1324
  msgid "Groups"
1325
  msgstr "Grupy"
1326
 
1327
- #: dashboard/adrotate-info.php:83
1328
  msgid "Have errors"
1329
  msgstr "Posiada błędy"
1330
 
1331
- #: dashboard/adrotate-info.php:87
1332
  msgid "Queued"
1333
  msgstr "w kolejce"
1334
 
1335
- #: dashboard/adrotate-info.php:93
1336
  msgid "The last few days"
1337
  msgstr "Ostatnie dni"
1338
 
1339
- #: dashboard/adrotate-info.php:132
1340
  msgid "Support AdRotate"
1341
  msgstr "Wesprzyj AdRotate"
1342
 
1343
- #: dashboard/adrotate-info.php:139
1344
  msgid "Your gift helps ensure the continued development of AdRotate!"
1345
  msgstr ""
1346
 
1347
- #: dashboard/adrotate-info.php:139
1348
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1349
  msgstr ""
1350
 
1351
- #: dashboard/adrotate-info.php:148
1352
  msgid "AdRotate News and Developer Blog"
1353
  msgstr "AdRotere Wiadomości i Blog "
1354
 
1355
  #: dashboard/adrotate-info.php:168
 
 
 
 
 
 
 
 
1356
  msgid "Get more features with AdRotate Pro"
1357
  msgstr "Więcej ustawień z AdRotate Pro"
1358
 
1359
- #: dashboard/adrotate-info.php:171
1360
  msgid ""
1361
  "Benefit from extra features to reinforce your income with advertising "
1362
  "campaigns. Make the most of your website with the powerful tools AdRotate "
@@ -1366,80 +1359,80 @@ msgstr ""
1366
  "Skorzystaj z potężnych narzędzi AdRotate PRO zyskaj więcej dzięki dodatkowym "
1367
  "funkcjom."
1368
 
1369
- #: dashboard/adrotate-info.php:171
1370
  msgid "Want to know more about"
1371
  msgstr ""
1372
 
1373
- #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1374
  msgid "Buy AdRotate Professional"
1375
  msgstr "Kup AdRotate Pro"
1376
 
1377
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1378
- msgid "Singe License"
1379
- msgstr "Pojedyńcza licencja"
1380
 
1381
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1382
  msgid "For one WordPress installation."
1383
  msgstr "dla jednej instalcji Wordpressa"
1384
 
1385
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1386
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1387
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1388
- #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1389
- #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1390
  #, fuzzy
1391
  msgid "Buy now"
1392
  msgstr "Kup"
1393
 
1394
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1395
  msgid "Duo License"
1396
  msgstr "Podwójna licencja"
1397
 
1398
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1399
  msgid "For two WordPress installations."
1400
  msgstr "dla dwóch instalcji Wordpressa"
1401
 
1402
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1403
  msgid "Multi License"
1404
  msgstr "Multi licencja"
1405
 
1406
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1407
  msgid " For up to five WordPress installations."
1408
  msgstr "dla 5 instalacji Wordpessa."
1409
 
1410
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1411
  msgid "Developer License"
1412
  msgstr "Licencja Programisty"
1413
 
1414
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1415
  msgid "Unlimited WordPress installations and/or networks."
1416
  msgstr ""
1417
 
1418
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1419
  msgid "Network License"
1420
  msgstr "Licencja sieciowa"
1421
 
1422
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1423
  msgid "Set up your own advertising network on a WordPress Multisite."
1424
  msgstr "Utwórz własną sieć reklamową dla multistrona Wordpressa."
1425
 
1426
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1427
  msgid "Compare licenses"
1428
  msgstr "Porównaj licencje."
1429
 
1430
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1431
  msgid "Not sure which license is for you? Compare them..."
1432
  msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
1433
 
1434
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1435
  msgid "All Licenses"
1436
  msgstr "Wszystkie licencje"
1437
 
1438
- #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
1439
  msgid "AdRotate is brought to you by"
1440
  msgstr "Możesz koszystać z AdRotate dzięki"
1441
 
1442
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1443
  msgid ""
1444
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1445
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1450,11 +1443,11 @@ msgstr ""
1450
  "potrzebujesz dedykowanej wtyczki, przerobienia twojego szablonu lub "
1451
  "przenosisz strone pomoc znajdziesz na mojej stronie!"
1452
 
1453
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1454
  msgid "Find out more"
1455
  msgstr "Dowiedź się więcej"
1456
 
1457
- #: dashboard/adrotate-info.php:194
1458
  msgid "Follow"
1459
  msgstr "Obserwuj"
1460
 
@@ -1475,63 +1468,58 @@ msgstr ""
1475
  "Reklamodawcy mają dostęp do własnego panelu administracyjnego , gdzie mogą "
1476
  "zobaczyć statystyki swoich reklam."
1477
 
1478
- #: dashboard/adrotate-pro.php:28
1479
  msgid "Localize your ad campaigns with Geo Targeting"
1480
  msgstr "Zlokalizuje swoje kampanie reklamowe używajac geolokalizacji"
1481
 
1482
- #: dashboard/adrotate-pro.php:31
1483
- #, fuzzy
1484
  msgid ""
1485
  "Go nationwide or global with localized adverts for your various audiences. "
1486
  "Set up adverts for countries and cities and sell impressions per general "
1487
- "area. Connect your site to MaxMinds GeoIP2: Precision, FreegeoIP (MaxMind "
1488
- "GeoLITE) or GeoBytes GeoSelect services."
1489
  msgstr ""
1490
- "Wyświetlaj swoje reklamy globalnie i lokalnie dla różnych grup odbiorców. "
1491
- "Ustaw reklamy dla danego kraju i miasta sprzedawaj pakiety wyświetleń dla "
1492
- "danego obszaru. Dane geolokalizacyjne dostarczone dzięki FreegeoIP (MaxMind) "
1493
- "i GeoSelect."
1494
 
1495
- #: dashboard/adrotate-pro.php:36
1496
  msgid "Get Premium Support almost all year round"
1497
  msgstr "Zakup Wsparcie premium na cały rok."
1498
 
1499
- #: dashboard/adrotate-pro.php:39
1500
  msgid ""
1501
- "When you activate your AdRotate Pro license you are entitled to ticket "
1502
- "support. AdRotate premium support which takes priority over the Forums and "
1503
- "even email. Get a solution (usually) within a day."
 
1504
  msgstr ""
1505
- "Kiedy aktywujesz licencje AdRotate Pro zyskuejsz pierwszeństwo przy "
1506
- "zgłaszaniu problemów do systemy wsparcia technicznego. Twoje zgłoszenia maja "
1507
- "pioryter przed wszystkimi na forum i emailami. Uzyskujesz odpowiedź "
1508
- "przeważnie w przeciągu 1 dnia."
1509
 
1510
- #: dashboard/adrotate-pro.php:60
1511
  msgid "Schedule all campaigns with ease"
1512
  msgstr "Zaplanuj z łatwością wszystkie kampanie reklamowe"
1513
 
1514
- #: dashboard/adrotate-pro.php:63
1515
  msgid ""
1516
- "Schedule your adverts and set up advertising campaigns based on date without "
1517
- "hassle. Seasonal adverts, weekly adverts. You name it. AdRotate schedules it."
 
 
1518
  msgstr ""
1519
- "Zaplanuj wyświetlanie reklam, całych kampani w oparciu o przedziały czasowe. "
1520
- "Ustaw reklamy kwartalne, tygodniowe jak tylko chcesz. "
1521
 
1522
- #: dashboard/adrotate-pro.php:68
1523
- msgid "Stay up-to-date with the notification system"
1524
- msgstr "Bądź zawsze na bieżąco dzięki systemowi powiadomień"
1525
 
1526
- #: dashboard/adrotate-pro.php:71
1527
  msgid ""
1528
- "Stay in touch with Email and/or push notifications. Get notified when "
 
 
1529
  "adverts expire, have errors or when advertisers create new adverts. Never "
1530
  "miss an expiration date again."
1531
  msgstr ""
1532
- "Bądź na bieżąco! Otrzymuj powiadomienia i wiadomości email gdy twoja reklama "
1533
- "wygaśnie, posiada błędy lub gdy reklamodawcy utworzą nową reklamę. Już nigdy "
1534
- "niczego nie przeoczysz !!"
 
1535
 
1536
  #: dashboard/publisher/adrotate-ads-edit.php:46
1537
  msgid "The AdCode cannot be empty!"
@@ -2524,6 +2512,54 @@ msgstr "Nie utworzono grupy!"
2524
  msgid "Statistics for group"
2525
  msgstr "Statystyki dla grupy"
2526
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2527
  #~ msgid "Title:"
2528
  #~ msgstr "Tytuł:"
2529
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-30 02:48+0100\n"
6
+ "PO-Revision-Date: 2015-05-30 02:48+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.8.1\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:796
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
+ #: adrotate-functions.php:799
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
+ #: adrotate-output.php:735
32
  msgid "Oh no! Something went wrong!"
33
  msgstr "Uwaga ! Coś poszło nie tak !"
34
 
35
+ #: adrotate-output.php:736
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:737
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:738
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:756
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:758
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:765 adrotate-output.php:767
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:773
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:779
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:784
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:790
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:790
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:796
105
  msgid "An unknown error occured."
106
  msgstr "Pojawił się nieznany błąd."
107
 
108
+ #: adrotate-output.php:821
109
  msgid "active ad(s) expired."
110
  msgstr "Aktywne reklamy wygasły."
111
 
112
+ #: adrotate-output.php:821
113
  msgid "Take action now"
114
  msgstr "Uruchom natymiastowo."
115
 
116
+ #: adrotate-output.php:823
117
  msgid "active ad(s) are about to expire."
118
  msgstr "Aktywne reklamy niedługo wygasną."
119
 
120
+ #: adrotate-output.php:823
121
  msgid "Check it out"
122
  msgstr "Sprawdz to"
123
 
124
+ #: adrotate-output.php:825
125
  msgid "active ad(s) with configuration errors."
126
  msgstr "Aktywne reklamy z błędami konfiguracyjnymi."
127
 
128
+ #: adrotate-output.php:825
129
  msgid "Solve this"
130
  msgstr "Napraw to"
131
 
132
+ #: adrotate-output.php:827
133
  msgid "ad(s) expired."
134
  msgstr "Reklama wygasła."
135
 
136
+ #: adrotate-output.php:827
137
  msgid "ad(s) are about to expire."
138
  msgstr "Reklama które wygasną."
139
 
140
+ #: adrotate-output.php:827
141
  msgid "ad(s) with configuration errors."
142
  msgstr "Reklamy z błędami konfuguracyjnymi."
143
 
144
+ #: adrotate-output.php:827
145
  msgid "Fix this as soon as possible"
146
  msgstr "Napraw to tak szybko jak to możliwe"
147
 
148
+ #: adrotate-output.php:839
149
  #, fuzzy
150
  msgid "Learn More"
151
  msgstr "Dowiedź się więcej"
152
 
153
+ #: adrotate-output.php:840
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:840
160
  msgid "Get more features to even better run your advertising campaigns."
161
  msgstr ""
162
 
163
+ #: adrotate-output.php:840
164
  #, fuzzy
165
  msgid "Thank you for your consideration!"
166
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
167
 
168
+ #: adrotate-output.php:884
169
  msgid ""
170
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
171
  "this menu. Check out the"
172
  msgstr ""
173
 
174
+ #: adrotate-output.php:884
175
  msgid "manuals"
176
  msgstr "instrukcje"
177
 
178
+ #: adrotate-output.php:884 adrotate-output.php:960
179
  #: dashboard/publisher/adrotate-ads-edit.php:151
180
  msgid "and"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:884
184
  msgid "forums"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:920
188
  #, fuzzy
189
  msgid "Useful Links"
190
  msgstr "Użyteczne odnośniki."
191
 
192
+ #: adrotate-output.php:921
193
  msgid "Useful links to learn more about AdRotate"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:923
197
  #, fuzzy
198
  msgid "AdRotate Page"
199
  msgstr "AdRotate Pro"
200
 
201
+ #: adrotate-output.php:924
202
  #, fuzzy
203
  msgid "Getting Started With AdRotate"
204
  msgstr "Więcej ustawień z AdRotate Pro"
205
 
206
+ #: adrotate-output.php:925
207
  #, fuzzy
208
  msgid "AdRotate manuals"
209
  msgstr "Informacja AdRotate "
210
 
211
+ #: adrotate-output.php:926
212
  #, fuzzy
213
  msgid "AdRotate Support Forum"
214
  msgstr "Sklep AdRotate"
215
 
216
+ #: adrotate-output.php:952
217
  #, fuzzy
218
  msgid "Help AdRotate Grow"
219
  msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
220
 
221
+ #: adrotate-output.php:953
222
  msgid "Brought to you by"
223
  msgstr "Dostarczone przez "
224
 
225
+ #: adrotate-output.php:960
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:960
232
  msgid "If you find AdRotate useful please leave your honest"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:960
236
  msgid "rating"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:960
240
  #, fuzzy
241
  msgid "review"
242
  msgstr ""
243
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
244
 
245
+ #: adrotate-output.php:960
246
  msgid "on WordPress.org to help AdRotate grow in a positive way"
247
  msgstr ""
248
 
249
+ #: adrotate-output.php:963
250
  msgid ""
251
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
252
  "out more about what I can do for you!"
255
  "informacje o projektowaniu stron internetowych, usługi konsultingowe i wiele "
256
  "więcej dla Wordpress'a."
257
 
258
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
259
  msgid "Visit the"
260
  msgstr "Odwiedź"
261
 
262
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
263
  msgid "website"
264
  msgstr "strone internetową"
265
 
266
+ #: adrotate-output.php:993 dashboard/publisher/adrotate-ads-edit.php:313
267
  msgid "Available in AdRotate Pro"
268
  msgstr "Dostępne w wersji AdRotate Pro"
269
 
270
+ #: adrotate-output.php:993
271
  msgid "More information..."
272
  msgstr "Więcej informacji"
273
 
274
+ #: adrotate-output.php:994
275
  msgid "This feature is available in AdRotate Pro"
276
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
277
 
278
+ #: adrotate-output.php:994
279
  msgid "Learn more"
280
  msgstr "Dowiedź się więcej"
281
 
351
  msgid "Next"
352
  msgstr "Następny"
353
 
354
+ #: adrotate-statistics.php:284 dashboard/adrotate-info.php:125
355
  msgid "No data to show!"
356
  msgstr "Brak danych !"
357
 
358
+ #: adrotate-widget.php:112
359
  msgid "Title (optional):"
360
  msgstr "Tytuł (opcjonalnie):"
361
 
362
+ #: adrotate-widget.php:115
363
  msgid "HTML will be stripped out."
364
  msgstr "Znaczniki HTML będą wyrzucane."
365
 
366
+ #: adrotate-widget.php:118
367
  msgid "Description (optional):"
368
  msgstr "Opis (opcjonalny):"
369
 
370
+ #: adrotate-widget.php:121
371
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
372
  msgstr "Do czego używasz tego widżetu ?? (HTML będzie usunięty.)"
373
 
374
+ #: adrotate-widget.php:124
375
  msgid "Type:"
376
  msgstr "Typ:"
377
 
378
+ #: adrotate-widget.php:126
379
  msgid "Single Ad - Use Ad ID"
380
  msgstr "Pojedyńcza Reklama - Użyj ID (numeru identyfikacyjnego) reklamy"
381
 
382
+ #: adrotate-widget.php:127
383
  msgid "Group of Ads - Use group ID"
384
  msgstr "Grupa Reklam - Użyj ID (numeru identyfikacyjnego) grupy"
385
 
386
+ #: adrotate-widget.php:130
387
  msgid "Choose what you want to use this widget for"
388
  msgstr "Wybierz do czego chcesz użyć tego widżetu"
389
 
390
+ #: adrotate-widget.php:133
391
  msgid "ID:"
392
  msgstr "ID:"
393
 
394
+ #: adrotate-widget.php:136
395
  msgid "Fill in the ID of the type you want to display!"
396
  msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
397
 
786
  msgid "Role to delete groups."
787
  msgstr "Uprawnienia do usuwania grup"
788
 
789
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:784 adrotate.php:831
790
+ #: adrotate.php:875
791
  msgid "Update Options"
792
  msgstr "Zapisz opcje"
793
 
958
  "Włacz to by usunąć pustą powierzchnię wokół reklam w widżecie. (Nie zawsze "
959
  "działa)"
960
 
961
+ #: adrotate.php:758
962
  #, fuzzy
963
  msgid "NOTICE:"
964
  msgstr ""
968
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
969
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
970
 
971
+ #: adrotate.php:759
972
  msgid ""
973
  "You have enabled W3 Total Caching support but not defined the security hash. "
974
  "You need to add the following line to your wp-config.php near the bottom or "
976
  "needs to be enabled in W3 Total Cache as well too."
977
  msgstr ""
978
 
979
+ #: adrotate.php:762
980
  msgid "W3 Total Caching"
981
  msgstr "W3 Total Caching"
982
 
983
+ #: adrotate.php:763
984
  msgid "Check this box if you use W3 Total Caching on your site."
985
  msgstr "Zaznacz jeśli używasz W3 Total Caching na swojej stronie."
986
 
987
+ #: adrotate.php:767
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
988
  msgid ""
989
  "It may take a while for the ad to start rotating. The caching plugin needs "
990
  "to refresh the cache. This can take up to a week if not done manually."
993
  "rotacyjnym. Wtyczką cachująca musi się odświeżyć czasami zajmuje to tydzień "
994
  "jeśli nie wykonasz tego ręcznie."
995
 
996
+ #: adrotate.php:767
997
  msgid ""
998
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
999
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1002
  "AdRotate. Jeśli używasz kodu PHP musisz sam wprowadzić poprwany kod do "
1003
  "strony."
1004
 
1005
+ #: adrotate.php:771
1006
  msgid "Javascript"
1007
  msgstr ""
1008
 
1009
+ #: adrotate.php:774
1010
  msgid "Load jQuery"
1011
  msgstr "Załąduj jQuery"
1012
 
1013
+ #: adrotate.php:775
1014
  msgid ""
1015
  "jQuery is required for all Javascript features below. Enable this if your "
1016
  "theme does not load jQuery already."
1018
  "jQuery jest wymagane dla wszystkich poniższych zastosowań. Włącz tą opcję "
1019
  "jeśli strona nie załądowałą jeszcze jQuery."
1020
 
1021
+ #: adrotate.php:778
1022
  msgid "Load in footer?"
1023
  msgstr "Załadować do stopki?"
1024
 
1025
+ #: adrotate.php:779
1026
  msgid ""
1027
  "Enable if you want to load the above libraries in the footer. Your theme "
1028
  "needs to call wp_footer() for this to work."
1030
  "Włącz jeśli chcesz załądować powyższe biblioteki do stopki strony. Twój "
1031
  "szablon musi odwoływać się do wp_footer() by działać."
1032
 
1033
+ #: adrotate.php:787
1034
  msgid "Maintenance"
1035
  msgstr "Ostrzeżenie"
1036
 
1037
+ #: adrotate.php:788
1038
  msgid ""
1039
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1040
  "They only apply to your ads/groups and stats. Not to other settings or other "
1048
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
1049
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
1050
 
1051
+ #: adrotate.php:803 adrotate.php:805
1052
  msgid "Optimize Database"
1053
  msgstr "Optymalizuj bazę danych"
1054
 
1055
+ #: adrotate.php:805
1056
  msgid "You are about to optimize the AdRotate database."
1057
  msgstr "Powinieneś zoptymalizować bazę danych AdRotate."
1058
 
1059
+ #: adrotate.php:805
1060
  msgid "Did you make a backup of your database?"
1061
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
1062
 
1063
+ #: adrotate.php:805
1064
  msgid ""
1065
  "This may take a moment and may cause your website to respond slow "
1066
  "temporarily!"
1068
  "To może zająć jaki czas i spowodować że twoja strona będzie odpowiadać "
1069
  "wolniej przez jakiś czas."
1070
 
1071
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1072
  #: dashboard/publisher/adrotate-groups-main.php:24
1073
  msgid "OK to continue, CANCEL to stop."
1074
  msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
1075
 
1076
+ #: adrotate.php:806
1077
  msgid "Cleans up overhead data in the AdRotate tables."
1078
  msgstr "Wyczyść nadmiarowe dane z tabel AdRotate"
1079
 
1080
+ #: adrotate.php:807
1081
  msgid ""
1082
  "Overhead data is accumulated garbage resulting from many changes you've "
1083
  "made. This can vary from nothing to hundreds of KiB of data."
1086
  "dokonujesz. Może to skutkować wzrostem przechowywanych danych od kilku "
1087
  "kilobajtow do kilku GB."
1088
 
1089
+ #: adrotate.php:811 adrotate.php:813
1090
  msgid "Clean-up Database"
1091
  msgstr "Wyczyść bazę danych"
1092
 
1093
+ #: adrotate.php:813
1094
  msgid ""
1095
  "You are about to clean up your database. This may delete expired schedules "
1096
  "and older statistics."
1098
  "Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
1099
  "harmonogramów i starych statystyk."
1100
 
1101
+ #: adrotate.php:813
1102
  msgid "Are you sure you want to continue?"
1103
  msgstr "Czy jesteś pewien że chcesz kontynuować?"
1104
 
1105
+ #: adrotate.php:813 adrotate.php:821
1106
  msgid "This might take a while and may slow down your site during this action!"
1107
  msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
1108
 
1109
+ #: adrotate.php:814
1110
  msgid "Delete stats older than 356 days (Optional)."
1111
  msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
1112
 
1113
+ #: adrotate.php:815
1114
  msgid ""
1115
  "AdRotate creates empty records when you start making ads or groups. In rare "
1116
  "occasions these records are faulty."
1119
  "Przeważnie rekordy te nie są wadliwe i nie mają złego działania dla całego "
1120
  "systemu."
1121
 
1122
+ #: adrotate.php:815
1123
  msgid ""
1124
  "If you made an ad or group that does not save when you make it use this "
1125
  "button to delete those empty records."
1127
  "Jeśli tworzyłeś reklamę lub grupę reklam i nie zapisały się one poprawnie po "
1128
  "ich utworzeniu, użyj przycisku \"usuń\" by usunąć puste rekordy."
1129
 
1130
+ #: adrotate.php:815
1131
  msgid ""
1132
  "Additionally you can clean up old statistics. This will improve the speed of "
1133
  "your site."
1135
  "Dodatkowo możęsz usunąć stare statystyki to poprawi szybkość działania "
1136
  "strony."
1137
 
1138
+ #: adrotate.php:819
1139
  msgid "Re-evaluate Ads"
1140
  msgstr "Oszacuj ponownie reklamy."
1141
 
1142
+ #: adrotate.php:821
1143
  msgid "Re-evaluate all ads"
1144
  msgstr "Oszacuj ponownie wszystkie reklamy."
1145
 
1146
+ #: adrotate.php:821
1147
  msgid "You are about to check all ads for errors."
1148
  msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
1149
 
1150
+ #: adrotate.php:822
1151
  msgid ""
1152
  "This will apply all evaluation rules to all ads to see if any error slipped "
1153
  "in. Normally you should not need this feature."
1156
  "na wszystkich reklamach oraz przejrze nie wszystkich błędów. Normalnie nie "
1157
  "potrzebujesz wykorzystywać tej funkcji."
1158
 
1159
+ #: adrotate.php:826
1160
  msgid ""
1161
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1162
  "becomes unusable in any way or by any means in whichever way I will not take "
1173
  "kliknięciem jakiegoś z przycisków nie jest podstawą do jakichkolwiek "
1174
  "roszczeń."
1175
 
1176
+ #: adrotate.php:834
1177
  msgid "Troubleshooting"
1178
  msgstr "Masz problem"
1179
 
1180
+ #: adrotate.php:837
1181
  msgid "Current version:"
1182
  msgstr "Bieżąca wersja:"
1183
 
1184
+ #: adrotate.php:838
1185
  msgid "Previous version:"
1186
  msgstr "Poprzednia wersja:"
1187
 
1188
+ #: adrotate.php:841
1189
  msgid "Current database version:"
1190
  msgstr "Obecna wersja bazy danych:"
1191
 
1192
+ #: adrotate.php:842
1193
  msgid "Previous database version:"
1194
  msgstr "Poprzednia wersja bazy danych:"
1195
 
1196
+ #: adrotate.php:845
1197
  #, fuzzy
1198
  msgid "Ad evaluation next run:"
1199
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
1200
 
1201
+ #: adrotate.php:846 adrotate.php:850
1202
  msgid "Not scheduled!"
1203
  msgstr "Nie ustalono harmnogramu!"
1204
 
1205
+ #: adrotate.php:849
1206
  msgid "Clean Trackerdata next run:"
1207
  msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
1208
 
1209
+ #: adrotate.php:853
1210
  msgid "Current status of adverts"
1211
  msgstr "Bieżący status reklam"
1212
 
1213
+ #: adrotate.php:854
1214
  msgid "Normal"
1215
  msgstr "Normalny"
1216
 
1217
+ #: adrotate.php:854
1218
  msgid "Error"
1219
  msgstr "Błąd"
1220
 
1221
+ #: adrotate.php:854
1222
  msgid "Expired"
1223
  msgstr "Wygasa"
1224
 
1225
+ #: adrotate.php:854
1226
  msgid "Expires Soon"
1227
  msgstr "Wygas wkrótce"
1228
 
1229
+ #: adrotate.php:854
1230
  msgid "Unknown Status"
1231
  msgstr "Nieznany status"
1232
 
1233
+ #: adrotate.php:857
1234
  msgid ""
1235
  "NOTE: The below options are not meant for normal use and are only there for "
1236
  "developers to review saved settings or how ads are selected. These can be "
1243
  "problemów na żądanie, ale do normalnego użytkowania, powinny one być "
1244
  "pozostawiona nie zaznaczone!"
1245
 
1246
+ #: adrotate.php:861
1247
  msgid "Developer Debug"
1248
  msgstr "Debuger dewelopera"
1249
 
1250
+ #: adrotate.php:863
1251
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1252
  msgstr ""
1253
  "Rozwiązywanie problemów z wyświetlaniem reklamami ma zawsze rozwiązanie "
1254
  "związane z zewnętrznym widokiem Wordpressa."
1255
 
1256
+ #: adrotate.php:864
1257
  msgid "Show all settings, dashboard routines and related values."
1258
  msgstr ""
1259
  "Wyświetl wszystkie ustawienia, panele uprawnien i powiązanych wartości."
1260
 
1261
+ #: adrotate.php:865
1262
  msgid "Show array of all userroles and capabilities."
1263
  msgstr "Pokaż tablice wszystkich ról i uprawnień."
1264
 
1265
+ #: adrotate.php:866
1266
  msgid "Review saved advertisers! Visible to advertisers."
1267
  msgstr ""
1268
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
1269
 
1270
+ #: adrotate.php:867
1271
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1272
  msgstr ""
1273
  "Przeglądaj globalne statystyki dla każdej reklamy z osobna i dla każdej "
1274
  "grupy. Widoczne tylko dla reklamodawców."
1275
 
1276
+ #: adrotate.php:868
1277
  msgid ""
1278
  "Disable timers for clicks and impressions and enable a alert window for "
1279
  "clicktracking."
1281
  "Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
1282
  "śledzenia kliknięć."
1283
 
1284
+ #: adrotate.php:869
1285
  msgid "Temporarily disable encryption on the redirect url."
1286
  msgstr "Tymczasowo wyłącz szyfrowanie na przekierowanym adresie URL."
1287
 
1288
+ #: dashboard/adrotate-info.php:66
1289
  msgid "Currently"
1290
  msgstr "Bieżace"
1291
 
1292
+ #: dashboard/adrotate-info.php:72
1293
  msgid "Your setup"
1294
  msgstr "Twoje ustawienia"
1295
 
1296
+ #: dashboard/adrotate-info.php:73
1297
  msgid "Adverts that need you"
1298
  msgstr "Reklamy wymagające uwagi"
1299
 
1300
+ #: dashboard/adrotate-info.php:79
1301
  msgid "Adverts"
1302
  msgstr "Reklamy"
1303
 
1304
+ #: dashboard/adrotate-info.php:80
1305
  msgid "(Almost) Expired"
1306
  msgstr "(Wkrótce) wygasa "
1307
 
1308
+ #: dashboard/adrotate-info.php:83
1309
  msgid "Groups"
1310
  msgstr "Grupy"
1311
 
1312
+ #: dashboard/adrotate-info.php:84
1313
  msgid "Have errors"
1314
  msgstr "Posiada błędy"
1315
 
1316
+ #: dashboard/adrotate-info.php:88
1317
  msgid "Queued"
1318
  msgstr "w kolejce"
1319
 
1320
+ #: dashboard/adrotate-info.php:95
1321
  msgid "The last few days"
1322
  msgstr "Ostatnie dni"
1323
 
1324
+ #: dashboard/adrotate-info.php:135
1325
  msgid "Support AdRotate"
1326
  msgstr "Wesprzyj AdRotate"
1327
 
1328
+ #: dashboard/adrotate-info.php:142
1329
  msgid "Your gift helps ensure the continued development of AdRotate!"
1330
  msgstr ""
1331
 
1332
+ #: dashboard/adrotate-info.php:142
1333
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1334
  msgstr ""
1335
 
1336
+ #: dashboard/adrotate-info.php:151
1337
  msgid "AdRotate News and Developer Blog"
1338
  msgstr "AdRotere Wiadomości i Blog "
1339
 
1340
  #: dashboard/adrotate-info.php:168
1341
+ msgid "Get notified of AdRotate updates via Pushover"
1342
+ msgstr ""
1343
+
1344
+ #: dashboard/adrotate-info.php:175
1345
+ msgid "Pushover is a push notification service for iOS and Android!"
1346
+ msgstr ""
1347
+
1348
+ #: dashboard/adrotate-info.php:188
1349
  msgid "Get more features with AdRotate Pro"
1350
  msgstr "Więcej ustawień z AdRotate Pro"
1351
 
1352
+ #: dashboard/adrotate-info.php:191
1353
  msgid ""
1354
  "Benefit from extra features to reinforce your income with advertising "
1355
  "campaigns. Make the most of your website with the powerful tools AdRotate "
1359
  "Skorzystaj z potężnych narzędzi AdRotate PRO zyskaj więcej dzięki dodatkowym "
1360
  "funkcjom."
1361
 
1362
+ #: dashboard/adrotate-info.php:191
1363
  msgid "Want to know more about"
1364
  msgstr ""
1365
 
1366
+ #: dashboard/adrotate-info.php:195 dashboard/adrotate-pro.php:72
1367
  msgid "Buy AdRotate Professional"
1368
  msgstr "Kup AdRotate Pro"
1369
 
1370
+ #: dashboard/adrotate-info.php:199
1371
+ msgid "Single License"
1372
+ msgstr ""
1373
 
1374
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-pro.php:76
1375
  msgid "For one WordPress installation."
1376
  msgstr "dla jednej instalcji Wordpressa"
1377
 
1378
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-info.php:200
1379
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-info.php:202
1380
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:76
1381
+ #: dashboard/adrotate-pro.php:77 dashboard/adrotate-pro.php:78
1382
+ #: dashboard/adrotate-pro.php:79 dashboard/adrotate-pro.php:80
1383
  #, fuzzy
1384
  msgid "Buy now"
1385
  msgstr "Kup"
1386
 
1387
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1388
  msgid "Duo License"
1389
  msgstr "Podwójna licencja"
1390
 
1391
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1392
  msgid "For two WordPress installations."
1393
  msgstr "dla dwóch instalcji Wordpressa"
1394
 
1395
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1396
  msgid "Multi License"
1397
  msgstr "Multi licencja"
1398
 
1399
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1400
  msgid " For up to five WordPress installations."
1401
  msgstr "dla 5 instalacji Wordpessa."
1402
 
1403
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1404
  msgid "Developer License"
1405
  msgstr "Licencja Programisty"
1406
 
1407
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1408
  msgid "Unlimited WordPress installations and/or networks."
1409
  msgstr ""
1410
 
1411
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1412
  msgid "Network License"
1413
  msgstr "Licencja sieciowa"
1414
 
1415
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1416
  msgid "Set up your own advertising network on a WordPress Multisite."
1417
  msgstr "Utwórz własną sieć reklamową dla multistrona Wordpressa."
1418
 
1419
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1420
  msgid "Compare licenses"
1421
  msgstr "Porównaj licencje."
1422
 
1423
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1424
  msgid "Not sure which license is for you? Compare them..."
1425
  msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
1426
 
1427
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1428
  msgid "All Licenses"
1429
  msgstr "Wszystkie licencje"
1430
 
1431
+ #: dashboard/adrotate-info.php:208 dashboard/adrotate-pro.php:41
1432
  msgid "AdRotate is brought to you by"
1433
  msgstr "Możesz koszystać z AdRotate dzięki"
1434
 
1435
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
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 "
1443
  "potrzebujesz dedykowanej wtyczki, przerobienia twojego szablonu lub "
1444
  "przenosisz strone pomoc znajdziesz na mojej stronie!"
1445
 
1446
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1447
  msgid "Find out more"
1448
  msgstr "Dowiedź się więcej"
1449
 
1450
+ #: dashboard/adrotate-info.php:214
1451
  msgid "Follow"
1452
  msgstr "Obserwuj"
1453
 
1468
  "Reklamodawcy mają dostęp do własnego panelu administracyjnego , gdzie mogą "
1469
  "zobaczyć statystyki swoich reklam."
1470
 
1471
+ #: dashboard/adrotate-pro.php:27
1472
  msgid "Localize your ad campaigns with Geo Targeting"
1473
  msgstr "Zlokalizuje swoje kampanie reklamowe używajac geolokalizacji"
1474
 
1475
+ #: dashboard/adrotate-pro.php:30
 
1476
  msgid ""
1477
  "Go nationwide or global with localized adverts for your various audiences. "
1478
  "Set up adverts for countries and cities and sell impressions per general "
1479
+ "area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
1480
+ "Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
1481
  msgstr ""
 
 
 
 
1482
 
1483
+ #: dashboard/adrotate-pro.php:34
1484
  msgid "Get Premium Support almost all year round"
1485
  msgstr "Zakup Wsparcie premium na cały rok."
1486
 
1487
+ #: dashboard/adrotate-pro.php:37
1488
  msgid ""
1489
+ "When you activate your AdRotate Pro license you can use fast and personal "
1490
+ "email support. No more queueing up in the forums. AdRotate premium support "
1491
+ "takes priority over the forums and is checked much more often than the "
1492
+ "forum. Get a solution (usually) within a day."
1493
  msgstr ""
 
 
 
 
1494
 
1495
+ #: dashboard/adrotate-pro.php:58
1496
  msgid "Schedule all campaigns with ease"
1497
  msgstr "Zaplanuj z łatwością wszystkie kampanie reklamowe"
1498
 
1499
+ #: dashboard/adrotate-pro.php:61
1500
  msgid ""
1501
+ "Schedule your adverts and set up advertising campaigns based on dates you or "
1502
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
1503
+ "You name it, AdRotate schedules it. This makes planning your revenue stream "
1504
+ "much more easy. You can set one or many schedules for adverts."
1505
  msgstr ""
 
 
1506
 
1507
+ #: dashboard/adrotate-pro.php:65
1508
+ msgid "Stay up-to-date with notifications"
1509
+ msgstr ""
1510
 
1511
+ #: dashboard/adrotate-pro.php:68
1512
  msgid ""
1513
+ "Stay in touch with Email notifications. Have AdRotate send you an alert when "
1514
+ "adverts expire or need your attention. Additionally, you can have AdRotate "
1515
+ "send push notifications to your iOS or Android smartphone. Get notified when "
1516
  "adverts expire, have errors or when advertisers create new adverts. Never "
1517
  "miss an expiration date again."
1518
  msgstr ""
1519
+
1520
+ #: dashboard/adrotate-pro.php:76
1521
+ msgid "Singe License"
1522
+ msgstr "Pojedyńcza licencja"
1523
 
1524
  #: dashboard/publisher/adrotate-ads-edit.php:46
1525
  msgid "The AdCode cannot be empty!"
2512
  msgid "Statistics for group"
2513
  msgstr "Statystyki dla grupy"
2514
 
2515
+ #~ msgid "WP Super Cache"
2516
+ #~ msgstr "WP Super Cache"
2517
+
2518
+ #~ msgid "Check this box if you use WP Super Cache on your site."
2519
+ #~ msgstr "Zaznacz jeśli używasz WP Super Cache na swoje stronie."
2520
+
2521
+ #, fuzzy
2522
+ #~ msgid ""
2523
+ #~ "Go nationwide or global with localized adverts for your various "
2524
+ #~ "audiences. Set up adverts for countries and cities and sell impressions "
2525
+ #~ "per general area. Connect your site to MaxMinds GeoIP2: Precision, "
2526
+ #~ "FreegeoIP (MaxMind GeoLITE) or GeoBytes GeoSelect services."
2527
+ #~ msgstr ""
2528
+ #~ "Wyświetlaj swoje reklamy globalnie i lokalnie dla różnych grup odbiorców. "
2529
+ #~ "Ustaw reklamy dla danego kraju i miasta sprzedawaj pakiety wyświetleń dla "
2530
+ #~ "danego obszaru. Dane geolokalizacyjne dostarczone dzięki FreegeoIP "
2531
+ #~ "(MaxMind) i GeoSelect."
2532
+
2533
+ #~ msgid ""
2534
+ #~ "When you activate your AdRotate Pro license you are entitled to ticket "
2535
+ #~ "support. AdRotate premium support which takes priority over the Forums "
2536
+ #~ "and even email. Get a solution (usually) within a day."
2537
+ #~ msgstr ""
2538
+ #~ "Kiedy aktywujesz licencje AdRotate Pro zyskuejsz pierwszeństwo przy "
2539
+ #~ "zgłaszaniu problemów do systemy wsparcia technicznego. Twoje zgłoszenia "
2540
+ #~ "maja pioryter przed wszystkimi na forum i emailami. Uzyskujesz odpowiedź "
2541
+ #~ "przeważnie w przeciągu 1 dnia."
2542
+
2543
+ #~ msgid ""
2544
+ #~ "Schedule your adverts and set up advertising campaigns based on date "
2545
+ #~ "without hassle. Seasonal adverts, weekly adverts. You name it. AdRotate "
2546
+ #~ "schedules it."
2547
+ #~ msgstr ""
2548
+ #~ "Zaplanuj wyświetlanie reklam, całych kampani w oparciu o przedziały "
2549
+ #~ "czasowe. Ustaw reklamy kwartalne, tygodniowe jak tylko chcesz. "
2550
+
2551
+ #~ msgid "Stay up-to-date with the notification system"
2552
+ #~ msgstr "Bądź zawsze na bieżąco dzięki systemowi powiadomień"
2553
+
2554
+ #~ msgid ""
2555
+ #~ "Stay in touch with Email and/or push notifications. Get notified when "
2556
+ #~ "adverts expire, have errors or when advertisers create new adverts. Never "
2557
+ #~ "miss an expiration date again."
2558
+ #~ msgstr ""
2559
+ #~ "Bądź na bieżąco! Otrzymuj powiadomienia i wiadomości email gdy twoja "
2560
+ #~ "reklama wygaśnie, posiada błędy lub gdy reklamodawcy utworzą nową "
2561
+ #~ "reklamę. Już nigdy niczego nie przeoczysz !!"
2562
+
2563
  #~ msgid "Title:"
2564
  #~ msgstr "Tytuł:"
2565
 
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-05-15 01:46+0100\n"
6
- "PO-Revision-Date: 2015-05-15 01:46+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.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:801
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
- #: adrotate-functions.php:804
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
- #: adrotate-output.php:737
28
  msgid "Oh no! Something went wrong!"
29
  msgstr "O ne! Nešto nije kako treba!"
30
 
31
- #: adrotate-output.php:738
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:739
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:740
47
  msgid "Contact support if the issue persists:"
48
  msgstr "Kontaktirajte podršku ako se problem nastavi:"
49
 
50
- #: adrotate-output.php:758
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:760
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:767 adrotate-output.php:769
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:775
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:781
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:786
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:792
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,154 +89,154 @@ msgstr ""
89
  "Error se prikazao locirajući bazupodataka tabele za AdRotate. Molim vas "
90
  "deaktivirajte i reaktivirajte AdRotate sa plugin stranice!!"
91
 
92
- #: adrotate-output.php:792
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:798
97
  msgid "An unknown error occured."
98
  msgstr "Nepoznati error se ukazao."
99
 
100
- #: adrotate-output.php:823
101
  msgid "active ad(s) expired."
102
  msgstr "aktivni ad-ovi su istekli."
103
 
104
- #: adrotate-output.php:823
105
  msgid "Take action now"
106
  msgstr "Reagujte odmah"
107
 
108
- #: adrotate-output.php:825
109
  msgid "active ad(s) are about to expire."
110
  msgstr "aktivni ad-ovi će uskoro da isteknu."
111
 
112
- #: adrotate-output.php:825
113
  msgid "Check it out"
114
  msgstr "Pogledajte ovde"
115
 
116
- #: adrotate-output.php:827
117
  msgid "active ad(s) with configuration errors."
118
  msgstr "aktivni ad-ovi sa konfiguracionim greškama."
119
 
120
- #: adrotate-output.php:827
121
  msgid "Solve this"
122
  msgstr "Reši ovo"
123
 
124
- #: adrotate-output.php:829
125
  msgid "ad(s) expired."
126
  msgstr "ad-ovi su istekli."
127
 
128
- #: adrotate-output.php:829
129
  msgid "ad(s) are about to expire."
130
  msgstr "ad-ovi će uskoro da isteknu."
131
 
132
- #: adrotate-output.php:829
133
  msgid "ad(s) with configuration errors."
134
  msgstr "ad-ovi sa konfiguracionim greškama."
135
 
136
- #: adrotate-output.php:829
137
  msgid "Fix this as soon as possible"
138
  msgstr "Popravi ovo što pre je moguće"
139
 
140
- #: adrotate-output.php:841
141
  #, fuzzy
142
  msgid "Learn More"
143
  msgstr "Saznajte više"
144
 
145
- #: adrotate-output.php:842
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:842
152
  msgid "Get more features to even better run your advertising campaigns."
153
  msgstr ""
154
 
155
- #: adrotate-output.php:842
156
  msgid "Thank you for your consideration!"
157
  msgstr ""
158
 
159
- #: adrotate-output.php:886
160
  msgid ""
161
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
162
  "this menu. Check out the"
163
  msgstr ""
164
 
165
- #: adrotate-output.php:886
166
  msgid "manuals"
167
  msgstr "priručnici"
168
 
169
- #: adrotate-output.php:886 adrotate-output.php:962
170
  #: dashboard/publisher/adrotate-ads-edit.php:151
171
  msgid "and"
172
  msgstr ""
173
 
174
- #: adrotate-output.php:886
175
  msgid "forums"
176
  msgstr ""
177
 
178
- #: adrotate-output.php:922
179
  #, fuzzy
180
  msgid "Useful Links"
181
  msgstr "Korisni linkovi"
182
 
183
- #: adrotate-output.php:923
184
  msgid "Useful links to learn more about AdRotate"
185
  msgstr ""
186
 
187
- #: adrotate-output.php:925
188
  #, fuzzy
189
  msgid "AdRotate Page"
190
  msgstr "AdRotate Pro"
191
 
192
- #: adrotate-output.php:926
193
  #, fuzzy
194
  msgid "Getting Started With AdRotate"
195
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
196
 
197
- #: adrotate-output.php:927
198
  #, fuzzy
199
  msgid "AdRotate manuals"
200
  msgstr "AdRotate informacije"
201
 
202
- #: adrotate-output.php:928
203
  #, fuzzy
204
  msgid "AdRotate Support Forum"
205
  msgstr "AdRotate prodavnica"
206
 
207
- #: adrotate-output.php:954
208
  #, fuzzy
209
  msgid "Help AdRotate Grow"
210
  msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
211
 
212
- #: adrotate-output.php:955
213
  msgid "Brought to you by"
214
  msgstr "Za tebe od"
215
 
216
- #: adrotate-output.php:962
217
  msgid ""
218
  "A lot of users only think to review AdRotate when something goes wrong while "
219
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
220
  msgstr ""
221
 
222
- #: adrotate-output.php:962
223
  msgid "If you find AdRotate useful please leave your honest"
224
  msgstr ""
225
 
226
- #: adrotate-output.php:962
227
  msgid "rating"
228
  msgstr ""
229
 
230
- #: adrotate-output.php:962
231
  #, fuzzy
232
  msgid "review"
233
  msgstr "Dajte ocenu i komentar"
234
 
235
- #: adrotate-output.php:962
236
  msgid "on WordPress.org to help AdRotate grow in a positive way"
237
  msgstr ""
238
 
239
- #: adrotate-output.php:965
240
  #, fuzzy
241
  msgid ""
242
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
@@ -247,28 +247,28 @@ msgstr ""
247
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
248
  "detalja !"
249
 
250
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
251
  msgid "Visit the"
252
  msgstr "Posetite"
253
 
254
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
255
  msgid "website"
256
  msgstr "websajt"
257
 
258
- #: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
259
  msgid "Available in AdRotate Pro"
260
  msgstr "Dostupno u AdRotate Pro"
261
 
262
- #: adrotate-output.php:995
263
  #, fuzzy
264
  msgid "More information..."
265
  msgstr "Saznajte više"
266
 
267
- #: adrotate-output.php:996
268
  msgid "This feature is available in AdRotate Pro"
269
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
270
 
271
- #: adrotate-output.php:996
272
  msgid "Learn more"
273
  msgstr "Saznajte više"
274
 
@@ -344,49 +344,49 @@ msgstr "Ovaj mesec"
344
  msgid "Next"
345
  msgstr "Sledeći"
346
 
347
- #: adrotate-statistics.php:284 dashboard/adrotate-info.php:123
348
  msgid "No data to show!"
349
  msgstr "Nema podataka za prikaz!"
350
 
351
- #: adrotate-widget.php:116
352
  msgid "Title (optional):"
353
  msgstr "Naslov (opcionalno):"
354
 
355
- #: adrotate-widget.php:119
356
  msgid "HTML will be stripped out."
357
  msgstr "HTML će biti skinut."
358
 
359
- #: adrotate-widget.php:122
360
  #, fuzzy
361
  msgid "Description (optional):"
362
  msgstr "Naslov (opcionalno):"
363
 
364
- #: adrotate-widget.php:125
365
  #, fuzzy
366
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
367
  msgstr "HTML će biti skinut."
368
 
369
- #: adrotate-widget.php:128
370
  msgid "Type:"
371
  msgstr "Tip:"
372
 
373
- #: adrotate-widget.php:130
374
  msgid "Single Ad - Use Ad ID"
375
  msgstr "Single oglas- koristi Ad ID"
376
 
377
- #: adrotate-widget.php:131
378
  msgid "Group of Ads - Use group ID"
379
  msgstr "Gupni oglasi - Koristite grupni ID"
380
 
381
- #: adrotate-widget.php:134
382
  msgid "Choose what you want to use this widget for"
383
  msgstr "Izaberite za šta želite da koristite ovaj widget "
384
 
385
- #: adrotate-widget.php:137
386
  msgid "ID:"
387
  msgstr "ID:"
388
 
389
- #: adrotate-widget.php:140
390
  msgid "Fill in the ID of the type you want to display!"
391
  msgstr "Popunite ID tipa koji želite da prikažete!"
392
 
@@ -776,8 +776,8 @@ msgstr "Brisanje grupe"
776
  msgid "Role to delete groups."
777
  msgstr "Uloga za brisanje grupe ."
778
 
779
- #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
780
- #: adrotate.php:890
781
  msgid "Update Options"
782
  msgstr "Update opcije"
783
 
@@ -959,7 +959,7 @@ msgstr ""
959
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
960
  "uvek ! )"
961
 
962
- #: adrotate.php:760 adrotate.php:771
963
  #, fuzzy
964
  msgid "NOTICE:"
965
  msgstr ""
@@ -969,7 +969,7 @@ msgstr ""
969
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
970
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
971
 
972
- #: adrotate.php:761
973
  msgid ""
974
  "You have enabled W3 Total Caching support but not defined the security hash. "
975
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -977,34 +977,15 @@ msgid ""
977
  "needs to be enabled in W3 Total Cache as well too."
978
  msgstr ""
979
 
980
- #: adrotate.php:765
981
  msgid "W3 Total Caching"
982
  msgstr "W3 Total Caching"
983
 
984
- #: adrotate.php:766
985
  msgid "Check this box if you use W3 Total Caching on your site."
986
  msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
987
 
988
- #: adrotate.php:772
989
- msgid ""
990
- "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
991
- "this function will not work. WP Super Cache has discontinued support for "
992
- "dynamic content."
993
- msgstr ""
994
-
995
- #: adrotate.php:776
996
- #, fuzzy
997
- msgid "WP Super Cache"
998
- msgstr ""
999
- "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
1000
- "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
1001
-
1002
- #: adrotate.php:777
1003
- #, fuzzy
1004
- msgid "Check this box if you use WP Super Cache on your site."
1005
- msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
1006
-
1007
- #: adrotate.php:782
1008
  msgid ""
1009
  "It may take a while for the ad to start rotating. The caching plugin needs "
1010
  "to refresh the cache. This can take up to a week if not done manually."
@@ -1012,7 +993,7 @@ msgstr ""
1012
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
1013
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
1014
 
1015
- #: adrotate.php:782
1016
  msgid ""
1017
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1018
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -1020,32 +1001,32 @@ msgstr ""
1020
  "Hvatanje podrške radi samo za [kratke brojeve] i AdRotate Widget . Ako "
1021
  "koristite PHP Snippet treba da zamotate svoj PHP u isključenju svog koda."
1022
 
1023
- #: adrotate.php:786
1024
  msgid "Javascript"
1025
  msgstr ""
1026
 
1027
- #: adrotate.php:789
1028
  #, fuzzy
1029
  msgid "Load jQuery"
1030
  msgstr ""
1031
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1032
  "Default: 6."
1033
 
1034
- #: adrotate.php:790
1035
  #, fuzzy
1036
  msgid ""
1037
  "jQuery is required for all Javascript features below. Enable this if your "
1038
  "theme does not load jQuery already."
1039
  msgstr "Praćenje klikom:"
1040
 
1041
- #: adrotate.php:793
1042
  #, fuzzy
1043
  msgid "Load in footer?"
1044
  msgstr ""
1045
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1046
  "Default: 6."
1047
 
1048
- #: adrotate.php:794
1049
  #, fuzzy
1050
  msgid ""
1051
  "Enable if you want to load the above libraries in the footer. Your theme "
@@ -1056,11 +1037,11 @@ msgstr ""
1056
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
1057
  "detalja !"
1058
 
1059
- #: adrotate.php:802
1060
  msgid "Maintenance"
1061
  msgstr "Održavanje"
1062
 
1063
- #: adrotate.php:803
1064
  #, fuzzy
1065
  msgid ""
1066
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
@@ -1075,19 +1056,19 @@ msgstr ""
1075
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
1076
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
1077
 
1078
- #: adrotate.php:818 adrotate.php:820
1079
  msgid "Optimize Database"
1080
  msgstr "Optimizacija baze podataka"
1081
 
1082
- #: adrotate.php:820
1083
  msgid "You are about to optimize the AdRotate database."
1084
  msgstr "Na putu ste da optimizirate AdRotate bazu podataka ."
1085
 
1086
- #: adrotate.php:820
1087
  msgid "Did you make a backup of your database?"
1088
  msgstr "Da li ste napravili rezervnu kopiju baze podataka ?"
1089
 
1090
- #: adrotate.php:820
1091
  msgid ""
1092
  "This may take a moment and may cause your website to respond slow "
1093
  "temporarily!"
@@ -1095,16 +1076,16 @@ msgstr ""
1095
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
1096
  "sporo privremeno !"
1097
 
1098
- #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1099
  #: dashboard/publisher/adrotate-groups-main.php:24
1100
  msgid "OK to continue, CANCEL to stop."
1101
  msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
1102
 
1103
- #: adrotate.php:821
1104
  msgid "Cleans up overhead data in the AdRotate tables."
1105
  msgstr "Čiste se režijski podaci u tabelama AdRotate ."
1106
 
1107
- #: adrotate.php:822
1108
  msgid ""
1109
  "Overhead data is accumulated garbage resulting from many changes you've "
1110
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1112,68 +1093,68 @@ msgstr ""
1112
  "Opšti podaci se akumulira smeća usled mnogih promena koje ste napravili . "
1113
  "Ovo može da varira od nule do nekoliko stotina KiB podataka ."
1114
 
1115
- #: adrotate.php:826 adrotate.php:828
1116
  msgid "Clean-up Database"
1117
  msgstr "Čišćenje baze"
1118
 
1119
- #: adrotate.php:828
1120
  #, fuzzy
1121
  msgid ""
1122
  "You are about to clean up your database. This may delete expired schedules "
1123
  "and older statistics."
1124
  msgstr "Čišćenje baze"
1125
 
1126
- #: adrotate.php:828
1127
  #, fuzzy
1128
  msgid "Are you sure you want to continue?"
1129
  msgstr "Popunite ID tipa koji želite da prikažete!"
1130
 
1131
- #: adrotate.php:828 adrotate.php:836
1132
  #, fuzzy
1133
  msgid "This might take a while and may slow down your site during this action!"
1134
  msgstr ""
1135
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
1136
  "sporo privremeno !"
1137
 
1138
- #: adrotate.php:829
1139
  #, fuzzy
1140
  msgid "Delete stats older than 356 days (Optional)."
1141
  msgstr "Uloga obrisati oglase i resetovanje ."
1142
 
1143
- #: adrotate.php:830
1144
  #, fuzzy
1145
  msgid ""
1146
  "AdRotate creates empty records when you start making ads or groups. In rare "
1147
  "occasions these records are faulty."
1148
  msgstr "Prazni zapisi baze podataka uklanjaju"
1149
 
1150
- #: adrotate.php:830
1151
  #, fuzzy
1152
  msgid ""
1153
  "If you made an ad or group that does not save when you make it use this "
1154
  "button to delete those empty records."
1155
  msgstr "Vi ste na putu da izbrišete grupu"
1156
 
1157
- #: adrotate.php:830
1158
  #, fuzzy
1159
  msgid ""
1160
  "Additionally you can clean up old statistics. This will improve the speed of "
1161
  "your site."
1162
  msgstr "Čišćenje baze"
1163
 
1164
- #: adrotate.php:834
1165
  msgid "Re-evaluate Ads"
1166
  msgstr "Ponovo ocenjeni oglasi"
1167
 
1168
- #: adrotate.php:836
1169
  msgid "Re-evaluate all ads"
1170
  msgstr "Ponovo ocenite sve oglase"
1171
 
1172
- #: adrotate.php:836
1173
  msgid "You are about to check all ads for errors."
1174
  msgstr "Vi ste o tome da proveri sve oglase za greške ."
1175
 
1176
- #: adrotate.php:837
1177
  msgid ""
1178
  "This will apply all evaluation rules to all ads to see if any error slipped "
1179
  "in. Normally you should not need this feature."
@@ -1181,7 +1162,7 @@ msgstr ""
1181
  "Ovo će primeniti sva pravila za ocenjivanje na sve oglase da vidim da li "
1182
  "bilo koja greška okliznuo unutra Normalno ne bi trebalo ovu funkciju ."
1183
 
1184
- #: adrotate.php:841
1185
  msgid ""
1186
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1187
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1198,45 +1179,45 @@ msgstr ""
1198
  "već nepopravljivo . Tvrdeći da je radio pre nego što kliknete na ovu dugmad "
1199
  "nijevažna stvar u svakom slučaju ."
1200
 
1201
- #: adrotate.php:849
1202
  msgid "Troubleshooting"
1203
  msgstr "Rešavanje problema"
1204
 
1205
- #: adrotate.php:852
1206
  msgid "Current version:"
1207
  msgstr "Trenutna verzija :"
1208
 
1209
- #: adrotate.php:853
1210
  msgid "Previous version:"
1211
  msgstr "Prethodna verzija :"
1212
 
1213
- #: adrotate.php:856
1214
  msgid "Current database version:"
1215
  msgstr "Trenutna verzija baze podataka :"
1216
 
1217
- #: adrotate.php:857
1218
  msgid "Previous database version:"
1219
  msgstr "Prethodna verzija baze podataka :"
1220
 
1221
- #: adrotate.php:860
1222
  #, fuzzy
1223
  msgid "Ad evaluation next run:"
1224
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
1225
 
1226
- #: adrotate.php:861 adrotate.php:865
1227
  msgid "Not scheduled!"
1228
  msgstr "Nije planirano:"
1229
 
1230
- #: adrotate.php:864
1231
  msgid "Clean Trackerdata next run:"
1232
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
1233
 
1234
- #: adrotate.php:868
1235
  #, fuzzy
1236
  msgid "Current status of adverts"
1237
  msgstr "Trenutni raspored"
1238
 
1239
- #: adrotate.php:869
1240
  #, fuzzy
1241
  msgid "Normal"
1242
  msgstr ""
@@ -1245,27 +1226,27 @@ msgstr ""
1245
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
1246
  "normalnu upotrebu oni treba da budu levo neprovereni "
1247
 
1248
- #: adrotate.php:869
1249
  #, fuzzy
1250
  msgid "Error"
1251
  msgstr "Nepoznati error se ukazao."
1252
 
1253
- #: adrotate.php:869
1254
  #, fuzzy
1255
  msgid "Expired"
1256
  msgstr "Isteklo je."
1257
 
1258
- #: adrotate.php:869
1259
  #, fuzzy
1260
  msgid "Expires Soon"
1261
  msgstr "Ističe uskoro."
1262
 
1263
- #: adrotate.php:869
1264
  #, fuzzy
1265
  msgid "Unknown Status"
1266
  msgstr "Nepoznati error se ukazao."
1267
 
1268
- #: adrotate.php:872
1269
  msgid ""
1270
  "NOTE: The below options are not meant for normal use and are only there for "
1271
  "developers to review saved settings or how ads are selected. These can be "
@@ -1277,190 +1258,198 @@ msgstr ""
1277
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
1278
  "normalnu upotrebu oni treba da budu levo neprovereni "
1279
 
1280
- #: adrotate.php:876
1281
  msgid "Developer Debug"
1282
  msgstr "Debug za programera"
1283
 
1284
- #: adrotate.php:878
1285
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1286
  msgstr ""
1287
  "Rešavanje problema sa oglasima i kako ( ako ) su odabrani, ima prednji kraj "
1288
  "izlaza ."
1289
 
1290
- #: adrotate.php:879
1291
  msgid "Show all settings, dashboard routines and related values."
1292
  msgstr "Pokaži sve parametre , Dashboard rutine i srodnih vrednosti ."
1293
 
1294
- #: adrotate.php:880
1295
  msgid "Show array of all userroles and capabilities."
1296
  msgstr "Prikaži niz svih uloga korisnika i mogućnosti."
1297
 
1298
- #: adrotate.php:881
1299
  msgid "Review saved advertisers! Visible to advertisers."
1300
  msgstr "Pregled sačuvanih oglašivača ! Vidljivo oglašivačima"
1301
 
1302
- #: adrotate.php:882
1303
  #, fuzzy
1304
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1305
  msgstr ""
1306
  "Pregled globalna statistike , po oglasu / grupa / blok statistika . Vidljivo "
1307
  "samo izdavačima ."
1308
 
1309
- #: adrotate.php:883
1310
  #, fuzzy
1311
  msgid ""
1312
  "Disable timers for clicks and impressions and enable a alert window for "
1313
  "clicktracking."
1314
  msgstr "Pratite klikove i prikaze ."
1315
 
1316
- #: adrotate.php:884
1317
  msgid "Temporarily disable encryption on the redirect url."
1318
  msgstr "Privremeno onemogući šifrovanje na URL adresu za preusmeravanje ."
1319
 
1320
- #: dashboard/adrotate-info.php:65
1321
  msgid "Currently"
1322
  msgstr "Trenutno"
1323
 
1324
- #: dashboard/adrotate-info.php:71
1325
  msgid "Your setup"
1326
  msgstr "Vaš pristup"
1327
 
1328
- #: dashboard/adrotate-info.php:72
1329
  msgid "Adverts that need you"
1330
  msgstr "Oglasi koji su vam potrebni"
1331
 
1332
- #: dashboard/adrotate-info.php:78
1333
  msgid "Adverts"
1334
  msgstr "Oglasi"
1335
 
1336
- #: dashboard/adrotate-info.php:79
1337
  msgid "(Almost) Expired"
1338
  msgstr "( Skoro ) Isteklo"
1339
 
1340
- #: dashboard/adrotate-info.php:82
1341
  msgid "Groups"
1342
  msgstr "Grupe"
1343
 
1344
- #: dashboard/adrotate-info.php:83
1345
  msgid "Have errors"
1346
  msgstr "Ima greške"
1347
 
1348
- #: dashboard/adrotate-info.php:87
1349
  msgid "Queued"
1350
  msgstr "Zahtevi"
1351
 
1352
- #: dashboard/adrotate-info.php:93
1353
  msgid "The last few days"
1354
  msgstr "Poslednjih nekoliko dana"
1355
 
1356
- #: dashboard/adrotate-info.php:132
1357
  msgid "Support AdRotate"
1358
  msgstr "AdRotate podrška"
1359
 
1360
- #: dashboard/adrotate-info.php:139
1361
  msgid "Your gift helps ensure the continued development of AdRotate!"
1362
  msgstr ""
1363
 
1364
- #: dashboard/adrotate-info.php:139
1365
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1366
  msgstr ""
1367
 
1368
- #: dashboard/adrotate-info.php:148
1369
  msgid "AdRotate News and Developer Blog"
1370
  msgstr "AdRotate novosti i blog za programere"
1371
 
1372
  #: dashboard/adrotate-info.php:168
 
 
 
 
 
 
 
 
1373
  #, fuzzy
1374
  msgid "Get more features with AdRotate Pro"
1375
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
1376
 
1377
- #: dashboard/adrotate-info.php:171
1378
  msgid ""
1379
  "Benefit from extra features to reinforce your income with advertising "
1380
  "campaigns. Make the most of your website with the powerful tools AdRotate "
1381
  "Pro offers on top of the trusted features included in the free version."
1382
  msgstr ""
1383
 
1384
- #: dashboard/adrotate-info.php:171
1385
  msgid "Want to know more about"
1386
  msgstr ""
1387
 
1388
- #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1389
  #, fuzzy
1390
  msgid "Buy AdRotate Professional"
1391
  msgstr "Kupite odmah"
1392
 
1393
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1394
- msgid "Singe License"
1395
  msgstr ""
1396
 
1397
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1398
  #, fuzzy
1399
  msgid "For one WordPress installation."
1400
  msgstr "Instalacije"
1401
 
1402
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1403
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1404
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1405
- #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1406
- #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1407
  #, fuzzy
1408
  msgid "Buy now"
1409
  msgstr "Kupite odmah"
1410
 
1411
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1412
  msgid "Duo License"
1413
  msgstr ""
1414
 
1415
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1416
  #, fuzzy
1417
  msgid "For two WordPress installations."
1418
  msgstr "Instalacije"
1419
 
1420
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1421
  msgid "Multi License"
1422
  msgstr ""
1423
 
1424
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1425
  #, fuzzy
1426
  msgid " For up to five WordPress installations."
1427
  msgstr "Instalacije"
1428
 
1429
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1430
  #, fuzzy
1431
  msgid "Developer License"
1432
  msgstr "Debug za programera"
1433
 
1434
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1435
  msgid "Unlimited WordPress installations and/or networks."
1436
  msgstr ""
1437
 
1438
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1439
  msgid "Network License"
1440
  msgstr ""
1441
 
1442
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1443
  msgid "Set up your own advertising network on a WordPress Multisite."
1444
  msgstr ""
1445
 
1446
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1447
  msgid "Compare licenses"
1448
  msgstr ""
1449
 
1450
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1451
  msgid "Not sure which license is for you? Compare them..."
1452
  msgstr ""
1453
 
1454
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1455
  #, fuzzy
1456
  msgid "All Licenses"
1457
  msgstr "Ponovo ocenite sve oglase"
1458
 
1459
- #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
1460
  msgid "AdRotate is brought to you by"
1461
  msgstr "AdRotate vam je omogućio"
1462
 
1463
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1464
  msgid ""
1465
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1466
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1471,11 +1460,11 @@ msgstr ""
1471
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
1472
  "detalja !"
1473
 
1474
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1475
  msgid "Find out more"
1476
  msgstr "Saznajte više"
1477
 
1478
- #: dashboard/adrotate-info.php:194
1479
  msgid "Follow"
1480
  msgstr ""
1481
 
@@ -1492,51 +1481,59 @@ msgid ""
1492
  "can see their adverts performance."
1493
  msgstr ""
1494
 
1495
- #: dashboard/adrotate-pro.php:28
1496
  msgid "Localize your ad campaigns with Geo Targeting"
1497
  msgstr ""
1498
 
1499
- #: dashboard/adrotate-pro.php:31
1500
  msgid ""
1501
  "Go nationwide or global with localized adverts for your various audiences. "
1502
  "Set up adverts for countries and cities and sell impressions per general "
1503
- "area. Connect your site to MaxMinds GeoIP2: Precision, FreegeoIP (MaxMind "
1504
- "GeoLITE) or GeoBytes GeoSelect services."
1505
  msgstr ""
1506
 
1507
- #: dashboard/adrotate-pro.php:36
1508
  msgid "Get Premium Support almost all year round"
1509
  msgstr ""
1510
 
1511
- #: dashboard/adrotate-pro.php:39
1512
  msgid ""
1513
- "When you activate your AdRotate Pro license you are entitled to ticket "
1514
- "support. AdRotate premium support which takes priority over the Forums and "
1515
- "even email. Get a solution (usually) within a day."
 
1516
  msgstr ""
1517
 
1518
- #: dashboard/adrotate-pro.php:60
1519
  msgid "Schedule all campaigns with ease"
1520
  msgstr ""
1521
 
1522
- #: dashboard/adrotate-pro.php:63
1523
  msgid ""
1524
- "Schedule your adverts and set up advertising campaigns based on date without "
1525
- "hassle. Seasonal adverts, weekly adverts. You name it. AdRotate schedules it."
 
 
1526
  msgstr ""
1527
 
1528
- #: dashboard/adrotate-pro.php:68
1529
- #, fuzzy
1530
- msgid "Stay up-to-date with the notification system"
1531
- msgstr "Oglasi koje treba neposrednu pažnju"
1532
 
1533
- #: dashboard/adrotate-pro.php:71
1534
  msgid ""
1535
- "Stay in touch with Email and/or push notifications. Get notified when "
 
 
1536
  "adverts expire, have errors or when advertisers create new adverts. Never "
1537
  "miss an expiration date again."
1538
  msgstr ""
1539
 
 
 
 
 
1540
  #: dashboard/publisher/adrotate-ads-edit.php:46
1541
  msgid "The AdCode cannot be empty!"
1542
  msgstr "AdCode ne može biti prazan !"
@@ -2561,6 +2558,20 @@ msgstr "Grupa nije napravljena!"
2561
  msgid "Statistics for group"
2562
  msgstr "Sttistike za"
2563
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2564
  #~ msgid "Title:"
2565
  #~ msgstr "Naslov :"
2566
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-30 02:48+0100\n"
6
+ "PO-Revision-Date: 2015-05-30 02:48+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.8.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:796
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
+ #: adrotate-functions.php:799
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
+ #: adrotate-output.php:735
28
  msgid "Oh no! Something went wrong!"
29
  msgstr "O ne! Nešto nije kako treba!"
30
 
31
+ #: adrotate-output.php:736
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:737
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:738
47
  msgid "Contact support if the issue persists:"
48
  msgstr "Kontaktirajte podršku ako se problem nastavi:"
49
 
50
+ #: adrotate-output.php:756
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:758
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:765 adrotate-output.php:767
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:773
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:779
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:784
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:790
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:790
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:796
97
  msgid "An unknown error occured."
98
  msgstr "Nepoznati error se ukazao."
99
 
100
+ #: adrotate-output.php:821
101
  msgid "active ad(s) expired."
102
  msgstr "aktivni ad-ovi su istekli."
103
 
104
+ #: adrotate-output.php:821
105
  msgid "Take action now"
106
  msgstr "Reagujte odmah"
107
 
108
+ #: adrotate-output.php:823
109
  msgid "active ad(s) are about to expire."
110
  msgstr "aktivni ad-ovi će uskoro da isteknu."
111
 
112
+ #: adrotate-output.php:823
113
  msgid "Check it out"
114
  msgstr "Pogledajte ovde"
115
 
116
+ #: adrotate-output.php:825
117
  msgid "active ad(s) with configuration errors."
118
  msgstr "aktivni ad-ovi sa konfiguracionim greškama."
119
 
120
+ #: adrotate-output.php:825
121
  msgid "Solve this"
122
  msgstr "Reši ovo"
123
 
124
+ #: adrotate-output.php:827
125
  msgid "ad(s) expired."
126
  msgstr "ad-ovi su istekli."
127
 
128
+ #: adrotate-output.php:827
129
  msgid "ad(s) are about to expire."
130
  msgstr "ad-ovi će uskoro da isteknu."
131
 
132
+ #: adrotate-output.php:827
133
  msgid "ad(s) with configuration errors."
134
  msgstr "ad-ovi sa konfiguracionim greškama."
135
 
136
+ #: adrotate-output.php:827
137
  msgid "Fix this as soon as possible"
138
  msgstr "Popravi ovo što pre je moguće"
139
 
140
+ #: adrotate-output.php:839
141
  #, fuzzy
142
  msgid "Learn More"
143
  msgstr "Saznajte više"
144
 
145
+ #: adrotate-output.php:840
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:840
152
  msgid "Get more features to even better run your advertising campaigns."
153
  msgstr ""
154
 
155
+ #: adrotate-output.php:840
156
  msgid "Thank you for your consideration!"
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:884
160
  msgid ""
161
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
162
  "this menu. Check out the"
163
  msgstr ""
164
 
165
+ #: adrotate-output.php:884
166
  msgid "manuals"
167
  msgstr "priručnici"
168
 
169
+ #: adrotate-output.php:884 adrotate-output.php:960
170
  #: dashboard/publisher/adrotate-ads-edit.php:151
171
  msgid "and"
172
  msgstr ""
173
 
174
+ #: adrotate-output.php:884
175
  msgid "forums"
176
  msgstr ""
177
 
178
+ #: adrotate-output.php:920
179
  #, fuzzy
180
  msgid "Useful Links"
181
  msgstr "Korisni linkovi"
182
 
183
+ #: adrotate-output.php:921
184
  msgid "Useful links to learn more about AdRotate"
185
  msgstr ""
186
 
187
+ #: adrotate-output.php:923
188
  #, fuzzy
189
  msgid "AdRotate Page"
190
  msgstr "AdRotate Pro"
191
 
192
+ #: adrotate-output.php:924
193
  #, fuzzy
194
  msgid "Getting Started With AdRotate"
195
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
196
 
197
+ #: adrotate-output.php:925
198
  #, fuzzy
199
  msgid "AdRotate manuals"
200
  msgstr "AdRotate informacije"
201
 
202
+ #: adrotate-output.php:926
203
  #, fuzzy
204
  msgid "AdRotate Support Forum"
205
  msgstr "AdRotate prodavnica"
206
 
207
+ #: adrotate-output.php:952
208
  #, fuzzy
209
  msgid "Help AdRotate Grow"
210
  msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
211
 
212
+ #: adrotate-output.php:953
213
  msgid "Brought to you by"
214
  msgstr "Za tebe od"
215
 
216
+ #: adrotate-output.php:960
217
  msgid ""
218
  "A lot of users only think to review AdRotate when something goes wrong while "
219
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
220
  msgstr ""
221
 
222
+ #: adrotate-output.php:960
223
  msgid "If you find AdRotate useful please leave your honest"
224
  msgstr ""
225
 
226
+ #: adrotate-output.php:960
227
  msgid "rating"
228
  msgstr ""
229
 
230
+ #: adrotate-output.php:960
231
  #, fuzzy
232
  msgid "review"
233
  msgstr "Dajte ocenu i komentar"
234
 
235
+ #: adrotate-output.php:960
236
  msgid "on WordPress.org to help AdRotate grow in a positive way"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:963
240
  #, fuzzy
241
  msgid ""
242
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
247
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
248
  "detalja !"
249
 
250
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
251
  msgid "Visit the"
252
  msgstr "Posetite"
253
 
254
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
255
  msgid "website"
256
  msgstr "websajt"
257
 
258
+ #: adrotate-output.php:993 dashboard/publisher/adrotate-ads-edit.php:313
259
  msgid "Available in AdRotate Pro"
260
  msgstr "Dostupno u AdRotate Pro"
261
 
262
+ #: adrotate-output.php:993
263
  #, fuzzy
264
  msgid "More information..."
265
  msgstr "Saznajte više"
266
 
267
+ #: adrotate-output.php:994
268
  msgid "This feature is available in AdRotate Pro"
269
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
270
 
271
+ #: adrotate-output.php:994
272
  msgid "Learn more"
273
  msgstr "Saznajte više"
274
 
344
  msgid "Next"
345
  msgstr "Sledeći"
346
 
347
+ #: adrotate-statistics.php:284 dashboard/adrotate-info.php:125
348
  msgid "No data to show!"
349
  msgstr "Nema podataka za prikaz!"
350
 
351
+ #: adrotate-widget.php:112
352
  msgid "Title (optional):"
353
  msgstr "Naslov (opcionalno):"
354
 
355
+ #: adrotate-widget.php:115
356
  msgid "HTML will be stripped out."
357
  msgstr "HTML će biti skinut."
358
 
359
+ #: adrotate-widget.php:118
360
  #, fuzzy
361
  msgid "Description (optional):"
362
  msgstr "Naslov (opcionalno):"
363
 
364
+ #: adrotate-widget.php:121
365
  #, fuzzy
366
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
367
  msgstr "HTML će biti skinut."
368
 
369
+ #: adrotate-widget.php:124
370
  msgid "Type:"
371
  msgstr "Tip:"
372
 
373
+ #: adrotate-widget.php:126
374
  msgid "Single Ad - Use Ad ID"
375
  msgstr "Single oglas- koristi Ad ID"
376
 
377
+ #: adrotate-widget.php:127
378
  msgid "Group of Ads - Use group ID"
379
  msgstr "Gupni oglasi - Koristite grupni ID"
380
 
381
+ #: adrotate-widget.php:130
382
  msgid "Choose what you want to use this widget for"
383
  msgstr "Izaberite za šta želite da koristite ovaj widget "
384
 
385
+ #: adrotate-widget.php:133
386
  msgid "ID:"
387
  msgstr "ID:"
388
 
389
+ #: adrotate-widget.php:136
390
  msgid "Fill in the ID of the type you want to display!"
391
  msgstr "Popunite ID tipa koji želite da prikažete!"
392
 
776
  msgid "Role to delete groups."
777
  msgstr "Uloga za brisanje grupe ."
778
 
779
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:784 adrotate.php:831
780
+ #: adrotate.php:875
781
  msgid "Update Options"
782
  msgstr "Update opcije"
783
 
959
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
960
  "uvek ! )"
961
 
962
+ #: adrotate.php:758
963
  #, fuzzy
964
  msgid "NOTICE:"
965
  msgstr ""
969
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
970
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
971
 
972
+ #: adrotate.php:759
973
  msgid ""
974
  "You have enabled W3 Total Caching support but not defined the security hash. "
975
  "You need to add the following line to your wp-config.php near the bottom or "
977
  "needs to be enabled in W3 Total Cache as well too."
978
  msgstr ""
979
 
980
+ #: adrotate.php:762
981
  msgid "W3 Total Caching"
982
  msgstr "W3 Total Caching"
983
 
984
+ #: adrotate.php:763
985
  msgid "Check this box if you use W3 Total Caching on your site."
986
  msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
987
 
988
+ #: adrotate.php:767
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
989
  msgid ""
990
  "It may take a while for the ad to start rotating. The caching plugin needs "
991
  "to refresh the cache. This can take up to a week if not done manually."
993
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
994
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
995
 
996
+ #: adrotate.php:767
997
  msgid ""
998
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
999
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
1001
  "Hvatanje podrške radi samo za [kratke brojeve] i AdRotate Widget . Ako "
1002
  "koristite PHP Snippet treba da zamotate svoj PHP u isključenju svog koda."
1003
 
1004
+ #: adrotate.php:771
1005
  msgid "Javascript"
1006
  msgstr ""
1007
 
1008
+ #: adrotate.php:774
1009
  #, fuzzy
1010
  msgid "Load jQuery"
1011
  msgstr ""
1012
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1013
  "Default: 6."
1014
 
1015
+ #: adrotate.php:775
1016
  #, fuzzy
1017
  msgid ""
1018
  "jQuery is required for all Javascript features below. Enable this if your "
1019
  "theme does not load jQuery already."
1020
  msgstr "Praćenje klikom:"
1021
 
1022
+ #: adrotate.php:778
1023
  #, fuzzy
1024
  msgid "Load in footer?"
1025
  msgstr ""
1026
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1027
  "Default: 6."
1028
 
1029
+ #: adrotate.php:779
1030
  #, fuzzy
1031
  msgid ""
1032
  "Enable if you want to load the above libraries in the footer. Your theme "
1037
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
1038
  "detalja !"
1039
 
1040
+ #: adrotate.php:787
1041
  msgid "Maintenance"
1042
  msgstr "Održavanje"
1043
 
1044
+ #: adrotate.php:788
1045
  #, fuzzy
1046
  msgid ""
1047
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1056
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
1057
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
1058
 
1059
+ #: adrotate.php:803 adrotate.php:805
1060
  msgid "Optimize Database"
1061
  msgstr "Optimizacija baze podataka"
1062
 
1063
+ #: adrotate.php:805
1064
  msgid "You are about to optimize the AdRotate database."
1065
  msgstr "Na putu ste da optimizirate AdRotate bazu podataka ."
1066
 
1067
+ #: adrotate.php:805
1068
  msgid "Did you make a backup of your database?"
1069
  msgstr "Da li ste napravili rezervnu kopiju baze podataka ?"
1070
 
1071
+ #: adrotate.php:805
1072
  msgid ""
1073
  "This may take a moment and may cause your website to respond slow "
1074
  "temporarily!"
1076
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
1077
  "sporo privremeno !"
1078
 
1079
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1080
  #: dashboard/publisher/adrotate-groups-main.php:24
1081
  msgid "OK to continue, CANCEL to stop."
1082
  msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
1083
 
1084
+ #: adrotate.php:806
1085
  msgid "Cleans up overhead data in the AdRotate tables."
1086
  msgstr "Čiste se režijski podaci u tabelama AdRotate ."
1087
 
1088
+ #: adrotate.php:807
1089
  msgid ""
1090
  "Overhead data is accumulated garbage resulting from many changes you've "
1091
  "made. This can vary from nothing to hundreds of KiB of data."
1093
  "Opšti podaci se akumulira smeća usled mnogih promena koje ste napravili . "
1094
  "Ovo može da varira od nule do nekoliko stotina KiB podataka ."
1095
 
1096
+ #: adrotate.php:811 adrotate.php:813
1097
  msgid "Clean-up Database"
1098
  msgstr "Čišćenje baze"
1099
 
1100
+ #: adrotate.php:813
1101
  #, fuzzy
1102
  msgid ""
1103
  "You are about to clean up your database. This may delete expired schedules "
1104
  "and older statistics."
1105
  msgstr "Čišćenje baze"
1106
 
1107
+ #: adrotate.php:813
1108
  #, fuzzy
1109
  msgid "Are you sure you want to continue?"
1110
  msgstr "Popunite ID tipa koji želite da prikažete!"
1111
 
1112
+ #: adrotate.php:813 adrotate.php:821
1113
  #, fuzzy
1114
  msgid "This might take a while and may slow down your site during this action!"
1115
  msgstr ""
1116
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
1117
  "sporo privremeno !"
1118
 
1119
+ #: adrotate.php:814
1120
  #, fuzzy
1121
  msgid "Delete stats older than 356 days (Optional)."
1122
  msgstr "Uloga obrisati oglase i resetovanje ."
1123
 
1124
+ #: adrotate.php:815
1125
  #, fuzzy
1126
  msgid ""
1127
  "AdRotate creates empty records when you start making ads or groups. In rare "
1128
  "occasions these records are faulty."
1129
  msgstr "Prazni zapisi baze podataka uklanjaju"
1130
 
1131
+ #: adrotate.php:815
1132
  #, fuzzy
1133
  msgid ""
1134
  "If you made an ad or group that does not save when you make it use this "
1135
  "button to delete those empty records."
1136
  msgstr "Vi ste na putu da izbrišete grupu"
1137
 
1138
+ #: adrotate.php:815
1139
  #, fuzzy
1140
  msgid ""
1141
  "Additionally you can clean up old statistics. This will improve the speed of "
1142
  "your site."
1143
  msgstr "Čišćenje baze"
1144
 
1145
+ #: adrotate.php:819
1146
  msgid "Re-evaluate Ads"
1147
  msgstr "Ponovo ocenjeni oglasi"
1148
 
1149
+ #: adrotate.php:821
1150
  msgid "Re-evaluate all ads"
1151
  msgstr "Ponovo ocenite sve oglase"
1152
 
1153
+ #: adrotate.php:821
1154
  msgid "You are about to check all ads for errors."
1155
  msgstr "Vi ste o tome da proveri sve oglase za greške ."
1156
 
1157
+ #: adrotate.php:822
1158
  msgid ""
1159
  "This will apply all evaluation rules to all ads to see if any error slipped "
1160
  "in. Normally you should not need this feature."
1162
  "Ovo će primeniti sva pravila za ocenjivanje na sve oglase da vidim da li "
1163
  "bilo koja greška okliznuo unutra Normalno ne bi trebalo ovu funkciju ."
1164
 
1165
+ #: adrotate.php:826
1166
  msgid ""
1167
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1168
  "becomes unusable in any way or by any means in whichever way I will not take "
1179
  "već nepopravljivo . Tvrdeći da je radio pre nego što kliknete na ovu dugmad "
1180
  "nijevažna stvar u svakom slučaju ."
1181
 
1182
+ #: adrotate.php:834
1183
  msgid "Troubleshooting"
1184
  msgstr "Rešavanje problema"
1185
 
1186
+ #: adrotate.php:837
1187
  msgid "Current version:"
1188
  msgstr "Trenutna verzija :"
1189
 
1190
+ #: adrotate.php:838
1191
  msgid "Previous version:"
1192
  msgstr "Prethodna verzija :"
1193
 
1194
+ #: adrotate.php:841
1195
  msgid "Current database version:"
1196
  msgstr "Trenutna verzija baze podataka :"
1197
 
1198
+ #: adrotate.php:842
1199
  msgid "Previous database version:"
1200
  msgstr "Prethodna verzija baze podataka :"
1201
 
1202
+ #: adrotate.php:845
1203
  #, fuzzy
1204
  msgid "Ad evaluation next run:"
1205
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
1206
 
1207
+ #: adrotate.php:846 adrotate.php:850
1208
  msgid "Not scheduled!"
1209
  msgstr "Nije planirano:"
1210
 
1211
+ #: adrotate.php:849
1212
  msgid "Clean Trackerdata next run:"
1213
  msgstr "Očistite Trackerdata u sledećem pokušaju :"
1214
 
1215
+ #: adrotate.php:853
1216
  #, fuzzy
1217
  msgid "Current status of adverts"
1218
  msgstr "Trenutni raspored"
1219
 
1220
+ #: adrotate.php:854
1221
  #, fuzzy
1222
  msgid "Normal"
1223
  msgstr ""
1226
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
1227
  "normalnu upotrebu oni treba da budu levo neprovereni "
1228
 
1229
+ #: adrotate.php:854
1230
  #, fuzzy
1231
  msgid "Error"
1232
  msgstr "Nepoznati error se ukazao."
1233
 
1234
+ #: adrotate.php:854
1235
  #, fuzzy
1236
  msgid "Expired"
1237
  msgstr "Isteklo je."
1238
 
1239
+ #: adrotate.php:854
1240
  #, fuzzy
1241
  msgid "Expires Soon"
1242
  msgstr "Ističe uskoro."
1243
 
1244
+ #: adrotate.php:854
1245
  #, fuzzy
1246
  msgid "Unknown Status"
1247
  msgstr "Nepoznati error se ukazao."
1248
 
1249
+ #: adrotate.php:857
1250
  msgid ""
1251
  "NOTE: The below options are not meant for normal use and are only there for "
1252
  "developers to review saved settings or how ads are selected. These can be "
1258
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
1259
  "normalnu upotrebu oni treba da budu levo neprovereni "
1260
 
1261
+ #: adrotate.php:861
1262
  msgid "Developer Debug"
1263
  msgstr "Debug za programera"
1264
 
1265
+ #: adrotate.php:863
1266
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1267
  msgstr ""
1268
  "Rešavanje problema sa oglasima i kako ( ako ) su odabrani, ima prednji kraj "
1269
  "izlaza ."
1270
 
1271
+ #: adrotate.php:864
1272
  msgid "Show all settings, dashboard routines and related values."
1273
  msgstr "Pokaži sve parametre , Dashboard rutine i srodnih vrednosti ."
1274
 
1275
+ #: adrotate.php:865
1276
  msgid "Show array of all userroles and capabilities."
1277
  msgstr "Prikaži niz svih uloga korisnika i mogućnosti."
1278
 
1279
+ #: adrotate.php:866
1280
  msgid "Review saved advertisers! Visible to advertisers."
1281
  msgstr "Pregled sačuvanih oglašivača ! Vidljivo oglašivačima"
1282
 
1283
+ #: adrotate.php:867
1284
  #, fuzzy
1285
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1286
  msgstr ""
1287
  "Pregled globalna statistike , po oglasu / grupa / blok statistika . Vidljivo "
1288
  "samo izdavačima ."
1289
 
1290
+ #: adrotate.php:868
1291
  #, fuzzy
1292
  msgid ""
1293
  "Disable timers for clicks and impressions and enable a alert window for "
1294
  "clicktracking."
1295
  msgstr "Pratite klikove i prikaze ."
1296
 
1297
+ #: adrotate.php:869
1298
  msgid "Temporarily disable encryption on the redirect url."
1299
  msgstr "Privremeno onemogući šifrovanje na URL adresu za preusmeravanje ."
1300
 
1301
+ #: dashboard/adrotate-info.php:66
1302
  msgid "Currently"
1303
  msgstr "Trenutno"
1304
 
1305
+ #: dashboard/adrotate-info.php:72
1306
  msgid "Your setup"
1307
  msgstr "Vaš pristup"
1308
 
1309
+ #: dashboard/adrotate-info.php:73
1310
  msgid "Adverts that need you"
1311
  msgstr "Oglasi koji su vam potrebni"
1312
 
1313
+ #: dashboard/adrotate-info.php:79
1314
  msgid "Adverts"
1315
  msgstr "Oglasi"
1316
 
1317
+ #: dashboard/adrotate-info.php:80
1318
  msgid "(Almost) Expired"
1319
  msgstr "( Skoro ) Isteklo"
1320
 
1321
+ #: dashboard/adrotate-info.php:83
1322
  msgid "Groups"
1323
  msgstr "Grupe"
1324
 
1325
+ #: dashboard/adrotate-info.php:84
1326
  msgid "Have errors"
1327
  msgstr "Ima greške"
1328
 
1329
+ #: dashboard/adrotate-info.php:88
1330
  msgid "Queued"
1331
  msgstr "Zahtevi"
1332
 
1333
+ #: dashboard/adrotate-info.php:95
1334
  msgid "The last few days"
1335
  msgstr "Poslednjih nekoliko dana"
1336
 
1337
+ #: dashboard/adrotate-info.php:135
1338
  msgid "Support AdRotate"
1339
  msgstr "AdRotate podrška"
1340
 
1341
+ #: dashboard/adrotate-info.php:142
1342
  msgid "Your gift helps ensure the continued development of AdRotate!"
1343
  msgstr ""
1344
 
1345
+ #: dashboard/adrotate-info.php:142
1346
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1347
  msgstr ""
1348
 
1349
+ #: dashboard/adrotate-info.php:151
1350
  msgid "AdRotate News and Developer Blog"
1351
  msgstr "AdRotate novosti i blog za programere"
1352
 
1353
  #: dashboard/adrotate-info.php:168
1354
+ msgid "Get notified of AdRotate updates via Pushover"
1355
+ msgstr ""
1356
+
1357
+ #: dashboard/adrotate-info.php:175
1358
+ msgid "Pushover is a push notification service for iOS and Android!"
1359
+ msgstr ""
1360
+
1361
+ #: dashboard/adrotate-info.php:188
1362
  #, fuzzy
1363
  msgid "Get more features with AdRotate Pro"
1364
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
1365
 
1366
+ #: dashboard/adrotate-info.php:191
1367
  msgid ""
1368
  "Benefit from extra features to reinforce your income with advertising "
1369
  "campaigns. Make the most of your website with the powerful tools AdRotate "
1370
  "Pro offers on top of the trusted features included in the free version."
1371
  msgstr ""
1372
 
1373
+ #: dashboard/adrotate-info.php:191
1374
  msgid "Want to know more about"
1375
  msgstr ""
1376
 
1377
+ #: dashboard/adrotate-info.php:195 dashboard/adrotate-pro.php:72
1378
  #, fuzzy
1379
  msgid "Buy AdRotate Professional"
1380
  msgstr "Kupite odmah"
1381
 
1382
+ #: dashboard/adrotate-info.php:199
1383
+ msgid "Single License"
1384
  msgstr ""
1385
 
1386
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-pro.php:76
1387
  #, fuzzy
1388
  msgid "For one WordPress installation."
1389
  msgstr "Instalacije"
1390
 
1391
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-info.php:200
1392
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-info.php:202
1393
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:76
1394
+ #: dashboard/adrotate-pro.php:77 dashboard/adrotate-pro.php:78
1395
+ #: dashboard/adrotate-pro.php:79 dashboard/adrotate-pro.php:80
1396
  #, fuzzy
1397
  msgid "Buy now"
1398
  msgstr "Kupite odmah"
1399
 
1400
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1401
  msgid "Duo License"
1402
  msgstr ""
1403
 
1404
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1405
  #, fuzzy
1406
  msgid "For two WordPress installations."
1407
  msgstr "Instalacije"
1408
 
1409
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1410
  msgid "Multi License"
1411
  msgstr ""
1412
 
1413
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1414
  #, fuzzy
1415
  msgid " For up to five WordPress installations."
1416
  msgstr "Instalacije"
1417
 
1418
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1419
  #, fuzzy
1420
  msgid "Developer License"
1421
  msgstr "Debug za programera"
1422
 
1423
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1424
  msgid "Unlimited WordPress installations and/or networks."
1425
  msgstr ""
1426
 
1427
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1428
  msgid "Network License"
1429
  msgstr ""
1430
 
1431
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1432
  msgid "Set up your own advertising network on a WordPress Multisite."
1433
  msgstr ""
1434
 
1435
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1436
  msgid "Compare licenses"
1437
  msgstr ""
1438
 
1439
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1440
  msgid "Not sure which license is for you? Compare them..."
1441
  msgstr ""
1442
 
1443
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1444
  #, fuzzy
1445
  msgid "All Licenses"
1446
  msgstr "Ponovo ocenite sve oglase"
1447
 
1448
+ #: dashboard/adrotate-info.php:208 dashboard/adrotate-pro.php:41
1449
  msgid "AdRotate is brought to you by"
1450
  msgstr "AdRotate vam je omogućio"
1451
 
1452
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
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
  "je vaš sajt preseljen/ migrirali u potpunosti . Posetite moj sajt za više "
1461
  "detalja !"
1462
 
1463
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1464
  msgid "Find out more"
1465
  msgstr "Saznajte više"
1466
 
1467
+ #: dashboard/adrotate-info.php:214
1468
  msgid "Follow"
1469
  msgstr ""
1470
 
1481
  "can see their adverts performance."
1482
  msgstr ""
1483
 
1484
+ #: dashboard/adrotate-pro.php:27
1485
  msgid "Localize your ad campaigns with Geo Targeting"
1486
  msgstr ""
1487
 
1488
+ #: dashboard/adrotate-pro.php:30
1489
  msgid ""
1490
  "Go nationwide or global with localized adverts for your various audiences. "
1491
  "Set up adverts for countries and cities and sell impressions per general "
1492
+ "area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
1493
+ "Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
1494
  msgstr ""
1495
 
1496
+ #: dashboard/adrotate-pro.php:34
1497
  msgid "Get Premium Support almost all year round"
1498
  msgstr ""
1499
 
1500
+ #: dashboard/adrotate-pro.php:37
1501
  msgid ""
1502
+ "When you activate your AdRotate Pro license you can use fast and personal "
1503
+ "email support. No more queueing up in the forums. AdRotate premium support "
1504
+ "takes priority over the forums and is checked much more often than the "
1505
+ "forum. Get a solution (usually) within a day."
1506
  msgstr ""
1507
 
1508
+ #: dashboard/adrotate-pro.php:58
1509
  msgid "Schedule all campaigns with ease"
1510
  msgstr ""
1511
 
1512
+ #: dashboard/adrotate-pro.php:61
1513
  msgid ""
1514
+ "Schedule your adverts and set up advertising campaigns based on dates you or "
1515
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
1516
+ "You name it, AdRotate schedules it. This makes planning your revenue stream "
1517
+ "much more easy. You can set one or many schedules for adverts."
1518
  msgstr ""
1519
 
1520
+ #: dashboard/adrotate-pro.php:65
1521
+ msgid "Stay up-to-date with notifications"
1522
+ msgstr ""
 
1523
 
1524
+ #: dashboard/adrotate-pro.php:68
1525
  msgid ""
1526
+ "Stay in touch with Email notifications. Have AdRotate send you an alert when "
1527
+ "adverts expire or need your attention. Additionally, you can have AdRotate "
1528
+ "send push notifications to your iOS or Android smartphone. Get notified when "
1529
  "adverts expire, have errors or when advertisers create new adverts. Never "
1530
  "miss an expiration date again."
1531
  msgstr ""
1532
 
1533
+ #: dashboard/adrotate-pro.php:76
1534
+ msgid "Singe License"
1535
+ msgstr ""
1536
+
1537
  #: dashboard/publisher/adrotate-ads-edit.php:46
1538
  msgid "The AdCode cannot be empty!"
1539
  msgstr "AdCode ne može biti prazan !"
2558
  msgid "Statistics for group"
2559
  msgstr "Sttistike za"
2560
 
2561
+ #, fuzzy
2562
+ #~ msgid "WP Super Cache"
2563
+ #~ msgstr ""
2564
+ #~ "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
2565
+ #~ "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
2566
+
2567
+ #, fuzzy
2568
+ #~ msgid "Check this box if you use WP Super Cache on your site."
2569
+ #~ msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
2570
+
2571
+ #, fuzzy
2572
+ #~ msgid "Stay up-to-date with the notification system"
2573
+ #~ msgstr "Oglasi koje treba neposrednu pažnju"
2574
+
2575
  #~ msgid "Title:"
2576
  #~ msgstr "Naslov :"
2577
 
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-05-15 01:46+0100\n"
6
- "PO-Revision-Date: 2015-05-15 01:46+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.5\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:801
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
- #: adrotate-functions.php:804
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
- #: adrotate-output.php:737
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Åh nej! Något gick fel!"
31
 
32
- #: adrotate-output.php:738
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:739
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:740
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Kontakta support om problemet kvarstår:"
51
 
52
- #: adrotate-output.php:758
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:760
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:767 adrotate-output.php:769
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:775
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:781
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:786
85
  msgid "Error, group does not exist! Check your syntax!"
86
  msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
87
 
88
- #: adrotate-output.php:792
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,155 +93,155 @@ msgstr ""
93
  "Det uppstod ett fel lokalisera databastabeller för AdRotate. Vänligen "
94
  "avaktivera och återaktivera AdRotate från plugin sidan!"
95
 
96
- #: adrotate-output.php:792
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:798
101
  msgid "An unknown error occured."
102
  msgstr "Ett okänt fel uppstod."
103
 
104
- #: adrotate-output.php:823
105
  msgid "active ad(s) expired."
106
  msgstr "aktiv annons (er) gått ut."
107
 
108
- #: adrotate-output.php:823
109
  msgid "Take action now"
110
  msgstr "Agera nu"
111
 
112
- #: adrotate-output.php:825
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:825
117
  msgid "Check it out"
118
  msgstr "Kolla in det"
119
 
120
- #: adrotate-output.php:827
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "aktiv annons(er) med konfigurationsfel."
123
 
124
- #: adrotate-output.php:827
125
  msgid "Solve this"
126
  msgstr "Lös det här"
127
 
128
- #: adrotate-output.php:829
129
  msgid "ad(s) expired."
130
  msgstr "annons(er) gått ut."
131
 
132
- #: adrotate-output.php:829
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:829
137
  msgid "ad(s) with configuration errors."
138
  msgstr "annons (er) med konfigurationsfel."
139
 
140
- #: adrotate-output.php:829
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:841
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Läs mer om"
148
 
149
- #: adrotate-output.php:842
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:842
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
- #: adrotate-output.php:842
160
  #, fuzzy
161
  msgid "Thank you for your consideration!"
162
  msgstr "Tack. Din licens är nu aktiv"
163
 
164
- #: adrotate-output.php:886
165
  msgid ""
166
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
167
  "this menu. Check out the"
168
  msgstr ""
169
 
170
- #: adrotate-output.php:886
171
  msgid "manuals"
172
  msgstr "manual"
173
 
174
- #: adrotate-output.php:886 adrotate-output.php:962
175
  #: dashboard/publisher/adrotate-ads-edit.php:151
176
  msgid "and"
177
  msgstr ""
178
 
179
- #: adrotate-output.php:886
180
  msgid "forums"
181
  msgstr ""
182
 
183
- #: adrotate-output.php:922
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Nyttiga länkar"
187
 
188
- #: adrotate-output.php:923
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
- #: adrotate-output.php:925
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
- #: adrotate-output.php:926
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
201
 
202
- #: adrotate-output.php:927
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "AdRotate Information"
206
 
207
- #: adrotate-output.php:928
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "AdRotate butik"
211
 
212
- #: adrotate-output.php:954
213
  #, fuzzy
214
  msgid "Help AdRotate Grow"
215
  msgstr "Fastnat med AdRotate? Jag hjälper!"
216
 
217
- #: adrotate-output.php:955
218
  msgid "Brought to you by"
219
  msgstr "Presenteras av"
220
 
221
- #: adrotate-output.php:962
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:962
228
  msgid "If you find AdRotate useful please leave your honest"
229
  msgstr ""
230
 
231
- #: adrotate-output.php:962
232
  msgid "rating"
233
  msgstr ""
234
 
235
- #: adrotate-output.php:962
236
  #, fuzzy
237
  msgid "review"
238
  msgstr "Betygsätt och omdöme"
239
 
240
- #: adrotate-output.php:962
241
  msgid "on WordPress.org to help AdRotate grow in a positive way"
242
  msgstr ""
243
 
244
- #: adrotate-output.php:965
245
  msgid ""
246
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
247
  "out more about what I can do for you!"
@@ -249,28 +249,28 @@ msgstr ""
249
  "Du ett steg för webbutveckling, rådgivning och allt Wordpress! Ta reda på "
250
  "mer om vad jag kan göra för dig!"
251
 
252
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
253
  msgid "Visit the"
254
  msgstr "Besök"
255
 
256
- #: adrotate-output.php:965 dashboard/adrotate-info.php:171
257
  msgid "website"
258
  msgstr "hemsida"
259
 
260
- #: adrotate-output.php:995 dashboard/publisher/adrotate-ads-edit.php:313
261
  msgid "Available in AdRotate Pro"
262
  msgstr "Tillgänglig i AdRotate Pro"
263
 
264
- #: adrotate-output.php:995
265
  #, fuzzy
266
  msgid "More information..."
267
  msgstr "Mer info"
268
 
269
- #: adrotate-output.php:996
270
  msgid "This feature is available in AdRotate Pro"
271
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
272
 
273
- #: adrotate-output.php:996
274
  #, fuzzy
275
  msgid "Learn more"
276
  msgstr "Läs mer om"
@@ -347,48 +347,48 @@ msgstr "Den här månaden"
347
  msgid "Next"
348
  msgstr "Nästa"
349
 
350
- #: adrotate-statistics.php:284 dashboard/adrotate-info.php:123
351
  msgid "No data to show!"
352
  msgstr "Inga data att visa!"
353
 
354
- #: adrotate-widget.php:116
355
  msgid "Title (optional):"
356
  msgstr "Titel (valfritt):"
357
 
358
- #: adrotate-widget.php:119
359
  msgid "HTML will be stripped out."
360
  msgstr "HTML kommer att demonteras ut."
361
 
362
- #: adrotate-widget.php:122
363
  msgid "Description (optional):"
364
  msgstr "Beskrivning (valfritt):"
365
 
366
- #: adrotate-widget.php:125
367
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
368
  msgstr ""
369
  "Vad är denna widget till? (Ej analyserad, HTML kommer att demonteras ut.)"
370
 
371
- #: adrotate-widget.php:128
372
  msgid "Type:"
373
  msgstr "Typ:"
374
 
375
- #: adrotate-widget.php:130
376
  msgid "Single Ad - Use Ad ID"
377
  msgstr "Singel annons - Användare och ID"
378
 
379
- #: adrotate-widget.php:131
380
  msgid "Group of Ads - Use group ID"
381
  msgstr "Grupp av annonser - Använd grupp-ID"
382
 
383
- #: adrotate-widget.php:134
384
  msgid "Choose what you want to use this widget for"
385
  msgstr "Välj vad du vill använda denna widget för"
386
 
387
- #: adrotate-widget.php:137
388
  msgid "ID:"
389
  msgstr "ID:"
390
 
391
- #: adrotate-widget.php:140
392
  msgid "Fill in the ID of the type you want to display!"
393
  msgstr "Fyll i ID för den typ som du vill visa!"
394
 
@@ -777,8 +777,8 @@ msgstr "Ta bort grupper"
777
  msgid "Role to delete groups."
778
  msgstr "Role att ta bort grupper."
779
 
780
- #: adrotate.php:680 adrotate.php:744 adrotate.php:799 adrotate.php:846
781
- #: adrotate.php:890
782
  msgid "Update Options"
783
  msgstr "Update Options"
784
 
@@ -953,12 +953,12 @@ msgstr ""
953
  "Aktivera detta för att ta bort utfyllnaden (mellanslag) runt annonser i "
954
  "widgets. (Fungerar inte alltid!)"
955
 
956
- #: adrotate.php:760 adrotate.php:771
957
  #, fuzzy
958
  msgid "NOTICE:"
959
  msgstr "Meddelande"
960
 
961
- #: adrotate.php:761
962
  msgid ""
963
  "You have enabled W3 Total Caching support but not defined the security hash. "
964
  "You need to add the following line to your wp-config.php near the bottom or "
@@ -966,30 +966,15 @@ msgid ""
966
  "needs to be enabled in W3 Total Cache as well too."
967
  msgstr ""
968
 
969
- #: adrotate.php:765
970
  msgid "W3 Total Caching"
971
  msgstr "W3 Total Caching"
972
 
973
- #: adrotate.php:766
974
  msgid "Check this box if you use W3 Total Caching on your site."
975
  msgstr "Markera denna ruta om du använder W3 Total Caching på din webbplats."
976
 
977
- #: adrotate.php:772
978
- msgid ""
979
- "You have enabled WP Super Cache support. If you have version 1.4 or newer, "
980
- "this function will not work. WP Super Cache has discontinued support for "
981
- "dynamic content."
982
- msgstr ""
983
-
984
- #: adrotate.php:776
985
- msgid "WP Super Cache"
986
- msgstr "WP Super Cache"
987
-
988
- #: adrotate.php:777
989
- msgid "Check this box if you use WP Super Cache on your site."
990
- msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
991
-
992
- #: adrotate.php:782
993
  msgid ""
994
  "It may take a while for the ad to start rotating. The caching plugin needs "
995
  "to refresh the cache. This can take up to a week if not done manually."
@@ -998,7 +983,7 @@ msgstr ""
998
  "behöver uppdatera cachen. Detta kan ta upp till en vecka om det inte görs "
999
  "manuellt."
1000
 
1001
- #: adrotate.php:782
1002
  msgid ""
1003
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
1004
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -1006,18 +991,18 @@ msgstr ""
1006
  "Caching stöd fungerar bara för [shortcodes] och AdRotate Widget. Om du "
1007
  "använder ett PHP Snippet måste du svepa din PHP i utanförskap koden själv."
1008
 
1009
- #: adrotate.php:786
1010
  msgid "Javascript"
1011
  msgstr ""
1012
 
1013
- #: adrotate.php:789
1014
  #, fuzzy
1015
  msgid "Load jQuery"
1016
  msgstr ""
1017
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
1018
  "om andra plugins eller teman redan läsa här."
1019
 
1020
- #: adrotate.php:790
1021
  #, fuzzy
1022
  msgid ""
1023
  "jQuery is required for all Javascript features below. Enable this if your "
@@ -1026,24 +1011,24 @@ msgstr ""
1026
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
1027
  "om andra plugins eller teman redan läsa här."
1028
 
1029
- #: adrotate.php:793
1030
  #, fuzzy
1031
  msgid "Load in footer?"
1032
  msgstr ""
1033
  "Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
1034
 
1035
- #: adrotate.php:794
1036
  #, fuzzy
1037
  msgid ""
1038
  "Enable if you want to load the above libraries in the footer. Your theme "
1039
  "needs to call wp_footer() for this to work."
1040
  msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
1041
 
1042
- #: adrotate.php:802
1043
  msgid "Maintenance"
1044
  msgstr "Underhåll"
1045
 
1046
- #: adrotate.php:803
1047
  #, fuzzy
1048
  msgid ""
1049
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
@@ -1058,19 +1043,19 @@ msgstr ""
1058
  "Alltid alltid göra en backup! Dessa funktioner ska användas när du känner "
1059
  "eller märker din databas är långsam, inte svarar och trög."
1060
 
1061
- #: adrotate.php:818 adrotate.php:820
1062
  msgid "Optimize Database"
1063
  msgstr "Optimera Databas"
1064
 
1065
- #: adrotate.php:820
1066
  msgid "You are about to optimize the AdRotate database."
1067
  msgstr "Du håller på att optimera AdRotate databasen."
1068
 
1069
- #: adrotate.php:820
1070
  msgid "Did you make a backup of your database?"
1071
  msgstr "Har du gjort en säkerhetskopia av din databas?"
1072
 
1073
- #: adrotate.php:820
1074
  msgid ""
1075
  "This may take a moment and may cause your website to respond slow "
1076
  "temporarily!"
@@ -1078,16 +1063,16 @@ msgstr ""
1078
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
1079
  "tillfälligt!"
1080
 
1081
- #: adrotate.php:820 adrotate.php:828 adrotate.php:836
1082
  #: dashboard/publisher/adrotate-groups-main.php:24
1083
  msgid "OK to continue, CANCEL to stop."
1084
  msgstr "OK för att fortsätta, CANCEL för att avbryta."
1085
 
1086
- #: adrotate.php:821
1087
  msgid "Cleans up overhead data in the AdRotate tables."
1088
  msgstr "Rensar övervakningsdata i AdRotate tabeller."
1089
 
1090
- #: adrotate.php:822
1091
  msgid ""
1092
  "Overhead data is accumulated garbage resulting from many changes you've "
1093
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -1095,11 +1080,11 @@ msgstr ""
1095
  "Övervaknings uppgifter samlas skräp till följd av många ändringar du har "
1096
  "gjort. Denna kan variera från ingenting till hundratals KiB of data."
1097
 
1098
- #: adrotate.php:826 adrotate.php:828
1099
  msgid "Clean-up Database"
1100
  msgstr "Städa upp Databas"
1101
 
1102
- #: adrotate.php:828
1103
  msgid ""
1104
  "You are about to clean up your database. This may delete expired schedules "
1105
  "and older statistics."
@@ -1107,22 +1092,22 @@ msgstr ""
1107
  "Du håller på att städa upp din databas. Detta kan ta bort utgångna scheman "
1108
  "och äldre statistik."
1109
 
1110
- #: adrotate.php:828
1111
  msgid "Are you sure you want to continue?"
1112
  msgstr "Är du säker på att du vill fortsätta?"
1113
 
1114
- #: adrotate.php:828 adrotate.php:836
1115
  #, fuzzy
1116
  msgid "This might take a while and may slow down your site during this action!"
1117
  msgstr ""
1118
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
1119
  "tillfälligt!"
1120
 
1121
- #: adrotate.php:829
1122
  msgid "Delete stats older than 356 days (Optional)."
1123
  msgstr "Radera statistik äldre än 356 dagar (tillval)."
1124
 
1125
- #: adrotate.php:830
1126
  #, fuzzy
1127
  msgid ""
1128
  "AdRotate creates empty records when you start making ads or groups. In rare "
@@ -1131,7 +1116,7 @@ msgstr ""
1131
  "Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
1132
  "den här knappen för att ta bort de tomma poster."
1133
 
1134
- #: adrotate.php:830
1135
  msgid ""
1136
  "If you made an ad or group that does not save when you make it use this "
1137
  "button to delete those empty records."
@@ -1139,7 +1124,7 @@ msgstr ""
1139
  "Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
1140
  "den här knappen för att ta bort de tomma poster."
1141
 
1142
- #: adrotate.php:830
1143
  msgid ""
1144
  "Additionally you can clean up old statistics. This will improve the speed of "
1145
  "your site."
@@ -1147,22 +1132,22 @@ msgstr ""
1147
  "Ytterligare kan du rensa upp gammal statistik. Detta kommer att förbättra "
1148
  "hastigheten på din webbplats."
1149
 
1150
- #: adrotate.php:834
1151
  #, fuzzy
1152
  msgid "Re-evaluate Ads"
1153
  msgstr "Omvärdera annonser"
1154
 
1155
- #: adrotate.php:836
1156
  #, fuzzy
1157
  msgid "Re-evaluate all ads"
1158
  msgstr "Omvärdera alla annonser"
1159
 
1160
- #: adrotate.php:836
1161
  #, fuzzy
1162
  msgid "You are about to check all ads for errors."
1163
  msgstr "Du håller på att kolla alla annonser för fel."
1164
 
1165
- #: adrotate.php:837
1166
  #, fuzzy
1167
  msgid ""
1168
  "This will apply all evaluation rules to all ads to see if any error slipped "
@@ -1171,7 +1156,7 @@ msgstr ""
1171
  "Detta kommer att gälla alla regler utvärderings alla annonser för att se om "
1172
  "något fel halkade in. Normalt ska du inte behöva den här funktionen."
1173
 
1174
- #: adrotate.php:841
1175
  msgid ""
1176
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1177
  "becomes unusable in any way or by any means in whichever way I will not take "
@@ -1188,64 +1173,64 @@ msgstr ""
1188
  "det fungerade innan du klickar på dessa knappar är inte en giltig punkt i "
1189
  "alla fall."
1190
 
1191
- #: adrotate.php:849
1192
  msgid "Troubleshooting"
1193
  msgstr "Felsökning"
1194
 
1195
- #: adrotate.php:852
1196
  msgid "Current version:"
1197
  msgstr "Aktuell version:"
1198
 
1199
- #: adrotate.php:853
1200
  msgid "Previous version:"
1201
  msgstr "Tidigare version:"
1202
 
1203
- #: adrotate.php:856
1204
  msgid "Current database version:"
1205
  msgstr "Nuvarande databasversion:"
1206
 
1207
- #: adrotate.php:857
1208
  msgid "Previous database version:"
1209
  msgstr "Tidigare databasversion:"
1210
 
1211
- #: adrotate.php:860
1212
  #, fuzzy
1213
  msgid "Ad evaluation next run:"
1214
  msgstr "Annons Meddelanden nästa körning:"
1215
 
1216
- #: adrotate.php:861 adrotate.php:865
1217
  msgid "Not scheduled!"
1218
  msgstr "Inte planerat!"
1219
 
1220
- #: adrotate.php:864
1221
  msgid "Clean Trackerdata next run:"
1222
  msgstr "Rensa Trackerdata nästa körning:"
1223
 
1224
- #: adrotate.php:868
1225
  msgid "Current status of adverts"
1226
  msgstr "Aktuell status för annonser"
1227
 
1228
- #: adrotate.php:869
1229
  msgid "Normal"
1230
  msgstr "Normal"
1231
 
1232
- #: adrotate.php:869
1233
  msgid "Error"
1234
  msgstr "Error"
1235
 
1236
- #: adrotate.php:869
1237
  msgid "Expired"
1238
  msgstr "Utgånget"
1239
 
1240
- #: adrotate.php:869
1241
  msgid "Expires Soon"
1242
  msgstr "Utgår snart"
1243
 
1244
- #: adrotate.php:869
1245
  msgid "Unknown Status"
1246
  msgstr "Okänd status"
1247
 
1248
- #: adrotate.php:872
1249
  msgid ""
1250
  "NOTE: The below options are not meant for normal use and are only there for "
1251
  "developers to review saved settings or how ads are selected. These can be "
@@ -1257,192 +1242,199 @@ msgstr ""
1257
  "väljs. Dessa kan användas som ett mått på felsökning på begäran, men för "
1258
  "normal användning de bör lämnas därhän!"
1259
 
1260
- #: adrotate.php:876
1261
  msgid "Developer Debug"
1262
  msgstr "Utvecklar Debug"
1263
 
1264
- #: adrotate.php:878
1265
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1266
  msgstr "Felsök annonser och hur (om) de är markerade, har front-end-utgång."
1267
 
1268
- #: adrotate.php:879
1269
  msgid "Show all settings, dashboard routines and related values."
1270
  msgstr ""
1271
  "Visa alla inställningar, instrumentpanelen rutiner och tillhörande värden."
1272
 
1273
- #: adrotate.php:880
1274
  msgid "Show array of all userroles and capabilities."
1275
  msgstr "Visa samling av alla userroles och möjligheter."
1276
 
1277
- #: adrotate.php:881
1278
  msgid "Review saved advertisers! Visible to advertisers."
1279
  msgstr "Omdöme sparad annonsörer! Visas för annonsörer."
1280
 
1281
- #: adrotate.php:882
1282
  #, fuzzy
1283
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1284
  msgstr ""
1285
  "Gå igenom global statistik, per annons / grupp / block-statistik. Synlig "
1286
  "endast till förlag."
1287
 
1288
- #: adrotate.php:883
1289
  #, fuzzy
1290
  msgid ""
1291
  "Disable timers for clicks and impressions and enable a alert window for "
1292
  "clicktracking."
1293
  msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
1294
 
1295
- #: adrotate.php:884
1296
  msgid "Temporarily disable encryption on the redirect url."
1297
  msgstr "Inaktivera tillfälligt kryptering på omdirigera url."
1298
 
1299
- #: dashboard/adrotate-info.php:65
1300
  msgid "Currently"
1301
  msgstr "För närvarande"
1302
 
1303
- #: dashboard/adrotate-info.php:71
1304
  msgid "Your setup"
1305
  msgstr "Din installation"
1306
 
1307
- #: dashboard/adrotate-info.php:72
1308
  msgid "Adverts that need you"
1309
  msgstr "Annonser som behöver dig"
1310
 
1311
- #: dashboard/adrotate-info.php:78
1312
  msgid "Adverts"
1313
  msgstr "Annonser"
1314
 
1315
- #: dashboard/adrotate-info.php:79
1316
  msgid "(Almost) Expired"
1317
  msgstr "(Nästan) Expired"
1318
 
1319
- #: dashboard/adrotate-info.php:82
1320
  msgid "Groups"
1321
  msgstr "Grupper"
1322
 
1323
- #: dashboard/adrotate-info.php:83
1324
  msgid "Have errors"
1325
  msgstr "Har fel"
1326
 
1327
- #: dashboard/adrotate-info.php:87
1328
  msgid "Queued"
1329
  msgstr "Queued"
1330
 
1331
- #: dashboard/adrotate-info.php:93
1332
  msgid "The last few days"
1333
  msgstr "De senaste dagarna"
1334
 
1335
- #: dashboard/adrotate-info.php:132
1336
  msgid "Support AdRotate"
1337
  msgstr "Support AdRotate"
1338
 
1339
- #: dashboard/adrotate-info.php:139
1340
  msgid "Your gift helps ensure the continued development of AdRotate!"
1341
  msgstr ""
1342
 
1343
- #: dashboard/adrotate-info.php:139
1344
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1345
  msgstr ""
1346
 
1347
- #: dashboard/adrotate-info.php:148
1348
  msgid "AdRotate News and Developer Blog"
1349
  msgstr "AdRotate Nyheter och Utvecklar Blog"
1350
 
1351
  #: dashboard/adrotate-info.php:168
 
 
 
 
 
 
 
 
1352
  #, fuzzy
1353
  msgid "Get more features with AdRotate Pro"
1354
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1355
 
1356
- #: dashboard/adrotate-info.php:171
1357
  msgid ""
1358
  "Benefit from extra features to reinforce your income with advertising "
1359
  "campaigns. Make the most of your website with the powerful tools AdRotate "
1360
  "Pro offers on top of the trusted features included in the free version."
1361
  msgstr ""
1362
 
1363
- #: dashboard/adrotate-info.php:171
1364
  msgid "Want to know more about"
1365
  msgstr ""
1366
 
1367
- #: dashboard/adrotate-info.php:175 dashboard/adrotate-pro.php:76
1368
  #, fuzzy
1369
  msgid "Buy AdRotate Professional"
1370
  msgstr "Köp nu"
1371
 
1372
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1373
- #, fuzzy
1374
- msgid "Singe License"
1375
- msgstr "AdRotate Licens"
1376
 
1377
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-pro.php:80
1378
  #, fuzzy
1379
  msgid "For one WordPress installation."
1380
  msgstr "Installation"
1381
 
1382
- #: dashboard/adrotate-info.php:179 dashboard/adrotate-info.php:180
1383
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-info.php:182
1384
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:80
1385
- #: dashboard/adrotate-pro.php:81 dashboard/adrotate-pro.php:82
1386
- #: dashboard/adrotate-pro.php:83 dashboard/adrotate-pro.php:84
1387
  #, fuzzy
1388
  msgid "Buy now"
1389
  msgstr "Köp nu"
1390
 
1391
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1392
  #, fuzzy
1393
  msgid "Duo License"
1394
  msgstr "AdRotate Licens"
1395
 
1396
- #: dashboard/adrotate-info.php:180 dashboard/adrotate-pro.php:81
1397
  #, fuzzy
1398
  msgid "For two WordPress installations."
1399
  msgstr "Installation"
1400
 
1401
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1402
  #, fuzzy
1403
  msgid "Multi License"
1404
  msgstr "AdRotate Licens"
1405
 
1406
- #: dashboard/adrotate-info.php:181 dashboard/adrotate-pro.php:82
1407
  #, fuzzy
1408
  msgid " For up to five WordPress installations."
1409
  msgstr "Installation"
1410
 
1411
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1412
  #, fuzzy
1413
  msgid "Developer License"
1414
  msgstr "Utvecklar Debug"
1415
 
1416
- #: dashboard/adrotate-info.php:182 dashboard/adrotate-pro.php:83
1417
  msgid "Unlimited WordPress installations and/or networks."
1418
  msgstr ""
1419
 
1420
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1421
  #, fuzzy
1422
  msgid "Network License"
1423
  msgstr "AdRotate Licens"
1424
 
1425
- #: dashboard/adrotate-info.php:183 dashboard/adrotate-pro.php:84
1426
  msgid "Set up your own advertising network on a WordPress Multisite."
1427
  msgstr ""
1428
 
1429
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1430
  msgid "Compare licenses"
1431
  msgstr ""
1432
 
1433
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1434
  msgid "Not sure which license is for you? Compare them..."
1435
  msgstr ""
1436
 
1437
- #: dashboard/adrotate-info.php:184 dashboard/adrotate-pro.php:85
1438
  msgid "All Licenses"
1439
  msgstr ""
1440
 
1441
- #: dashboard/adrotate-info.php:188 dashboard/adrotate-pro.php:43
1442
  msgid "AdRotate is brought to you by"
1443
  msgstr "AdRotate kommer till dig genom"
1444
 
1445
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1446
  msgid ""
1447
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1448
  "need a custom plugin. Theme customizations or have your site moved/migrated "
@@ -1452,11 +1444,11 @@ msgstr ""
1452
  "behöver en anpassad plugin. Tema anpassningar eller har din webbplats "
1453
  "flyttas / migreras helt. Besök min hemsida för mer information!"
1454
 
1455
- #: dashboard/adrotate-info.php:192 dashboard/adrotate-pro.php:47
1456
  msgid "Find out more"
1457
  msgstr "Läs mer"
1458
 
1459
- #: dashboard/adrotate-info.php:194
1460
  msgid "Follow"
1461
  msgstr ""
1462
 
@@ -1473,51 +1465,60 @@ msgid ""
1473
  "can see their adverts performance."
1474
  msgstr ""
1475
 
1476
- #: dashboard/adrotate-pro.php:28
1477
  msgid "Localize your ad campaigns with Geo Targeting"
1478
  msgstr ""
1479
 
1480
- #: dashboard/adrotate-pro.php:31
1481
  msgid ""
1482
  "Go nationwide or global with localized adverts for your various audiences. "
1483
  "Set up adverts for countries and cities and sell impressions per general "
1484
- "area. Connect your site to MaxMinds GeoIP2: Precision, FreegeoIP (MaxMind "
1485
- "GeoLITE) or GeoBytes GeoSelect services."
1486
  msgstr ""
1487
 
1488
- #: dashboard/adrotate-pro.php:36
1489
  msgid "Get Premium Support almost all year round"
1490
  msgstr ""
1491
 
1492
- #: dashboard/adrotate-pro.php:39
1493
  msgid ""
1494
- "When you activate your AdRotate Pro license you are entitled to ticket "
1495
- "support. AdRotate premium support which takes priority over the Forums and "
1496
- "even email. Get a solution (usually) within a day."
 
1497
  msgstr ""
1498
 
1499
- #: dashboard/adrotate-pro.php:60
1500
  msgid "Schedule all campaigns with ease"
1501
  msgstr ""
1502
 
1503
- #: dashboard/adrotate-pro.php:63
1504
  msgid ""
1505
- "Schedule your adverts and set up advertising campaigns based on date without "
1506
- "hassle. Seasonal adverts, weekly adverts. You name it. AdRotate schedules it."
 
 
1507
  msgstr ""
1508
 
1509
- #: dashboard/adrotate-pro.php:68
1510
- #, fuzzy
1511
- msgid "Stay up-to-date with the notification system"
1512
- msgstr "Annonser som behöver uppmärksammas"
1513
 
1514
- #: dashboard/adrotate-pro.php:71
1515
  msgid ""
1516
- "Stay in touch with Email and/or push notifications. Get notified when "
 
 
1517
  "adverts expire, have errors or when advertisers create new adverts. Never "
1518
  "miss an expiration date again."
1519
  msgstr ""
1520
 
 
 
 
 
 
1521
  #: dashboard/publisher/adrotate-ads-edit.php:46
1522
  msgid "The AdCode cannot be empty!"
1523
  msgstr "Den AdCode kan inte vara tomt!"
@@ -2516,6 +2517,16 @@ msgstr "Inga grupper skapas!"
2516
  msgid "Statistics for group"
2517
  msgstr "Statistik för grupp"
2518
 
 
 
 
 
 
 
 
 
 
 
2519
  #~ msgid "Title:"
2520
  #~ msgstr "Titel:"
2521
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-30 02:48+0100\n"
6
+ "PO-Revision-Date: 2015-05-30 02:48+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.8.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:796
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
+ #: adrotate-functions.php:799
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
+ #: adrotate-output.php:735
29
  msgid "Oh no! Something went wrong!"
30
  msgstr "Åh nej! Något gick fel!"
31
 
32
+ #: adrotate-output.php:736
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:737
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:738
49
  msgid "Contact support if the issue persists:"
50
  msgstr "Kontakta support om problemet kvarstår:"
51
 
52
+ #: adrotate-output.php:756
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:758
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:765 adrotate-output.php:767
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:773
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:779
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:784
85
  msgid "Error, group does not exist! Check your syntax!"
86
  msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
87
 
88
+ #: adrotate-output.php:790
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:790
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:796
101
  msgid "An unknown error occured."
102
  msgstr "Ett okänt fel uppstod."
103
 
104
+ #: adrotate-output.php:821
105
  msgid "active ad(s) expired."
106
  msgstr "aktiv annons (er) gått ut."
107
 
108
+ #: adrotate-output.php:821
109
  msgid "Take action now"
110
  msgstr "Agera nu"
111
 
112
+ #: adrotate-output.php:823
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:823
117
  msgid "Check it out"
118
  msgstr "Kolla in det"
119
 
120
+ #: adrotate-output.php:825
121
  msgid "active ad(s) with configuration errors."
122
  msgstr "aktiv annons(er) med konfigurationsfel."
123
 
124
+ #: adrotate-output.php:825
125
  msgid "Solve this"
126
  msgstr "Lös det här"
127
 
128
+ #: adrotate-output.php:827
129
  msgid "ad(s) expired."
130
  msgstr "annons(er) gått ut."
131
 
132
+ #: adrotate-output.php:827
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:827
137
  msgid "ad(s) with configuration errors."
138
  msgstr "annons (er) med konfigurationsfel."
139
 
140
+ #: adrotate-output.php:827
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:839
145
  #, fuzzy
146
  msgid "Learn More"
147
  msgstr "Läs mer om"
148
 
149
+ #: adrotate-output.php:840
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:840
156
  msgid "Get more features to even better run your advertising campaigns."
157
  msgstr ""
158
 
159
+ #: adrotate-output.php:840
160
  #, fuzzy
161
  msgid "Thank you for your consideration!"
162
  msgstr "Tack. Din licens är nu aktiv"
163
 
164
+ #: adrotate-output.php:884
165
  msgid ""
166
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
167
  "this menu. Check out the"
168
  msgstr ""
169
 
170
+ #: adrotate-output.php:884
171
  msgid "manuals"
172
  msgstr "manual"
173
 
174
+ #: adrotate-output.php:884 adrotate-output.php:960
175
  #: dashboard/publisher/adrotate-ads-edit.php:151
176
  msgid "and"
177
  msgstr ""
178
 
179
+ #: adrotate-output.php:884
180
  msgid "forums"
181
  msgstr ""
182
 
183
+ #: adrotate-output.php:920
184
  #, fuzzy
185
  msgid "Useful Links"
186
  msgstr "Nyttiga länkar"
187
 
188
+ #: adrotate-output.php:921
189
  msgid "Useful links to learn more about AdRotate"
190
  msgstr ""
191
 
192
+ #: adrotate-output.php:923
193
  #, fuzzy
194
  msgid "AdRotate Page"
195
  msgstr "AdRotate Pro"
196
 
197
+ #: adrotate-output.php:924
198
  #, fuzzy
199
  msgid "Getting Started With AdRotate"
200
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
201
 
202
+ #: adrotate-output.php:925
203
  #, fuzzy
204
  msgid "AdRotate manuals"
205
  msgstr "AdRotate Information"
206
 
207
+ #: adrotate-output.php:926
208
  #, fuzzy
209
  msgid "AdRotate Support Forum"
210
  msgstr "AdRotate butik"
211
 
212
+ #: adrotate-output.php:952
213
  #, fuzzy
214
  msgid "Help AdRotate Grow"
215
  msgstr "Fastnat med AdRotate? Jag hjälper!"
216
 
217
+ #: adrotate-output.php:953
218
  msgid "Brought to you by"
219
  msgstr "Presenteras av"
220
 
221
+ #: adrotate-output.php:960
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:960
228
  msgid "If you find AdRotate useful please leave your honest"
229
  msgstr ""
230
 
231
+ #: adrotate-output.php:960
232
  msgid "rating"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:960
236
  #, fuzzy
237
  msgid "review"
238
  msgstr "Betygsätt och omdöme"
239
 
240
+ #: adrotate-output.php:960
241
  msgid "on WordPress.org to help AdRotate grow in a positive way"
242
  msgstr ""
243
 
244
+ #: adrotate-output.php:963
245
  msgid ""
246
  "Your one stop for Webdevelopment, consultancy and anything WordPress! Find "
247
  "out more about what I can do for you!"
249
  "Du ett steg för webbutveckling, rådgivning och allt Wordpress! Ta reda på "
250
  "mer om vad jag kan göra för dig!"
251
 
252
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
253
  msgid "Visit the"
254
  msgstr "Besök"
255
 
256
+ #: adrotate-output.php:963 dashboard/adrotate-info.php:191
257
  msgid "website"
258
  msgstr "hemsida"
259
 
260
+ #: adrotate-output.php:993 dashboard/publisher/adrotate-ads-edit.php:313
261
  msgid "Available in AdRotate Pro"
262
  msgstr "Tillgänglig i AdRotate Pro"
263
 
264
+ #: adrotate-output.php:993
265
  #, fuzzy
266
  msgid "More information..."
267
  msgstr "Mer info"
268
 
269
+ #: adrotate-output.php:994
270
  msgid "This feature is available in AdRotate Pro"
271
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
272
 
273
+ #: adrotate-output.php:994
274
  #, fuzzy
275
  msgid "Learn more"
276
  msgstr "Läs mer om"
347
  msgid "Next"
348
  msgstr "Nästa"
349
 
350
+ #: adrotate-statistics.php:284 dashboard/adrotate-info.php:125
351
  msgid "No data to show!"
352
  msgstr "Inga data att visa!"
353
 
354
+ #: adrotate-widget.php:112
355
  msgid "Title (optional):"
356
  msgstr "Titel (valfritt):"
357
 
358
+ #: adrotate-widget.php:115
359
  msgid "HTML will be stripped out."
360
  msgstr "HTML kommer att demonteras ut."
361
 
362
+ #: adrotate-widget.php:118
363
  msgid "Description (optional):"
364
  msgstr "Beskrivning (valfritt):"
365
 
366
+ #: adrotate-widget.php:121
367
  msgid "What is this widget used for? (Not parsed, HTML will be stripped out.)"
368
  msgstr ""
369
  "Vad är denna widget till? (Ej analyserad, HTML kommer att demonteras ut.)"
370
 
371
+ #: adrotate-widget.php:124
372
  msgid "Type:"
373
  msgstr "Typ:"
374
 
375
+ #: adrotate-widget.php:126
376
  msgid "Single Ad - Use Ad ID"
377
  msgstr "Singel annons - Användare och ID"
378
 
379
+ #: adrotate-widget.php:127
380
  msgid "Group of Ads - Use group ID"
381
  msgstr "Grupp av annonser - Använd grupp-ID"
382
 
383
+ #: adrotate-widget.php:130
384
  msgid "Choose what you want to use this widget for"
385
  msgstr "Välj vad du vill använda denna widget för"
386
 
387
+ #: adrotate-widget.php:133
388
  msgid "ID:"
389
  msgstr "ID:"
390
 
391
+ #: adrotate-widget.php:136
392
  msgid "Fill in the ID of the type you want to display!"
393
  msgstr "Fyll i ID för den typ som du vill visa!"
394
 
777
  msgid "Role to delete groups."
778
  msgstr "Role att ta bort grupper."
779
 
780
+ #: adrotate.php:680 adrotate.php:744 adrotate.php:784 adrotate.php:831
781
+ #: adrotate.php:875
782
  msgid "Update Options"
783
  msgstr "Update Options"
784
 
953
  "Aktivera detta för att ta bort utfyllnaden (mellanslag) runt annonser i "
954
  "widgets. (Fungerar inte alltid!)"
955
 
956
+ #: adrotate.php:758
957
  #, fuzzy
958
  msgid "NOTICE:"
959
  msgstr "Meddelande"
960
 
961
+ #: adrotate.php:759
962
  msgid ""
963
  "You have enabled W3 Total Caching support but not defined the security hash. "
964
  "You need to add the following line to your wp-config.php near the bottom or "
966
  "needs to be enabled in W3 Total Cache as well too."
967
  msgstr ""
968
 
969
+ #: adrotate.php:762
970
  msgid "W3 Total Caching"
971
  msgstr "W3 Total Caching"
972
 
973
+ #: adrotate.php:763
974
  msgid "Check this box if you use W3 Total Caching on your site."
975
  msgstr "Markera denna ruta om du använder W3 Total Caching på din webbplats."
976
 
977
+ #: adrotate.php:767
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
978
  msgid ""
979
  "It may take a while for the ad to start rotating. The caching plugin needs "
980
  "to refresh the cache. This can take up to a week if not done manually."
983
  "behöver uppdatera cachen. Detta kan ta upp till en vecka om det inte görs "
984
  "manuellt."
985
 
986
+ #: adrotate.php:767
987
  msgid ""
988
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
989
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
991
  "Caching stöd fungerar bara för [shortcodes] och AdRotate Widget. Om du "
992
  "använder ett PHP Snippet måste du svepa din PHP i utanförskap koden själv."
993
 
994
+ #: adrotate.php:771
995
  msgid "Javascript"
996
  msgstr ""
997
 
998
+ #: adrotate.php:774
999
  #, fuzzy
1000
  msgid "Load jQuery"
1001
  msgstr ""
1002
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
1003
  "om andra plugins eller teman redan läsa här."
1004
 
1005
+ #: adrotate.php:775
1006
  #, fuzzy
1007
  msgid ""
1008
  "jQuery is required for all Javascript features below. Enable this if your "
1011
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
1012
  "om andra plugins eller teman redan läsa här."
1013
 
1014
+ #: adrotate.php:778
1015
  #, fuzzy
1016
  msgid "Load in footer?"
1017
  msgstr ""
1018
  "Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
1019
 
1020
+ #: adrotate.php:779
1021
  #, fuzzy
1022
  msgid ""
1023
  "Enable if you want to load the above libraries in the footer. Your theme "
1024
  "needs to call wp_footer() for this to work."
1025
  msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
1026
 
1027
+ #: adrotate.php:787
1028
  msgid "Maintenance"
1029
  msgstr "Underhåll"
1030
 
1031
+ #: adrotate.php:788
1032
  #, fuzzy
1033
  msgid ""
1034
  "NOTE: The below functions are intented to be used to OPTIMIZE your database. "
1043
  "Alltid alltid göra en backup! Dessa funktioner ska användas när du känner "
1044
  "eller märker din databas är långsam, inte svarar och trög."
1045
 
1046
+ #: adrotate.php:803 adrotate.php:805
1047
  msgid "Optimize Database"
1048
  msgstr "Optimera Databas"
1049
 
1050
+ #: adrotate.php:805
1051
  msgid "You are about to optimize the AdRotate database."
1052
  msgstr "Du håller på att optimera AdRotate databasen."
1053
 
1054
+ #: adrotate.php:805
1055
  msgid "Did you make a backup of your database?"
1056
  msgstr "Har du gjort en säkerhetskopia av din databas?"
1057
 
1058
+ #: adrotate.php:805
1059
  msgid ""
1060
  "This may take a moment and may cause your website to respond slow "
1061
  "temporarily!"
1063
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
1064
  "tillfälligt!"
1065
 
1066
+ #: adrotate.php:805 adrotate.php:813 adrotate.php:821
1067
  #: dashboard/publisher/adrotate-groups-main.php:24
1068
  msgid "OK to continue, CANCEL to stop."
1069
  msgstr "OK för att fortsätta, CANCEL för att avbryta."
1070
 
1071
+ #: adrotate.php:806
1072
  msgid "Cleans up overhead data in the AdRotate tables."
1073
  msgstr "Rensar övervakningsdata i AdRotate tabeller."
1074
 
1075
+ #: adrotate.php:807
1076
  msgid ""
1077
  "Overhead data is accumulated garbage resulting from many changes you've "
1078
  "made. This can vary from nothing to hundreds of KiB of data."
1080
  "Övervaknings uppgifter samlas skräp till följd av många ändringar du har "
1081
  "gjort. Denna kan variera från ingenting till hundratals KiB of data."
1082
 
1083
+ #: adrotate.php:811 adrotate.php:813
1084
  msgid "Clean-up Database"
1085
  msgstr "Städa upp Databas"
1086
 
1087
+ #: adrotate.php:813
1088
  msgid ""
1089
  "You are about to clean up your database. This may delete expired schedules "
1090
  "and older statistics."
1092
  "Du håller på att städa upp din databas. Detta kan ta bort utgångna scheman "
1093
  "och äldre statistik."
1094
 
1095
+ #: adrotate.php:813
1096
  msgid "Are you sure you want to continue?"
1097
  msgstr "Är du säker på att du vill fortsätta?"
1098
 
1099
+ #: adrotate.php:813 adrotate.php:821
1100
  #, fuzzy
1101
  msgid "This might take a while and may slow down your site during this action!"
1102
  msgstr ""
1103
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
1104
  "tillfälligt!"
1105
 
1106
+ #: adrotate.php:814
1107
  msgid "Delete stats older than 356 days (Optional)."
1108
  msgstr "Radera statistik äldre än 356 dagar (tillval)."
1109
 
1110
+ #: adrotate.php:815
1111
  #, fuzzy
1112
  msgid ""
1113
  "AdRotate creates empty records when you start making ads or groups. In rare "
1116
  "Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
1117
  "den här knappen för att ta bort de tomma poster."
1118
 
1119
+ #: adrotate.php:815
1120
  msgid ""
1121
  "If you made an ad or group that does not save when you make it use this "
1122
  "button to delete those empty records."
1124
  "Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
1125
  "den här knappen för att ta bort de tomma poster."
1126
 
1127
+ #: adrotate.php:815
1128
  msgid ""
1129
  "Additionally you can clean up old statistics. This will improve the speed of "
1130
  "your site."
1132
  "Ytterligare kan du rensa upp gammal statistik. Detta kommer att förbättra "
1133
  "hastigheten på din webbplats."
1134
 
1135
+ #: adrotate.php:819
1136
  #, fuzzy
1137
  msgid "Re-evaluate Ads"
1138
  msgstr "Omvärdera annonser"
1139
 
1140
+ #: adrotate.php:821
1141
  #, fuzzy
1142
  msgid "Re-evaluate all ads"
1143
  msgstr "Omvärdera alla annonser"
1144
 
1145
+ #: adrotate.php:821
1146
  #, fuzzy
1147
  msgid "You are about to check all ads for errors."
1148
  msgstr "Du håller på att kolla alla annonser för fel."
1149
 
1150
+ #: adrotate.php:822
1151
  #, fuzzy
1152
  msgid ""
1153
  "This will apply all evaluation rules to all ads to see if any error slipped "
1156
  "Detta kommer att gälla alla regler utvärderings alla annonser för att se om "
1157
  "något fel halkade in. Normalt ska du inte behöva den här funktionen."
1158
 
1159
+ #: adrotate.php:826
1160
  msgid ""
1161
  "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
1162
  "becomes unusable in any way or by any means in whichever way I will not take "
1173
  "det fungerade innan du klickar på dessa knappar är inte en giltig punkt i "
1174
  "alla fall."
1175
 
1176
+ #: adrotate.php:834
1177
  msgid "Troubleshooting"
1178
  msgstr "Felsökning"
1179
 
1180
+ #: adrotate.php:837
1181
  msgid "Current version:"
1182
  msgstr "Aktuell version:"
1183
 
1184
+ #: adrotate.php:838
1185
  msgid "Previous version:"
1186
  msgstr "Tidigare version:"
1187
 
1188
+ #: adrotate.php:841
1189
  msgid "Current database version:"
1190
  msgstr "Nuvarande databasversion:"
1191
 
1192
+ #: adrotate.php:842
1193
  msgid "Previous database version:"
1194
  msgstr "Tidigare databasversion:"
1195
 
1196
+ #: adrotate.php:845
1197
  #, fuzzy
1198
  msgid "Ad evaluation next run:"
1199
  msgstr "Annons Meddelanden nästa körning:"
1200
 
1201
+ #: adrotate.php:846 adrotate.php:850
1202
  msgid "Not scheduled!"
1203
  msgstr "Inte planerat!"
1204
 
1205
+ #: adrotate.php:849
1206
  msgid "Clean Trackerdata next run:"
1207
  msgstr "Rensa Trackerdata nästa körning:"
1208
 
1209
+ #: adrotate.php:853
1210
  msgid "Current status of adverts"
1211
  msgstr "Aktuell status för annonser"
1212
 
1213
+ #: adrotate.php:854
1214
  msgid "Normal"
1215
  msgstr "Normal"
1216
 
1217
+ #: adrotate.php:854
1218
  msgid "Error"
1219
  msgstr "Error"
1220
 
1221
+ #: adrotate.php:854
1222
  msgid "Expired"
1223
  msgstr "Utgånget"
1224
 
1225
+ #: adrotate.php:854
1226
  msgid "Expires Soon"
1227
  msgstr "Utgår snart"
1228
 
1229
+ #: adrotate.php:854
1230
  msgid "Unknown Status"
1231
  msgstr "Okänd status"
1232
 
1233
+ #: adrotate.php:857
1234
  msgid ""
1235
  "NOTE: The below options are not meant for normal use and are only there for "
1236
  "developers to review saved settings or how ads are selected. These can be "
1242
  "väljs. Dessa kan användas som ett mått på felsökning på begäran, men för "
1243
  "normal användning de bör lämnas därhän!"
1244
 
1245
+ #: adrotate.php:861
1246
  msgid "Developer Debug"
1247
  msgstr "Utvecklar Debug"
1248
 
1249
+ #: adrotate.php:863
1250
  msgid "Troubleshoot ads and how (if) they are selected, has front-end output."
1251
  msgstr "Felsök annonser och hur (om) de är markerade, har front-end-utgång."
1252
 
1253
+ #: adrotate.php:864
1254
  msgid "Show all settings, dashboard routines and related values."
1255
  msgstr ""
1256
  "Visa alla inställningar, instrumentpanelen rutiner och tillhörande värden."
1257
 
1258
+ #: adrotate.php:865
1259
  msgid "Show array of all userroles and capabilities."
1260
  msgstr "Visa samling av alla userroles och möjligheter."
1261
 
1262
+ #: adrotate.php:866
1263
  msgid "Review saved advertisers! Visible to advertisers."
1264
  msgstr "Omdöme sparad annonsörer! Visas för annonsörer."
1265
 
1266
+ #: adrotate.php:867
1267
  #, fuzzy
1268
  msgid "Review global stats, per ad/group stats. Visible only to publishers."
1269
  msgstr ""
1270
  "Gå igenom global statistik, per annons / grupp / block-statistik. Synlig "
1271
  "endast till förlag."
1272
 
1273
+ #: adrotate.php:868
1274
  #, fuzzy
1275
  msgid ""
1276
  "Disable timers for clicks and impressions and enable a alert window for "
1277
  "clicktracking."
1278
  msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
1279
 
1280
+ #: adrotate.php:869
1281
  msgid "Temporarily disable encryption on the redirect url."
1282
  msgstr "Inaktivera tillfälligt kryptering på omdirigera url."
1283
 
1284
+ #: dashboard/adrotate-info.php:66
1285
  msgid "Currently"
1286
  msgstr "För närvarande"
1287
 
1288
+ #: dashboard/adrotate-info.php:72
1289
  msgid "Your setup"
1290
  msgstr "Din installation"
1291
 
1292
+ #: dashboard/adrotate-info.php:73
1293
  msgid "Adverts that need you"
1294
  msgstr "Annonser som behöver dig"
1295
 
1296
+ #: dashboard/adrotate-info.php:79
1297
  msgid "Adverts"
1298
  msgstr "Annonser"
1299
 
1300
+ #: dashboard/adrotate-info.php:80
1301
  msgid "(Almost) Expired"
1302
  msgstr "(Nästan) Expired"
1303
 
1304
+ #: dashboard/adrotate-info.php:83
1305
  msgid "Groups"
1306
  msgstr "Grupper"
1307
 
1308
+ #: dashboard/adrotate-info.php:84
1309
  msgid "Have errors"
1310
  msgstr "Har fel"
1311
 
1312
+ #: dashboard/adrotate-info.php:88
1313
  msgid "Queued"
1314
  msgstr "Queued"
1315
 
1316
+ #: dashboard/adrotate-info.php:95
1317
  msgid "The last few days"
1318
  msgstr "De senaste dagarna"
1319
 
1320
+ #: dashboard/adrotate-info.php:135
1321
  msgid "Support AdRotate"
1322
  msgstr "Support AdRotate"
1323
 
1324
+ #: dashboard/adrotate-info.php:142
1325
  msgid "Your gift helps ensure the continued development of AdRotate!"
1326
  msgstr ""
1327
 
1328
+ #: dashboard/adrotate-info.php:142
1329
  msgid "Can't donate money? Consider writing a review instead. Thank you!"
1330
  msgstr ""
1331
 
1332
+ #: dashboard/adrotate-info.php:151
1333
  msgid "AdRotate News and Developer Blog"
1334
  msgstr "AdRotate Nyheter och Utvecklar Blog"
1335
 
1336
  #: dashboard/adrotate-info.php:168
1337
+ msgid "Get notified of AdRotate updates via Pushover"
1338
+ msgstr ""
1339
+
1340
+ #: dashboard/adrotate-info.php:175
1341
+ msgid "Pushover is a push notification service for iOS and Android!"
1342
+ msgstr ""
1343
+
1344
+ #: dashboard/adrotate-info.php:188
1345
  #, fuzzy
1346
  msgid "Get more features with AdRotate Pro"
1347
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1348
 
1349
+ #: dashboard/adrotate-info.php:191
1350
  msgid ""
1351
  "Benefit from extra features to reinforce your income with advertising "
1352
  "campaigns. Make the most of your website with the powerful tools AdRotate "
1353
  "Pro offers on top of the trusted features included in the free version."
1354
  msgstr ""
1355
 
1356
+ #: dashboard/adrotate-info.php:191
1357
  msgid "Want to know more about"
1358
  msgstr ""
1359
 
1360
+ #: dashboard/adrotate-info.php:195 dashboard/adrotate-pro.php:72
1361
  #, fuzzy
1362
  msgid "Buy AdRotate Professional"
1363
  msgstr "Köp nu"
1364
 
1365
+ #: dashboard/adrotate-info.php:199
1366
+ msgid "Single License"
1367
+ msgstr ""
 
1368
 
1369
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-pro.php:76
1370
  #, fuzzy
1371
  msgid "For one WordPress installation."
1372
  msgstr "Installation"
1373
 
1374
+ #: dashboard/adrotate-info.php:199 dashboard/adrotate-info.php:200
1375
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-info.php:202
1376
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:76
1377
+ #: dashboard/adrotate-pro.php:77 dashboard/adrotate-pro.php:78
1378
+ #: dashboard/adrotate-pro.php:79 dashboard/adrotate-pro.php:80
1379
  #, fuzzy
1380
  msgid "Buy now"
1381
  msgstr "Köp nu"
1382
 
1383
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1384
  #, fuzzy
1385
  msgid "Duo License"
1386
  msgstr "AdRotate Licens"
1387
 
1388
+ #: dashboard/adrotate-info.php:200 dashboard/adrotate-pro.php:77
1389
  #, fuzzy
1390
  msgid "For two WordPress installations."
1391
  msgstr "Installation"
1392
 
1393
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1394
  #, fuzzy
1395
  msgid "Multi License"
1396
  msgstr "AdRotate Licens"
1397
 
1398
+ #: dashboard/adrotate-info.php:201 dashboard/adrotate-pro.php:78
1399
  #, fuzzy
1400
  msgid " For up to five WordPress installations."
1401
  msgstr "Installation"
1402
 
1403
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1404
  #, fuzzy
1405
  msgid "Developer License"
1406
  msgstr "Utvecklar Debug"
1407
 
1408
+ #: dashboard/adrotate-info.php:202 dashboard/adrotate-pro.php:79
1409
  msgid "Unlimited WordPress installations and/or networks."
1410
  msgstr ""
1411
 
1412
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1413
  #, fuzzy
1414
  msgid "Network License"
1415
  msgstr "AdRotate Licens"
1416
 
1417
+ #: dashboard/adrotate-info.php:203 dashboard/adrotate-pro.php:80
1418
  msgid "Set up your own advertising network on a WordPress Multisite."
1419
  msgstr ""
1420
 
1421
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1422
  msgid "Compare licenses"
1423
  msgstr ""
1424
 
1425
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1426
  msgid "Not sure which license is for you? Compare them..."
1427
  msgstr ""
1428
 
1429
+ #: dashboard/adrotate-info.php:204 dashboard/adrotate-pro.php:81
1430
  msgid "All Licenses"
1431
  msgstr ""
1432
 
1433
+ #: dashboard/adrotate-info.php:208 dashboard/adrotate-pro.php:41
1434
  msgid "AdRotate is brought to you by"
1435
  msgstr "AdRotate kommer till dig genom"
1436
 
1437
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1438
  msgid ""
1439
  "Your one stop for Webdevelopment, consultancy and anything WordPress! If you "
1440
  "need a custom plugin. Theme customizations or have your site moved/migrated "
1444
  "behöver en anpassad plugin. Tema anpassningar eller har din webbplats "
1445
  "flyttas / migreras helt. Besök min hemsida för mer information!"
1446
 
1447
+ #: dashboard/adrotate-info.php:212 dashboard/adrotate-pro.php:45
1448
  msgid "Find out more"
1449
  msgstr "Läs mer"
1450
 
1451
+ #: dashboard/adrotate-info.php:214
1452
  msgid "Follow"
1453
  msgstr ""
1454
 
1465
  "can see their adverts performance."
1466
  msgstr ""
1467
 
1468
+ #: dashboard/adrotate-pro.php:27
1469
  msgid "Localize your ad campaigns with Geo Targeting"
1470
  msgstr ""
1471
 
1472
+ #: dashboard/adrotate-pro.php:30
1473
  msgid ""
1474
  "Go nationwide or global with localized adverts for your various audiences. "
1475
  "Set up adverts for countries and cities and sell impressions per general "
1476
+ "area. Connect your site to MaxMind GeoIP2: Precision, Telize or AdRotate "
1477
+ "Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users."
1478
  msgstr ""
1479
 
1480
+ #: dashboard/adrotate-pro.php:34
1481
  msgid "Get Premium Support almost all year round"
1482
  msgstr ""
1483
 
1484
+ #: dashboard/adrotate-pro.php:37
1485
  msgid ""
1486
+ "When you activate your AdRotate Pro license you can use fast and personal "
1487
+ "email support. No more queueing up in the forums. AdRotate premium support "
1488
+ "takes priority over the forums and is checked much more often than the "
1489
+ "forum. Get a solution (usually) within a day."
1490
  msgstr ""
1491
 
1492
+ #: dashboard/adrotate-pro.php:58
1493
  msgid "Schedule all campaigns with ease"
1494
  msgstr ""
1495
 
1496
+ #: dashboard/adrotate-pro.php:61
1497
  msgid ""
1498
+ "Schedule your adverts and set up advertising campaigns based on dates you or "
1499
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
1500
+ "You name it, AdRotate schedules it. This makes planning your revenue stream "
1501
+ "much more easy. You can set one or many schedules for adverts."
1502
  msgstr ""
1503
 
1504
+ #: dashboard/adrotate-pro.php:65
1505
+ msgid "Stay up-to-date with notifications"
1506
+ msgstr ""
 
1507
 
1508
+ #: dashboard/adrotate-pro.php:68
1509
  msgid ""
1510
+ "Stay in touch with Email notifications. Have AdRotate send you an alert when "
1511
+ "adverts expire or need your attention. Additionally, you can have AdRotate "
1512
+ "send push notifications to your iOS or Android smartphone. Get notified when "
1513
  "adverts expire, have errors or when advertisers create new adverts. Never "
1514
  "miss an expiration date again."
1515
  msgstr ""
1516
 
1517
+ #: dashboard/adrotate-pro.php:76
1518
+ #, fuzzy
1519
+ msgid "Singe License"
1520
+ msgstr "AdRotate Licens"
1521
+
1522
  #: dashboard/publisher/adrotate-ads-edit.php:46
1523
  msgid "The AdCode cannot be empty!"
1524
  msgstr "Den AdCode kan inte vara tomt!"
2517
  msgid "Statistics for group"
2518
  msgstr "Statistik för grupp"
2519
 
2520
+ #~ msgid "WP Super Cache"
2521
+ #~ msgstr "WP Super Cache"
2522
+
2523
+ #~ msgid "Check this box if you use WP Super Cache on your site."
2524
+ #~ msgstr "Markera denna ruta om du använder WP Super Cache på din webbplats."
2525
+
2526
+ #, fuzzy
2527
+ #~ msgid "Stay up-to-date with the notification system"
2528
+ #~ msgstr "Annonser som behöver uppmärksammas"
2529
+
2530
  #~ msgid "Title:"
2531
  #~ msgstr "Titel:"
2532
 
library/dashboard.css CHANGED
@@ -25,9 +25,9 @@
25
  /* Dashboard styles */
26
  .postbox-adrotate { margin-bottom:20px; padding:0; min-width:255px; border:#dfdfdf 1px solid; background-color:#fff; -moz-box-shadow:inset 0 1px 0 #fff; -webkit-box-shadow:inset 0 1px 0 #fff; box-shadow:inset 0 1px 0 #fff; }
27
  .postbox-adrotate h3 { margin:0; padding:7px 10px 7px 10px; box-shadow:#ddd 0px 1px 0px 0px; -moz-box-shadow:inset 0 1px 0 #ddd; -webkit-box-shadow:#ddd 0px 1px 0px 0px; line-height:15px; }
28
- .postbox-adrotate .inside { margin:10px 0px 0px 10px; padding:0px 10px 10px 0px; min-height:40px; position:relative; }
29
  .inside { padding:6px 10px 12px; clear:both; }
30
-
31
  /* Pushover */
32
  .pushover-button {
33
  box-sizing: border-box; background-color: #eee;
25
  /* Dashboard styles */
26
  .postbox-adrotate { margin-bottom:20px; padding:0; min-width:255px; border:#dfdfdf 1px solid; background-color:#fff; -moz-box-shadow:inset 0 1px 0 #fff; -webkit-box-shadow:inset 0 1px 0 #fff; box-shadow:inset 0 1px 0 #fff; }
27
  .postbox-adrotate h3 { margin:0; padding:7px 10px 7px 10px; box-shadow:#ddd 0px 1px 0px 0px; -moz-box-shadow:inset 0 1px 0 #ddd; -webkit-box-shadow:#ddd 0px 1px 0px 0px; line-height:15px; }
28
+ .postbox-adrotate .inside { margin:10px 0px 0px 10px; padding:0px 10px 10px 0px; min-height:100px; position:relative; }
29
  .inside { padding:6px 10px 12px; clear:both; }
30
+ .pro-image { padding: 0px 3px 0px 0px; }
31
  /* Pushover */
32
  .pushover-button {
33
  box-sizing: border-box; background-color: #eee;
readme.txt CHANGED
@@ -1,16 +1,16 @@
1
  === AdRotate ===
2
  Contributors: adegans
3
  Donate link: http://meandmymac.net/donate/?pk_campaign=adrotatefree-readme&pk_kwd=donatelink
4
- Tags: ads, banner, commercial, admin, advertise, adrotator, 2013, plugin, random, rotator, ad, advertising, advertisement, block, blocks, advertiser, publisher, adsense, geo, geolocation, geotarget, chitika, clickbank, broadstreet, banner manager,advert manager, campaign manager, export, import, freegeoip, geoplugin, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages
5
  Requires at least: 3.8, PHP5.3
6
  Tested up to: 4.2.2
7
- Stable tag: 3.11.6
8
 
9
  Used on over a hundred thousand websites and by even more people! With over a million downloads AdRotate is the popular choice for monetizing your website with adverts while keeping things simple. Make money with advertising while you do other things. Make making money easy!
10
 
11
  == Description ==
12
 
13
- Thinking of making some money with your website? Try AdRotate. Using AdRotate you can easily place advertising banners pretty much anywhere on your site while managing almost everything from your dashboard. No fussing with your themes code if you don't want to.
14
  Create your own adverts with basic HTML/Javascript code or use adverts from your favorite Ad Server such as DFP, AdSense, Chitika or other similar services.
15
  Manage your advertising campaigns with ease, right from your dashboard. Check up on performance and make use of the myriad of features AdRotate has to offer.
16
  AdRotate supports unlimited groups for banners allowing you to tie banners to different areas of the website.
@@ -75,50 +75,45 @@ Looking to switch from another plugin? Check out [AdRotate Switch](https://wordp
75
 
76
  **Important links**
77
 
78
- * [Manual Installation](https://ajdg.solutions/manuals/adrotate/installing-adrotate-on-your-website/?pk_campaign=adrotatefree-readme&pk_kwd=installation)
79
  * [Manuals & Support](https://https://ajdg.solutions/forums/?pk_campaign=adrotatefree-readme&pk_kwd=manuals)
80
  * [AdRotate Store](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro)
81
 
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/?pk_campaign=adrotatefree-readme&pk_kwd=manuals) with every feature explained.
 
89
  If that's not enough you can post on the [forum](https://ajdg.solutions/forums/?pk_campaign=adrotatefree-readme&pk_kwd=forum) and ask your question there!
90
 
91
  == Changelog ==
92
 
93
- = 3.11.6 FREE =
94
- * [fix] Output of Dynamic groups and Block groups
95
- * [fix] Notice error on schedules page
96
- * [fix] Typo on AdRotate Info page
97
-
98
- = 3.11.5 FREE =
99
- * [tweak] Minor tweaks and improvements to dashboards
100
- * [fix] More accurate regexes for AdRotate Tracker
101
- * [fix] Ambiguous array match in post injection
102
- * [fix] Unwanted advert after content with post injection on some settings
103
- * [i18n] Updated strings for all language files
104
-
105
- = 3.12.8 PRO =
106
- * [fix] strip_tags error when saving adverts
107
- * [fix] Typo on AdRotate Info page
108
-
109
- = 3.12.7 PRO =
110
- * [new] Show select adverts on mobile only when in a group
111
- * [new] Budget, CPC and CPM visible on advert overview
112
- * [new] Budget, CPC and CPM visible for advertisers
113
- * [tweak] Minor tweaks and improvements to dashboards
114
- * [fix] Serialize error when exporting multiple adverts
115
- * [fix] Geo data not serialized when importing CSV file
116
- * [fix] Advertiser summary stats navigation now works
117
- * [fix] Advertiser ads with errors not listed in regular dashboard
118
- * [fix] More accurate regexes for AdRotate Tracker
119
- * [fix] Ambiguous array match in post injection
120
- * [fix] Unwanted advert after content with post injection on some settings
121
- * [i18n] Updated strings for all language files
122
 
123
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme&pk_kwd=changelog).
124
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro)!
@@ -127,17 +122,14 @@ NOTE: Unsolicited offers, parnterships, job offers, promotional emails or produc
127
 
128
  == Upgrade Notice ==
129
 
130
- = 3.11.6 FREE =
131
- * [fix] Output of Dynamic groups and Block groups
132
- * [fix] Notice error on schedules page
133
- * [fix] Typo on AdRotate Info page
134
-
135
- = 3.11.5 FREE =
136
- * [tweak] Minor tweaks and improvements to dashboards
137
- * [fix] More accurate regexes for AdRotate Tracker
138
- * [fix] Ambiguous array match in post injection
139
- * [fix] Unwanted advert after content with post injection on some settings
140
- * [i18n] Updated strings for all language files
141
 
142
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme&pk_kwd=changelog).
143
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro)!
1
  === AdRotate ===
2
  Contributors: adegans
3
  Donate link: http://meandmymac.net/donate/?pk_campaign=adrotatefree-readme&pk_kwd=donatelink
4
+ Tags: ads, banner, commercial, admin, advertise, adrotator, plugin, random, rotator, ad, advertising, advertisement, block, blocks, advertiser, publisher, adsense, geo, geolocation, geotarget, chitika, clickbank, broadstreet, banner manager,advert manager, campaign manager, export, import, telize, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, popular, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages, 2015
5
  Requires at least: 3.8, PHP5.3
6
  Tested up to: 4.2.2
7
+ Stable tag: 3.11.7
8
 
9
  Used on over a hundred thousand websites and by even more people! With over a million downloads AdRotate is the popular choice for monetizing your website with adverts while keeping things simple. Make money with advertising while you do other things. Make making money easy!
10
 
11
  == Description ==
12
 
13
+ Thinking of making some money with your website? Try AdRotate. With AdRotate you can easily place advertising banners pretty much anywhere on your site while managing almost everything from your dashboard. No fussing with your themes code if you don't want to.
14
  Create your own adverts with basic HTML/Javascript code or use adverts from your favorite Ad Server such as DFP, AdSense, Chitika or other similar services.
15
  Manage your advertising campaigns with ease, right from your dashboard. Check up on performance and make use of the myriad of features AdRotate has to offer.
16
  AdRotate supports unlimited groups for banners allowing you to tie banners to different areas of the website.
75
 
76
  **Important links**
77
 
78
+ * [Manual Installation](https://ajdg.solutions/manuals/adrotate-manuals/installing-adrotate-on-your-website/?pk_campaign=adrotatefree-readme&pk_kwd=installation)
79
  * [Manuals & Support](https://https://ajdg.solutions/forums/?pk_campaign=adrotatefree-readme&pk_kwd=manuals)
80
  * [AdRotate Store](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro)
81
 
82
  == Frequently Asked Questions ==
83
 
84
  = Can I migrate my data from another plugin to AdRotate? =
 
85
  Maybe. Take a look at [AdRotate Switch](https://wordpress.org/plugins/adrotate-switch/) and see if your current advertising plugin is compatible for migrating your data!
86
 
87
+ = How do I use AdRotate =
88
+ There are [manuals](https://ajdg.solutions/manuals/adrotate-manuals/?pk_campaign=adrotatefree-readme&pk_kwd=manuals) with every feature explained.
89
  If that's not enough you can post on the [forum](https://ajdg.solutions/forums/?pk_campaign=adrotatefree-readme&pk_kwd=forum) and ask your question there!
90
 
91
  == Changelog ==
92
 
93
+ = 3.11.7 FREE =
94
+ * [new] More 'after paragraph' options for Post Injection
95
+ * [change] Removed all 'every N paragraph' options for post injection
96
+ * [fix] Responsive class overwriting existing html classes
97
+ * [fix] Post Injection cutting off content at the end of posts
98
+ * [fix] Impression timer not always accurate for some users
99
+ * [fix] Timezone notation not always valid
100
+ * [i18n] New and updated strings
101
+
102
+ = 3.13 PRO =
103
+ * [new] Fallback groups now take their parent multisite id into account
104
+ * [new] Manage HTML5 file assets via the AdRotate Media manager
105
+ * [new] Create HTML5 adverts more easily
106
+ * [new] More 'after paragraph' options for Post Injection
107
+ * [change] Removed all 'every N paragraph' options for post injection
108
+ * [tweak] Faster tag adding when using Google Analytics
109
+ * [tweak] Faster tag adding for Piwik Analytics
110
+ * [fix] Responsive and adblock class overwriting existing html classes
111
+ * [fix] Tracking pixel for some adverts that didn't need it
112
+ * [fix] Redirect when advertiser exports stats
113
+ * [fix] Post Injection cutting off content at the end of posts
114
+ * [fix] Impression timer not always accurate for some users
115
+ * [fix] Timezone notation not always valid
116
+ * [i18n] New and updated strings
 
 
 
 
 
117
 
118
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme&pk_kwd=changelog).
119
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro)!
122
 
123
  == Upgrade Notice ==
124
 
125
+ = 3.11.7 FREE =
126
+ * [new] More 'after paragraph' options for Post Injection
127
+ * [change] Removed all 'every N paragraph' options for post injection
128
+ * [fix] Responsive class overwriting existing html classes
129
+ * [fix] Post Injection cutting off content at the end of posts
130
+ * [fix] Impression timer not always accurate for some users
131
+ * [fix] Timezone notation not always valid
132
+ * [i18n] New and updated strings
 
 
 
133
 
134
  The full changelog can be found on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?pk_campaign=adrotatefree-readme&pk_kwd=changelog).
135
  Get more AdRotate! [Get AdRotate Pro today](https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotatefree-readme&pk_kwd=buypro)!