AdRotate Banner Manager - Version 3.18.1

Version Description

  • [fix] 'Select all' for post injection not always working
  • [fix] Undefined notice on error listing.

All recent changes are available on the AdRotate website.

=

Download this release

Release Info

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

Code changes from version 3.18 to 3.18.1

Files changed (53) hide show
  1. adrotate-export.php +1 -1
  2. adrotate-functions.php +13 -11
  3. adrotate-manage-publisher.php +1 -1
  4. adrotate-output.php +6 -13
  5. adrotate-setup.php +1 -1
  6. adrotate-statistics.php +1 -1
  7. adrotate-widget.php +1 -1
  8. adrotate.php +3 -3
  9. dashboard/adrotatepro.php +18 -30
  10. dashboard/info.php +17 -35
  11. dashboard/publisher/adverts-disabled.php +1 -1
  12. dashboard/publisher/adverts-edit.php +70 -43
  13. dashboard/publisher/adverts-error.php +3 -3
  14. dashboard/publisher/adverts-main.php +1 -1
  15. dashboard/publisher/adverts-report.php +1 -1
  16. dashboard/publisher/groups-edit.php +88 -81
  17. dashboard/publisher/groups-main.php +1 -1
  18. dashboard/publisher/groups-report.php +1 -1
  19. dashboard/settings/advertisers.php +1 -1
  20. dashboard/settings/general.php +1 -1
  21. dashboard/settings/geotargeting.php +1 -1
  22. dashboard/settings/maintenance.php +1 -1
  23. dashboard/settings/misc.php +1 -1
  24. dashboard/settings/notifications.php +1 -1
  25. dashboard/settings/roles.php +1 -1
  26. dashboard/settings/statistics.php +1 -1
  27. images/arnan-credits.jpg +0 -0
  28. language/adrotate-bg_BG.mo +0 -0
  29. language/adrotate-bg_BG.po +628 -653
  30. language/adrotate-el.mo +0 -0
  31. language/adrotate-el.po +586 -655
  32. language/adrotate-en_US.mo +0 -0
  33. language/adrotate-en_US.po +477 -626
  34. language/adrotate-es_ES.mo +0 -0
  35. language/adrotate-es_ES.po +629 -666
  36. language/adrotate-fr_FR.mo +0 -0
  37. language/adrotate-fr_FR.po +610 -663
  38. language/adrotate-ja.mo +0 -0
  39. language/adrotate-ja.po +585 -658
  40. language/adrotate-pl_PL.mo +0 -0
  41. language/adrotate-pl_PL.po +607 -661
  42. language/adrotate-sr_RS.mo +0 -0
  43. language/adrotate-sr_RS.po +584 -652
  44. language/adrotate-sv_SV.mo +0 -0
  45. language/adrotate-sv_SV.po +590 -651
  46. library/dashboard.css +5 -4
  47. library/jquery.adrotate.clicktracker.js +1 -1
  48. library/jquery.adrotate.dyngroup.js +1 -1
  49. library/jquery.adrotate.responsive.js +2 -2
  50. library/jquery.adrotate.tablesorter.js +2 -2
  51. library/textatcursor.js +2 -2
  52. library/uploader-hook.js +1 -1
  53. readme.txt +13 -17
adrotate-export.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
adrotate-functions.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
@@ -278,8 +278,10 @@ function adrotate_select_categories($savedcats, $count = 2, $child_of = 0, $pare
278
  if(!empty($categories)) {
279
  $output = '';
280
  if($parent == 0) {
281
- $output = '<table width="100%">';
282
- $output .= '<thead><tr><td scope="col" class="manage-column check-column" style="padding: 0px;"><input type="checkbox" /></td><td style="padding: 0px;">Select All</td></tr></thead>';
 
 
283
  $output .= '<tbody>';
284
  }
285
  foreach($categories as $category) {
@@ -292,11 +294,11 @@ function adrotate_select_categories($savedcats, $count = 2, $child_of = 0, $pare
292
  $indent = '';
293
  }
294
  $output .= '<tr>';
295
- $output .= '<th class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_categories[]" value="'.$category->cat_ID.'"';
296
- if(in_array($category->cat_ID, $savedcats)) {
297
- $output .= ' checked';
298
- }
299
- $output .= '></th><td style="padding: 0px;">'.$indent.$category->name.' ('.$category->category_count.')</td>';
300
  $output .= '</tr>';
301
  $output .= adrotate_select_categories($savedcats, $count, $category->parent, $category->cat_ID);
302
  $child_of = $parent;
@@ -325,7 +327,7 @@ function adrotate_select_pages($savedpages, $count = 2, $child_of = 0, $parent =
325
  if($parent == 0) {
326
  $output = '<table width="100%">';
327
  if(count($pages) > 5) {
328
- $output .= '<thead><tr><td scope="col" class="manage-column check-column" style="padding: 0px;"><input type="checkbox" /></td><td style="padding: 0px;">Select All</td></tr></thead>';
329
  }
330
  $output .= '<tbody>';
331
  }
@@ -339,11 +341,11 @@ function adrotate_select_pages($savedpages, $count = 2, $child_of = 0, $parent =
339
  $indent = '';
340
  }
341
  $output .= '<tr>';
342
- $output .= '<th class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_pages[]" value="'.$page->ID.'"';
343
  if(in_array($page->ID, $savedpages)) {
344
  $output .= ' checked';
345
  }
346
- $output .= '></th><td style="padding: 0px;">'.$indent.$page->post_title.'</td>';
347
  $output .= '</tr>';
348
  $output .= adrotate_select_pages($savedpages, $count, $page->post_parent, $page->ID);
349
  $child_of = $parent;
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
278
  if(!empty($categories)) {
279
  $output = '';
280
  if($parent == 0) {
281
+ $output .= '<table width="100%">';
282
+ $output .= '<thead>';
283
+ $output .= '<tr><td class="check-column" style="padding: 0px;"><input type="checkbox" /></td><td style="padding: 0px;">Select All</td></tr>';
284
+ $output .= '</thead>';
285
  $output .= '<tbody>';
286
  }
287
  foreach($categories as $category) {
294
  $indent = '';
295
  }
296
  $output .= '<tr>';
297
+
298
+ $output .= '<td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_categories[]" value="'.$category->cat_ID.'"';
299
+ $output .= (in_array($category->cat_ID, $savedcats)) ? ' checked' : '';
300
+ $output .= '></td><td style="padding: 0px;">'.$indent.$category->name.' ('.$category->category_count.')</td>';
301
+
302
  $output .= '</tr>';
303
  $output .= adrotate_select_categories($savedcats, $count, $category->parent, $category->cat_ID);
304
  $child_of = $parent;
327
  if($parent == 0) {
328
  $output = '<table width="100%">';
329
  if(count($pages) > 5) {
330
+ $output .= '<thead><tr><td class="check-column" style="padding: 0px;"><input type="checkbox" /></td><td style="padding: 0px;">Select All</td></tr></thead>';
331
  }
332
  $output .= '<tbody>';
333
  }
341
  $indent = '';
342
  }
343
  $output .= '<tr>';
344
+ $output .= '<td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_pages[]" value="'.$page->ID.'"';
345
  if(in_array($page->ID, $savedpages)) {
346
  $output .= ' checked';
347
  }
348
+ $output .= '></td><td style="padding: 0px;">'.$indent.$page->post_title.'</td>';
349
  $output .= '</tr>';
350
  $output .= adrotate_select_pages($savedpages, $count, $page->post_parent, $page->ID);
351
  $child_of = $parent;
adrotate-manage-publisher.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
adrotate-output.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
@@ -833,24 +833,17 @@ function adrotate_credits() {
833
 
834
  echo '<thead>';
835
  echo '<tr valign="top">';
836
- echo ' <th colspan="2">'.__('Help AdRotate Grow', 'adrotate').'</th>';
837
- echo ' <th style="text-align:center;">'.__('Follow Arnan on Facebook', 'wpevents').'</th>';
838
  echo '</tr>';
839
  echo '</thead>';
840
 
841
  echo '<tbody>';
842
  echo '<tr>';
843
  echo '<td><center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=credits&utm_source=adrotate-free" title="AdRotate plugin for WordPress"><img src="'.plugins_url('/images/logo-60x60.png', __FILE__).'" alt="AdRotate logo" width="60" height="60" /></a></center></td>';
844
- echo '<td>'.__("A lot of users only think to review AdRotate when something goes wrong while thousands of people use AdRotate satisfactory. Don't let this go unnoticed.", 'adrotate').' <strong>'. __("If you find AdRotate useful please leave your honest", 'adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" target="_blank">'.__('rating','adrotate').'</a> '.__('and','adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate" target="_blank">'.__('review','adrotate').'</a> '.__('on WordPress.org to help AdRotate grow in a positive way', 'adrotate').'!</strong></td>';
845
-
846
- echo '<td width="25%"><script>(function(d, s, id) {';
847
- echo 'var js, fjs = d.getElementsByTagName(s)[0];';
848
- echo 'if (d.getElementById(id)) return;';
849
- echo 'js = d.createElement(s); js.id = id;';
850
- echo 'js.src = "https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5";';
851
- echo 'fjs.parentNode.insertBefore(js, fjs);';
852
- echo '}(document, \'script\', \'facebook-jssdk\'));</script>';
853
- echo '<center><div class="fb-page" data-href="https://www.facebook.com/Arnandegans" data-width="315" data-adapt-container-width="true" data-small-header="true" data-hide-cover="false" data-show-facepile="false"></div></center></td>';
854
  echo '</tr>';
855
  echo '</tbody>';
856
 
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
833
 
834
  echo '<thead>';
835
  echo '<tr valign="top">';
836
+ echo ' <th colspan="2">'.__('Support AdRotate', 'adrotate').'</th>';
837
+ echo ' <th width="45%">'.__('Check out my website', 'adrotate').'</th>';
838
  echo '</tr>';
839
  echo '</thead>';
840
 
841
  echo '<tbody>';
842
  echo '<tr>';
843
  echo '<td><center><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=credits&utm_source=adrotate-free" title="AdRotate plugin for WordPress"><img src="'.plugins_url('/images/logo-60x60.png', __FILE__).'" alt="AdRotate logo" width="60" height="60" /></a></center></td>';
844
+ echo '<td>'.__("Many users only think to review AdRotate when something goes wrong while thousands of people happily use AdRotate.", 'adrotate').' <strong>'. __("If you find AdRotate useful please leave your", 'adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform" target="_blank">'.__('rating','adrotate').'</a> '.__('and','adrotate').' <a href="https://wordpress.org/support/view/plugin-reviews/adrotate" target="_blank">'.__('review','adrotate').'</a> '.__('on WordPress.org to help AdRotate grow in a positive way', 'adrotate').'!</strong></td>';
845
+
846
+ echo '<td><a href="http://www.arnan.me/?pk_campaign=adrotate-free&pk_kwd=footer" title="arnan.me - Nomadic in the Philippines"><img src="'.plugins_url('/images/arnan-credits.jpg', __FILE__).'" alt="Arnan de Gans" align="center" class="ajdg-photo" /></a></td>';
 
 
 
 
 
 
 
847
  echo '</tr>';
848
  echo '</tbody>';
849
 
adrotate-setup.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2016 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
adrotate-statistics.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
adrotate-widget.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2016 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
adrotate.php CHANGED
@@ -7,13 +7,13 @@ Author URI: http://ajdg.solutions/?utm_campaign=homepage&utm_medium=plugin-info&
7
  Description: The popular choice for monetizing your website with adverts while keeping things simple. Start making money today!
8
  Text Domain: adrotate
9
  Domain Path: /languages/
10
- Version: 3.18
11
  License: GPLv3
12
  */
13
 
14
  /* ------------------------------------------------------------------------------------
15
  * COPYRIGHT AND TRADEMARK NOTICE
16
- * Copyright 2008-2016 Arnan de Gans. All Rights Reserved.
17
  * ADROTATE is a trademark of Arnan de Gans.
18
 
19
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
@@ -22,7 +22,7 @@ License: GPLv3
22
  ------------------------------------------------------------------------------------ */
23
 
24
  /*--- AdRotate values ---------------------------------------*/
25
- define("ADROTATE_DISPLAY", '3.18');
26
  define("ADROTATE_VERSION", 386);
27
  define("ADROTATE_DB_VERSION", 60);
28
  /*-----------------------------------------------------------*/
7
  Description: The popular choice for monetizing your website with adverts while keeping things simple. Start making money today!
8
  Text Domain: adrotate
9
  Domain Path: /languages/
10
+ Version: 3.18.1
11
  License: GPLv3
12
  */
13
 
14
  /* ------------------------------------------------------------------------------------
15
  * COPYRIGHT AND TRADEMARK NOTICE
16
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
17
  * ADROTATE is a trademark of Arnan de Gans.
18
 
19
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
22
  ------------------------------------------------------------------------------------ */
23
 
24
  /*--- AdRotate values ---------------------------------------*/
25
+ define("ADROTATE_DISPLAY", '3.18.1');
26
  define("ADROTATE_VERSION", 386);
27
  define("ADROTATE_DB_VERSION", 60);
28
  /*-----------------------------------------------------------*/
dashboard/adrotatepro.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
@@ -10,7 +10,7 @@
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <div id="dashboard-widgets-wrap">
13
- <p><center>Take a peek into professional advertising for WordPress websites and discover how you can benefit from the powerful features <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=pro-page&utm_source=adrotate-free" target="_blank">AdRotate Professional</a> has to offer.</center></p>
14
 
15
  <div id="dashboard-widgets" class="metabox-holder">
16
 
@@ -20,48 +20,36 @@
20
  <h3><?php _e('Satisfy your advertisers', 'adrotate'); ?></h3>
21
  <div class="postbox-ajdg">
22
  <div class="inside">
23
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><img src="<?php echo plugins_url('/images/demo-satisfy.png', dirname(__FILE__)); ?>" 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('Mobile campaigns', 'adrotate'); ?></h3>
28
  <div class="postbox-ajdg">
29
  <div class="inside">
30
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><img src="<?php echo plugins_url('/images/demo-mobile.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Target mobile users with ease and show the right adverts to smartphones, tablets and computers. Mix and match as you please and offer adverts that suit the device or mobile operating system. Create as many mobile adverts as you want without effort and with a few easy to use options they show up where you want them to!', 'adrotate'); ?></p>
31
  </div>
32
  </div>
33
 
34
  <h3><?php _e('Localize your ad campaigns with Geo Targeting', 'adrotate'); ?></h3>
35
  <div class="postbox-ajdg">
36
  <div class="inside">
37
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><img src="<?php echo plugins_url('/images/demo-geo-targeting.png', dirname(__FILE__)); ?>" 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 or AdRotate Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users.', 'adrotate'); ?></p>
38
  </div>
39
  </div>
40
 
41
  <h3><?php _e('Get Premium Support almost all year round', 'adrotate'); ?></h3>
42
  <div class="postbox-ajdg">
43
  <div class="inside">
44
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><img src="<?php echo plugins_url('/images/demo-support.png', dirname(__FILE__)); ?>" 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 one business day.', 'adrotate'); ?></p>
45
  </div>
46
  </div>
47
 
48
  <h3><?php _e('AdRotate is brought to you by', 'adrotate'); ?></h3>
49
  <div class="postbox-ajdg">
50
  <div class="inside">
51
- <script>(function(d, s, id) {
52
- var js, fjs = d.getElementsByTagName(s)[0];
53
- if (d.getElementById(id)) return;
54
- js = d.createElement(s); js.id = id;
55
- js.src = "https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5";
56
- fjs.parentNode.insertBefore(js, fjs);
57
- }(document, 'script', 'facebook-jssdk'));</script>
58
- <p><center><div class="fb-page"
59
- data-href="https://www.facebook.com/Arnandegans"
60
- data-width="490"
61
- data-adapt-container-width="true"
62
- data-hide-cover="false"
63
- data-show-facepile="false">
64
- </div></center></p>
65
  </div>
66
  </div>
67
 
@@ -74,33 +62,33 @@
74
  <h3><?php _e('Schedule all campaigns with ease', 'adrotate'); ?></h3>
75
  <div class="postbox-ajdg">
76
  <div class="inside">
77
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><img src="<?php echo plugins_url('/images/demo-schedule.png', dirname(__FILE__)); ?>" 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, specific days in the week. You name it, AdRotate schedules it. This makes planning your revenue stream very flexible. You can set one or many schedules for adverts.', 'adrotate'); ?></p>
78
  </div>
79
  </div>
80
 
81
  <h3><?php _e('Avoid adblockers', 'adrotate'); ?></h3>
82
  <div class="postbox-ajdg">
83
  <div class="inside">
84
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><img src="<?php echo plugins_url('/images/demo-adblock.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Try and avoid adblockers so your adverts get the exposure you want them to have. AdRotate Pro offers some advanced tools to deceive adblockers so your adverts are less likely to be removed. Of-course make sure you create your adverts smartly so these features reach their full potential!', 'adrotate'); ?></p>
85
  </div>
86
  </div>
87
 
88
  <h3><?php _e('Stay up-to-date with notifications', 'adrotate'); ?></h3>
89
  <div class="postbox-ajdg">
90
  <div class="inside">
91
- <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><img src="<?php echo plugins_url('/images/demo-notifications.png', dirname(__FILE__)); ?>" 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, send push notifications to your iOS or Android device. Get notified when adverts expire, have errors or when advertisers create new adverts. Never miss an expiration date again.', 'adrotate'); ?></p>
92
  </div>
93
  </div>
94
 
95
  <h3><?php _e('Buy AdRotate Professional', 'adrotate'); ?></h3>
96
  <div class="postbox-ajdg">
97
  <div class="inside">
98
- <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=compare-licenses&utm_medium=pro-page&utm_source=adrotate-free"><img src="<?php echo plugins_url('/images/adrotate-product.png', dirname(__FILE__)); ?>" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
99
- <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&utm_campaign=buy-single&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
100
- <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&utm_campaign=buy-duo&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
101
- <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 89.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&utm_campaign=buy-multi&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
102
- <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 199.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&utm_campaign=buy-developer&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
103
- <p><h4><?php _e('Compare licenses', 'adrotate'); ?></h4> <?php _e("Not sure which license is for you? Compare them...", 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=compare-licenses&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('All Licenses', 'adrotate'); ?> &raquo;</a></p>
104
  </div>
105
  </div>
106
  <!--
@@ -125,6 +113,6 @@
125
 
126
  <div class="clear"></div>
127
 
128
- <p><center>A grasp of the features AdRotate Pro has to offer over the free version. Check out the <a href="https://ajdg.solutions/products/adrotate-for-wordpress/??utm_campaign=adrotate-page&utm_medium=pro-page&utm_source=adrotate-free" target="_blank">AdRotate website</a> for more information.</center></p>
129
  <p><?php echo adrotate_trademark(); ?></p>
130
  </div>
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
  <div id="dashboard-widgets-wrap">
13
+ <p><center>Take a peek into professional advertising for WordPress websites and discover how you can benefit from the powerful features <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank">AdRotate Professional</a> has to offer.</center></p>
14
 
15
  <div id="dashboard-widgets" class="metabox-holder">
16
 
20
  <h3><?php _e('Satisfy your advertisers', 'adrotate'); ?></h3>
21
  <div class="postbox-ajdg">
22
  <div class="inside">
23
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-satisfy.png', dirname(__FILE__)); ?>" 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('Mobile campaigns', 'adrotate'); ?></h3>
28
  <div class="postbox-ajdg">
29
  <div class="inside">
30
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-mobile.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Target mobile users with ease and show the right adverts to smartphones, tablets and computers. Mix and match as you please and offer adverts that suit the device or mobile operating system. Create as many mobile adverts as you want without effort and with a few easy to use options they show up where you want them to!', 'adrotate'); ?></p>
31
  </div>
32
  </div>
33
 
34
  <h3><?php _e('Localize your ad campaigns with Geo Targeting', 'adrotate'); ?></h3>
35
  <div class="postbox-ajdg">
36
  <div class="inside">
37
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-geo-targeting.png', dirname(__FILE__)); ?>" 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 or AdRotate Geo. AdRotate Geo is an exclusive Geo Lookup service for AdRotate Pro users.', 'adrotate'); ?></p>
38
  </div>
39
  </div>
40
 
41
  <h3><?php _e('Get Premium Support almost all year round', 'adrotate'); ?></h3>
42
  <div class="postbox-ajdg">
43
  <div class="inside">
44
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-support.png', dirname(__FILE__)); ?>" 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 one business day.', 'adrotate'); ?></p>
45
  </div>
46
  </div>
47
 
48
  <h3><?php _e('AdRotate is brought to you by', 'adrotate'); ?></h3>
49
  <div class="postbox-ajdg">
50
  <div class="inside">
51
+ <p><?php _e('I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner to find out more about me and what I am doing!', 'adrotate'); ?></p>
52
+ <a href="http://www.arnan.me/?pk_campaign=adrotate-free&pk_kwd=propage" title="arnan.me - Nomadic in the Philippines"><img src="<?php echo plugins_url('/images/arnan-credits.jpg', dirname(__FILE__)); ?>" alt="Arnan de Gans" align="center" class="ajdg-photo" /></a>
 
 
 
 
 
 
 
 
 
 
 
 
53
  </div>
54
  </div>
55
 
62
  <h3><?php _e('Schedule all campaigns with ease', 'adrotate'); ?></h3>
63
  <div class="postbox-ajdg">
64
  <div class="inside">
65
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-schedule.png', dirname(__FILE__)); ?>" 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, specific days in the week. You name it, AdRotate schedules it. This makes planning your revenue stream very flexible. You can set one or many schedules for adverts.', 'adrotate'); ?></p>
66
  </div>
67
  </div>
68
 
69
  <h3><?php _e('Avoid adblockers', 'adrotate'); ?></h3>
70
  <div class="postbox-ajdg">
71
  <div class="inside">
72
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-adblock.png', dirname(__FILE__)); ?>" class="alignleft pro-image" /></a><?php _e('Try and avoid adblockers so your adverts get the exposure you want them to have. AdRotate Pro offers some advanced tools to deceive adblockers so your adverts are less likely to be removed. Of-course make sure you create your adverts smartly so these features reach their full potential!', 'adrotate'); ?></p>
73
  </div>
74
  </div>
75
 
76
  <h3><?php _e('Stay up-to-date with notifications', 'adrotate'); ?></h3>
77
  <div class="postbox-ajdg">
78
  <div class="inside">
79
+ <p><a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank"><img src="<?php echo plugins_url('/images/demo-notifications.png', dirname(__FILE__)); ?>" 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, send push notifications to your iOS or Android device. Get notified when adverts expire, have errors or when advertisers create new adverts. Never miss an expiration date again.', 'adrotate'); ?></p>
80
  </div>
81
  </div>
82
 
83
  <h3><?php _e('Buy AdRotate Professional', 'adrotate'); ?></h3>
84
  <div class="postbox-ajdg">
85
  <div class="inside">
86
+ <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage"><img src="<?php echo plugins_url('/images/adrotate-product.png', dirname(__FILE__)); ?>" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
87
+ <p><h4><?php _e('Single License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('One WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&pk_campaign=adrotate-free&pk_kwd=single" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
88
+ <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('Two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&pk_campaign=adrotate-free&pk_kwd=duo" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
89
+ <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 89.00)</h4><?php _e('Up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&pk_campaign=adrotate-free&pk_kwd=multi" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
90
+ <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 199.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&pk_campaign=adrotate-free&pk_kwd=developer" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
91
+ <p><h4><?php _e('Compare licenses', 'adrotate'); ?></h4> <?php _e('Not sure which license is for you? Compare them...', 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=compare" target="_blank"><?php _e('All Licenses', 'adrotate'); ?> &raquo;</a></p>
92
  </div>
93
  </div>
94
  <!--
113
 
114
  <div class="clear"></div>
115
 
116
+ <p><center>A grasp of the features AdRotate Pro has to offer over the free version. Check out the <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=propage" target="_blank">AdRotate website</a> for more information.</center></p>
117
  <p><?php echo adrotate_trademark(); ?></p>
118
  </div>
dashboard/info.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
@@ -41,33 +41,15 @@ $data = get_option("adrotate_advert_status");
41
  <td class="first b"><a href="admin.php?page=adrotate-groups"><?php echo $groups; ?> <?php _e('Groups', 'adrotate'); ?></a></td>
42
  <td class="b"><a href="admin.php?page=adrotate-ads"><?php echo $data['error']; ?> <?php _e('Have errors', 'adrotate'); ?></a></td>
43
  </tr>
44
- </tbody>
45
-
46
- <thead>
47
- <tr class="first">
48
- <td colspan="2"><strong><?php _e('Support AdRotate', 'adrotate'); ?></strong></td>
49
- </tr>
50
- </thead>
51
-
52
- <tbody>
53
- <tr class="first">
54
  <td colspan="2">
55
- <center><?php _e('Consider writing a review if you like AdRotate. Also follow my Facebook page for updates about me and my plugins. Thank you!', 'adrotate'); ?><br /><br />
 
56
  <center><a class="button-primary" href="https://paypal.me/arnandegans/10usd" target="_blank">Donate $10 via Paypal</a> <a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#new-post">Write review on WordPress.org</a></center><br />
57
- <script>(function(d, s, id) {
58
- var js, fjs = d.getElementsByTagName(s)[0];
59
- if (d.getElementById(id)) return;
60
- js = d.createElement(s); js.id = id;
61
- js.src = "https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5";
62
- fjs.parentNode.insertBefore(js, fjs);
63
- }(document, 'script', 'facebook-jssdk'));</script>
64
- <p><center><div class="fb-page"
65
- data-href="https://www.facebook.com/Arnandegans"
66
- data-width="490"
67
- data-adapt-container-width="true"
68
- data-hide-cover="false"
69
- data-show-facepile="false">
70
- </div></center></p>
71
  </td>
72
  </tr>
73
  </tbody>
@@ -78,12 +60,12 @@ $data = get_option("adrotate_advert_status");
78
  <h3><?php _e('Buy AdRotate Professional', 'adrotate'); ?></h3>
79
  <div class="postbox-ajdg">
80
  <div class="inside">
81
- <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=compare-licenses&utm_medium=info-page&utm_source=adrotate-free"><img src="<?php echo plugins_url('/images/adrotate-product.png', dirname(__FILE__)); ?>" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
82
- <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&utm_campaign=buy-single&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
83
- <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&utm_campaign=buy-duo&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
84
- <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 89.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&utm_campaign=buy-multi&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
85
- <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 199.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&utm_campaign=buy-developer&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
86
- <p><h4><?php _e('Compare licenses', 'adrotate'); ?></h4> <?php _e("Not sure which license is for you? Compare them...", 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=compare-license&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('All Licenses', 'adrotate'); ?> &raquo;</a></p>
87
  <!--
88
  <img src="<?php echo plugins_url('/images/adrotate-product.png', dirname(__FILE__)); ?>" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" />
89
  <p><h4><?php _e('Lifetime License', 'adrotate'); ?> (&euro; 59.00)</h4><?php _e('Single installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&utm_campaign=buy-single&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
@@ -120,10 +102,10 @@ $data = get_option("adrotate_advert_status");
120
  <div class="postbox-ajdg">
121
  <div class="inside">
122
  <p><img src="<?php echo plugins_url('/images/arnan-jungle.jpg', dirname(__FILE__)); ?>" alt="Arnan de Gans" width="55" height="55" align="left" class="ajdg-photo" style="margin: 0 10px 0 0;" />
123
- <a href="http://meandmymac.net/?utm_campaign=homepage&utm_medium=info-page&utm_source=adrotate-free" title="Arnan de Gans">Arnan de Gans</a> (<a href="https://ajdg.solutions/?utm_campaign=homepage&utm_medium=info-page&utm_source=adrotate-free" title="Arnan de Gans">AJdG Solutions</a>) - <?php _e('I am a digital nomad in the Philippines. Click on my name to find out more about me and what I am doing. Thanks for your support and for using my plugins!', 'adrotate'); ?></p>
124
  <?php
125
- wp_widget_rss_output('http://meandmymac.net/feed/', array(
126
- 'items' => 2,
127
  'show_summary' => 1,
128
  'show_author' => 0,
129
  'show_date' => 1)
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
41
  <td class="first b"><a href="admin.php?page=adrotate-groups"><?php echo $groups; ?> <?php _e('Groups', 'adrotate'); ?></a></td>
42
  <td class="b"><a href="admin.php?page=adrotate-ads"><?php echo $data['error']; ?> <?php _e('Have errors', 'adrotate'); ?></a></td>
43
  </tr>
44
+ <tr>
 
 
 
 
 
 
 
 
 
45
  <td colspan="2">
46
+ <p><strong><?php _e('Support AdRotate', 'adrotate'); ?></strong></p>
47
+ <p><?php _e('Consider writing a review if you like AdRotate. Also follow my Facebook page for updates about me and my plugins. Thank you!', 'adrotate'); ?><br />
48
  <center><a class="button-primary" href="https://paypal.me/arnandegans/10usd" target="_blank">Donate $10 via Paypal</a> <a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#new-post">Write review on WordPress.org</a></center><br />
49
+ <a href="http://www.arnan.me/?pk_campaign=adrotate-free&pk_kwd=infopage" title="arnan.me - Nomadic in the Philippines"><img src="<?php echo plugins_url('/images/arnan-credits.jpg', dirname(__FILE__)); ?>" alt="Arnan de Gans" align="center" class="ajdg-photo" /></a></p>
50
+
51
+ <p><strong><?php _e('Get paid as a publisher:', 'adrotate'); ?></strong></p>
52
+ <p><a href="http://signup.clicksor.com/advertise_here.php?nid=1&srid=&ref=381832" target="_blank"><img alt="Clicksor" height="125" width="125" src="<?php echo plugins_url('/images/clicksor.png', dirname(__FILE__)); ?>"></a>&nbsp;&nbsp;<a href="https://www.viglink.com/?vgref=2984797&amp;vgtag=banner"><img alt="VigLink" height="125" width="125" src="<?php echo plugins_url('/images/viglink.png', dirname(__FILE__)); ?>" /></a></p></center>
 
 
 
 
 
 
 
 
 
 
53
  </td>
54
  </tr>
55
  </tbody>
60
  <h3><?php _e('Buy AdRotate Professional', 'adrotate'); ?></h3>
61
  <div class="postbox-ajdg">
62
  <div class="inside">
63
+ <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=infopage"><img src="<?php echo plugins_url('/images/adrotate-product.png', dirname(__FILE__)); ?>" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
64
+ <p><h4><?php _e('Single License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('One WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&pk_campaign=adrotate-free&pk_kwd=single" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
65
+ <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('Two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&pk_campaign=adrotate-free&pk_kwd=duo" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
66
+ <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 89.00)</h4><?php _e('Up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&pk_campaign=adrotate-free&pk_kwd=multi" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
67
+ <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 199.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&pk_campaign=adrotate-free&pk_kwd=developer" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
68
+ <p><h4><?php _e('Compare licenses', 'adrotate'); ?></h4> <?php _e('Not sure which license is for you? Compare them...', 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?pk_campaign=adrotate-free&pk_kwd=compare" target="_blank"><?php _e('All Licenses', 'adrotate'); ?> &raquo;</a></p>
69
  <!--
70
  <img src="<?php echo plugins_url('/images/adrotate-product.png', dirname(__FILE__)); ?>" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" />
71
  <p><h4><?php _e('Lifetime License', 'adrotate'); ?> (&euro; 59.00)</h4><?php _e('Single installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&utm_campaign=buy-single&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
102
  <div class="postbox-ajdg">
103
  <div class="inside">
104
  <p><img src="<?php echo plugins_url('/images/arnan-jungle.jpg', dirname(__FILE__)); ?>" alt="Arnan de Gans" width="55" height="55" align="left" class="ajdg-photo" style="margin: 0 10px 0 0;" />
105
+ <a href="http://www.arnan.me/?pk_campaign=adrotate-free&pk_kwd=infopage" title="Arnan de Gans">Arnan de Gans</a> (<a href="https://ajdg.solutions/?pk_campaign=adrotate-free&pk_kwd=infopage" title="Arnan de Gans">AJdG Solutions</a>) - <?php _e('I am a digital nomad in the Philippines. Click on my name to find out more about me and what I am doing. Thanks for your support and for using my plugins!', 'adrotate'); ?></p>
106
  <?php
107
+ wp_widget_rss_output('http://www.arnan.me/feed/', array(
108
+ 'items' => 3,
109
  'show_summary' => 1,
110
  'show_author' => 0,
111
  'show_date' => 1)
dashboard/publisher/adverts-disabled.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
dashboard/publisher/adverts-edit.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
@@ -290,7 +290,7 @@ if($edit_banner->imagetype == "field") {
290
  </p>
291
 
292
  <h2><?php _e('Advanced', 'adrotate'); ?></h2>
293
- <p><em><?php _e('Everything below is optional.', 'adrotate'); ?> <?php _e('Available in AdRotate Pro!', 'adrotate'); ?></em></p>
294
  <table class="widefat" style="margin-top: .5em">
295
 
296
  <tbody>
@@ -353,48 +353,75 @@ if($edit_banner->imagetype == "field") {
353
  </table>
354
  <center><?php _e('With AdRotate Pro you can easily select which devices and mobile operating systems the advert should show on!', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>!</center>
355
 
356
- <h3><?php _e('Geo Targeting in AdRotate Pro', 'adrotate'); ?></h3>
357
- <p><em><?php _e('Assign the advert to a group and enable that group to use Geo Targeting.', 'adrotate'); ?></em></p>
358
- <table class="widefat" style="margin-top: .5em">
359
- <tbody>
360
- <tr>
361
- <th width="15%" valign="top"><?php _e('Cities/States', 'adrotate'); ?></strong></th>
362
- <td colspan="2">
363
- <textarea name="adrotate_geo_cities" cols="85" rows="3" disabled>Amsterdam, Noord Holland, New York, California, Tokyo, London</textarea><br />
364
- <p><em><?php _e('A comma separated list of cities (or the Metro ID) and/or states (Also the states ISO codes are supported)', 'adrotate'); ?> (Alkmaar, Philadelphia, Melbourne, ...)<br /><?php _e('AdRotate does not check the validity of names so make sure you spell them correctly!', 'adrotate'); ?></em></p>
365
- </td>
366
- </tr>
367
- <tr>
368
- <th valign="top"><?php _e('Countries', 'adrotate'); ?></strong></th>
369
- <td colspan="2">
370
- <label for="adrotate_geo_countries">
371
- <div class="adrotate-select">
372
- <table width="100%">
373
- <tbody>
374
- <tr>
375
- <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">United States</td>
376
- </tr>
377
- <tr>
378
- <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Australia</td>
379
- </tr>
380
- <tr>
381
- <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Germany</td>
382
- </tr>
383
- <tr>
384
- <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Brazil</td>
385
- </tr>
386
- <tr>
387
- <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Japan</td>
388
- </tr>
389
- </tbody>
390
- </table>
 
 
 
 
 
 
 
 
 
 
 
391
  </div>
392
- </label>
393
- <p><em><?php _e('Select the countries you want the adverts to show in.', 'adrotate'); ?> <?php _e('Cities take priority and will be filtered first.', 'adrotate'); ?></em></p>
394
- </td>
395
- </tr>
396
- </tbody>
397
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
398
  <center><?php _e('Target your audience with Geo Targeting in AdRotate Pro', 'adrotate'); ?>, <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>.</center>
399
 
400
  <h3><?php _e('Usage', 'adrotate'); ?></h3>
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
290
  </p>
291
 
292
  <h2><?php _e('Advanced', 'adrotate'); ?></h2>
293
+ <p><em><?php _e('Available in AdRotate Pro!', 'adrotate'); ?></em></p>
294
  <table class="widefat" style="margin-top: .5em">
295
 
296
  <tbody>
353
  </table>
354
  <center><?php _e('With AdRotate Pro you can easily select which devices and mobile operating systems the advert should show on!', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>!</center>
355
 
356
+ <h2><?php _e('Geo Targeting', 'adrotate-pro'); ?></h2>
357
+ <p><em><?php _e('Assign the advert to a group and enable that group to use Geo Targeting.', 'adrotate-pro'); ?> <?php _e('Available in AdRotate Pro!', 'adrotate'); ?></em></p>
358
+
359
+ <div id="dashboard-widgets-wrap">
360
+ <div id="dashboard-widgets" class="metabox-holder">
361
+
362
+ <div id="postbox-container-1" class="postbox-container" style="width:50%;">
363
+ <div class="meta-box-sortables">
364
+
365
+ <div class="postbox-ajdg">
366
+ <div class="inside">
367
+ <p><strong>Select Countries and or Regions</strong></p>
368
+ <div class="adrotate-select">
369
+ <table width="100%">
370
+ <tbody>
371
+ <tr>
372
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">United States</td>
373
+ </tr>
374
+ <tr>
375
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Australia</td>
376
+ </tr>
377
+ <tr>
378
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Germany</td>
379
+ </tr>
380
+ <tr>
381
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Brazil</td>
382
+ </tr>
383
+ <tr>
384
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Japan</td>
385
+ </tr>
386
+ <tr>
387
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Netherlands</td>
388
+ </tr>
389
+ <tr>
390
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Mexico</td>
391
+ </tr>
392
+ <tr>
393
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">Canada</td>
394
+ </tr>
395
+ <tr>
396
+ <td class="check-column" style="padding: 0px;"><input type="checkbox" name="adrotate_geo_countries[]" value="" disabled></td><td style="padding: 0px;">South Africa</td>
397
+ </tr>
398
+ </tbody>
399
+ </table>
400
+ </div>
401
+ </div>
402
  </div>
403
+
404
+ </div>
405
+ </div>
406
+
407
+ <div id="postbox-container-3" class="postbox-container" style="width:50%;">
408
+ <div class="meta-box-sortables">
409
+
410
+ <div class="postbox-ajdg">
411
+ <div class="inside">
412
+
413
+ <p><strong>Enter cities, metro IDs, States or State ISO codes</strong></p>
414
+ <textarea name="adrotate_geo_cities" cols="40" rows="6" disabled>Amsterdam, 29022, Noord Holland, New York, California, Tokyo, London, CA, NY, Ohio</textarea><br />
415
+ <p><em><?php _e('A comma separated list of items:', 'adrotate-pro'); ?> (Alkmaar, New York, Manila, Tokyo) <?php _e('AdRotate does not check the validity of names so make sure you spell them correctly!', 'adrotate-pro'); ?></em></p>
416
+ </div>
417
+ </div>
418
+
419
+ </div>
420
+ </div>
421
+
422
+ </div>
423
+ </div>
424
+ <div class="clear"></div>
425
  <center><?php _e('Target your audience with Geo Targeting in AdRotate Pro', 'adrotate'); ?>, <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>.</center>
426
 
427
  <h3><?php _e('Usage', 'adrotate'); ?></h3>
dashboard/publisher/adverts-error.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
@@ -35,7 +35,7 @@
35
  <table class="widefat tablesorter manage-ads-error" style="margin-top: .5em">
36
  <thead>
37
  <tr>
38
- <td scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></td>
39
  <th width="2%"><center><?php _e('ID', 'adrotate'); ?></center></th>
40
  <th width="15%"><?php _e('Start / End', 'adrotate'); ?></th>
41
  <th><?php _e('Title', 'adrotate'); ?></th>
@@ -43,7 +43,7 @@
43
  </thead>
44
  <tbody>
45
  <?php foreach($error as $banner) {
46
- $grouplist = adrotate_ad_is_in_groups($errbanner['id']);
47
 
48
  if($adrotate_debug['publisher'] == true) {
49
  echo "<tr><td>&nbsp;</td><td><strong>[DEBUG]</strong></td><td colspan='9'>";
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
35
  <table class="widefat tablesorter manage-ads-error" style="margin-top: .5em">
36
  <thead>
37
  <tr>
38
+ <th scope="col" class="manage-column column-cb check-column"><input type="checkbox" /></th>
39
  <th width="2%"><center><?php _e('ID', 'adrotate'); ?></center></th>
40
  <th width="15%"><?php _e('Start / End', 'adrotate'); ?></th>
41
  <th><?php _e('Title', 'adrotate'); ?></th>
43
  </thead>
44
  <tbody>
45
  <?php foreach($error as $banner) {
46
+ $grouplist = adrotate_ad_is_in_groups($banner['id']);
47
 
48
  if($adrotate_debug['publisher'] == true) {
49
  echo "<tr><td>&nbsp;</td><td><strong>[DEBUG]</strong></td><td colspan='9'>";
dashboard/publisher/adverts-main.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
dashboard/publisher/adverts-report.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
dashboard/publisher/groups-edit.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
@@ -190,86 +190,93 @@ if(!is_array($meta_array)) $meta_array = array();
190
  </table>
191
  <center><?php _e('Set up mobile support and use Geo Targeting in AdRotate Pro', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>.</center>
192
 
193
- <h3><?php _e('Post Injection', 'adrotate'); ?></h3>
194
- <table class="widefat" style="margin-top: .5em">
195
- <tr>
196
- <th width="15%"><?php _e('In categories?', 'adrotate'); ?></th>
197
- <td>
198
- <label for="adrotate_cat_location">
199
- <select tabindex="12" name="adrotate_cat_location">
200
- <option value="0" <?php if($edit_group->cat_loc == 0) { echo 'selected'; } ?>><?php _e('Disabled', 'adrotate'); ?></option>
201
- <option value="1" <?php if($edit_group->cat_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate'); ?></option>
202
- <option value="2" <?php if($edit_group->cat_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate'); ?></option>
203
- <option value="3" <?php if($edit_group->cat_loc == 3) { echo 'selected'; } ?>><?php _e('Before and after content', 'adrotate'); ?></option>
204
- <option value="4" <?php if($edit_group->cat_loc == 4) { echo 'selected'; } ?>><?php _e('Inside the content...', 'adrotate'); ?></option>
205
- </select>
206
- </label>
207
- <label for="adrotate_cat_paragraph">
208
- <select tabindex="13" name="adrotate_cat_paragraph">
209
- <option value="0" <?php if($edit_group->cat_par == 0) { echo 'selected'; } ?>>...</option>
210
- <option value="99" <?php if($edit_group->cat_par == 99) { echo 'selected'; } ?>><?php _e('after the middle paragraph', 'adrotate'); ?></option>
211
- <option value="1" <?php if($edit_group->cat_par == 1) { echo 'selected'; } ?>><?php _e('after the 1st paragraph', 'adrotate'); ?></option>
212
- <option value="2" <?php if($edit_group->cat_par == 2) { echo 'selected'; } ?>><?php _e('after the 2nd paragraph', 'adrotate'); ?></option>
213
- <option value="3" <?php if($edit_group->cat_par == 3) { echo 'selected'; } ?>><?php _e('after the 3rd paragraph', 'adrotate'); ?></option>
214
- <option value="4" <?php if($edit_group->cat_par == 4) { echo 'selected'; } ?>><?php _e('after the 4th paragraph', 'adrotate'); ?></option>
215
- <option value="5" <?php if($edit_group->cat_par == 5) { echo 'selected'; } ?>><?php _e('after the 5th paragraph', 'adrotate'); ?></option>
216
- <option value="6" <?php if($edit_group->cat_par == 6) { echo 'selected'; } ?>><?php _e('after the 6th paragraph', 'adrotate'); ?></option>
217
- <option value="7" <?php if($edit_group->cat_par == 7) { echo 'selected'; } ?>><?php _e('after the 7th paragraph', 'adrotate'); ?></option>
218
- <option value="8" <?php if($edit_group->cat_par == 8) { echo 'selected'; } ?>><?php _e('after the 8th paragraph', 'adrotate'); ?></option>
219
- </select>
220
- </label>
221
- </td>
222
- </tr>
223
- <tr>
224
- <th valign="top"><?php _e('Which categories?', 'adrotate'); ?></th>
225
- <td>
226
- <label for="adrotate_categories">
227
- <div class="adrotate-select">
228
- <?php echo adrotate_select_categories($edit_group->cat, 0, 0, 0); ?>
229
- </div><em><?php _e('Click the categories posts you want the adverts to show in.', 'adrotate'); ?></em>
230
- </label>
231
- </td>
232
- </tr>
233
- <tr>
234
- <th valign="top"><?php _e('In pages?', 'adrotate'); ?></th>
235
- <td>
236
- <label for="adrotate_page_location">
237
- <select tabindex="14" name="adrotate_page_location">
238
- <option value="0" <?php if($edit_group->page_loc == 0) { echo 'selected'; } ?>><?php _e('Disabled', 'adrotate'); ?></option>
239
- <option value="1" <?php if($edit_group->page_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate'); ?></option>
240
- <option value="2" <?php if($edit_group->page_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate'); ?></option>
241
- <option value="3" <?php if($edit_group->page_loc == 3) { echo 'selected'; } ?>><?php _e('Before and after content', 'adrotate'); ?></option>
242
- <option value="4" <?php if($edit_group->page_loc == 4) { echo 'selected'; } ?>><?php _e('Inside the content...', 'adrotate'); ?></option>
243
- </select>
244
- </label>
245
- <label for="adrotate_page_paragraph">
246
- <select tabindex="15" name="adrotate_page_paragraph">
247
- <option value="0" <?php if($edit_group->page_par == 0) { echo 'selected'; } ?>>...</option>
248
- <option value="99" <?php if($edit_group->page_par == 99) { echo 'selected'; } ?>><?php _e('after the middle paragraph', 'adrotate'); ?></option>
249
- <option value="1" <?php if($edit_group->page_par == 1) { echo 'selected'; } ?>><?php _e('after the 1st paragraph', 'adrotate'); ?></option>
250
- <option value="2" <?php if($edit_group->page_par == 2) { echo 'selected'; } ?>><?php _e('after the 2nd paragraph', 'adrotate'); ?></option>
251
- <option value="3" <?php if($edit_group->page_par == 3) { echo 'selected'; } ?>><?php _e('after the 3rd paragraph', 'adrotate'); ?></option>
252
- <option value="4" <?php if($edit_group->page_par == 4) { echo 'selected'; } ?>><?php _e('after the 4th paragraph', 'adrotate'); ?></option>
253
- <option value="5" <?php if($edit_group->page_par == 5) { echo 'selected'; } ?>><?php _e('after the 5th paragraph', 'adrotate'); ?></option>
254
- <option value="6" <?php if($edit_group->page_par == 6) { echo 'selected'; } ?>><?php _e('after the 6th paragraph', 'adrotate'); ?></option>
255
- <option value="7" <?php if($edit_group->page_par == 7) { echo 'selected'; } ?>><?php _e('after the 7th paragraph', 'adrotate'); ?></option>
256
- <option value="8" <?php if($edit_group->page_par == 8) { echo 'selected'; } ?>><?php _e('after the 8th paragraph', 'adrotate'); ?></option>
257
- </select>
258
- </label>
259
- </td>
260
- </tr>
261
- <tr>
262
- <th valign="top"><?php _e('Which pages?', 'adrotate'); ?></th>
263
- <td>
264
- <label for="adrotate_pages">
265
- <div class="adrotate-select">
266
- <?php echo adrotate_select_pages($edit_group->page, 0, 0, 0); ?>
267
- </div><em><?php _e('Click the pages you want the adverts to show in.', 'adrotate'); ?></em>
268
- </label>
269
- </td>
270
- </tr>
271
- </tbody>
272
- </table>
 
 
 
 
 
 
 
273
 
274
  <h3><?php _e('Usage', 'adrotate'); ?></h3>
275
  <table class="widefat" style="margin-top: .5em">
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
190
  </table>
191
  <center><?php _e('Set up mobile support and use Geo Targeting in AdRotate Pro', 'adrotate'); ?> <a href="admin.php?page=adrotate-pro"><?php _e('Upgrade today', 'adrotate'); ?></a>.</center>
192
 
193
+ <div id="dashboard-widgets-wrap">
194
+ <div id="dashboard-widgets" class="metabox-holder">
195
+
196
+ <div id="postbox-container-1" class="postbox-container" style="width:50%;">
197
+ <div class="meta-box-sortables">
198
+
199
+ <h2><?php _e('Post Injection', 'adrotate-pro'); ?></h2>
200
+ <div class="postbox-ajdg">
201
+ <div class="inside">
202
+ <p><label for="adrotate_cat_location">
203
+ <select tabindex="18" name="adrotate_cat_location">
204
+ <option value="0" <?php if($edit_group->cat_loc == 0) { echo 'selected'; } ?>><?php _e('Disabled', 'adrotate-pro'); ?></option>
205
+ <option value="5" <?php if($edit_group->cat_loc == 5) { echo 'selected'; } ?>><?php _e('Widget', 'adrotate-pro'); ?></option>
206
+ <option value="1" <?php if($edit_group->cat_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate-pro'); ?></option>
207
+ <option value="2" <?php if($edit_group->cat_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate-pro'); ?></option>
208
+ <option value="3" <?php if($edit_group->cat_loc == 3) { echo 'selected'; } ?>><?php _e('Before and after content', 'adrotate-pro'); ?></option>
209
+ <option value="4" <?php if($edit_group->cat_loc == 4) { echo 'selected'; } ?>><?php _e('Inside the content...', 'adrotate-pro'); ?></option>
210
+ </select>
211
+ </label>
212
+ <label for="adrotate_cat_paragraph">
213
+ <select tabindex="19" name="adrotate_cat_paragraph">
214
+ <option value="0" <?php if($edit_group->cat_par == 0) { echo 'selected'; } ?>>...</option>
215
+ <option value="99" <?php if($edit_group->cat_par == 99) { echo 'selected'; } ?>><?php _e('after the middle paragraph', 'adrotate-pro'); ?></option>
216
+ <option value="1" <?php if($edit_group->cat_par == 1) { echo 'selected'; } ?>><?php _e('after the 1st paragraph', 'adrotate-pro'); ?></option>
217
+ <option value="2" <?php if($edit_group->cat_par == 2) { echo 'selected'; } ?>><?php _e('after the 2nd paragraph', 'adrotate-pro'); ?></option>
218
+ <option value="3" <?php if($edit_group->cat_par == 3) { echo 'selected'; } ?>><?php _e('after the 3rd paragraph', 'adrotate-pro'); ?></option>
219
+ <option value="4" <?php if($edit_group->cat_par == 4) { echo 'selected'; } ?>><?php _e('after the 4th paragraph', 'adrotate-pro'); ?></option>
220
+ <option value="5" <?php if($edit_group->cat_par == 5) { echo 'selected'; } ?>><?php _e('after the 5th paragraph', 'adrotate-pro'); ?></option>
221
+ <option value="6" <?php if($edit_group->cat_par == 6) { echo 'selected'; } ?>><?php _e('after the 6th paragraph', 'adrotate-pro'); ?></option>
222
+ <option value="7" <?php if($edit_group->cat_par == 7) { echo 'selected'; } ?>><?php _e('after the 7th paragraph', 'adrotate-pro'); ?></option>
223
+ <option value="8" <?php if($edit_group->cat_par == 8) { echo 'selected'; } ?>><?php _e('after the 8th paragraph', 'adrotate-pro'); ?></option>
224
+ </select>
225
+ </label></p>
226
+ <p><strong>Select Categories</strong></p>
227
+ <div class="adrotate-select">
228
+ <?php echo adrotate_select_categories($edit_group->cat, 0, 0, 0); ?>
229
+ </div>
230
+ </div>
231
+ </div>
232
+
233
+ </div>
234
+ </div>
235
+
236
+ <div id="postbox-container-3" class="postbox-container" style="width:50%;">
237
+ <div class="meta-box-sortables">
238
+
239
+ <h2><?php _e('Page Injection', 'adrotate-pro'); ?></h2>
240
+ <div class="postbox-ajdg">
241
+ <div class="inside">
242
+ <p><label for="adrotate_page_location">
243
+ <select tabindex="20" name="adrotate_page_location">
244
+ <option value="0" <?php if($edit_group->page_loc == 0) { echo 'selected'; } ?>><?php _e('Disabled', 'adrotate-pro'); ?></option>
245
+ <option value="5" <?php if($edit_group->page_loc == 5) { echo 'selected'; } ?>><?php _e('Widget', 'adrotate-pro'); ?></option>
246
+ <option value="1" <?php if($edit_group->page_loc == 1) { echo 'selected'; } ?>><?php _e('Before content', 'adrotate-pro'); ?></option>
247
+ <option value="2" <?php if($edit_group->page_loc == 2) { echo 'selected'; } ?>><?php _e('After content', 'adrotate-pro'); ?></option>
248
+ <option value="3" <?php if($edit_group->page_loc == 3) { echo 'selected'; } ?>><?php _e('Before and after content', 'adrotate-pro'); ?></option>
249
+ <option value="4" <?php if($edit_group->page_loc == 4) { echo 'selected'; } ?>><?php _e('Inside the content...', 'adrotate-pro'); ?></option>
250
+ </select>
251
+ </label>
252
+ <label for="adrotate_page_paragraph">
253
+ <select tabindex="21" name="adrotate_page_paragraph">
254
+ <option value="0" <?php if($edit_group->page_par == 0) { echo 'selected'; } ?>>...</option>
255
+ <option value="99" <?php if($edit_group->page_par == 99) { echo 'selected'; } ?>><?php _e('after the middle paragraph', 'adrotate-pro'); ?></option>
256
+ <option value="1" <?php if($edit_group->page_par == 1) { echo 'selected'; } ?>><?php _e('after the 1st paragraph', 'adrotate-pro'); ?></option>
257
+ <option value="2" <?php if($edit_group->page_par == 2) { echo 'selected'; } ?>><?php _e('after the 2nd paragraph', 'adrotate-pro'); ?></option>
258
+ <option value="3" <?php if($edit_group->page_par == 3) { echo 'selected'; } ?>><?php _e('after the 3rd paragraph', 'adrotate-pro'); ?></option>
259
+ <option value="4" <?php if($edit_group->page_par == 4) { echo 'selected'; } ?>><?php _e('after the 4th paragraph', 'adrotate-pro'); ?></option>
260
+ <option value="5" <?php if($edit_group->page_par == 5) { echo 'selected'; } ?>><?php _e('after the 5th paragraph', 'adrotate-pro'); ?></option>
261
+ <option value="6" <?php if($edit_group->page_par == 6) { echo 'selected'; } ?>><?php _e('after the 6th paragraph', 'adrotate-pro'); ?></option>
262
+ <option value="7" <?php if($edit_group->page_par == 7) { echo 'selected'; } ?>><?php _e('after the 7th paragraph', 'adrotate-pro'); ?></option>
263
+ <option value="8" <?php if($edit_group->page_par == 8) { echo 'selected'; } ?>><?php _e('after the 8th paragraph', 'adrotate-pro'); ?></option>
264
+ </select>
265
+ </label></p>
266
+
267
+ <p><strong>Select Pages</strong></p>
268
+ <div class="adrotate-select">
269
+ <?php echo adrotate_select_pages($edit_group->page, 0, 0, 0); ?>
270
+ </div>
271
+ </div>
272
+ </div>
273
+
274
+ </div>
275
+ </div>
276
+
277
+ </div>
278
+ </div>
279
+ <div class="clear"></div>
280
 
281
  <h3><?php _e('Usage', 'adrotate'); ?></h3>
282
  <table class="widefat" style="margin-top: .5em">
dashboard/publisher/groups-main.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
dashboard/publisher/groups-report.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
dashboard/settings/advertisers.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
dashboard/settings/general.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
dashboard/settings/geotargeting.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2016 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
dashboard/settings/maintenance.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
dashboard/settings/misc.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
dashboard/settings/notifications.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
dashboard/settings/roles.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
dashboard/settings/statistics.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  <?php
2
  /* ------------------------------------------------------------------------------------
3
  * COPYRIGHT AND TRADEMARK NOTICE
4
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
5
  * ADROTATE is a trademark of Arnan de Gans.
6
 
7
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
images/arnan-credits.jpg ADDED
Binary file
language/adrotate-bg_BG.mo CHANGED
Binary file
language/adrotate-bg_BG.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-07-17 23:26+0800\n"
6
- "PO-Revision-Date: 2016-07-17 23:26+0800\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,109 +13,109 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:842
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
- #: adrotate-functions.php:845
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
- #: adrotate-functions.php:894
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:898
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:902
37
  msgid "Ad(s) deleted"
38
  msgstr "Успешно изтриване"
39
 
40
- #: adrotate-functions.php:906
41
  msgid "Group deleted"
42
  msgstr "Групата е изтрита"
43
 
44
- #: adrotate-functions.php:910
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Статистиката е нулирана"
47
 
48
- #: adrotate-functions.php:914
49
  msgid "Ad(s) renewed"
50
  msgstr "Успешно подновяване"
51
 
52
- #: adrotate-functions.php:918
53
  msgid "Ad(s) deactivated"
54
  msgstr "Успешно деактивиране"
55
 
56
- #: adrotate-functions.php:922
57
  msgid "Ad(s) activated"
58
  msgstr "Успешно активиране"
59
 
60
- #: adrotate-functions.php:926
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
63
 
64
- #: adrotate-functions.php:930
65
  msgid "Export created"
66
  msgstr "Експорта е завършен"
67
 
68
- #: adrotate-functions.php:935
69
  msgid "Settings saved"
70
  msgstr "Настройките са запазени"
71
 
72
- #: adrotate-functions.php:939
73
  msgid "Database optimized"
74
  msgstr "Базата данни е оптимизирана"
75
 
76
- #: adrotate-functions.php:943
77
  msgid "Database repaired"
78
  msgstr "Базата данни е поправена"
79
 
80
- #: adrotate-functions.php:947
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
83
 
84
- #: adrotate-functions.php:951
85
  msgid "Empty database records removed"
86
  msgstr "Празните записи в базата данни са премахнати"
87
 
88
- #: adrotate-functions.php:956
89
  msgid "Action prohibited"
90
  msgstr "Забранено действие"
91
 
92
- #: adrotate-functions.php:960
93
  msgid ""
94
  "The ad was saved but has an issue which might prevent it from working "
95
  "properly. Review the colored ad."
96
  msgstr ""
97
 
98
- #: adrotate-functions.php:964
99
  msgid "No data found in selected time period"
100
  msgstr "Не е намерена информация за избрания период"
101
 
102
- #: adrotate-functions.php:968
103
  msgid "Database can only be optimized or cleaned once every hour"
104
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
105
 
106
- #: adrotate-functions.php:972
107
  msgid "Form can not be (partially) empty!"
108
  msgstr ""
109
 
110
- #: adrotate-functions.php:976
111
  msgid "No ads found."
112
  msgstr ""
113
 
114
- #: adrotate-functions.php:980
115
  msgid "Unexpected error"
116
  msgstr ""
117
 
118
- #: adrotate-manage-publisher.php:685
119
  msgid "AdRotate Advertiser"
120
  msgstr ""
121
 
@@ -193,38 +193,37 @@ msgid "An unknown error occured."
193
  msgstr "Възникна неизвестна грешка."
194
 
195
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
196
- #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
197
  msgid "Check adverts"
198
  msgstr ""
199
 
200
- #: adrotate-output.php:675
201
  msgid ""
202
  "You have enable caching support but W3 Total Cache is not active on your "
203
  "site!"
204
  msgstr ""
205
 
206
- #: adrotate-output.php:678
207
  msgid ""
208
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
209
  "not set."
210
  msgstr ""
211
 
212
- #: adrotate-output.php:683
213
  msgid "Your AdRotate Banner folder is not writable or does not exist."
214
  msgstr ""
215
 
216
- #: adrotate-output.php:723 dashboard/adrotatepro.php:99
217
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
218
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
219
- #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
220
- #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
221
- #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
222
- #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
223
  #: dashboard/settings/geotargeting.php:35
224
  msgid "Buy now"
225
  msgstr "Купи сега"
226
 
227
- #: adrotate-output.php:724
228
  msgid ""
229
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
230
  "to the <strong>PRO</strong> version"
@@ -232,181 +231,178 @@ msgstr ""
232
  "Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
233
  "до <strong>PRO</strong> версията"
234
 
235
- #: adrotate-output.php:724
236
  #, php-format
237
  msgid ""
238
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
239
  msgstr ""
240
 
241
- #: adrotate-output.php:724
242
  msgid "Thank you for your purchase!"
243
  msgstr ""
244
 
245
- #: adrotate-output.php:785
246
  msgid ""
247
- "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
248
- "this menu. Check out the"
249
  msgstr ""
250
 
251
- #: adrotate-output.php:785
252
  msgid "manuals"
253
  msgstr "ръководства"
254
 
255
- #: adrotate-output.php:785 adrotate-output.php:852
256
  msgid "and"
257
  msgstr "и"
258
 
259
- #: adrotate-output.php:785
260
  msgid "forums"
261
  msgstr ""
262
 
263
- #: adrotate-output.php:815
264
  msgid "Useful Links"
265
  msgstr "Полезни връзки"
266
 
267
- #: adrotate-output.php:816
268
  msgid "Useful links to learn more about AdRotate"
269
  msgstr "Полезни връзки, за да получите повече информация за AdRotate"
270
 
271
- #: adrotate-output.php:818
272
  msgid "AdRotate website"
273
  msgstr ""
274
 
275
- #: adrotate-output.php:819
276
  msgid "Getting Started With AdRotate"
277
  msgstr "Започнете от нулата с AdRotate Pro"
278
 
279
- #: adrotate-output.php:820
280
  msgid "AdRotate manuals"
281
  msgstr ""
282
 
283
- #: adrotate-output.php:821
284
  msgid "AdRotate Support Forum"
285
  msgstr "Форум за поддръжка на AdRotate"
286
 
287
- #: adrotate-output.php:844
288
- msgid "Help AdRotate Grow"
289
- msgstr "Помогнете за развитието на AdRotate"
290
 
291
- #: adrotate-output.php:845
292
- msgid "Follow Arnan on Facebook"
293
  msgstr ""
294
 
295
- #: adrotate-output.php:852
296
  msgid ""
297
- "A lot of users only think to review AdRotate when something goes wrong while "
298
- "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
299
  msgstr ""
300
- "Много потребители се сещат да напишат мнение за AdRotate само, когато нещо "
301
- "се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
302
- "това да остане незабелязано."
303
 
304
- #: adrotate-output.php:852
305
- msgid "If you find AdRotate useful please leave your honest"
306
- msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
307
 
308
- #: adrotate-output.php:852
309
  msgid "rating"
310
  msgstr "оценка"
311
 
312
- #: adrotate-output.php:852
313
  msgid "review"
314
  msgstr "мнение"
315
 
316
- #: adrotate-output.php:852
317
  msgid "on WordPress.org to help AdRotate grow in a positive way"
318
  msgstr "на WordPress.org, за да се развива AdRotate"
319
 
320
- #: adrotate-output.php:885 dashboard/settings/notifications.php:50
321
  #: dashboard/settings/notifications.php:80
322
  msgid "Available in AdRotate Pro"
323
  msgstr "Налично в AdRotate Pro"
324
 
325
- #: adrotate-output.php:885
326
  msgid "More information..."
327
  msgstr "Повече информация..."
328
 
329
- #: adrotate-output.php:886
330
  msgid "This feature is available in AdRotate Pro"
331
  msgstr "Тази функционалност е налична в AdRotate Pro"
332
 
333
- #: adrotate-output.php:886
334
  msgid "Learn more"
335
  msgstr "Повече информация"
336
 
337
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
338
- #: dashboard/publisher/adverts-edit.php:235
339
  msgid "January"
340
  msgstr "Януари"
341
 
342
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
343
- #: dashboard/publisher/adverts-edit.php:236
344
  msgid "February"
345
  msgstr "Февруари"
346
 
347
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
348
- #: dashboard/publisher/adverts-edit.php:237
349
  msgid "March"
350
  msgstr "Март"
351
 
352
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
353
- #: dashboard/publisher/adverts-edit.php:238
354
  msgid "April"
355
  msgstr "Април"
356
 
357
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
358
- #: dashboard/publisher/adverts-edit.php:239
359
  msgid "May"
360
  msgstr "Май"
361
 
362
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
363
- #: dashboard/publisher/adverts-edit.php:240
364
  msgid "June"
365
  msgstr "Юни"
366
 
367
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
368
- #: dashboard/publisher/adverts-edit.php:241
369
  msgid "July"
370
  msgstr "Юли"
371
 
372
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
373
- #: dashboard/publisher/adverts-edit.php:242
374
  msgid "August"
375
  msgstr "Август"
376
 
377
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
378
- #: dashboard/publisher/adverts-edit.php:243
379
  msgid "September"
380
  msgstr "Септември"
381
 
382
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
383
- #: dashboard/publisher/adverts-edit.php:244
384
  msgid "October"
385
  msgstr "Октомври"
386
 
387
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
388
- #: dashboard/publisher/adverts-edit.php:245
389
  msgid "November"
390
  msgstr "Ноември"
391
 
392
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
393
- #: dashboard/publisher/adverts-edit.php:246
394
  msgid "December"
395
  msgstr "Декември"
396
 
397
- #: adrotate-statistics.php:222
398
  msgid "Previous"
399
  msgstr "Предишен"
400
 
401
- #: adrotate-statistics.php:224
402
  msgid "This month"
403
  msgstr "Този месец"
404
 
405
- #: adrotate-statistics.php:225
406
  msgid "Next"
407
  msgstr "Следващ"
408
 
409
- #: adrotate-statistics.php:278
410
  msgid "No data to show!"
411
  msgstr "Няма информация!"
412
 
@@ -450,268 +446,57 @@ msgstr "ID:"
450
  msgid "Fill in the ID of the type you want to display!"
451
  msgstr "Попълнете ID-то на типа, който искате да се показва!"
452
 
453
- #: adrotate.php:102
454
  msgid "General Info"
455
  msgstr "Обща информация"
456
 
457
- #: adrotate.php:103
458
  msgid "AdRotate Pro"
459
  msgstr "AdRotate Pro"
460
 
461
- #: adrotate.php:104
462
- msgid "Manage Adverts"
463
- msgstr ""
464
-
465
- #: adrotate.php:105 dashboard/publisher/groups-main.php:12
466
- msgid "Manage Groups"
467
- msgstr "Управление на групи"
468
-
469
- #: adrotate.php:106 adrotate.php:369
470
- msgid "Manage Schedules"
471
- msgstr "Управление на графици"
472
 
473
- #: adrotate.php:107
474
- msgid "Manage Media"
475
- msgstr "Управление на Медия"
476
 
477
- #: adrotate.php:108
478
  msgid "Settings"
479
  msgstr "Настройки"
480
 
481
- #: adrotate.php:128
482
  msgid "AdRotate Info"
483
  msgstr "AdRotate Info"
484
 
485
- #: adrotate.php:146
486
  msgid "AdRotate Professional"
487
  msgstr "AdRotate Professional"
488
 
489
- #: adrotate.php:186
490
  msgid "Advert Management"
491
  msgstr ""
492
 
493
- #: adrotate.php:244 adrotate.php:311 adrotate.php:364
494
  msgid "Manage"
495
  msgstr "Управление"
496
 
497
- #: adrotate.php:245 adrotate.php:312 adrotate.php:365
498
  msgid "Add New"
499
  msgstr "Добавяне"
500
 
501
- #: adrotate.php:305
502
  msgid "Group Management"
503
  msgstr "Управление на групи"
504
 
505
- #: adrotate.php:314
506
  msgid "Report"
507
  msgstr "Доклад"
508
 
509
- #: adrotate.php:360
510
- msgid "Schedule Management available in AdRotate Pro"
511
- msgstr "Управление с графици е налично в AdRotate Pro"
512
-
513
- #: adrotate.php:370
514
- msgid ""
515
- "Schedule management and multiple schedules per advert is available in "
516
- "AdRotate Pro."
517
- msgstr ""
518
- "Управлението на графици и множество графици за една реклама са налични в "
519
- "AdRotate Pro."
520
-
521
- #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
522
- #: dashboard/publisher/adverts-main.php:114
523
- #: dashboard/publisher/groups-edit.php:71
524
- #: dashboard/publisher/groups-main.php:89
525
- msgid "More information"
526
- msgstr "Повече информация"
527
-
528
- #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
529
- #: dashboard/publisher/adverts-error.php:19
530
- #: dashboard/publisher/adverts-main.php:20
531
- #: dashboard/publisher/groups-main.php:20
532
- msgid "Bulk Actions"
533
- msgstr "Масови действия"
534
-
535
- #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
536
- #: dashboard/publisher/adverts-error.php:29
537
- #: dashboard/publisher/adverts-main.php:30
538
- #: dashboard/publisher/groups-main.php:24
539
- msgid "Go"
540
- msgstr "Напред"
541
-
542
- #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
543
- #: dashboard/publisher/adverts-error.php:39
544
- #: dashboard/publisher/adverts-main.php:39
545
- #: dashboard/publisher/groups-main.php:32
546
- msgid "ID"
547
- msgstr "ID"
548
-
549
- #: adrotate.php:388
550
- msgid "Start"
551
- msgstr "Начало"
552
-
553
- #: adrotate.php:388
554
- msgid "End"
555
- msgstr "Край"
556
-
557
- #: adrotate.php:389
558
- msgid "Ads"
559
- msgstr "Реклами"
560
-
561
- #: adrotate.php:391
562
- msgid "Max Impressions"
563
- msgstr "Максимум импресии"
564
-
565
- #: adrotate.php:392
566
- msgid "Max Clicks"
567
- msgstr "Максимум кликове"
568
-
569
- #: adrotate.php:422
570
- msgid "No schedules created yet!"
571
- msgstr "Все още няма създадени графици!"
572
-
573
- #: adrotate.php:427
574
- msgid "Easily manage your schedules from here with AdRotate Pro."
575
- msgstr "Можете лесно да управлявате графиците си от тук с AdRotate Pro."
576
-
577
- #: adrotate.php:427 adrotate.php:490
578
- msgid "Upgrade today!"
579
- msgstr "Надградете днес!"
580
-
581
- #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
582
- #: dashboard/publisher/groups-edit.php:383
583
- msgid "Expires soon."
584
- msgstr "Изтича скоро."
585
-
586
- #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
587
- #: dashboard/publisher/groups-edit.php:384
588
- msgid "Has expired."
589
- msgstr "Изтекла."
590
-
591
- #: adrotate.php:452
592
- msgid "Media Management available in AdRotate Pro"
593
- msgstr "Управление на медия е налично в AdRotate Pro"
594
-
595
- #: adrotate.php:454
596
- msgid "Upload images to the AdRotate Pro banners folder from here."
597
- msgstr ""
598
-
599
- #: adrotate.php:454
600
- msgid ""
601
- "This is useful if you use responsive adverts with multiple images or have "
602
- "HTML5 adverts containing multiple files."
603
- msgstr ""
604
-
605
- #: adrotate.php:454
606
- msgid "Media uploading and management is available in AdRotate Pro."
607
- msgstr "Управлението и качването на медия са налични в AdRotate Pro."
608
-
609
- #: adrotate.php:456
610
- msgid "Upload new file"
611
- msgstr ""
612
-
613
- #: adrotate.php:457
614
- msgid "Accepted files:"
615
- msgstr ""
616
-
617
- #: adrotate.php:457
618
- msgid "For HTML5 ads you can also upload html and javascript files."
619
- msgstr ""
620
-
621
- #: adrotate.php:457
622
- msgid "Maximum size is 512Kb."
623
- msgstr "Максималния размер е 512Kb."
624
-
625
- #: adrotate.php:457
626
- msgid "Important:"
627
- msgstr "Важно:"
628
-
629
- #: adrotate.php:457
630
- msgid ""
631
- "Make sure your file has no spaces or special characters in the name. Replace "
632
- "spaces with a - or _."
633
- msgstr ""
634
- "Уверете се, че файла няма интервали и специални знаци в името си. Заместете "
635
- "интервалите с - или _."
636
-
637
- #: adrotate.php:457
638
- msgid ""
639
- "If you remove spaces from filenames for HTML5 adverts also edit the html "
640
- "file so it knows about the changed name. For example for the javascript file."
641
- msgstr ""
642
-
643
- #: adrotate.php:460
644
- msgid ""
645
- "For responsive adverts make sure the filename is in the following format; "
646
- "\"imagename.full.ext\". A full set of sized images is strongly recommended."
647
- msgstr ""
648
- "За responsive реклами трябва да се уверите, че името на файла е в следния "
649
- "формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени картинки "
650
- "е строго препоръчителен."
651
-
652
- #: adrotate.php:461
653
- msgid ""
654
- "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
655
- "filename instead of \".full\" for the various viewports."
656
- msgstr ""
657
- "За картинките с по-малки размери (за различните разделителни пособности), "
658
- "използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
659
- "файловете, вместо \".full\"."
660
-
661
- #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
662
- #: dashboard/publisher/groups-edit.php:316
663
- msgid "Example:"
664
- msgstr "Пример:"
665
-
666
- #: adrotate.php:462
667
- msgid ""
668
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
669
- "for different viewports."
670
- msgstr ""
671
- "image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
672
- "реклама в различни резолюции на екрана."
673
-
674
- #: adrotate.php:466
675
- msgid "Upload file"
676
- msgstr ""
677
-
678
- #: adrotate.php:466
679
- msgid "Click only once per file!"
680
- msgstr ""
681
-
682
- #: adrotate.php:469
683
- msgid "Available files in"
684
- msgstr ""
685
-
686
- #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
687
- #: dashboard/publisher/groups-main.php:33
688
- msgid "Name"
689
- msgstr "Име"
690
-
691
- #: adrotate.php:475
692
- msgid "Actions"
693
- msgstr "Действия"
694
-
695
- #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
696
- #: adrotate.php:484 adrotate.php:485 adrotate.php:486
697
- #: dashboard/publisher/adverts-disabled.php:22
698
- #: dashboard/publisher/adverts-error.php:21
699
- #: dashboard/publisher/adverts-main.php:22
700
- msgid "Delete"
701
- msgstr "Изтриване"
702
-
703
- #: adrotate.php:490
704
- msgid ""
705
- "Make sure the banner images are not in use by adverts when you delete them!"
706
- msgstr ""
707
- "Уверете се, че картинките за банери не се използват от реклами, преди да ги "
708
- "изтриете!"
709
-
710
- #: adrotate.php:490
711
- msgid "Manage your banner folder from here with AdRotate Pro."
712
- msgstr "Можете да управлявате папката с банери от тук с AdRotate Pro."
713
-
714
- #: adrotate.php:516
715
  msgid "AdRotate Settings"
716
  msgstr "AdRotate Настройки"
717
 
@@ -739,8 +524,9 @@ msgstr ""
739
  msgid ""
740
  "Target mobile users with ease and show the right adverts to smartphones, "
741
  "tablets and computers. Mix and match as you please and offer adverts that "
742
- "suit the device. Create as many mobile adverts as you want without effort "
743
- "and with a few easy to use options they show up where you want them to!"
 
744
  msgstr ""
745
 
746
  #: dashboard/adrotatepro.php:34
@@ -767,39 +553,40 @@ msgid ""
767
  "forum. Get a solution (usually) within one business day."
768
  msgstr ""
769
 
770
- #: dashboard/adrotatepro.php:48 dashboard/info.php:119
771
  msgid "AdRotate is brought to you by"
772
  msgstr "AdRotate достига до Вас, благодарение на"
773
 
774
- #: dashboard/adrotatepro.php:74
775
  msgid "Schedule all campaigns with ease"
776
  msgstr "Планиране на всички кампании с лекота"
777
 
778
- #: dashboard/adrotatepro.php:77
779
  msgid ""
780
  "Schedule your adverts and set up advertising campaigns based on dates you or "
781
- "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
782
- "You name it, AdRotate schedules it. This makes planning your revenue stream "
783
- "much more easy. You can set one or many schedules for adverts."
 
784
  msgstr ""
785
 
786
- #: dashboard/adrotatepro.php:81
787
  msgid "Avoid adblockers"
788
  msgstr ""
789
 
790
- #: dashboard/adrotatepro.php:84
791
  msgid ""
792
- "Try and avoid adblockers so you adverts get the exposure you want them to "
793
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
794
  "adverts are less likely to be removed. Of-course make sure you create your "
795
  "adverts smartly so these features reach their full potential!"
796
  msgstr ""
797
 
798
- #: dashboard/adrotatepro.php:88
799
  msgid "Stay up-to-date with notifications"
800
  msgstr ""
801
 
802
- #: dashboard/adrotatepro.php:91
803
  msgid ""
804
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
805
  "adverts expire or need your attention. Additionally, send push notifications "
@@ -807,89 +594,89 @@ msgid ""
807
  "or when advertisers create new adverts. Never miss an expiration date again."
808
  msgstr ""
809
 
810
- #: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
811
- #: dashboard/info.php:78
812
  msgid "Buy AdRotate Professional"
813
  msgstr "Купете AdRotate Professional"
814
 
815
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
816
  msgid "Single License"
817
  msgstr ""
818
 
819
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
820
  msgid "For one WordPress installation."
821
  msgstr "За една инсталация на WordPress."
822
 
823
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
824
- #: dashboard/info.php:83 dashboard/info.php:90
825
  msgid "Duo License"
826
  msgstr "Duo лиценз"
827
 
828
- #: dashboard/adrotatepro.php:100 dashboard/info.php:83
829
  msgid "For two WordPress installations."
830
  msgstr "За две Wordpress инсталации."
831
 
832
- #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
833
- #: dashboard/info.php:84 dashboard/info.php:91
834
  msgid "Multi License"
835
  msgstr "Multi лиценз"
836
 
837
- #: dashboard/adrotatepro.php:101 dashboard/info.php:84
838
  msgid " For up to five WordPress installations."
839
  msgstr " За до 5 Wordpress инсталации."
840
 
841
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
842
- #: dashboard/info.php:85 dashboard/info.php:92
843
  msgid "Developer License"
844
  msgstr "Developer лиценз"
845
 
846
- #: dashboard/adrotatepro.php:102 dashboard/info.php:85
847
  msgid "Unlimited WordPress installations and/or networks."
848
  msgstr ""
849
 
850
- #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
851
- #: dashboard/info.php:86 dashboard/info.php:94
852
  msgid "Compare licenses"
853
  msgstr "Сравнение на лицензи"
854
 
855
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
856
  msgid "Not sure which license is for you? Compare them..."
857
  msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
858
 
859
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
860
  msgid "All Licenses"
861
  msgstr "Всички лицензи"
862
 
863
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
864
  msgid "Lifetime License"
865
  msgstr ""
866
 
867
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
868
  msgid "Single installation."
869
  msgstr ""
870
 
871
- #: dashboard/adrotatepro.php:112 dashboard/info.php:90
872
  msgid "Up to 2 installations."
873
  msgstr ""
874
 
875
- #: dashboard/adrotatepro.php:113 dashboard/info.php:91
876
  msgid "Up to 10 installations."
877
  msgstr ""
878
 
879
- #: dashboard/adrotatepro.php:114 dashboard/info.php:92
880
  msgid "Up to 25 installations or multisite networks."
881
  msgstr ""
882
 
883
- #: dashboard/adrotatepro.php:115 dashboard/info.php:93
884
  msgid ""
885
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
886
  msgstr ""
887
 
888
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
889
  msgid "Not sure which license is for you?"
890
  msgstr ""
891
 
892
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
893
  msgid "Compare Licenses"
894
  msgstr ""
895
 
@@ -905,38 +692,41 @@ msgstr "Вие имате"
905
  msgid "Adverts that need you"
906
  msgstr "Реклами, които изискват вниманието Ви"
907
 
908
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
909
- #: dashboard/publisher/groups-main.php:34
910
- msgid "Adverts"
911
- msgstr "Реклами"
912
-
913
  #: dashboard/info.php:38
914
  msgid "(Almost) Expired"
915
  msgstr "(Почти) Изтекли"
916
 
917
- #: dashboard/info.php:41
918
- msgid "Groups"
919
- msgstr "Групи"
920
-
921
  #: dashboard/info.php:42
922
  msgid "Have errors"
923
  msgstr "Има грешки"
924
 
925
- #: dashboard/info.php:48
926
- msgid "Support AdRotate"
927
- msgstr "Подкрепете AdRotate"
928
-
929
- #: dashboard/info.php:55
930
  msgid ""
931
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
932
  "for updates about me and my plugins. Thank you!"
933
  msgstr ""
934
 
935
- #: dashboard/info.php:105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
936
  msgid "AdRotate News"
937
  msgstr ""
938
 
939
- #: dashboard/info.php:123
940
  msgid ""
941
  "I am a digital nomad in the Philippines. Click on my name to find out more "
942
  "about me and what I am doing. Thanks for your support and for using my "
@@ -947,17 +737,44 @@ msgstr ""
947
  msgid "Disabled Adverts"
948
  msgstr ""
949
 
 
 
 
 
 
 
 
950
  #: dashboard/publisher/adverts-disabled.php:21
951
- #: dashboard/publisher/adverts-edit.php:170
952
  msgid "Activate"
953
  msgstr "Активиране"
954
 
 
 
 
 
 
 
955
  #: dashboard/publisher/adverts-disabled.php:23
956
  #: dashboard/publisher/adverts-error.php:22
957
  #: dashboard/publisher/adverts-main.php:23
958
  msgid "Reset stats"
959
  msgstr "Нулиране на статистиката"
960
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
961
  #: dashboard/publisher/adverts-disabled.php:36
962
  #: dashboard/publisher/adverts-error.php:40
963
  #: dashboard/publisher/adverts-main.php:40
@@ -965,7 +782,7 @@ msgid "Start / End"
965
  msgstr "Начало / Край"
966
 
967
  #: dashboard/publisher/adverts-disabled.php:37
968
- #: dashboard/publisher/adverts-edit.php:110
969
  #: dashboard/publisher/adverts-error.php:41
970
  #: dashboard/publisher/adverts-main.php:41
971
  msgid "Title"
@@ -973,7 +790,7 @@ msgstr "Заглавие"
973
 
974
  #: dashboard/publisher/adverts-disabled.php:38
975
  #: dashboard/publisher/adverts-main.php:44
976
- #: dashboard/publisher/groups-edit.php:329
977
  #: dashboard/publisher/groups-main.php:36
978
  msgid "Shown"
979
  msgstr "Показана"
@@ -982,7 +799,7 @@ msgstr "Показана"
982
  #: dashboard/publisher/adverts-main.php:46
983
  #: dashboard/publisher/adverts-report.php:36
984
  #: dashboard/publisher/adverts-report.php:57
985
- #: dashboard/publisher/groups-edit.php:330
986
  #: dashboard/publisher/groups-main.php:38
987
  #: dashboard/publisher/groups-report.php:37
988
  #: dashboard/publisher/groups-report.php:58
@@ -998,53 +815,53 @@ msgstr "Кликове"
998
  msgid "CTR"
999
  msgstr "CTR"
1000
 
1001
- #: dashboard/publisher/adverts-disabled.php:74
1002
  #: dashboard/publisher/adverts-error.php:64
1003
- #: dashboard/publisher/adverts-main.php:87
1004
  #: dashboard/publisher/groups-main.php:70
1005
  msgid "Edit"
1006
  msgstr "Редакция"
1007
 
1008
- #: dashboard/publisher/adverts-disabled.php:74
1009
  #: dashboard/publisher/adverts-error.php:64
1010
- #: dashboard/publisher/adverts-main.php:87
1011
  #: dashboard/publisher/groups-main.php:70
1012
  msgid "Stats"
1013
  msgstr "Статистики"
1014
 
1015
- #: dashboard/publisher/adverts-disabled.php:74
1016
  #: dashboard/publisher/adverts-error.php:64
1017
- #: dashboard/publisher/adverts-main.php:87
1018
  msgid "Groups:"
1019
  msgstr "Групи:"
1020
 
1021
- #: dashboard/publisher/adverts-edit.php:48
1022
  msgid "The AdCode cannot be empty!"
1023
  msgstr "AdCode не може да бъде празен!"
1024
 
1025
- #: dashboard/publisher/adverts-edit.php:51
1026
  msgid ""
1027
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1028
  "use!"
1029
  msgstr ""
1030
 
1031
- #: dashboard/publisher/adverts-edit.php:54
1032
  msgid ""
1033
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1034
  "use!"
1035
  msgstr ""
1036
 
1037
- #: dashboard/publisher/adverts-edit.php:57
1038
  msgid ""
1039
  "There is a problem saving the image. Please reset your image and re-save the "
1040
  "ad!"
1041
  msgstr ""
1042
 
1043
- #: dashboard/publisher/adverts-edit.php:60
1044
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1045
  msgstr ""
1046
 
1047
- #: dashboard/publisher/adverts-edit.php:65
1048
  msgid ""
1049
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1050
  "the ad!"
@@ -1052,77 +869,77 @@ msgstr ""
1052
  "AdRotate не открива грешка, но рекламата е маркирана като грешна, моля, "
1053
  "запишете я наново!"
1054
 
1055
- #: dashboard/publisher/adverts-edit.php:68
1056
  msgid "This ad is expired and currently not shown on your website!"
1057
  msgstr "Тази реклама е изтекла и не се показва на сайта Ви!"
1058
 
1059
- #: dashboard/publisher/adverts-edit.php:71
1060
  msgid "The ad will expire in less than 2 days!"
1061
  msgstr "Тази реклама изтича след по-малко от 2 дни!"
1062
 
1063
- #: dashboard/publisher/adverts-edit.php:74
1064
  msgid "This ad will expire in less than 7 days!"
1065
  msgstr "Тази реклама изтича след по-малко от 7 дни!"
1066
 
1067
- #: dashboard/publisher/adverts-edit.php:77
1068
  msgid "This ad has been disabled and does not rotate on your site!"
1069
  msgstr "Тази реклама е деактивирана и не се показва на сайта Ви!"
1070
 
1071
- #: dashboard/publisher/adverts-edit.php:102
1072
  msgid "New Advert"
1073
  msgstr "Нова реклама"
1074
 
1075
- #: dashboard/publisher/adverts-edit.php:104
1076
  msgid "Edit Advert"
1077
  msgstr "Редакция на реклама"
1078
 
1079
- #: dashboard/publisher/adverts-edit.php:116
1080
  msgid "AdCode"
1081
  msgstr ""
1082
 
1083
- #: dashboard/publisher/adverts-edit.php:121
1084
  msgid "Basic Examples:"
1085
  msgstr "Основни примери:"
1086
 
1087
- #: dashboard/publisher/adverts-edit.php:128
1088
  msgid "Useful tags"
1089
  msgstr ""
1090
 
1091
- #: dashboard/publisher/adverts-edit.php:130
1092
  msgid "Insert the advert ID Number."
1093
  msgstr ""
1094
 
1095
- #: dashboard/publisher/adverts-edit.php:130
1096
  msgid "Required when selecting a asset below."
1097
  msgstr ""
1098
 
1099
- #: dashboard/publisher/adverts-edit.php:130
1100
  msgid "Insert the advert name."
1101
  msgstr ""
1102
 
1103
- #: dashboard/publisher/adverts-edit.php:130
1104
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1105
  msgstr ""
1106
 
1107
- #: dashboard/publisher/adverts-edit.php:130
1108
  msgid "Add inside the <a> tag to open advert in a new window."
1109
  msgstr ""
1110
 
1111
- #: dashboard/publisher/adverts-edit.php:130
1112
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1113
  msgstr ""
1114
 
1115
- #: dashboard/publisher/adverts-edit.php:130
1116
  msgid ""
1117
  "Place the cursor in your AdCode where you want to add any of these tags and "
1118
  "click to add it."
1119
  msgstr ""
1120
 
1121
- #: dashboard/publisher/adverts-edit.php:135
1122
  msgid "Preview"
1123
  msgstr "Преглед"
1124
 
1125
- #: dashboard/publisher/adverts-edit.php:138
1126
  msgid ""
1127
  "Note: While this preview is an accurate one, it might look different then it "
1128
  "does on the website."
@@ -1130,41 +947,41 @@ msgstr ""
1130
  "Забележка: Въпреки, че предварителния преглед е точен, рекламата може да "
1131
  "изглежда по-различно, когато се показва на страницата Ви."
1132
 
1133
- #: dashboard/publisher/adverts-edit.php:139
1134
  msgid ""
1135
  "This is because of CSS differences. Your themes CSS file is not active here!"
1136
  msgstr ""
1137
  "Това се дължи на разлики в CSS. CSS файла на вашата тема не е активен тук!"
1138
 
1139
- #: dashboard/publisher/adverts-edit.php:144
1140
  msgid "Banner asset"
1141
  msgstr ""
1142
 
1143
- #: dashboard/publisher/adverts-edit.php:147
1144
  msgid "WordPress media:"
1145
  msgstr ""
1146
 
1147
- #: dashboard/publisher/adverts-edit.php:147
1148
  msgid "Select Banner"
1149
  msgstr "Избор на банер"
1150
 
1151
- #: dashboard/publisher/adverts-edit.php:149
1152
  msgid "- OR -"
1153
  msgstr "- ИЛИ -"
1154
 
1155
- #: dashboard/publisher/adverts-edit.php:151
1156
  msgid "Banner folder:"
1157
  msgstr "Папка на банера:"
1158
 
1159
- #: dashboard/publisher/adverts-edit.php:152
1160
  msgid "No image selected"
1161
  msgstr "Не е избрана картинка"
1162
 
1163
- #: dashboard/publisher/adverts-edit.php:156
1164
  msgid "Use %asset% in the adcode instead of the file path."
1165
  msgstr ""
1166
 
1167
- #: dashboard/publisher/adverts-edit.php:156
1168
  msgid ""
1169
  "Use either the text field or the dropdown. If the textfield has content that "
1170
  "field has priority."
@@ -1172,249 +989,257 @@ msgstr ""
1172
  "Използвайте падащото меню или текстовото поле. Ако текстовото поле е "
1173
  "попълнено, то ще бъде с преоритет."
1174
 
1175
- #: dashboard/publisher/adverts-edit.php:161
1176
  #: dashboard/settings/statistics.php:17
1177
  msgid "Statistics"
1178
  msgstr "Статистики"
1179
 
1180
- #: dashboard/publisher/adverts-edit.php:163
1181
  msgid "Enable click and impression tracking for this advert."
1182
  msgstr ""
1183
 
1184
- #: dashboard/publisher/adverts-edit.php:164
1185
  msgid ""
1186
  "Note: Clicktracking does not work for Javascript adverts such as those "
1187
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1188
  "always supported."
1189
  msgstr ""
1190
 
1191
- #: dashboard/publisher/adverts-edit.php:174
1192
  msgid "Yes, this ad will be used"
1193
  msgstr "Да, тази реклама ще се използва"
1194
 
1195
- #: dashboard/publisher/adverts-edit.php:175
1196
  msgid "No, do not show this ad anywhere"
1197
  msgstr "Не, не показвай тази реклама никъде"
1198
 
1199
- #: dashboard/publisher/adverts-edit.php:182
1200
- #: dashboard/publisher/adverts-main.php:114
1201
  #: dashboard/publisher/groups-edit.php:71
1202
  #: dashboard/publisher/groups-main.php:89
1203
  msgid "Get more features with AdRotate Pro."
1204
  msgstr "Получете по-голяма функционалност с AdRotate Pro."
1205
 
1206
  #: dashboard/publisher/adverts-edit.php:185
1207
- #: dashboard/publisher/adverts-edit.php:285
1208
- #: dashboard/publisher/adverts-edit.php:408
1209
- #: dashboard/publisher/adverts-edit.php:449
 
 
 
 
 
 
 
1210
  msgid "Save Advert"
1211
  msgstr "Запиши рекламата"
1212
 
1213
- #: dashboard/publisher/adverts-edit.php:186
1214
- #: dashboard/publisher/adverts-edit.php:286
1215
- #: dashboard/publisher/adverts-edit.php:409
1216
- #: dashboard/publisher/adverts-edit.php:450
1217
  #: dashboard/publisher/groups-edit.php:150
1218
- #: dashboard/publisher/groups-edit.php:297
1219
- #: dashboard/publisher/groups-edit.php:389
1220
  msgid "Cancel"
1221
  msgstr "Отказ"
1222
 
1223
- #: dashboard/publisher/adverts-edit.php:189
1224
- #: dashboard/publisher/adverts-edit.php:391
1225
  #: dashboard/publisher/groups-edit.php:132
1226
- #: dashboard/publisher/groups-edit.php:279
1227
  msgid "Usage"
1228
  msgstr "Употреба"
1229
 
1230
- #: dashboard/publisher/adverts-edit.php:193
1231
- #: dashboard/publisher/adverts-edit.php:395
1232
  #: dashboard/publisher/groups-edit.php:136
1233
- #: dashboard/publisher/groups-edit.php:283
 
 
1234
  msgid "Widget"
1235
  msgstr ""
1236
 
1237
- #: dashboard/publisher/adverts-edit.php:194
1238
- #: dashboard/publisher/adverts-edit.php:396
1239
  msgid ""
1240
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1241
  "and select the advert or the group the advert is in."
1242
  msgstr ""
1243
 
1244
- #: dashboard/publisher/adverts-edit.php:197
1245
- #: dashboard/publisher/adverts-edit.php:399
1246
  #: dashboard/publisher/groups-edit.php:140
1247
- #: dashboard/publisher/groups-edit.php:287
1248
  msgid "In a post or page"
1249
  msgstr ""
1250
 
1251
- #: dashboard/publisher/adverts-edit.php:199
1252
- #: dashboard/publisher/adverts-edit.php:401
1253
  #: dashboard/publisher/groups-edit.php:142
1254
- #: dashboard/publisher/groups-edit.php:289
1255
  msgid "Directly in a theme"
1256
  msgstr ""
1257
 
1258
- #: dashboard/publisher/adverts-edit.php:205
1259
  msgid "Schedule your advert"
1260
  msgstr ""
1261
 
1262
- #: dashboard/publisher/adverts-edit.php:209
1263
  msgid "Start date (day/month/year)"
1264
  msgstr ""
1265
 
1266
- #: dashboard/publisher/adverts-edit.php:230
1267
  msgid "End date (day/month/year)"
1268
  msgstr ""
1269
 
1270
- #: dashboard/publisher/adverts-edit.php:253
1271
  msgid "Start time (hh:mm)"
1272
  msgstr ""
1273
 
1274
- #: dashboard/publisher/adverts-edit.php:260
1275
  msgid "End time (hh:mm)"
1276
  msgstr ""
1277
 
1278
- #: dashboard/publisher/adverts-edit.php:270
1279
  msgid "Maximum Clicks"
1280
  msgstr ""
1281
 
1282
- #: dashboard/publisher/adverts-edit.php:271
1283
- #: dashboard/publisher/adverts-edit.php:273
1284
  msgid "Leave empty or 0 to skip this."
1285
  msgstr "Въведете 0 или оставете празно, за да пропуснете тази опция."
1286
 
1287
- #: dashboard/publisher/adverts-edit.php:272
1288
  msgid "Maximum Impressions"
1289
  msgstr ""
1290
 
1291
- #: dashboard/publisher/adverts-edit.php:277
1292
  msgid "Important"
1293
  msgstr ""
1294
 
1295
- #: dashboard/publisher/adverts-edit.php:278
1296
  msgid ""
1297
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1298
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1299
  "14:00 hours. 6AM is 6:00 hours."
1300
  msgstr ""
1301
 
1302
- #: dashboard/publisher/adverts-edit.php:282
1303
  msgid ""
1304
  "Create multiple and more advanced schedules for each advert with AdRotate "
1305
  "Pro."
1306
  msgstr ""
1307
 
1308
- #: dashboard/publisher/adverts-edit.php:282
1309
- #: dashboard/publisher/adverts-edit.php:345
1310
- #: dashboard/publisher/adverts-edit.php:389
1311
- #: dashboard/publisher/groups-edit.php:196
1312
  msgid "Upgrade today"
1313
  msgstr "Надградете днес"
1314
 
1315
- #: dashboard/publisher/adverts-edit.php:289
1316
  #: dashboard/publisher/groups-edit.php:153
1317
  msgid "Advanced"
1318
  msgstr "Разширени"
1319
 
1320
- #: dashboard/publisher/adverts-edit.php:290
1321
- msgid "Everything below is optional."
1322
- msgstr "Всичко по-долу е по желание."
1323
-
1324
- #: dashboard/publisher/adverts-edit.php:290
1325
  msgid "Available in AdRotate Pro!"
1326
  msgstr ""
1327
 
1328
- #: dashboard/publisher/adverts-edit.php:295
1329
  #: dashboard/publisher/adverts-main.php:42
1330
- #: dashboard/publisher/groups-edit.php:332
1331
  msgid "Weight"
1332
  msgstr "Тежест"
1333
 
1334
- #: dashboard/publisher/adverts-edit.php:298
1335
  msgid "Few impressions"
1336
  msgstr ""
1337
 
1338
- #: dashboard/publisher/adverts-edit.php:303
1339
  msgid "Less than average"
1340
  msgstr "По-малко от нормалното"
1341
 
1342
- #: dashboard/publisher/adverts-edit.php:308
1343
  msgid "Normal impressions"
1344
  msgstr ""
1345
 
1346
- #: dashboard/publisher/adverts-edit.php:313
1347
  msgid "More than average"
1348
  msgstr "Повече от нормалното"
1349
 
1350
- #: dashboard/publisher/adverts-edit.php:318
1351
  msgid "Many impressions"
1352
  msgstr ""
1353
 
1354
- #: dashboard/publisher/adverts-edit.php:323
1355
  msgid "Mobile"
1356
  msgstr ""
1357
 
1358
- #: dashboard/publisher/adverts-edit.php:325
1359
  msgid "Computers"
1360
  msgstr ""
1361
 
1362
- #: dashboard/publisher/adverts-edit.php:328
1363
  msgid "Smartphones"
1364
  msgstr ""
1365
 
1366
- #: dashboard/publisher/adverts-edit.php:331
1367
  msgid "Tablets"
1368
  msgstr ""
1369
 
1370
- #: dashboard/publisher/adverts-edit.php:334
1371
  msgid ""
1372
  "Also enable mobile support in the group this advert goes in or these are "
1373
  "ignored."
1374
  msgstr ""
1375
 
1376
- #: dashboard/publisher/adverts-edit.php:338
1377
- #: dashboard/publisher/groups-edit.php:190
1378
- msgid "Sortorder"
 
1379
  msgstr ""
1380
 
1381
- #: dashboard/publisher/adverts-edit.php:340
1382
- #: dashboard/publisher/groups-edit.php:192
1383
- msgid "For administrative purposes set a sortorder."
1384
- msgstr "За административни цели задайте критерий за сортиране."
1385
 
1386
- #: dashboard/publisher/adverts-edit.php:340
1387
- msgid "Leave empty or 0 to skip this. Will default to ad id."
1388
  msgstr ""
1389
- "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
1390
- "на рекламата по подразбиране."
1391
 
1392
- #: dashboard/publisher/adverts-edit.php:345
1393
- msgid ""
1394
- "With AdRotate Pro you can easily select which devices the advert should show "
1395
- "on!"
1396
  msgstr ""
1397
 
1398
- #: dashboard/publisher/adverts-edit.php:347
1399
- msgid "Geo Targeting in AdRotate Pro"
1400
  msgstr ""
1401
 
1402
- #: dashboard/publisher/adverts-edit.php:348
1403
  msgid ""
1404
- "Assign the advert to a group and enable that group to use Geo Targeting."
 
1405
  msgstr ""
1406
 
1407
- #: dashboard/publisher/adverts-edit.php:352
1408
- msgid "Cities/States"
1409
- msgstr ""
 
 
1410
 
1411
- #: dashboard/publisher/adverts-edit.php:355
1412
  msgid ""
1413
- "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1414
- "states ISO codes are supported)"
 
 
 
1415
  msgstr ""
1416
 
1417
- #: dashboard/publisher/adverts-edit.php:355
1418
  msgid ""
1419
  "AdRotate does not check the validity of names so make sure you spell them "
1420
  "correctly!"
@@ -1422,67 +1247,55 @@ msgstr ""
1422
  "AdRotate не проверява валидността на имената, уверете се, че сте ги изписали "
1423
  "правилно!"
1424
 
1425
- #: dashboard/publisher/adverts-edit.php:359
1426
- msgid "Countries"
1427
- msgstr ""
1428
-
1429
- #: dashboard/publisher/adverts-edit.php:384
1430
- msgid "Select the countries you want the adverts to show in."
1431
- msgstr "Изберете страните, в които искате да се показват рекламите."
1432
-
1433
- #: dashboard/publisher/adverts-edit.php:384
1434
- msgid "Cities take priority and will be filtered first."
1435
- msgstr "Градовете са с приоритет и ще бъдат филтрирани първи."
1436
-
1437
- #: dashboard/publisher/adverts-edit.php:389
1438
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1439
  msgstr ""
1440
 
1441
- #: dashboard/publisher/adverts-edit.php:413
1442
  msgid "Select Groups"
1443
  msgstr "Избор на групи"
1444
 
1445
- #: dashboard/publisher/adverts-edit.php:418
1446
  msgid "ID - Name"
1447
  msgstr "ID - Име"
1448
 
1449
- #: dashboard/publisher/adverts-edit.php:428
1450
  #: dashboard/publisher/groups-main.php:60
1451
  #: dashboard/settings/geotargeting.php:49
1452
  msgid "Default"
1453
  msgstr "По подразбиране"
1454
 
1455
- #: dashboard/publisher/adverts-edit.php:429
1456
  #: dashboard/publisher/groups-main.php:61
1457
  msgid "Dynamic"
1458
  msgstr "Динамично"
1459
 
1460
- #: dashboard/publisher/adverts-edit.php:429
1461
  #: dashboard/publisher/groups-main.php:61
1462
  msgid "second rotation"
1463
  msgstr "второ завъртане"
1464
 
1465
- #: dashboard/publisher/adverts-edit.php:430
1466
  #: dashboard/publisher/groups-main.php:62
1467
  msgid "Block"
1468
  msgstr "Блок"
1469
 
1470
- #: dashboard/publisher/adverts-edit.php:430
1471
  #: dashboard/publisher/groups-main.php:62
1472
  msgid "grid"
1473
  msgstr "решетка"
1474
 
1475
- #: dashboard/publisher/adverts-edit.php:431
1476
- #: dashboard/publisher/groups-edit.php:198
1477
  #: dashboard/publisher/groups-main.php:63
1478
  msgid "Post Injection"
1479
  msgstr "Вмъкване в публикации"
1480
 
1481
- #: dashboard/publisher/adverts-edit.php:432
1482
  msgid "Geolocation"
1483
  msgstr "Геолокация"
1484
 
1485
- #: dashboard/publisher/adverts-edit.php:438
1486
  #: dashboard/publisher/groups-edit.php:57
1487
  #: dashboard/publisher/groups-main.php:70
1488
  msgid "Mode"
@@ -1523,10 +1336,20 @@ msgid "For 7 days"
1523
  msgstr "За 7 дни"
1524
 
1525
  #: dashboard/publisher/adverts-error.php:71
1526
- #: dashboard/publisher/groups-edit.php:382
1527
  msgid "Configuration errors."
1528
  msgstr "Грешки при конфигурирането."
1529
 
 
 
 
 
 
 
 
 
 
 
1530
  #: dashboard/publisher/adverts-main.php:12
1531
  msgid "Active Adverts"
1532
  msgstr ""
@@ -1542,7 +1365,7 @@ msgstr "Експорт в XML"
1542
  msgid "Today"
1543
  msgstr "Днес"
1544
 
1545
- #: dashboard/publisher/adverts-main.php:109
1546
  msgid "No adverts created yet!"
1547
  msgstr ""
1548
 
@@ -1596,6 +1419,11 @@ msgstr "Нова група"
1596
  msgid "Edit Group"
1597
  msgstr "Редакция на група"
1598
 
 
 
 
 
 
1599
  #: dashboard/publisher/groups-edit.php:60
1600
  msgid "Default - Show one ad at a time"
1601
  msgstr "По подразбиране - показва се само една реклама"
@@ -1682,15 +1510,15 @@ msgstr ""
1682
  "страницата. По подразбиране: 6."
1683
 
1684
  #: dashboard/publisher/groups-edit.php:137
1685
- #: dashboard/publisher/groups-edit.php:284
1686
  msgid ""
1687
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1688
  "Adverts\" and enter ID"
1689
  msgstr ""
1690
 
1691
  #: dashboard/publisher/groups-edit.php:149
1692
- #: dashboard/publisher/groups-edit.php:296
1693
- #: dashboard/publisher/groups-edit.php:388
1694
  msgid "Save Group"
1695
  msgstr "Запис на групата"
1696
 
@@ -1740,11 +1568,6 @@ msgid ""
1740
  "setting. Not every theme supports this feature."
1741
  msgstr ""
1742
 
1743
- #: dashboard/publisher/groups-edit.php:180
1744
- #: dashboard/settings/advertisers.php:38
1745
- msgid "Geo Targeting"
1746
- msgstr "Таргетиране спрямо местоположението"
1747
-
1748
  #: dashboard/publisher/groups-edit.php:181
1749
  msgid "Enable Geo Targeting for this group."
1750
  msgstr ""
@@ -1765,147 +1588,130 @@ msgstr ""
1765
  msgid "Do not forget to put at least one mobile advert in this group."
1766
  msgstr ""
1767
 
1768
- #: dashboard/publisher/groups-edit.php:192
1769
- msgid "Leave empty or 0 to skip this. Will default to group id."
1770
- msgstr ""
1771
- "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
1772
- "на групата."
1773
-
1774
- #: dashboard/publisher/groups-edit.php:196
1775
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1776
  msgstr ""
1777
 
1778
- #: dashboard/publisher/groups-edit.php:201
1779
- msgid "In categories?"
1780
- msgstr ""
1781
-
1782
- #: dashboard/publisher/groups-edit.php:205
1783
- #: dashboard/publisher/groups-edit.php:243
1784
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1785
  msgid "Disabled"
1786
  msgstr "Изключено"
1787
 
1788
  #: dashboard/publisher/groups-edit.php:206
1789
- #: dashboard/publisher/groups-edit.php:244
1790
  msgid "Before content"
1791
  msgstr "Преди съдържанието"
1792
 
1793
  #: dashboard/publisher/groups-edit.php:207
1794
- #: dashboard/publisher/groups-edit.php:245
1795
  msgid "After content"
1796
  msgstr "След съдържанието"
1797
 
1798
  #: dashboard/publisher/groups-edit.php:208
1799
- #: dashboard/publisher/groups-edit.php:246
1800
  msgid "Before and after content"
1801
  msgstr "Преди и след съдържанието"
1802
 
1803
  #: dashboard/publisher/groups-edit.php:209
1804
- #: dashboard/publisher/groups-edit.php:247
1805
  msgid "Inside the content..."
1806
  msgstr ""
1807
 
1808
  #: dashboard/publisher/groups-edit.php:215
1809
- #: dashboard/publisher/groups-edit.php:253
1810
  msgid "after the middle paragraph"
1811
  msgstr ""
1812
 
1813
  #: dashboard/publisher/groups-edit.php:216
1814
- #: dashboard/publisher/groups-edit.php:254
1815
  msgid "after the 1st paragraph"
1816
  msgstr ""
1817
 
1818
  #: dashboard/publisher/groups-edit.php:217
1819
- #: dashboard/publisher/groups-edit.php:255
1820
  msgid "after the 2nd paragraph"
1821
  msgstr ""
1822
 
1823
  #: dashboard/publisher/groups-edit.php:218
1824
- #: dashboard/publisher/groups-edit.php:256
1825
  msgid "after the 3rd paragraph"
1826
  msgstr ""
1827
 
1828
  #: dashboard/publisher/groups-edit.php:219
1829
- #: dashboard/publisher/groups-edit.php:257
1830
  msgid "after the 4th paragraph"
1831
  msgstr ""
1832
 
1833
  #: dashboard/publisher/groups-edit.php:220
1834
- #: dashboard/publisher/groups-edit.php:258
1835
  msgid "after the 5th paragraph"
1836
  msgstr ""
1837
 
1838
  #: dashboard/publisher/groups-edit.php:221
1839
- #: dashboard/publisher/groups-edit.php:259
1840
  msgid "after the 6th paragraph"
1841
  msgstr ""
1842
 
1843
  #: dashboard/publisher/groups-edit.php:222
1844
- #: dashboard/publisher/groups-edit.php:260
1845
  msgid "after the 7th paragraph"
1846
  msgstr ""
1847
 
1848
  #: dashboard/publisher/groups-edit.php:223
1849
- #: dashboard/publisher/groups-edit.php:261
1850
  msgid "after the 8th paragraph"
1851
  msgstr ""
1852
 
1853
- #: dashboard/publisher/groups-edit.php:229
1854
- msgid "Which categories?"
1855
- msgstr "Кои категории?"
1856
-
1857
- #: dashboard/publisher/groups-edit.php:234
1858
- msgid "Click the categories posts you want the adverts to show in."
1859
- msgstr "Изберете категориите, на които искате да се показват рекламите."
1860
-
1861
  #: dashboard/publisher/groups-edit.php:239
1862
- msgid "In pages?"
1863
  msgstr ""
1864
 
1865
- #: dashboard/publisher/groups-edit.php:267
1866
- msgid "Which pages?"
1867
- msgstr "Кои страници?"
1868
-
1869
- #: dashboard/publisher/groups-edit.php:272
1870
- msgid "Click the pages you want the adverts to show in."
1871
- msgstr "Изберете страниците, на които искате да се показват рекламите."
1872
-
1873
- #: dashboard/publisher/groups-edit.php:300
1874
  msgid "Wrapper code"
1875
  msgstr "Код за обвивката"
1876
 
1877
- #: dashboard/publisher/groups-edit.php:301
1878
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1879
  msgstr ""
1880
 
1881
- #: dashboard/publisher/groups-edit.php:305
1882
  msgid "Before advert"
1883
  msgstr ""
1884
 
1885
- #: dashboard/publisher/groups-edit.php:309
 
 
 
 
 
1886
  msgid "Options:"
1887
  msgstr "Настройки:"
1888
 
1889
- #: dashboard/publisher/groups-edit.php:313
1890
  msgid "After advert"
1891
  msgstr ""
1892
 
1893
- #: dashboard/publisher/groups-edit.php:322
1894
  msgid "Select adverts"
1895
  msgstr ""
1896
 
1897
- #: dashboard/publisher/groups-edit.php:327
1898
  msgid "Choose adverts"
1899
  msgstr ""
1900
 
1901
- #: dashboard/publisher/groups-edit.php:333
1902
  msgid "Visible until"
1903
  msgstr "Да се вижда до"
1904
 
1905
- #: dashboard/publisher/groups-edit.php:375
1906
  msgid "No adverts created!"
1907
  msgstr ""
1908
 
 
 
 
 
1909
  #: dashboard/publisher/groups-main.php:21
1910
  msgid "Delete Group"
1911
  msgstr "Изтриване на група"
@@ -1923,7 +1729,8 @@ msgid "This action can not be undone!"
1923
  msgstr "Това действие е необратимо!"
1924
 
1925
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1926
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
1927
  msgid "OK to continue, CANCEL to stop."
1928
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1929
 
@@ -1990,9 +1797,9 @@ msgid ""
1990
  msgstr ""
1991
 
1992
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1993
- #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
1994
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1995
- #: dashboard/settings/statistics.php:73
1996
  msgid "Update Options"
1997
  msgstr "Опции за обновяване"
1998
 
@@ -2298,7 +2105,8 @@ msgstr ""
2298
  msgid "Are you sure you want to continue?"
2299
  msgstr "Сигурни ли сте, че искате да продължите?"
2300
 
2301
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
2302
  msgid "This might take a while and may slow down your site during this action!"
2303
  msgstr ""
2304
  "Това действие ще отнеме време и може да забави сайта ви по време на "
@@ -2309,36 +2117,34 @@ msgid "Delete stats older than 356 days (Optional)."
2309
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
2310
 
2311
  #: dashboard/settings/maintenance.php:32
2312
- msgid ""
2313
- "AdRotate creates empty records when you start making ads, groups or "
2314
- "schedules. In rare occasions these records are faulty."
2315
  msgstr ""
2316
 
2317
- #: dashboard/settings/maintenance.php:32
2318
  msgid ""
2319
- "If you made an ad, group or schedule that does not save when you make it use "
2320
- "this button to delete those empty records."
2321
  msgstr ""
2322
 
2323
- #: dashboard/settings/maintenance.php:32
2324
  msgid ""
2325
- "Additionally you can clean up old schedules and/or statistics. This will "
2326
- "improve the speed of your site."
2327
  msgstr ""
2328
 
2329
- #: dashboard/settings/maintenance.php:36
2330
  msgid "Re-evaluate Ads"
2331
  msgstr "Преоценка на реклами"
2332
 
2333
- #: dashboard/settings/maintenance.php:38
2334
  msgid "Re-evaluate all ads"
2335
  msgstr "Преоценка на всички реклами"
2336
 
2337
- #: dashboard/settings/maintenance.php:38
2338
  msgid "You are about to check all ads for errors."
2339
  msgstr "На път сте да проверите всички реклами за грешки."
2340
 
2341
- #: dashboard/settings/maintenance.php:39
2342
  msgid ""
2343
  "This will apply all evaluation rules to all ads to see if any error slipped "
2344
  "in. Normally you should not need this feature."
@@ -2346,7 +2152,7 @@ msgstr ""
2346
  "Това ще провери всички реклами за грешки. Попринцип не би трябвало да имате "
2347
  "нужда от тази функция."
2348
 
2349
- #: dashboard/settings/maintenance.php:43
2350
  msgid ""
2351
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2352
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2359,11 +2165,11 @@ msgid ""
2359
  "is not a valid point in any case."
2360
  msgstr ""
2361
 
2362
- #: dashboard/settings/maintenance.php:45
2363
  msgid "Troubleshooting"
2364
  msgstr "Отстраняване на проблеми"
2365
 
2366
- #: dashboard/settings/maintenance.php:46
2367
  msgid ""
2368
  "The below options are not meant for normal use and are only there for "
2369
  "developers to review saved settings or how ads are selected. These can be "
@@ -2371,19 +2177,19 @@ msgid ""
2371
  "SHOULD BE LEFT UNCHECKED!!"
2372
  msgstr ""
2373
 
2374
- #: dashboard/settings/maintenance.php:49
2375
  msgid "Developer Debug"
2376
  msgstr "Developer Debug"
2377
 
2378
- #: dashboard/settings/maintenance.php:51
2379
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2380
  msgstr ""
2381
 
2382
- #: dashboard/settings/maintenance.php:52
2383
  msgid "View advert specs and (some) stats in the dashboard."
2384
  msgstr ""
2385
 
2386
- #: dashboard/settings/maintenance.php:53
2387
  msgid ""
2388
  "Disable timers for clicks and impressions and enable a alert window for "
2389
  "clicktracking."
@@ -2391,97 +2197,111 @@ msgstr ""
2391
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
2392
  "за проследяване на кликове."
2393
 
2394
- #: dashboard/settings/maintenance.php:54
2395
  msgid "Temporarily disable encryption on the redirect url."
2396
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
2397
 
2398
- #: dashboard/settings/maintenance.php:59
2399
  msgid "Status and Versions"
2400
  msgstr ""
2401
 
2402
- #: dashboard/settings/maintenance.php:62
2403
  msgid "Current status of adverts"
2404
  msgstr "Настоящ статус на рекламите"
2405
 
2406
- #: dashboard/settings/maintenance.php:63
2407
  msgid "Normal"
2408
  msgstr "Нормално"
2409
 
2410
- #: dashboard/settings/maintenance.php:63
2411
  msgid "Error"
2412
  msgstr "Грешка"
2413
 
2414
- #: dashboard/settings/maintenance.php:63
2415
  msgid "Expired"
2416
  msgstr "Изтекло"
2417
 
2418
- #: dashboard/settings/maintenance.php:63
2419
  msgid "Expires Soon"
2420
  msgstr "Изтича скоро"
2421
 
2422
- #: dashboard/settings/maintenance.php:63
2423
  msgid "Unknown"
2424
  msgstr ""
2425
 
2426
- #: dashboard/settings/maintenance.php:66
2427
  msgid "Banners/assets Folder"
2428
  msgstr ""
2429
 
2430
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2431
  msgid "Exists and appears writable"
2432
  msgstr ""
2433
 
2434
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2435
  msgid "Not writable or does not exist"
2436
  msgstr ""
2437
 
2438
- #: dashboard/settings/maintenance.php:70
2439
  msgid "Reports Folder"
2440
  msgstr ""
2441
 
2442
- #: dashboard/settings/maintenance.php:76
2443
  msgid "Advert evaluation"
2444
  msgstr ""
2445
 
2446
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2447
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2448
  msgstr ""
2449
 
2450
- #: dashboard/settings/maintenance.php:78
2451
- msgid "Trackerdata cleanup"
2452
  msgstr ""
2453
 
2454
- #: dashboard/settings/maintenance.php:83
2455
  msgid "Internal Versions"
2456
  msgstr ""
2457
 
2458
- #: dashboard/settings/maintenance.php:84
2459
  msgid ""
2460
  "Unless you experience database issues or a warning shows below, these "
2461
  "numbers are not really relevant for troubleshooting. Support may ask for "
2462
  "them to verify your database status."
2463
  msgstr ""
2464
 
2465
- #: dashboard/settings/maintenance.php:87
2466
  msgid "AdRotate version"
2467
  msgstr ""
2468
 
2469
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2470
  msgid "Current:"
2471
  msgstr ""
2472
 
2473
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2474
  msgid "Should be:"
2475
  msgstr ""
2476
 
2477
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2478
  msgid "Previous:"
2479
  msgstr ""
2480
 
2481
- #: dashboard/settings/maintenance.php:89
2482
  msgid "Database version"
2483
  msgstr ""
2484
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2485
  #: dashboard/settings/misc.php:16
2486
  msgid "Miscellaneous"
2487
  msgstr "Разни"
@@ -2905,6 +2725,161 @@ msgstr ""
2905
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
2906
  "(24 часа)."
2907
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2908
  #~ msgid "Enable responsive support for this advert."
2909
  #~ msgstr "Активиране на responsive дизайн за тази реклама."
2910
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-22 22:11+0800\n"
6
+ "PO-Revision-Date: 2017-01-22 22:11+0800\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.11\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:721
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
+ #: adrotate-functions.php:724
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
+ #: adrotate-functions.php:773
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:777
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:781
37
  msgid "Ad(s) deleted"
38
  msgstr "Успешно изтриване"
39
 
40
+ #: adrotate-functions.php:785
41
  msgid "Group deleted"
42
  msgstr "Групата е изтрита"
43
 
44
+ #: adrotate-functions.php:789
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Статистиката е нулирана"
47
 
48
+ #: adrotate-functions.php:793
49
  msgid "Ad(s) renewed"
50
  msgstr "Успешно подновяване"
51
 
52
+ #: adrotate-functions.php:797
53
  msgid "Ad(s) deactivated"
54
  msgstr "Успешно деактивиране"
55
 
56
+ #: adrotate-functions.php:801
57
  msgid "Ad(s) activated"
58
  msgstr "Успешно активиране"
59
 
60
+ #: adrotate-functions.php:805
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
63
 
64
+ #: adrotate-functions.php:809
65
  msgid "Export created"
66
  msgstr "Експорта е завършен"
67
 
68
+ #: adrotate-functions.php:814
69
  msgid "Settings saved"
70
  msgstr "Настройките са запазени"
71
 
72
+ #: adrotate-functions.php:818
73
  msgid "Database optimized"
74
  msgstr "Базата данни е оптимизирана"
75
 
76
+ #: adrotate-functions.php:822
77
  msgid "Database repaired"
78
  msgstr "Базата данни е поправена"
79
 
80
+ #: adrotate-functions.php:826
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
83
 
84
+ #: adrotate-functions.php:830
85
  msgid "Empty database records removed"
86
  msgstr "Празните записи в базата данни са премахнати"
87
 
88
+ #: adrotate-functions.php:835
89
  msgid "Action prohibited"
90
  msgstr "Забранено действие"
91
 
92
+ #: adrotate-functions.php:839
93
  msgid ""
94
  "The ad was saved but has an issue which might prevent it from working "
95
  "properly. Review the colored ad."
96
  msgstr ""
97
 
98
+ #: adrotate-functions.php:843
99
  msgid "No data found in selected time period"
100
  msgstr "Не е намерена информация за избрания период"
101
 
102
+ #: adrotate-functions.php:847
103
  msgid "Database can only be optimized or cleaned once every hour"
104
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
105
 
106
+ #: adrotate-functions.php:851
107
  msgid "Form can not be (partially) empty!"
108
  msgstr ""
109
 
110
+ #: adrotate-functions.php:855
111
  msgid "No ads found."
112
  msgstr ""
113
 
114
+ #: adrotate-functions.php:859
115
  msgid "Unexpected error"
116
  msgstr ""
117
 
118
+ #: adrotate-manage-publisher.php:677
119
  msgid "AdRotate Advertiser"
120
  msgstr ""
121
 
193
  msgstr "Възникна неизвестна грешка."
194
 
195
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
 
196
  msgid "Check adverts"
197
  msgstr ""
198
 
199
+ #: adrotate-output.php:664
200
  msgid ""
201
  "You have enable caching support but W3 Total Cache is not active on your "
202
  "site!"
203
  msgstr ""
204
 
205
+ #: adrotate-output.php:667
206
  msgid ""
207
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
208
  "not set."
209
  msgstr ""
210
 
211
+ #: adrotate-output.php:672
212
  msgid "Your AdRotate Banner folder is not writable or does not exist."
213
  msgstr ""
214
 
215
+ #: adrotate-output.php:712 dashboard/adrotatepro.php:86
216
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:88
217
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:98
218
+ #: dashboard/adrotatepro.php:99 dashboard/adrotatepro.php:100
219
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:64 dashboard/info.php:65
220
+ #: dashboard/info.php:66 dashboard/info.php:67 dashboard/info.php:71
221
+ #: dashboard/info.php:72 dashboard/info.php:73 dashboard/info.php:74
222
  #: dashboard/settings/geotargeting.php:35
223
  msgid "Buy now"
224
  msgstr "Купи сега"
225
 
226
+ #: adrotate-output.php:713
227
  msgid ""
228
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
229
  "to the <strong>PRO</strong> version"
231
  "Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
232
  "до <strong>PRO</strong> версията"
233
 
234
+ #: adrotate-output.php:713
235
  #, php-format
236
  msgid ""
237
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
238
  msgstr ""
239
 
240
+ #: adrotate-output.php:713
241
  msgid "Thank you for your purchase!"
242
  msgstr ""
243
 
244
+ #: adrotate-output.php:774
245
  msgid ""
246
+ "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
247
+ "menu. If you need help getting started take a look at the"
248
  msgstr ""
249
 
250
+ #: adrotate-output.php:774
251
  msgid "manuals"
252
  msgstr "ръководства"
253
 
254
+ #: adrotate-output.php:774 adrotate-output.php:844
255
  msgid "and"
256
  msgstr "и"
257
 
258
+ #: adrotate-output.php:774
259
  msgid "forums"
260
  msgstr ""
261
 
262
+ #: adrotate-output.php:807
263
  msgid "Useful Links"
264
  msgstr "Полезни връзки"
265
 
266
+ #: adrotate-output.php:808
267
  msgid "Useful links to learn more about AdRotate"
268
  msgstr "Полезни връзки, за да получите повече информация за AdRotate"
269
 
270
+ #: adrotate-output.php:810
271
  msgid "AdRotate website"
272
  msgstr ""
273
 
274
+ #: adrotate-output.php:811
275
  msgid "Getting Started With AdRotate"
276
  msgstr "Започнете от нулата с AdRotate Pro"
277
 
278
+ #: adrotate-output.php:812
279
  msgid "AdRotate manuals"
280
  msgstr ""
281
 
282
+ #: adrotate-output.php:813
283
  msgid "AdRotate Support Forum"
284
  msgstr "Форум за поддръжка на AdRotate"
285
 
286
+ #: adrotate-output.php:836 dashboard/info.php:46
287
+ msgid "Support AdRotate"
288
+ msgstr "Подкрепете AdRotate"
289
 
290
+ #: adrotate-output.php:837
291
+ msgid "Check out my website"
292
  msgstr ""
293
 
294
+ #: adrotate-output.php:844
295
  msgid ""
296
+ "Many users only think to review AdRotate when something goes wrong while "
297
+ "thousands of people happily use AdRotate."
298
  msgstr ""
 
 
 
299
 
300
+ #: adrotate-output.php:844
301
+ msgid "If you find AdRotate useful please leave your"
302
+ msgstr ""
303
 
304
+ #: adrotate-output.php:844
305
  msgid "rating"
306
  msgstr "оценка"
307
 
308
+ #: adrotate-output.php:844
309
  msgid "review"
310
  msgstr "мнение"
311
 
312
+ #: adrotate-output.php:844
313
  msgid "on WordPress.org to help AdRotate grow in a positive way"
314
  msgstr "на WordPress.org, за да се развива AdRotate"
315
 
316
+ #: adrotate-output.php:870 dashboard/settings/notifications.php:50
317
  #: dashboard/settings/notifications.php:80
318
  msgid "Available in AdRotate Pro"
319
  msgstr "Налично в AdRotate Pro"
320
 
321
+ #: adrotate-output.php:870
322
  msgid "More information..."
323
  msgstr "Повече информация..."
324
 
325
+ #: adrotate-output.php:871
326
  msgid "This feature is available in AdRotate Pro"
327
  msgstr "Тази функционалност е налична в AdRotate Pro"
328
 
329
+ #: adrotate-output.php:871
330
  msgid "Learn more"
331
  msgstr "Повече информация"
332
 
333
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:217
334
+ #: dashboard/publisher/adverts-edit.php:238
335
  msgid "January"
336
  msgstr "Януари"
337
 
338
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:218
339
+ #: dashboard/publisher/adverts-edit.php:239
340
  msgid "February"
341
  msgstr "Февруари"
342
 
343
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:219
344
+ #: dashboard/publisher/adverts-edit.php:240
345
  msgid "March"
346
  msgstr "Март"
347
 
348
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:220
349
+ #: dashboard/publisher/adverts-edit.php:241
350
  msgid "April"
351
  msgstr "Април"
352
 
353
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:221
354
+ #: dashboard/publisher/adverts-edit.php:242
355
  msgid "May"
356
  msgstr "Май"
357
 
358
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:222
359
+ #: dashboard/publisher/adverts-edit.php:243
360
  msgid "June"
361
  msgstr "Юни"
362
 
363
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:223
364
+ #: dashboard/publisher/adverts-edit.php:244
365
  msgid "July"
366
  msgstr "Юли"
367
 
368
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:224
369
+ #: dashboard/publisher/adverts-edit.php:245
370
  msgid "August"
371
  msgstr "Август"
372
 
373
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:225
374
+ #: dashboard/publisher/adverts-edit.php:246
375
  msgid "September"
376
  msgstr "Септември"
377
 
378
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:226
379
+ #: dashboard/publisher/adverts-edit.php:247
380
  msgid "October"
381
  msgstr "Октомври"
382
 
383
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:227
384
+ #: dashboard/publisher/adverts-edit.php:248
385
  msgid "November"
386
  msgstr "Ноември"
387
 
388
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:228
389
+ #: dashboard/publisher/adverts-edit.php:249
390
  msgid "December"
391
  msgstr "Декември"
392
 
393
+ #: adrotate-statistics.php:152
394
  msgid "Previous"
395
  msgstr "Предишен"
396
 
397
+ #: adrotate-statistics.php:154
398
  msgid "This month"
399
  msgstr "Този месец"
400
 
401
+ #: adrotate-statistics.php:155
402
  msgid "Next"
403
  msgstr "Следващ"
404
 
405
+ #: adrotate-statistics.php:229
406
  msgid "No data to show!"
407
  msgstr "Няма информация!"
408
 
446
  msgid "Fill in the ID of the type you want to display!"
447
  msgstr "Попълнете ID-то на типа, който искате да се показва!"
448
 
449
+ #: adrotate.php:101
450
  msgid "General Info"
451
  msgstr "Обща информация"
452
 
453
+ #: adrotate.php:102
454
  msgid "AdRotate Pro"
455
  msgstr "AdRotate Pro"
456
 
457
+ #: adrotate.php:103 dashboard/info.php:37
458
+ #: dashboard/publisher/adverts-edit.php:455
459
+ #: dashboard/publisher/groups-main.php:34
460
+ msgid "Adverts"
461
+ msgstr "Реклами"
 
 
 
 
 
 
462
 
463
+ #: adrotate.php:104 dashboard/info.php:41
464
+ msgid "Groups"
465
+ msgstr "Групи"
466
 
467
+ #: adrotate.php:105
468
  msgid "Settings"
469
  msgstr "Настройки"
470
 
471
+ #: adrotate.php:123
472
  msgid "AdRotate Info"
473
  msgstr "AdRotate Info"
474
 
475
+ #: adrotate.php:141
476
  msgid "AdRotate Professional"
477
  msgstr "AdRotate Professional"
478
 
479
+ #: adrotate.php:181
480
  msgid "Advert Management"
481
  msgstr ""
482
 
483
+ #: adrotate.php:239 adrotate.php:306
484
  msgid "Manage"
485
  msgstr "Управление"
486
 
487
+ #: adrotate.php:240 adrotate.php:307
488
  msgid "Add New"
489
  msgstr "Добавяне"
490
 
491
+ #: adrotate.php:300
492
  msgid "Group Management"
493
  msgstr "Управление на групи"
494
 
495
+ #: adrotate.php:309
496
  msgid "Report"
497
  msgstr "Доклад"
498
 
499
+ #: adrotate.php:354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
500
  msgid "AdRotate Settings"
501
  msgstr "AdRotate Настройки"
502
 
524
  msgid ""
525
  "Target mobile users with ease and show the right adverts to smartphones, "
526
  "tablets and computers. Mix and match as you please and offer adverts that "
527
+ "suit the device or mobile operating system. Create as many mobile adverts as "
528
+ "you want without effort and with a few easy to use options they show up "
529
+ "where you want them to!"
530
  msgstr ""
531
 
532
  #: dashboard/adrotatepro.php:34
553
  "forum. Get a solution (usually) within one business day."
554
  msgstr ""
555
 
556
+ #: dashboard/adrotatepro.php:48 dashboard/info.php:101
557
  msgid "AdRotate is brought to you by"
558
  msgstr "AdRotate достига до Вас, благодарение на"
559
 
560
+ #: dashboard/adrotatepro.php:61
561
  msgid "Schedule all campaigns with ease"
562
  msgstr "Планиране на всички кампании с лекота"
563
 
564
+ #: dashboard/adrotatepro.php:64
565
  msgid ""
566
  "Schedule your adverts and set up advertising campaigns based on dates you or "
567
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
568
+ "specific days in the week. You name it, AdRotate schedules it. This makes "
569
+ "planning your revenue stream very flexible. You can set one or many "
570
+ "schedules for adverts."
571
  msgstr ""
572
 
573
+ #: dashboard/adrotatepro.php:68
574
  msgid "Avoid adblockers"
575
  msgstr ""
576
 
577
+ #: dashboard/adrotatepro.php:71
578
  msgid ""
579
+ "Try and avoid adblockers so your adverts get the exposure you want them to "
580
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
581
  "adverts are less likely to be removed. Of-course make sure you create your "
582
  "adverts smartly so these features reach their full potential!"
583
  msgstr ""
584
 
585
+ #: dashboard/adrotatepro.php:75
586
  msgid "Stay up-to-date with notifications"
587
  msgstr ""
588
 
589
+ #: dashboard/adrotatepro.php:78
590
  msgid ""
591
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
592
  "adverts expire or need your attention. Additionally, send push notifications "
594
  "or when advertisers create new adverts. Never miss an expiration date again."
595
  msgstr ""
596
 
597
+ #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
598
+ #: dashboard/info.php:60
599
  msgid "Buy AdRotate Professional"
600
  msgstr "Купете AdRotate Professional"
601
 
602
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:64
603
  msgid "Single License"
604
  msgstr ""
605
 
606
+ #: dashboard/adrotatepro.php:86
607
  msgid "For one WordPress installation."
608
  msgstr "За една инсталация на WordPress."
609
 
610
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
611
+ #: dashboard/info.php:65 dashboard/info.php:72
612
  msgid "Duo License"
613
  msgstr "Duo лиценз"
614
 
615
+ #: dashboard/adrotatepro.php:87
616
  msgid "For two WordPress installations."
617
  msgstr "За две Wordpress инсталации."
618
 
619
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
620
+ #: dashboard/info.php:66 dashboard/info.php:73
621
  msgid "Multi License"
622
  msgstr "Multi лиценз"
623
 
624
+ #: dashboard/adrotatepro.php:88
625
  msgid " For up to five WordPress installations."
626
  msgstr " За до 5 Wordpress инсталации."
627
 
628
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
629
+ #: dashboard/info.php:67 dashboard/info.php:74
630
  msgid "Developer License"
631
  msgstr "Developer лиценз"
632
 
633
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:67
634
  msgid "Unlimited WordPress installations and/or networks."
635
  msgstr ""
636
 
637
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
638
+ #: dashboard/info.php:68 dashboard/info.php:76
639
  msgid "Compare licenses"
640
  msgstr "Сравнение на лицензи"
641
 
642
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
643
  msgid "Not sure which license is for you? Compare them..."
644
  msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
645
 
646
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
647
  msgid "All Licenses"
648
  msgstr "Всички лицензи"
649
 
650
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
651
  msgid "Lifetime License"
652
  msgstr ""
653
 
654
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
655
  msgid "Single installation."
656
  msgstr ""
657
 
658
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:72
659
  msgid "Up to 2 installations."
660
  msgstr ""
661
 
662
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:73
663
  msgid "Up to 10 installations."
664
  msgstr ""
665
 
666
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:74
667
  msgid "Up to 25 installations or multisite networks."
668
  msgstr ""
669
 
670
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:75
671
  msgid ""
672
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
673
  msgstr ""
674
 
675
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
676
  msgid "Not sure which license is for you?"
677
  msgstr ""
678
 
679
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
680
  msgid "Compare Licenses"
681
  msgstr ""
682
 
692
  msgid "Adverts that need you"
693
  msgstr "Реклами, които изискват вниманието Ви"
694
 
 
 
 
 
 
695
  #: dashboard/info.php:38
696
  msgid "(Almost) Expired"
697
  msgstr "(Почти) Изтекли"
698
 
 
 
 
 
699
  #: dashboard/info.php:42
700
  msgid "Have errors"
701
  msgstr "Има грешки"
702
 
703
+ #: dashboard/info.php:47
 
 
 
 
704
  msgid ""
705
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
706
  "for updates about me and my plugins. Thank you!"
707
  msgstr ""
708
 
709
+ #: dashboard/info.php:51 dashboard/publisher/adverts-edit.php:124
710
+ msgid "Get paid as a publisher:"
711
+ msgstr ""
712
+
713
+ #: dashboard/info.php:64
714
+ msgid "One WordPress installation."
715
+ msgstr ""
716
+
717
+ #: dashboard/info.php:65
718
+ msgid "Two WordPress installations."
719
+ msgstr ""
720
+
721
+ #: dashboard/info.php:66
722
+ msgid "Up to five WordPress installations."
723
+ msgstr ""
724
+
725
+ #: dashboard/info.php:87
726
  msgid "AdRotate News"
727
  msgstr ""
728
 
729
+ #: dashboard/info.php:105
730
  msgid ""
731
  "I am a digital nomad in the Philippines. Click on my name to find out more "
732
  "about me and what I am doing. Thanks for your support and for using my "
737
  msgid "Disabled Adverts"
738
  msgstr ""
739
 
740
+ #: dashboard/publisher/adverts-disabled.php:20
741
+ #: dashboard/publisher/adverts-error.php:19
742
+ #: dashboard/publisher/adverts-main.php:20
743
+ #: dashboard/publisher/groups-main.php:20
744
+ msgid "Bulk Actions"
745
+ msgstr "Масови действия"
746
+
747
  #: dashboard/publisher/adverts-disabled.php:21
748
+ #: dashboard/publisher/adverts-edit.php:173
749
  msgid "Activate"
750
  msgstr "Активиране"
751
 
752
+ #: dashboard/publisher/adverts-disabled.php:22
753
+ #: dashboard/publisher/adverts-error.php:21
754
+ #: dashboard/publisher/adverts-main.php:22
755
+ msgid "Delete"
756
+ msgstr "Изтриване"
757
+
758
  #: dashboard/publisher/adverts-disabled.php:23
759
  #: dashboard/publisher/adverts-error.php:22
760
  #: dashboard/publisher/adverts-main.php:23
761
  msgid "Reset stats"
762
  msgstr "Нулиране на статистиката"
763
 
764
+ #: dashboard/publisher/adverts-disabled.php:25
765
+ #: dashboard/publisher/adverts-error.php:29
766
+ #: dashboard/publisher/adverts-main.php:30
767
+ #: dashboard/publisher/groups-main.php:24
768
+ msgid "Go"
769
+ msgstr "Напред"
770
+
771
+ #: dashboard/publisher/adverts-disabled.php:35
772
+ #: dashboard/publisher/adverts-error.php:39
773
+ #: dashboard/publisher/adverts-main.php:39
774
+ #: dashboard/publisher/groups-main.php:32
775
+ msgid "ID"
776
+ msgstr "ID"
777
+
778
  #: dashboard/publisher/adverts-disabled.php:36
779
  #: dashboard/publisher/adverts-error.php:40
780
  #: dashboard/publisher/adverts-main.php:40
782
  msgstr "Начало / Край"
783
 
784
  #: dashboard/publisher/adverts-disabled.php:37
785
+ #: dashboard/publisher/adverts-edit.php:109
786
  #: dashboard/publisher/adverts-error.php:41
787
  #: dashboard/publisher/adverts-main.php:41
788
  msgid "Title"
790
 
791
  #: dashboard/publisher/adverts-disabled.php:38
792
  #: dashboard/publisher/adverts-main.php:44
793
+ #: dashboard/publisher/groups-edit.php:331
794
  #: dashboard/publisher/groups-main.php:36
795
  msgid "Shown"
796
  msgstr "Показана"
799
  #: dashboard/publisher/adverts-main.php:46
800
  #: dashboard/publisher/adverts-report.php:36
801
  #: dashboard/publisher/adverts-report.php:57
802
+ #: dashboard/publisher/groups-edit.php:332
803
  #: dashboard/publisher/groups-main.php:38
804
  #: dashboard/publisher/groups-report.php:37
805
  #: dashboard/publisher/groups-report.php:58
815
  msgid "CTR"
816
  msgstr "CTR"
817
 
818
+ #: dashboard/publisher/adverts-disabled.php:71
819
  #: dashboard/publisher/adverts-error.php:64
820
+ #: dashboard/publisher/adverts-main.php:82
821
  #: dashboard/publisher/groups-main.php:70
822
  msgid "Edit"
823
  msgstr "Редакция"
824
 
825
+ #: dashboard/publisher/adverts-disabled.php:71
826
  #: dashboard/publisher/adverts-error.php:64
827
+ #: dashboard/publisher/adverts-main.php:82
828
  #: dashboard/publisher/groups-main.php:70
829
  msgid "Stats"
830
  msgstr "Статистики"
831
 
832
+ #: dashboard/publisher/adverts-disabled.php:71
833
  #: dashboard/publisher/adverts-error.php:64
834
+ #: dashboard/publisher/adverts-main.php:82
835
  msgid "Groups:"
836
  msgstr "Групи:"
837
 
838
+ #: dashboard/publisher/adverts-edit.php:47
839
  msgid "The AdCode cannot be empty!"
840
  msgstr "AdCode не може да бъде празен!"
841
 
842
+ #: dashboard/publisher/adverts-edit.php:50
843
  msgid ""
844
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
845
  "use!"
846
  msgstr ""
847
 
848
+ #: dashboard/publisher/adverts-edit.php:53
849
  msgid ""
850
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
851
  "use!"
852
  msgstr ""
853
 
854
+ #: dashboard/publisher/adverts-edit.php:56
855
  msgid ""
856
  "There is a problem saving the image. Please reset your image and re-save the "
857
  "ad!"
858
  msgstr ""
859
 
860
+ #: dashboard/publisher/adverts-edit.php:59
861
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
862
  msgstr ""
863
 
864
+ #: dashboard/publisher/adverts-edit.php:64
865
  msgid ""
866
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
867
  "the ad!"
869
  "AdRotate не открива грешка, но рекламата е маркирана като грешна, моля, "
870
  "запишете я наново!"
871
 
872
+ #: dashboard/publisher/adverts-edit.php:67
873
  msgid "This ad is expired and currently not shown on your website!"
874
  msgstr "Тази реклама е изтекла и не се показва на сайта Ви!"
875
 
876
+ #: dashboard/publisher/adverts-edit.php:70
877
  msgid "The ad will expire in less than 2 days!"
878
  msgstr "Тази реклама изтича след по-малко от 2 дни!"
879
 
880
+ #: dashboard/publisher/adverts-edit.php:73
881
  msgid "This ad will expire in less than 7 days!"
882
  msgstr "Тази реклама изтича след по-малко от 7 дни!"
883
 
884
+ #: dashboard/publisher/adverts-edit.php:76
885
  msgid "This ad has been disabled and does not rotate on your site!"
886
  msgstr "Тази реклама е деактивирана и не се показва на сайта Ви!"
887
 
888
+ #: dashboard/publisher/adverts-edit.php:101
889
  msgid "New Advert"
890
  msgstr "Нова реклама"
891
 
892
+ #: dashboard/publisher/adverts-edit.php:103
893
  msgid "Edit Advert"
894
  msgstr "Редакция на реклама"
895
 
896
+ #: dashboard/publisher/adverts-edit.php:115
897
  msgid "AdCode"
898
  msgstr ""
899
 
900
+ #: dashboard/publisher/adverts-edit.php:120
901
  msgid "Basic Examples:"
902
  msgstr "Основни примери:"
903
 
904
+ #: dashboard/publisher/adverts-edit.php:131
905
  msgid "Useful tags"
906
  msgstr ""
907
 
908
+ #: dashboard/publisher/adverts-edit.php:133
909
  msgid "Insert the advert ID Number."
910
  msgstr ""
911
 
912
+ #: dashboard/publisher/adverts-edit.php:133
913
  msgid "Required when selecting a asset below."
914
  msgstr ""
915
 
916
+ #: dashboard/publisher/adverts-edit.php:133
917
  msgid "Insert the advert name."
918
  msgstr ""
919
 
920
+ #: dashboard/publisher/adverts-edit.php:133
921
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
922
  msgstr ""
923
 
924
+ #: dashboard/publisher/adverts-edit.php:133
925
  msgid "Add inside the <a> tag to open advert in a new window."
926
  msgstr ""
927
 
928
+ #: dashboard/publisher/adverts-edit.php:133
929
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
930
  msgstr ""
931
 
932
+ #: dashboard/publisher/adverts-edit.php:133
933
  msgid ""
934
  "Place the cursor in your AdCode where you want to add any of these tags and "
935
  "click to add it."
936
  msgstr ""
937
 
938
+ #: dashboard/publisher/adverts-edit.php:138
939
  msgid "Preview"
940
  msgstr "Преглед"
941
 
942
+ #: dashboard/publisher/adverts-edit.php:141
943
  msgid ""
944
  "Note: While this preview is an accurate one, it might look different then it "
945
  "does on the website."
947
  "Забележка: Въпреки, че предварителния преглед е точен, рекламата може да "
948
  "изглежда по-различно, когато се показва на страницата Ви."
949
 
950
+ #: dashboard/publisher/adverts-edit.php:142
951
  msgid ""
952
  "This is because of CSS differences. Your themes CSS file is not active here!"
953
  msgstr ""
954
  "Това се дължи на разлики в CSS. CSS файла на вашата тема не е активен тук!"
955
 
956
+ #: dashboard/publisher/adverts-edit.php:147
957
  msgid "Banner asset"
958
  msgstr ""
959
 
960
+ #: dashboard/publisher/adverts-edit.php:150
961
  msgid "WordPress media:"
962
  msgstr ""
963
 
964
+ #: dashboard/publisher/adverts-edit.php:150
965
  msgid "Select Banner"
966
  msgstr "Избор на банер"
967
 
968
+ #: dashboard/publisher/adverts-edit.php:152
969
  msgid "- OR -"
970
  msgstr "- ИЛИ -"
971
 
972
+ #: dashboard/publisher/adverts-edit.php:154
973
  msgid "Banner folder:"
974
  msgstr "Папка на банера:"
975
 
976
+ #: dashboard/publisher/adverts-edit.php:155
977
  msgid "No image selected"
978
  msgstr "Не е избрана картинка"
979
 
980
+ #: dashboard/publisher/adverts-edit.php:159
981
  msgid "Use %asset% in the adcode instead of the file path."
982
  msgstr ""
983
 
984
+ #: dashboard/publisher/adverts-edit.php:159
985
  msgid ""
986
  "Use either the text field or the dropdown. If the textfield has content that "
987
  "field has priority."
989
  "Използвайте падащото меню или текстовото поле. Ако текстовото поле е "
990
  "попълнено, то ще бъде с преоритет."
991
 
992
+ #: dashboard/publisher/adverts-edit.php:164
993
  #: dashboard/settings/statistics.php:17
994
  msgid "Statistics"
995
  msgstr "Статистики"
996
 
997
+ #: dashboard/publisher/adverts-edit.php:166
998
  msgid "Enable click and impression tracking for this advert."
999
  msgstr ""
1000
 
1001
+ #: dashboard/publisher/adverts-edit.php:167
1002
  msgid ""
1003
  "Note: Clicktracking does not work for Javascript adverts such as those "
1004
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1005
  "always supported."
1006
  msgstr ""
1007
 
1008
+ #: dashboard/publisher/adverts-edit.php:177
1009
  msgid "Yes, this ad will be used"
1010
  msgstr "Да, тази реклама ще се използва"
1011
 
1012
+ #: dashboard/publisher/adverts-edit.php:178
1013
  msgid "No, do not show this ad anywhere"
1014
  msgstr "Не, не показвай тази реклама никъде"
1015
 
1016
+ #: dashboard/publisher/adverts-edit.php:185
1017
+ #: dashboard/publisher/adverts-main.php:107
1018
  #: dashboard/publisher/groups-edit.php:71
1019
  #: dashboard/publisher/groups-main.php:89
1020
  msgid "Get more features with AdRotate Pro."
1021
  msgstr "Получете по-голяма функционалност с AdRotate Pro."
1022
 
1023
  #: dashboard/publisher/adverts-edit.php:185
1024
+ #: dashboard/publisher/adverts-main.php:107
1025
+ #: dashboard/publisher/groups-edit.php:71
1026
+ #: dashboard/publisher/groups-main.php:89
1027
+ msgid "More information"
1028
+ msgstr "Повече информация"
1029
+
1030
+ #: dashboard/publisher/adverts-edit.php:188
1031
+ #: dashboard/publisher/adverts-edit.php:288
1032
+ #: dashboard/publisher/adverts-edit.php:444
1033
+ #: dashboard/publisher/adverts-edit.php:485
1034
  msgid "Save Advert"
1035
  msgstr "Запиши рекламата"
1036
 
1037
+ #: dashboard/publisher/adverts-edit.php:189
1038
+ #: dashboard/publisher/adverts-edit.php:289
1039
+ #: dashboard/publisher/adverts-edit.php:445
1040
+ #: dashboard/publisher/adverts-edit.php:486
1041
  #: dashboard/publisher/groups-edit.php:150
1042
+ #: dashboard/publisher/groups-edit.php:299
1043
+ #: dashboard/publisher/groups-edit.php:391
1044
  msgid "Cancel"
1045
  msgstr "Отказ"
1046
 
1047
+ #: dashboard/publisher/adverts-edit.php:192
1048
+ #: dashboard/publisher/adverts-edit.php:427
1049
  #: dashboard/publisher/groups-edit.php:132
1050
+ #: dashboard/publisher/groups-edit.php:281
1051
  msgid "Usage"
1052
  msgstr "Употреба"
1053
 
1054
+ #: dashboard/publisher/adverts-edit.php:196
1055
+ #: dashboard/publisher/adverts-edit.php:431
1056
  #: dashboard/publisher/groups-edit.php:136
1057
+ #: dashboard/publisher/groups-edit.php:205
1058
+ #: dashboard/publisher/groups-edit.php:245
1059
+ #: dashboard/publisher/groups-edit.php:285
1060
  msgid "Widget"
1061
  msgstr ""
1062
 
1063
+ #: dashboard/publisher/adverts-edit.php:197
1064
+ #: dashboard/publisher/adverts-edit.php:432
1065
  msgid ""
1066
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1067
  "and select the advert or the group the advert is in."
1068
  msgstr ""
1069
 
1070
+ #: dashboard/publisher/adverts-edit.php:200
1071
+ #: dashboard/publisher/adverts-edit.php:435
1072
  #: dashboard/publisher/groups-edit.php:140
1073
+ #: dashboard/publisher/groups-edit.php:289
1074
  msgid "In a post or page"
1075
  msgstr ""
1076
 
1077
+ #: dashboard/publisher/adverts-edit.php:202
1078
+ #: dashboard/publisher/adverts-edit.php:437
1079
  #: dashboard/publisher/groups-edit.php:142
1080
+ #: dashboard/publisher/groups-edit.php:291
1081
  msgid "Directly in a theme"
1082
  msgstr ""
1083
 
1084
+ #: dashboard/publisher/adverts-edit.php:208
1085
  msgid "Schedule your advert"
1086
  msgstr ""
1087
 
1088
+ #: dashboard/publisher/adverts-edit.php:212
1089
  msgid "Start date (day/month/year)"
1090
  msgstr ""
1091
 
1092
+ #: dashboard/publisher/adverts-edit.php:233
1093
  msgid "End date (day/month/year)"
1094
  msgstr ""
1095
 
1096
+ #: dashboard/publisher/adverts-edit.php:256
1097
  msgid "Start time (hh:mm)"
1098
  msgstr ""
1099
 
1100
+ #: dashboard/publisher/adverts-edit.php:263
1101
  msgid "End time (hh:mm)"
1102
  msgstr ""
1103
 
1104
+ #: dashboard/publisher/adverts-edit.php:273
1105
  msgid "Maximum Clicks"
1106
  msgstr ""
1107
 
1108
+ #: dashboard/publisher/adverts-edit.php:274
1109
+ #: dashboard/publisher/adverts-edit.php:276
1110
  msgid "Leave empty or 0 to skip this."
1111
  msgstr "Въведете 0 или оставете празно, за да пропуснете тази опция."
1112
 
1113
+ #: dashboard/publisher/adverts-edit.php:275
1114
  msgid "Maximum Impressions"
1115
  msgstr ""
1116
 
1117
+ #: dashboard/publisher/adverts-edit.php:280
1118
  msgid "Important"
1119
  msgstr ""
1120
 
1121
+ #: dashboard/publisher/adverts-edit.php:281
1122
  msgid ""
1123
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1124
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1125
  "14:00 hours. 6AM is 6:00 hours."
1126
  msgstr ""
1127
 
1128
+ #: dashboard/publisher/adverts-edit.php:285
1129
  msgid ""
1130
  "Create multiple and more advanced schedules for each advert with AdRotate "
1131
  "Pro."
1132
  msgstr ""
1133
 
1134
+ #: dashboard/publisher/adverts-edit.php:285
1135
+ #: dashboard/publisher/adverts-edit.php:354
1136
+ #: dashboard/publisher/adverts-edit.php:425
1137
+ #: dashboard/publisher/groups-edit.php:191
1138
  msgid "Upgrade today"
1139
  msgstr "Надградете днес"
1140
 
1141
+ #: dashboard/publisher/adverts-edit.php:292
1142
  #: dashboard/publisher/groups-edit.php:153
1143
  msgid "Advanced"
1144
  msgstr "Разширени"
1145
 
1146
+ #: dashboard/publisher/adverts-edit.php:293
1147
+ #: dashboard/publisher/adverts-edit.php:357
 
 
 
1148
  msgid "Available in AdRotate Pro!"
1149
  msgstr ""
1150
 
1151
+ #: dashboard/publisher/adverts-edit.php:298
1152
  #: dashboard/publisher/adverts-main.php:42
1153
+ #: dashboard/publisher/groups-edit.php:334
1154
  msgid "Weight"
1155
  msgstr "Тежест"
1156
 
1157
+ #: dashboard/publisher/adverts-edit.php:301
1158
  msgid "Few impressions"
1159
  msgstr ""
1160
 
1161
+ #: dashboard/publisher/adverts-edit.php:306
1162
  msgid "Less than average"
1163
  msgstr "По-малко от нормалното"
1164
 
1165
+ #: dashboard/publisher/adverts-edit.php:311
1166
  msgid "Normal impressions"
1167
  msgstr ""
1168
 
1169
+ #: dashboard/publisher/adverts-edit.php:316
1170
  msgid "More than average"
1171
  msgstr "Повече от нормалното"
1172
 
1173
+ #: dashboard/publisher/adverts-edit.php:321
1174
  msgid "Many impressions"
1175
  msgstr ""
1176
 
1177
+ #: dashboard/publisher/adverts-edit.php:326
1178
  msgid "Mobile"
1179
  msgstr ""
1180
 
1181
+ #: dashboard/publisher/adverts-edit.php:328
1182
  msgid "Computers"
1183
  msgstr ""
1184
 
1185
+ #: dashboard/publisher/adverts-edit.php:331
1186
  msgid "Smartphones"
1187
  msgstr ""
1188
 
1189
+ #: dashboard/publisher/adverts-edit.php:334
1190
  msgid "Tablets"
1191
  msgstr ""
1192
 
1193
+ #: dashboard/publisher/adverts-edit.php:337
1194
  msgid ""
1195
  "Also enable mobile support in the group this advert goes in or these are "
1196
  "ignored."
1197
  msgstr ""
1198
 
1199
+ #: dashboard/publisher/adverts-edit.php:337
1200
+ msgid ""
1201
+ "Operating system detection only detects iOS/Android/Others or neither. Only "
1202
+ "works if Smartphones and/or Tablets is enabled."
1203
  msgstr ""
1204
 
1205
+ #: dashboard/publisher/adverts-edit.php:341
1206
+ msgid "Mobile OS"
1207
+ msgstr ""
 
1208
 
1209
+ #: dashboard/publisher/adverts-edit.php:343
1210
+ msgid "iOS"
1211
  msgstr ""
 
 
1212
 
1213
+ #: dashboard/publisher/adverts-edit.php:346
1214
+ msgid "Android"
 
 
1215
  msgstr ""
1216
 
1217
+ #: dashboard/publisher/adverts-edit.php:349
1218
+ msgid "Others"
1219
  msgstr ""
1220
 
1221
+ #: dashboard/publisher/adverts-edit.php:354
1222
  msgid ""
1223
+ "With AdRotate Pro you can easily select which devices and mobile operating "
1224
+ "systems the advert should show on!"
1225
  msgstr ""
1226
 
1227
+ #: dashboard/publisher/adverts-edit.php:356
1228
+ #: dashboard/publisher/groups-edit.php:180
1229
+ #: dashboard/settings/advertisers.php:38
1230
+ msgid "Geo Targeting"
1231
+ msgstr "Таргетиране спрямо местоположението"
1232
 
1233
+ #: dashboard/publisher/adverts-edit.php:357
1234
  msgid ""
1235
+ "Assign the advert to a group and enable that group to use Geo Targeting."
1236
+ msgstr ""
1237
+
1238
+ #: dashboard/publisher/adverts-edit.php:415
1239
+ msgid "A comma separated list of items:"
1240
  msgstr ""
1241
 
1242
+ #: dashboard/publisher/adverts-edit.php:415
1243
  msgid ""
1244
  "AdRotate does not check the validity of names so make sure you spell them "
1245
  "correctly!"
1247
  "AdRotate не проверява валидността на имената, уверете се, че сте ги изписали "
1248
  "правилно!"
1249
 
1250
+ #: dashboard/publisher/adverts-edit.php:425
 
 
 
 
 
 
 
 
 
 
 
 
1251
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1252
  msgstr ""
1253
 
1254
+ #: dashboard/publisher/adverts-edit.php:449
1255
  msgid "Select Groups"
1256
  msgstr "Избор на групи"
1257
 
1258
+ #: dashboard/publisher/adverts-edit.php:454
1259
  msgid "ID - Name"
1260
  msgstr "ID - Име"
1261
 
1262
+ #: dashboard/publisher/adverts-edit.php:464
1263
  #: dashboard/publisher/groups-main.php:60
1264
  #: dashboard/settings/geotargeting.php:49
1265
  msgid "Default"
1266
  msgstr "По подразбиране"
1267
 
1268
+ #: dashboard/publisher/adverts-edit.php:465
1269
  #: dashboard/publisher/groups-main.php:61
1270
  msgid "Dynamic"
1271
  msgstr "Динамично"
1272
 
1273
+ #: dashboard/publisher/adverts-edit.php:465
1274
  #: dashboard/publisher/groups-main.php:61
1275
  msgid "second rotation"
1276
  msgstr "второ завъртане"
1277
 
1278
+ #: dashboard/publisher/adverts-edit.php:466
1279
  #: dashboard/publisher/groups-main.php:62
1280
  msgid "Block"
1281
  msgstr "Блок"
1282
 
1283
+ #: dashboard/publisher/adverts-edit.php:466
1284
  #: dashboard/publisher/groups-main.php:62
1285
  msgid "grid"
1286
  msgstr "решетка"
1287
 
1288
+ #: dashboard/publisher/adverts-edit.php:467
1289
+ #: dashboard/publisher/groups-edit.php:199
1290
  #: dashboard/publisher/groups-main.php:63
1291
  msgid "Post Injection"
1292
  msgstr "Вмъкване в публикации"
1293
 
1294
+ #: dashboard/publisher/adverts-edit.php:468
1295
  msgid "Geolocation"
1296
  msgstr "Геолокация"
1297
 
1298
+ #: dashboard/publisher/adverts-edit.php:474
1299
  #: dashboard/publisher/groups-edit.php:57
1300
  #: dashboard/publisher/groups-main.php:70
1301
  msgid "Mode"
1336
  msgstr "За 7 дни"
1337
 
1338
  #: dashboard/publisher/adverts-error.php:71
1339
+ #: dashboard/publisher/groups-edit.php:384
1340
  msgid "Configuration errors."
1341
  msgstr "Грешки при конфигурирането."
1342
 
1343
+ #: dashboard/publisher/adverts-error.php:72
1344
+ #: dashboard/publisher/groups-edit.php:385
1345
+ msgid "Expires soon."
1346
+ msgstr "Изтича скоро."
1347
+
1348
+ #: dashboard/publisher/adverts-error.php:73
1349
+ #: dashboard/publisher/groups-edit.php:386
1350
+ msgid "Has expired."
1351
+ msgstr "Изтекла."
1352
+
1353
  #: dashboard/publisher/adverts-main.php:12
1354
  msgid "Active Adverts"
1355
  msgstr ""
1365
  msgid "Today"
1366
  msgstr "Днес"
1367
 
1368
+ #: dashboard/publisher/adverts-main.php:102
1369
  msgid "No adverts created yet!"
1370
  msgstr ""
1371
 
1419
  msgid "Edit Group"
1420
  msgstr "Редакция на група"
1421
 
1422
+ #: dashboard/publisher/groups-edit.php:51
1423
+ #: dashboard/publisher/groups-main.php:33
1424
+ msgid "Name"
1425
+ msgstr "Име"
1426
+
1427
  #: dashboard/publisher/groups-edit.php:60
1428
  msgid "Default - Show one ad at a time"
1429
  msgstr "По подразбиране - показва се само една реклама"
1510
  "страницата. По подразбиране: 6."
1511
 
1512
  #: dashboard/publisher/groups-edit.php:137
1513
+ #: dashboard/publisher/groups-edit.php:286
1514
  msgid ""
1515
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1516
  "Adverts\" and enter ID"
1517
  msgstr ""
1518
 
1519
  #: dashboard/publisher/groups-edit.php:149
1520
+ #: dashboard/publisher/groups-edit.php:298
1521
+ #: dashboard/publisher/groups-edit.php:390
1522
  msgid "Save Group"
1523
  msgstr "Запис на групата"
1524
 
1568
  "setting. Not every theme supports this feature."
1569
  msgstr ""
1570
 
 
 
 
 
 
1571
  #: dashboard/publisher/groups-edit.php:181
1572
  msgid "Enable Geo Targeting for this group."
1573
  msgstr ""
1588
  msgid "Do not forget to put at least one mobile advert in this group."
1589
  msgstr ""
1590
 
1591
+ #: dashboard/publisher/groups-edit.php:191
 
 
 
 
 
 
1592
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1593
  msgstr ""
1594
 
1595
+ #: dashboard/publisher/groups-edit.php:204
1596
+ #: dashboard/publisher/groups-edit.php:244
 
 
 
 
1597
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1598
  msgid "Disabled"
1599
  msgstr "Изключено"
1600
 
1601
  #: dashboard/publisher/groups-edit.php:206
1602
+ #: dashboard/publisher/groups-edit.php:246
1603
  msgid "Before content"
1604
  msgstr "Преди съдържанието"
1605
 
1606
  #: dashboard/publisher/groups-edit.php:207
1607
+ #: dashboard/publisher/groups-edit.php:247
1608
  msgid "After content"
1609
  msgstr "След съдържанието"
1610
 
1611
  #: dashboard/publisher/groups-edit.php:208
1612
+ #: dashboard/publisher/groups-edit.php:248
1613
  msgid "Before and after content"
1614
  msgstr "Преди и след съдържанието"
1615
 
1616
  #: dashboard/publisher/groups-edit.php:209
1617
+ #: dashboard/publisher/groups-edit.php:249
1618
  msgid "Inside the content..."
1619
  msgstr ""
1620
 
1621
  #: dashboard/publisher/groups-edit.php:215
1622
+ #: dashboard/publisher/groups-edit.php:255
1623
  msgid "after the middle paragraph"
1624
  msgstr ""
1625
 
1626
  #: dashboard/publisher/groups-edit.php:216
1627
+ #: dashboard/publisher/groups-edit.php:256
1628
  msgid "after the 1st paragraph"
1629
  msgstr ""
1630
 
1631
  #: dashboard/publisher/groups-edit.php:217
1632
+ #: dashboard/publisher/groups-edit.php:257
1633
  msgid "after the 2nd paragraph"
1634
  msgstr ""
1635
 
1636
  #: dashboard/publisher/groups-edit.php:218
1637
+ #: dashboard/publisher/groups-edit.php:258
1638
  msgid "after the 3rd paragraph"
1639
  msgstr ""
1640
 
1641
  #: dashboard/publisher/groups-edit.php:219
1642
+ #: dashboard/publisher/groups-edit.php:259
1643
  msgid "after the 4th paragraph"
1644
  msgstr ""
1645
 
1646
  #: dashboard/publisher/groups-edit.php:220
1647
+ #: dashboard/publisher/groups-edit.php:260
1648
  msgid "after the 5th paragraph"
1649
  msgstr ""
1650
 
1651
  #: dashboard/publisher/groups-edit.php:221
1652
+ #: dashboard/publisher/groups-edit.php:261
1653
  msgid "after the 6th paragraph"
1654
  msgstr ""
1655
 
1656
  #: dashboard/publisher/groups-edit.php:222
1657
+ #: dashboard/publisher/groups-edit.php:262
1658
  msgid "after the 7th paragraph"
1659
  msgstr ""
1660
 
1661
  #: dashboard/publisher/groups-edit.php:223
1662
+ #: dashboard/publisher/groups-edit.php:263
1663
  msgid "after the 8th paragraph"
1664
  msgstr ""
1665
 
 
 
 
 
 
 
 
 
1666
  #: dashboard/publisher/groups-edit.php:239
1667
+ msgid "Page Injection"
1668
  msgstr ""
1669
 
1670
+ #: dashboard/publisher/groups-edit.php:302
 
 
 
 
 
 
 
 
1671
  msgid "Wrapper code"
1672
  msgstr "Код за обвивката"
1673
 
1674
+ #: dashboard/publisher/groups-edit.php:303
1675
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1676
  msgstr ""
1677
 
1678
+ #: dashboard/publisher/groups-edit.php:307
1679
  msgid "Before advert"
1680
  msgstr ""
1681
 
1682
+ #: dashboard/publisher/groups-edit.php:310
1683
+ #: dashboard/publisher/groups-edit.php:318
1684
+ msgid "Example:"
1685
+ msgstr "Пример:"
1686
+
1687
+ #: dashboard/publisher/groups-edit.php:311
1688
  msgid "Options:"
1689
  msgstr "Настройки:"
1690
 
1691
+ #: dashboard/publisher/groups-edit.php:315
1692
  msgid "After advert"
1693
  msgstr ""
1694
 
1695
+ #: dashboard/publisher/groups-edit.php:324
1696
  msgid "Select adverts"
1697
  msgstr ""
1698
 
1699
+ #: dashboard/publisher/groups-edit.php:329
1700
  msgid "Choose adverts"
1701
  msgstr ""
1702
 
1703
+ #: dashboard/publisher/groups-edit.php:335
1704
  msgid "Visible until"
1705
  msgstr "Да се вижда до"
1706
 
1707
+ #: dashboard/publisher/groups-edit.php:377
1708
  msgid "No adverts created!"
1709
  msgstr ""
1710
 
1711
+ #: dashboard/publisher/groups-main.php:12
1712
+ msgid "Manage Groups"
1713
+ msgstr "Управление на групи"
1714
+
1715
  #: dashboard/publisher/groups-main.php:21
1716
  msgid "Delete Group"
1717
  msgstr "Изтриване на група"
1729
  msgstr "Това действие е необратимо!"
1730
 
1731
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1732
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
1733
+ #: dashboard/settings/maintenance.php:96
1734
  msgid "OK to continue, CANCEL to stop."
1735
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1736
 
1797
  msgstr ""
1798
 
1799
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1800
+ #: dashboard/settings/maintenance.php:103 dashboard/settings/misc.php:43
1801
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1802
+ #: dashboard/settings/statistics.php:79
1803
  msgid "Update Options"
1804
  msgstr "Опции за обновяване"
1805
 
2105
  msgid "Are you sure you want to continue?"
2106
  msgstr "Сигурни ли сте, че искате да продължите?"
2107
 
2108
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
2109
+ #: dashboard/settings/maintenance.php:96
2110
  msgid "This might take a while and may slow down your site during this action!"
2111
  msgstr ""
2112
  "Това действие ще отнеме време и може да забави сайта ви по време на "
2117
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
2118
 
2119
  #: dashboard/settings/maintenance.php:32
2120
+ msgid "Delete old tracker data. (Does nothing if you use a memcached plugin)"
 
 
2121
  msgstr ""
2122
 
2123
+ #: dashboard/settings/maintenance.php:33
2124
  msgid ""
2125
+ "For when you create an advert, group or schedule and it does not save or "
2126
+ "keep changes you make."
2127
  msgstr ""
2128
 
2129
+ #: dashboard/settings/maintenance.php:33
2130
  msgid ""
2131
+ "Additionally you can clean up old schedules, tracker data and/or statistics. "
2132
+ "This will improve the speed of your site."
2133
  msgstr ""
2134
 
2135
+ #: dashboard/settings/maintenance.php:37
2136
  msgid "Re-evaluate Ads"
2137
  msgstr "Преоценка на реклами"
2138
 
2139
+ #: dashboard/settings/maintenance.php:39
2140
  msgid "Re-evaluate all ads"
2141
  msgstr "Преоценка на всички реклами"
2142
 
2143
+ #: dashboard/settings/maintenance.php:39
2144
  msgid "You are about to check all ads for errors."
2145
  msgstr "На път сте да проверите всички реклами за грешки."
2146
 
2147
+ #: dashboard/settings/maintenance.php:40
2148
  msgid ""
2149
  "This will apply all evaluation rules to all ads to see if any error slipped "
2150
  "in. Normally you should not need this feature."
2152
  "Това ще провери всички реклами за грешки. Попринцип не би трябвало да имате "
2153
  "нужда от тази функция."
2154
 
2155
+ #: dashboard/settings/maintenance.php:44
2156
  msgid ""
2157
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2158
  "database. They only apply to your ads/groups and stats. Not to other "
2165
  "is not a valid point in any case."
2166
  msgstr ""
2167
 
2168
+ #: dashboard/settings/maintenance.php:46
2169
  msgid "Troubleshooting"
2170
  msgstr "Отстраняване на проблеми"
2171
 
2172
+ #: dashboard/settings/maintenance.php:47
2173
  msgid ""
2174
  "The below options are not meant for normal use and are only there for "
2175
  "developers to review saved settings or how ads are selected. These can be "
2177
  "SHOULD BE LEFT UNCHECKED!!"
2178
  msgstr ""
2179
 
2180
+ #: dashboard/settings/maintenance.php:50
2181
  msgid "Developer Debug"
2182
  msgstr "Developer Debug"
2183
 
2184
+ #: dashboard/settings/maintenance.php:52
2185
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2186
  msgstr ""
2187
 
2188
+ #: dashboard/settings/maintenance.php:53
2189
  msgid "View advert specs and (some) stats in the dashboard."
2190
  msgstr ""
2191
 
2192
+ #: dashboard/settings/maintenance.php:54
2193
  msgid ""
2194
  "Disable timers for clicks and impressions and enable a alert window for "
2195
  "clicktracking."
2197
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
2198
  "за проследяване на кликове."
2199
 
2200
+ #: dashboard/settings/maintenance.php:55
2201
  msgid "Temporarily disable encryption on the redirect url."
2202
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
2203
 
2204
+ #: dashboard/settings/maintenance.php:60
2205
  msgid "Status and Versions"
2206
  msgstr ""
2207
 
2208
+ #: dashboard/settings/maintenance.php:63
2209
  msgid "Current status of adverts"
2210
  msgstr "Настоящ статус на рекламите"
2211
 
2212
+ #: dashboard/settings/maintenance.php:64
2213
  msgid "Normal"
2214
  msgstr "Нормално"
2215
 
2216
+ #: dashboard/settings/maintenance.php:64
2217
  msgid "Error"
2218
  msgstr "Грешка"
2219
 
2220
+ #: dashboard/settings/maintenance.php:64
2221
  msgid "Expired"
2222
  msgstr "Изтекло"
2223
 
2224
+ #: dashboard/settings/maintenance.php:64
2225
  msgid "Expires Soon"
2226
  msgstr "Изтича скоро"
2227
 
2228
+ #: dashboard/settings/maintenance.php:64
2229
  msgid "Unknown"
2230
  msgstr ""
2231
 
2232
+ #: dashboard/settings/maintenance.php:67
2233
  msgid "Banners/assets Folder"
2234
  msgstr ""
2235
 
2236
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2237
  msgid "Exists and appears writable"
2238
  msgstr ""
2239
 
2240
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2241
  msgid "Not writable or does not exist"
2242
  msgstr ""
2243
 
2244
+ #: dashboard/settings/maintenance.php:71
2245
  msgid "Reports Folder"
2246
  msgstr ""
2247
 
2248
+ #: dashboard/settings/maintenance.php:77
2249
  msgid "Advert evaluation"
2250
  msgstr ""
2251
 
2252
+ #: dashboard/settings/maintenance.php:78 dashboard/settings/maintenance.php:80
2253
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2254
  msgstr ""
2255
 
2256
+ #: dashboard/settings/maintenance.php:79
2257
+ msgid "Clean Transients"
2258
  msgstr ""
2259
 
2260
+ #: dashboard/settings/maintenance.php:84
2261
  msgid "Internal Versions"
2262
  msgstr ""
2263
 
2264
+ #: dashboard/settings/maintenance.php:85
2265
  msgid ""
2266
  "Unless you experience database issues or a warning shows below, these "
2267
  "numbers are not really relevant for troubleshooting. Support may ask for "
2268
  "them to verify your database status."
2269
  msgstr ""
2270
 
2271
+ #: dashboard/settings/maintenance.php:88
2272
  msgid "AdRotate version"
2273
  msgstr ""
2274
 
2275
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2276
  msgid "Current:"
2277
  msgstr ""
2278
 
2279
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2280
  msgid "Should be:"
2281
  msgstr ""
2282
 
2283
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2284
  msgid "Previous:"
2285
  msgstr ""
2286
 
2287
+ #: dashboard/settings/maintenance.php:90
2288
  msgid "Database version"
2289
  msgstr ""
2290
 
2291
+ #: dashboard/settings/maintenance.php:96
2292
+ msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2293
+ msgstr ""
2294
+
2295
+ #: dashboard/settings/maintenance.php:96
2296
+ msgid "Make sure you have a database backup!"
2297
+ msgstr ""
2298
+
2299
+ #: dashboard/settings/maintenance.php:97
2300
+ msgid ""
2301
+ "Attempt to update the database and migrate settings where required or "
2302
+ "relevant. Normally you should not need or use this option."
2303
+ msgstr ""
2304
+
2305
  #: dashboard/settings/misc.php:16
2306
  msgid "Miscellaneous"
2307
  msgstr "Разни"
2725
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
2726
  "(24 часа)."
2727
 
2728
+ #: dashboard/settings/statistics.php:71
2729
+ msgid "Clean up temporary data"
2730
+ msgstr ""
2731
+
2732
+ #: dashboard/settings/statistics.php:73
2733
+ msgid ""
2734
+ "Periodically delete old tracker data. If you are using a memcached plugin "
2735
+ "you should disable this option!"
2736
+ msgstr ""
2737
+
2738
+ #~ msgid "Help AdRotate Grow"
2739
+ #~ msgstr "Помогнете за развитието на AdRotate"
2740
+
2741
+ #~ msgid ""
2742
+ #~ "A lot of users only think to review AdRotate when something goes wrong "
2743
+ #~ "while thousands of people use AdRotate satisfactory. Don't let this go "
2744
+ #~ "unnoticed."
2745
+ #~ msgstr ""
2746
+ #~ "Много потребители се сещат да напишат мнение за AdRotate само, когато "
2747
+ #~ "нещо се обърка, докато хиляди хора използват AdRotate безпроблемно. Не "
2748
+ #~ "оставяйте това да остане незабелязано."
2749
+
2750
+ #~ msgid "If you find AdRotate useful please leave your honest"
2751
+ #~ msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
2752
+
2753
+ #~ msgid "Manage Schedules"
2754
+ #~ msgstr "Управление на графици"
2755
+
2756
+ #~ msgid "Manage Media"
2757
+ #~ msgstr "Управление на Медия"
2758
+
2759
+ #~ msgid "Schedule Management available in AdRotate Pro"
2760
+ #~ msgstr "Управление с графици е налично в AdRotate Pro"
2761
+
2762
+ #~ msgid ""
2763
+ #~ "Schedule management and multiple schedules per advert is available in "
2764
+ #~ "AdRotate Pro."
2765
+ #~ msgstr ""
2766
+ #~ "Управлението на графици и множество графици за една реклама са налични в "
2767
+ #~ "AdRotate Pro."
2768
+
2769
+ #~ msgid "Start"
2770
+ #~ msgstr "Начало"
2771
+
2772
+ #~ msgid "End"
2773
+ #~ msgstr "Край"
2774
+
2775
+ #~ msgid "Ads"
2776
+ #~ msgstr "Реклами"
2777
+
2778
+ #~ msgid "Max Impressions"
2779
+ #~ msgstr "Максимум импресии"
2780
+
2781
+ #~ msgid "Max Clicks"
2782
+ #~ msgstr "Максимум кликове"
2783
+
2784
+ #~ msgid "No schedules created yet!"
2785
+ #~ msgstr "Все още няма създадени графици!"
2786
+
2787
+ #~ msgid "Easily manage your schedules from here with AdRotate Pro."
2788
+ #~ msgstr "Можете лесно да управлявате графиците си от тук с AdRotate Pro."
2789
+
2790
+ #~ msgid "Upgrade today!"
2791
+ #~ msgstr "Надградете днес!"
2792
+
2793
+ #~ msgid "Media Management available in AdRotate Pro"
2794
+ #~ msgstr "Управление на медия е налично в AdRotate Pro"
2795
+
2796
+ #~ msgid "Media uploading and management is available in AdRotate Pro."
2797
+ #~ msgstr "Управлението и качването на медия са налични в AdRotate Pro."
2798
+
2799
+ #~ msgid "Maximum size is 512Kb."
2800
+ #~ msgstr "Максималния размер е 512Kb."
2801
+
2802
+ #~ msgid "Important:"
2803
+ #~ msgstr "Важно:"
2804
+
2805
+ #~ msgid ""
2806
+ #~ "Make sure your file has no spaces or special characters in the name. "
2807
+ #~ "Replace spaces with a - or _."
2808
+ #~ msgstr ""
2809
+ #~ "Уверете се, че файла няма интервали и специални знаци в името си. "
2810
+ #~ "Заместете интервалите с - или _."
2811
+
2812
+ #~ msgid ""
2813
+ #~ "For responsive adverts make sure the filename is in the following format; "
2814
+ #~ "\"imagename.full.ext\". A full set of sized images is strongly "
2815
+ #~ "recommended."
2816
+ #~ msgstr ""
2817
+ #~ "За responsive реклами трябва да се уверите, че името на файла е в следния "
2818
+ #~ "формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени "
2819
+ #~ "картинки е строго препоръчителен."
2820
+
2821
+ #~ msgid ""
2822
+ #~ "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in "
2823
+ #~ "the filename instead of \".full\" for the various viewports."
2824
+ #~ msgstr ""
2825
+ #~ "За картинките с по-малки размери (за различните разделителни пособности), "
2826
+ #~ "използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
2827
+ #~ "файловете, вместо \".full\"."
2828
+
2829
+ #~ msgid ""
2830
+ #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
2831
+ #~ "advert for different viewports."
2832
+ #~ msgstr ""
2833
+ #~ "image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и "
2834
+ #~ "съща реклама в различни резолюции на екрана."
2835
+
2836
+ #~ msgid "Actions"
2837
+ #~ msgstr "Действия"
2838
+
2839
+ #~ msgid ""
2840
+ #~ "Make sure the banner images are not in use by adverts when you delete "
2841
+ #~ "them!"
2842
+ #~ msgstr ""
2843
+ #~ "Уверете се, че картинките за банери не се използват от реклами, преди да "
2844
+ #~ "ги изтриете!"
2845
+
2846
+ #~ msgid "Manage your banner folder from here with AdRotate Pro."
2847
+ #~ msgstr "Можете да управлявате папката с банери от тук с AdRotate Pro."
2848
+
2849
+ #~ msgid "Everything below is optional."
2850
+ #~ msgstr "Всичко по-долу е по желание."
2851
+
2852
+ #~ msgid "For administrative purposes set a sortorder."
2853
+ #~ msgstr "За административни цели задайте критерий за сортиране."
2854
+
2855
+ #~ msgid "Leave empty or 0 to skip this. Will default to ad id."
2856
+ #~ msgstr ""
2857
+ #~ "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено "
2858
+ #~ "ID на рекламата по подразбиране."
2859
+
2860
+ #~ msgid "Select the countries you want the adverts to show in."
2861
+ #~ msgstr "Изберете страните, в които искате да се показват рекламите."
2862
+
2863
+ #~ msgid "Cities take priority and will be filtered first."
2864
+ #~ msgstr "Градовете са с приоритет и ще бъдат филтрирани първи."
2865
+
2866
+ #~ msgid "Leave empty or 0 to skip this. Will default to group id."
2867
+ #~ msgstr ""
2868
+ #~ "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено "
2869
+ #~ "ID на групата."
2870
+
2871
+ #~ msgid "Which categories?"
2872
+ #~ msgstr "Кои категории?"
2873
+
2874
+ #~ msgid "Click the categories posts you want the adverts to show in."
2875
+ #~ msgstr "Изберете категориите, на които искате да се показват рекламите."
2876
+
2877
+ #~ msgid "Which pages?"
2878
+ #~ msgstr "Кои страници?"
2879
+
2880
+ #~ msgid "Click the pages you want the adverts to show in."
2881
+ #~ msgstr "Изберете страниците, на които искате да се показват рекламите."
2882
+
2883
  #~ msgid "Enable responsive support for this advert."
2884
  #~ msgstr "Активиране на responsive дизайн за тази реклама."
2885
 
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: 2016-07-17 23:25+0800\n"
6
- "PO-Revision-Date: 2016-07-17 23:25+0800\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,114 +14,114 @@ msgstr ""
14
  "X-Poedit-KeywordsList: __;_e;_\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Generator: Poedit 1.8.7\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: adrotate-functions.php:842
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
- #: adrotate-functions.php:845
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
- #: adrotate-functions.php:894
30
  msgid "Ad saved"
31
  msgstr ""
32
 
33
- #: adrotate-functions.php:898
34
  msgid "Group saved"
35
  msgstr ""
36
 
37
- #: adrotate-functions.php:902
38
  msgid "Ad(s) deleted"
39
  msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
40
 
41
- #: adrotate-functions.php:906
42
  msgid "Group deleted"
43
  msgstr "Η Ομάδα διαγράφηκε"
44
 
45
- #: adrotate-functions.php:910
46
  msgid "Ad(s) statistics reset"
47
  msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
48
 
49
- #: adrotate-functions.php:914
50
  msgid "Ad(s) renewed"
51
  msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
52
 
53
- #: adrotate-functions.php:918
54
  msgid "Ad(s) deactivated"
55
  msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
56
 
57
- #: adrotate-functions.php:922
58
  msgid "Ad(s) activated"
59
  msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
60
 
61
- #: adrotate-functions.php:926
62
  msgid "Group including it's Ads deleted"
63
  msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
64
 
65
- #: adrotate-functions.php:930
66
  #, fuzzy
67
  msgid "Export created"
68
  msgstr "Επιλογές εξαγωγής"
69
 
70
- #: adrotate-functions.php:935
71
  msgid "Settings saved"
72
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
73
 
74
- #: adrotate-functions.php:939
75
  msgid "Database optimized"
76
  msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
77
 
78
- #: adrotate-functions.php:943
79
  msgid "Database repaired"
80
  msgstr "Η βάση δεδομένων επιδιορθώθηκε"
81
 
82
- #: adrotate-functions.php:947
83
  msgid "Ads evaluated and statuses have been corrected where required"
84
  msgstr ""
85
  "Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
86
  "χρειάστηκε"
87
 
88
- #: adrotate-functions.php:951
89
  msgid "Empty database records removed"
90
  msgstr "Τα κενά πεδία της βάσης δεδομένων απομακρύνθηκαν"
91
 
92
- #: adrotate-functions.php:956
93
  msgid "Action prohibited"
94
  msgstr "Η ενέργεια απαγορεύεται"
95
 
96
- #: adrotate-functions.php:960
97
  msgid ""
98
  "The ad was saved but has an issue which might prevent it from working "
99
  "properly. Review the colored ad."
100
  msgstr ""
101
 
102
- #: adrotate-functions.php:964
103
  msgid "No data found in selected time period"
104
  msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
105
 
106
- #: adrotate-functions.php:968
107
  msgid "Database can only be optimized or cleaned once every hour"
108
  msgstr ""
109
  "Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
110
  "ώρα"
111
 
112
- #: adrotate-functions.php:972
113
  msgid "Form can not be (partially) empty!"
114
  msgstr ""
115
 
116
- #: adrotate-functions.php:976
117
  msgid "No ads found."
118
  msgstr ""
119
 
120
- #: adrotate-functions.php:980
121
  msgid "Unexpected error"
122
  msgstr ""
123
 
124
- #: adrotate-manage-publisher.php:685
125
  msgid "AdRotate Advertiser"
126
  msgstr ""
127
 
@@ -205,224 +205,222 @@ msgid "An unknown error occured."
205
  msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
206
 
207
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
208
- #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
209
  msgid "Check adverts"
210
  msgstr ""
211
 
212
- #: adrotate-output.php:675
213
  msgid ""
214
  "You have enable caching support but W3 Total Cache is not active on your "
215
  "site!"
216
  msgstr ""
217
 
218
- #: adrotate-output.php:678
219
  msgid ""
220
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
221
  "not set."
222
  msgstr ""
223
 
224
- #: adrotate-output.php:683
225
  msgid "Your AdRotate Banner folder is not writable or does not exist."
226
  msgstr ""
227
 
228
- #: adrotate-output.php:723 dashboard/adrotatepro.php:99
229
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
230
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
231
- #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
232
- #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
233
- #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
234
- #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
235
  #: dashboard/settings/geotargeting.php:35
236
  #, fuzzy
237
  msgid "Buy now"
238
  msgstr "Λάβετε μέτρα τώρα"
239
 
240
- #: adrotate-output.php:724
241
  msgid ""
242
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
243
  "to the <strong>PRO</strong> version"
244
  msgstr ""
245
 
246
- #: adrotate-output.php:724
247
  #, php-format
248
  msgid ""
249
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
250
  msgstr ""
251
 
252
- #: adrotate-output.php:724
253
  msgid "Thank you for your purchase!"
254
  msgstr ""
255
 
256
- #: adrotate-output.php:785
257
  msgid ""
258
- "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
259
- "this menu. Check out the"
260
  msgstr ""
261
 
262
- #: adrotate-output.php:785
263
  msgid "manuals"
264
  msgstr "εγχειρίδια"
265
 
266
- #: adrotate-output.php:785 adrotate-output.php:852
267
  msgid "and"
268
  msgstr ""
269
 
270
- #: adrotate-output.php:785
271
  msgid "forums"
272
  msgstr ""
273
 
274
- #: adrotate-output.php:815
275
  #, fuzzy
276
  msgid "Useful Links"
277
  msgstr "Χρήσιμοι σύνδεσμοι"
278
 
279
- #: adrotate-output.php:816
280
  msgid "Useful links to learn more about AdRotate"
281
  msgstr ""
282
 
283
- #: adrotate-output.php:818
284
  msgid "AdRotate website"
285
  msgstr ""
286
 
287
- #: adrotate-output.php:819
288
  #, fuzzy
289
  msgid "Getting Started With AdRotate"
290
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
291
 
292
- #: adrotate-output.php:820
293
  #, fuzzy
294
  msgid "AdRotate manuals"
295
  msgstr "Πληροφορίες του AdRotate"
296
 
297
- #: adrotate-output.php:821
298
  #, fuzzy
299
  msgid "AdRotate Support Forum"
300
  msgstr "Κατάστημα του AdRotate"
301
 
302
- #: adrotate-output.php:844
303
- #, fuzzy
304
- msgid "Help AdRotate Grow"
305
- msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
306
 
307
- #: adrotate-output.php:845
308
- msgid "Follow Arnan on Facebook"
309
  msgstr ""
310
 
311
- #: adrotate-output.php:852
312
  msgid ""
313
- "A lot of users only think to review AdRotate when something goes wrong while "
314
- "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
315
  msgstr ""
316
 
317
- #: adrotate-output.php:852
318
- msgid "If you find AdRotate useful please leave your honest"
319
  msgstr ""
320
 
321
- #: adrotate-output.php:852
322
  msgid "rating"
323
  msgstr ""
324
 
325
- #: adrotate-output.php:852
326
  #, fuzzy
327
  msgid "review"
328
  msgstr "Αξιολογήστε και σχολιάστε"
329
 
330
- #: adrotate-output.php:852
331
  msgid "on WordPress.org to help AdRotate grow in a positive way"
332
  msgstr ""
333
 
334
- #: adrotate-output.php:885 dashboard/settings/notifications.php:50
335
  #: dashboard/settings/notifications.php:80
336
  msgid "Available in AdRotate Pro"
337
  msgstr "Διαθέσιμο στο AdRotate Pro"
338
 
339
- #: adrotate-output.php:885
340
  #, fuzzy
341
  msgid "More information..."
342
  msgstr "Περισσότερες πληροφορίες"
343
 
344
- #: adrotate-output.php:886
345
  msgid "This feature is available in AdRotate Pro"
346
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
347
 
348
- #: adrotate-output.php:886
349
  #, fuzzy
350
  msgid "Learn more"
351
  msgstr "Μάθετε περισσότερα σχετικά"
352
 
353
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
354
- #: dashboard/publisher/adverts-edit.php:235
355
  msgid "January"
356
  msgstr "Ιανουάριος"
357
 
358
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
359
- #: dashboard/publisher/adverts-edit.php:236
360
  msgid "February"
361
  msgstr "Φεβρουάριος"
362
 
363
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
364
- #: dashboard/publisher/adverts-edit.php:237
365
  msgid "March"
366
  msgstr "Μάρτιος"
367
 
368
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
369
- #: dashboard/publisher/adverts-edit.php:238
370
  msgid "April"
371
  msgstr "Απρίλιος"
372
 
373
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
374
- #: dashboard/publisher/adverts-edit.php:239
375
  msgid "May"
376
  msgstr "Μάιος"
377
 
378
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
379
- #: dashboard/publisher/adverts-edit.php:240
380
  msgid "June"
381
  msgstr "Ιούνιος"
382
 
383
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
384
- #: dashboard/publisher/adverts-edit.php:241
385
  msgid "July"
386
  msgstr "Ιούλιος"
387
 
388
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
389
- #: dashboard/publisher/adverts-edit.php:242
390
  msgid "August"
391
  msgstr "Αύγουστος"
392
 
393
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
394
- #: dashboard/publisher/adverts-edit.php:243
395
  msgid "September"
396
  msgstr "Σεπτέμβριος"
397
 
398
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
399
- #: dashboard/publisher/adverts-edit.php:244
400
  msgid "October"
401
  msgstr "Οκτώβριος"
402
 
403
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
404
- #: dashboard/publisher/adverts-edit.php:245
405
  msgid "November"
406
  msgstr "Νοέμβριος"
407
 
408
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
409
- #: dashboard/publisher/adverts-edit.php:246
410
  msgid "December"
411
  msgstr "Δεκέμβριος"
412
 
413
- #: adrotate-statistics.php:222
414
  msgid "Previous"
415
  msgstr "Προηγούμενο"
416
 
417
- #: adrotate-statistics.php:224
418
  msgid "This month"
419
  msgstr "Αυτό το μήνα"
420
 
421
- #: adrotate-statistics.php:225
422
  msgid "Next"
423
  msgstr "Επόμενο"
424
 
425
- #: adrotate-statistics.php:278
426
  msgid "No data to show!"
427
  msgstr "Δεν υπάρχουν δεδομένα."
428
 
@@ -468,269 +466,58 @@ msgstr "Κωδ:"
468
  msgid "Fill in the ID of the type you want to display!"
469
  msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
470
 
471
- #: adrotate.php:102
472
  msgid "General Info"
473
  msgstr "Γενικές Πληροφορίες"
474
 
475
- #: adrotate.php:103
476
  msgid "AdRotate Pro"
477
  msgstr "AdRotate Pro"
478
 
479
- #: adrotate.php:104
480
- msgid "Manage Adverts"
481
- msgstr ""
482
-
483
- #: adrotate.php:105 dashboard/publisher/groups-main.php:12
484
- msgid "Manage Groups"
485
- msgstr "Διαχείριση Ομάδων"
486
-
487
- #: adrotate.php:106 adrotate.php:369
488
- #, fuzzy
489
- msgid "Manage Schedules"
490
- msgstr "Διαχείριση"
491
 
492
- #: adrotate.php:107
493
- #, fuzzy
494
- msgid "Manage Media"
495
- msgstr "Media:"
496
 
497
- #: adrotate.php:108
498
  msgid "Settings"
499
  msgstr "Ρυθμίσεις"
500
 
501
- #: adrotate.php:128
502
  msgid "AdRotate Info"
503
  msgstr "Πληροφορίες του AdRotate"
504
 
505
- #: adrotate.php:146
506
  #, fuzzy
507
  msgid "AdRotate Professional"
508
  msgstr "AdRotate Pro"
509
 
510
- #: adrotate.php:186
511
  msgid "Advert Management"
512
  msgstr ""
513
 
514
- #: adrotate.php:244 adrotate.php:311 adrotate.php:364
515
  msgid "Manage"
516
  msgstr "Διαχείριση"
517
 
518
- #: adrotate.php:245 adrotate.php:312 adrotate.php:365
519
  msgid "Add New"
520
  msgstr "Προσθήκη Νέας"
521
 
522
- #: adrotate.php:305
523
  msgid "Group Management"
524
  msgstr "Διαχείριση Ομάδας"
525
 
526
- #: adrotate.php:314
527
  msgid "Report"
528
  msgstr "Αναφορά"
529
 
530
- #: adrotate.php:360
531
- #, fuzzy
532
- msgid "Schedule Management available in AdRotate Pro"
533
- msgstr "Διαθέσιμο στο AdRotate Pro"
534
-
535
- #: adrotate.php:370
536
- #, fuzzy
537
- msgid ""
538
- "Schedule management and multiple schedules per advert is available in "
539
- "AdRotate Pro."
540
- msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
541
-
542
- #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
543
- #: dashboard/publisher/adverts-main.php:114
544
- #: dashboard/publisher/groups-edit.php:71
545
- #: dashboard/publisher/groups-main.php:89
546
- #, fuzzy
547
- msgid "More information"
548
- msgstr "Περισσότερες πληροφορίες"
549
-
550
- #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
551
- #: dashboard/publisher/adverts-error.php:19
552
- #: dashboard/publisher/adverts-main.php:20
553
- #: dashboard/publisher/groups-main.php:20
554
- msgid "Bulk Actions"
555
- msgstr "Μαζικές Ενέργειες"
556
-
557
- #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
558
- #: dashboard/publisher/adverts-error.php:29
559
- #: dashboard/publisher/adverts-main.php:30
560
- #: dashboard/publisher/groups-main.php:24
561
- msgid "Go"
562
- msgstr "Go"
563
-
564
- #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
565
- #: dashboard/publisher/adverts-error.php:39
566
- #: dashboard/publisher/adverts-main.php:39
567
- #: dashboard/publisher/groups-main.php:32
568
- msgid "ID"
569
- msgstr "Κωδ."
570
-
571
- #: adrotate.php:388
572
- #, fuzzy
573
- msgid "Start"
574
- msgstr "Ώρα έναρξης (ωω: λλ):"
575
-
576
- #: adrotate.php:388
577
- #, fuzzy
578
- msgid "End"
579
- msgstr "Ώρα λήξης (ωω: λλ):"
580
-
581
- #: adrotate.php:389
582
- msgid "Ads"
583
- msgstr "Διαφημίσεις"
584
-
585
- #: adrotate.php:391
586
- msgid "Max Impressions"
587
- msgstr "Max Impressions"
588
-
589
- #: adrotate.php:392
590
- msgid "Max Clicks"
591
- msgstr "Max Clicks"
592
-
593
- #: adrotate.php:422
594
- #, fuzzy
595
- msgid "No schedules created yet!"
596
- msgstr "Κανένα πεδίο δεν έχει δημιουργηθεί ακόμα!"
597
-
598
- #: adrotate.php:427
599
- #, fuzzy
600
- msgid "Easily manage your schedules from here with AdRotate Pro."
601
- msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
602
-
603
- #: adrotate.php:427 adrotate.php:490
604
- #, fuzzy
605
- msgid "Upgrade today!"
606
- msgstr "Σήμερα"
607
-
608
- #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
609
- #: dashboard/publisher/groups-edit.php:383
610
- msgid "Expires soon."
611
- msgstr "Λήγει σύντομα."
612
-
613
- #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
614
- #: dashboard/publisher/groups-edit.php:384
615
- msgid "Has expired."
616
- msgstr "Έχει λήξει."
617
-
618
- #: adrotate.php:452
619
- #, fuzzy
620
- msgid "Media Management available in AdRotate Pro"
621
- msgstr "Διαθέσιμο στο AdRotate Pro"
622
-
623
- #: adrotate.php:454
624
- msgid "Upload images to the AdRotate Pro banners folder from here."
625
- msgstr ""
626
-
627
- #: adrotate.php:454
628
- msgid ""
629
- "This is useful if you use responsive adverts with multiple images or have "
630
- "HTML5 adverts containing multiple files."
631
- msgstr ""
632
-
633
- #: adrotate.php:454
634
- #, fuzzy
635
- msgid "Media uploading and management is available in AdRotate Pro."
636
- msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
637
-
638
- #: adrotate.php:456
639
- msgid "Upload new file"
640
- msgstr ""
641
-
642
- #: adrotate.php:457
643
- msgid "Accepted files:"
644
- msgstr ""
645
-
646
- #: adrotate.php:457
647
- msgid "For HTML5 ads you can also upload html and javascript files."
648
- msgstr ""
649
-
650
- #: adrotate.php:457
651
- msgid "Maximum size is 512Kb."
652
- msgstr ""
653
-
654
- #: adrotate.php:457
655
- msgid "Important:"
656
- msgstr ""
657
-
658
- #: adrotate.php:457
659
- msgid ""
660
- "Make sure your file has no spaces or special characters in the name. Replace "
661
- "spaces with a - or _."
662
- msgstr ""
663
-
664
- #: adrotate.php:457
665
- msgid ""
666
- "If you remove spaces from filenames for HTML5 adverts also edit the html "
667
- "file so it knows about the changed name. For example for the javascript file."
668
- msgstr ""
669
-
670
- #: adrotate.php:460
671
- msgid ""
672
- "For responsive adverts make sure the filename is in the following format; "
673
- "\"imagename.full.ext\". A full set of sized images is strongly recommended."
674
- msgstr ""
675
-
676
- #: adrotate.php:461
677
- msgid ""
678
- "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
679
- "filename instead of \".full\" for the various viewports."
680
- msgstr ""
681
-
682
- #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
683
- #: dashboard/publisher/groups-edit.php:316
684
- msgid "Example:"
685
- msgstr "Παράδειγμα:"
686
-
687
- #: adrotate.php:462
688
- msgid ""
689
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
690
- "for different viewports."
691
- msgstr ""
692
-
693
- #: adrotate.php:466
694
- msgid "Upload file"
695
- msgstr ""
696
-
697
- #: adrotate.php:466
698
- msgid "Click only once per file!"
699
- msgstr ""
700
-
701
- #: adrotate.php:469
702
- msgid "Available files in"
703
- msgstr ""
704
-
705
- #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
706
- #: dashboard/publisher/groups-main.php:33
707
- msgid "Name"
708
- msgstr "Όνομα"
709
-
710
- #: adrotate.php:475
711
- #, fuzzy
712
- msgid "Actions"
713
- msgstr "Μαζικές Ενέργειες"
714
-
715
- #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
716
- #: adrotate.php:484 adrotate.php:485 adrotate.php:486
717
- #: dashboard/publisher/adverts-disabled.php:22
718
- #: dashboard/publisher/adverts-error.php:21
719
- #: dashboard/publisher/adverts-main.php:22
720
- msgid "Delete"
721
- msgstr "Διαγραφή"
722
-
723
- #: adrotate.php:490
724
- msgid ""
725
- "Make sure the banner images are not in use by adverts when you delete them!"
726
- msgstr ""
727
-
728
- #: adrotate.php:490
729
- #, fuzzy
730
- msgid "Manage your banner folder from here with AdRotate Pro."
731
- msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
732
-
733
- #: adrotate.php:516
734
  msgid "AdRotate Settings"
735
  msgstr "Ρυθμίσεις AdRotate"
736
 
@@ -755,8 +542,9 @@ msgstr ""
755
  msgid ""
756
  "Target mobile users with ease and show the right adverts to smartphones, "
757
  "tablets and computers. Mix and match as you please and offer adverts that "
758
- "suit the device. Create as many mobile adverts as you want without effort "
759
- "and with a few easy to use options they show up where you want them to!"
 
760
  msgstr ""
761
 
762
  #: dashboard/adrotatepro.php:34
@@ -783,39 +571,40 @@ msgid ""
783
  "forum. Get a solution (usually) within one business day."
784
  msgstr ""
785
 
786
- #: dashboard/adrotatepro.php:48 dashboard/info.php:119
787
  msgid "AdRotate is brought to you by"
788
  msgstr "Το AdRotate έρχεται από την "
789
 
790
- #: dashboard/adrotatepro.php:74
791
  msgid "Schedule all campaigns with ease"
792
  msgstr ""
793
 
794
- #: dashboard/adrotatepro.php:77
795
  msgid ""
796
  "Schedule your adverts and set up advertising campaigns based on dates you or "
797
- "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
798
- "You name it, AdRotate schedules it. This makes planning your revenue stream "
799
- "much more easy. You can set one or many schedules for adverts."
 
800
  msgstr ""
801
 
802
- #: dashboard/adrotatepro.php:81
803
  msgid "Avoid adblockers"
804
  msgstr ""
805
 
806
- #: dashboard/adrotatepro.php:84
807
  msgid ""
808
- "Try and avoid adblockers so you adverts get the exposure you want them to "
809
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
810
  "adverts are less likely to be removed. Of-course make sure you create your "
811
  "adverts smartly so these features reach their full potential!"
812
  msgstr ""
813
 
814
- #: dashboard/adrotatepro.php:88
815
  msgid "Stay up-to-date with notifications"
816
  msgstr ""
817
 
818
- #: dashboard/adrotatepro.php:91
819
  msgid ""
820
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
821
  "adverts expire or need your attention. Additionally, send push notifications "
@@ -823,91 +612,91 @@ msgid ""
823
  "or when advertisers create new adverts. Never miss an expiration date again."
824
  msgstr ""
825
 
826
- #: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
827
- #: dashboard/info.php:78
828
  #, fuzzy
829
  msgid "Buy AdRotate Professional"
830
  msgstr "AdRotate Pro"
831
 
832
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
833
  msgid "Single License"
834
  msgstr ""
835
 
836
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
837
  msgid "For one WordPress installation."
838
  msgstr ""
839
 
840
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
841
- #: dashboard/info.php:83 dashboard/info.php:90
842
  msgid "Duo License"
843
  msgstr ""
844
 
845
- #: dashboard/adrotatepro.php:100 dashboard/info.php:83
846
  msgid "For two WordPress installations."
847
  msgstr ""
848
 
849
- #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
850
- #: dashboard/info.php:84 dashboard/info.php:91
851
  msgid "Multi License"
852
  msgstr ""
853
 
854
- #: dashboard/adrotatepro.php:101 dashboard/info.php:84
855
  msgid " For up to five WordPress installations."
856
  msgstr ""
857
 
858
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
859
- #: dashboard/info.php:85 dashboard/info.php:92
860
  #, fuzzy
861
  msgid "Developer License"
862
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
863
 
864
- #: dashboard/adrotatepro.php:102 dashboard/info.php:85
865
  msgid "Unlimited WordPress installations and/or networks."
866
  msgstr ""
867
 
868
- #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
869
- #: dashboard/info.php:86 dashboard/info.php:94
870
  msgid "Compare licenses"
871
  msgstr ""
872
 
873
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
874
  msgid "Not sure which license is for you? Compare them..."
875
  msgstr ""
876
 
877
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
878
  msgid "All Licenses"
879
  msgstr ""
880
 
881
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
882
  msgid "Lifetime License"
883
  msgstr ""
884
 
885
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
886
  msgid "Single installation."
887
  msgstr ""
888
 
889
- #: dashboard/adrotatepro.php:112 dashboard/info.php:90
890
  msgid "Up to 2 installations."
891
  msgstr ""
892
 
893
- #: dashboard/adrotatepro.php:113 dashboard/info.php:91
894
  msgid "Up to 10 installations."
895
  msgstr ""
896
 
897
- #: dashboard/adrotatepro.php:114 dashboard/info.php:92
898
  msgid "Up to 25 installations or multisite networks."
899
  msgstr ""
900
 
901
- #: dashboard/adrotatepro.php:115 dashboard/info.php:93
902
  msgid ""
903
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
904
  msgstr ""
905
 
906
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
907
  msgid "Not sure which license is for you?"
908
  msgstr ""
909
 
910
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
911
  msgid "Compare Licenses"
912
  msgstr ""
913
 
@@ -923,38 +712,41 @@ msgstr "Η εγκατάστασή σας"
923
  msgid "Adverts that need you"
924
  msgstr "Διαφημίσεις που χρειάζονται την προσοχή σας"
925
 
926
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
927
- #: dashboard/publisher/groups-main.php:34
928
- msgid "Adverts"
929
- msgstr "Διαφημίσεις"
930
-
931
  #: dashboard/info.php:38
932
  msgid "(Almost) Expired"
933
  msgstr "(Σχεδόν) Έληξαν"
934
 
935
- #: dashboard/info.php:41
936
- msgid "Groups"
937
- msgstr "Ομάδες"
938
-
939
  #: dashboard/info.php:42
940
  msgid "Have errors"
941
  msgstr "Έχουν σφάλματα"
942
 
943
- #: dashboard/info.php:48
944
- msgid "Support AdRotate"
945
- msgstr "Υποστηρίξτε το AdRotate"
946
-
947
- #: dashboard/info.php:55
948
  msgid ""
949
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
950
  "for updates about me and my plugins. Thank you!"
951
  msgstr ""
952
 
953
- #: dashboard/info.php:105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
954
  msgid "AdRotate News"
955
  msgstr ""
956
 
957
- #: dashboard/info.php:123
958
  msgid ""
959
  "I am a digital nomad in the Philippines. Click on my name to find out more "
960
  "about me and what I am doing. Thanks for your support and for using my "
@@ -965,17 +757,44 @@ msgstr ""
965
  msgid "Disabled Adverts"
966
  msgstr ""
967
 
 
 
 
 
 
 
 
968
  #: dashboard/publisher/adverts-disabled.php:21
969
- #: dashboard/publisher/adverts-edit.php:170
970
  msgid "Activate"
971
  msgstr "Ενεργοποίηση"
972
 
 
 
 
 
 
 
973
  #: dashboard/publisher/adverts-disabled.php:23
974
  #: dashboard/publisher/adverts-error.php:22
975
  #: dashboard/publisher/adverts-main.php:23
976
  msgid "Reset stats"
977
  msgstr "Επαναφορά Στατιστικών"
978
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
979
  #: dashboard/publisher/adverts-disabled.php:36
980
  #: dashboard/publisher/adverts-error.php:40
981
  #: dashboard/publisher/adverts-main.php:40
@@ -988,7 +807,7 @@ msgstr ""
988
  "πρωί."
989
 
990
  #: dashboard/publisher/adverts-disabled.php:37
991
- #: dashboard/publisher/adverts-edit.php:110
992
  #: dashboard/publisher/adverts-error.php:41
993
  #: dashboard/publisher/adverts-main.php:41
994
  msgid "Title"
@@ -996,7 +815,7 @@ msgstr "Τίτλος"
996
 
997
  #: dashboard/publisher/adverts-disabled.php:38
998
  #: dashboard/publisher/adverts-main.php:44
999
- #: dashboard/publisher/groups-edit.php:329
1000
  #: dashboard/publisher/groups-main.php:36
1001
  msgid "Shown"
1002
  msgstr "Εμφανίζονται"
@@ -1005,7 +824,7 @@ msgstr "Εμφανίζονται"
1005
  #: dashboard/publisher/adverts-main.php:46
1006
  #: dashboard/publisher/adverts-report.php:36
1007
  #: dashboard/publisher/adverts-report.php:57
1008
- #: dashboard/publisher/groups-edit.php:330
1009
  #: dashboard/publisher/groups-main.php:38
1010
  #: dashboard/publisher/groups-report.php:37
1011
  #: dashboard/publisher/groups-report.php:58
@@ -1021,54 +840,54 @@ msgstr "Clicks"
1021
  msgid "CTR"
1022
  msgstr "CTR"
1023
 
1024
- #: dashboard/publisher/adverts-disabled.php:74
1025
  #: dashboard/publisher/adverts-error.php:64
1026
- #: dashboard/publisher/adverts-main.php:87
1027
  #: dashboard/publisher/groups-main.php:70
1028
  msgid "Edit"
1029
  msgstr "Επεξεργασία"
1030
 
1031
- #: dashboard/publisher/adverts-disabled.php:74
1032
  #: dashboard/publisher/adverts-error.php:64
1033
- #: dashboard/publisher/adverts-main.php:87
1034
  #: dashboard/publisher/groups-main.php:70
1035
  msgid "Stats"
1036
  msgstr "Στατιστικά"
1037
 
1038
- #: dashboard/publisher/adverts-disabled.php:74
1039
  #: dashboard/publisher/adverts-error.php:64
1040
- #: dashboard/publisher/adverts-main.php:87
1041
  #, fuzzy
1042
  msgid "Groups:"
1043
  msgstr "Ομάδες"
1044
 
1045
- #: dashboard/publisher/adverts-edit.php:48
1046
  msgid "The AdCode cannot be empty!"
1047
  msgstr "Ο AdCode δεν μπορεί να είναι κενός!"
1048
 
1049
- #: dashboard/publisher/adverts-edit.php:51
1050
  msgid ""
1051
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1052
  "use!"
1053
  msgstr ""
1054
 
1055
- #: dashboard/publisher/adverts-edit.php:54
1056
  msgid ""
1057
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1058
  "use!"
1059
  msgstr ""
1060
 
1061
- #: dashboard/publisher/adverts-edit.php:57
1062
  msgid ""
1063
  "There is a problem saving the image. Please reset your image and re-save the "
1064
  "ad!"
1065
  msgstr ""
1066
 
1067
- #: dashboard/publisher/adverts-edit.php:60
1068
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1069
  msgstr ""
1070
 
1071
- #: dashboard/publisher/adverts-edit.php:65
1072
  msgid ""
1073
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1074
  "the ad!"
@@ -1076,80 +895,80 @@ msgstr ""
1076
  "Το AdRotate δεν μπορεί να βρει κάποιο σφάλμα, αλλά η διαφήμιση είναι "
1077
  "σημειωμένη σαν λανθασμένη. Προσπαθήστε να αποθηκεύσετε πάλι τη διαφήμιση!"
1078
 
1079
- #: dashboard/publisher/adverts-edit.php:68
1080
  msgid "This ad is expired and currently not shown on your website!"
1081
  msgstr ""
1082
  "Αυτή η διαφήμιση έχει λήξει και για την ώρα δεν εμφανίζεται στην ιστοσελίδα "
1083
  "σας!"
1084
 
1085
- #: dashboard/publisher/adverts-edit.php:71
1086
  msgid "The ad will expire in less than 2 days!"
1087
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 2 ημέρες!"
1088
 
1089
- #: dashboard/publisher/adverts-edit.php:74
1090
  msgid "This ad will expire in less than 7 days!"
1091
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 7 ημέρες!"
1092
 
1093
- #: dashboard/publisher/adverts-edit.php:77
1094
  msgid "This ad has been disabled and does not rotate on your site!"
1095
  msgstr ""
1096
  "Η διαφήμιση έχει απενεργοποιηθεί και δεν προβάλεται στην ιστοσελίδα σας!"
1097
 
1098
- #: dashboard/publisher/adverts-edit.php:102
1099
  msgid "New Advert"
1100
  msgstr "Νέα Διαφήμιση"
1101
 
1102
- #: dashboard/publisher/adverts-edit.php:104
1103
  msgid "Edit Advert"
1104
  msgstr "Επεξεργασία Διαφήμισης"
1105
 
1106
- #: dashboard/publisher/adverts-edit.php:116
1107
  msgid "AdCode"
1108
  msgstr ""
1109
 
1110
- #: dashboard/publisher/adverts-edit.php:121
1111
  msgid "Basic Examples:"
1112
  msgstr "Βασικά παραδείγματα:"
1113
 
1114
- #: dashboard/publisher/adverts-edit.php:128
1115
  msgid "Useful tags"
1116
  msgstr ""
1117
 
1118
- #: dashboard/publisher/adverts-edit.php:130
1119
  msgid "Insert the advert ID Number."
1120
  msgstr ""
1121
 
1122
- #: dashboard/publisher/adverts-edit.php:130
1123
  msgid "Required when selecting a asset below."
1124
  msgstr ""
1125
 
1126
- #: dashboard/publisher/adverts-edit.php:130
1127
  msgid "Insert the advert name."
1128
  msgstr ""
1129
 
1130
- #: dashboard/publisher/adverts-edit.php:130
1131
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1132
  msgstr ""
1133
 
1134
- #: dashboard/publisher/adverts-edit.php:130
1135
  msgid "Add inside the <a> tag to open advert in a new window."
1136
  msgstr ""
1137
 
1138
- #: dashboard/publisher/adverts-edit.php:130
1139
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1140
  msgstr ""
1141
 
1142
- #: dashboard/publisher/adverts-edit.php:130
1143
  msgid ""
1144
  "Place the cursor in your AdCode where you want to add any of these tags and "
1145
  "click to add it."
1146
  msgstr ""
1147
 
1148
- #: dashboard/publisher/adverts-edit.php:135
1149
  msgid "Preview"
1150
  msgstr "Προεπισκόπηση"
1151
 
1152
- #: dashboard/publisher/adverts-edit.php:138
1153
  msgid ""
1154
  "Note: While this preview is an accurate one, it might look different then it "
1155
  "does on the website."
@@ -1157,41 +976,41 @@ msgstr ""
1157
  "Σημείωση: Όσο αυτή η προεπισκόπηση εκτελείται, μπορεί να φαίνεται "
1158
  "διαφορετική από ό, τι στην ιστοσελίδα."
1159
 
1160
- #: dashboard/publisher/adverts-edit.php:139
1161
  msgid ""
1162
  "This is because of CSS differences. Your themes CSS file is not active here!"
1163
  msgstr ""
1164
  "Αυτό είναι λόγω των διαφορών CSS. Το αρχείο θεμάτων CSS δεν είναι ενεργό εδώ!"
1165
 
1166
- #: dashboard/publisher/adverts-edit.php:144
1167
  msgid "Banner asset"
1168
  msgstr ""
1169
 
1170
- #: dashboard/publisher/adverts-edit.php:147
1171
  msgid "WordPress media:"
1172
  msgstr ""
1173
 
1174
- #: dashboard/publisher/adverts-edit.php:147
1175
  msgid "Select Banner"
1176
  msgstr "Επιλέξτε Banner"
1177
 
1178
- #: dashboard/publisher/adverts-edit.php:149
1179
  msgid "- OR -"
1180
  msgstr "- Ή -"
1181
 
1182
- #: dashboard/publisher/adverts-edit.php:151
1183
  msgid "Banner folder:"
1184
  msgstr "Φάκελος Banner:"
1185
 
1186
- #: dashboard/publisher/adverts-edit.php:152
1187
  msgid "No image selected"
1188
  msgstr "Καμία επιλεγμένη εικόνα"
1189
 
1190
- #: dashboard/publisher/adverts-edit.php:156
1191
  msgid "Use %asset% in the adcode instead of the file path."
1192
  msgstr ""
1193
 
1194
- #: dashboard/publisher/adverts-edit.php:156
1195
  msgid ""
1196
  "Use either the text field or the dropdown. If the textfield has content that "
1197
  "field has priority."
@@ -1199,32 +1018,32 @@ msgstr ""
1199
  "Χρησιμοποιήστε είτε το πεδίο κειμένου είτε το μενού επιλογών. Αν το πεδίο "
1200
  "κειμένου έχει περιεχόμενο αυτό το πεδίο έχει προτεραιότητα."
1201
 
1202
- #: dashboard/publisher/adverts-edit.php:161
1203
  #: dashboard/settings/statistics.php:17
1204
  msgid "Statistics"
1205
  msgstr "Στατιστικά"
1206
 
1207
- #: dashboard/publisher/adverts-edit.php:163
1208
  msgid "Enable click and impression tracking for this advert."
1209
  msgstr ""
1210
 
1211
- #: dashboard/publisher/adverts-edit.php:164
1212
  msgid ""
1213
  "Note: Clicktracking does not work for Javascript adverts such as those "
1214
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1215
  "always supported."
1216
  msgstr ""
1217
 
1218
- #: dashboard/publisher/adverts-edit.php:174
1219
  msgid "Yes, this ad will be used"
1220
  msgstr "Ναι, θα χρησιμοποιηθεί αυτή η διαφήμιση"
1221
 
1222
- #: dashboard/publisher/adverts-edit.php:175
1223
  msgid "No, do not show this ad anywhere"
1224
  msgstr "Όχι, να μην εμφανίσεις αυτή τη διαφήμιση πουθενά "
1225
 
1226
- #: dashboard/publisher/adverts-edit.php:182
1227
- #: dashboard/publisher/adverts-main.php:114
1228
  #: dashboard/publisher/groups-edit.php:71
1229
  #: dashboard/publisher/groups-main.php:89
1230
  #, fuzzy
@@ -1232,273 +1051,267 @@ msgid "Get more features with AdRotate Pro."
1232
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1233
 
1234
  #: dashboard/publisher/adverts-edit.php:185
1235
- #: dashboard/publisher/adverts-edit.php:285
1236
- #: dashboard/publisher/adverts-edit.php:408
1237
- #: dashboard/publisher/adverts-edit.php:449
 
 
 
 
 
 
 
 
1238
  msgid "Save Advert"
1239
  msgstr "Αποθήκευση Διαφήμισης"
1240
 
1241
- #: dashboard/publisher/adverts-edit.php:186
1242
- #: dashboard/publisher/adverts-edit.php:286
1243
- #: dashboard/publisher/adverts-edit.php:409
1244
- #: dashboard/publisher/adverts-edit.php:450
1245
  #: dashboard/publisher/groups-edit.php:150
1246
- #: dashboard/publisher/groups-edit.php:297
1247
- #: dashboard/publisher/groups-edit.php:389
1248
  msgid "Cancel"
1249
  msgstr "Ακύρωση"
1250
 
1251
- #: dashboard/publisher/adverts-edit.php:189
1252
- #: dashboard/publisher/adverts-edit.php:391
1253
  #: dashboard/publisher/groups-edit.php:132
1254
- #: dashboard/publisher/groups-edit.php:279
1255
  msgid "Usage"
1256
  msgstr "Χρήση"
1257
 
1258
- #: dashboard/publisher/adverts-edit.php:193
1259
- #: dashboard/publisher/adverts-edit.php:395
1260
  #: dashboard/publisher/groups-edit.php:136
1261
- #: dashboard/publisher/groups-edit.php:283
 
 
1262
  msgid "Widget"
1263
  msgstr ""
1264
 
1265
- #: dashboard/publisher/adverts-edit.php:194
1266
- #: dashboard/publisher/adverts-edit.php:396
1267
  msgid ""
1268
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1269
  "and select the advert or the group the advert is in."
1270
  msgstr ""
1271
 
1272
- #: dashboard/publisher/adverts-edit.php:197
1273
- #: dashboard/publisher/adverts-edit.php:399
1274
  #: dashboard/publisher/groups-edit.php:140
1275
- #: dashboard/publisher/groups-edit.php:287
1276
  msgid "In a post or page"
1277
  msgstr ""
1278
 
1279
- #: dashboard/publisher/adverts-edit.php:199
1280
- #: dashboard/publisher/adverts-edit.php:401
1281
  #: dashboard/publisher/groups-edit.php:142
1282
- #: dashboard/publisher/groups-edit.php:289
1283
  msgid "Directly in a theme"
1284
  msgstr ""
1285
 
1286
- #: dashboard/publisher/adverts-edit.php:205
1287
  msgid "Schedule your advert"
1288
  msgstr ""
1289
 
1290
- #: dashboard/publisher/adverts-edit.php:209
1291
  msgid "Start date (day/month/year)"
1292
  msgstr ""
1293
 
1294
- #: dashboard/publisher/adverts-edit.php:230
1295
  msgid "End date (day/month/year)"
1296
  msgstr ""
1297
 
1298
- #: dashboard/publisher/adverts-edit.php:253
1299
  msgid "Start time (hh:mm)"
1300
  msgstr ""
1301
 
1302
- #: dashboard/publisher/adverts-edit.php:260
1303
  msgid "End time (hh:mm)"
1304
  msgstr ""
1305
 
1306
- #: dashboard/publisher/adverts-edit.php:270
1307
  msgid "Maximum Clicks"
1308
  msgstr ""
1309
 
1310
- #: dashboard/publisher/adverts-edit.php:271
1311
- #: dashboard/publisher/adverts-edit.php:273
1312
  msgid "Leave empty or 0 to skip this."
1313
  msgstr "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό."
1314
 
1315
- #: dashboard/publisher/adverts-edit.php:272
1316
  msgid "Maximum Impressions"
1317
  msgstr ""
1318
 
1319
- #: dashboard/publisher/adverts-edit.php:277
1320
  msgid "Important"
1321
  msgstr ""
1322
 
1323
- #: dashboard/publisher/adverts-edit.php:278
1324
  msgid ""
1325
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1326
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1327
  "14:00 hours. 6AM is 6:00 hours."
1328
  msgstr ""
1329
 
1330
- #: dashboard/publisher/adverts-edit.php:282
1331
  msgid ""
1332
  "Create multiple and more advanced schedules for each advert with AdRotate "
1333
  "Pro."
1334
  msgstr ""
1335
 
1336
- #: dashboard/publisher/adverts-edit.php:282
1337
- #: dashboard/publisher/adverts-edit.php:345
1338
- #: dashboard/publisher/adverts-edit.php:389
1339
- #: dashboard/publisher/groups-edit.php:196
1340
  #, fuzzy
1341
  msgid "Upgrade today"
1342
  msgstr "Σήμερα"
1343
 
1344
- #: dashboard/publisher/adverts-edit.php:289
1345
  #: dashboard/publisher/groups-edit.php:153
1346
  msgid "Advanced"
1347
  msgstr "Προχωρημένος"
1348
 
1349
- #: dashboard/publisher/adverts-edit.php:290
1350
- msgid "Everything below is optional."
1351
- msgstr "Τα πάντα από κάτω είναι προαιρετικά."
1352
-
1353
- #: dashboard/publisher/adverts-edit.php:290
1354
  msgid "Available in AdRotate Pro!"
1355
  msgstr ""
1356
 
1357
- #: dashboard/publisher/adverts-edit.php:295
1358
  #: dashboard/publisher/adverts-main.php:42
1359
- #: dashboard/publisher/groups-edit.php:332
1360
  msgid "Weight"
1361
  msgstr "Βαρύτητα"
1362
 
1363
- #: dashboard/publisher/adverts-edit.php:298
1364
  msgid "Few impressions"
1365
  msgstr ""
1366
 
1367
- #: dashboard/publisher/adverts-edit.php:303
1368
  msgid "Less than average"
1369
  msgstr "Λιγότερο από το μέσο όρο"
1370
 
1371
- #: dashboard/publisher/adverts-edit.php:308
1372
  msgid "Normal impressions"
1373
  msgstr ""
1374
 
1375
- #: dashboard/publisher/adverts-edit.php:313
1376
  msgid "More than average"
1377
  msgstr "Περισσότερο από μέσο"
1378
 
1379
- #: dashboard/publisher/adverts-edit.php:318
1380
  msgid "Many impressions"
1381
  msgstr ""
1382
 
1383
- #: dashboard/publisher/adverts-edit.php:323
1384
  msgid "Mobile"
1385
  msgstr ""
1386
 
1387
- #: dashboard/publisher/adverts-edit.php:325
1388
  msgid "Computers"
1389
  msgstr ""
1390
 
1391
- #: dashboard/publisher/adverts-edit.php:328
1392
  msgid "Smartphones"
1393
  msgstr ""
1394
 
1395
- #: dashboard/publisher/adverts-edit.php:331
1396
  msgid "Tablets"
1397
  msgstr ""
1398
 
1399
- #: dashboard/publisher/adverts-edit.php:334
1400
  msgid ""
1401
  "Also enable mobile support in the group this advert goes in or these are "
1402
  "ignored."
1403
  msgstr ""
1404
 
1405
- #: dashboard/publisher/adverts-edit.php:338
1406
- #: dashboard/publisher/groups-edit.php:190
1407
- msgid "Sortorder"
 
1408
  msgstr ""
1409
 
1410
- #: dashboard/publisher/adverts-edit.php:340
1411
- #: dashboard/publisher/groups-edit.php:192
1412
- msgid "For administrative purposes set a sortorder."
1413
- msgstr "Για διοικητικούς σκοπούς ορίστε μια σειρά ταξινόμησης."
1414
 
1415
- #: dashboard/publisher/adverts-edit.php:340
1416
- msgid "Leave empty or 0 to skip this. Will default to ad id."
1417
  msgstr ""
1418
- "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
1419
- "διαφήμισης."
1420
 
1421
- #: dashboard/publisher/adverts-edit.php:345
1422
- msgid ""
1423
- "With AdRotate Pro you can easily select which devices the advert should show "
1424
- "on!"
1425
  msgstr ""
1426
 
1427
- #: dashboard/publisher/adverts-edit.php:347
1428
- msgid "Geo Targeting in AdRotate Pro"
1429
  msgstr ""
1430
 
1431
- #: dashboard/publisher/adverts-edit.php:348
1432
  msgid ""
1433
- "Assign the advert to a group and enable that group to use Geo Targeting."
 
1434
  msgstr ""
1435
 
1436
- #: dashboard/publisher/adverts-edit.php:352
1437
- msgid "Cities/States"
1438
- msgstr ""
 
 
1439
 
1440
- #: dashboard/publisher/adverts-edit.php:355
1441
  msgid ""
1442
- "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1443
- "states ISO codes are supported)"
1444
  msgstr ""
1445
 
1446
- #: dashboard/publisher/adverts-edit.php:355
 
 
 
 
1447
  msgid ""
1448
  "AdRotate does not check the validity of names so make sure you spell them "
1449
  "correctly!"
1450
  msgstr ""
1451
 
1452
- #: dashboard/publisher/adverts-edit.php:359
1453
- msgid "Countries"
1454
- msgstr ""
1455
-
1456
- #: dashboard/publisher/adverts-edit.php:384
1457
- #, fuzzy
1458
- msgid "Select the countries you want the adverts to show in."
1459
- msgstr ""
1460
- "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
1461
- "εμφανίζονται"
1462
-
1463
- #: dashboard/publisher/adverts-edit.php:384
1464
- msgid "Cities take priority and will be filtered first."
1465
- msgstr ""
1466
-
1467
- #: dashboard/publisher/adverts-edit.php:389
1468
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1469
  msgstr ""
1470
 
1471
- #: dashboard/publisher/adverts-edit.php:413
1472
  msgid "Select Groups"
1473
  msgstr "Επιλέξτε Ομάδες"
1474
 
1475
- #: dashboard/publisher/adverts-edit.php:418
1476
  msgid "ID - Name"
1477
  msgstr "ID - Όνομα"
1478
 
1479
- #: dashboard/publisher/adverts-edit.php:428
1480
  #: dashboard/publisher/groups-main.php:60
1481
  #: dashboard/settings/geotargeting.php:49
1482
  msgid "Default"
1483
  msgstr "Προεπιλογή"
1484
 
1485
- #: dashboard/publisher/adverts-edit.php:429
1486
  #: dashboard/publisher/groups-main.php:61
1487
  msgid "Dynamic"
1488
  msgstr "Δυναμική"
1489
 
1490
- #: dashboard/publisher/adverts-edit.php:429
1491
  #: dashboard/publisher/groups-main.php:61
1492
  #, fuzzy
1493
  msgid "second rotation"
1494
  msgstr "Γεωγραφική Τοποθεσία"
1495
 
1496
- #: dashboard/publisher/adverts-edit.php:430
1497
  #: dashboard/publisher/groups-main.php:62
1498
  msgid "Block"
1499
  msgstr "Απαγόρευση"
1500
 
1501
- #: dashboard/publisher/adverts-edit.php:430
1502
  #: dashboard/publisher/groups-main.php:62
1503
  #, fuzzy
1504
  msgid "grid"
@@ -1506,17 +1319,17 @@ msgstr ""
1506
  "Κάντε ένα πλέγμα για τις διαφημίσεις σας. Συμπλήρωση 3 και 2 κάνει ένα "
1507
  "πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
1508
 
1509
- #: dashboard/publisher/adverts-edit.php:431
1510
- #: dashboard/publisher/groups-edit.php:198
1511
  #: dashboard/publisher/groups-main.php:63
1512
  msgid "Post Injection"
1513
  msgstr "Εμβολιασμός Δημοσίευσης"
1514
 
1515
- #: dashboard/publisher/adverts-edit.php:432
1516
  msgid "Geolocation"
1517
  msgstr "Γεωγραφική τοποθεσία"
1518
 
1519
- #: dashboard/publisher/adverts-edit.php:438
1520
  #: dashboard/publisher/groups-edit.php:57
1521
  #: dashboard/publisher/groups-main.php:70
1522
  msgid "Mode"
@@ -1557,10 +1370,20 @@ msgid "For 7 days"
1557
  msgstr "Για 7 ημέρες"
1558
 
1559
  #: dashboard/publisher/adverts-error.php:71
1560
- #: dashboard/publisher/groups-edit.php:382
1561
  msgid "Configuration errors."
1562
  msgstr "Σφάλματα Διαμόρφωσης."
1563
 
 
 
 
 
 
 
 
 
 
 
1564
  #: dashboard/publisher/adverts-main.php:12
1565
  msgid "Active Adverts"
1566
  msgstr ""
@@ -1577,7 +1400,7 @@ msgstr "Επιλογές εξαγωγής"
1577
  msgid "Today"
1578
  msgstr "Σήμερα"
1579
 
1580
- #: dashboard/publisher/adverts-main.php:109
1581
  msgid "No adverts created yet!"
1582
  msgstr ""
1583
 
@@ -1631,6 +1454,11 @@ msgstr "Νέα Ομάδα"
1631
  msgid "Edit Group"
1632
  msgstr "Επεξεργασία Ομάδας"
1633
 
 
 
 
 
 
1634
  #: dashboard/publisher/groups-edit.php:60
1635
  msgid "Default - Show one ad at a time"
1636
  msgstr "Προεπιλογή - Εμφάνισε μία διαφήμιση την φορά"
@@ -1719,15 +1547,15 @@ msgstr ""
1719
  "σελίδας. Προεπιλογή: 6."
1720
 
1721
  #: dashboard/publisher/groups-edit.php:137
1722
- #: dashboard/publisher/groups-edit.php:284
1723
  msgid ""
1724
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1725
  "Adverts\" and enter ID"
1726
  msgstr ""
1727
 
1728
  #: dashboard/publisher/groups-edit.php:149
1729
- #: dashboard/publisher/groups-edit.php:296
1730
- #: dashboard/publisher/groups-edit.php:388
1731
  #, fuzzy
1732
  msgid "Save Group"
1733
  msgstr "Αποθήκευση"
@@ -1785,11 +1613,6 @@ msgid ""
1785
  "setting. Not every theme supports this feature."
1786
  msgstr ""
1787
 
1788
- #: dashboard/publisher/groups-edit.php:180
1789
- #: dashboard/settings/advertisers.php:38
1790
- msgid "Geo Targeting"
1791
- msgstr "Γεωγραφική Στόχευση"
1792
-
1793
  #: dashboard/publisher/groups-edit.php:181
1794
  msgid "Enable Geo Targeting for this group."
1795
  msgstr ""
@@ -1812,153 +1635,134 @@ msgstr ""
1812
  msgid "Do not forget to put at least one mobile advert in this group."
1813
  msgstr ""
1814
 
1815
- #: dashboard/publisher/groups-edit.php:192
1816
- msgid "Leave empty or 0 to skip this. Will default to group id."
1817
- msgstr ""
1818
- "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
1819
- "ομάδας."
1820
-
1821
- #: dashboard/publisher/groups-edit.php:196
1822
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1823
  msgstr ""
1824
 
1825
- #: dashboard/publisher/groups-edit.php:201
1826
- msgid "In categories?"
1827
- msgstr ""
1828
-
1829
- #: dashboard/publisher/groups-edit.php:205
1830
- #: dashboard/publisher/groups-edit.php:243
1831
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1832
  #, fuzzy
1833
  msgid "Disabled"
1834
  msgstr "Απενεργοποιημένες διαφημίσεις"
1835
 
1836
  #: dashboard/publisher/groups-edit.php:206
1837
- #: dashboard/publisher/groups-edit.php:244
1838
  #, fuzzy
1839
  msgid "Before content"
1840
  msgstr "Πριν από το περιεχόμενο των δημοσιεύσεων"
1841
 
1842
  #: dashboard/publisher/groups-edit.php:207
1843
- #: dashboard/publisher/groups-edit.php:245
1844
  #, fuzzy
1845
  msgid "After content"
1846
  msgstr "Πριν και μετά το περιεχόμενο"
1847
 
1848
  #: dashboard/publisher/groups-edit.php:208
1849
- #: dashboard/publisher/groups-edit.php:246
1850
  #, fuzzy
1851
  msgid "Before and after content"
1852
  msgstr "Πριν και μετά το περιεχόμενο"
1853
 
1854
  #: dashboard/publisher/groups-edit.php:209
1855
- #: dashboard/publisher/groups-edit.php:247
1856
  msgid "Inside the content..."
1857
  msgstr ""
1858
 
1859
  #: dashboard/publisher/groups-edit.php:215
1860
- #: dashboard/publisher/groups-edit.php:253
1861
  msgid "after the middle paragraph"
1862
  msgstr ""
1863
 
1864
  #: dashboard/publisher/groups-edit.php:216
1865
- #: dashboard/publisher/groups-edit.php:254
1866
  msgid "after the 1st paragraph"
1867
  msgstr ""
1868
 
1869
  #: dashboard/publisher/groups-edit.php:217
1870
- #: dashboard/publisher/groups-edit.php:255
1871
  msgid "after the 2nd paragraph"
1872
  msgstr ""
1873
 
1874
  #: dashboard/publisher/groups-edit.php:218
1875
- #: dashboard/publisher/groups-edit.php:256
1876
  msgid "after the 3rd paragraph"
1877
  msgstr ""
1878
 
1879
  #: dashboard/publisher/groups-edit.php:219
1880
- #: dashboard/publisher/groups-edit.php:257
1881
  msgid "after the 4th paragraph"
1882
  msgstr ""
1883
 
1884
  #: dashboard/publisher/groups-edit.php:220
1885
- #: dashboard/publisher/groups-edit.php:258
1886
  msgid "after the 5th paragraph"
1887
  msgstr ""
1888
 
1889
  #: dashboard/publisher/groups-edit.php:221
1890
- #: dashboard/publisher/groups-edit.php:259
1891
  msgid "after the 6th paragraph"
1892
  msgstr ""
1893
 
1894
  #: dashboard/publisher/groups-edit.php:222
1895
- #: dashboard/publisher/groups-edit.php:260
1896
  msgid "after the 7th paragraph"
1897
  msgstr ""
1898
 
1899
  #: dashboard/publisher/groups-edit.php:223
1900
- #: dashboard/publisher/groups-edit.php:261
1901
  msgid "after the 8th paragraph"
1902
  msgstr ""
1903
 
1904
- #: dashboard/publisher/groups-edit.php:229
1905
- msgid "Which categories?"
1906
- msgstr "Ποιες κατηγορίες;"
1907
-
1908
- #: dashboard/publisher/groups-edit.php:234
1909
- msgid "Click the categories posts you want the adverts to show in."
1910
- msgstr ""
1911
- "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
1912
- "εμφανίζονται"
1913
-
1914
  #: dashboard/publisher/groups-edit.php:239
1915
- msgid "In pages?"
1916
  msgstr ""
1917
 
1918
- #: dashboard/publisher/groups-edit.php:267
1919
- msgid "Which pages?"
1920
- msgstr "Ποιες σελίδες;"
1921
-
1922
- #: dashboard/publisher/groups-edit.php:272
1923
- msgid "Click the pages you want the adverts to show in."
1924
- msgstr "Κάντε κλικ στις σελίδες που θέλετε οι διαφημίσεις να εμφανίζονται"
1925
-
1926
- #: dashboard/publisher/groups-edit.php:300
1927
  msgid "Wrapper code"
1928
  msgstr "Κώδικας περιτύλιγμα"
1929
 
1930
- #: dashboard/publisher/groups-edit.php:301
1931
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1932
  msgstr ""
1933
 
1934
- #: dashboard/publisher/groups-edit.php:305
1935
  msgid "Before advert"
1936
  msgstr ""
1937
 
1938
- #: dashboard/publisher/groups-edit.php:309
 
 
 
 
 
1939
  msgid "Options:"
1940
  msgstr "Επιλογές:"
1941
 
1942
- #: dashboard/publisher/groups-edit.php:313
1943
  msgid "After advert"
1944
  msgstr ""
1945
 
1946
- #: dashboard/publisher/groups-edit.php:322
1947
  msgid "Select adverts"
1948
  msgstr ""
1949
 
1950
- #: dashboard/publisher/groups-edit.php:327
1951
  msgid "Choose adverts"
1952
  msgstr ""
1953
 
1954
- #: dashboard/publisher/groups-edit.php:333
1955
  msgid "Visible until"
1956
  msgstr "Ορατό μέχρι"
1957
 
1958
- #: dashboard/publisher/groups-edit.php:375
1959
  msgid "No adverts created!"
1960
  msgstr ""
1961
 
 
 
 
 
1962
  #: dashboard/publisher/groups-main.php:21
1963
  msgid "Delete Group"
1964
  msgstr "Διαγραφή ομάδας"
@@ -1976,7 +1780,8 @@ msgid "This action can not be undone!"
1976
  msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί!"
1977
 
1978
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1979
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
1980
  msgid "OK to continue, CANCEL to stop."
1981
  msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
1982
 
@@ -2042,9 +1847,9 @@ msgid ""
2042
  msgstr ""
2043
 
2044
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2045
- #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2046
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2047
- #: dashboard/settings/statistics.php:73
2048
  msgid "Update Options"
2049
  msgstr "Επιλογές Ανανέωσης"
2050
 
@@ -2361,7 +2166,8 @@ msgstr ""
2361
  msgid "Are you sure you want to continue?"
2362
  msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
2363
 
2364
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
2365
  msgid "This might take a while and may slow down your site during this action!"
2366
  msgstr ""
2367
 
@@ -2370,44 +2176,42 @@ msgid "Delete stats older than 356 days (Optional)."
2370
  msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
2371
 
2372
  #: dashboard/settings/maintenance.php:32
2373
- msgid ""
2374
- "AdRotate creates empty records when you start making ads, groups or "
2375
- "schedules. In rare occasions these records are faulty."
2376
  msgstr ""
2377
 
2378
- #: dashboard/settings/maintenance.php:32
2379
  msgid ""
2380
- "If you made an ad, group or schedule that does not save when you make it use "
2381
- "this button to delete those empty records."
2382
  msgstr ""
2383
 
2384
- #: dashboard/settings/maintenance.php:32
2385
  msgid ""
2386
- "Additionally you can clean up old schedules and/or statistics. This will "
2387
- "improve the speed of your site."
2388
  msgstr ""
2389
 
2390
- #: dashboard/settings/maintenance.php:36
2391
  #, fuzzy
2392
  msgid "Re-evaluate Ads"
2393
  msgstr "Διαφημίσεις"
2394
 
2395
- #: dashboard/settings/maintenance.php:38
2396
  msgid "Re-evaluate all ads"
2397
  msgstr ""
2398
 
2399
- #: dashboard/settings/maintenance.php:38
2400
  #, fuzzy
2401
  msgid "You are about to check all ads for errors."
2402
  msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
2403
 
2404
- #: dashboard/settings/maintenance.php:39
2405
  msgid ""
2406
  "This will apply all evaluation rules to all ads to see if any error slipped "
2407
  "in. Normally you should not need this feature."
2408
  msgstr ""
2409
 
2410
- #: dashboard/settings/maintenance.php:43
2411
  msgid ""
2412
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2413
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2420,11 +2224,11 @@ msgid ""
2420
  "is not a valid point in any case."
2421
  msgstr ""
2422
 
2423
- #: dashboard/settings/maintenance.php:45
2424
  msgid "Troubleshooting"
2425
  msgstr "Αντιμετώπιση προβλημάτων"
2426
 
2427
- #: dashboard/settings/maintenance.php:46
2428
  msgid ""
2429
  "The below options are not meant for normal use and are only there for "
2430
  "developers to review saved settings or how ads are selected. These can be "
@@ -2432,117 +2236,131 @@ msgid ""
2432
  "SHOULD BE LEFT UNCHECKED!!"
2433
  msgstr ""
2434
 
2435
- #: dashboard/settings/maintenance.php:49
2436
  msgid "Developer Debug"
2437
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
2438
 
2439
- #: dashboard/settings/maintenance.php:51
2440
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2441
  msgstr ""
2442
 
2443
- #: dashboard/settings/maintenance.php:52
2444
  msgid "View advert specs and (some) stats in the dashboard."
2445
  msgstr ""
2446
 
2447
- #: dashboard/settings/maintenance.php:53
2448
  #, fuzzy
2449
  msgid ""
2450
  "Disable timers for clicks and impressions and enable a alert window for "
2451
  "clicktracking."
2452
  msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
2453
 
2454
- #: dashboard/settings/maintenance.php:54
2455
  msgid "Temporarily disable encryption on the redirect url."
2456
  msgstr ""
2457
  "Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
2458
 
2459
- #: dashboard/settings/maintenance.php:59
2460
  msgid "Status and Versions"
2461
  msgstr ""
2462
 
2463
- #: dashboard/settings/maintenance.php:62
2464
  msgid "Current status of adverts"
2465
  msgstr "Τρέχουσα κατάσταση διαφημίσεων"
2466
 
2467
- #: dashboard/settings/maintenance.php:63
2468
  msgid "Normal"
2469
  msgstr "Φυσιολογική"
2470
 
2471
- #: dashboard/settings/maintenance.php:63
2472
  msgid "Error"
2473
  msgstr "Σφάλμα"
2474
 
2475
- #: dashboard/settings/maintenance.php:63
2476
  msgid "Expired"
2477
  msgstr "Έληξε"
2478
 
2479
- #: dashboard/settings/maintenance.php:63
2480
  msgid "Expires Soon"
2481
  msgstr "Λήγει Σύντομα"
2482
 
2483
- #: dashboard/settings/maintenance.php:63
2484
  msgid "Unknown"
2485
  msgstr ""
2486
 
2487
- #: dashboard/settings/maintenance.php:66
2488
  msgid "Banners/assets Folder"
2489
  msgstr ""
2490
 
2491
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2492
  msgid "Exists and appears writable"
2493
  msgstr ""
2494
 
2495
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2496
  msgid "Not writable or does not exist"
2497
  msgstr ""
2498
 
2499
- #: dashboard/settings/maintenance.php:70
2500
  msgid "Reports Folder"
2501
  msgstr ""
2502
 
2503
- #: dashboard/settings/maintenance.php:76
2504
  msgid "Advert evaluation"
2505
  msgstr ""
2506
 
2507
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2508
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2509
  msgstr ""
2510
 
2511
- #: dashboard/settings/maintenance.php:78
2512
- msgid "Trackerdata cleanup"
2513
  msgstr ""
2514
 
2515
- #: dashboard/settings/maintenance.php:83
2516
  msgid "Internal Versions"
2517
  msgstr ""
2518
 
2519
- #: dashboard/settings/maintenance.php:84
2520
  msgid ""
2521
  "Unless you experience database issues or a warning shows below, these "
2522
  "numbers are not really relevant for troubleshooting. Support may ask for "
2523
  "them to verify your database status."
2524
  msgstr ""
2525
 
2526
- #: dashboard/settings/maintenance.php:87
2527
  msgid "AdRotate version"
2528
  msgstr ""
2529
 
2530
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2531
  msgid "Current:"
2532
  msgstr ""
2533
 
2534
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2535
  msgid "Should be:"
2536
  msgstr ""
2537
 
2538
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2539
  msgid "Previous:"
2540
  msgstr ""
2541
 
2542
- #: dashboard/settings/maintenance.php:89
2543
  msgid "Database version"
2544
  msgstr ""
2545
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2546
  #: dashboard/settings/misc.php:16
2547
  msgid "Miscellaneous"
2548
  msgstr "Διάφορα"
@@ -2971,6 +2789,119 @@ msgstr ""
2971
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
2972
  "ώρα)."
2973
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2974
  #, fuzzy
2975
  #~ msgid "Enable responsive support for this advert."
2976
  #~ msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-22 22:11+0800\n"
6
+ "PO-Revision-Date: 2017-01-22 22:11+0800\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.11\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: adrotate-functions.php:721
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
+ #: adrotate-functions.php:724
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
+ #: adrotate-functions.php:773
30
  msgid "Ad saved"
31
  msgstr ""
32
 
33
+ #: adrotate-functions.php:777
34
  msgid "Group saved"
35
  msgstr ""
36
 
37
+ #: adrotate-functions.php:781
38
  msgid "Ad(s) deleted"
39
  msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
40
 
41
+ #: adrotate-functions.php:785
42
  msgid "Group deleted"
43
  msgstr "Η Ομάδα διαγράφηκε"
44
 
45
+ #: adrotate-functions.php:789
46
  msgid "Ad(s) statistics reset"
47
  msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
48
 
49
+ #: adrotate-functions.php:793
50
  msgid "Ad(s) renewed"
51
  msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
52
 
53
+ #: adrotate-functions.php:797
54
  msgid "Ad(s) deactivated"
55
  msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
56
 
57
+ #: adrotate-functions.php:801
58
  msgid "Ad(s) activated"
59
  msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
60
 
61
+ #: adrotate-functions.php:805
62
  msgid "Group including it's Ads deleted"
63
  msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
64
 
65
+ #: adrotate-functions.php:809
66
  #, fuzzy
67
  msgid "Export created"
68
  msgstr "Επιλογές εξαγωγής"
69
 
70
+ #: adrotate-functions.php:814
71
  msgid "Settings saved"
72
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
73
 
74
+ #: adrotate-functions.php:818
75
  msgid "Database optimized"
76
  msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
77
 
78
+ #: adrotate-functions.php:822
79
  msgid "Database repaired"
80
  msgstr "Η βάση δεδομένων επιδιορθώθηκε"
81
 
82
+ #: adrotate-functions.php:826
83
  msgid "Ads evaluated and statuses have been corrected where required"
84
  msgstr ""
85
  "Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
86
  "χρειάστηκε"
87
 
88
+ #: adrotate-functions.php:830
89
  msgid "Empty database records removed"
90
  msgstr "Τα κενά πεδία της βάσης δεδομένων απομακρύνθηκαν"
91
 
92
+ #: adrotate-functions.php:835
93
  msgid "Action prohibited"
94
  msgstr "Η ενέργεια απαγορεύεται"
95
 
96
+ #: adrotate-functions.php:839
97
  msgid ""
98
  "The ad was saved but has an issue which might prevent it from working "
99
  "properly. Review the colored ad."
100
  msgstr ""
101
 
102
+ #: adrotate-functions.php:843
103
  msgid "No data found in selected time period"
104
  msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
105
 
106
+ #: adrotate-functions.php:847
107
  msgid "Database can only be optimized or cleaned once every hour"
108
  msgstr ""
109
  "Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
110
  "ώρα"
111
 
112
+ #: adrotate-functions.php:851
113
  msgid "Form can not be (partially) empty!"
114
  msgstr ""
115
 
116
+ #: adrotate-functions.php:855
117
  msgid "No ads found."
118
  msgstr ""
119
 
120
+ #: adrotate-functions.php:859
121
  msgid "Unexpected error"
122
  msgstr ""
123
 
124
+ #: adrotate-manage-publisher.php:677
125
  msgid "AdRotate Advertiser"
126
  msgstr ""
127
 
205
  msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
206
 
207
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
 
208
  msgid "Check adverts"
209
  msgstr ""
210
 
211
+ #: adrotate-output.php:664
212
  msgid ""
213
  "You have enable caching support but W3 Total Cache is not active on your "
214
  "site!"
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:667
218
  msgid ""
219
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
220
  "not set."
221
  msgstr ""
222
 
223
+ #: adrotate-output.php:672
224
  msgid "Your AdRotate Banner folder is not writable or does not exist."
225
  msgstr ""
226
 
227
+ #: adrotate-output.php:712 dashboard/adrotatepro.php:86
228
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:88
229
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:98
230
+ #: dashboard/adrotatepro.php:99 dashboard/adrotatepro.php:100
231
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:64 dashboard/info.php:65
232
+ #: dashboard/info.php:66 dashboard/info.php:67 dashboard/info.php:71
233
+ #: dashboard/info.php:72 dashboard/info.php:73 dashboard/info.php:74
234
  #: dashboard/settings/geotargeting.php:35
235
  #, fuzzy
236
  msgid "Buy now"
237
  msgstr "Λάβετε μέτρα τώρα"
238
 
239
+ #: adrotate-output.php:713
240
  msgid ""
241
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
242
  "to the <strong>PRO</strong> version"
243
  msgstr ""
244
 
245
+ #: adrotate-output.php:713
246
  #, php-format
247
  msgid ""
248
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
249
  msgstr ""
250
 
251
+ #: adrotate-output.php:713
252
  msgid "Thank you for your purchase!"
253
  msgstr ""
254
 
255
+ #: adrotate-output.php:774
256
  msgid ""
257
+ "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
258
+ "menu. If you need help getting started take a look at the"
259
  msgstr ""
260
 
261
+ #: adrotate-output.php:774
262
  msgid "manuals"
263
  msgstr "εγχειρίδια"
264
 
265
+ #: adrotate-output.php:774 adrotate-output.php:844
266
  msgid "and"
267
  msgstr ""
268
 
269
+ #: adrotate-output.php:774
270
  msgid "forums"
271
  msgstr ""
272
 
273
+ #: adrotate-output.php:807
274
  #, fuzzy
275
  msgid "Useful Links"
276
  msgstr "Χρήσιμοι σύνδεσμοι"
277
 
278
+ #: adrotate-output.php:808
279
  msgid "Useful links to learn more about AdRotate"
280
  msgstr ""
281
 
282
+ #: adrotate-output.php:810
283
  msgid "AdRotate website"
284
  msgstr ""
285
 
286
+ #: adrotate-output.php:811
287
  #, fuzzy
288
  msgid "Getting Started With AdRotate"
289
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
290
 
291
+ #: adrotate-output.php:812
292
  #, fuzzy
293
  msgid "AdRotate manuals"
294
  msgstr "Πληροφορίες του AdRotate"
295
 
296
+ #: adrotate-output.php:813
297
  #, fuzzy
298
  msgid "AdRotate Support Forum"
299
  msgstr "Κατάστημα του AdRotate"
300
 
301
+ #: adrotate-output.php:836 dashboard/info.php:46
302
+ msgid "Support AdRotate"
303
+ msgstr "Υποστηρίξτε το AdRotate"
 
304
 
305
+ #: adrotate-output.php:837
306
+ msgid "Check out my website"
307
  msgstr ""
308
 
309
+ #: adrotate-output.php:844
310
  msgid ""
311
+ "Many users only think to review AdRotate when something goes wrong while "
312
+ "thousands of people happily use AdRotate."
313
  msgstr ""
314
 
315
+ #: adrotate-output.php:844
316
+ msgid "If you find AdRotate useful please leave your"
317
  msgstr ""
318
 
319
+ #: adrotate-output.php:844
320
  msgid "rating"
321
  msgstr ""
322
 
323
+ #: adrotate-output.php:844
324
  #, fuzzy
325
  msgid "review"
326
  msgstr "Αξιολογήστε και σχολιάστε"
327
 
328
+ #: adrotate-output.php:844
329
  msgid "on WordPress.org to help AdRotate grow in a positive way"
330
  msgstr ""
331
 
332
+ #: adrotate-output.php:870 dashboard/settings/notifications.php:50
333
  #: dashboard/settings/notifications.php:80
334
  msgid "Available in AdRotate Pro"
335
  msgstr "Διαθέσιμο στο AdRotate Pro"
336
 
337
+ #: adrotate-output.php:870
338
  #, fuzzy
339
  msgid "More information..."
340
  msgstr "Περισσότερες πληροφορίες"
341
 
342
+ #: adrotate-output.php:871
343
  msgid "This feature is available in AdRotate Pro"
344
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
345
 
346
+ #: adrotate-output.php:871
347
  #, fuzzy
348
  msgid "Learn more"
349
  msgstr "Μάθετε περισσότερα σχετικά"
350
 
351
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:217
352
+ #: dashboard/publisher/adverts-edit.php:238
353
  msgid "January"
354
  msgstr "Ιανουάριος"
355
 
356
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:218
357
+ #: dashboard/publisher/adverts-edit.php:239
358
  msgid "February"
359
  msgstr "Φεβρουάριος"
360
 
361
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:219
362
+ #: dashboard/publisher/adverts-edit.php:240
363
  msgid "March"
364
  msgstr "Μάρτιος"
365
 
366
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:220
367
+ #: dashboard/publisher/adverts-edit.php:241
368
  msgid "April"
369
  msgstr "Απρίλιος"
370
 
371
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:221
372
+ #: dashboard/publisher/adverts-edit.php:242
373
  msgid "May"
374
  msgstr "Μάιος"
375
 
376
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:222
377
+ #: dashboard/publisher/adverts-edit.php:243
378
  msgid "June"
379
  msgstr "Ιούνιος"
380
 
381
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:223
382
+ #: dashboard/publisher/adverts-edit.php:244
383
  msgid "July"
384
  msgstr "Ιούλιος"
385
 
386
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:224
387
+ #: dashboard/publisher/adverts-edit.php:245
388
  msgid "August"
389
  msgstr "Αύγουστος"
390
 
391
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:225
392
+ #: dashboard/publisher/adverts-edit.php:246
393
  msgid "September"
394
  msgstr "Σεπτέμβριος"
395
 
396
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:226
397
+ #: dashboard/publisher/adverts-edit.php:247
398
  msgid "October"
399
  msgstr "Οκτώβριος"
400
 
401
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:227
402
+ #: dashboard/publisher/adverts-edit.php:248
403
  msgid "November"
404
  msgstr "Νοέμβριος"
405
 
406
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:228
407
+ #: dashboard/publisher/adverts-edit.php:249
408
  msgid "December"
409
  msgstr "Δεκέμβριος"
410
 
411
+ #: adrotate-statistics.php:152
412
  msgid "Previous"
413
  msgstr "Προηγούμενο"
414
 
415
+ #: adrotate-statistics.php:154
416
  msgid "This month"
417
  msgstr "Αυτό το μήνα"
418
 
419
+ #: adrotate-statistics.php:155
420
  msgid "Next"
421
  msgstr "Επόμενο"
422
 
423
+ #: adrotate-statistics.php:229
424
  msgid "No data to show!"
425
  msgstr "Δεν υπάρχουν δεδομένα."
426
 
466
  msgid "Fill in the ID of the type you want to display!"
467
  msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
468
 
469
+ #: adrotate.php:101
470
  msgid "General Info"
471
  msgstr "Γενικές Πληροφορίες"
472
 
473
+ #: adrotate.php:102
474
  msgid "AdRotate Pro"
475
  msgstr "AdRotate Pro"
476
 
477
+ #: adrotate.php:103 dashboard/info.php:37
478
+ #: dashboard/publisher/adverts-edit.php:455
479
+ #: dashboard/publisher/groups-main.php:34
480
+ msgid "Adverts"
481
+ msgstr "Διαφημίσεις"
 
 
 
 
 
 
 
482
 
483
+ #: adrotate.php:104 dashboard/info.php:41
484
+ msgid "Groups"
485
+ msgstr "Ομάδες"
 
486
 
487
+ #: adrotate.php:105
488
  msgid "Settings"
489
  msgstr "Ρυθμίσεις"
490
 
491
+ #: adrotate.php:123
492
  msgid "AdRotate Info"
493
  msgstr "Πληροφορίες του AdRotate"
494
 
495
+ #: adrotate.php:141
496
  #, fuzzy
497
  msgid "AdRotate Professional"
498
  msgstr "AdRotate Pro"
499
 
500
+ #: adrotate.php:181
501
  msgid "Advert Management"
502
  msgstr ""
503
 
504
+ #: adrotate.php:239 adrotate.php:306
505
  msgid "Manage"
506
  msgstr "Διαχείριση"
507
 
508
+ #: adrotate.php:240 adrotate.php:307
509
  msgid "Add New"
510
  msgstr "Προσθήκη Νέας"
511
 
512
+ #: adrotate.php:300
513
  msgid "Group Management"
514
  msgstr "Διαχείριση Ομάδας"
515
 
516
+ #: adrotate.php:309
517
  msgid "Report"
518
  msgstr "Αναφορά"
519
 
520
+ #: adrotate.php:354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
521
  msgid "AdRotate Settings"
522
  msgstr "Ρυθμίσεις AdRotate"
523
 
542
  msgid ""
543
  "Target mobile users with ease and show the right adverts to smartphones, "
544
  "tablets and computers. Mix and match as you please and offer adverts that "
545
+ "suit the device or mobile operating system. Create as many mobile adverts as "
546
+ "you want without effort and with a few easy to use options they show up "
547
+ "where you want them to!"
548
  msgstr ""
549
 
550
  #: dashboard/adrotatepro.php:34
571
  "forum. Get a solution (usually) within one business day."
572
  msgstr ""
573
 
574
+ #: dashboard/adrotatepro.php:48 dashboard/info.php:101
575
  msgid "AdRotate is brought to you by"
576
  msgstr "Το AdRotate έρχεται από την "
577
 
578
+ #: dashboard/adrotatepro.php:61
579
  msgid "Schedule all campaigns with ease"
580
  msgstr ""
581
 
582
+ #: dashboard/adrotatepro.php:64
583
  msgid ""
584
  "Schedule your adverts and set up advertising campaigns based on dates you or "
585
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
586
+ "specific days in the week. You name it, AdRotate schedules it. This makes "
587
+ "planning your revenue stream very flexible. You can set one or many "
588
+ "schedules for adverts."
589
  msgstr ""
590
 
591
+ #: dashboard/adrotatepro.php:68
592
  msgid "Avoid adblockers"
593
  msgstr ""
594
 
595
+ #: dashboard/adrotatepro.php:71
596
  msgid ""
597
+ "Try and avoid adblockers so your adverts get the exposure you want them to "
598
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
599
  "adverts are less likely to be removed. Of-course make sure you create your "
600
  "adverts smartly so these features reach their full potential!"
601
  msgstr ""
602
 
603
+ #: dashboard/adrotatepro.php:75
604
  msgid "Stay up-to-date with notifications"
605
  msgstr ""
606
 
607
+ #: dashboard/adrotatepro.php:78
608
  msgid ""
609
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
610
  "adverts expire or need your attention. Additionally, send push notifications "
612
  "or when advertisers create new adverts. Never miss an expiration date again."
613
  msgstr ""
614
 
615
+ #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
616
+ #: dashboard/info.php:60
617
  #, fuzzy
618
  msgid "Buy AdRotate Professional"
619
  msgstr "AdRotate Pro"
620
 
621
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:64
622
  msgid "Single License"
623
  msgstr ""
624
 
625
+ #: dashboard/adrotatepro.php:86
626
  msgid "For one WordPress installation."
627
  msgstr ""
628
 
629
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
630
+ #: dashboard/info.php:65 dashboard/info.php:72
631
  msgid "Duo License"
632
  msgstr ""
633
 
634
+ #: dashboard/adrotatepro.php:87
635
  msgid "For two WordPress installations."
636
  msgstr ""
637
 
638
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
639
+ #: dashboard/info.php:66 dashboard/info.php:73
640
  msgid "Multi License"
641
  msgstr ""
642
 
643
+ #: dashboard/adrotatepro.php:88
644
  msgid " For up to five WordPress installations."
645
  msgstr ""
646
 
647
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
648
+ #: dashboard/info.php:67 dashboard/info.php:74
649
  #, fuzzy
650
  msgid "Developer License"
651
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
652
 
653
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:67
654
  msgid "Unlimited WordPress installations and/or networks."
655
  msgstr ""
656
 
657
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
658
+ #: dashboard/info.php:68 dashboard/info.php:76
659
  msgid "Compare licenses"
660
  msgstr ""
661
 
662
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
663
  msgid "Not sure which license is for you? Compare them..."
664
  msgstr ""
665
 
666
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
667
  msgid "All Licenses"
668
  msgstr ""
669
 
670
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
671
  msgid "Lifetime License"
672
  msgstr ""
673
 
674
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
675
  msgid "Single installation."
676
  msgstr ""
677
 
678
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:72
679
  msgid "Up to 2 installations."
680
  msgstr ""
681
 
682
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:73
683
  msgid "Up to 10 installations."
684
  msgstr ""
685
 
686
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:74
687
  msgid "Up to 25 installations or multisite networks."
688
  msgstr ""
689
 
690
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:75
691
  msgid ""
692
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
693
  msgstr ""
694
 
695
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
696
  msgid "Not sure which license is for you?"
697
  msgstr ""
698
 
699
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
700
  msgid "Compare Licenses"
701
  msgstr ""
702
 
712
  msgid "Adverts that need you"
713
  msgstr "Διαφημίσεις που χρειάζονται την προσοχή σας"
714
 
 
 
 
 
 
715
  #: dashboard/info.php:38
716
  msgid "(Almost) Expired"
717
  msgstr "(Σχεδόν) Έληξαν"
718
 
 
 
 
 
719
  #: dashboard/info.php:42
720
  msgid "Have errors"
721
  msgstr "Έχουν σφάλματα"
722
 
723
+ #: dashboard/info.php:47
 
 
 
 
724
  msgid ""
725
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
726
  "for updates about me and my plugins. Thank you!"
727
  msgstr ""
728
 
729
+ #: dashboard/info.php:51 dashboard/publisher/adverts-edit.php:124
730
+ msgid "Get paid as a publisher:"
731
+ msgstr ""
732
+
733
+ #: dashboard/info.php:64
734
+ msgid "One WordPress installation."
735
+ msgstr ""
736
+
737
+ #: dashboard/info.php:65
738
+ msgid "Two WordPress installations."
739
+ msgstr ""
740
+
741
+ #: dashboard/info.php:66
742
+ msgid "Up to five WordPress installations."
743
+ msgstr ""
744
+
745
+ #: dashboard/info.php:87
746
  msgid "AdRotate News"
747
  msgstr ""
748
 
749
+ #: dashboard/info.php:105
750
  msgid ""
751
  "I am a digital nomad in the Philippines. Click on my name to find out more "
752
  "about me and what I am doing. Thanks for your support and for using my "
757
  msgid "Disabled Adverts"
758
  msgstr ""
759
 
760
+ #: dashboard/publisher/adverts-disabled.php:20
761
+ #: dashboard/publisher/adverts-error.php:19
762
+ #: dashboard/publisher/adverts-main.php:20
763
+ #: dashboard/publisher/groups-main.php:20
764
+ msgid "Bulk Actions"
765
+ msgstr "Μαζικές Ενέργειες"
766
+
767
  #: dashboard/publisher/adverts-disabled.php:21
768
+ #: dashboard/publisher/adverts-edit.php:173
769
  msgid "Activate"
770
  msgstr "Ενεργοποίηση"
771
 
772
+ #: dashboard/publisher/adverts-disabled.php:22
773
+ #: dashboard/publisher/adverts-error.php:21
774
+ #: dashboard/publisher/adverts-main.php:22
775
+ msgid "Delete"
776
+ msgstr "Διαγραφή"
777
+
778
  #: dashboard/publisher/adverts-disabled.php:23
779
  #: dashboard/publisher/adverts-error.php:22
780
  #: dashboard/publisher/adverts-main.php:23
781
  msgid "Reset stats"
782
  msgstr "Επαναφορά Στατιστικών"
783
 
784
+ #: dashboard/publisher/adverts-disabled.php:25
785
+ #: dashboard/publisher/adverts-error.php:29
786
+ #: dashboard/publisher/adverts-main.php:30
787
+ #: dashboard/publisher/groups-main.php:24
788
+ msgid "Go"
789
+ msgstr "Go"
790
+
791
+ #: dashboard/publisher/adverts-disabled.php:35
792
+ #: dashboard/publisher/adverts-error.php:39
793
+ #: dashboard/publisher/adverts-main.php:39
794
+ #: dashboard/publisher/groups-main.php:32
795
+ msgid "ID"
796
+ msgstr "Κωδ."
797
+
798
  #: dashboard/publisher/adverts-disabled.php:36
799
  #: dashboard/publisher/adverts-error.php:40
800
  #: dashboard/publisher/adverts-main.php:40
807
  "πρωί."
808
 
809
  #: dashboard/publisher/adverts-disabled.php:37
810
+ #: dashboard/publisher/adverts-edit.php:109
811
  #: dashboard/publisher/adverts-error.php:41
812
  #: dashboard/publisher/adverts-main.php:41
813
  msgid "Title"
815
 
816
  #: dashboard/publisher/adverts-disabled.php:38
817
  #: dashboard/publisher/adverts-main.php:44
818
+ #: dashboard/publisher/groups-edit.php:331
819
  #: dashboard/publisher/groups-main.php:36
820
  msgid "Shown"
821
  msgstr "Εμφανίζονται"
824
  #: dashboard/publisher/adverts-main.php:46
825
  #: dashboard/publisher/adverts-report.php:36
826
  #: dashboard/publisher/adverts-report.php:57
827
+ #: dashboard/publisher/groups-edit.php:332
828
  #: dashboard/publisher/groups-main.php:38
829
  #: dashboard/publisher/groups-report.php:37
830
  #: dashboard/publisher/groups-report.php:58
840
  msgid "CTR"
841
  msgstr "CTR"
842
 
843
+ #: dashboard/publisher/adverts-disabled.php:71
844
  #: dashboard/publisher/adverts-error.php:64
845
+ #: dashboard/publisher/adverts-main.php:82
846
  #: dashboard/publisher/groups-main.php:70
847
  msgid "Edit"
848
  msgstr "Επεξεργασία"
849
 
850
+ #: dashboard/publisher/adverts-disabled.php:71
851
  #: dashboard/publisher/adverts-error.php:64
852
+ #: dashboard/publisher/adverts-main.php:82
853
  #: dashboard/publisher/groups-main.php:70
854
  msgid "Stats"
855
  msgstr "Στατιστικά"
856
 
857
+ #: dashboard/publisher/adverts-disabled.php:71
858
  #: dashboard/publisher/adverts-error.php:64
859
+ #: dashboard/publisher/adverts-main.php:82
860
  #, fuzzy
861
  msgid "Groups:"
862
  msgstr "Ομάδες"
863
 
864
+ #: dashboard/publisher/adverts-edit.php:47
865
  msgid "The AdCode cannot be empty!"
866
  msgstr "Ο AdCode δεν μπορεί να είναι κενός!"
867
 
868
+ #: dashboard/publisher/adverts-edit.php:50
869
  msgid ""
870
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
871
  "use!"
872
  msgstr ""
873
 
874
+ #: dashboard/publisher/adverts-edit.php:53
875
  msgid ""
876
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
877
  "use!"
878
  msgstr ""
879
 
880
+ #: dashboard/publisher/adverts-edit.php:56
881
  msgid ""
882
  "There is a problem saving the image. Please reset your image and re-save the "
883
  "ad!"
884
  msgstr ""
885
 
886
+ #: dashboard/publisher/adverts-edit.php:59
887
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
888
  msgstr ""
889
 
890
+ #: dashboard/publisher/adverts-edit.php:64
891
  msgid ""
892
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
893
  "the ad!"
895
  "Το AdRotate δεν μπορεί να βρει κάποιο σφάλμα, αλλά η διαφήμιση είναι "
896
  "σημειωμένη σαν λανθασμένη. Προσπαθήστε να αποθηκεύσετε πάλι τη διαφήμιση!"
897
 
898
+ #: dashboard/publisher/adverts-edit.php:67
899
  msgid "This ad is expired and currently not shown on your website!"
900
  msgstr ""
901
  "Αυτή η διαφήμιση έχει λήξει και για την ώρα δεν εμφανίζεται στην ιστοσελίδα "
902
  "σας!"
903
 
904
+ #: dashboard/publisher/adverts-edit.php:70
905
  msgid "The ad will expire in less than 2 days!"
906
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 2 ημέρες!"
907
 
908
+ #: dashboard/publisher/adverts-edit.php:73
909
  msgid "This ad will expire in less than 7 days!"
910
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 7 ημέρες!"
911
 
912
+ #: dashboard/publisher/adverts-edit.php:76
913
  msgid "This ad has been disabled and does not rotate on your site!"
914
  msgstr ""
915
  "Η διαφήμιση έχει απενεργοποιηθεί και δεν προβάλεται στην ιστοσελίδα σας!"
916
 
917
+ #: dashboard/publisher/adverts-edit.php:101
918
  msgid "New Advert"
919
  msgstr "Νέα Διαφήμιση"
920
 
921
+ #: dashboard/publisher/adverts-edit.php:103
922
  msgid "Edit Advert"
923
  msgstr "Επεξεργασία Διαφήμισης"
924
 
925
+ #: dashboard/publisher/adverts-edit.php:115
926
  msgid "AdCode"
927
  msgstr ""
928
 
929
+ #: dashboard/publisher/adverts-edit.php:120
930
  msgid "Basic Examples:"
931
  msgstr "Βασικά παραδείγματα:"
932
 
933
+ #: dashboard/publisher/adverts-edit.php:131
934
  msgid "Useful tags"
935
  msgstr ""
936
 
937
+ #: dashboard/publisher/adverts-edit.php:133
938
  msgid "Insert the advert ID Number."
939
  msgstr ""
940
 
941
+ #: dashboard/publisher/adverts-edit.php:133
942
  msgid "Required when selecting a asset below."
943
  msgstr ""
944
 
945
+ #: dashboard/publisher/adverts-edit.php:133
946
  msgid "Insert the advert name."
947
  msgstr ""
948
 
949
+ #: dashboard/publisher/adverts-edit.php:133
950
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
951
  msgstr ""
952
 
953
+ #: dashboard/publisher/adverts-edit.php:133
954
  msgid "Add inside the <a> tag to open advert in a new window."
955
  msgstr ""
956
 
957
+ #: dashboard/publisher/adverts-edit.php:133
958
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
959
  msgstr ""
960
 
961
+ #: dashboard/publisher/adverts-edit.php:133
962
  msgid ""
963
  "Place the cursor in your AdCode where you want to add any of these tags and "
964
  "click to add it."
965
  msgstr ""
966
 
967
+ #: dashboard/publisher/adverts-edit.php:138
968
  msgid "Preview"
969
  msgstr "Προεπισκόπηση"
970
 
971
+ #: dashboard/publisher/adverts-edit.php:141
972
  msgid ""
973
  "Note: While this preview is an accurate one, it might look different then it "
974
  "does on the website."
976
  "Σημείωση: Όσο αυτή η προεπισκόπηση εκτελείται, μπορεί να φαίνεται "
977
  "διαφορετική από ό, τι στην ιστοσελίδα."
978
 
979
+ #: dashboard/publisher/adverts-edit.php:142
980
  msgid ""
981
  "This is because of CSS differences. Your themes CSS file is not active here!"
982
  msgstr ""
983
  "Αυτό είναι λόγω των διαφορών CSS. Το αρχείο θεμάτων CSS δεν είναι ενεργό εδώ!"
984
 
985
+ #: dashboard/publisher/adverts-edit.php:147
986
  msgid "Banner asset"
987
  msgstr ""
988
 
989
+ #: dashboard/publisher/adverts-edit.php:150
990
  msgid "WordPress media:"
991
  msgstr ""
992
 
993
+ #: dashboard/publisher/adverts-edit.php:150
994
  msgid "Select Banner"
995
  msgstr "Επιλέξτε Banner"
996
 
997
+ #: dashboard/publisher/adverts-edit.php:152
998
  msgid "- OR -"
999
  msgstr "- Ή -"
1000
 
1001
+ #: dashboard/publisher/adverts-edit.php:154
1002
  msgid "Banner folder:"
1003
  msgstr "Φάκελος Banner:"
1004
 
1005
+ #: dashboard/publisher/adverts-edit.php:155
1006
  msgid "No image selected"
1007
  msgstr "Καμία επιλεγμένη εικόνα"
1008
 
1009
+ #: dashboard/publisher/adverts-edit.php:159
1010
  msgid "Use %asset% in the adcode instead of the file path."
1011
  msgstr ""
1012
 
1013
+ #: dashboard/publisher/adverts-edit.php:159
1014
  msgid ""
1015
  "Use either the text field or the dropdown. If the textfield has content that "
1016
  "field has priority."
1018
  "Χρησιμοποιήστε είτε το πεδίο κειμένου είτε το μενού επιλογών. Αν το πεδίο "
1019
  "κειμένου έχει περιεχόμενο αυτό το πεδίο έχει προτεραιότητα."
1020
 
1021
+ #: dashboard/publisher/adverts-edit.php:164
1022
  #: dashboard/settings/statistics.php:17
1023
  msgid "Statistics"
1024
  msgstr "Στατιστικά"
1025
 
1026
+ #: dashboard/publisher/adverts-edit.php:166
1027
  msgid "Enable click and impression tracking for this advert."
1028
  msgstr ""
1029
 
1030
+ #: dashboard/publisher/adverts-edit.php:167
1031
  msgid ""
1032
  "Note: Clicktracking does not work for Javascript adverts such as those "
1033
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1034
  "always supported."
1035
  msgstr ""
1036
 
1037
+ #: dashboard/publisher/adverts-edit.php:177
1038
  msgid "Yes, this ad will be used"
1039
  msgstr "Ναι, θα χρησιμοποιηθεί αυτή η διαφήμιση"
1040
 
1041
+ #: dashboard/publisher/adverts-edit.php:178
1042
  msgid "No, do not show this ad anywhere"
1043
  msgstr "Όχι, να μην εμφανίσεις αυτή τη διαφήμιση πουθενά "
1044
 
1045
+ #: dashboard/publisher/adverts-edit.php:185
1046
+ #: dashboard/publisher/adverts-main.php:107
1047
  #: dashboard/publisher/groups-edit.php:71
1048
  #: dashboard/publisher/groups-main.php:89
1049
  #, fuzzy
1051
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1052
 
1053
  #: dashboard/publisher/adverts-edit.php:185
1054
+ #: dashboard/publisher/adverts-main.php:107
1055
+ #: dashboard/publisher/groups-edit.php:71
1056
+ #: dashboard/publisher/groups-main.php:89
1057
+ #, fuzzy
1058
+ msgid "More information"
1059
+ msgstr "Περισσότερες πληροφορίες"
1060
+
1061
+ #: dashboard/publisher/adverts-edit.php:188
1062
+ #: dashboard/publisher/adverts-edit.php:288
1063
+ #: dashboard/publisher/adverts-edit.php:444
1064
+ #: dashboard/publisher/adverts-edit.php:485
1065
  msgid "Save Advert"
1066
  msgstr "Αποθήκευση Διαφήμισης"
1067
 
1068
+ #: dashboard/publisher/adverts-edit.php:189
1069
+ #: dashboard/publisher/adverts-edit.php:289
1070
+ #: dashboard/publisher/adverts-edit.php:445
1071
+ #: dashboard/publisher/adverts-edit.php:486
1072
  #: dashboard/publisher/groups-edit.php:150
1073
+ #: dashboard/publisher/groups-edit.php:299
1074
+ #: dashboard/publisher/groups-edit.php:391
1075
  msgid "Cancel"
1076
  msgstr "Ακύρωση"
1077
 
1078
+ #: dashboard/publisher/adverts-edit.php:192
1079
+ #: dashboard/publisher/adverts-edit.php:427
1080
  #: dashboard/publisher/groups-edit.php:132
1081
+ #: dashboard/publisher/groups-edit.php:281
1082
  msgid "Usage"
1083
  msgstr "Χρήση"
1084
 
1085
+ #: dashboard/publisher/adverts-edit.php:196
1086
+ #: dashboard/publisher/adverts-edit.php:431
1087
  #: dashboard/publisher/groups-edit.php:136
1088
+ #: dashboard/publisher/groups-edit.php:205
1089
+ #: dashboard/publisher/groups-edit.php:245
1090
+ #: dashboard/publisher/groups-edit.php:285
1091
  msgid "Widget"
1092
  msgstr ""
1093
 
1094
+ #: dashboard/publisher/adverts-edit.php:197
1095
+ #: dashboard/publisher/adverts-edit.php:432
1096
  msgid ""
1097
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1098
  "and select the advert or the group the advert is in."
1099
  msgstr ""
1100
 
1101
+ #: dashboard/publisher/adverts-edit.php:200
1102
+ #: dashboard/publisher/adverts-edit.php:435
1103
  #: dashboard/publisher/groups-edit.php:140
1104
+ #: dashboard/publisher/groups-edit.php:289
1105
  msgid "In a post or page"
1106
  msgstr ""
1107
 
1108
+ #: dashboard/publisher/adverts-edit.php:202
1109
+ #: dashboard/publisher/adverts-edit.php:437
1110
  #: dashboard/publisher/groups-edit.php:142
1111
+ #: dashboard/publisher/groups-edit.php:291
1112
  msgid "Directly in a theme"
1113
  msgstr ""
1114
 
1115
+ #: dashboard/publisher/adverts-edit.php:208
1116
  msgid "Schedule your advert"
1117
  msgstr ""
1118
 
1119
+ #: dashboard/publisher/adverts-edit.php:212
1120
  msgid "Start date (day/month/year)"
1121
  msgstr ""
1122
 
1123
+ #: dashboard/publisher/adverts-edit.php:233
1124
  msgid "End date (day/month/year)"
1125
  msgstr ""
1126
 
1127
+ #: dashboard/publisher/adverts-edit.php:256
1128
  msgid "Start time (hh:mm)"
1129
  msgstr ""
1130
 
1131
+ #: dashboard/publisher/adverts-edit.php:263
1132
  msgid "End time (hh:mm)"
1133
  msgstr ""
1134
 
1135
+ #: dashboard/publisher/adverts-edit.php:273
1136
  msgid "Maximum Clicks"
1137
  msgstr ""
1138
 
1139
+ #: dashboard/publisher/adverts-edit.php:274
1140
+ #: dashboard/publisher/adverts-edit.php:276
1141
  msgid "Leave empty or 0 to skip this."
1142
  msgstr "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό."
1143
 
1144
+ #: dashboard/publisher/adverts-edit.php:275
1145
  msgid "Maximum Impressions"
1146
  msgstr ""
1147
 
1148
+ #: dashboard/publisher/adverts-edit.php:280
1149
  msgid "Important"
1150
  msgstr ""
1151
 
1152
+ #: dashboard/publisher/adverts-edit.php:281
1153
  msgid ""
1154
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1155
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1156
  "14:00 hours. 6AM is 6:00 hours."
1157
  msgstr ""
1158
 
1159
+ #: dashboard/publisher/adverts-edit.php:285
1160
  msgid ""
1161
  "Create multiple and more advanced schedules for each advert with AdRotate "
1162
  "Pro."
1163
  msgstr ""
1164
 
1165
+ #: dashboard/publisher/adverts-edit.php:285
1166
+ #: dashboard/publisher/adverts-edit.php:354
1167
+ #: dashboard/publisher/adverts-edit.php:425
1168
+ #: dashboard/publisher/groups-edit.php:191
1169
  #, fuzzy
1170
  msgid "Upgrade today"
1171
  msgstr "Σήμερα"
1172
 
1173
+ #: dashboard/publisher/adverts-edit.php:292
1174
  #: dashboard/publisher/groups-edit.php:153
1175
  msgid "Advanced"
1176
  msgstr "Προχωρημένος"
1177
 
1178
+ #: dashboard/publisher/adverts-edit.php:293
1179
+ #: dashboard/publisher/adverts-edit.php:357
 
 
 
1180
  msgid "Available in AdRotate Pro!"
1181
  msgstr ""
1182
 
1183
+ #: dashboard/publisher/adverts-edit.php:298
1184
  #: dashboard/publisher/adverts-main.php:42
1185
+ #: dashboard/publisher/groups-edit.php:334
1186
  msgid "Weight"
1187
  msgstr "Βαρύτητα"
1188
 
1189
+ #: dashboard/publisher/adverts-edit.php:301
1190
  msgid "Few impressions"
1191
  msgstr ""
1192
 
1193
+ #: dashboard/publisher/adverts-edit.php:306
1194
  msgid "Less than average"
1195
  msgstr "Λιγότερο από το μέσο όρο"
1196
 
1197
+ #: dashboard/publisher/adverts-edit.php:311
1198
  msgid "Normal impressions"
1199
  msgstr ""
1200
 
1201
+ #: dashboard/publisher/adverts-edit.php:316
1202
  msgid "More than average"
1203
  msgstr "Περισσότερο από μέσο"
1204
 
1205
+ #: dashboard/publisher/adverts-edit.php:321
1206
  msgid "Many impressions"
1207
  msgstr ""
1208
 
1209
+ #: dashboard/publisher/adverts-edit.php:326
1210
  msgid "Mobile"
1211
  msgstr ""
1212
 
1213
+ #: dashboard/publisher/adverts-edit.php:328
1214
  msgid "Computers"
1215
  msgstr ""
1216
 
1217
+ #: dashboard/publisher/adverts-edit.php:331
1218
  msgid "Smartphones"
1219
  msgstr ""
1220
 
1221
+ #: dashboard/publisher/adverts-edit.php:334
1222
  msgid "Tablets"
1223
  msgstr ""
1224
 
1225
+ #: dashboard/publisher/adverts-edit.php:337
1226
  msgid ""
1227
  "Also enable mobile support in the group this advert goes in or these are "
1228
  "ignored."
1229
  msgstr ""
1230
 
1231
+ #: dashboard/publisher/adverts-edit.php:337
1232
+ msgid ""
1233
+ "Operating system detection only detects iOS/Android/Others or neither. Only "
1234
+ "works if Smartphones and/or Tablets is enabled."
1235
  msgstr ""
1236
 
1237
+ #: dashboard/publisher/adverts-edit.php:341
1238
+ msgid "Mobile OS"
1239
+ msgstr ""
 
1240
 
1241
+ #: dashboard/publisher/adverts-edit.php:343
1242
+ msgid "iOS"
1243
  msgstr ""
 
 
1244
 
1245
+ #: dashboard/publisher/adverts-edit.php:346
1246
+ msgid "Android"
 
 
1247
  msgstr ""
1248
 
1249
+ #: dashboard/publisher/adverts-edit.php:349
1250
+ msgid "Others"
1251
  msgstr ""
1252
 
1253
+ #: dashboard/publisher/adverts-edit.php:354
1254
  msgid ""
1255
+ "With AdRotate Pro you can easily select which devices and mobile operating "
1256
+ "systems the advert should show on!"
1257
  msgstr ""
1258
 
1259
+ #: dashboard/publisher/adverts-edit.php:356
1260
+ #: dashboard/publisher/groups-edit.php:180
1261
+ #: dashboard/settings/advertisers.php:38
1262
+ msgid "Geo Targeting"
1263
+ msgstr "Γεωγραφική Στόχευση"
1264
 
1265
+ #: dashboard/publisher/adverts-edit.php:357
1266
  msgid ""
1267
+ "Assign the advert to a group and enable that group to use Geo Targeting."
 
1268
  msgstr ""
1269
 
1270
+ #: dashboard/publisher/adverts-edit.php:415
1271
+ msgid "A comma separated list of items:"
1272
+ msgstr ""
1273
+
1274
+ #: dashboard/publisher/adverts-edit.php:415
1275
  msgid ""
1276
  "AdRotate does not check the validity of names so make sure you spell them "
1277
  "correctly!"
1278
  msgstr ""
1279
 
1280
+ #: dashboard/publisher/adverts-edit.php:425
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1281
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1282
  msgstr ""
1283
 
1284
+ #: dashboard/publisher/adverts-edit.php:449
1285
  msgid "Select Groups"
1286
  msgstr "Επιλέξτε Ομάδες"
1287
 
1288
+ #: dashboard/publisher/adverts-edit.php:454
1289
  msgid "ID - Name"
1290
  msgstr "ID - Όνομα"
1291
 
1292
+ #: dashboard/publisher/adverts-edit.php:464
1293
  #: dashboard/publisher/groups-main.php:60
1294
  #: dashboard/settings/geotargeting.php:49
1295
  msgid "Default"
1296
  msgstr "Προεπιλογή"
1297
 
1298
+ #: dashboard/publisher/adverts-edit.php:465
1299
  #: dashboard/publisher/groups-main.php:61
1300
  msgid "Dynamic"
1301
  msgstr "Δυναμική"
1302
 
1303
+ #: dashboard/publisher/adverts-edit.php:465
1304
  #: dashboard/publisher/groups-main.php:61
1305
  #, fuzzy
1306
  msgid "second rotation"
1307
  msgstr "Γεωγραφική Τοποθεσία"
1308
 
1309
+ #: dashboard/publisher/adverts-edit.php:466
1310
  #: dashboard/publisher/groups-main.php:62
1311
  msgid "Block"
1312
  msgstr "Απαγόρευση"
1313
 
1314
+ #: dashboard/publisher/adverts-edit.php:466
1315
  #: dashboard/publisher/groups-main.php:62
1316
  #, fuzzy
1317
  msgid "grid"
1319
  "Κάντε ένα πλέγμα για τις διαφημίσεις σας. Συμπλήρωση 3 και 2 κάνει ένα "
1320
  "πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
1321
 
1322
+ #: dashboard/publisher/adverts-edit.php:467
1323
+ #: dashboard/publisher/groups-edit.php:199
1324
  #: dashboard/publisher/groups-main.php:63
1325
  msgid "Post Injection"
1326
  msgstr "Εμβολιασμός Δημοσίευσης"
1327
 
1328
+ #: dashboard/publisher/adverts-edit.php:468
1329
  msgid "Geolocation"
1330
  msgstr "Γεωγραφική τοποθεσία"
1331
 
1332
+ #: dashboard/publisher/adverts-edit.php:474
1333
  #: dashboard/publisher/groups-edit.php:57
1334
  #: dashboard/publisher/groups-main.php:70
1335
  msgid "Mode"
1370
  msgstr "Για 7 ημέρες"
1371
 
1372
  #: dashboard/publisher/adverts-error.php:71
1373
+ #: dashboard/publisher/groups-edit.php:384
1374
  msgid "Configuration errors."
1375
  msgstr "Σφάλματα Διαμόρφωσης."
1376
 
1377
+ #: dashboard/publisher/adverts-error.php:72
1378
+ #: dashboard/publisher/groups-edit.php:385
1379
+ msgid "Expires soon."
1380
+ msgstr "Λήγει σύντομα."
1381
+
1382
+ #: dashboard/publisher/adverts-error.php:73
1383
+ #: dashboard/publisher/groups-edit.php:386
1384
+ msgid "Has expired."
1385
+ msgstr "Έχει λήξει."
1386
+
1387
  #: dashboard/publisher/adverts-main.php:12
1388
  msgid "Active Adverts"
1389
  msgstr ""
1400
  msgid "Today"
1401
  msgstr "Σήμερα"
1402
 
1403
+ #: dashboard/publisher/adverts-main.php:102
1404
  msgid "No adverts created yet!"
1405
  msgstr ""
1406
 
1454
  msgid "Edit Group"
1455
  msgstr "Επεξεργασία Ομάδας"
1456
 
1457
+ #: dashboard/publisher/groups-edit.php:51
1458
+ #: dashboard/publisher/groups-main.php:33
1459
+ msgid "Name"
1460
+ msgstr "Όνομα"
1461
+
1462
  #: dashboard/publisher/groups-edit.php:60
1463
  msgid "Default - Show one ad at a time"
1464
  msgstr "Προεπιλογή - Εμφάνισε μία διαφήμιση την φορά"
1547
  "σελίδας. Προεπιλογή: 6."
1548
 
1549
  #: dashboard/publisher/groups-edit.php:137
1550
+ #: dashboard/publisher/groups-edit.php:286
1551
  msgid ""
1552
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1553
  "Adverts\" and enter ID"
1554
  msgstr ""
1555
 
1556
  #: dashboard/publisher/groups-edit.php:149
1557
+ #: dashboard/publisher/groups-edit.php:298
1558
+ #: dashboard/publisher/groups-edit.php:390
1559
  #, fuzzy
1560
  msgid "Save Group"
1561
  msgstr "Αποθήκευση"
1613
  "setting. Not every theme supports this feature."
1614
  msgstr ""
1615
 
 
 
 
 
 
1616
  #: dashboard/publisher/groups-edit.php:181
1617
  msgid "Enable Geo Targeting for this group."
1618
  msgstr ""
1635
  msgid "Do not forget to put at least one mobile advert in this group."
1636
  msgstr ""
1637
 
1638
+ #: dashboard/publisher/groups-edit.php:191
 
 
 
 
 
 
1639
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1640
  msgstr ""
1641
 
1642
+ #: dashboard/publisher/groups-edit.php:204
1643
+ #: dashboard/publisher/groups-edit.php:244
 
 
 
 
1644
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1645
  #, fuzzy
1646
  msgid "Disabled"
1647
  msgstr "Απενεργοποιημένες διαφημίσεις"
1648
 
1649
  #: dashboard/publisher/groups-edit.php:206
1650
+ #: dashboard/publisher/groups-edit.php:246
1651
  #, fuzzy
1652
  msgid "Before content"
1653
  msgstr "Πριν από το περιεχόμενο των δημοσιεύσεων"
1654
 
1655
  #: dashboard/publisher/groups-edit.php:207
1656
+ #: dashboard/publisher/groups-edit.php:247
1657
  #, fuzzy
1658
  msgid "After content"
1659
  msgstr "Πριν και μετά το περιεχόμενο"
1660
 
1661
  #: dashboard/publisher/groups-edit.php:208
1662
+ #: dashboard/publisher/groups-edit.php:248
1663
  #, fuzzy
1664
  msgid "Before and after content"
1665
  msgstr "Πριν και μετά το περιεχόμενο"
1666
 
1667
  #: dashboard/publisher/groups-edit.php:209
1668
+ #: dashboard/publisher/groups-edit.php:249
1669
  msgid "Inside the content..."
1670
  msgstr ""
1671
 
1672
  #: dashboard/publisher/groups-edit.php:215
1673
+ #: dashboard/publisher/groups-edit.php:255
1674
  msgid "after the middle paragraph"
1675
  msgstr ""
1676
 
1677
  #: dashboard/publisher/groups-edit.php:216
1678
+ #: dashboard/publisher/groups-edit.php:256
1679
  msgid "after the 1st paragraph"
1680
  msgstr ""
1681
 
1682
  #: dashboard/publisher/groups-edit.php:217
1683
+ #: dashboard/publisher/groups-edit.php:257
1684
  msgid "after the 2nd paragraph"
1685
  msgstr ""
1686
 
1687
  #: dashboard/publisher/groups-edit.php:218
1688
+ #: dashboard/publisher/groups-edit.php:258
1689
  msgid "after the 3rd paragraph"
1690
  msgstr ""
1691
 
1692
  #: dashboard/publisher/groups-edit.php:219
1693
+ #: dashboard/publisher/groups-edit.php:259
1694
  msgid "after the 4th paragraph"
1695
  msgstr ""
1696
 
1697
  #: dashboard/publisher/groups-edit.php:220
1698
+ #: dashboard/publisher/groups-edit.php:260
1699
  msgid "after the 5th paragraph"
1700
  msgstr ""
1701
 
1702
  #: dashboard/publisher/groups-edit.php:221
1703
+ #: dashboard/publisher/groups-edit.php:261
1704
  msgid "after the 6th paragraph"
1705
  msgstr ""
1706
 
1707
  #: dashboard/publisher/groups-edit.php:222
1708
+ #: dashboard/publisher/groups-edit.php:262
1709
  msgid "after the 7th paragraph"
1710
  msgstr ""
1711
 
1712
  #: dashboard/publisher/groups-edit.php:223
1713
+ #: dashboard/publisher/groups-edit.php:263
1714
  msgid "after the 8th paragraph"
1715
  msgstr ""
1716
 
 
 
 
 
 
 
 
 
 
 
1717
  #: dashboard/publisher/groups-edit.php:239
1718
+ msgid "Page Injection"
1719
  msgstr ""
1720
 
1721
+ #: dashboard/publisher/groups-edit.php:302
 
 
 
 
 
 
 
 
1722
  msgid "Wrapper code"
1723
  msgstr "Κώδικας περιτύλιγμα"
1724
 
1725
+ #: dashboard/publisher/groups-edit.php:303
1726
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1727
  msgstr ""
1728
 
1729
+ #: dashboard/publisher/groups-edit.php:307
1730
  msgid "Before advert"
1731
  msgstr ""
1732
 
1733
+ #: dashboard/publisher/groups-edit.php:310
1734
+ #: dashboard/publisher/groups-edit.php:318
1735
+ msgid "Example:"
1736
+ msgstr "Παράδειγμα:"
1737
+
1738
+ #: dashboard/publisher/groups-edit.php:311
1739
  msgid "Options:"
1740
  msgstr "Επιλογές:"
1741
 
1742
+ #: dashboard/publisher/groups-edit.php:315
1743
  msgid "After advert"
1744
  msgstr ""
1745
 
1746
+ #: dashboard/publisher/groups-edit.php:324
1747
  msgid "Select adverts"
1748
  msgstr ""
1749
 
1750
+ #: dashboard/publisher/groups-edit.php:329
1751
  msgid "Choose adverts"
1752
  msgstr ""
1753
 
1754
+ #: dashboard/publisher/groups-edit.php:335
1755
  msgid "Visible until"
1756
  msgstr "Ορατό μέχρι"
1757
 
1758
+ #: dashboard/publisher/groups-edit.php:377
1759
  msgid "No adverts created!"
1760
  msgstr ""
1761
 
1762
+ #: dashboard/publisher/groups-main.php:12
1763
+ msgid "Manage Groups"
1764
+ msgstr "Διαχείριση Ομάδων"
1765
+
1766
  #: dashboard/publisher/groups-main.php:21
1767
  msgid "Delete Group"
1768
  msgstr "Διαγραφή ομάδας"
1780
  msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί!"
1781
 
1782
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1783
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
1784
+ #: dashboard/settings/maintenance.php:96
1785
  msgid "OK to continue, CANCEL to stop."
1786
  msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
1787
 
1847
  msgstr ""
1848
 
1849
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1850
+ #: dashboard/settings/maintenance.php:103 dashboard/settings/misc.php:43
1851
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1852
+ #: dashboard/settings/statistics.php:79
1853
  msgid "Update Options"
1854
  msgstr "Επιλογές Ανανέωσης"
1855
 
2166
  msgid "Are you sure you want to continue?"
2167
  msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
2168
 
2169
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
2170
+ #: dashboard/settings/maintenance.php:96
2171
  msgid "This might take a while and may slow down your site during this action!"
2172
  msgstr ""
2173
 
2176
  msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
2177
 
2178
  #: dashboard/settings/maintenance.php:32
2179
+ msgid "Delete old tracker data. (Does nothing if you use a memcached plugin)"
 
 
2180
  msgstr ""
2181
 
2182
+ #: dashboard/settings/maintenance.php:33
2183
  msgid ""
2184
+ "For when you create an advert, group or schedule and it does not save or "
2185
+ "keep changes you make."
2186
  msgstr ""
2187
 
2188
+ #: dashboard/settings/maintenance.php:33
2189
  msgid ""
2190
+ "Additionally you can clean up old schedules, tracker data and/or statistics. "
2191
+ "This will improve the speed of your site."
2192
  msgstr ""
2193
 
2194
+ #: dashboard/settings/maintenance.php:37
2195
  #, fuzzy
2196
  msgid "Re-evaluate Ads"
2197
  msgstr "Διαφημίσεις"
2198
 
2199
+ #: dashboard/settings/maintenance.php:39
2200
  msgid "Re-evaluate all ads"
2201
  msgstr ""
2202
 
2203
+ #: dashboard/settings/maintenance.php:39
2204
  #, fuzzy
2205
  msgid "You are about to check all ads for errors."
2206
  msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
2207
 
2208
+ #: dashboard/settings/maintenance.php:40
2209
  msgid ""
2210
  "This will apply all evaluation rules to all ads to see if any error slipped "
2211
  "in. Normally you should not need this feature."
2212
  msgstr ""
2213
 
2214
+ #: dashboard/settings/maintenance.php:44
2215
  msgid ""
2216
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2217
  "database. They only apply to your ads/groups and stats. Not to other "
2224
  "is not a valid point in any case."
2225
  msgstr ""
2226
 
2227
+ #: dashboard/settings/maintenance.php:46
2228
  msgid "Troubleshooting"
2229
  msgstr "Αντιμετώπιση προβλημάτων"
2230
 
2231
+ #: dashboard/settings/maintenance.php:47
2232
  msgid ""
2233
  "The below options are not meant for normal use and are only there for "
2234
  "developers to review saved settings or how ads are selected. These can be "
2236
  "SHOULD BE LEFT UNCHECKED!!"
2237
  msgstr ""
2238
 
2239
+ #: dashboard/settings/maintenance.php:50
2240
  msgid "Developer Debug"
2241
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
2242
 
2243
+ #: dashboard/settings/maintenance.php:52
2244
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2245
  msgstr ""
2246
 
2247
+ #: dashboard/settings/maintenance.php:53
2248
  msgid "View advert specs and (some) stats in the dashboard."
2249
  msgstr ""
2250
 
2251
+ #: dashboard/settings/maintenance.php:54
2252
  #, fuzzy
2253
  msgid ""
2254
  "Disable timers for clicks and impressions and enable a alert window for "
2255
  "clicktracking."
2256
  msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
2257
 
2258
+ #: dashboard/settings/maintenance.php:55
2259
  msgid "Temporarily disable encryption on the redirect url."
2260
  msgstr ""
2261
  "Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
2262
 
2263
+ #: dashboard/settings/maintenance.php:60
2264
  msgid "Status and Versions"
2265
  msgstr ""
2266
 
2267
+ #: dashboard/settings/maintenance.php:63
2268
  msgid "Current status of adverts"
2269
  msgstr "Τρέχουσα κατάσταση διαφημίσεων"
2270
 
2271
+ #: dashboard/settings/maintenance.php:64
2272
  msgid "Normal"
2273
  msgstr "Φυσιολογική"
2274
 
2275
+ #: dashboard/settings/maintenance.php:64
2276
  msgid "Error"
2277
  msgstr "Σφάλμα"
2278
 
2279
+ #: dashboard/settings/maintenance.php:64
2280
  msgid "Expired"
2281
  msgstr "Έληξε"
2282
 
2283
+ #: dashboard/settings/maintenance.php:64
2284
  msgid "Expires Soon"
2285
  msgstr "Λήγει Σύντομα"
2286
 
2287
+ #: dashboard/settings/maintenance.php:64
2288
  msgid "Unknown"
2289
  msgstr ""
2290
 
2291
+ #: dashboard/settings/maintenance.php:67
2292
  msgid "Banners/assets Folder"
2293
  msgstr ""
2294
 
2295
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2296
  msgid "Exists and appears writable"
2297
  msgstr ""
2298
 
2299
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2300
  msgid "Not writable or does not exist"
2301
  msgstr ""
2302
 
2303
+ #: dashboard/settings/maintenance.php:71
2304
  msgid "Reports Folder"
2305
  msgstr ""
2306
 
2307
+ #: dashboard/settings/maintenance.php:77
2308
  msgid "Advert evaluation"
2309
  msgstr ""
2310
 
2311
+ #: dashboard/settings/maintenance.php:78 dashboard/settings/maintenance.php:80
2312
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2313
  msgstr ""
2314
 
2315
+ #: dashboard/settings/maintenance.php:79
2316
+ msgid "Clean Transients"
2317
  msgstr ""
2318
 
2319
+ #: dashboard/settings/maintenance.php:84
2320
  msgid "Internal Versions"
2321
  msgstr ""
2322
 
2323
+ #: dashboard/settings/maintenance.php:85
2324
  msgid ""
2325
  "Unless you experience database issues or a warning shows below, these "
2326
  "numbers are not really relevant for troubleshooting. Support may ask for "
2327
  "them to verify your database status."
2328
  msgstr ""
2329
 
2330
+ #: dashboard/settings/maintenance.php:88
2331
  msgid "AdRotate version"
2332
  msgstr ""
2333
 
2334
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2335
  msgid "Current:"
2336
  msgstr ""
2337
 
2338
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2339
  msgid "Should be:"
2340
  msgstr ""
2341
 
2342
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2343
  msgid "Previous:"
2344
  msgstr ""
2345
 
2346
+ #: dashboard/settings/maintenance.php:90
2347
  msgid "Database version"
2348
  msgstr ""
2349
 
2350
+ #: dashboard/settings/maintenance.php:96
2351
+ msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2352
+ msgstr ""
2353
+
2354
+ #: dashboard/settings/maintenance.php:96
2355
+ msgid "Make sure you have a database backup!"
2356
+ msgstr ""
2357
+
2358
+ #: dashboard/settings/maintenance.php:97
2359
+ msgid ""
2360
+ "Attempt to update the database and migrate settings where required or "
2361
+ "relevant. Normally you should not need or use this option."
2362
+ msgstr ""
2363
+
2364
  #: dashboard/settings/misc.php:16
2365
  msgid "Miscellaneous"
2366
  msgstr "Διάφορα"
2789
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
2790
  "ώρα)."
2791
 
2792
+ #: dashboard/settings/statistics.php:71
2793
+ msgid "Clean up temporary data"
2794
+ msgstr ""
2795
+
2796
+ #: dashboard/settings/statistics.php:73
2797
+ msgid ""
2798
+ "Periodically delete old tracker data. If you are using a memcached plugin "
2799
+ "you should disable this option!"
2800
+ msgstr ""
2801
+
2802
+ #, fuzzy
2803
+ #~ msgid "Help AdRotate Grow"
2804
+ #~ msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
2805
+
2806
+ #, fuzzy
2807
+ #~ msgid "Manage Schedules"
2808
+ #~ msgstr "Διαχείριση"
2809
+
2810
+ #, fuzzy
2811
+ #~ msgid "Manage Media"
2812
+ #~ msgstr "Media:"
2813
+
2814
+ #, fuzzy
2815
+ #~ msgid "Schedule Management available in AdRotate Pro"
2816
+ #~ msgstr "Διαθέσιμο στο AdRotate Pro"
2817
+
2818
+ #, fuzzy
2819
+ #~ msgid ""
2820
+ #~ "Schedule management and multiple schedules per advert is available in "
2821
+ #~ "AdRotate Pro."
2822
+ #~ msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
2823
+
2824
+ #, fuzzy
2825
+ #~ msgid "Start"
2826
+ #~ msgstr "Ώρα έναρξης (ωω: λλ):"
2827
+
2828
+ #, fuzzy
2829
+ #~ msgid "End"
2830
+ #~ msgstr "Ώρα λήξης (ωω: λλ):"
2831
+
2832
+ #~ msgid "Ads"
2833
+ #~ msgstr "Διαφημίσεις"
2834
+
2835
+ #~ msgid "Max Impressions"
2836
+ #~ msgstr "Max Impressions"
2837
+
2838
+ #~ msgid "Max Clicks"
2839
+ #~ msgstr "Max Clicks"
2840
+
2841
+ #, fuzzy
2842
+ #~ msgid "No schedules created yet!"
2843
+ #~ msgstr "Κανένα πεδίο δεν έχει δημιουργηθεί ακόμα!"
2844
+
2845
+ #, fuzzy
2846
+ #~ msgid "Easily manage your schedules from here with AdRotate Pro."
2847
+ #~ msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
2848
+
2849
+ #, fuzzy
2850
+ #~ msgid "Upgrade today!"
2851
+ #~ msgstr "Σήμερα"
2852
+
2853
+ #, fuzzy
2854
+ #~ msgid "Media Management available in AdRotate Pro"
2855
+ #~ msgstr "Διαθέσιμο στο AdRotate Pro"
2856
+
2857
+ #, fuzzy
2858
+ #~ msgid "Media uploading and management is available in AdRotate Pro."
2859
+ #~ msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
2860
+
2861
+ #, fuzzy
2862
+ #~ msgid "Actions"
2863
+ #~ msgstr "Μαζικές Ενέργειες"
2864
+
2865
+ #, fuzzy
2866
+ #~ msgid "Manage your banner folder from here with AdRotate Pro."
2867
+ #~ msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
2868
+
2869
+ #~ msgid "Everything below is optional."
2870
+ #~ msgstr "Τα πάντα από κάτω είναι προαιρετικά."
2871
+
2872
+ #~ msgid "For administrative purposes set a sortorder."
2873
+ #~ msgstr "Για διοικητικούς σκοπούς ορίστε μια σειρά ταξινόμησης."
2874
+
2875
+ #~ msgid "Leave empty or 0 to skip this. Will default to ad id."
2876
+ #~ msgstr ""
2877
+ #~ "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
2878
+ #~ "διαφήμισης."
2879
+
2880
+ #, fuzzy
2881
+ #~ msgid "Select the countries you want the adverts to show in."
2882
+ #~ msgstr ""
2883
+ #~ "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
2884
+ #~ "εμφανίζονται"
2885
+
2886
+ #~ msgid "Leave empty or 0 to skip this. Will default to group id."
2887
+ #~ msgstr ""
2888
+ #~ "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
2889
+ #~ "ομάδας."
2890
+
2891
+ #~ msgid "Which categories?"
2892
+ #~ msgstr "Ποιες κατηγορίες;"
2893
+
2894
+ #~ msgid "Click the categories posts you want the adverts to show in."
2895
+ #~ msgstr ""
2896
+ #~ "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
2897
+ #~ "εμφανίζονται"
2898
+
2899
+ #~ msgid "Which pages?"
2900
+ #~ msgstr "Ποιες σελίδες;"
2901
+
2902
+ #~ msgid "Click the pages you want the adverts to show in."
2903
+ #~ msgstr "Κάντε κλικ στις σελίδες που θέλετε οι διαφημίσεις να εμφανίζονται"
2904
+
2905
  #, fuzzy
2906
  #~ msgid "Enable responsive support for this advert."
2907
  #~ msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
language/adrotate-en_US.mo CHANGED
Binary file
language/adrotate-en_US.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-07-17 23:25+0800\n"
6
- "PO-Revision-Date: 2016-07-17 23:25+0800\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,109 +13,109 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:842
21
  msgid "No files found"
22
  msgstr ""
23
 
24
- #: adrotate-functions.php:845
25
  msgid "Folder not found or not accessible"
26
  msgstr ""
27
 
28
- #: adrotate-functions.php:894
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:898
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:902
37
  msgid "Ad(s) deleted"
38
  msgstr ""
39
 
40
- #: adrotate-functions.php:906
41
  msgid "Group deleted"
42
  msgstr ""
43
 
44
- #: adrotate-functions.php:910
45
  msgid "Ad(s) statistics reset"
46
  msgstr ""
47
 
48
- #: adrotate-functions.php:914
49
  msgid "Ad(s) renewed"
50
  msgstr ""
51
 
52
- #: adrotate-functions.php:918
53
  msgid "Ad(s) deactivated"
54
  msgstr ""
55
 
56
- #: adrotate-functions.php:922
57
  msgid "Ad(s) activated"
58
  msgstr ""
59
 
60
- #: adrotate-functions.php:926
61
  msgid "Group including it's Ads deleted"
62
  msgstr ""
63
 
64
- #: adrotate-functions.php:930
65
  msgid "Export created"
66
  msgstr ""
67
 
68
- #: adrotate-functions.php:935
69
  msgid "Settings saved"
70
  msgstr ""
71
 
72
- #: adrotate-functions.php:939
73
  msgid "Database optimized"
74
  msgstr ""
75
 
76
- #: adrotate-functions.php:943
77
  msgid "Database repaired"
78
  msgstr ""
79
 
80
- #: adrotate-functions.php:947
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr ""
83
 
84
- #: adrotate-functions.php:951
85
  msgid "Empty database records removed"
86
  msgstr ""
87
 
88
- #: adrotate-functions.php:956
89
  msgid "Action prohibited"
90
  msgstr ""
91
 
92
- #: adrotate-functions.php:960
93
  msgid ""
94
  "The ad was saved but has an issue which might prevent it from working "
95
  "properly. Review the colored ad."
96
  msgstr ""
97
 
98
- #: adrotate-functions.php:964
99
  msgid "No data found in selected time period"
100
  msgstr ""
101
 
102
- #: adrotate-functions.php:968
103
  msgid "Database can only be optimized or cleaned once every hour"
104
  msgstr ""
105
 
106
- #: adrotate-functions.php:972
107
  msgid "Form can not be (partially) empty!"
108
  msgstr ""
109
 
110
- #: adrotate-functions.php:976
111
  msgid "No ads found."
112
  msgstr ""
113
 
114
- #: adrotate-functions.php:980
115
  msgid "Unexpected error"
116
  msgstr ""
117
 
118
- #: adrotate-manage-publisher.php:685
119
  msgid "AdRotate Advertiser"
120
  msgstr ""
121
 
@@ -184,215 +184,214 @@ msgid "An unknown error occured."
184
  msgstr ""
185
 
186
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
187
- #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
188
  msgid "Check adverts"
189
  msgstr ""
190
 
191
- #: adrotate-output.php:675
192
  msgid ""
193
  "You have enable caching support but W3 Total Cache is not active on your "
194
  "site!"
195
  msgstr ""
196
 
197
- #: adrotate-output.php:678
198
  msgid ""
199
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
200
  "not set."
201
  msgstr ""
202
 
203
- #: adrotate-output.php:683
204
  msgid "Your AdRotate Banner folder is not writable or does not exist."
205
  msgstr ""
206
 
207
- #: adrotate-output.php:723 dashboard/adrotatepro.php:99
208
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
209
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
210
- #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
211
- #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
212
- #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
213
- #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
214
  #: dashboard/settings/geotargeting.php:35
215
  msgid "Buy now"
216
  msgstr ""
217
 
218
- #: adrotate-output.php:724
219
  msgid ""
220
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
221
  "to the <strong>PRO</strong> version"
222
  msgstr ""
223
 
224
- #: adrotate-output.php:724
225
  #, php-format
226
  msgid ""
227
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
228
  msgstr ""
229
 
230
- #: adrotate-output.php:724
231
  msgid "Thank you for your purchase!"
232
  msgstr ""
233
 
234
- #: adrotate-output.php:785
235
  msgid ""
236
- "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
237
- "this menu. Check out the"
238
  msgstr ""
239
 
240
- #: adrotate-output.php:785
241
  msgid "manuals"
242
  msgstr ""
243
 
244
- #: adrotate-output.php:785 adrotate-output.php:852
245
  msgid "and"
246
  msgstr ""
247
 
248
- #: adrotate-output.php:785
249
  msgid "forums"
250
  msgstr ""
251
 
252
- #: adrotate-output.php:815
253
  msgid "Useful Links"
254
  msgstr ""
255
 
256
- #: adrotate-output.php:816
257
  msgid "Useful links to learn more about AdRotate"
258
  msgstr ""
259
 
260
- #: adrotate-output.php:818
261
  msgid "AdRotate website"
262
  msgstr ""
263
 
264
- #: adrotate-output.php:819
265
  msgid "Getting Started With AdRotate"
266
  msgstr ""
267
 
268
- #: adrotate-output.php:820
269
  msgid "AdRotate manuals"
270
  msgstr ""
271
 
272
- #: adrotate-output.php:821
273
  msgid "AdRotate Support Forum"
274
  msgstr ""
275
 
276
- #: adrotate-output.php:844
277
- msgid "Help AdRotate Grow"
278
  msgstr ""
279
 
280
- #: adrotate-output.php:845
281
- msgid "Follow Arnan on Facebook"
282
  msgstr ""
283
 
284
- #: adrotate-output.php:852
285
  msgid ""
286
- "A lot of users only think to review AdRotate when something goes wrong while "
287
- "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
288
  msgstr ""
289
 
290
- #: adrotate-output.php:852
291
- msgid "If you find AdRotate useful please leave your honest"
292
  msgstr ""
293
 
294
- #: adrotate-output.php:852
295
  msgid "rating"
296
  msgstr ""
297
 
298
- #: adrotate-output.php:852
299
  msgid "review"
300
  msgstr ""
301
 
302
- #: adrotate-output.php:852
303
  msgid "on WordPress.org to help AdRotate grow in a positive way"
304
  msgstr ""
305
 
306
- #: adrotate-output.php:885 dashboard/settings/notifications.php:50
307
  #: dashboard/settings/notifications.php:80
308
  msgid "Available in AdRotate Pro"
309
  msgstr ""
310
 
311
- #: adrotate-output.php:885
312
  msgid "More information..."
313
  msgstr ""
314
 
315
- #: adrotate-output.php:886
316
  msgid "This feature is available in AdRotate Pro"
317
  msgstr ""
318
 
319
- #: adrotate-output.php:886
320
  msgid "Learn more"
321
  msgstr ""
322
 
323
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
324
- #: dashboard/publisher/adverts-edit.php:235
325
  msgid "January"
326
  msgstr ""
327
 
328
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
329
- #: dashboard/publisher/adverts-edit.php:236
330
  msgid "February"
331
  msgstr ""
332
 
333
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
334
- #: dashboard/publisher/adverts-edit.php:237
335
  msgid "March"
336
  msgstr ""
337
 
338
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
339
- #: dashboard/publisher/adverts-edit.php:238
340
  msgid "April"
341
  msgstr ""
342
 
343
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
344
- #: dashboard/publisher/adverts-edit.php:239
345
  msgid "May"
346
  msgstr ""
347
 
348
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
349
- #: dashboard/publisher/adverts-edit.php:240
350
  msgid "June"
351
  msgstr ""
352
 
353
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
354
- #: dashboard/publisher/adverts-edit.php:241
355
  msgid "July"
356
  msgstr ""
357
 
358
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
359
- #: dashboard/publisher/adverts-edit.php:242
360
  msgid "August"
361
  msgstr ""
362
 
363
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
364
- #: dashboard/publisher/adverts-edit.php:243
365
  msgid "September"
366
  msgstr ""
367
 
368
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
369
- #: dashboard/publisher/adverts-edit.php:244
370
  msgid "October"
371
  msgstr ""
372
 
373
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
374
- #: dashboard/publisher/adverts-edit.php:245
375
  msgid "November"
376
  msgstr ""
377
 
378
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
379
- #: dashboard/publisher/adverts-edit.php:246
380
  msgid "December"
381
  msgstr ""
382
 
383
- #: adrotate-statistics.php:222
384
  msgid "Previous"
385
  msgstr ""
386
 
387
- #: adrotate-statistics.php:224
388
  msgid "This month"
389
  msgstr ""
390
 
391
- #: adrotate-statistics.php:225
392
  msgid "Next"
393
  msgstr ""
394
 
395
- #: adrotate-statistics.php:278
396
  msgid "No data to show!"
397
  msgstr ""
398
 
@@ -436,254 +435,57 @@ msgstr ""
436
  msgid "Fill in the ID of the type you want to display!"
437
  msgstr ""
438
 
439
- #: adrotate.php:102
440
  msgid "General Info"
441
  msgstr ""
442
 
443
- #: adrotate.php:103
444
  msgid "AdRotate Pro"
445
  msgstr ""
446
 
447
- #: adrotate.php:104
448
- msgid "Manage Adverts"
449
- msgstr ""
450
-
451
- #: adrotate.php:105 dashboard/publisher/groups-main.php:12
452
- msgid "Manage Groups"
453
- msgstr ""
454
-
455
- #: adrotate.php:106 adrotate.php:369
456
- msgid "Manage Schedules"
457
  msgstr ""
458
 
459
- #: adrotate.php:107
460
- msgid "Manage Media"
461
  msgstr ""
462
 
463
- #: adrotate.php:108
464
  msgid "Settings"
465
  msgstr ""
466
 
467
- #: adrotate.php:128
468
  msgid "AdRotate Info"
469
  msgstr ""
470
 
471
- #: adrotate.php:146
472
  msgid "AdRotate Professional"
473
  msgstr ""
474
 
475
- #: adrotate.php:186
476
  msgid "Advert Management"
477
  msgstr ""
478
 
479
- #: adrotate.php:244 adrotate.php:311 adrotate.php:364
480
  msgid "Manage"
481
  msgstr ""
482
 
483
- #: adrotate.php:245 adrotate.php:312 adrotate.php:365
484
  msgid "Add New"
485
  msgstr ""
486
 
487
- #: adrotate.php:305
488
  msgid "Group Management"
489
  msgstr ""
490
 
491
- #: adrotate.php:314
492
  msgid "Report"
493
  msgstr ""
494
 
495
- #: adrotate.php:360
496
- msgid "Schedule Management available in AdRotate Pro"
497
- msgstr ""
498
-
499
- #: adrotate.php:370
500
- msgid ""
501
- "Schedule management and multiple schedules per advert is available in "
502
- "AdRotate Pro."
503
- msgstr ""
504
-
505
- #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
506
- #: dashboard/publisher/adverts-main.php:114
507
- #: dashboard/publisher/groups-edit.php:71
508
- #: dashboard/publisher/groups-main.php:89
509
- msgid "More information"
510
- msgstr ""
511
-
512
- #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
513
- #: dashboard/publisher/adverts-error.php:19
514
- #: dashboard/publisher/adverts-main.php:20
515
- #: dashboard/publisher/groups-main.php:20
516
- msgid "Bulk Actions"
517
- msgstr ""
518
-
519
- #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
520
- #: dashboard/publisher/adverts-error.php:29
521
- #: dashboard/publisher/adverts-main.php:30
522
- #: dashboard/publisher/groups-main.php:24
523
- msgid "Go"
524
- msgstr ""
525
-
526
- #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
527
- #: dashboard/publisher/adverts-error.php:39
528
- #: dashboard/publisher/adverts-main.php:39
529
- #: dashboard/publisher/groups-main.php:32
530
- msgid "ID"
531
- msgstr ""
532
-
533
- #: adrotate.php:388
534
- msgid "Start"
535
- msgstr ""
536
-
537
- #: adrotate.php:388
538
- msgid "End"
539
- msgstr ""
540
-
541
- #: adrotate.php:389
542
- msgid "Ads"
543
- msgstr ""
544
-
545
- #: adrotate.php:391
546
- msgid "Max Impressions"
547
- msgstr ""
548
-
549
- #: adrotate.php:392
550
- msgid "Max Clicks"
551
- msgstr ""
552
-
553
- #: adrotate.php:422
554
- msgid "No schedules created yet!"
555
- msgstr ""
556
-
557
- #: adrotate.php:427
558
- msgid "Easily manage your schedules from here with AdRotate Pro."
559
- msgstr ""
560
-
561
- #: adrotate.php:427 adrotate.php:490
562
- msgid "Upgrade today!"
563
- msgstr ""
564
-
565
- #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
566
- #: dashboard/publisher/groups-edit.php:383
567
- msgid "Expires soon."
568
- msgstr ""
569
-
570
- #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
571
- #: dashboard/publisher/groups-edit.php:384
572
- msgid "Has expired."
573
- msgstr ""
574
-
575
- #: adrotate.php:452
576
- msgid "Media Management available in AdRotate Pro"
577
- msgstr ""
578
-
579
- #: adrotate.php:454
580
- msgid "Upload images to the AdRotate Pro banners folder from here."
581
- msgstr ""
582
-
583
- #: adrotate.php:454
584
- msgid ""
585
- "This is useful if you use responsive adverts with multiple images or have "
586
- "HTML5 adverts containing multiple files."
587
- msgstr ""
588
-
589
- #: adrotate.php:454
590
- msgid "Media uploading and management is available in AdRotate Pro."
591
- msgstr ""
592
-
593
- #: adrotate.php:456
594
- msgid "Upload new file"
595
- msgstr ""
596
-
597
- #: adrotate.php:457
598
- msgid "Accepted files:"
599
- msgstr ""
600
-
601
- #: adrotate.php:457
602
- msgid "For HTML5 ads you can also upload html and javascript files."
603
- msgstr ""
604
-
605
- #: adrotate.php:457
606
- msgid "Maximum size is 512Kb."
607
- msgstr ""
608
-
609
- #: adrotate.php:457
610
- msgid "Important:"
611
- msgstr ""
612
-
613
- #: adrotate.php:457
614
- msgid ""
615
- "Make sure your file has no spaces or special characters in the name. Replace "
616
- "spaces with a - or _."
617
- msgstr ""
618
-
619
- #: adrotate.php:457
620
- msgid ""
621
- "If you remove spaces from filenames for HTML5 adverts also edit the html "
622
- "file so it knows about the changed name. For example for the javascript file."
623
- msgstr ""
624
-
625
- #: adrotate.php:460
626
- msgid ""
627
- "For responsive adverts make sure the filename is in the following format; "
628
- "\"imagename.full.ext\". A full set of sized images is strongly recommended."
629
- msgstr ""
630
-
631
- #: adrotate.php:461
632
- msgid ""
633
- "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
634
- "filename instead of \".full\" for the various viewports."
635
- msgstr ""
636
-
637
- #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
638
- #: dashboard/publisher/groups-edit.php:316
639
- msgid "Example:"
640
- msgstr ""
641
-
642
- #: adrotate.php:462
643
- msgid ""
644
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
645
- "for different viewports."
646
- msgstr ""
647
-
648
- #: adrotate.php:466
649
- msgid "Upload file"
650
- msgstr ""
651
-
652
- #: adrotate.php:466
653
- msgid "Click only once per file!"
654
- msgstr ""
655
-
656
- #: adrotate.php:469
657
- msgid "Available files in"
658
- msgstr ""
659
-
660
- #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
661
- #: dashboard/publisher/groups-main.php:33
662
- msgid "Name"
663
- msgstr ""
664
-
665
- #: adrotate.php:475
666
- msgid "Actions"
667
- msgstr ""
668
-
669
- #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
670
- #: adrotate.php:484 adrotate.php:485 adrotate.php:486
671
- #: dashboard/publisher/adverts-disabled.php:22
672
- #: dashboard/publisher/adverts-error.php:21
673
- #: dashboard/publisher/adverts-main.php:22
674
- msgid "Delete"
675
- msgstr ""
676
-
677
- #: adrotate.php:490
678
- msgid ""
679
- "Make sure the banner images are not in use by adverts when you delete them!"
680
- msgstr ""
681
-
682
- #: adrotate.php:490
683
- msgid "Manage your banner folder from here with AdRotate Pro."
684
- msgstr ""
685
-
686
- #: adrotate.php:516
687
  msgid "AdRotate Settings"
688
  msgstr ""
689
 
@@ -707,8 +509,9 @@ msgstr ""
707
  msgid ""
708
  "Target mobile users with ease and show the right adverts to smartphones, "
709
  "tablets and computers. Mix and match as you please and offer adverts that "
710
- "suit the device. Create as many mobile adverts as you want without effort "
711
- "and with a few easy to use options they show up where you want them to!"
 
712
  msgstr ""
713
 
714
  #: dashboard/adrotatepro.php:34
@@ -735,39 +538,40 @@ msgid ""
735
  "forum. Get a solution (usually) within one business day."
736
  msgstr ""
737
 
738
- #: dashboard/adrotatepro.php:48 dashboard/info.php:119
739
  msgid "AdRotate is brought to you by"
740
  msgstr ""
741
 
742
- #: dashboard/adrotatepro.php:74
743
  msgid "Schedule all campaigns with ease"
744
  msgstr ""
745
 
746
- #: dashboard/adrotatepro.php:77
747
  msgid ""
748
  "Schedule your adverts and set up advertising campaigns based on dates you or "
749
- "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
750
- "You name it, AdRotate schedules it. This makes planning your revenue stream "
751
- "much more easy. You can set one or many schedules for adverts."
 
752
  msgstr ""
753
 
754
- #: dashboard/adrotatepro.php:81
755
  msgid "Avoid adblockers"
756
  msgstr ""
757
 
758
- #: dashboard/adrotatepro.php:84
759
  msgid ""
760
- "Try and avoid adblockers so you adverts get the exposure you want them to "
761
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
762
  "adverts are less likely to be removed. Of-course make sure you create your "
763
  "adverts smartly so these features reach their full potential!"
764
  msgstr ""
765
 
766
- #: dashboard/adrotatepro.php:88
767
  msgid "Stay up-to-date with notifications"
768
  msgstr ""
769
 
770
- #: dashboard/adrotatepro.php:91
771
  msgid ""
772
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
773
  "adverts expire or need your attention. Additionally, send push notifications "
@@ -775,89 +579,89 @@ msgid ""
775
  "or when advertisers create new adverts. Never miss an expiration date again."
776
  msgstr ""
777
 
778
- #: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
779
- #: dashboard/info.php:78
780
  msgid "Buy AdRotate Professional"
781
  msgstr ""
782
 
783
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
784
  msgid "Single License"
785
  msgstr ""
786
 
787
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
788
  msgid "For one WordPress installation."
789
  msgstr ""
790
 
791
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
792
- #: dashboard/info.php:83 dashboard/info.php:90
793
  msgid "Duo License"
794
  msgstr ""
795
 
796
- #: dashboard/adrotatepro.php:100 dashboard/info.php:83
797
  msgid "For two WordPress installations."
798
  msgstr ""
799
 
800
- #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
801
- #: dashboard/info.php:84 dashboard/info.php:91
802
  msgid "Multi License"
803
  msgstr ""
804
 
805
- #: dashboard/adrotatepro.php:101 dashboard/info.php:84
806
  msgid " For up to five WordPress installations."
807
  msgstr ""
808
 
809
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
810
- #: dashboard/info.php:85 dashboard/info.php:92
811
  msgid "Developer License"
812
  msgstr ""
813
 
814
- #: dashboard/adrotatepro.php:102 dashboard/info.php:85
815
  msgid "Unlimited WordPress installations and/or networks."
816
  msgstr ""
817
 
818
- #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
819
- #: dashboard/info.php:86 dashboard/info.php:94
820
  msgid "Compare licenses"
821
  msgstr ""
822
 
823
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
824
  msgid "Not sure which license is for you? Compare them..."
825
  msgstr ""
826
 
827
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
828
  msgid "All Licenses"
829
  msgstr ""
830
 
831
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
832
  msgid "Lifetime License"
833
  msgstr ""
834
 
835
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
836
  msgid "Single installation."
837
  msgstr ""
838
 
839
- #: dashboard/adrotatepro.php:112 dashboard/info.php:90
840
  msgid "Up to 2 installations."
841
  msgstr ""
842
 
843
- #: dashboard/adrotatepro.php:113 dashboard/info.php:91
844
  msgid "Up to 10 installations."
845
  msgstr ""
846
 
847
- #: dashboard/adrotatepro.php:114 dashboard/info.php:92
848
  msgid "Up to 25 installations or multisite networks."
849
  msgstr ""
850
 
851
- #: dashboard/adrotatepro.php:115 dashboard/info.php:93
852
  msgid ""
853
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
854
  msgstr ""
855
 
856
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
857
  msgid "Not sure which license is for you?"
858
  msgstr ""
859
 
860
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
861
  msgid "Compare Licenses"
862
  msgstr ""
863
 
@@ -873,38 +677,41 @@ msgstr ""
873
  msgid "Adverts that need you"
874
  msgstr ""
875
 
876
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
877
- #: dashboard/publisher/groups-main.php:34
878
- msgid "Adverts"
879
- msgstr ""
880
-
881
  #: dashboard/info.php:38
882
  msgid "(Almost) Expired"
883
  msgstr ""
884
 
885
- #: dashboard/info.php:41
886
- msgid "Groups"
887
- msgstr ""
888
-
889
  #: dashboard/info.php:42
890
  msgid "Have errors"
891
  msgstr ""
892
 
893
- #: dashboard/info.php:48
894
- msgid "Support AdRotate"
895
- msgstr ""
896
-
897
- #: dashboard/info.php:55
898
  msgid ""
899
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
900
  "for updates about me and my plugins. Thank you!"
901
  msgstr ""
902
 
903
- #: dashboard/info.php:105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
904
  msgid "AdRotate News"
905
  msgstr ""
906
 
907
- #: dashboard/info.php:123
908
  msgid ""
909
  "I am a digital nomad in the Philippines. Click on my name to find out more "
910
  "about me and what I am doing. Thanks for your support and for using my "
@@ -915,17 +722,44 @@ msgstr ""
915
  msgid "Disabled Adverts"
916
  msgstr ""
917
 
 
 
 
 
 
 
 
918
  #: dashboard/publisher/adverts-disabled.php:21
919
- #: dashboard/publisher/adverts-edit.php:170
920
  msgid "Activate"
921
  msgstr ""
922
 
 
 
 
 
 
 
923
  #: dashboard/publisher/adverts-disabled.php:23
924
  #: dashboard/publisher/adverts-error.php:22
925
  #: dashboard/publisher/adverts-main.php:23
926
  msgid "Reset stats"
927
  msgstr ""
928
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
929
  #: dashboard/publisher/adverts-disabled.php:36
930
  #: dashboard/publisher/adverts-error.php:40
931
  #: dashboard/publisher/adverts-main.php:40
@@ -933,7 +767,7 @@ msgid "Start / End"
933
  msgstr ""
934
 
935
  #: dashboard/publisher/adverts-disabled.php:37
936
- #: dashboard/publisher/adverts-edit.php:110
937
  #: dashboard/publisher/adverts-error.php:41
938
  #: dashboard/publisher/adverts-main.php:41
939
  msgid "Title"
@@ -941,7 +775,7 @@ msgstr ""
941
 
942
  #: dashboard/publisher/adverts-disabled.php:38
943
  #: dashboard/publisher/adverts-main.php:44
944
- #: dashboard/publisher/groups-edit.php:329
945
  #: dashboard/publisher/groups-main.php:36
946
  msgid "Shown"
947
  msgstr ""
@@ -950,7 +784,7 @@ msgstr ""
950
  #: dashboard/publisher/adverts-main.php:46
951
  #: dashboard/publisher/adverts-report.php:36
952
  #: dashboard/publisher/adverts-report.php:57
953
- #: dashboard/publisher/groups-edit.php:330
954
  #: dashboard/publisher/groups-main.php:38
955
  #: dashboard/publisher/groups-report.php:37
956
  #: dashboard/publisher/groups-report.php:58
@@ -966,481 +800,479 @@ msgstr ""
966
  msgid "CTR"
967
  msgstr ""
968
 
969
- #: dashboard/publisher/adverts-disabled.php:74
970
  #: dashboard/publisher/adverts-error.php:64
971
- #: dashboard/publisher/adverts-main.php:87
972
  #: dashboard/publisher/groups-main.php:70
973
  msgid "Edit"
974
  msgstr ""
975
 
976
- #: dashboard/publisher/adverts-disabled.php:74
977
  #: dashboard/publisher/adverts-error.php:64
978
- #: dashboard/publisher/adverts-main.php:87
979
  #: dashboard/publisher/groups-main.php:70
980
  msgid "Stats"
981
  msgstr ""
982
 
983
- #: dashboard/publisher/adverts-disabled.php:74
984
  #: dashboard/publisher/adverts-error.php:64
985
- #: dashboard/publisher/adverts-main.php:87
986
  msgid "Groups:"
987
  msgstr ""
988
 
989
- #: dashboard/publisher/adverts-edit.php:48
990
  msgid "The AdCode cannot be empty!"
991
  msgstr ""
992
 
993
- #: dashboard/publisher/adverts-edit.php:51
994
  msgid ""
995
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
996
  "use!"
997
  msgstr ""
998
 
999
- #: dashboard/publisher/adverts-edit.php:54
1000
  msgid ""
1001
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1002
  "use!"
1003
  msgstr ""
1004
 
1005
- #: dashboard/publisher/adverts-edit.php:57
1006
  msgid ""
1007
  "There is a problem saving the image. Please reset your image and re-save the "
1008
  "ad!"
1009
  msgstr ""
1010
 
1011
- #: dashboard/publisher/adverts-edit.php:60
1012
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1013
  msgstr ""
1014
 
1015
- #: dashboard/publisher/adverts-edit.php:65
1016
  msgid ""
1017
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1018
  "the ad!"
1019
  msgstr ""
1020
 
1021
- #: dashboard/publisher/adverts-edit.php:68
1022
  msgid "This ad is expired and currently not shown on your website!"
1023
  msgstr ""
1024
 
1025
- #: dashboard/publisher/adverts-edit.php:71
1026
  msgid "The ad will expire in less than 2 days!"
1027
  msgstr ""
1028
 
1029
- #: dashboard/publisher/adverts-edit.php:74
1030
  msgid "This ad will expire in less than 7 days!"
1031
  msgstr ""
1032
 
1033
- #: dashboard/publisher/adverts-edit.php:77
1034
  msgid "This ad has been disabled and does not rotate on your site!"
1035
  msgstr ""
1036
 
1037
- #: dashboard/publisher/adverts-edit.php:102
1038
  msgid "New Advert"
1039
  msgstr ""
1040
 
1041
- #: dashboard/publisher/adverts-edit.php:104
1042
  msgid "Edit Advert"
1043
  msgstr ""
1044
 
1045
- #: dashboard/publisher/adverts-edit.php:116
1046
  msgid "AdCode"
1047
  msgstr ""
1048
 
1049
- #: dashboard/publisher/adverts-edit.php:121
1050
  msgid "Basic Examples:"
1051
  msgstr ""
1052
 
1053
- #: dashboard/publisher/adverts-edit.php:128
1054
  msgid "Useful tags"
1055
  msgstr ""
1056
 
1057
- #: dashboard/publisher/adverts-edit.php:130
1058
  msgid "Insert the advert ID Number."
1059
  msgstr ""
1060
 
1061
- #: dashboard/publisher/adverts-edit.php:130
1062
  msgid "Required when selecting a asset below."
1063
  msgstr ""
1064
 
1065
- #: dashboard/publisher/adverts-edit.php:130
1066
  msgid "Insert the advert name."
1067
  msgstr ""
1068
 
1069
- #: dashboard/publisher/adverts-edit.php:130
1070
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1071
  msgstr ""
1072
 
1073
- #: dashboard/publisher/adverts-edit.php:130
1074
  msgid "Add inside the <a> tag to open advert in a new window."
1075
  msgstr ""
1076
 
1077
- #: dashboard/publisher/adverts-edit.php:130
1078
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1079
  msgstr ""
1080
 
1081
- #: dashboard/publisher/adverts-edit.php:130
1082
  msgid ""
1083
  "Place the cursor in your AdCode where you want to add any of these tags and "
1084
  "click to add it."
1085
  msgstr ""
1086
 
1087
- #: dashboard/publisher/adverts-edit.php:135
1088
  msgid "Preview"
1089
  msgstr ""
1090
 
1091
- #: dashboard/publisher/adverts-edit.php:138
1092
  msgid ""
1093
  "Note: While this preview is an accurate one, it might look different then it "
1094
  "does on the website."
1095
  msgstr ""
1096
 
1097
- #: dashboard/publisher/adverts-edit.php:139
1098
  msgid ""
1099
  "This is because of CSS differences. Your themes CSS file is not active here!"
1100
  msgstr ""
1101
 
1102
- #: dashboard/publisher/adverts-edit.php:144
1103
  msgid "Banner asset"
1104
  msgstr ""
1105
 
1106
- #: dashboard/publisher/adverts-edit.php:147
1107
  msgid "WordPress media:"
1108
  msgstr ""
1109
 
1110
- #: dashboard/publisher/adverts-edit.php:147
1111
  msgid "Select Banner"
1112
  msgstr ""
1113
 
1114
- #: dashboard/publisher/adverts-edit.php:149
1115
  msgid "- OR -"
1116
  msgstr ""
1117
 
1118
- #: dashboard/publisher/adverts-edit.php:151
1119
  msgid "Banner folder:"
1120
  msgstr ""
1121
 
1122
- #: dashboard/publisher/adverts-edit.php:152
1123
  msgid "No image selected"
1124
  msgstr ""
1125
 
1126
- #: dashboard/publisher/adverts-edit.php:156
1127
  msgid "Use %asset% in the adcode instead of the file path."
1128
  msgstr ""
1129
 
1130
- #: dashboard/publisher/adverts-edit.php:156
1131
  msgid ""
1132
  "Use either the text field or the dropdown. If the textfield has content that "
1133
  "field has priority."
1134
  msgstr ""
1135
 
1136
- #: dashboard/publisher/adverts-edit.php:161
1137
  #: dashboard/settings/statistics.php:17
1138
  msgid "Statistics"
1139
  msgstr ""
1140
 
1141
- #: dashboard/publisher/adverts-edit.php:163
1142
  msgid "Enable click and impression tracking for this advert."
1143
  msgstr ""
1144
 
1145
- #: dashboard/publisher/adverts-edit.php:164
1146
  msgid ""
1147
  "Note: Clicktracking does not work for Javascript adverts such as those "
1148
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1149
  "always supported."
1150
  msgstr ""
1151
 
1152
- #: dashboard/publisher/adverts-edit.php:174
1153
  msgid "Yes, this ad will be used"
1154
  msgstr ""
1155
 
1156
- #: dashboard/publisher/adverts-edit.php:175
1157
  msgid "No, do not show this ad anywhere"
1158
  msgstr ""
1159
 
1160
- #: dashboard/publisher/adverts-edit.php:182
1161
- #: dashboard/publisher/adverts-main.php:114
1162
  #: dashboard/publisher/groups-edit.php:71
1163
  #: dashboard/publisher/groups-main.php:89
1164
  msgid "Get more features with AdRotate Pro."
1165
  msgstr ""
1166
 
1167
  #: dashboard/publisher/adverts-edit.php:185
1168
- #: dashboard/publisher/adverts-edit.php:285
1169
- #: dashboard/publisher/adverts-edit.php:408
1170
- #: dashboard/publisher/adverts-edit.php:449
 
 
 
 
 
 
 
1171
  msgid "Save Advert"
1172
  msgstr ""
1173
 
1174
- #: dashboard/publisher/adverts-edit.php:186
1175
- #: dashboard/publisher/adverts-edit.php:286
1176
- #: dashboard/publisher/adverts-edit.php:409
1177
- #: dashboard/publisher/adverts-edit.php:450
1178
  #: dashboard/publisher/groups-edit.php:150
1179
- #: dashboard/publisher/groups-edit.php:297
1180
- #: dashboard/publisher/groups-edit.php:389
1181
  msgid "Cancel"
1182
  msgstr ""
1183
 
1184
- #: dashboard/publisher/adverts-edit.php:189
1185
- #: dashboard/publisher/adverts-edit.php:391
1186
  #: dashboard/publisher/groups-edit.php:132
1187
- #: dashboard/publisher/groups-edit.php:279
1188
  msgid "Usage"
1189
  msgstr ""
1190
 
1191
- #: dashboard/publisher/adverts-edit.php:193
1192
- #: dashboard/publisher/adverts-edit.php:395
1193
  #: dashboard/publisher/groups-edit.php:136
1194
- #: dashboard/publisher/groups-edit.php:283
 
 
1195
  msgid "Widget"
1196
  msgstr ""
1197
 
1198
- #: dashboard/publisher/adverts-edit.php:194
1199
- #: dashboard/publisher/adverts-edit.php:396
1200
  msgid ""
1201
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1202
  "and select the advert or the group the advert is in."
1203
  msgstr ""
1204
 
1205
- #: dashboard/publisher/adverts-edit.php:197
1206
- #: dashboard/publisher/adverts-edit.php:399
1207
  #: dashboard/publisher/groups-edit.php:140
1208
- #: dashboard/publisher/groups-edit.php:287
1209
  msgid "In a post or page"
1210
  msgstr ""
1211
 
1212
- #: dashboard/publisher/adverts-edit.php:199
1213
- #: dashboard/publisher/adverts-edit.php:401
1214
  #: dashboard/publisher/groups-edit.php:142
1215
- #: dashboard/publisher/groups-edit.php:289
1216
  msgid "Directly in a theme"
1217
  msgstr ""
1218
 
1219
- #: dashboard/publisher/adverts-edit.php:205
1220
  msgid "Schedule your advert"
1221
  msgstr ""
1222
 
1223
- #: dashboard/publisher/adverts-edit.php:209
1224
  msgid "Start date (day/month/year)"
1225
  msgstr ""
1226
 
1227
- #: dashboard/publisher/adverts-edit.php:230
1228
  msgid "End date (day/month/year)"
1229
  msgstr ""
1230
 
1231
- #: dashboard/publisher/adverts-edit.php:253
1232
  msgid "Start time (hh:mm)"
1233
  msgstr ""
1234
 
1235
- #: dashboard/publisher/adverts-edit.php:260
1236
  msgid "End time (hh:mm)"
1237
  msgstr ""
1238
 
1239
- #: dashboard/publisher/adverts-edit.php:270
1240
  msgid "Maximum Clicks"
1241
  msgstr ""
1242
 
1243
- #: dashboard/publisher/adverts-edit.php:271
1244
- #: dashboard/publisher/adverts-edit.php:273
1245
  msgid "Leave empty or 0 to skip this."
1246
  msgstr ""
1247
 
1248
- #: dashboard/publisher/adverts-edit.php:272
1249
  msgid "Maximum Impressions"
1250
  msgstr ""
1251
 
1252
- #: dashboard/publisher/adverts-edit.php:277
1253
  msgid "Important"
1254
  msgstr ""
1255
 
1256
- #: dashboard/publisher/adverts-edit.php:278
1257
  msgid ""
1258
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1259
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1260
  "14:00 hours. 6AM is 6:00 hours."
1261
  msgstr ""
1262
 
1263
- #: dashboard/publisher/adverts-edit.php:282
1264
  msgid ""
1265
  "Create multiple and more advanced schedules for each advert with AdRotate "
1266
  "Pro."
1267
  msgstr ""
1268
 
1269
- #: dashboard/publisher/adverts-edit.php:282
1270
- #: dashboard/publisher/adverts-edit.php:345
1271
- #: dashboard/publisher/adverts-edit.php:389
1272
- #: dashboard/publisher/groups-edit.php:196
1273
  msgid "Upgrade today"
1274
  msgstr ""
1275
 
1276
- #: dashboard/publisher/adverts-edit.php:289
1277
  #: dashboard/publisher/groups-edit.php:153
1278
  msgid "Advanced"
1279
  msgstr ""
1280
 
1281
- #: dashboard/publisher/adverts-edit.php:290
1282
- msgid "Everything below is optional."
1283
- msgstr ""
1284
-
1285
- #: dashboard/publisher/adverts-edit.php:290
1286
  msgid "Available in AdRotate Pro!"
1287
  msgstr ""
1288
 
1289
- #: dashboard/publisher/adverts-edit.php:295
1290
  #: dashboard/publisher/adverts-main.php:42
1291
- #: dashboard/publisher/groups-edit.php:332
1292
  msgid "Weight"
1293
  msgstr ""
1294
 
1295
- #: dashboard/publisher/adverts-edit.php:298
1296
  msgid "Few impressions"
1297
  msgstr ""
1298
 
1299
- #: dashboard/publisher/adverts-edit.php:303
1300
  msgid "Less than average"
1301
  msgstr ""
1302
 
1303
- #: dashboard/publisher/adverts-edit.php:308
1304
  msgid "Normal impressions"
1305
  msgstr ""
1306
 
1307
- #: dashboard/publisher/adverts-edit.php:313
1308
  #, fuzzy
1309
  msgid "More than average"
1310
  msgstr "Plus d'informations..."
1311
 
1312
- #: dashboard/publisher/adverts-edit.php:318
1313
  msgid "Many impressions"
1314
  msgstr ""
1315
 
1316
- #: dashboard/publisher/adverts-edit.php:323
1317
  msgid "Mobile"
1318
  msgstr ""
1319
 
1320
- #: dashboard/publisher/adverts-edit.php:325
1321
  msgid "Computers"
1322
  msgstr ""
1323
 
1324
- #: dashboard/publisher/adverts-edit.php:328
1325
  msgid "Smartphones"
1326
  msgstr ""
1327
 
1328
- #: dashboard/publisher/adverts-edit.php:331
1329
  msgid "Tablets"
1330
  msgstr ""
1331
 
1332
- #: dashboard/publisher/adverts-edit.php:334
1333
  msgid ""
1334
  "Also enable mobile support in the group this advert goes in or these are "
1335
  "ignored."
1336
  msgstr ""
1337
 
1338
- #: dashboard/publisher/adverts-edit.php:338
1339
- #: dashboard/publisher/groups-edit.php:190
1340
- msgid "Sortorder"
 
1341
  msgstr ""
1342
 
1343
- #: dashboard/publisher/adverts-edit.php:340
1344
- #: dashboard/publisher/groups-edit.php:192
1345
- msgid "For administrative purposes set a sortorder."
1346
  msgstr ""
1347
 
1348
- #: dashboard/publisher/adverts-edit.php:340
1349
- msgid "Leave empty or 0 to skip this. Will default to ad id."
1350
  msgstr ""
1351
 
1352
- #: dashboard/publisher/adverts-edit.php:345
1353
- msgid ""
1354
- "With AdRotate Pro you can easily select which devices the advert should show "
1355
- "on!"
1356
  msgstr ""
1357
 
1358
- #: dashboard/publisher/adverts-edit.php:347
1359
- msgid "Geo Targeting in AdRotate Pro"
1360
  msgstr ""
1361
 
1362
- #: dashboard/publisher/adverts-edit.php:348
1363
  msgid ""
1364
- "Assign the advert to a group and enable that group to use Geo Targeting."
 
1365
  msgstr ""
1366
 
1367
- #: dashboard/publisher/adverts-edit.php:352
1368
- msgid "Cities/States"
 
 
1369
  msgstr ""
1370
 
1371
- #: dashboard/publisher/adverts-edit.php:355
1372
  msgid ""
1373
- "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1374
- "states ISO codes are supported)"
 
 
 
1375
  msgstr ""
1376
 
1377
- #: dashboard/publisher/adverts-edit.php:355
1378
  msgid ""
1379
  "AdRotate does not check the validity of names so make sure you spell them "
1380
  "correctly!"
1381
  msgstr ""
1382
 
1383
- #: dashboard/publisher/adverts-edit.php:359
1384
- msgid "Countries"
1385
- msgstr ""
1386
-
1387
- #: dashboard/publisher/adverts-edit.php:384
1388
- msgid "Select the countries you want the adverts to show in."
1389
- msgstr ""
1390
-
1391
- #: dashboard/publisher/adverts-edit.php:384
1392
- msgid "Cities take priority and will be filtered first."
1393
- msgstr ""
1394
-
1395
- #: dashboard/publisher/adverts-edit.php:389
1396
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1397
  msgstr ""
1398
 
1399
- #: dashboard/publisher/adverts-edit.php:413
1400
  msgid "Select Groups"
1401
  msgstr ""
1402
 
1403
- #: dashboard/publisher/adverts-edit.php:418
1404
  msgid "ID - Name"
1405
  msgstr ""
1406
 
1407
- #: dashboard/publisher/adverts-edit.php:428
1408
  #: dashboard/publisher/groups-main.php:60
1409
  #: dashboard/settings/geotargeting.php:49
1410
  msgid "Default"
1411
  msgstr ""
1412
 
1413
- #: dashboard/publisher/adverts-edit.php:429
1414
  #: dashboard/publisher/groups-main.php:61
1415
  msgid "Dynamic"
1416
  msgstr ""
1417
 
1418
- #: dashboard/publisher/adverts-edit.php:429
1419
  #: dashboard/publisher/groups-main.php:61
1420
  msgid "second rotation"
1421
  msgstr ""
1422
 
1423
- #: dashboard/publisher/adverts-edit.php:430
1424
  #: dashboard/publisher/groups-main.php:62
1425
  msgid "Block"
1426
  msgstr ""
1427
 
1428
- #: dashboard/publisher/adverts-edit.php:430
1429
  #: dashboard/publisher/groups-main.php:62
1430
  msgid "grid"
1431
  msgstr ""
1432
 
1433
- #: dashboard/publisher/adverts-edit.php:431
1434
- #: dashboard/publisher/groups-edit.php:198
1435
  #: dashboard/publisher/groups-main.php:63
1436
  msgid "Post Injection"
1437
  msgstr ""
1438
 
1439
- #: dashboard/publisher/adverts-edit.php:432
1440
  msgid "Geolocation"
1441
  msgstr ""
1442
 
1443
- #: dashboard/publisher/adverts-edit.php:438
1444
  #: dashboard/publisher/groups-edit.php:57
1445
  #: dashboard/publisher/groups-main.php:70
1446
  msgid "Mode"
@@ -1481,10 +1313,20 @@ msgid "For 7 days"
1481
  msgstr ""
1482
 
1483
  #: dashboard/publisher/adverts-error.php:71
1484
- #: dashboard/publisher/groups-edit.php:382
1485
  msgid "Configuration errors."
1486
  msgstr ""
1487
 
 
 
 
 
 
 
 
 
 
 
1488
  #: dashboard/publisher/adverts-main.php:12
1489
  msgid "Active Adverts"
1490
  msgstr ""
@@ -1500,7 +1342,7 @@ msgstr ""
1500
  msgid "Today"
1501
  msgstr ""
1502
 
1503
- #: dashboard/publisher/adverts-main.php:109
1504
  msgid "No adverts created yet!"
1505
  msgstr ""
1506
 
@@ -1552,6 +1394,11 @@ msgstr ""
1552
  msgid "Edit Group"
1553
  msgstr ""
1554
 
 
 
 
 
 
1555
  #: dashboard/publisher/groups-edit.php:60
1556
  msgid "Default - Show one ad at a time"
1557
  msgstr ""
@@ -1633,15 +1480,15 @@ msgid ""
1633
  msgstr ""
1634
 
1635
  #: dashboard/publisher/groups-edit.php:137
1636
- #: dashboard/publisher/groups-edit.php:284
1637
  msgid ""
1638
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1639
  "Adverts\" and enter ID"
1640
  msgstr ""
1641
 
1642
  #: dashboard/publisher/groups-edit.php:149
1643
- #: dashboard/publisher/groups-edit.php:296
1644
- #: dashboard/publisher/groups-edit.php:388
1645
  msgid "Save Group"
1646
  msgstr ""
1647
 
@@ -1691,11 +1538,6 @@ msgid ""
1691
  "setting. Not every theme supports this feature."
1692
  msgstr ""
1693
 
1694
- #: dashboard/publisher/groups-edit.php:180
1695
- #: dashboard/settings/advertisers.php:38
1696
- msgid "Geo Targeting"
1697
- msgstr ""
1698
-
1699
  #: dashboard/publisher/groups-edit.php:181
1700
  msgid "Enable Geo Targeting for this group."
1701
  msgstr ""
@@ -1716,145 +1558,130 @@ msgstr ""
1716
  msgid "Do not forget to put at least one mobile advert in this group."
1717
  msgstr ""
1718
 
1719
- #: dashboard/publisher/groups-edit.php:192
1720
- msgid "Leave empty or 0 to skip this. Will default to group id."
1721
- msgstr ""
1722
-
1723
- #: dashboard/publisher/groups-edit.php:196
1724
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1725
  msgstr ""
1726
 
1727
- #: dashboard/publisher/groups-edit.php:201
1728
- msgid "In categories?"
1729
- msgstr ""
1730
-
1731
- #: dashboard/publisher/groups-edit.php:205
1732
- #: dashboard/publisher/groups-edit.php:243
1733
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1734
  msgid "Disabled"
1735
  msgstr ""
1736
 
1737
  #: dashboard/publisher/groups-edit.php:206
1738
- #: dashboard/publisher/groups-edit.php:244
1739
  msgid "Before content"
1740
  msgstr ""
1741
 
1742
  #: dashboard/publisher/groups-edit.php:207
1743
- #: dashboard/publisher/groups-edit.php:245
1744
  msgid "After content"
1745
  msgstr ""
1746
 
1747
  #: dashboard/publisher/groups-edit.php:208
1748
- #: dashboard/publisher/groups-edit.php:246
1749
  msgid "Before and after content"
1750
  msgstr ""
1751
 
1752
  #: dashboard/publisher/groups-edit.php:209
1753
- #: dashboard/publisher/groups-edit.php:247
1754
  msgid "Inside the content..."
1755
  msgstr ""
1756
 
1757
  #: dashboard/publisher/groups-edit.php:215
1758
- #: dashboard/publisher/groups-edit.php:253
1759
  msgid "after the middle paragraph"
1760
  msgstr ""
1761
 
1762
  #: dashboard/publisher/groups-edit.php:216
1763
- #: dashboard/publisher/groups-edit.php:254
1764
  msgid "after the 1st paragraph"
1765
  msgstr ""
1766
 
1767
  #: dashboard/publisher/groups-edit.php:217
1768
- #: dashboard/publisher/groups-edit.php:255
1769
  msgid "after the 2nd paragraph"
1770
  msgstr ""
1771
 
1772
  #: dashboard/publisher/groups-edit.php:218
1773
- #: dashboard/publisher/groups-edit.php:256
1774
  msgid "after the 3rd paragraph"
1775
  msgstr ""
1776
 
1777
  #: dashboard/publisher/groups-edit.php:219
1778
- #: dashboard/publisher/groups-edit.php:257
1779
  msgid "after the 4th paragraph"
1780
  msgstr ""
1781
 
1782
  #: dashboard/publisher/groups-edit.php:220
1783
- #: dashboard/publisher/groups-edit.php:258
1784
  msgid "after the 5th paragraph"
1785
  msgstr ""
1786
 
1787
  #: dashboard/publisher/groups-edit.php:221
1788
- #: dashboard/publisher/groups-edit.php:259
1789
  msgid "after the 6th paragraph"
1790
  msgstr ""
1791
 
1792
  #: dashboard/publisher/groups-edit.php:222
1793
- #: dashboard/publisher/groups-edit.php:260
1794
  msgid "after the 7th paragraph"
1795
  msgstr ""
1796
 
1797
  #: dashboard/publisher/groups-edit.php:223
1798
- #: dashboard/publisher/groups-edit.php:261
1799
  msgid "after the 8th paragraph"
1800
  msgstr ""
1801
 
1802
- #: dashboard/publisher/groups-edit.php:229
1803
- msgid "Which categories?"
1804
- msgstr ""
1805
-
1806
- #: dashboard/publisher/groups-edit.php:234
1807
- msgid "Click the categories posts you want the adverts to show in."
1808
- msgstr ""
1809
-
1810
  #: dashboard/publisher/groups-edit.php:239
1811
- msgid "In pages?"
1812
- msgstr ""
1813
-
1814
- #: dashboard/publisher/groups-edit.php:267
1815
- msgid "Which pages?"
1816
- msgstr ""
1817
-
1818
- #: dashboard/publisher/groups-edit.php:272
1819
- msgid "Click the pages you want the adverts to show in."
1820
  msgstr ""
1821
 
1822
- #: dashboard/publisher/groups-edit.php:300
1823
  msgid "Wrapper code"
1824
  msgstr ""
1825
 
1826
- #: dashboard/publisher/groups-edit.php:301
1827
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1828
  msgstr ""
1829
 
1830
- #: dashboard/publisher/groups-edit.php:305
1831
  msgid "Before advert"
1832
  msgstr ""
1833
 
1834
- #: dashboard/publisher/groups-edit.php:309
 
 
 
 
 
1835
  msgid "Options:"
1836
  msgstr ""
1837
 
1838
- #: dashboard/publisher/groups-edit.php:313
1839
  msgid "After advert"
1840
  msgstr ""
1841
 
1842
- #: dashboard/publisher/groups-edit.php:322
1843
  msgid "Select adverts"
1844
  msgstr ""
1845
 
1846
- #: dashboard/publisher/groups-edit.php:327
1847
  msgid "Choose adverts"
1848
  msgstr ""
1849
 
1850
- #: dashboard/publisher/groups-edit.php:333
1851
  msgid "Visible until"
1852
  msgstr ""
1853
 
1854
- #: dashboard/publisher/groups-edit.php:375
1855
  msgid "No adverts created!"
1856
  msgstr ""
1857
 
 
 
 
 
1858
  #: dashboard/publisher/groups-main.php:21
1859
  msgid "Delete Group"
1860
  msgstr ""
@@ -1872,7 +1699,8 @@ msgid "This action can not be undone!"
1872
  msgstr ""
1873
 
1874
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1875
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
1876
  msgid "OK to continue, CANCEL to stop."
1877
  msgstr ""
1878
 
@@ -1937,9 +1765,9 @@ msgid ""
1937
  msgstr ""
1938
 
1939
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1940
- #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
1941
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1942
- #: dashboard/settings/statistics.php:73
1943
  msgid "Update Options"
1944
  msgstr ""
1945
 
@@ -2234,7 +2062,8 @@ msgstr ""
2234
  msgid "Are you sure you want to continue?"
2235
  msgstr ""
2236
 
2237
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
2238
  msgid "This might take a while and may slow down your site during this action!"
2239
  msgstr ""
2240
 
@@ -2243,42 +2072,40 @@ msgid "Delete stats older than 356 days (Optional)."
2243
  msgstr ""
2244
 
2245
  #: dashboard/settings/maintenance.php:32
2246
- msgid ""
2247
- "AdRotate creates empty records when you start making ads, groups or "
2248
- "schedules. In rare occasions these records are faulty."
2249
  msgstr ""
2250
 
2251
- #: dashboard/settings/maintenance.php:32
2252
  msgid ""
2253
- "If you made an ad, group or schedule that does not save when you make it use "
2254
- "this button to delete those empty records."
2255
  msgstr ""
2256
 
2257
- #: dashboard/settings/maintenance.php:32
2258
  msgid ""
2259
- "Additionally you can clean up old schedules and/or statistics. This will "
2260
- "improve the speed of your site."
2261
  msgstr ""
2262
 
2263
- #: dashboard/settings/maintenance.php:36
2264
  msgid "Re-evaluate Ads"
2265
  msgstr ""
2266
 
2267
- #: dashboard/settings/maintenance.php:38
2268
  msgid "Re-evaluate all ads"
2269
  msgstr ""
2270
 
2271
- #: dashboard/settings/maintenance.php:38
2272
  msgid "You are about to check all ads for errors."
2273
  msgstr ""
2274
 
2275
- #: dashboard/settings/maintenance.php:39
2276
  msgid ""
2277
  "This will apply all evaluation rules to all ads to see if any error slipped "
2278
  "in. Normally you should not need this feature."
2279
  msgstr ""
2280
 
2281
- #: dashboard/settings/maintenance.php:43
2282
  msgid ""
2283
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2284
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2291,11 +2118,11 @@ msgid ""
2291
  "is not a valid point in any case."
2292
  msgstr ""
2293
 
2294
- #: dashboard/settings/maintenance.php:45
2295
  msgid "Troubleshooting"
2296
  msgstr ""
2297
 
2298
- #: dashboard/settings/maintenance.php:46
2299
  msgid ""
2300
  "The below options are not meant for normal use and are only there for "
2301
  "developers to review saved settings or how ads are selected. These can be "
@@ -2303,115 +2130,129 @@ msgid ""
2303
  "SHOULD BE LEFT UNCHECKED!!"
2304
  msgstr ""
2305
 
2306
- #: dashboard/settings/maintenance.php:49
2307
  msgid "Developer Debug"
2308
  msgstr ""
2309
 
2310
- #: dashboard/settings/maintenance.php:51
2311
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2312
  msgstr ""
2313
 
2314
- #: dashboard/settings/maintenance.php:52
2315
  msgid "View advert specs and (some) stats in the dashboard."
2316
  msgstr ""
2317
 
2318
- #: dashboard/settings/maintenance.php:53
2319
  msgid ""
2320
  "Disable timers for clicks and impressions and enable a alert window for "
2321
  "clicktracking."
2322
  msgstr ""
2323
 
2324
- #: dashboard/settings/maintenance.php:54
2325
  msgid "Temporarily disable encryption on the redirect url."
2326
  msgstr ""
2327
 
2328
- #: dashboard/settings/maintenance.php:59
2329
  msgid "Status and Versions"
2330
  msgstr ""
2331
 
2332
- #: dashboard/settings/maintenance.php:62
2333
  msgid "Current status of adverts"
2334
  msgstr ""
2335
 
2336
- #: dashboard/settings/maintenance.php:63
2337
  msgid "Normal"
2338
  msgstr ""
2339
 
2340
- #: dashboard/settings/maintenance.php:63
2341
  msgid "Error"
2342
  msgstr ""
2343
 
2344
- #: dashboard/settings/maintenance.php:63
2345
  msgid "Expired"
2346
  msgstr ""
2347
 
2348
- #: dashboard/settings/maintenance.php:63
2349
  msgid "Expires Soon"
2350
  msgstr ""
2351
 
2352
- #: dashboard/settings/maintenance.php:63
2353
  msgid "Unknown"
2354
  msgstr ""
2355
 
2356
- #: dashboard/settings/maintenance.php:66
2357
  msgid "Banners/assets Folder"
2358
  msgstr ""
2359
 
2360
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2361
  msgid "Exists and appears writable"
2362
  msgstr ""
2363
 
2364
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2365
  msgid "Not writable or does not exist"
2366
  msgstr ""
2367
 
2368
- #: dashboard/settings/maintenance.php:70
2369
  msgid "Reports Folder"
2370
  msgstr ""
2371
 
2372
- #: dashboard/settings/maintenance.php:76
2373
  msgid "Advert evaluation"
2374
  msgstr ""
2375
 
2376
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2377
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2378
  msgstr ""
2379
 
2380
- #: dashboard/settings/maintenance.php:78
2381
- msgid "Trackerdata cleanup"
2382
  msgstr ""
2383
 
2384
- #: dashboard/settings/maintenance.php:83
2385
  msgid "Internal Versions"
2386
  msgstr ""
2387
 
2388
- #: dashboard/settings/maintenance.php:84
2389
  msgid ""
2390
  "Unless you experience database issues or a warning shows below, these "
2391
  "numbers are not really relevant for troubleshooting. Support may ask for "
2392
  "them to verify your database status."
2393
  msgstr ""
2394
 
2395
- #: dashboard/settings/maintenance.php:87
2396
  msgid "AdRotate version"
2397
  msgstr ""
2398
 
2399
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2400
  msgid "Current:"
2401
  msgstr ""
2402
 
2403
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2404
  msgid "Should be:"
2405
  msgstr ""
2406
 
2407
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2408
  msgid "Previous:"
2409
  msgstr ""
2410
 
2411
- #: dashboard/settings/maintenance.php:89
2412
  msgid "Database version"
2413
  msgstr ""
2414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2415
  #: dashboard/settings/misc.php:16
2416
  msgid "Miscellaneous"
2417
  msgstr ""
@@ -2814,6 +2655,16 @@ msgid ""
2814
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2815
  msgstr ""
2816
 
 
 
 
 
 
 
 
 
 
 
2817
  #, fuzzy
2818
  #~ msgid ""
2819
  #~ "Upload your images to the banner folder and make sure the filename is in "
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-22 22:11+0800\n"
6
+ "PO-Revision-Date: 2017-01-22 22:11+0800\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.11\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:721
21
  msgid "No files found"
22
  msgstr ""
23
 
24
+ #: adrotate-functions.php:724
25
  msgid "Folder not found or not accessible"
26
  msgstr ""
27
 
28
+ #: adrotate-functions.php:773
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:777
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:781
37
  msgid "Ad(s) deleted"
38
  msgstr ""
39
 
40
+ #: adrotate-functions.php:785
41
  msgid "Group deleted"
42
  msgstr ""
43
 
44
+ #: adrotate-functions.php:789
45
  msgid "Ad(s) statistics reset"
46
  msgstr ""
47
 
48
+ #: adrotate-functions.php:793
49
  msgid "Ad(s) renewed"
50
  msgstr ""
51
 
52
+ #: adrotate-functions.php:797
53
  msgid "Ad(s) deactivated"
54
  msgstr ""
55
 
56
+ #: adrotate-functions.php:801
57
  msgid "Ad(s) activated"
58
  msgstr ""
59
 
60
+ #: adrotate-functions.php:805
61
  msgid "Group including it's Ads deleted"
62
  msgstr ""
63
 
64
+ #: adrotate-functions.php:809
65
  msgid "Export created"
66
  msgstr ""
67
 
68
+ #: adrotate-functions.php:814
69
  msgid "Settings saved"
70
  msgstr ""
71
 
72
+ #: adrotate-functions.php:818
73
  msgid "Database optimized"
74
  msgstr ""
75
 
76
+ #: adrotate-functions.php:822
77
  msgid "Database repaired"
78
  msgstr ""
79
 
80
+ #: adrotate-functions.php:826
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr ""
83
 
84
+ #: adrotate-functions.php:830
85
  msgid "Empty database records removed"
86
  msgstr ""
87
 
88
+ #: adrotate-functions.php:835
89
  msgid "Action prohibited"
90
  msgstr ""
91
 
92
+ #: adrotate-functions.php:839
93
  msgid ""
94
  "The ad was saved but has an issue which might prevent it from working "
95
  "properly. Review the colored ad."
96
  msgstr ""
97
 
98
+ #: adrotate-functions.php:843
99
  msgid "No data found in selected time period"
100
  msgstr ""
101
 
102
+ #: adrotate-functions.php:847
103
  msgid "Database can only be optimized or cleaned once every hour"
104
  msgstr ""
105
 
106
+ #: adrotate-functions.php:851
107
  msgid "Form can not be (partially) empty!"
108
  msgstr ""
109
 
110
+ #: adrotate-functions.php:855
111
  msgid "No ads found."
112
  msgstr ""
113
 
114
+ #: adrotate-functions.php:859
115
  msgid "Unexpected error"
116
  msgstr ""
117
 
118
+ #: adrotate-manage-publisher.php:677
119
  msgid "AdRotate Advertiser"
120
  msgstr ""
121
 
184
  msgstr ""
185
 
186
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
 
187
  msgid "Check adverts"
188
  msgstr ""
189
 
190
+ #: adrotate-output.php:664
191
  msgid ""
192
  "You have enable caching support but W3 Total Cache is not active on your "
193
  "site!"
194
  msgstr ""
195
 
196
+ #: adrotate-output.php:667
197
  msgid ""
198
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
199
  "not set."
200
  msgstr ""
201
 
202
+ #: adrotate-output.php:672
203
  msgid "Your AdRotate Banner folder is not writable or does not exist."
204
  msgstr ""
205
 
206
+ #: adrotate-output.php:712 dashboard/adrotatepro.php:86
207
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:88
208
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:98
209
+ #: dashboard/adrotatepro.php:99 dashboard/adrotatepro.php:100
210
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:64 dashboard/info.php:65
211
+ #: dashboard/info.php:66 dashboard/info.php:67 dashboard/info.php:71
212
+ #: dashboard/info.php:72 dashboard/info.php:73 dashboard/info.php:74
213
  #: dashboard/settings/geotargeting.php:35
214
  msgid "Buy now"
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:713
218
  msgid ""
219
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
220
  "to the <strong>PRO</strong> version"
221
  msgstr ""
222
 
223
+ #: adrotate-output.php:713
224
  #, php-format
225
  msgid ""
226
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
227
  msgstr ""
228
 
229
+ #: adrotate-output.php:713
230
  msgid "Thank you for your purchase!"
231
  msgstr ""
232
 
233
+ #: adrotate-output.php:774
234
  msgid ""
235
+ "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
236
+ "menu. If you need help getting started take a look at the"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:774
240
  msgid "manuals"
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:774 adrotate-output.php:844
244
  msgid "and"
245
  msgstr ""
246
 
247
+ #: adrotate-output.php:774
248
  msgid "forums"
249
  msgstr ""
250
 
251
+ #: adrotate-output.php:807
252
  msgid "Useful Links"
253
  msgstr ""
254
 
255
+ #: adrotate-output.php:808
256
  msgid "Useful links to learn more about AdRotate"
257
  msgstr ""
258
 
259
+ #: adrotate-output.php:810
260
  msgid "AdRotate website"
261
  msgstr ""
262
 
263
+ #: adrotate-output.php:811
264
  msgid "Getting Started With AdRotate"
265
  msgstr ""
266
 
267
+ #: adrotate-output.php:812
268
  msgid "AdRotate manuals"
269
  msgstr ""
270
 
271
+ #: adrotate-output.php:813
272
  msgid "AdRotate Support Forum"
273
  msgstr ""
274
 
275
+ #: adrotate-output.php:836 dashboard/info.php:46
276
+ msgid "Support AdRotate"
277
  msgstr ""
278
 
279
+ #: adrotate-output.php:837
280
+ msgid "Check out my website"
281
  msgstr ""
282
 
283
+ #: adrotate-output.php:844
284
  msgid ""
285
+ "Many users only think to review AdRotate when something goes wrong while "
286
+ "thousands of people happily use AdRotate."
287
  msgstr ""
288
 
289
+ #: adrotate-output.php:844
290
+ msgid "If you find AdRotate useful please leave your"
291
  msgstr ""
292
 
293
+ #: adrotate-output.php:844
294
  msgid "rating"
295
  msgstr ""
296
 
297
+ #: adrotate-output.php:844
298
  msgid "review"
299
  msgstr ""
300
 
301
+ #: adrotate-output.php:844
302
  msgid "on WordPress.org to help AdRotate grow in a positive way"
303
  msgstr ""
304
 
305
+ #: adrotate-output.php:870 dashboard/settings/notifications.php:50
306
  #: dashboard/settings/notifications.php:80
307
  msgid "Available in AdRotate Pro"
308
  msgstr ""
309
 
310
+ #: adrotate-output.php:870
311
  msgid "More information..."
312
  msgstr ""
313
 
314
+ #: adrotate-output.php:871
315
  msgid "This feature is available in AdRotate Pro"
316
  msgstr ""
317
 
318
+ #: adrotate-output.php:871
319
  msgid "Learn more"
320
  msgstr ""
321
 
322
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:217
323
+ #: dashboard/publisher/adverts-edit.php:238
324
  msgid "January"
325
  msgstr ""
326
 
327
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:218
328
+ #: dashboard/publisher/adverts-edit.php:239
329
  msgid "February"
330
  msgstr ""
331
 
332
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:219
333
+ #: dashboard/publisher/adverts-edit.php:240
334
  msgid "March"
335
  msgstr ""
336
 
337
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:220
338
+ #: dashboard/publisher/adverts-edit.php:241
339
  msgid "April"
340
  msgstr ""
341
 
342
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:221
343
+ #: dashboard/publisher/adverts-edit.php:242
344
  msgid "May"
345
  msgstr ""
346
 
347
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:222
348
+ #: dashboard/publisher/adverts-edit.php:243
349
  msgid "June"
350
  msgstr ""
351
 
352
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:223
353
+ #: dashboard/publisher/adverts-edit.php:244
354
  msgid "July"
355
  msgstr ""
356
 
357
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:224
358
+ #: dashboard/publisher/adverts-edit.php:245
359
  msgid "August"
360
  msgstr ""
361
 
362
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:225
363
+ #: dashboard/publisher/adverts-edit.php:246
364
  msgid "September"
365
  msgstr ""
366
 
367
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:226
368
+ #: dashboard/publisher/adverts-edit.php:247
369
  msgid "October"
370
  msgstr ""
371
 
372
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:227
373
+ #: dashboard/publisher/adverts-edit.php:248
374
  msgid "November"
375
  msgstr ""
376
 
377
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:228
378
+ #: dashboard/publisher/adverts-edit.php:249
379
  msgid "December"
380
  msgstr ""
381
 
382
+ #: adrotate-statistics.php:152
383
  msgid "Previous"
384
  msgstr ""
385
 
386
+ #: adrotate-statistics.php:154
387
  msgid "This month"
388
  msgstr ""
389
 
390
+ #: adrotate-statistics.php:155
391
  msgid "Next"
392
  msgstr ""
393
 
394
+ #: adrotate-statistics.php:229
395
  msgid "No data to show!"
396
  msgstr ""
397
 
435
  msgid "Fill in the ID of the type you want to display!"
436
  msgstr ""
437
 
438
+ #: adrotate.php:101
439
  msgid "General Info"
440
  msgstr ""
441
 
442
+ #: adrotate.php:102
443
  msgid "AdRotate Pro"
444
  msgstr ""
445
 
446
+ #: adrotate.php:103 dashboard/info.php:37
447
+ #: dashboard/publisher/adverts-edit.php:455
448
+ #: dashboard/publisher/groups-main.php:34
449
+ msgid "Adverts"
 
 
 
 
 
 
450
  msgstr ""
451
 
452
+ #: adrotate.php:104 dashboard/info.php:41
453
+ msgid "Groups"
454
  msgstr ""
455
 
456
+ #: adrotate.php:105
457
  msgid "Settings"
458
  msgstr ""
459
 
460
+ #: adrotate.php:123
461
  msgid "AdRotate Info"
462
  msgstr ""
463
 
464
+ #: adrotate.php:141
465
  msgid "AdRotate Professional"
466
  msgstr ""
467
 
468
+ #: adrotate.php:181
469
  msgid "Advert Management"
470
  msgstr ""
471
 
472
+ #: adrotate.php:239 adrotate.php:306
473
  msgid "Manage"
474
  msgstr ""
475
 
476
+ #: adrotate.php:240 adrotate.php:307
477
  msgid "Add New"
478
  msgstr ""
479
 
480
+ #: adrotate.php:300
481
  msgid "Group Management"
482
  msgstr ""
483
 
484
+ #: adrotate.php:309
485
  msgid "Report"
486
  msgstr ""
487
 
488
+ #: adrotate.php:354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
489
  msgid "AdRotate Settings"
490
  msgstr ""
491
 
509
  msgid ""
510
  "Target mobile users with ease and show the right adverts to smartphones, "
511
  "tablets and computers. Mix and match as you please and offer adverts that "
512
+ "suit the device or mobile operating system. Create as many mobile adverts as "
513
+ "you want without effort and with a few easy to use options they show up "
514
+ "where you want them to!"
515
  msgstr ""
516
 
517
  #: dashboard/adrotatepro.php:34
538
  "forum. Get a solution (usually) within one business day."
539
  msgstr ""
540
 
541
+ #: dashboard/adrotatepro.php:48 dashboard/info.php:101
542
  msgid "AdRotate is brought to you by"
543
  msgstr ""
544
 
545
+ #: dashboard/adrotatepro.php:61
546
  msgid "Schedule all campaigns with ease"
547
  msgstr ""
548
 
549
+ #: dashboard/adrotatepro.php:64
550
  msgid ""
551
  "Schedule your adverts and set up advertising campaigns based on dates you or "
552
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
553
+ "specific days in the week. You name it, AdRotate schedules it. This makes "
554
+ "planning your revenue stream very flexible. You can set one or many "
555
+ "schedules for adverts."
556
  msgstr ""
557
 
558
+ #: dashboard/adrotatepro.php:68
559
  msgid "Avoid adblockers"
560
  msgstr ""
561
 
562
+ #: dashboard/adrotatepro.php:71
563
  msgid ""
564
+ "Try and avoid adblockers so your adverts get the exposure you want them to "
565
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
566
  "adverts are less likely to be removed. Of-course make sure you create your "
567
  "adverts smartly so these features reach their full potential!"
568
  msgstr ""
569
 
570
+ #: dashboard/adrotatepro.php:75
571
  msgid "Stay up-to-date with notifications"
572
  msgstr ""
573
 
574
+ #: dashboard/adrotatepro.php:78
575
  msgid ""
576
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
577
  "adverts expire or need your attention. Additionally, send push notifications "
579
  "or when advertisers create new adverts. Never miss an expiration date again."
580
  msgstr ""
581
 
582
+ #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
583
+ #: dashboard/info.php:60
584
  msgid "Buy AdRotate Professional"
585
  msgstr ""
586
 
587
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:64
588
  msgid "Single License"
589
  msgstr ""
590
 
591
+ #: dashboard/adrotatepro.php:86
592
  msgid "For one WordPress installation."
593
  msgstr ""
594
 
595
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
596
+ #: dashboard/info.php:65 dashboard/info.php:72
597
  msgid "Duo License"
598
  msgstr ""
599
 
600
+ #: dashboard/adrotatepro.php:87
601
  msgid "For two WordPress installations."
602
  msgstr ""
603
 
604
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
605
+ #: dashboard/info.php:66 dashboard/info.php:73
606
  msgid "Multi License"
607
  msgstr ""
608
 
609
+ #: dashboard/adrotatepro.php:88
610
  msgid " For up to five WordPress installations."
611
  msgstr ""
612
 
613
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
614
+ #: dashboard/info.php:67 dashboard/info.php:74
615
  msgid "Developer License"
616
  msgstr ""
617
 
618
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:67
619
  msgid "Unlimited WordPress installations and/or networks."
620
  msgstr ""
621
 
622
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
623
+ #: dashboard/info.php:68 dashboard/info.php:76
624
  msgid "Compare licenses"
625
  msgstr ""
626
 
627
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
628
  msgid "Not sure which license is for you? Compare them..."
629
  msgstr ""
630
 
631
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
632
  msgid "All Licenses"
633
  msgstr ""
634
 
635
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
636
  msgid "Lifetime License"
637
  msgstr ""
638
 
639
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
640
  msgid "Single installation."
641
  msgstr ""
642
 
643
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:72
644
  msgid "Up to 2 installations."
645
  msgstr ""
646
 
647
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:73
648
  msgid "Up to 10 installations."
649
  msgstr ""
650
 
651
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:74
652
  msgid "Up to 25 installations or multisite networks."
653
  msgstr ""
654
 
655
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:75
656
  msgid ""
657
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
658
  msgstr ""
659
 
660
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
661
  msgid "Not sure which license is for you?"
662
  msgstr ""
663
 
664
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
665
  msgid "Compare Licenses"
666
  msgstr ""
667
 
677
  msgid "Adverts that need you"
678
  msgstr ""
679
 
 
 
 
 
 
680
  #: dashboard/info.php:38
681
  msgid "(Almost) Expired"
682
  msgstr ""
683
 
 
 
 
 
684
  #: dashboard/info.php:42
685
  msgid "Have errors"
686
  msgstr ""
687
 
688
+ #: dashboard/info.php:47
 
 
 
 
689
  msgid ""
690
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
691
  "for updates about me and my plugins. Thank you!"
692
  msgstr ""
693
 
694
+ #: dashboard/info.php:51 dashboard/publisher/adverts-edit.php:124
695
+ msgid "Get paid as a publisher:"
696
+ msgstr ""
697
+
698
+ #: dashboard/info.php:64
699
+ msgid "One WordPress installation."
700
+ msgstr ""
701
+
702
+ #: dashboard/info.php:65
703
+ msgid "Two WordPress installations."
704
+ msgstr ""
705
+
706
+ #: dashboard/info.php:66
707
+ msgid "Up to five WordPress installations."
708
+ msgstr ""
709
+
710
+ #: dashboard/info.php:87
711
  msgid "AdRotate News"
712
  msgstr ""
713
 
714
+ #: dashboard/info.php:105
715
  msgid ""
716
  "I am a digital nomad in the Philippines. Click on my name to find out more "
717
  "about me and what I am doing. Thanks for your support and for using my "
722
  msgid "Disabled Adverts"
723
  msgstr ""
724
 
725
+ #: dashboard/publisher/adverts-disabled.php:20
726
+ #: dashboard/publisher/adverts-error.php:19
727
+ #: dashboard/publisher/adverts-main.php:20
728
+ #: dashboard/publisher/groups-main.php:20
729
+ msgid "Bulk Actions"
730
+ msgstr ""
731
+
732
  #: dashboard/publisher/adverts-disabled.php:21
733
+ #: dashboard/publisher/adverts-edit.php:173
734
  msgid "Activate"
735
  msgstr ""
736
 
737
+ #: dashboard/publisher/adverts-disabled.php:22
738
+ #: dashboard/publisher/adverts-error.php:21
739
+ #: dashboard/publisher/adverts-main.php:22
740
+ msgid "Delete"
741
+ msgstr ""
742
+
743
  #: dashboard/publisher/adverts-disabled.php:23
744
  #: dashboard/publisher/adverts-error.php:22
745
  #: dashboard/publisher/adverts-main.php:23
746
  msgid "Reset stats"
747
  msgstr ""
748
 
749
+ #: dashboard/publisher/adverts-disabled.php:25
750
+ #: dashboard/publisher/adverts-error.php:29
751
+ #: dashboard/publisher/adverts-main.php:30
752
+ #: dashboard/publisher/groups-main.php:24
753
+ msgid "Go"
754
+ msgstr ""
755
+
756
+ #: dashboard/publisher/adverts-disabled.php:35
757
+ #: dashboard/publisher/adverts-error.php:39
758
+ #: dashboard/publisher/adverts-main.php:39
759
+ #: dashboard/publisher/groups-main.php:32
760
+ msgid "ID"
761
+ msgstr ""
762
+
763
  #: dashboard/publisher/adverts-disabled.php:36
764
  #: dashboard/publisher/adverts-error.php:40
765
  #: dashboard/publisher/adverts-main.php:40
767
  msgstr ""
768
 
769
  #: dashboard/publisher/adverts-disabled.php:37
770
+ #: dashboard/publisher/adverts-edit.php:109
771
  #: dashboard/publisher/adverts-error.php:41
772
  #: dashboard/publisher/adverts-main.php:41
773
  msgid "Title"
775
 
776
  #: dashboard/publisher/adverts-disabled.php:38
777
  #: dashboard/publisher/adverts-main.php:44
778
+ #: dashboard/publisher/groups-edit.php:331
779
  #: dashboard/publisher/groups-main.php:36
780
  msgid "Shown"
781
  msgstr ""
784
  #: dashboard/publisher/adverts-main.php:46
785
  #: dashboard/publisher/adverts-report.php:36
786
  #: dashboard/publisher/adverts-report.php:57
787
+ #: dashboard/publisher/groups-edit.php:332
788
  #: dashboard/publisher/groups-main.php:38
789
  #: dashboard/publisher/groups-report.php:37
790
  #: dashboard/publisher/groups-report.php:58
800
  msgid "CTR"
801
  msgstr ""
802
 
803
+ #: dashboard/publisher/adverts-disabled.php:71
804
  #: dashboard/publisher/adverts-error.php:64
805
+ #: dashboard/publisher/adverts-main.php:82
806
  #: dashboard/publisher/groups-main.php:70
807
  msgid "Edit"
808
  msgstr ""
809
 
810
+ #: dashboard/publisher/adverts-disabled.php:71
811
  #: dashboard/publisher/adverts-error.php:64
812
+ #: dashboard/publisher/adverts-main.php:82
813
  #: dashboard/publisher/groups-main.php:70
814
  msgid "Stats"
815
  msgstr ""
816
 
817
+ #: dashboard/publisher/adverts-disabled.php:71
818
  #: dashboard/publisher/adverts-error.php:64
819
+ #: dashboard/publisher/adverts-main.php:82
820
  msgid "Groups:"
821
  msgstr ""
822
 
823
+ #: dashboard/publisher/adverts-edit.php:47
824
  msgid "The AdCode cannot be empty!"
825
  msgstr ""
826
 
827
+ #: dashboard/publisher/adverts-edit.php:50
828
  msgid ""
829
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
830
  "use!"
831
  msgstr ""
832
 
833
+ #: dashboard/publisher/adverts-edit.php:53
834
  msgid ""
835
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
836
  "use!"
837
  msgstr ""
838
 
839
+ #: dashboard/publisher/adverts-edit.php:56
840
  msgid ""
841
  "There is a problem saving the image. Please reset your image and re-save the "
842
  "ad!"
843
  msgstr ""
844
 
845
+ #: dashboard/publisher/adverts-edit.php:59
846
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
847
  msgstr ""
848
 
849
+ #: dashboard/publisher/adverts-edit.php:64
850
  msgid ""
851
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
852
  "the ad!"
853
  msgstr ""
854
 
855
+ #: dashboard/publisher/adverts-edit.php:67
856
  msgid "This ad is expired and currently not shown on your website!"
857
  msgstr ""
858
 
859
+ #: dashboard/publisher/adverts-edit.php:70
860
  msgid "The ad will expire in less than 2 days!"
861
  msgstr ""
862
 
863
+ #: dashboard/publisher/adverts-edit.php:73
864
  msgid "This ad will expire in less than 7 days!"
865
  msgstr ""
866
 
867
+ #: dashboard/publisher/adverts-edit.php:76
868
  msgid "This ad has been disabled and does not rotate on your site!"
869
  msgstr ""
870
 
871
+ #: dashboard/publisher/adverts-edit.php:101
872
  msgid "New Advert"
873
  msgstr ""
874
 
875
+ #: dashboard/publisher/adverts-edit.php:103
876
  msgid "Edit Advert"
877
  msgstr ""
878
 
879
+ #: dashboard/publisher/adverts-edit.php:115
880
  msgid "AdCode"
881
  msgstr ""
882
 
883
+ #: dashboard/publisher/adverts-edit.php:120
884
  msgid "Basic Examples:"
885
  msgstr ""
886
 
887
+ #: dashboard/publisher/adverts-edit.php:131
888
  msgid "Useful tags"
889
  msgstr ""
890
 
891
+ #: dashboard/publisher/adverts-edit.php:133
892
  msgid "Insert the advert ID Number."
893
  msgstr ""
894
 
895
+ #: dashboard/publisher/adverts-edit.php:133
896
  msgid "Required when selecting a asset below."
897
  msgstr ""
898
 
899
+ #: dashboard/publisher/adverts-edit.php:133
900
  msgid "Insert the advert name."
901
  msgstr ""
902
 
903
+ #: dashboard/publisher/adverts-edit.php:133
904
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
905
  msgstr ""
906
 
907
+ #: dashboard/publisher/adverts-edit.php:133
908
  msgid "Add inside the <a> tag to open advert in a new window."
909
  msgstr ""
910
 
911
+ #: dashboard/publisher/adverts-edit.php:133
912
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
913
  msgstr ""
914
 
915
+ #: dashboard/publisher/adverts-edit.php:133
916
  msgid ""
917
  "Place the cursor in your AdCode where you want to add any of these tags and "
918
  "click to add it."
919
  msgstr ""
920
 
921
+ #: dashboard/publisher/adverts-edit.php:138
922
  msgid "Preview"
923
  msgstr ""
924
 
925
+ #: dashboard/publisher/adverts-edit.php:141
926
  msgid ""
927
  "Note: While this preview is an accurate one, it might look different then it "
928
  "does on the website."
929
  msgstr ""
930
 
931
+ #: dashboard/publisher/adverts-edit.php:142
932
  msgid ""
933
  "This is because of CSS differences. Your themes CSS file is not active here!"
934
  msgstr ""
935
 
936
+ #: dashboard/publisher/adverts-edit.php:147
937
  msgid "Banner asset"
938
  msgstr ""
939
 
940
+ #: dashboard/publisher/adverts-edit.php:150
941
  msgid "WordPress media:"
942
  msgstr ""
943
 
944
+ #: dashboard/publisher/adverts-edit.php:150
945
  msgid "Select Banner"
946
  msgstr ""
947
 
948
+ #: dashboard/publisher/adverts-edit.php:152
949
  msgid "- OR -"
950
  msgstr ""
951
 
952
+ #: dashboard/publisher/adverts-edit.php:154
953
  msgid "Banner folder:"
954
  msgstr ""
955
 
956
+ #: dashboard/publisher/adverts-edit.php:155
957
  msgid "No image selected"
958
  msgstr ""
959
 
960
+ #: dashboard/publisher/adverts-edit.php:159
961
  msgid "Use %asset% in the adcode instead of the file path."
962
  msgstr ""
963
 
964
+ #: dashboard/publisher/adverts-edit.php:159
965
  msgid ""
966
  "Use either the text field or the dropdown. If the textfield has content that "
967
  "field has priority."
968
  msgstr ""
969
 
970
+ #: dashboard/publisher/adverts-edit.php:164
971
  #: dashboard/settings/statistics.php:17
972
  msgid "Statistics"
973
  msgstr ""
974
 
975
+ #: dashboard/publisher/adverts-edit.php:166
976
  msgid "Enable click and impression tracking for this advert."
977
  msgstr ""
978
 
979
+ #: dashboard/publisher/adverts-edit.php:167
980
  msgid ""
981
  "Note: Clicktracking does not work for Javascript adverts such as those "
982
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
983
  "always supported."
984
  msgstr ""
985
 
986
+ #: dashboard/publisher/adverts-edit.php:177
987
  msgid "Yes, this ad will be used"
988
  msgstr ""
989
 
990
+ #: dashboard/publisher/adverts-edit.php:178
991
  msgid "No, do not show this ad anywhere"
992
  msgstr ""
993
 
994
+ #: dashboard/publisher/adverts-edit.php:185
995
+ #: dashboard/publisher/adverts-main.php:107
996
  #: dashboard/publisher/groups-edit.php:71
997
  #: dashboard/publisher/groups-main.php:89
998
  msgid "Get more features with AdRotate Pro."
999
  msgstr ""
1000
 
1001
  #: dashboard/publisher/adverts-edit.php:185
1002
+ #: dashboard/publisher/adverts-main.php:107
1003
+ #: dashboard/publisher/groups-edit.php:71
1004
+ #: dashboard/publisher/groups-main.php:89
1005
+ msgid "More information"
1006
+ msgstr ""
1007
+
1008
+ #: dashboard/publisher/adverts-edit.php:188
1009
+ #: dashboard/publisher/adverts-edit.php:288
1010
+ #: dashboard/publisher/adverts-edit.php:444
1011
+ #: dashboard/publisher/adverts-edit.php:485
1012
  msgid "Save Advert"
1013
  msgstr ""
1014
 
1015
+ #: dashboard/publisher/adverts-edit.php:189
1016
+ #: dashboard/publisher/adverts-edit.php:289
1017
+ #: dashboard/publisher/adverts-edit.php:445
1018
+ #: dashboard/publisher/adverts-edit.php:486
1019
  #: dashboard/publisher/groups-edit.php:150
1020
+ #: dashboard/publisher/groups-edit.php:299
1021
+ #: dashboard/publisher/groups-edit.php:391
1022
  msgid "Cancel"
1023
  msgstr ""
1024
 
1025
+ #: dashboard/publisher/adverts-edit.php:192
1026
+ #: dashboard/publisher/adverts-edit.php:427
1027
  #: dashboard/publisher/groups-edit.php:132
1028
+ #: dashboard/publisher/groups-edit.php:281
1029
  msgid "Usage"
1030
  msgstr ""
1031
 
1032
+ #: dashboard/publisher/adverts-edit.php:196
1033
+ #: dashboard/publisher/adverts-edit.php:431
1034
  #: dashboard/publisher/groups-edit.php:136
1035
+ #: dashboard/publisher/groups-edit.php:205
1036
+ #: dashboard/publisher/groups-edit.php:245
1037
+ #: dashboard/publisher/groups-edit.php:285
1038
  msgid "Widget"
1039
  msgstr ""
1040
 
1041
+ #: dashboard/publisher/adverts-edit.php:197
1042
+ #: dashboard/publisher/adverts-edit.php:432
1043
  msgid ""
1044
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1045
  "and select the advert or the group the advert is in."
1046
  msgstr ""
1047
 
1048
+ #: dashboard/publisher/adverts-edit.php:200
1049
+ #: dashboard/publisher/adverts-edit.php:435
1050
  #: dashboard/publisher/groups-edit.php:140
1051
+ #: dashboard/publisher/groups-edit.php:289
1052
  msgid "In a post or page"
1053
  msgstr ""
1054
 
1055
+ #: dashboard/publisher/adverts-edit.php:202
1056
+ #: dashboard/publisher/adverts-edit.php:437
1057
  #: dashboard/publisher/groups-edit.php:142
1058
+ #: dashboard/publisher/groups-edit.php:291
1059
  msgid "Directly in a theme"
1060
  msgstr ""
1061
 
1062
+ #: dashboard/publisher/adverts-edit.php:208
1063
  msgid "Schedule your advert"
1064
  msgstr ""
1065
 
1066
+ #: dashboard/publisher/adverts-edit.php:212
1067
  msgid "Start date (day/month/year)"
1068
  msgstr ""
1069
 
1070
+ #: dashboard/publisher/adverts-edit.php:233
1071
  msgid "End date (day/month/year)"
1072
  msgstr ""
1073
 
1074
+ #: dashboard/publisher/adverts-edit.php:256
1075
  msgid "Start time (hh:mm)"
1076
  msgstr ""
1077
 
1078
+ #: dashboard/publisher/adverts-edit.php:263
1079
  msgid "End time (hh:mm)"
1080
  msgstr ""
1081
 
1082
+ #: dashboard/publisher/adverts-edit.php:273
1083
  msgid "Maximum Clicks"
1084
  msgstr ""
1085
 
1086
+ #: dashboard/publisher/adverts-edit.php:274
1087
+ #: dashboard/publisher/adverts-edit.php:276
1088
  msgid "Leave empty or 0 to skip this."
1089
  msgstr ""
1090
 
1091
+ #: dashboard/publisher/adverts-edit.php:275
1092
  msgid "Maximum Impressions"
1093
  msgstr ""
1094
 
1095
+ #: dashboard/publisher/adverts-edit.php:280
1096
  msgid "Important"
1097
  msgstr ""
1098
 
1099
+ #: dashboard/publisher/adverts-edit.php:281
1100
  msgid ""
1101
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1102
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1103
  "14:00 hours. 6AM is 6:00 hours."
1104
  msgstr ""
1105
 
1106
+ #: dashboard/publisher/adverts-edit.php:285
1107
  msgid ""
1108
  "Create multiple and more advanced schedules for each advert with AdRotate "
1109
  "Pro."
1110
  msgstr ""
1111
 
1112
+ #: dashboard/publisher/adverts-edit.php:285
1113
+ #: dashboard/publisher/adverts-edit.php:354
1114
+ #: dashboard/publisher/adverts-edit.php:425
1115
+ #: dashboard/publisher/groups-edit.php:191
1116
  msgid "Upgrade today"
1117
  msgstr ""
1118
 
1119
+ #: dashboard/publisher/adverts-edit.php:292
1120
  #: dashboard/publisher/groups-edit.php:153
1121
  msgid "Advanced"
1122
  msgstr ""
1123
 
1124
+ #: dashboard/publisher/adverts-edit.php:293
1125
+ #: dashboard/publisher/adverts-edit.php:357
 
 
 
1126
  msgid "Available in AdRotate Pro!"
1127
  msgstr ""
1128
 
1129
+ #: dashboard/publisher/adverts-edit.php:298
1130
  #: dashboard/publisher/adverts-main.php:42
1131
+ #: dashboard/publisher/groups-edit.php:334
1132
  msgid "Weight"
1133
  msgstr ""
1134
 
1135
+ #: dashboard/publisher/adverts-edit.php:301
1136
  msgid "Few impressions"
1137
  msgstr ""
1138
 
1139
+ #: dashboard/publisher/adverts-edit.php:306
1140
  msgid "Less than average"
1141
  msgstr ""
1142
 
1143
+ #: dashboard/publisher/adverts-edit.php:311
1144
  msgid "Normal impressions"
1145
  msgstr ""
1146
 
1147
+ #: dashboard/publisher/adverts-edit.php:316
1148
  #, fuzzy
1149
  msgid "More than average"
1150
  msgstr "Plus d'informations..."
1151
 
1152
+ #: dashboard/publisher/adverts-edit.php:321
1153
  msgid "Many impressions"
1154
  msgstr ""
1155
 
1156
+ #: dashboard/publisher/adverts-edit.php:326
1157
  msgid "Mobile"
1158
  msgstr ""
1159
 
1160
+ #: dashboard/publisher/adverts-edit.php:328
1161
  msgid "Computers"
1162
  msgstr ""
1163
 
1164
+ #: dashboard/publisher/adverts-edit.php:331
1165
  msgid "Smartphones"
1166
  msgstr ""
1167
 
1168
+ #: dashboard/publisher/adverts-edit.php:334
1169
  msgid "Tablets"
1170
  msgstr ""
1171
 
1172
+ #: dashboard/publisher/adverts-edit.php:337
1173
  msgid ""
1174
  "Also enable mobile support in the group this advert goes in or these are "
1175
  "ignored."
1176
  msgstr ""
1177
 
1178
+ #: dashboard/publisher/adverts-edit.php:337
1179
+ msgid ""
1180
+ "Operating system detection only detects iOS/Android/Others or neither. Only "
1181
+ "works if Smartphones and/or Tablets is enabled."
1182
  msgstr ""
1183
 
1184
+ #: dashboard/publisher/adverts-edit.php:341
1185
+ msgid "Mobile OS"
 
1186
  msgstr ""
1187
 
1188
+ #: dashboard/publisher/adverts-edit.php:343
1189
+ msgid "iOS"
1190
  msgstr ""
1191
 
1192
+ #: dashboard/publisher/adverts-edit.php:346
1193
+ msgid "Android"
 
 
1194
  msgstr ""
1195
 
1196
+ #: dashboard/publisher/adverts-edit.php:349
1197
+ msgid "Others"
1198
  msgstr ""
1199
 
1200
+ #: dashboard/publisher/adverts-edit.php:354
1201
  msgid ""
1202
+ "With AdRotate Pro you can easily select which devices and mobile operating "
1203
+ "systems the advert should show on!"
1204
  msgstr ""
1205
 
1206
+ #: dashboard/publisher/adverts-edit.php:356
1207
+ #: dashboard/publisher/groups-edit.php:180
1208
+ #: dashboard/settings/advertisers.php:38
1209
+ msgid "Geo Targeting"
1210
  msgstr ""
1211
 
1212
+ #: dashboard/publisher/adverts-edit.php:357
1213
  msgid ""
1214
+ "Assign the advert to a group and enable that group to use Geo Targeting."
1215
+ msgstr ""
1216
+
1217
+ #: dashboard/publisher/adverts-edit.php:415
1218
+ msgid "A comma separated list of items:"
1219
  msgstr ""
1220
 
1221
+ #: dashboard/publisher/adverts-edit.php:415
1222
  msgid ""
1223
  "AdRotate does not check the validity of names so make sure you spell them "
1224
  "correctly!"
1225
  msgstr ""
1226
 
1227
+ #: dashboard/publisher/adverts-edit.php:425
 
 
 
 
 
 
 
 
 
 
 
 
1228
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1229
  msgstr ""
1230
 
1231
+ #: dashboard/publisher/adverts-edit.php:449
1232
  msgid "Select Groups"
1233
  msgstr ""
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:454
1236
  msgid "ID - Name"
1237
  msgstr ""
1238
 
1239
+ #: dashboard/publisher/adverts-edit.php:464
1240
  #: dashboard/publisher/groups-main.php:60
1241
  #: dashboard/settings/geotargeting.php:49
1242
  msgid "Default"
1243
  msgstr ""
1244
 
1245
+ #: dashboard/publisher/adverts-edit.php:465
1246
  #: dashboard/publisher/groups-main.php:61
1247
  msgid "Dynamic"
1248
  msgstr ""
1249
 
1250
+ #: dashboard/publisher/adverts-edit.php:465
1251
  #: dashboard/publisher/groups-main.php:61
1252
  msgid "second rotation"
1253
  msgstr ""
1254
 
1255
+ #: dashboard/publisher/adverts-edit.php:466
1256
  #: dashboard/publisher/groups-main.php:62
1257
  msgid "Block"
1258
  msgstr ""
1259
 
1260
+ #: dashboard/publisher/adverts-edit.php:466
1261
  #: dashboard/publisher/groups-main.php:62
1262
  msgid "grid"
1263
  msgstr ""
1264
 
1265
+ #: dashboard/publisher/adverts-edit.php:467
1266
+ #: dashboard/publisher/groups-edit.php:199
1267
  #: dashboard/publisher/groups-main.php:63
1268
  msgid "Post Injection"
1269
  msgstr ""
1270
 
1271
+ #: dashboard/publisher/adverts-edit.php:468
1272
  msgid "Geolocation"
1273
  msgstr ""
1274
 
1275
+ #: dashboard/publisher/adverts-edit.php:474
1276
  #: dashboard/publisher/groups-edit.php:57
1277
  #: dashboard/publisher/groups-main.php:70
1278
  msgid "Mode"
1313
  msgstr ""
1314
 
1315
  #: dashboard/publisher/adverts-error.php:71
1316
+ #: dashboard/publisher/groups-edit.php:384
1317
  msgid "Configuration errors."
1318
  msgstr ""
1319
 
1320
+ #: dashboard/publisher/adverts-error.php:72
1321
+ #: dashboard/publisher/groups-edit.php:385
1322
+ msgid "Expires soon."
1323
+ msgstr ""
1324
+
1325
+ #: dashboard/publisher/adverts-error.php:73
1326
+ #: dashboard/publisher/groups-edit.php:386
1327
+ msgid "Has expired."
1328
+ msgstr ""
1329
+
1330
  #: dashboard/publisher/adverts-main.php:12
1331
  msgid "Active Adverts"
1332
  msgstr ""
1342
  msgid "Today"
1343
  msgstr ""
1344
 
1345
+ #: dashboard/publisher/adverts-main.php:102
1346
  msgid "No adverts created yet!"
1347
  msgstr ""
1348
 
1394
  msgid "Edit Group"
1395
  msgstr ""
1396
 
1397
+ #: dashboard/publisher/groups-edit.php:51
1398
+ #: dashboard/publisher/groups-main.php:33
1399
+ msgid "Name"
1400
+ msgstr ""
1401
+
1402
  #: dashboard/publisher/groups-edit.php:60
1403
  msgid "Default - Show one ad at a time"
1404
  msgstr ""
1480
  msgstr ""
1481
 
1482
  #: dashboard/publisher/groups-edit.php:137
1483
+ #: dashboard/publisher/groups-edit.php:286
1484
  msgid ""
1485
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1486
  "Adverts\" and enter ID"
1487
  msgstr ""
1488
 
1489
  #: dashboard/publisher/groups-edit.php:149
1490
+ #: dashboard/publisher/groups-edit.php:298
1491
+ #: dashboard/publisher/groups-edit.php:390
1492
  msgid "Save Group"
1493
  msgstr ""
1494
 
1538
  "setting. Not every theme supports this feature."
1539
  msgstr ""
1540
 
 
 
 
 
 
1541
  #: dashboard/publisher/groups-edit.php:181
1542
  msgid "Enable Geo Targeting for this group."
1543
  msgstr ""
1558
  msgid "Do not forget to put at least one mobile advert in this group."
1559
  msgstr ""
1560
 
1561
+ #: dashboard/publisher/groups-edit.php:191
 
 
 
 
1562
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1563
  msgstr ""
1564
 
1565
+ #: dashboard/publisher/groups-edit.php:204
1566
+ #: dashboard/publisher/groups-edit.php:244
 
 
 
 
1567
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1568
  msgid "Disabled"
1569
  msgstr ""
1570
 
1571
  #: dashboard/publisher/groups-edit.php:206
1572
+ #: dashboard/publisher/groups-edit.php:246
1573
  msgid "Before content"
1574
  msgstr ""
1575
 
1576
  #: dashboard/publisher/groups-edit.php:207
1577
+ #: dashboard/publisher/groups-edit.php:247
1578
  msgid "After content"
1579
  msgstr ""
1580
 
1581
  #: dashboard/publisher/groups-edit.php:208
1582
+ #: dashboard/publisher/groups-edit.php:248
1583
  msgid "Before and after content"
1584
  msgstr ""
1585
 
1586
  #: dashboard/publisher/groups-edit.php:209
1587
+ #: dashboard/publisher/groups-edit.php:249
1588
  msgid "Inside the content..."
1589
  msgstr ""
1590
 
1591
  #: dashboard/publisher/groups-edit.php:215
1592
+ #: dashboard/publisher/groups-edit.php:255
1593
  msgid "after the middle paragraph"
1594
  msgstr ""
1595
 
1596
  #: dashboard/publisher/groups-edit.php:216
1597
+ #: dashboard/publisher/groups-edit.php:256
1598
  msgid "after the 1st paragraph"
1599
  msgstr ""
1600
 
1601
  #: dashboard/publisher/groups-edit.php:217
1602
+ #: dashboard/publisher/groups-edit.php:257
1603
  msgid "after the 2nd paragraph"
1604
  msgstr ""
1605
 
1606
  #: dashboard/publisher/groups-edit.php:218
1607
+ #: dashboard/publisher/groups-edit.php:258
1608
  msgid "after the 3rd paragraph"
1609
  msgstr ""
1610
 
1611
  #: dashboard/publisher/groups-edit.php:219
1612
+ #: dashboard/publisher/groups-edit.php:259
1613
  msgid "after the 4th paragraph"
1614
  msgstr ""
1615
 
1616
  #: dashboard/publisher/groups-edit.php:220
1617
+ #: dashboard/publisher/groups-edit.php:260
1618
  msgid "after the 5th paragraph"
1619
  msgstr ""
1620
 
1621
  #: dashboard/publisher/groups-edit.php:221
1622
+ #: dashboard/publisher/groups-edit.php:261
1623
  msgid "after the 6th paragraph"
1624
  msgstr ""
1625
 
1626
  #: dashboard/publisher/groups-edit.php:222
1627
+ #: dashboard/publisher/groups-edit.php:262
1628
  msgid "after the 7th paragraph"
1629
  msgstr ""
1630
 
1631
  #: dashboard/publisher/groups-edit.php:223
1632
+ #: dashboard/publisher/groups-edit.php:263
1633
  msgid "after the 8th paragraph"
1634
  msgstr ""
1635
 
 
 
 
 
 
 
 
 
1636
  #: dashboard/publisher/groups-edit.php:239
1637
+ msgid "Page Injection"
 
 
 
 
 
 
 
 
1638
  msgstr ""
1639
 
1640
+ #: dashboard/publisher/groups-edit.php:302
1641
  msgid "Wrapper code"
1642
  msgstr ""
1643
 
1644
+ #: dashboard/publisher/groups-edit.php:303
1645
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1646
  msgstr ""
1647
 
1648
+ #: dashboard/publisher/groups-edit.php:307
1649
  msgid "Before advert"
1650
  msgstr ""
1651
 
1652
+ #: dashboard/publisher/groups-edit.php:310
1653
+ #: dashboard/publisher/groups-edit.php:318
1654
+ msgid "Example:"
1655
+ msgstr ""
1656
+
1657
+ #: dashboard/publisher/groups-edit.php:311
1658
  msgid "Options:"
1659
  msgstr ""
1660
 
1661
+ #: dashboard/publisher/groups-edit.php:315
1662
  msgid "After advert"
1663
  msgstr ""
1664
 
1665
+ #: dashboard/publisher/groups-edit.php:324
1666
  msgid "Select adverts"
1667
  msgstr ""
1668
 
1669
+ #: dashboard/publisher/groups-edit.php:329
1670
  msgid "Choose adverts"
1671
  msgstr ""
1672
 
1673
+ #: dashboard/publisher/groups-edit.php:335
1674
  msgid "Visible until"
1675
  msgstr ""
1676
 
1677
+ #: dashboard/publisher/groups-edit.php:377
1678
  msgid "No adverts created!"
1679
  msgstr ""
1680
 
1681
+ #: dashboard/publisher/groups-main.php:12
1682
+ msgid "Manage Groups"
1683
+ msgstr ""
1684
+
1685
  #: dashboard/publisher/groups-main.php:21
1686
  msgid "Delete Group"
1687
  msgstr ""
1699
  msgstr ""
1700
 
1701
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1702
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
1703
+ #: dashboard/settings/maintenance.php:96
1704
  msgid "OK to continue, CANCEL to stop."
1705
  msgstr ""
1706
 
1765
  msgstr ""
1766
 
1767
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1768
+ #: dashboard/settings/maintenance.php:103 dashboard/settings/misc.php:43
1769
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1770
+ #: dashboard/settings/statistics.php:79
1771
  msgid "Update Options"
1772
  msgstr ""
1773
 
2062
  msgid "Are you sure you want to continue?"
2063
  msgstr ""
2064
 
2065
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
2066
+ #: dashboard/settings/maintenance.php:96
2067
  msgid "This might take a while and may slow down your site during this action!"
2068
  msgstr ""
2069
 
2072
  msgstr ""
2073
 
2074
  #: dashboard/settings/maintenance.php:32
2075
+ msgid "Delete old tracker data. (Does nothing if you use a memcached plugin)"
 
 
2076
  msgstr ""
2077
 
2078
+ #: dashboard/settings/maintenance.php:33
2079
  msgid ""
2080
+ "For when you create an advert, group or schedule and it does not save or "
2081
+ "keep changes you make."
2082
  msgstr ""
2083
 
2084
+ #: dashboard/settings/maintenance.php:33
2085
  msgid ""
2086
+ "Additionally you can clean up old schedules, tracker data and/or statistics. "
2087
+ "This will improve the speed of your site."
2088
  msgstr ""
2089
 
2090
+ #: dashboard/settings/maintenance.php:37
2091
  msgid "Re-evaluate Ads"
2092
  msgstr ""
2093
 
2094
+ #: dashboard/settings/maintenance.php:39
2095
  msgid "Re-evaluate all ads"
2096
  msgstr ""
2097
 
2098
+ #: dashboard/settings/maintenance.php:39
2099
  msgid "You are about to check all ads for errors."
2100
  msgstr ""
2101
 
2102
+ #: dashboard/settings/maintenance.php:40
2103
  msgid ""
2104
  "This will apply all evaluation rules to all ads to see if any error slipped "
2105
  "in. Normally you should not need this feature."
2106
  msgstr ""
2107
 
2108
+ #: dashboard/settings/maintenance.php:44
2109
  msgid ""
2110
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2111
  "database. They only apply to your ads/groups and stats. Not to other "
2118
  "is not a valid point in any case."
2119
  msgstr ""
2120
 
2121
+ #: dashboard/settings/maintenance.php:46
2122
  msgid "Troubleshooting"
2123
  msgstr ""
2124
 
2125
+ #: dashboard/settings/maintenance.php:47
2126
  msgid ""
2127
  "The below options are not meant for normal use and are only there for "
2128
  "developers to review saved settings or how ads are selected. These can be "
2130
  "SHOULD BE LEFT UNCHECKED!!"
2131
  msgstr ""
2132
 
2133
+ #: dashboard/settings/maintenance.php:50
2134
  msgid "Developer Debug"
2135
  msgstr ""
2136
 
2137
+ #: dashboard/settings/maintenance.php:52
2138
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2139
  msgstr ""
2140
 
2141
+ #: dashboard/settings/maintenance.php:53
2142
  msgid "View advert specs and (some) stats in the dashboard."
2143
  msgstr ""
2144
 
2145
+ #: dashboard/settings/maintenance.php:54
2146
  msgid ""
2147
  "Disable timers for clicks and impressions and enable a alert window for "
2148
  "clicktracking."
2149
  msgstr ""
2150
 
2151
+ #: dashboard/settings/maintenance.php:55
2152
  msgid "Temporarily disable encryption on the redirect url."
2153
  msgstr ""
2154
 
2155
+ #: dashboard/settings/maintenance.php:60
2156
  msgid "Status and Versions"
2157
  msgstr ""
2158
 
2159
+ #: dashboard/settings/maintenance.php:63
2160
  msgid "Current status of adverts"
2161
  msgstr ""
2162
 
2163
+ #: dashboard/settings/maintenance.php:64
2164
  msgid "Normal"
2165
  msgstr ""
2166
 
2167
+ #: dashboard/settings/maintenance.php:64
2168
  msgid "Error"
2169
  msgstr ""
2170
 
2171
+ #: dashboard/settings/maintenance.php:64
2172
  msgid "Expired"
2173
  msgstr ""
2174
 
2175
+ #: dashboard/settings/maintenance.php:64
2176
  msgid "Expires Soon"
2177
  msgstr ""
2178
 
2179
+ #: dashboard/settings/maintenance.php:64
2180
  msgid "Unknown"
2181
  msgstr ""
2182
 
2183
+ #: dashboard/settings/maintenance.php:67
2184
  msgid "Banners/assets Folder"
2185
  msgstr ""
2186
 
2187
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2188
  msgid "Exists and appears writable"
2189
  msgstr ""
2190
 
2191
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2192
  msgid "Not writable or does not exist"
2193
  msgstr ""
2194
 
2195
+ #: dashboard/settings/maintenance.php:71
2196
  msgid "Reports Folder"
2197
  msgstr ""
2198
 
2199
+ #: dashboard/settings/maintenance.php:77
2200
  msgid "Advert evaluation"
2201
  msgstr ""
2202
 
2203
+ #: dashboard/settings/maintenance.php:78 dashboard/settings/maintenance.php:80
2204
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2205
  msgstr ""
2206
 
2207
+ #: dashboard/settings/maintenance.php:79
2208
+ msgid "Clean Transients"
2209
  msgstr ""
2210
 
2211
+ #: dashboard/settings/maintenance.php:84
2212
  msgid "Internal Versions"
2213
  msgstr ""
2214
 
2215
+ #: dashboard/settings/maintenance.php:85
2216
  msgid ""
2217
  "Unless you experience database issues or a warning shows below, these "
2218
  "numbers are not really relevant for troubleshooting. Support may ask for "
2219
  "them to verify your database status."
2220
  msgstr ""
2221
 
2222
+ #: dashboard/settings/maintenance.php:88
2223
  msgid "AdRotate version"
2224
  msgstr ""
2225
 
2226
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2227
  msgid "Current:"
2228
  msgstr ""
2229
 
2230
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2231
  msgid "Should be:"
2232
  msgstr ""
2233
 
2234
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2235
  msgid "Previous:"
2236
  msgstr ""
2237
 
2238
+ #: dashboard/settings/maintenance.php:90
2239
  msgid "Database version"
2240
  msgstr ""
2241
 
2242
+ #: dashboard/settings/maintenance.php:96
2243
+ msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2244
+ msgstr ""
2245
+
2246
+ #: dashboard/settings/maintenance.php:96
2247
+ msgid "Make sure you have a database backup!"
2248
+ msgstr ""
2249
+
2250
+ #: dashboard/settings/maintenance.php:97
2251
+ msgid ""
2252
+ "Attempt to update the database and migrate settings where required or "
2253
+ "relevant. Normally you should not need or use this option."
2254
+ msgstr ""
2255
+
2256
  #: dashboard/settings/misc.php:16
2257
  msgid "Miscellaneous"
2258
  msgstr ""
2655
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2656
  msgstr ""
2657
 
2658
+ #: dashboard/settings/statistics.php:71
2659
+ msgid "Clean up temporary data"
2660
+ msgstr ""
2661
+
2662
+ #: dashboard/settings/statistics.php:73
2663
+ msgid ""
2664
+ "Periodically delete old tracker data. If you are using a memcached plugin "
2665
+ "you should disable this option!"
2666
+ msgstr ""
2667
+
2668
  #, fuzzy
2669
  #~ msgid ""
2670
  #~ "Upload your images to the banner folder and make sure the filename is in "
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: 2016-07-17 23:25+0800\n"
6
- "PO-Revision-Date: 2016-07-17 23:25+0800\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,110 +13,110 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:842
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
- #: adrotate-functions.php:845
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
- #: adrotate-functions.php:894
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:898
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:902
37
  msgid "Ad(s) deleted"
38
  msgstr "Anuncio(s) eliminado"
39
 
40
- #: adrotate-functions.php:906
41
  msgid "Group deleted"
42
  msgstr "Grupo borrado"
43
 
44
- #: adrotate-functions.php:910
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Estadisticas del Anuncio(s) restablecidas"
47
 
48
- #: adrotate-functions.php:914
49
  msgid "Ad(s) renewed"
50
  msgstr "Anuncio(s) renovado"
51
 
52
- #: adrotate-functions.php:918
53
  msgid "Ad(s) deactivated"
54
  msgstr "Anuncio(s) desactivado"
55
 
56
- #: adrotate-functions.php:922
57
  msgid "Ad(s) activated"
58
  msgstr "Anuncio(s) activado"
59
 
60
- #: adrotate-functions.php:926
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupo incluyendo sus anuncios eliminados"
63
 
64
- #: adrotate-functions.php:930
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Exportación Creada"
68
 
69
- #: adrotate-functions.php:935
70
  msgid "Settings saved"
71
  msgstr "Ajustes guardados"
72
 
73
- #: adrotate-functions.php:939
74
  msgid "Database optimized"
75
  msgstr "Base de Datos optimizada"
76
 
77
- #: adrotate-functions.php:943
78
  msgid "Database repaired"
79
  msgstr "Base de Datos reparada"
80
 
81
- #: adrotate-functions.php:947
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr "Los anuncios evaluados y los estados se corregiran cuando se requiera"
84
 
85
- #: adrotate-functions.php:951
86
  msgid "Empty database records removed"
87
  msgstr "Se han eliminado los registros vacios de la base de datos"
88
 
89
- #: adrotate-functions.php:956
90
  msgid "Action prohibited"
91
  msgstr "Acción prohibida"
92
 
93
- #: adrotate-functions.php:960
94
  msgid ""
95
  "The ad was saved but has an issue which might prevent it from working "
96
  "properly. Review the colored ad."
97
  msgstr ""
98
 
99
- #: adrotate-functions.php:964
100
  msgid "No data found in selected time period"
101
  msgstr "No se han encontrado datos en el período de tiempo seleccionado"
102
 
103
- #: adrotate-functions.php:968
104
  msgid "Database can only be optimized or cleaned once every hour"
105
  msgstr "La Base de datos sólo se puede optimizar o limpiar una vez cada hora"
106
 
107
- #: adrotate-functions.php:972
108
  msgid "Form can not be (partially) empty!"
109
  msgstr ""
110
 
111
- #: adrotate-functions.php:976
112
  msgid "No ads found."
113
  msgstr ""
114
 
115
- #: adrotate-functions.php:980
116
  msgid "Unexpected error"
117
  msgstr ""
118
 
119
- #: adrotate-manage-publisher.php:685
120
  msgid "AdRotate Advertiser"
121
  msgstr ""
122
 
@@ -197,222 +197,220 @@ msgid "An unknown error occured."
197
  msgstr "Ha ocurrido un error desconocido."
198
 
199
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
200
- #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
201
  msgid "Check adverts"
202
  msgstr ""
203
 
204
- #: adrotate-output.php:675
205
  msgid ""
206
  "You have enable caching support but W3 Total Cache is not active on your "
207
  "site!"
208
  msgstr ""
209
 
210
- #: adrotate-output.php:678
211
  msgid ""
212
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
213
  "not set."
214
  msgstr ""
215
 
216
- #: adrotate-output.php:683
217
  msgid "Your AdRotate Banner folder is not writable or does not exist."
218
  msgstr ""
219
 
220
- #: adrotate-output.php:723 dashboard/adrotatepro.php:99
221
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
222
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
223
- #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
224
- #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
225
- #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
226
- #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
227
  #: dashboard/settings/geotargeting.php:35
228
  #, fuzzy
229
  msgid "Buy now"
230
  msgstr "Comprar"
231
 
232
- #: adrotate-output.php:724
233
  msgid ""
234
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
235
  "to the <strong>PRO</strong> version"
236
  msgstr ""
237
 
238
- #: adrotate-output.php:724
239
  #, php-format
240
  msgid ""
241
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
242
  msgstr ""
243
 
244
- #: adrotate-output.php:724
245
  msgid "Thank you for your purchase!"
246
  msgstr ""
247
 
248
- #: adrotate-output.php:785
249
  msgid ""
250
- "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
251
- "this menu. Check out the"
252
  msgstr ""
253
 
254
- #: adrotate-output.php:785
255
  msgid "manuals"
256
  msgstr "manuales"
257
 
258
- #: adrotate-output.php:785 adrotate-output.php:852
259
  msgid "and"
260
  msgstr ""
261
 
262
- #: adrotate-output.php:785
263
  msgid "forums"
264
  msgstr ""
265
 
266
- #: adrotate-output.php:815
267
  #, fuzzy
268
  msgid "Useful Links"
269
  msgstr "Enlaces de interés"
270
 
271
- #: adrotate-output.php:816
272
  msgid "Useful links to learn more about AdRotate"
273
  msgstr ""
274
 
275
- #: adrotate-output.php:818
276
  msgid "AdRotate website"
277
  msgstr ""
278
 
279
- #: adrotate-output.php:819
280
  #, fuzzy
281
  msgid "Getting Started With AdRotate"
282
  msgstr "Obtenga más funciones con AdRotate Pro"
283
 
284
- #: adrotate-output.php:820
285
  #, fuzzy
286
  msgid "AdRotate manuals"
287
  msgstr "Información de AdRotate"
288
 
289
- #: adrotate-output.php:821
290
  #, fuzzy
291
  msgid "AdRotate Support Forum"
292
  msgstr "Tienda AdRotate"
293
 
294
- #: adrotate-output.php:844
295
- #, fuzzy
296
- msgid "Help AdRotate Grow"
297
- msgstr "Atascado con AdRotate? Yo te ayudaré!"
298
 
299
- #: adrotate-output.php:845
300
- msgid "Follow Arnan on Facebook"
301
  msgstr ""
302
 
303
- #: adrotate-output.php:852
304
  msgid ""
305
- "A lot of users only think to review AdRotate when something goes wrong while "
306
- "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
307
  msgstr ""
308
 
309
- #: adrotate-output.php:852
310
- msgid "If you find AdRotate useful please leave your honest"
311
  msgstr ""
312
 
313
- #: adrotate-output.php:852
314
  msgid "rating"
315
  msgstr ""
316
 
317
- #: adrotate-output.php:852
318
  #, fuzzy
319
  msgid "review"
320
  msgstr "Revise el anuncio aquí:"
321
 
322
- #: adrotate-output.php:852
323
  msgid "on WordPress.org to help AdRotate grow in a positive way"
324
  msgstr ""
325
 
326
- #: adrotate-output.php:885 dashboard/settings/notifications.php:50
327
  #: dashboard/settings/notifications.php:80
328
  msgid "Available in AdRotate Pro"
329
  msgstr "Disponible en AdRotate Pro"
330
 
331
- #: adrotate-output.php:885
332
  msgid "More information..."
333
  msgstr "Más información..."
334
 
335
- #: adrotate-output.php:886
336
  msgid "This feature is available in AdRotate Pro"
337
  msgstr "Esta función está disponible en AdRotate Pro"
338
 
339
- #: adrotate-output.php:886
340
  msgid "Learn more"
341
  msgstr "Aprender más"
342
 
343
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
344
- #: dashboard/publisher/adverts-edit.php:235
345
  msgid "January"
346
  msgstr "Enero"
347
 
348
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
349
- #: dashboard/publisher/adverts-edit.php:236
350
  msgid "February"
351
  msgstr "Febrero"
352
 
353
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
354
- #: dashboard/publisher/adverts-edit.php:237
355
  msgid "March"
356
  msgstr "Marzo"
357
 
358
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
359
- #: dashboard/publisher/adverts-edit.php:238
360
  msgid "April"
361
  msgstr "Abril"
362
 
363
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
364
- #: dashboard/publisher/adverts-edit.php:239
365
  msgid "May"
366
  msgstr "Mayo"
367
 
368
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
369
- #: dashboard/publisher/adverts-edit.php:240
370
  msgid "June"
371
  msgstr "Junio"
372
 
373
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
374
- #: dashboard/publisher/adverts-edit.php:241
375
  msgid "July"
376
  msgstr "Julio"
377
 
378
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
379
- #: dashboard/publisher/adverts-edit.php:242
380
  msgid "August"
381
  msgstr "Agosto"
382
 
383
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
384
- #: dashboard/publisher/adverts-edit.php:243
385
  msgid "September"
386
  msgstr "Septiembre"
387
 
388
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
389
- #: dashboard/publisher/adverts-edit.php:244
390
  msgid "October"
391
  msgstr "Octubre"
392
 
393
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
394
- #: dashboard/publisher/adverts-edit.php:245
395
  msgid "November"
396
  msgstr "Noviembre"
397
 
398
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
399
- #: dashboard/publisher/adverts-edit.php:246
400
  msgid "December"
401
  msgstr "Diciembre"
402
 
403
- #: adrotate-statistics.php:222
404
  msgid "Previous"
405
  msgstr "Anterior"
406
 
407
- #: adrotate-statistics.php:224
408
  msgid "This month"
409
  msgstr "Este més"
410
 
411
- #: adrotate-statistics.php:225
412
  msgid "Next"
413
  msgstr "Siguiente"
414
 
415
- #: adrotate-statistics.php:278
416
  msgid "No data to show!"
417
  msgstr "No hay datos para mostrar!"
418
 
@@ -457,285 +455,57 @@ msgstr "ID:"
457
  msgid "Fill in the ID of the type you want to display!"
458
  msgstr "Rellene con el ID del tipo que desea mostrar!"
459
 
460
- #: adrotate.php:102
461
  msgid "General Info"
462
  msgstr "Información General"
463
 
464
- #: adrotate.php:103
465
  msgid "AdRotate Pro"
466
  msgstr "AdRotate Pro"
467
 
468
- #: adrotate.php:104
469
- msgid "Manage Adverts"
470
- msgstr ""
471
-
472
- #: adrotate.php:105 dashboard/publisher/groups-main.php:12
473
- msgid "Manage Groups"
474
- msgstr "Gestionar Grupos"
475
-
476
- #: adrotate.php:106 adrotate.php:369
477
- #, fuzzy
478
- msgid "Manage Schedules"
479
- msgstr "Gestionar Programas"
480
 
481
- #: adrotate.php:107
482
- #, fuzzy
483
- msgid "Manage Media"
484
- msgstr "Gestionar Medios"
485
 
486
- #: adrotate.php:108
487
  msgid "Settings"
488
  msgstr "Ajustes"
489
 
490
- #: adrotate.php:128
491
  msgid "AdRotate Info"
492
  msgstr "Información de AdRotate"
493
 
494
- #: adrotate.php:146
495
  msgid "AdRotate Professional"
496
  msgstr "AdRotate Profesional"
497
 
498
- #: adrotate.php:186
499
  msgid "Advert Management"
500
  msgstr ""
501
 
502
- #: adrotate.php:244 adrotate.php:311 adrotate.php:364
503
  msgid "Manage"
504
  msgstr "Gestionar"
505
 
506
- #: adrotate.php:245 adrotate.php:312 adrotate.php:365
507
  msgid "Add New"
508
  msgstr "Añadir Nuevo"
509
 
510
- #: adrotate.php:305
511
  msgid "Group Management"
512
  msgstr "Administración de Grupos"
513
 
514
- #: adrotate.php:314
515
  msgid "Report"
516
  msgstr "Informe"
517
 
518
- #: adrotate.php:360
519
- #, fuzzy
520
- msgid "Schedule Management available in AdRotate Pro"
521
- msgstr "Disponible en AdRotate Pro"
522
-
523
- #: adrotate.php:370
524
- msgid ""
525
- "Schedule management and multiple schedules per advert is available in "
526
- "AdRotate Pro."
527
- msgstr ""
528
-
529
- #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
530
- #: dashboard/publisher/adverts-main.php:114
531
- #: dashboard/publisher/groups-edit.php:71
532
- #: dashboard/publisher/groups-main.php:89
533
- #, fuzzy
534
- msgid "More information"
535
- msgstr "Más información..."
536
-
537
- #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
538
- #: dashboard/publisher/adverts-error.php:19
539
- #: dashboard/publisher/adverts-main.php:20
540
- #: dashboard/publisher/groups-main.php:20
541
- msgid "Bulk Actions"
542
- msgstr "Acciones en Lote"
543
-
544
- #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
545
- #: dashboard/publisher/adverts-error.php:29
546
- #: dashboard/publisher/adverts-main.php:30
547
- #: dashboard/publisher/groups-main.php:24
548
- msgid "Go"
549
- msgstr "Aplicar"
550
-
551
- #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
552
- #: dashboard/publisher/adverts-error.php:39
553
- #: dashboard/publisher/adverts-main.php:39
554
- #: dashboard/publisher/groups-main.php:32
555
- msgid "ID"
556
- msgstr "ID"
557
-
558
- #: adrotate.php:388
559
- #, fuzzy
560
- msgid "Start"
561
- msgstr "Iniciar"
562
-
563
- #: adrotate.php:388
564
- #, fuzzy
565
- msgid "End"
566
- msgstr "Finalizar"
567
-
568
- #: adrotate.php:389
569
- msgid "Ads"
570
- msgstr "Anuncios"
571
-
572
- #: adrotate.php:391
573
- msgid "Max Impressions"
574
- msgstr "Número máximo de Impresiones"
575
-
576
- #: adrotate.php:392
577
- msgid "Max Clicks"
578
- msgstr "Número máximo de Clics"
579
-
580
- #: adrotate.php:422
581
- #, fuzzy
582
- msgid "No schedules created yet!"
583
- msgstr "Todavia no se han creado programas!"
584
-
585
- #: adrotate.php:427
586
- #, fuzzy
587
- msgid "Easily manage your schedules from here with AdRotate Pro."
588
- msgstr "Obtenga más funciones con AdRotate Pro"
589
-
590
- #: adrotate.php:427 adrotate.php:490
591
- #, fuzzy
592
- msgid "Upgrade today!"
593
- msgstr "Hoy"
594
-
595
- #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
596
- #: dashboard/publisher/groups-edit.php:383
597
- msgid "Expires soon."
598
- msgstr "Caduca pronto."
599
-
600
- #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
601
- #: dashboard/publisher/groups-edit.php:384
602
- msgid "Has expired."
603
- msgstr "Ha expirado."
604
-
605
- #: adrotate.php:452
606
- #, fuzzy
607
- msgid "Media Management available in AdRotate Pro"
608
- msgstr "Esta función está disponible en AdRotate Pro"
609
-
610
- #: adrotate.php:454
611
- msgid "Upload images to the AdRotate Pro banners folder from here."
612
- msgstr ""
613
-
614
- #: adrotate.php:454
615
- msgid ""
616
- "This is useful if you use responsive adverts with multiple images or have "
617
- "HTML5 adverts containing multiple files."
618
- msgstr ""
619
-
620
- #: adrotate.php:454
621
- #, fuzzy
622
- msgid "Media uploading and management is available in AdRotate Pro."
623
- msgstr "Esta función está disponible en AdRotate Pro"
624
-
625
- #: adrotate.php:456
626
- msgid "Upload new file"
627
- msgstr ""
628
-
629
- #: adrotate.php:457
630
- msgid "Accepted files:"
631
- msgstr ""
632
-
633
- #: adrotate.php:457
634
- msgid "For HTML5 ads you can also upload html and javascript files."
635
- msgstr ""
636
-
637
- #: adrotate.php:457
638
- #, fuzzy
639
- msgid "Maximum size is 512Kb."
640
- msgstr "El tamaño máximo es 512Kb."
641
-
642
- #: adrotate.php:457
643
- #, fuzzy
644
- msgid "Important:"
645
- msgstr "Importante:"
646
-
647
- #: adrotate.php:457
648
- #, fuzzy
649
- msgid ""
650
- "Make sure your file has no spaces or special characters in the name. Replace "
651
- "spaces with a - or _."
652
- msgstr ""
653
- "Asegúrese de que en el nombre de su archivo no contiene espacios ni "
654
- "caracteres especiales. Reemplace los espacios con un - o _."
655
-
656
- #: adrotate.php:457
657
- msgid ""
658
- "If you remove spaces from filenames for HTML5 adverts also edit the html "
659
- "file so it knows about the changed name. For example for the javascript file."
660
- msgstr ""
661
-
662
- #: adrotate.php:460
663
- #, fuzzy
664
- msgid ""
665
- "For responsive adverts make sure the filename is in the following format; "
666
- "\"imagename.full.ext\". A full set of sized images is strongly recommended."
667
- msgstr ""
668
- "Para los anuncios sensibles asegúrese de que el nombre del archivo es el "
669
- "siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
670
- "de imágenes del mismo tamaño."
671
-
672
- #: adrotate.php:461
673
- msgid ""
674
- "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
675
- "filename instead of \".full\" for the various viewports."
676
- msgstr ""
677
- "Para las imágenes de menor tamaño utilizar \".320\", \".480\", \".768\" or "
678
- "\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
679
- "diferentes visores."
680
-
681
- #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
682
- #: dashboard/publisher/groups-edit.php:316
683
- msgid "Example:"
684
- msgstr "Ejemplo:"
685
-
686
- #: adrotate.php:462
687
- #, fuzzy
688
- msgid ""
689
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
690
- "for different viewports."
691
- msgstr ""
692
- "image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio para "
693
- "distintas ventanas gráficas. Se necesita jQuery."
694
-
695
- #: adrotate.php:466
696
- msgid "Upload file"
697
- msgstr ""
698
-
699
- #: adrotate.php:466
700
- msgid "Click only once per file!"
701
- msgstr ""
702
-
703
- #: adrotate.php:469
704
- msgid "Available files in"
705
- msgstr ""
706
-
707
- #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
708
- #: dashboard/publisher/groups-main.php:33
709
- msgid "Name"
710
- msgstr "Nombre"
711
-
712
- #: adrotate.php:475
713
- #, fuzzy
714
- msgid "Actions"
715
- msgstr "Acciones"
716
-
717
- #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
718
- #: adrotate.php:484 adrotate.php:485 adrotate.php:486
719
- #: dashboard/publisher/adverts-disabled.php:22
720
- #: dashboard/publisher/adverts-error.php:21
721
- #: dashboard/publisher/adverts-main.php:22
722
- msgid "Delete"
723
- msgstr "Borrar"
724
-
725
- #: adrotate.php:490
726
- #, fuzzy
727
- msgid ""
728
- "Make sure the banner images are not in use by adverts when you delete them!"
729
- msgstr ""
730
- "¡Asegúrese de que las imágenes de banner no se están utilizando en los "
731
- "anuncios cuando las elimine!"
732
-
733
- #: adrotate.php:490
734
- #, fuzzy
735
- msgid "Manage your banner folder from here with AdRotate Pro."
736
- msgstr "Obtenga más funciones con AdRotate Pro"
737
-
738
- #: adrotate.php:516
739
  msgid "AdRotate Settings"
740
  msgstr "Ajustes AdRotate"
741
 
@@ -763,8 +533,9 @@ msgstr ""
763
  msgid ""
764
  "Target mobile users with ease and show the right adverts to smartphones, "
765
  "tablets and computers. Mix and match as you please and offer adverts that "
766
- "suit the device. Create as many mobile adverts as you want without effort "
767
- "and with a few easy to use options they show up where you want them to!"
 
768
  msgstr ""
769
 
770
  #: dashboard/adrotatepro.php:34
@@ -791,39 +562,40 @@ msgid ""
791
  "forum. Get a solution (usually) within one business day."
792
  msgstr ""
793
 
794
- #: dashboard/adrotatepro.php:48 dashboard/info.php:119
795
  msgid "AdRotate is brought to you by"
796
  msgstr "AdRotate es ofrecido por"
797
 
798
- #: dashboard/adrotatepro.php:74
799
  msgid "Schedule all campaigns with ease"
800
  msgstr "Programe todas las campañas con facilidad"
801
 
802
- #: dashboard/adrotatepro.php:77
803
  msgid ""
804
  "Schedule your adverts and set up advertising campaigns based on dates you or "
805
- "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
806
- "You name it, AdRotate schedules it. This makes planning your revenue stream "
807
- "much more easy. You can set one or many schedules for adverts."
 
808
  msgstr ""
809
 
810
- #: dashboard/adrotatepro.php:81
811
  msgid "Avoid adblockers"
812
  msgstr ""
813
 
814
- #: dashboard/adrotatepro.php:84
815
  msgid ""
816
- "Try and avoid adblockers so you adverts get the exposure you want them to "
817
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
818
  "adverts are less likely to be removed. Of-course make sure you create your "
819
  "adverts smartly so these features reach their full potential!"
820
  msgstr ""
821
 
822
- #: dashboard/adrotatepro.php:88
823
  msgid "Stay up-to-date with notifications"
824
  msgstr ""
825
 
826
- #: dashboard/adrotatepro.php:91
827
  msgid ""
828
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
829
  "adverts expire or need your attention. Additionally, send push notifications "
@@ -831,89 +603,89 @@ msgid ""
831
  "or when advertisers create new adverts. Never miss an expiration date again."
832
  msgstr ""
833
 
834
- #: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
835
- #: dashboard/info.php:78
836
  msgid "Buy AdRotate Professional"
837
  msgstr "Comprar AdRotate Profesional"
838
 
839
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
840
  msgid "Single License"
841
  msgstr ""
842
 
843
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
844
  msgid "For one WordPress installation."
845
  msgstr "Para una instalación de WordPress."
846
 
847
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
848
- #: dashboard/info.php:83 dashboard/info.php:90
849
  msgid "Duo License"
850
  msgstr "Duo Licencia"
851
 
852
- #: dashboard/adrotatepro.php:100 dashboard/info.php:83
853
  msgid "For two WordPress installations."
854
  msgstr "Para dos instalaciónes de WordPress."
855
 
856
- #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
857
- #: dashboard/info.php:84 dashboard/info.php:91
858
  msgid "Multi License"
859
  msgstr "Multi Licencia"
860
 
861
- #: dashboard/adrotatepro.php:101 dashboard/info.php:84
862
  msgid " For up to five WordPress installations."
863
  msgstr "Para un máximo de cinco instalaciones de WordPress."
864
 
865
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
866
- #: dashboard/info.php:85 dashboard/info.php:92
867
  msgid "Developer License"
868
  msgstr "Developer Licencia"
869
 
870
- #: dashboard/adrotatepro.php:102 dashboard/info.php:85
871
  msgid "Unlimited WordPress installations and/or networks."
872
  msgstr ""
873
 
874
- #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
875
- #: dashboard/info.php:86 dashboard/info.php:94
876
  msgid "Compare licenses"
877
  msgstr "Comparar licencias"
878
 
879
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
880
  msgid "Not sure which license is for you? Compare them..."
881
  msgstr "No está seguro de que licencia es para usted? Comparelas..."
882
 
883
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
884
  msgid "All Licenses"
885
  msgstr "Todas las licencias"
886
 
887
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
888
  msgid "Lifetime License"
889
  msgstr ""
890
 
891
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
892
  msgid "Single installation."
893
  msgstr ""
894
 
895
- #: dashboard/adrotatepro.php:112 dashboard/info.php:90
896
  msgid "Up to 2 installations."
897
  msgstr ""
898
 
899
- #: dashboard/adrotatepro.php:113 dashboard/info.php:91
900
  msgid "Up to 10 installations."
901
  msgstr ""
902
 
903
- #: dashboard/adrotatepro.php:114 dashboard/info.php:92
904
  msgid "Up to 25 installations or multisite networks."
905
  msgstr ""
906
 
907
- #: dashboard/adrotatepro.php:115 dashboard/info.php:93
908
  msgid ""
909
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
910
  msgstr ""
911
 
912
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
913
  msgid "Not sure which license is for you?"
914
  msgstr ""
915
 
916
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
917
  msgid "Compare Licenses"
918
  msgstr ""
919
 
@@ -929,38 +701,41 @@ msgstr "Su configuración"
929
  msgid "Adverts that need you"
930
  msgstr "Estos Anuncios"
931
 
932
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
933
- #: dashboard/publisher/groups-main.php:34
934
- msgid "Adverts"
935
- msgstr "Anuncios"
936
-
937
  #: dashboard/info.php:38
938
  msgid "(Almost) Expired"
939
  msgstr "Expirados (o casi)"
940
 
941
- #: dashboard/info.php:41
942
- msgid "Groups"
943
- msgstr "Grupos"
944
-
945
  #: dashboard/info.php:42
946
  msgid "Have errors"
947
  msgstr "Tienen errores"
948
 
949
- #: dashboard/info.php:48
950
- msgid "Support AdRotate"
951
- msgstr "Apoye a AdRotate"
952
-
953
- #: dashboard/info.php:55
954
  msgid ""
955
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
956
  "for updates about me and my plugins. Thank you!"
957
  msgstr ""
958
 
959
- #: dashboard/info.php:105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
960
  msgid "AdRotate News"
961
  msgstr ""
962
 
963
- #: dashboard/info.php:123
964
  msgid ""
965
  "I am a digital nomad in the Philippines. Click on my name to find out more "
966
  "about me and what I am doing. Thanks for your support and for using my "
@@ -971,17 +746,44 @@ msgstr ""
971
  msgid "Disabled Adverts"
972
  msgstr ""
973
 
 
 
 
 
 
 
 
974
  #: dashboard/publisher/adverts-disabled.php:21
975
- #: dashboard/publisher/adverts-edit.php:170
976
  msgid "Activate"
977
  msgstr "Activar"
978
 
 
 
 
 
 
 
979
  #: dashboard/publisher/adverts-disabled.php:23
980
  #: dashboard/publisher/adverts-error.php:22
981
  #: dashboard/publisher/adverts-main.php:23
982
  msgid "Reset stats"
983
  msgstr "Resetear Estadísticas"
984
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
985
  #: dashboard/publisher/adverts-disabled.php:36
986
  #: dashboard/publisher/adverts-error.php:40
987
  #: dashboard/publisher/adverts-main.php:40
@@ -989,7 +791,7 @@ msgid "Start / End"
989
  msgstr "Inio / Final"
990
 
991
  #: dashboard/publisher/adverts-disabled.php:37
992
- #: dashboard/publisher/adverts-edit.php:110
993
  #: dashboard/publisher/adverts-error.php:41
994
  #: dashboard/publisher/adverts-main.php:41
995
  msgid "Title"
@@ -997,7 +799,7 @@ msgstr "Título"
997
 
998
  #: dashboard/publisher/adverts-disabled.php:38
999
  #: dashboard/publisher/adverts-main.php:44
1000
- #: dashboard/publisher/groups-edit.php:329
1001
  #: dashboard/publisher/groups-main.php:36
1002
  msgid "Shown"
1003
  msgstr "Mostrado"
@@ -1006,7 +808,7 @@ msgstr "Mostrado"
1006
  #: dashboard/publisher/adverts-main.php:46
1007
  #: dashboard/publisher/adverts-report.php:36
1008
  #: dashboard/publisher/adverts-report.php:57
1009
- #: dashboard/publisher/groups-edit.php:330
1010
  #: dashboard/publisher/groups-main.php:38
1011
  #: dashboard/publisher/groups-report.php:37
1012
  #: dashboard/publisher/groups-report.php:58
@@ -1022,54 +824,54 @@ msgstr "Clics"
1022
  msgid "CTR"
1023
  msgstr "CTR"
1024
 
1025
- #: dashboard/publisher/adverts-disabled.php:74
1026
  #: dashboard/publisher/adverts-error.php:64
1027
- #: dashboard/publisher/adverts-main.php:87
1028
  #: dashboard/publisher/groups-main.php:70
1029
  msgid "Edit"
1030
  msgstr "Editar"
1031
 
1032
- #: dashboard/publisher/adverts-disabled.php:74
1033
  #: dashboard/publisher/adverts-error.php:64
1034
- #: dashboard/publisher/adverts-main.php:87
1035
  #: dashboard/publisher/groups-main.php:70
1036
  msgid "Stats"
1037
  msgstr "Estadísticas"
1038
 
1039
- #: dashboard/publisher/adverts-disabled.php:74
1040
  #: dashboard/publisher/adverts-error.php:64
1041
- #: dashboard/publisher/adverts-main.php:87
1042
  #, fuzzy
1043
  msgid "Groups:"
1044
  msgstr "Grupos"
1045
 
1046
- #: dashboard/publisher/adverts-edit.php:48
1047
  msgid "The AdCode cannot be empty!"
1048
  msgstr "El AdCode no puede estar vacío!"
1049
 
1050
- #: dashboard/publisher/adverts-edit.php:51
1051
  msgid ""
1052
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1053
  "use!"
1054
  msgstr ""
1055
 
1056
- #: dashboard/publisher/adverts-edit.php:54
1057
  msgid ""
1058
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1059
  "use!"
1060
  msgstr ""
1061
 
1062
- #: dashboard/publisher/adverts-edit.php:57
1063
  msgid ""
1064
  "There is a problem saving the image. Please reset your image and re-save the "
1065
  "ad!"
1066
  msgstr ""
1067
 
1068
- #: dashboard/publisher/adverts-edit.php:60
1069
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1070
  msgstr ""
1071
 
1072
- #: dashboard/publisher/adverts-edit.php:65
1073
  msgid ""
1074
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1075
  "the ad!"
@@ -1077,77 +879,77 @@ msgstr ""
1077
  "AdRotate no encuentra ningún error, pero el anuncio está marcado como "
1078
  "erróneo, intente volver a guardar la anuncio!"
1079
 
1080
- #: dashboard/publisher/adverts-edit.php:68
1081
  msgid "This ad is expired and currently not shown on your website!"
1082
  msgstr "Este anuncio ha caducado y actualmente no se muestra en su página web!"
1083
 
1084
- #: dashboard/publisher/adverts-edit.php:71
1085
  msgid "The ad will expire in less than 2 days!"
1086
  msgstr "El anuncio caducará en menos de 2 días!"
1087
 
1088
- #: dashboard/publisher/adverts-edit.php:74
1089
  msgid "This ad will expire in less than 7 days!"
1090
  msgstr "El anuncio caducará en menos de 7 días!"
1091
 
1092
- #: dashboard/publisher/adverts-edit.php:77
1093
  msgid "This ad has been disabled and does not rotate on your site!"
1094
  msgstr "Este anuncio ha sido desactivado y no rota en su página web!"
1095
 
1096
- #: dashboard/publisher/adverts-edit.php:102
1097
  msgid "New Advert"
1098
  msgstr "Nuevo Anuncio"
1099
 
1100
- #: dashboard/publisher/adverts-edit.php:104
1101
  msgid "Edit Advert"
1102
  msgstr "Editar Anuncio"
1103
 
1104
- #: dashboard/publisher/adverts-edit.php:116
1105
  msgid "AdCode"
1106
  msgstr ""
1107
 
1108
- #: dashboard/publisher/adverts-edit.php:121
1109
  msgid "Basic Examples:"
1110
  msgstr "Ejemplos Básicos:"
1111
 
1112
- #: dashboard/publisher/adverts-edit.php:128
1113
  msgid "Useful tags"
1114
  msgstr ""
1115
 
1116
- #: dashboard/publisher/adverts-edit.php:130
1117
  msgid "Insert the advert ID Number."
1118
  msgstr ""
1119
 
1120
- #: dashboard/publisher/adverts-edit.php:130
1121
  msgid "Required when selecting a asset below."
1122
  msgstr ""
1123
 
1124
- #: dashboard/publisher/adverts-edit.php:130
1125
  msgid "Insert the advert name."
1126
  msgstr ""
1127
 
1128
- #: dashboard/publisher/adverts-edit.php:130
1129
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1130
  msgstr ""
1131
 
1132
- #: dashboard/publisher/adverts-edit.php:130
1133
  msgid "Add inside the <a> tag to open advert in a new window."
1134
  msgstr ""
1135
 
1136
- #: dashboard/publisher/adverts-edit.php:130
1137
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1138
  msgstr ""
1139
 
1140
- #: dashboard/publisher/adverts-edit.php:130
1141
  msgid ""
1142
  "Place the cursor in your AdCode where you want to add any of these tags and "
1143
  "click to add it."
1144
  msgstr ""
1145
 
1146
- #: dashboard/publisher/adverts-edit.php:135
1147
  msgid "Preview"
1148
  msgstr "Vista previa"
1149
 
1150
- #: dashboard/publisher/adverts-edit.php:138
1151
  msgid ""
1152
  "Note: While this preview is an accurate one, it might look different then it "
1153
  "does on the website."
@@ -1155,42 +957,42 @@ msgstr ""
1155
  "Nota: Mientras que la previsualización de la imagen aqui mostrada es "
1156
  "precisa, en su pagina web puede tener un aspecto diferente."
1157
 
1158
- #: dashboard/publisher/adverts-edit.php:139
1159
  msgid ""
1160
  "This is because of CSS differences. Your themes CSS file is not active here!"
1161
  msgstr ""
1162
  "Esto es debido a las diferencias de CSS. En la zona administrativa no está "
1163
  "activo el archivo CSS de las plantillas (themes)!"
1164
 
1165
- #: dashboard/publisher/adverts-edit.php:144
1166
  msgid "Banner asset"
1167
  msgstr ""
1168
 
1169
- #: dashboard/publisher/adverts-edit.php:147
1170
  msgid "WordPress media:"
1171
  msgstr ""
1172
 
1173
- #: dashboard/publisher/adverts-edit.php:147
1174
  msgid "Select Banner"
1175
  msgstr "Seleccionar Banner"
1176
 
1177
- #: dashboard/publisher/adverts-edit.php:149
1178
  msgid "- OR -"
1179
  msgstr "- O -"
1180
 
1181
- #: dashboard/publisher/adverts-edit.php:151
1182
  msgid "Banner folder:"
1183
  msgstr "Carpeta Banner:"
1184
 
1185
- #: dashboard/publisher/adverts-edit.php:152
1186
  msgid "No image selected"
1187
  msgstr "Ninguna imagen seleccionada"
1188
 
1189
- #: dashboard/publisher/adverts-edit.php:156
1190
  msgid "Use %asset% in the adcode instead of the file path."
1191
  msgstr ""
1192
 
1193
- #: dashboard/publisher/adverts-edit.php:156
1194
  msgid ""
1195
  "Use either the text field or the dropdown. If the textfield has content that "
1196
  "field has priority."
@@ -1198,32 +1000,32 @@ msgstr ""
1198
  "Use el campo de texto o en el menú desplegable. Si el campo de texto tiene "
1199
  "un contenido, ese campo tiene prioridad."
1200
 
1201
- #: dashboard/publisher/adverts-edit.php:161
1202
  #: dashboard/settings/statistics.php:17
1203
  msgid "Statistics"
1204
  msgstr "Estadísticas"
1205
 
1206
- #: dashboard/publisher/adverts-edit.php:163
1207
  msgid "Enable click and impression tracking for this advert."
1208
  msgstr ""
1209
 
1210
- #: dashboard/publisher/adverts-edit.php:164
1211
  msgid ""
1212
  "Note: Clicktracking does not work for Javascript adverts such as those "
1213
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1214
  "always supported."
1215
  msgstr ""
1216
 
1217
- #: dashboard/publisher/adverts-edit.php:174
1218
  msgid "Yes, this ad will be used"
1219
  msgstr "Sí, se utilizará este anuncio"
1220
 
1221
- #: dashboard/publisher/adverts-edit.php:175
1222
  msgid "No, do not show this ad anywhere"
1223
  msgstr "No, no mostrar este anuncio en cualquier lugar"
1224
 
1225
- #: dashboard/publisher/adverts-edit.php:182
1226
- #: dashboard/publisher/adverts-main.php:114
1227
  #: dashboard/publisher/groups-edit.php:71
1228
  #: dashboard/publisher/groups-main.php:89
1229
  #, fuzzy
@@ -1231,216 +1033,227 @@ msgid "Get more features with AdRotate Pro."
1231
  msgstr "Obtenga más funciones con AdRotate Pro"
1232
 
1233
  #: dashboard/publisher/adverts-edit.php:185
1234
- #: dashboard/publisher/adverts-edit.php:285
1235
- #: dashboard/publisher/adverts-edit.php:408
1236
- #: dashboard/publisher/adverts-edit.php:449
 
 
 
 
 
 
 
 
1237
  msgid "Save Advert"
1238
  msgstr "Guardar Anuncio"
1239
 
1240
- #: dashboard/publisher/adverts-edit.php:186
1241
- #: dashboard/publisher/adverts-edit.php:286
1242
- #: dashboard/publisher/adverts-edit.php:409
1243
- #: dashboard/publisher/adverts-edit.php:450
1244
  #: dashboard/publisher/groups-edit.php:150
1245
- #: dashboard/publisher/groups-edit.php:297
1246
- #: dashboard/publisher/groups-edit.php:389
1247
  msgid "Cancel"
1248
  msgstr "Cancelar"
1249
 
1250
- #: dashboard/publisher/adverts-edit.php:189
1251
- #: dashboard/publisher/adverts-edit.php:391
1252
  #: dashboard/publisher/groups-edit.php:132
1253
- #: dashboard/publisher/groups-edit.php:279
1254
  msgid "Usage"
1255
  msgstr "Utilización"
1256
 
1257
- #: dashboard/publisher/adverts-edit.php:193
1258
- #: dashboard/publisher/adverts-edit.php:395
1259
  #: dashboard/publisher/groups-edit.php:136
1260
- #: dashboard/publisher/groups-edit.php:283
 
 
1261
  msgid "Widget"
1262
  msgstr ""
1263
 
1264
- #: dashboard/publisher/adverts-edit.php:194
1265
- #: dashboard/publisher/adverts-edit.php:396
1266
  msgid ""
1267
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1268
  "and select the advert or the group the advert is in."
1269
  msgstr ""
1270
 
1271
- #: dashboard/publisher/adverts-edit.php:197
1272
- #: dashboard/publisher/adverts-edit.php:399
1273
  #: dashboard/publisher/groups-edit.php:140
1274
- #: dashboard/publisher/groups-edit.php:287
1275
  msgid "In a post or page"
1276
  msgstr ""
1277
 
1278
- #: dashboard/publisher/adverts-edit.php:199
1279
- #: dashboard/publisher/adverts-edit.php:401
1280
  #: dashboard/publisher/groups-edit.php:142
1281
- #: dashboard/publisher/groups-edit.php:289
1282
  msgid "Directly in a theme"
1283
  msgstr ""
1284
 
1285
- #: dashboard/publisher/adverts-edit.php:205
1286
  msgid "Schedule your advert"
1287
  msgstr ""
1288
 
1289
- #: dashboard/publisher/adverts-edit.php:209
1290
  msgid "Start date (day/month/year)"
1291
  msgstr ""
1292
 
1293
- #: dashboard/publisher/adverts-edit.php:230
1294
  msgid "End date (day/month/year)"
1295
  msgstr ""
1296
 
1297
- #: dashboard/publisher/adverts-edit.php:253
1298
  msgid "Start time (hh:mm)"
1299
  msgstr ""
1300
 
1301
- #: dashboard/publisher/adverts-edit.php:260
1302
  msgid "End time (hh:mm)"
1303
  msgstr ""
1304
 
1305
- #: dashboard/publisher/adverts-edit.php:270
1306
  msgid "Maximum Clicks"
1307
  msgstr ""
1308
 
1309
- #: dashboard/publisher/adverts-edit.php:271
1310
- #: dashboard/publisher/adverts-edit.php:273
1311
  msgid "Leave empty or 0 to skip this."
1312
  msgstr "Dejar en blanco o 0 para omitir."
1313
 
1314
- #: dashboard/publisher/adverts-edit.php:272
1315
  msgid "Maximum Impressions"
1316
  msgstr ""
1317
 
1318
- #: dashboard/publisher/adverts-edit.php:277
1319
  msgid "Important"
1320
  msgstr ""
1321
 
1322
- #: dashboard/publisher/adverts-edit.php:278
1323
  msgid ""
1324
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1325
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1326
  "14:00 hours. 6AM is 6:00 hours."
1327
  msgstr ""
1328
 
1329
- #: dashboard/publisher/adverts-edit.php:282
1330
  msgid ""
1331
  "Create multiple and more advanced schedules for each advert with AdRotate "
1332
  "Pro."
1333
  msgstr ""
1334
 
1335
- #: dashboard/publisher/adverts-edit.php:282
1336
- #: dashboard/publisher/adverts-edit.php:345
1337
- #: dashboard/publisher/adverts-edit.php:389
1338
- #: dashboard/publisher/groups-edit.php:196
1339
  #, fuzzy
1340
  msgid "Upgrade today"
1341
  msgstr "Hoy"
1342
 
1343
- #: dashboard/publisher/adverts-edit.php:289
1344
  #: dashboard/publisher/groups-edit.php:153
1345
  msgid "Advanced"
1346
  msgstr "Avanzado"
1347
 
1348
- #: dashboard/publisher/adverts-edit.php:290
1349
- msgid "Everything below is optional."
1350
- msgstr "Todo lo siguiente es opcional."
1351
-
1352
- #: dashboard/publisher/adverts-edit.php:290
1353
  msgid "Available in AdRotate Pro!"
1354
  msgstr ""
1355
 
1356
- #: dashboard/publisher/adverts-edit.php:295
1357
  #: dashboard/publisher/adverts-main.php:42
1358
- #: dashboard/publisher/groups-edit.php:332
1359
  msgid "Weight"
1360
  msgstr "Prioridad"
1361
 
1362
- #: dashboard/publisher/adverts-edit.php:298
1363
  msgid "Few impressions"
1364
  msgstr ""
1365
 
1366
- #: dashboard/publisher/adverts-edit.php:303
1367
  msgid "Less than average"
1368
  msgstr "Menos de la media"
1369
 
1370
- #: dashboard/publisher/adverts-edit.php:308
1371
  msgid "Normal impressions"
1372
  msgstr ""
1373
 
1374
- #: dashboard/publisher/adverts-edit.php:313
1375
  msgid "More than average"
1376
  msgstr "Más de la media"
1377
 
1378
- #: dashboard/publisher/adverts-edit.php:318
1379
  msgid "Many impressions"
1380
  msgstr ""
1381
 
1382
- #: dashboard/publisher/adverts-edit.php:323
1383
  msgid "Mobile"
1384
  msgstr ""
1385
 
1386
- #: dashboard/publisher/adverts-edit.php:325
1387
  msgid "Computers"
1388
  msgstr ""
1389
 
1390
- #: dashboard/publisher/adverts-edit.php:328
1391
  msgid "Smartphones"
1392
  msgstr ""
1393
 
1394
- #: dashboard/publisher/adverts-edit.php:331
1395
  msgid "Tablets"
1396
  msgstr ""
1397
 
1398
- #: dashboard/publisher/adverts-edit.php:334
1399
  msgid ""
1400
  "Also enable mobile support in the group this advert goes in or these are "
1401
  "ignored."
1402
  msgstr ""
1403
 
1404
- #: dashboard/publisher/adverts-edit.php:338
1405
- #: dashboard/publisher/groups-edit.php:190
1406
- msgid "Sortorder"
 
1407
  msgstr ""
1408
 
1409
- #: dashboard/publisher/adverts-edit.php:340
1410
- #: dashboard/publisher/groups-edit.php:192
1411
- msgid "For administrative purposes set a sortorder."
1412
- msgstr "A efectos administrativos, establecer una Clasificación normal."
1413
 
1414
- #: dashboard/publisher/adverts-edit.php:340
1415
- msgid "Leave empty or 0 to skip this. Will default to ad id."
1416
- msgstr "Dejar en blanco o 0 para omitir. Se usará el ID del anuncio."
1417
 
1418
- #: dashboard/publisher/adverts-edit.php:345
1419
- msgid ""
1420
- "With AdRotate Pro you can easily select which devices the advert should show "
1421
- "on!"
1422
  msgstr ""
1423
 
1424
- #: dashboard/publisher/adverts-edit.php:347
1425
- msgid "Geo Targeting in AdRotate Pro"
1426
  msgstr ""
1427
 
1428
- #: dashboard/publisher/adverts-edit.php:348
1429
  msgid ""
1430
- "Assign the advert to a group and enable that group to use Geo Targeting."
 
1431
  msgstr ""
1432
 
1433
- #: dashboard/publisher/adverts-edit.php:352
1434
- msgid "Cities/States"
1435
- msgstr ""
 
 
1436
 
1437
- #: dashboard/publisher/adverts-edit.php:355
1438
  msgid ""
1439
- "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1440
- "states ISO codes are supported)"
1441
  msgstr ""
1442
 
1443
- #: dashboard/publisher/adverts-edit.php:355
 
 
 
 
1444
  #, fuzzy
1445
  msgid ""
1446
  "AdRotate does not check the validity of names so make sure you spell them "
@@ -1449,67 +1262,55 @@ msgstr ""
1449
  "AdRotate no comprueba la validez de los nombres, así que asegúrate de "
1450
  "escribirlos correctamente!"
1451
 
1452
- #: dashboard/publisher/adverts-edit.php:359
1453
- msgid "Countries"
1454
- msgstr ""
1455
-
1456
- #: dashboard/publisher/adverts-edit.php:384
1457
- msgid "Select the countries you want the adverts to show in."
1458
- msgstr "Seleccione los países en los que desea que los anuncios se muestren."
1459
-
1460
- #: dashboard/publisher/adverts-edit.php:384
1461
- msgid "Cities take priority and will be filtered first."
1462
- msgstr "Las ciudades tendrán prioridad y serán filtradas primero."
1463
-
1464
- #: dashboard/publisher/adverts-edit.php:389
1465
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1466
  msgstr ""
1467
 
1468
- #: dashboard/publisher/adverts-edit.php:413
1469
  msgid "Select Groups"
1470
  msgstr "Seleccione Grupos"
1471
 
1472
- #: dashboard/publisher/adverts-edit.php:418
1473
  msgid "ID - Name"
1474
  msgstr "ID - Nombre"
1475
 
1476
- #: dashboard/publisher/adverts-edit.php:428
1477
  #: dashboard/publisher/groups-main.php:60
1478
  #: dashboard/settings/geotargeting.php:49
1479
  msgid "Default"
1480
  msgstr "Predeterminado"
1481
 
1482
- #: dashboard/publisher/adverts-edit.php:429
1483
  #: dashboard/publisher/groups-main.php:61
1484
  msgid "Dynamic"
1485
  msgstr "Dinámico"
1486
 
1487
- #: dashboard/publisher/adverts-edit.php:429
1488
  #: dashboard/publisher/groups-main.php:61
1489
  msgid "second rotation"
1490
  msgstr "segundos rotación"
1491
 
1492
- #: dashboard/publisher/adverts-edit.php:430
1493
  #: dashboard/publisher/groups-main.php:62
1494
  msgid "Block"
1495
  msgstr "Block"
1496
 
1497
- #: dashboard/publisher/adverts-edit.php:430
1498
  #: dashboard/publisher/groups-main.php:62
1499
  msgid "grid"
1500
  msgstr "cuadrícula"
1501
 
1502
- #: dashboard/publisher/adverts-edit.php:431
1503
- #: dashboard/publisher/groups-edit.php:198
1504
  #: dashboard/publisher/groups-main.php:63
1505
  msgid "Post Injection"
1506
  msgstr "Integrarlo después"
1507
 
1508
- #: dashboard/publisher/adverts-edit.php:432
1509
  msgid "Geolocation"
1510
  msgstr "Geolocalización"
1511
 
1512
- #: dashboard/publisher/adverts-edit.php:438
1513
  #: dashboard/publisher/groups-edit.php:57
1514
  #: dashboard/publisher/groups-main.php:70
1515
  msgid "Mode"
@@ -1550,10 +1351,20 @@ msgid "For 7 days"
1550
  msgstr "Por 7 días"
1551
 
1552
  #: dashboard/publisher/adverts-error.php:71
1553
- #: dashboard/publisher/groups-edit.php:382
1554
  msgid "Configuration errors."
1555
  msgstr "Errores de configuración."
1556
 
 
 
 
 
 
 
 
 
 
 
1557
  #: dashboard/publisher/adverts-main.php:12
1558
  msgid "Active Adverts"
1559
  msgstr ""
@@ -1570,7 +1381,7 @@ msgstr "Exportar"
1570
  msgid "Today"
1571
  msgstr "Hoy"
1572
 
1573
- #: dashboard/publisher/adverts-main.php:109
1574
  msgid "No adverts created yet!"
1575
  msgstr ""
1576
 
@@ -1624,6 +1435,11 @@ msgstr "Nuevo Grupo"
1624
  msgid "Edit Group"
1625
  msgstr "Editar Grupo"
1626
 
 
 
 
 
 
1627
  #: dashboard/publisher/groups-edit.php:60
1628
  msgid "Default - Show one ad at a time"
1629
  msgstr "Predeterminado - Mostrar un anuncio a la vez"
@@ -1711,15 +1527,15 @@ msgstr ""
1711
  "Predeterminado: 6."
1712
 
1713
  #: dashboard/publisher/groups-edit.php:137
1714
- #: dashboard/publisher/groups-edit.php:284
1715
  msgid ""
1716
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1717
  "Adverts\" and enter ID"
1718
  msgstr ""
1719
 
1720
  #: dashboard/publisher/groups-edit.php:149
1721
- #: dashboard/publisher/groups-edit.php:296
1722
- #: dashboard/publisher/groups-edit.php:388
1723
  msgid "Save Group"
1724
  msgstr "Guardar Grupo"
1725
 
@@ -1773,11 +1589,6 @@ msgid ""
1773
  "setting. Not every theme supports this feature."
1774
  msgstr ""
1775
 
1776
- #: dashboard/publisher/groups-edit.php:180
1777
- #: dashboard/settings/advertisers.php:38
1778
- msgid "Geo Targeting"
1779
- msgstr "Geo Targeting"
1780
-
1781
  #: dashboard/publisher/groups-edit.php:181
1782
  msgid "Enable Geo Targeting for this group."
1783
  msgstr ""
@@ -1798,147 +1609,130 @@ msgstr ""
1798
  msgid "Do not forget to put at least one mobile advert in this group."
1799
  msgstr ""
1800
 
1801
- #: dashboard/publisher/groups-edit.php:192
1802
- msgid "Leave empty or 0 to skip this. Will default to group id."
1803
- msgstr ""
1804
- "Dejar en blanco o 0 para omitir. Se usará el ID predeterminado de grupo."
1805
-
1806
- #: dashboard/publisher/groups-edit.php:196
1807
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1808
  msgstr ""
1809
 
1810
- #: dashboard/publisher/groups-edit.php:201
1811
- msgid "In categories?"
1812
- msgstr ""
1813
-
1814
- #: dashboard/publisher/groups-edit.php:205
1815
- #: dashboard/publisher/groups-edit.php:243
1816
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1817
  msgid "Disabled"
1818
  msgstr "Desactivado"
1819
 
1820
  #: dashboard/publisher/groups-edit.php:206
1821
- #: dashboard/publisher/groups-edit.php:244
1822
  msgid "Before content"
1823
  msgstr "Antes del contenido"
1824
 
1825
  #: dashboard/publisher/groups-edit.php:207
1826
- #: dashboard/publisher/groups-edit.php:245
1827
  msgid "After content"
1828
  msgstr "Después del contenido"
1829
 
1830
  #: dashboard/publisher/groups-edit.php:208
1831
- #: dashboard/publisher/groups-edit.php:246
1832
  msgid "Before and after content"
1833
  msgstr "Antes y después del contenido"
1834
 
1835
  #: dashboard/publisher/groups-edit.php:209
1836
- #: dashboard/publisher/groups-edit.php:247
1837
  msgid "Inside the content..."
1838
  msgstr ""
1839
 
1840
  #: dashboard/publisher/groups-edit.php:215
1841
- #: dashboard/publisher/groups-edit.php:253
1842
  msgid "after the middle paragraph"
1843
  msgstr ""
1844
 
1845
  #: dashboard/publisher/groups-edit.php:216
1846
- #: dashboard/publisher/groups-edit.php:254
1847
  msgid "after the 1st paragraph"
1848
  msgstr ""
1849
 
1850
  #: dashboard/publisher/groups-edit.php:217
1851
- #: dashboard/publisher/groups-edit.php:255
1852
  msgid "after the 2nd paragraph"
1853
  msgstr ""
1854
 
1855
  #: dashboard/publisher/groups-edit.php:218
1856
- #: dashboard/publisher/groups-edit.php:256
1857
  msgid "after the 3rd paragraph"
1858
  msgstr ""
1859
 
1860
  #: dashboard/publisher/groups-edit.php:219
1861
- #: dashboard/publisher/groups-edit.php:257
1862
  msgid "after the 4th paragraph"
1863
  msgstr ""
1864
 
1865
  #: dashboard/publisher/groups-edit.php:220
1866
- #: dashboard/publisher/groups-edit.php:258
1867
  msgid "after the 5th paragraph"
1868
  msgstr ""
1869
 
1870
  #: dashboard/publisher/groups-edit.php:221
1871
- #: dashboard/publisher/groups-edit.php:259
1872
  msgid "after the 6th paragraph"
1873
  msgstr ""
1874
 
1875
  #: dashboard/publisher/groups-edit.php:222
1876
- #: dashboard/publisher/groups-edit.php:260
1877
  msgid "after the 7th paragraph"
1878
  msgstr ""
1879
 
1880
  #: dashboard/publisher/groups-edit.php:223
1881
- #: dashboard/publisher/groups-edit.php:261
1882
  msgid "after the 8th paragraph"
1883
  msgstr ""
1884
 
1885
- #: dashboard/publisher/groups-edit.php:229
1886
- msgid "Which categories?"
1887
- msgstr "¿En qué categorías?"
1888
-
1889
- #: dashboard/publisher/groups-edit.php:234
1890
- msgid "Click the categories posts you want the adverts to show in."
1891
- msgstr ""
1892
- "Haga clic en las categorías de los mensajes en los que mostrar los anuncios."
1893
-
1894
  #: dashboard/publisher/groups-edit.php:239
1895
- msgid "In pages?"
1896
  msgstr ""
1897
 
1898
- #: dashboard/publisher/groups-edit.php:267
1899
- msgid "Which pages?"
1900
- msgstr "¿En qué páginas?"
1901
-
1902
- #: dashboard/publisher/groups-edit.php:272
1903
- msgid "Click the pages you want the adverts to show in."
1904
- msgstr "Haga clic en las páginas en las que mostrar los anuncios."
1905
-
1906
- #: dashboard/publisher/groups-edit.php:300
1907
  msgid "Wrapper code"
1908
  msgstr "Código"
1909
 
1910
- #: dashboard/publisher/groups-edit.php:301
1911
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1912
  msgstr ""
1913
 
1914
- #: dashboard/publisher/groups-edit.php:305
1915
  msgid "Before advert"
1916
  msgstr ""
1917
 
1918
- #: dashboard/publisher/groups-edit.php:309
 
 
 
 
 
1919
  msgid "Options:"
1920
  msgstr "Opciones:"
1921
 
1922
- #: dashboard/publisher/groups-edit.php:313
1923
  msgid "After advert"
1924
  msgstr ""
1925
 
1926
- #: dashboard/publisher/groups-edit.php:322
1927
  msgid "Select adverts"
1928
  msgstr ""
1929
 
1930
- #: dashboard/publisher/groups-edit.php:327
1931
  msgid "Choose adverts"
1932
  msgstr ""
1933
 
1934
- #: dashboard/publisher/groups-edit.php:333
1935
  msgid "Visible until"
1936
  msgstr "Visible hasta"
1937
 
1938
- #: dashboard/publisher/groups-edit.php:375
1939
  msgid "No adverts created!"
1940
  msgstr ""
1941
 
 
 
 
 
1942
  #: dashboard/publisher/groups-main.php:21
1943
  msgid "Delete Group"
1944
  msgstr "Eliminar Grupo"
@@ -1956,7 +1750,8 @@ msgid "This action can not be undone!"
1956
  msgstr "Esta acción no se puede deshacerse!"
1957
 
1958
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1959
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
1960
  msgid "OK to continue, CANCEL to stop."
1961
  msgstr "OK para continuar, CANCELAR para detenerlo."
1962
 
@@ -2023,9 +1818,9 @@ msgid ""
2023
  msgstr ""
2024
 
2025
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2026
- #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2027
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2028
- #: dashboard/settings/statistics.php:73
2029
  msgid "Update Options"
2030
  msgstr "Actualizar Opciones"
2031
 
@@ -2333,7 +2128,8 @@ msgstr ""
2333
  msgid "Are you sure you want to continue?"
2334
  msgstr "¿Está seguro que desea continuar?"
2335
 
2336
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
2337
  msgid "This might take a while and may slow down your site during this action!"
2338
  msgstr ""
2339
  "Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
@@ -2343,36 +2139,34 @@ msgid "Delete stats older than 356 days (Optional)."
2343
  msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
2344
 
2345
  #: dashboard/settings/maintenance.php:32
2346
- msgid ""
2347
- "AdRotate creates empty records when you start making ads, groups or "
2348
- "schedules. In rare occasions these records are faulty."
2349
  msgstr ""
2350
 
2351
- #: dashboard/settings/maintenance.php:32
2352
  msgid ""
2353
- "If you made an ad, group or schedule that does not save when you make it use "
2354
- "this button to delete those empty records."
2355
  msgstr ""
2356
 
2357
- #: dashboard/settings/maintenance.php:32
2358
  msgid ""
2359
- "Additionally you can clean up old schedules and/or statistics. This will "
2360
- "improve the speed of your site."
2361
  msgstr ""
2362
 
2363
- #: dashboard/settings/maintenance.php:36
2364
  msgid "Re-evaluate Ads"
2365
  msgstr "Reevaluar Anuncios"
2366
 
2367
- #: dashboard/settings/maintenance.php:38
2368
  msgid "Re-evaluate all ads"
2369
  msgstr "Reevaluar todos los Anuncios"
2370
 
2371
- #: dashboard/settings/maintenance.php:38
2372
  msgid "You are about to check all ads for errors."
2373
  msgstr "Vas a comprobar todos los anuncios para localizar errores."
2374
 
2375
- #: dashboard/settings/maintenance.php:39
2376
  msgid ""
2377
  "This will apply all evaluation rules to all ads to see if any error slipped "
2378
  "in. Normally you should not need this feature."
@@ -2380,7 +2174,7 @@ msgstr ""
2380
  "Esto aplicará las reglas de evaluación a todos los anuncios para ver si hay "
2381
  "algún error. Normalmente no debería necesitar esta función."
2382
 
2383
- #: dashboard/settings/maintenance.php:43
2384
  msgid ""
2385
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2386
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2393,11 +2187,11 @@ msgid ""
2393
  "is not a valid point in any case."
2394
  msgstr ""
2395
 
2396
- #: dashboard/settings/maintenance.php:45
2397
  msgid "Troubleshooting"
2398
  msgstr "Solución de problemas"
2399
 
2400
- #: dashboard/settings/maintenance.php:46
2401
  msgid ""
2402
  "The below options are not meant for normal use and are only there for "
2403
  "developers to review saved settings or how ads are selected. These can be "
@@ -2405,19 +2199,19 @@ msgid ""
2405
  "SHOULD BE LEFT UNCHECKED!!"
2406
  msgstr ""
2407
 
2408
- #: dashboard/settings/maintenance.php:49
2409
  msgid "Developer Debug"
2410
  msgstr "Depurar (Test) del Desarrollador"
2411
 
2412
- #: dashboard/settings/maintenance.php:51
2413
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2414
  msgstr ""
2415
 
2416
- #: dashboard/settings/maintenance.php:52
2417
  msgid "View advert specs and (some) stats in the dashboard."
2418
  msgstr ""
2419
 
2420
- #: dashboard/settings/maintenance.php:53
2421
  msgid ""
2422
  "Disable timers for clicks and impressions and enable a alert window for "
2423
  "clicktracking."
@@ -2425,97 +2219,111 @@ msgstr ""
2425
  "Deshabilitar contadores de tiempo de clics e impresiones y activar una "
2426
  "ventana de alerta para el seguimiento de clics."
2427
 
2428
- #: dashboard/settings/maintenance.php:54
2429
  msgid "Temporarily disable encryption on the redirect url."
2430
  msgstr "Desactivar temporalmente el cifrado en la redireccion de la url."
2431
 
2432
- #: dashboard/settings/maintenance.php:59
2433
  msgid "Status and Versions"
2434
  msgstr ""
2435
 
2436
- #: dashboard/settings/maintenance.php:62
2437
  msgid "Current status of adverts"
2438
  msgstr "Estado actual de los anuncios"
2439
 
2440
- #: dashboard/settings/maintenance.php:63
2441
  msgid "Normal"
2442
  msgstr "Normal"
2443
 
2444
- #: dashboard/settings/maintenance.php:63
2445
  msgid "Error"
2446
  msgstr "Error"
2447
 
2448
- #: dashboard/settings/maintenance.php:63
2449
  msgid "Expired"
2450
  msgstr "Caducado"
2451
 
2452
- #: dashboard/settings/maintenance.php:63
2453
  msgid "Expires Soon"
2454
  msgstr "Caduca Pronto"
2455
 
2456
- #: dashboard/settings/maintenance.php:63
2457
  msgid "Unknown"
2458
  msgstr ""
2459
 
2460
- #: dashboard/settings/maintenance.php:66
2461
  msgid "Banners/assets Folder"
2462
  msgstr ""
2463
 
2464
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2465
  msgid "Exists and appears writable"
2466
  msgstr ""
2467
 
2468
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2469
  msgid "Not writable or does not exist"
2470
  msgstr ""
2471
 
2472
- #: dashboard/settings/maintenance.php:70
2473
  msgid "Reports Folder"
2474
  msgstr ""
2475
 
2476
- #: dashboard/settings/maintenance.php:76
2477
  msgid "Advert evaluation"
2478
  msgstr ""
2479
 
2480
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2481
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2482
  msgstr ""
2483
 
2484
- #: dashboard/settings/maintenance.php:78
2485
- msgid "Trackerdata cleanup"
2486
  msgstr ""
2487
 
2488
- #: dashboard/settings/maintenance.php:83
2489
  msgid "Internal Versions"
2490
  msgstr ""
2491
 
2492
- #: dashboard/settings/maintenance.php:84
2493
  msgid ""
2494
  "Unless you experience database issues or a warning shows below, these "
2495
  "numbers are not really relevant for troubleshooting. Support may ask for "
2496
  "them to verify your database status."
2497
  msgstr ""
2498
 
2499
- #: dashboard/settings/maintenance.php:87
2500
  msgid "AdRotate version"
2501
  msgstr ""
2502
 
2503
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2504
  msgid "Current:"
2505
  msgstr ""
2506
 
2507
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2508
  msgid "Should be:"
2509
  msgstr ""
2510
 
2511
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2512
  msgid "Previous:"
2513
  msgstr ""
2514
 
2515
- #: dashboard/settings/maintenance.php:89
2516
  msgid "Database version"
2517
  msgstr ""
2518
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2519
  #: dashboard/settings/misc.php:16
2520
  msgid "Miscellaneous"
2521
  msgstr "Varios"
@@ -2945,6 +2753,161 @@ msgid ""
2945
  msgstr ""
2946
  "Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
2947
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2948
  #~ msgid "Enable responsive support for this advert."
2949
  #~ msgstr "Habilitar soporte sensible para este anuncio."
2950
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate v 3.10.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-22 22:11+0800\n"
6
+ "PO-Revision-Date: 2017-01-22 22:11+0800\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.11\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:721
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
+ #: adrotate-functions.php:724
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
+ #: adrotate-functions.php:773
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:777
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:781
37
  msgid "Ad(s) deleted"
38
  msgstr "Anuncio(s) eliminado"
39
 
40
+ #: adrotate-functions.php:785
41
  msgid "Group deleted"
42
  msgstr "Grupo borrado"
43
 
44
+ #: adrotate-functions.php:789
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Estadisticas del Anuncio(s) restablecidas"
47
 
48
+ #: adrotate-functions.php:793
49
  msgid "Ad(s) renewed"
50
  msgstr "Anuncio(s) renovado"
51
 
52
+ #: adrotate-functions.php:797
53
  msgid "Ad(s) deactivated"
54
  msgstr "Anuncio(s) desactivado"
55
 
56
+ #: adrotate-functions.php:801
57
  msgid "Ad(s) activated"
58
  msgstr "Anuncio(s) activado"
59
 
60
+ #: adrotate-functions.php:805
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupo incluyendo sus anuncios eliminados"
63
 
64
+ #: adrotate-functions.php:809
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Exportación Creada"
68
 
69
+ #: adrotate-functions.php:814
70
  msgid "Settings saved"
71
  msgstr "Ajustes guardados"
72
 
73
+ #: adrotate-functions.php:818
74
  msgid "Database optimized"
75
  msgstr "Base de Datos optimizada"
76
 
77
+ #: adrotate-functions.php:822
78
  msgid "Database repaired"
79
  msgstr "Base de Datos reparada"
80
 
81
+ #: adrotate-functions.php:826
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr "Los anuncios evaluados y los estados se corregiran cuando se requiera"
84
 
85
+ #: adrotate-functions.php:830
86
  msgid "Empty database records removed"
87
  msgstr "Se han eliminado los registros vacios de la base de datos"
88
 
89
+ #: adrotate-functions.php:835
90
  msgid "Action prohibited"
91
  msgstr "Acción prohibida"
92
 
93
+ #: adrotate-functions.php:839
94
  msgid ""
95
  "The ad was saved but has an issue which might prevent it from working "
96
  "properly. Review the colored ad."
97
  msgstr ""
98
 
99
+ #: adrotate-functions.php:843
100
  msgid "No data found in selected time period"
101
  msgstr "No se han encontrado datos en el período de tiempo seleccionado"
102
 
103
+ #: adrotate-functions.php:847
104
  msgid "Database can only be optimized or cleaned once every hour"
105
  msgstr "La Base de datos sólo se puede optimizar o limpiar una vez cada hora"
106
 
107
+ #: adrotate-functions.php:851
108
  msgid "Form can not be (partially) empty!"
109
  msgstr ""
110
 
111
+ #: adrotate-functions.php:855
112
  msgid "No ads found."
113
  msgstr ""
114
 
115
+ #: adrotate-functions.php:859
116
  msgid "Unexpected error"
117
  msgstr ""
118
 
119
+ #: adrotate-manage-publisher.php:677
120
  msgid "AdRotate Advertiser"
121
  msgstr ""
122
 
197
  msgstr "Ha ocurrido un error desconocido."
198
 
199
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
 
200
  msgid "Check adverts"
201
  msgstr ""
202
 
203
+ #: adrotate-output.php:664
204
  msgid ""
205
  "You have enable caching support but W3 Total Cache is not active on your "
206
  "site!"
207
  msgstr ""
208
 
209
+ #: adrotate-output.php:667
210
  msgid ""
211
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
212
  "not set."
213
  msgstr ""
214
 
215
+ #: adrotate-output.php:672
216
  msgid "Your AdRotate Banner folder is not writable or does not exist."
217
  msgstr ""
218
 
219
+ #: adrotate-output.php:712 dashboard/adrotatepro.php:86
220
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:88
221
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:98
222
+ #: dashboard/adrotatepro.php:99 dashboard/adrotatepro.php:100
223
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:64 dashboard/info.php:65
224
+ #: dashboard/info.php:66 dashboard/info.php:67 dashboard/info.php:71
225
+ #: dashboard/info.php:72 dashboard/info.php:73 dashboard/info.php:74
226
  #: dashboard/settings/geotargeting.php:35
227
  #, fuzzy
228
  msgid "Buy now"
229
  msgstr "Comprar"
230
 
231
+ #: adrotate-output.php:713
232
  msgid ""
233
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
234
  "to the <strong>PRO</strong> version"
235
  msgstr ""
236
 
237
+ #: adrotate-output.php:713
238
  #, php-format
239
  msgid ""
240
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:713
244
  msgid "Thank you for your purchase!"
245
  msgstr ""
246
 
247
+ #: adrotate-output.php:774
248
  msgid ""
249
+ "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
250
+ "menu. If you need help getting started take a look at the"
251
  msgstr ""
252
 
253
+ #: adrotate-output.php:774
254
  msgid "manuals"
255
  msgstr "manuales"
256
 
257
+ #: adrotate-output.php:774 adrotate-output.php:844
258
  msgid "and"
259
  msgstr ""
260
 
261
+ #: adrotate-output.php:774
262
  msgid "forums"
263
  msgstr ""
264
 
265
+ #: adrotate-output.php:807
266
  #, fuzzy
267
  msgid "Useful Links"
268
  msgstr "Enlaces de interés"
269
 
270
+ #: adrotate-output.php:808
271
  msgid "Useful links to learn more about AdRotate"
272
  msgstr ""
273
 
274
+ #: adrotate-output.php:810
275
  msgid "AdRotate website"
276
  msgstr ""
277
 
278
+ #: adrotate-output.php:811
279
  #, fuzzy
280
  msgid "Getting Started With AdRotate"
281
  msgstr "Obtenga más funciones con AdRotate Pro"
282
 
283
+ #: adrotate-output.php:812
284
  #, fuzzy
285
  msgid "AdRotate manuals"
286
  msgstr "Información de AdRotate"
287
 
288
+ #: adrotate-output.php:813
289
  #, fuzzy
290
  msgid "AdRotate Support Forum"
291
  msgstr "Tienda AdRotate"
292
 
293
+ #: adrotate-output.php:836 dashboard/info.php:46
294
+ msgid "Support AdRotate"
295
+ msgstr "Apoye a AdRotate"
 
296
 
297
+ #: adrotate-output.php:837
298
+ msgid "Check out my website"
299
  msgstr ""
300
 
301
+ #: adrotate-output.php:844
302
  msgid ""
303
+ "Many users only think to review AdRotate when something goes wrong while "
304
+ "thousands of people happily use AdRotate."
305
  msgstr ""
306
 
307
+ #: adrotate-output.php:844
308
+ msgid "If you find AdRotate useful please leave your"
309
  msgstr ""
310
 
311
+ #: adrotate-output.php:844
312
  msgid "rating"
313
  msgstr ""
314
 
315
+ #: adrotate-output.php:844
316
  #, fuzzy
317
  msgid "review"
318
  msgstr "Revise el anuncio aquí:"
319
 
320
+ #: adrotate-output.php:844
321
  msgid "on WordPress.org to help AdRotate grow in a positive way"
322
  msgstr ""
323
 
324
+ #: adrotate-output.php:870 dashboard/settings/notifications.php:50
325
  #: dashboard/settings/notifications.php:80
326
  msgid "Available in AdRotate Pro"
327
  msgstr "Disponible en AdRotate Pro"
328
 
329
+ #: adrotate-output.php:870
330
  msgid "More information..."
331
  msgstr "Más información..."
332
 
333
+ #: adrotate-output.php:871
334
  msgid "This feature is available in AdRotate Pro"
335
  msgstr "Esta función está disponible en AdRotate Pro"
336
 
337
+ #: adrotate-output.php:871
338
  msgid "Learn more"
339
  msgstr "Aprender más"
340
 
341
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:217
342
+ #: dashboard/publisher/adverts-edit.php:238
343
  msgid "January"
344
  msgstr "Enero"
345
 
346
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:218
347
+ #: dashboard/publisher/adverts-edit.php:239
348
  msgid "February"
349
  msgstr "Febrero"
350
 
351
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:219
352
+ #: dashboard/publisher/adverts-edit.php:240
353
  msgid "March"
354
  msgstr "Marzo"
355
 
356
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:220
357
+ #: dashboard/publisher/adverts-edit.php:241
358
  msgid "April"
359
  msgstr "Abril"
360
 
361
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:221
362
+ #: dashboard/publisher/adverts-edit.php:242
363
  msgid "May"
364
  msgstr "Mayo"
365
 
366
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:222
367
+ #: dashboard/publisher/adverts-edit.php:243
368
  msgid "June"
369
  msgstr "Junio"
370
 
371
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:223
372
+ #: dashboard/publisher/adverts-edit.php:244
373
  msgid "July"
374
  msgstr "Julio"
375
 
376
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:224
377
+ #: dashboard/publisher/adverts-edit.php:245
378
  msgid "August"
379
  msgstr "Agosto"
380
 
381
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:225
382
+ #: dashboard/publisher/adverts-edit.php:246
383
  msgid "September"
384
  msgstr "Septiembre"
385
 
386
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:226
387
+ #: dashboard/publisher/adverts-edit.php:247
388
  msgid "October"
389
  msgstr "Octubre"
390
 
391
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:227
392
+ #: dashboard/publisher/adverts-edit.php:248
393
  msgid "November"
394
  msgstr "Noviembre"
395
 
396
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:228
397
+ #: dashboard/publisher/adverts-edit.php:249
398
  msgid "December"
399
  msgstr "Diciembre"
400
 
401
+ #: adrotate-statistics.php:152
402
  msgid "Previous"
403
  msgstr "Anterior"
404
 
405
+ #: adrotate-statistics.php:154
406
  msgid "This month"
407
  msgstr "Este més"
408
 
409
+ #: adrotate-statistics.php:155
410
  msgid "Next"
411
  msgstr "Siguiente"
412
 
413
+ #: adrotate-statistics.php:229
414
  msgid "No data to show!"
415
  msgstr "No hay datos para mostrar!"
416
 
455
  msgid "Fill in the ID of the type you want to display!"
456
  msgstr "Rellene con el ID del tipo que desea mostrar!"
457
 
458
+ #: adrotate.php:101
459
  msgid "General Info"
460
  msgstr "Información General"
461
 
462
+ #: adrotate.php:102
463
  msgid "AdRotate Pro"
464
  msgstr "AdRotate Pro"
465
 
466
+ #: adrotate.php:103 dashboard/info.php:37
467
+ #: dashboard/publisher/adverts-edit.php:455
468
+ #: dashboard/publisher/groups-main.php:34
469
+ msgid "Adverts"
470
+ msgstr "Anuncios"
 
 
 
 
 
 
 
471
 
472
+ #: adrotate.php:104 dashboard/info.php:41
473
+ msgid "Groups"
474
+ msgstr "Grupos"
 
475
 
476
+ #: adrotate.php:105
477
  msgid "Settings"
478
  msgstr "Ajustes"
479
 
480
+ #: adrotate.php:123
481
  msgid "AdRotate Info"
482
  msgstr "Información de AdRotate"
483
 
484
+ #: adrotate.php:141
485
  msgid "AdRotate Professional"
486
  msgstr "AdRotate Profesional"
487
 
488
+ #: adrotate.php:181
489
  msgid "Advert Management"
490
  msgstr ""
491
 
492
+ #: adrotate.php:239 adrotate.php:306
493
  msgid "Manage"
494
  msgstr "Gestionar"
495
 
496
+ #: adrotate.php:240 adrotate.php:307
497
  msgid "Add New"
498
  msgstr "Añadir Nuevo"
499
 
500
+ #: adrotate.php:300
501
  msgid "Group Management"
502
  msgstr "Administración de Grupos"
503
 
504
+ #: adrotate.php:309
505
  msgid "Report"
506
  msgstr "Informe"
507
 
508
+ #: adrotate.php:354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
509
  msgid "AdRotate Settings"
510
  msgstr "Ajustes AdRotate"
511
 
533
  msgid ""
534
  "Target mobile users with ease and show the right adverts to smartphones, "
535
  "tablets and computers. Mix and match as you please and offer adverts that "
536
+ "suit the device or mobile operating system. Create as many mobile adverts as "
537
+ "you want without effort and with a few easy to use options they show up "
538
+ "where you want them to!"
539
  msgstr ""
540
 
541
  #: dashboard/adrotatepro.php:34
562
  "forum. Get a solution (usually) within one business day."
563
  msgstr ""
564
 
565
+ #: dashboard/adrotatepro.php:48 dashboard/info.php:101
566
  msgid "AdRotate is brought to you by"
567
  msgstr "AdRotate es ofrecido por"
568
 
569
+ #: dashboard/adrotatepro.php:61
570
  msgid "Schedule all campaigns with ease"
571
  msgstr "Programe todas las campañas con facilidad"
572
 
573
+ #: dashboard/adrotatepro.php:64
574
  msgid ""
575
  "Schedule your adverts and set up advertising campaigns based on dates you or "
576
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
577
+ "specific days in the week. You name it, AdRotate schedules it. This makes "
578
+ "planning your revenue stream very flexible. You can set one or many "
579
+ "schedules for adverts."
580
  msgstr ""
581
 
582
+ #: dashboard/adrotatepro.php:68
583
  msgid "Avoid adblockers"
584
  msgstr ""
585
 
586
+ #: dashboard/adrotatepro.php:71
587
  msgid ""
588
+ "Try and avoid adblockers so your adverts get the exposure you want them to "
589
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
590
  "adverts are less likely to be removed. Of-course make sure you create your "
591
  "adverts smartly so these features reach their full potential!"
592
  msgstr ""
593
 
594
+ #: dashboard/adrotatepro.php:75
595
  msgid "Stay up-to-date with notifications"
596
  msgstr ""
597
 
598
+ #: dashboard/adrotatepro.php:78
599
  msgid ""
600
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
601
  "adverts expire or need your attention. Additionally, send push notifications "
603
  "or when advertisers create new adverts. Never miss an expiration date again."
604
  msgstr ""
605
 
606
+ #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
607
+ #: dashboard/info.php:60
608
  msgid "Buy AdRotate Professional"
609
  msgstr "Comprar AdRotate Profesional"
610
 
611
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:64
612
  msgid "Single License"
613
  msgstr ""
614
 
615
+ #: dashboard/adrotatepro.php:86
616
  msgid "For one WordPress installation."
617
  msgstr "Para una instalación de WordPress."
618
 
619
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
620
+ #: dashboard/info.php:65 dashboard/info.php:72
621
  msgid "Duo License"
622
  msgstr "Duo Licencia"
623
 
624
+ #: dashboard/adrotatepro.php:87
625
  msgid "For two WordPress installations."
626
  msgstr "Para dos instalaciónes de WordPress."
627
 
628
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
629
+ #: dashboard/info.php:66 dashboard/info.php:73
630
  msgid "Multi License"
631
  msgstr "Multi Licencia"
632
 
633
+ #: dashboard/adrotatepro.php:88
634
  msgid " For up to five WordPress installations."
635
  msgstr "Para un máximo de cinco instalaciones de WordPress."
636
 
637
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
638
+ #: dashboard/info.php:67 dashboard/info.php:74
639
  msgid "Developer License"
640
  msgstr "Developer Licencia"
641
 
642
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:67
643
  msgid "Unlimited WordPress installations and/or networks."
644
  msgstr ""
645
 
646
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
647
+ #: dashboard/info.php:68 dashboard/info.php:76
648
  msgid "Compare licenses"
649
  msgstr "Comparar licencias"
650
 
651
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
652
  msgid "Not sure which license is for you? Compare them..."
653
  msgstr "No está seguro de que licencia es para usted? Comparelas..."
654
 
655
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
656
  msgid "All Licenses"
657
  msgstr "Todas las licencias"
658
 
659
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
660
  msgid "Lifetime License"
661
  msgstr ""
662
 
663
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
664
  msgid "Single installation."
665
  msgstr ""
666
 
667
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:72
668
  msgid "Up to 2 installations."
669
  msgstr ""
670
 
671
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:73
672
  msgid "Up to 10 installations."
673
  msgstr ""
674
 
675
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:74
676
  msgid "Up to 25 installations or multisite networks."
677
  msgstr ""
678
 
679
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:75
680
  msgid ""
681
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
682
  msgstr ""
683
 
684
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
685
  msgid "Not sure which license is for you?"
686
  msgstr ""
687
 
688
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
689
  msgid "Compare Licenses"
690
  msgstr ""
691
 
701
  msgid "Adverts that need you"
702
  msgstr "Estos Anuncios"
703
 
 
 
 
 
 
704
  #: dashboard/info.php:38
705
  msgid "(Almost) Expired"
706
  msgstr "Expirados (o casi)"
707
 
 
 
 
 
708
  #: dashboard/info.php:42
709
  msgid "Have errors"
710
  msgstr "Tienen errores"
711
 
712
+ #: dashboard/info.php:47
 
 
 
 
713
  msgid ""
714
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
715
  "for updates about me and my plugins. Thank you!"
716
  msgstr ""
717
 
718
+ #: dashboard/info.php:51 dashboard/publisher/adverts-edit.php:124
719
+ msgid "Get paid as a publisher:"
720
+ msgstr ""
721
+
722
+ #: dashboard/info.php:64
723
+ msgid "One WordPress installation."
724
+ msgstr ""
725
+
726
+ #: dashboard/info.php:65
727
+ msgid "Two WordPress installations."
728
+ msgstr ""
729
+
730
+ #: dashboard/info.php:66
731
+ msgid "Up to five WordPress installations."
732
+ msgstr ""
733
+
734
+ #: dashboard/info.php:87
735
  msgid "AdRotate News"
736
  msgstr ""
737
 
738
+ #: dashboard/info.php:105
739
  msgid ""
740
  "I am a digital nomad in the Philippines. Click on my name to find out more "
741
  "about me and what I am doing. Thanks for your support and for using my "
746
  msgid "Disabled Adverts"
747
  msgstr ""
748
 
749
+ #: dashboard/publisher/adverts-disabled.php:20
750
+ #: dashboard/publisher/adverts-error.php:19
751
+ #: dashboard/publisher/adverts-main.php:20
752
+ #: dashboard/publisher/groups-main.php:20
753
+ msgid "Bulk Actions"
754
+ msgstr "Acciones en Lote"
755
+
756
  #: dashboard/publisher/adverts-disabled.php:21
757
+ #: dashboard/publisher/adverts-edit.php:173
758
  msgid "Activate"
759
  msgstr "Activar"
760
 
761
+ #: dashboard/publisher/adverts-disabled.php:22
762
+ #: dashboard/publisher/adverts-error.php:21
763
+ #: dashboard/publisher/adverts-main.php:22
764
+ msgid "Delete"
765
+ msgstr "Borrar"
766
+
767
  #: dashboard/publisher/adverts-disabled.php:23
768
  #: dashboard/publisher/adverts-error.php:22
769
  #: dashboard/publisher/adverts-main.php:23
770
  msgid "Reset stats"
771
  msgstr "Resetear Estadísticas"
772
 
773
+ #: dashboard/publisher/adverts-disabled.php:25
774
+ #: dashboard/publisher/adverts-error.php:29
775
+ #: dashboard/publisher/adverts-main.php:30
776
+ #: dashboard/publisher/groups-main.php:24
777
+ msgid "Go"
778
+ msgstr "Aplicar"
779
+
780
+ #: dashboard/publisher/adverts-disabled.php:35
781
+ #: dashboard/publisher/adverts-error.php:39
782
+ #: dashboard/publisher/adverts-main.php:39
783
+ #: dashboard/publisher/groups-main.php:32
784
+ msgid "ID"
785
+ msgstr "ID"
786
+
787
  #: dashboard/publisher/adverts-disabled.php:36
788
  #: dashboard/publisher/adverts-error.php:40
789
  #: dashboard/publisher/adverts-main.php:40
791
  msgstr "Inio / Final"
792
 
793
  #: dashboard/publisher/adverts-disabled.php:37
794
+ #: dashboard/publisher/adverts-edit.php:109
795
  #: dashboard/publisher/adverts-error.php:41
796
  #: dashboard/publisher/adverts-main.php:41
797
  msgid "Title"
799
 
800
  #: dashboard/publisher/adverts-disabled.php:38
801
  #: dashboard/publisher/adverts-main.php:44
802
+ #: dashboard/publisher/groups-edit.php:331
803
  #: dashboard/publisher/groups-main.php:36
804
  msgid "Shown"
805
  msgstr "Mostrado"
808
  #: dashboard/publisher/adverts-main.php:46
809
  #: dashboard/publisher/adverts-report.php:36
810
  #: dashboard/publisher/adverts-report.php:57
811
+ #: dashboard/publisher/groups-edit.php:332
812
  #: dashboard/publisher/groups-main.php:38
813
  #: dashboard/publisher/groups-report.php:37
814
  #: dashboard/publisher/groups-report.php:58
824
  msgid "CTR"
825
  msgstr "CTR"
826
 
827
+ #: dashboard/publisher/adverts-disabled.php:71
828
  #: dashboard/publisher/adverts-error.php:64
829
+ #: dashboard/publisher/adverts-main.php:82
830
  #: dashboard/publisher/groups-main.php:70
831
  msgid "Edit"
832
  msgstr "Editar"
833
 
834
+ #: dashboard/publisher/adverts-disabled.php:71
835
  #: dashboard/publisher/adverts-error.php:64
836
+ #: dashboard/publisher/adverts-main.php:82
837
  #: dashboard/publisher/groups-main.php:70
838
  msgid "Stats"
839
  msgstr "Estadísticas"
840
 
841
+ #: dashboard/publisher/adverts-disabled.php:71
842
  #: dashboard/publisher/adverts-error.php:64
843
+ #: dashboard/publisher/adverts-main.php:82
844
  #, fuzzy
845
  msgid "Groups:"
846
  msgstr "Grupos"
847
 
848
+ #: dashboard/publisher/adverts-edit.php:47
849
  msgid "The AdCode cannot be empty!"
850
  msgstr "El AdCode no puede estar vacío!"
851
 
852
+ #: dashboard/publisher/adverts-edit.php:50
853
  msgid ""
854
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
855
  "use!"
856
  msgstr ""
857
 
858
+ #: dashboard/publisher/adverts-edit.php:53
859
  msgid ""
860
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
861
  "use!"
862
  msgstr ""
863
 
864
+ #: dashboard/publisher/adverts-edit.php:56
865
  msgid ""
866
  "There is a problem saving the image. Please reset your image and re-save the "
867
  "ad!"
868
  msgstr ""
869
 
870
+ #: dashboard/publisher/adverts-edit.php:59
871
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
872
  msgstr ""
873
 
874
+ #: dashboard/publisher/adverts-edit.php:64
875
  msgid ""
876
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
877
  "the ad!"
879
  "AdRotate no encuentra ningún error, pero el anuncio está marcado como "
880
  "erróneo, intente volver a guardar la anuncio!"
881
 
882
+ #: dashboard/publisher/adverts-edit.php:67
883
  msgid "This ad is expired and currently not shown on your website!"
884
  msgstr "Este anuncio ha caducado y actualmente no se muestra en su página web!"
885
 
886
+ #: dashboard/publisher/adverts-edit.php:70
887
  msgid "The ad will expire in less than 2 days!"
888
  msgstr "El anuncio caducará en menos de 2 días!"
889
 
890
+ #: dashboard/publisher/adverts-edit.php:73
891
  msgid "This ad will expire in less than 7 days!"
892
  msgstr "El anuncio caducará en menos de 7 días!"
893
 
894
+ #: dashboard/publisher/adverts-edit.php:76
895
  msgid "This ad has been disabled and does not rotate on your site!"
896
  msgstr "Este anuncio ha sido desactivado y no rota en su página web!"
897
 
898
+ #: dashboard/publisher/adverts-edit.php:101
899
  msgid "New Advert"
900
  msgstr "Nuevo Anuncio"
901
 
902
+ #: dashboard/publisher/adverts-edit.php:103
903
  msgid "Edit Advert"
904
  msgstr "Editar Anuncio"
905
 
906
+ #: dashboard/publisher/adverts-edit.php:115
907
  msgid "AdCode"
908
  msgstr ""
909
 
910
+ #: dashboard/publisher/adverts-edit.php:120
911
  msgid "Basic Examples:"
912
  msgstr "Ejemplos Básicos:"
913
 
914
+ #: dashboard/publisher/adverts-edit.php:131
915
  msgid "Useful tags"
916
  msgstr ""
917
 
918
+ #: dashboard/publisher/adverts-edit.php:133
919
  msgid "Insert the advert ID Number."
920
  msgstr ""
921
 
922
+ #: dashboard/publisher/adverts-edit.php:133
923
  msgid "Required when selecting a asset below."
924
  msgstr ""
925
 
926
+ #: dashboard/publisher/adverts-edit.php:133
927
  msgid "Insert the advert name."
928
  msgstr ""
929
 
930
+ #: dashboard/publisher/adverts-edit.php:133
931
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
932
  msgstr ""
933
 
934
+ #: dashboard/publisher/adverts-edit.php:133
935
  msgid "Add inside the <a> tag to open advert in a new window."
936
  msgstr ""
937
 
938
+ #: dashboard/publisher/adverts-edit.php:133
939
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
940
  msgstr ""
941
 
942
+ #: dashboard/publisher/adverts-edit.php:133
943
  msgid ""
944
  "Place the cursor in your AdCode where you want to add any of these tags and "
945
  "click to add it."
946
  msgstr ""
947
 
948
+ #: dashboard/publisher/adverts-edit.php:138
949
  msgid "Preview"
950
  msgstr "Vista previa"
951
 
952
+ #: dashboard/publisher/adverts-edit.php:141
953
  msgid ""
954
  "Note: While this preview is an accurate one, it might look different then it "
955
  "does on the website."
957
  "Nota: Mientras que la previsualización de la imagen aqui mostrada es "
958
  "precisa, en su pagina web puede tener un aspecto diferente."
959
 
960
+ #: dashboard/publisher/adverts-edit.php:142
961
  msgid ""
962
  "This is because of CSS differences. Your themes CSS file is not active here!"
963
  msgstr ""
964
  "Esto es debido a las diferencias de CSS. En la zona administrativa no está "
965
  "activo el archivo CSS de las plantillas (themes)!"
966
 
967
+ #: dashboard/publisher/adverts-edit.php:147
968
  msgid "Banner asset"
969
  msgstr ""
970
 
971
+ #: dashboard/publisher/adverts-edit.php:150
972
  msgid "WordPress media:"
973
  msgstr ""
974
 
975
+ #: dashboard/publisher/adverts-edit.php:150
976
  msgid "Select Banner"
977
  msgstr "Seleccionar Banner"
978
 
979
+ #: dashboard/publisher/adverts-edit.php:152
980
  msgid "- OR -"
981
  msgstr "- O -"
982
 
983
+ #: dashboard/publisher/adverts-edit.php:154
984
  msgid "Banner folder:"
985
  msgstr "Carpeta Banner:"
986
 
987
+ #: dashboard/publisher/adverts-edit.php:155
988
  msgid "No image selected"
989
  msgstr "Ninguna imagen seleccionada"
990
 
991
+ #: dashboard/publisher/adverts-edit.php:159
992
  msgid "Use %asset% in the adcode instead of the file path."
993
  msgstr ""
994
 
995
+ #: dashboard/publisher/adverts-edit.php:159
996
  msgid ""
997
  "Use either the text field or the dropdown. If the textfield has content that "
998
  "field has priority."
1000
  "Use el campo de texto o en el menú desplegable. Si el campo de texto tiene "
1001
  "un contenido, ese campo tiene prioridad."
1002
 
1003
+ #: dashboard/publisher/adverts-edit.php:164
1004
  #: dashboard/settings/statistics.php:17
1005
  msgid "Statistics"
1006
  msgstr "Estadísticas"
1007
 
1008
+ #: dashboard/publisher/adverts-edit.php:166
1009
  msgid "Enable click and impression tracking for this advert."
1010
  msgstr ""
1011
 
1012
+ #: dashboard/publisher/adverts-edit.php:167
1013
  msgid ""
1014
  "Note: Clicktracking does not work for Javascript adverts such as those "
1015
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1016
  "always supported."
1017
  msgstr ""
1018
 
1019
+ #: dashboard/publisher/adverts-edit.php:177
1020
  msgid "Yes, this ad will be used"
1021
  msgstr "Sí, se utilizará este anuncio"
1022
 
1023
+ #: dashboard/publisher/adverts-edit.php:178
1024
  msgid "No, do not show this ad anywhere"
1025
  msgstr "No, no mostrar este anuncio en cualquier lugar"
1026
 
1027
+ #: dashboard/publisher/adverts-edit.php:185
1028
+ #: dashboard/publisher/adverts-main.php:107
1029
  #: dashboard/publisher/groups-edit.php:71
1030
  #: dashboard/publisher/groups-main.php:89
1031
  #, fuzzy
1033
  msgstr "Obtenga más funciones con AdRotate Pro"
1034
 
1035
  #: dashboard/publisher/adverts-edit.php:185
1036
+ #: dashboard/publisher/adverts-main.php:107
1037
+ #: dashboard/publisher/groups-edit.php:71
1038
+ #: dashboard/publisher/groups-main.php:89
1039
+ #, fuzzy
1040
+ msgid "More information"
1041
+ msgstr "Más información..."
1042
+
1043
+ #: dashboard/publisher/adverts-edit.php:188
1044
+ #: dashboard/publisher/adverts-edit.php:288
1045
+ #: dashboard/publisher/adverts-edit.php:444
1046
+ #: dashboard/publisher/adverts-edit.php:485
1047
  msgid "Save Advert"
1048
  msgstr "Guardar Anuncio"
1049
 
1050
+ #: dashboard/publisher/adverts-edit.php:189
1051
+ #: dashboard/publisher/adverts-edit.php:289
1052
+ #: dashboard/publisher/adverts-edit.php:445
1053
+ #: dashboard/publisher/adverts-edit.php:486
1054
  #: dashboard/publisher/groups-edit.php:150
1055
+ #: dashboard/publisher/groups-edit.php:299
1056
+ #: dashboard/publisher/groups-edit.php:391
1057
  msgid "Cancel"
1058
  msgstr "Cancelar"
1059
 
1060
+ #: dashboard/publisher/adverts-edit.php:192
1061
+ #: dashboard/publisher/adverts-edit.php:427
1062
  #: dashboard/publisher/groups-edit.php:132
1063
+ #: dashboard/publisher/groups-edit.php:281
1064
  msgid "Usage"
1065
  msgstr "Utilización"
1066
 
1067
+ #: dashboard/publisher/adverts-edit.php:196
1068
+ #: dashboard/publisher/adverts-edit.php:431
1069
  #: dashboard/publisher/groups-edit.php:136
1070
+ #: dashboard/publisher/groups-edit.php:205
1071
+ #: dashboard/publisher/groups-edit.php:245
1072
+ #: dashboard/publisher/groups-edit.php:285
1073
  msgid "Widget"
1074
  msgstr ""
1075
 
1076
+ #: dashboard/publisher/adverts-edit.php:197
1077
+ #: dashboard/publisher/adverts-edit.php:432
1078
  msgid ""
1079
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1080
  "and select the advert or the group the advert is in."
1081
  msgstr ""
1082
 
1083
+ #: dashboard/publisher/adverts-edit.php:200
1084
+ #: dashboard/publisher/adverts-edit.php:435
1085
  #: dashboard/publisher/groups-edit.php:140
1086
+ #: dashboard/publisher/groups-edit.php:289
1087
  msgid "In a post or page"
1088
  msgstr ""
1089
 
1090
+ #: dashboard/publisher/adverts-edit.php:202
1091
+ #: dashboard/publisher/adverts-edit.php:437
1092
  #: dashboard/publisher/groups-edit.php:142
1093
+ #: dashboard/publisher/groups-edit.php:291
1094
  msgid "Directly in a theme"
1095
  msgstr ""
1096
 
1097
+ #: dashboard/publisher/adverts-edit.php:208
1098
  msgid "Schedule your advert"
1099
  msgstr ""
1100
 
1101
+ #: dashboard/publisher/adverts-edit.php:212
1102
  msgid "Start date (day/month/year)"
1103
  msgstr ""
1104
 
1105
+ #: dashboard/publisher/adverts-edit.php:233
1106
  msgid "End date (day/month/year)"
1107
  msgstr ""
1108
 
1109
+ #: dashboard/publisher/adverts-edit.php:256
1110
  msgid "Start time (hh:mm)"
1111
  msgstr ""
1112
 
1113
+ #: dashboard/publisher/adverts-edit.php:263
1114
  msgid "End time (hh:mm)"
1115
  msgstr ""
1116
 
1117
+ #: dashboard/publisher/adverts-edit.php:273
1118
  msgid "Maximum Clicks"
1119
  msgstr ""
1120
 
1121
+ #: dashboard/publisher/adverts-edit.php:274
1122
+ #: dashboard/publisher/adverts-edit.php:276
1123
  msgid "Leave empty or 0 to skip this."
1124
  msgstr "Dejar en blanco o 0 para omitir."
1125
 
1126
+ #: dashboard/publisher/adverts-edit.php:275
1127
  msgid "Maximum Impressions"
1128
  msgstr ""
1129
 
1130
+ #: dashboard/publisher/adverts-edit.php:280
1131
  msgid "Important"
1132
  msgstr ""
1133
 
1134
+ #: dashboard/publisher/adverts-edit.php:281
1135
  msgid ""
1136
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1137
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1138
  "14:00 hours. 6AM is 6:00 hours."
1139
  msgstr ""
1140
 
1141
+ #: dashboard/publisher/adverts-edit.php:285
1142
  msgid ""
1143
  "Create multiple and more advanced schedules for each advert with AdRotate "
1144
  "Pro."
1145
  msgstr ""
1146
 
1147
+ #: dashboard/publisher/adverts-edit.php:285
1148
+ #: dashboard/publisher/adverts-edit.php:354
1149
+ #: dashboard/publisher/adverts-edit.php:425
1150
+ #: dashboard/publisher/groups-edit.php:191
1151
  #, fuzzy
1152
  msgid "Upgrade today"
1153
  msgstr "Hoy"
1154
 
1155
+ #: dashboard/publisher/adverts-edit.php:292
1156
  #: dashboard/publisher/groups-edit.php:153
1157
  msgid "Advanced"
1158
  msgstr "Avanzado"
1159
 
1160
+ #: dashboard/publisher/adverts-edit.php:293
1161
+ #: dashboard/publisher/adverts-edit.php:357
 
 
 
1162
  msgid "Available in AdRotate Pro!"
1163
  msgstr ""
1164
 
1165
+ #: dashboard/publisher/adverts-edit.php:298
1166
  #: dashboard/publisher/adverts-main.php:42
1167
+ #: dashboard/publisher/groups-edit.php:334
1168
  msgid "Weight"
1169
  msgstr "Prioridad"
1170
 
1171
+ #: dashboard/publisher/adverts-edit.php:301
1172
  msgid "Few impressions"
1173
  msgstr ""
1174
 
1175
+ #: dashboard/publisher/adverts-edit.php:306
1176
  msgid "Less than average"
1177
  msgstr "Menos de la media"
1178
 
1179
+ #: dashboard/publisher/adverts-edit.php:311
1180
  msgid "Normal impressions"
1181
  msgstr ""
1182
 
1183
+ #: dashboard/publisher/adverts-edit.php:316
1184
  msgid "More than average"
1185
  msgstr "Más de la media"
1186
 
1187
+ #: dashboard/publisher/adverts-edit.php:321
1188
  msgid "Many impressions"
1189
  msgstr ""
1190
 
1191
+ #: dashboard/publisher/adverts-edit.php:326
1192
  msgid "Mobile"
1193
  msgstr ""
1194
 
1195
+ #: dashboard/publisher/adverts-edit.php:328
1196
  msgid "Computers"
1197
  msgstr ""
1198
 
1199
+ #: dashboard/publisher/adverts-edit.php:331
1200
  msgid "Smartphones"
1201
  msgstr ""
1202
 
1203
+ #: dashboard/publisher/adverts-edit.php:334
1204
  msgid "Tablets"
1205
  msgstr ""
1206
 
1207
+ #: dashboard/publisher/adverts-edit.php:337
1208
  msgid ""
1209
  "Also enable mobile support in the group this advert goes in or these are "
1210
  "ignored."
1211
  msgstr ""
1212
 
1213
+ #: dashboard/publisher/adverts-edit.php:337
1214
+ msgid ""
1215
+ "Operating system detection only detects iOS/Android/Others or neither. Only "
1216
+ "works if Smartphones and/or Tablets is enabled."
1217
  msgstr ""
1218
 
1219
+ #: dashboard/publisher/adverts-edit.php:341
1220
+ msgid "Mobile OS"
1221
+ msgstr ""
 
1222
 
1223
+ #: dashboard/publisher/adverts-edit.php:343
1224
+ msgid "iOS"
1225
+ msgstr ""
1226
 
1227
+ #: dashboard/publisher/adverts-edit.php:346
1228
+ msgid "Android"
 
 
1229
  msgstr ""
1230
 
1231
+ #: dashboard/publisher/adverts-edit.php:349
1232
+ msgid "Others"
1233
  msgstr ""
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:354
1236
  msgid ""
1237
+ "With AdRotate Pro you can easily select which devices and mobile operating "
1238
+ "systems the advert should show on!"
1239
  msgstr ""
1240
 
1241
+ #: dashboard/publisher/adverts-edit.php:356
1242
+ #: dashboard/publisher/groups-edit.php:180
1243
+ #: dashboard/settings/advertisers.php:38
1244
+ msgid "Geo Targeting"
1245
+ msgstr "Geo Targeting"
1246
 
1247
+ #: dashboard/publisher/adverts-edit.php:357
1248
  msgid ""
1249
+ "Assign the advert to a group and enable that group to use Geo Targeting."
 
1250
  msgstr ""
1251
 
1252
+ #: dashboard/publisher/adverts-edit.php:415
1253
+ msgid "A comma separated list of items:"
1254
+ msgstr ""
1255
+
1256
+ #: dashboard/publisher/adverts-edit.php:415
1257
  #, fuzzy
1258
  msgid ""
1259
  "AdRotate does not check the validity of names so make sure you spell them "
1262
  "AdRotate no comprueba la validez de los nombres, así que asegúrate de "
1263
  "escribirlos correctamente!"
1264
 
1265
+ #: dashboard/publisher/adverts-edit.php:425
 
 
 
 
 
 
 
 
 
 
 
 
1266
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1267
  msgstr ""
1268
 
1269
+ #: dashboard/publisher/adverts-edit.php:449
1270
  msgid "Select Groups"
1271
  msgstr "Seleccione Grupos"
1272
 
1273
+ #: dashboard/publisher/adverts-edit.php:454
1274
  msgid "ID - Name"
1275
  msgstr "ID - Nombre"
1276
 
1277
+ #: dashboard/publisher/adverts-edit.php:464
1278
  #: dashboard/publisher/groups-main.php:60
1279
  #: dashboard/settings/geotargeting.php:49
1280
  msgid "Default"
1281
  msgstr "Predeterminado"
1282
 
1283
+ #: dashboard/publisher/adverts-edit.php:465
1284
  #: dashboard/publisher/groups-main.php:61
1285
  msgid "Dynamic"
1286
  msgstr "Dinámico"
1287
 
1288
+ #: dashboard/publisher/adverts-edit.php:465
1289
  #: dashboard/publisher/groups-main.php:61
1290
  msgid "second rotation"
1291
  msgstr "segundos rotación"
1292
 
1293
+ #: dashboard/publisher/adverts-edit.php:466
1294
  #: dashboard/publisher/groups-main.php:62
1295
  msgid "Block"
1296
  msgstr "Block"
1297
 
1298
+ #: dashboard/publisher/adverts-edit.php:466
1299
  #: dashboard/publisher/groups-main.php:62
1300
  msgid "grid"
1301
  msgstr "cuadrícula"
1302
 
1303
+ #: dashboard/publisher/adverts-edit.php:467
1304
+ #: dashboard/publisher/groups-edit.php:199
1305
  #: dashboard/publisher/groups-main.php:63
1306
  msgid "Post Injection"
1307
  msgstr "Integrarlo después"
1308
 
1309
+ #: dashboard/publisher/adverts-edit.php:468
1310
  msgid "Geolocation"
1311
  msgstr "Geolocalización"
1312
 
1313
+ #: dashboard/publisher/adverts-edit.php:474
1314
  #: dashboard/publisher/groups-edit.php:57
1315
  #: dashboard/publisher/groups-main.php:70
1316
  msgid "Mode"
1351
  msgstr "Por 7 días"
1352
 
1353
  #: dashboard/publisher/adverts-error.php:71
1354
+ #: dashboard/publisher/groups-edit.php:384
1355
  msgid "Configuration errors."
1356
  msgstr "Errores de configuración."
1357
 
1358
+ #: dashboard/publisher/adverts-error.php:72
1359
+ #: dashboard/publisher/groups-edit.php:385
1360
+ msgid "Expires soon."
1361
+ msgstr "Caduca pronto."
1362
+
1363
+ #: dashboard/publisher/adverts-error.php:73
1364
+ #: dashboard/publisher/groups-edit.php:386
1365
+ msgid "Has expired."
1366
+ msgstr "Ha expirado."
1367
+
1368
  #: dashboard/publisher/adverts-main.php:12
1369
  msgid "Active Adverts"
1370
  msgstr ""
1381
  msgid "Today"
1382
  msgstr "Hoy"
1383
 
1384
+ #: dashboard/publisher/adverts-main.php:102
1385
  msgid "No adverts created yet!"
1386
  msgstr ""
1387
 
1435
  msgid "Edit Group"
1436
  msgstr "Editar Grupo"
1437
 
1438
+ #: dashboard/publisher/groups-edit.php:51
1439
+ #: dashboard/publisher/groups-main.php:33
1440
+ msgid "Name"
1441
+ msgstr "Nombre"
1442
+
1443
  #: dashboard/publisher/groups-edit.php:60
1444
  msgid "Default - Show one ad at a time"
1445
  msgstr "Predeterminado - Mostrar un anuncio a la vez"
1527
  "Predeterminado: 6."
1528
 
1529
  #: dashboard/publisher/groups-edit.php:137
1530
+ #: dashboard/publisher/groups-edit.php:286
1531
  msgid ""
1532
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1533
  "Adverts\" and enter ID"
1534
  msgstr ""
1535
 
1536
  #: dashboard/publisher/groups-edit.php:149
1537
+ #: dashboard/publisher/groups-edit.php:298
1538
+ #: dashboard/publisher/groups-edit.php:390
1539
  msgid "Save Group"
1540
  msgstr "Guardar Grupo"
1541
 
1589
  "setting. Not every theme supports this feature."
1590
  msgstr ""
1591
 
 
 
 
 
 
1592
  #: dashboard/publisher/groups-edit.php:181
1593
  msgid "Enable Geo Targeting for this group."
1594
  msgstr ""
1609
  msgid "Do not forget to put at least one mobile advert in this group."
1610
  msgstr ""
1611
 
1612
+ #: dashboard/publisher/groups-edit.php:191
 
 
 
 
 
1613
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1614
  msgstr ""
1615
 
1616
+ #: dashboard/publisher/groups-edit.php:204
1617
+ #: dashboard/publisher/groups-edit.php:244
 
 
 
 
1618
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1619
  msgid "Disabled"
1620
  msgstr "Desactivado"
1621
 
1622
  #: dashboard/publisher/groups-edit.php:206
1623
+ #: dashboard/publisher/groups-edit.php:246
1624
  msgid "Before content"
1625
  msgstr "Antes del contenido"
1626
 
1627
  #: dashboard/publisher/groups-edit.php:207
1628
+ #: dashboard/publisher/groups-edit.php:247
1629
  msgid "After content"
1630
  msgstr "Después del contenido"
1631
 
1632
  #: dashboard/publisher/groups-edit.php:208
1633
+ #: dashboard/publisher/groups-edit.php:248
1634
  msgid "Before and after content"
1635
  msgstr "Antes y después del contenido"
1636
 
1637
  #: dashboard/publisher/groups-edit.php:209
1638
+ #: dashboard/publisher/groups-edit.php:249
1639
  msgid "Inside the content..."
1640
  msgstr ""
1641
 
1642
  #: dashboard/publisher/groups-edit.php:215
1643
+ #: dashboard/publisher/groups-edit.php:255
1644
  msgid "after the middle paragraph"
1645
  msgstr ""
1646
 
1647
  #: dashboard/publisher/groups-edit.php:216
1648
+ #: dashboard/publisher/groups-edit.php:256
1649
  msgid "after the 1st paragraph"
1650
  msgstr ""
1651
 
1652
  #: dashboard/publisher/groups-edit.php:217
1653
+ #: dashboard/publisher/groups-edit.php:257
1654
  msgid "after the 2nd paragraph"
1655
  msgstr ""
1656
 
1657
  #: dashboard/publisher/groups-edit.php:218
1658
+ #: dashboard/publisher/groups-edit.php:258
1659
  msgid "after the 3rd paragraph"
1660
  msgstr ""
1661
 
1662
  #: dashboard/publisher/groups-edit.php:219
1663
+ #: dashboard/publisher/groups-edit.php:259
1664
  msgid "after the 4th paragraph"
1665
  msgstr ""
1666
 
1667
  #: dashboard/publisher/groups-edit.php:220
1668
+ #: dashboard/publisher/groups-edit.php:260
1669
  msgid "after the 5th paragraph"
1670
  msgstr ""
1671
 
1672
  #: dashboard/publisher/groups-edit.php:221
1673
+ #: dashboard/publisher/groups-edit.php:261
1674
  msgid "after the 6th paragraph"
1675
  msgstr ""
1676
 
1677
  #: dashboard/publisher/groups-edit.php:222
1678
+ #: dashboard/publisher/groups-edit.php:262
1679
  msgid "after the 7th paragraph"
1680
  msgstr ""
1681
 
1682
  #: dashboard/publisher/groups-edit.php:223
1683
+ #: dashboard/publisher/groups-edit.php:263
1684
  msgid "after the 8th paragraph"
1685
  msgstr ""
1686
 
 
 
 
 
 
 
 
 
 
1687
  #: dashboard/publisher/groups-edit.php:239
1688
+ msgid "Page Injection"
1689
  msgstr ""
1690
 
1691
+ #: dashboard/publisher/groups-edit.php:302
 
 
 
 
 
 
 
 
1692
  msgid "Wrapper code"
1693
  msgstr "Código"
1694
 
1695
+ #: dashboard/publisher/groups-edit.php:303
1696
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1697
  msgstr ""
1698
 
1699
+ #: dashboard/publisher/groups-edit.php:307
1700
  msgid "Before advert"
1701
  msgstr ""
1702
 
1703
+ #: dashboard/publisher/groups-edit.php:310
1704
+ #: dashboard/publisher/groups-edit.php:318
1705
+ msgid "Example:"
1706
+ msgstr "Ejemplo:"
1707
+
1708
+ #: dashboard/publisher/groups-edit.php:311
1709
  msgid "Options:"
1710
  msgstr "Opciones:"
1711
 
1712
+ #: dashboard/publisher/groups-edit.php:315
1713
  msgid "After advert"
1714
  msgstr ""
1715
 
1716
+ #: dashboard/publisher/groups-edit.php:324
1717
  msgid "Select adverts"
1718
  msgstr ""
1719
 
1720
+ #: dashboard/publisher/groups-edit.php:329
1721
  msgid "Choose adverts"
1722
  msgstr ""
1723
 
1724
+ #: dashboard/publisher/groups-edit.php:335
1725
  msgid "Visible until"
1726
  msgstr "Visible hasta"
1727
 
1728
+ #: dashboard/publisher/groups-edit.php:377
1729
  msgid "No adverts created!"
1730
  msgstr ""
1731
 
1732
+ #: dashboard/publisher/groups-main.php:12
1733
+ msgid "Manage Groups"
1734
+ msgstr "Gestionar Grupos"
1735
+
1736
  #: dashboard/publisher/groups-main.php:21
1737
  msgid "Delete Group"
1738
  msgstr "Eliminar Grupo"
1750
  msgstr "Esta acción no se puede deshacerse!"
1751
 
1752
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1753
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
1754
+ #: dashboard/settings/maintenance.php:96
1755
  msgid "OK to continue, CANCEL to stop."
1756
  msgstr "OK para continuar, CANCELAR para detenerlo."
1757
 
1818
  msgstr ""
1819
 
1820
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1821
+ #: dashboard/settings/maintenance.php:103 dashboard/settings/misc.php:43
1822
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1823
+ #: dashboard/settings/statistics.php:79
1824
  msgid "Update Options"
1825
  msgstr "Actualizar Opciones"
1826
 
2128
  msgid "Are you sure you want to continue?"
2129
  msgstr "¿Está seguro que desea continuar?"
2130
 
2131
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
2132
+ #: dashboard/settings/maintenance.php:96
2133
  msgid "This might take a while and may slow down your site during this action!"
2134
  msgstr ""
2135
  "Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
2139
  msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
2140
 
2141
  #: dashboard/settings/maintenance.php:32
2142
+ msgid "Delete old tracker data. (Does nothing if you use a memcached plugin)"
 
 
2143
  msgstr ""
2144
 
2145
+ #: dashboard/settings/maintenance.php:33
2146
  msgid ""
2147
+ "For when you create an advert, group or schedule and it does not save or "
2148
+ "keep changes you make."
2149
  msgstr ""
2150
 
2151
+ #: dashboard/settings/maintenance.php:33
2152
  msgid ""
2153
+ "Additionally you can clean up old schedules, tracker data and/or statistics. "
2154
+ "This will improve the speed of your site."
2155
  msgstr ""
2156
 
2157
+ #: dashboard/settings/maintenance.php:37
2158
  msgid "Re-evaluate Ads"
2159
  msgstr "Reevaluar Anuncios"
2160
 
2161
+ #: dashboard/settings/maintenance.php:39
2162
  msgid "Re-evaluate all ads"
2163
  msgstr "Reevaluar todos los Anuncios"
2164
 
2165
+ #: dashboard/settings/maintenance.php:39
2166
  msgid "You are about to check all ads for errors."
2167
  msgstr "Vas a comprobar todos los anuncios para localizar errores."
2168
 
2169
+ #: dashboard/settings/maintenance.php:40
2170
  msgid ""
2171
  "This will apply all evaluation rules to all ads to see if any error slipped "
2172
  "in. Normally you should not need this feature."
2174
  "Esto aplicará las reglas de evaluación a todos los anuncios para ver si hay "
2175
  "algún error. Normalmente no debería necesitar esta función."
2176
 
2177
+ #: dashboard/settings/maintenance.php:44
2178
  msgid ""
2179
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2180
  "database. They only apply to your ads/groups and stats. Not to other "
2187
  "is not a valid point in any case."
2188
  msgstr ""
2189
 
2190
+ #: dashboard/settings/maintenance.php:46
2191
  msgid "Troubleshooting"
2192
  msgstr "Solución de problemas"
2193
 
2194
+ #: dashboard/settings/maintenance.php:47
2195
  msgid ""
2196
  "The below options are not meant for normal use and are only there for "
2197
  "developers to review saved settings or how ads are selected. These can be "
2199
  "SHOULD BE LEFT UNCHECKED!!"
2200
  msgstr ""
2201
 
2202
+ #: dashboard/settings/maintenance.php:50
2203
  msgid "Developer Debug"
2204
  msgstr "Depurar (Test) del Desarrollador"
2205
 
2206
+ #: dashboard/settings/maintenance.php:52
2207
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2208
  msgstr ""
2209
 
2210
+ #: dashboard/settings/maintenance.php:53
2211
  msgid "View advert specs and (some) stats in the dashboard."
2212
  msgstr ""
2213
 
2214
+ #: dashboard/settings/maintenance.php:54
2215
  msgid ""
2216
  "Disable timers for clicks and impressions and enable a alert window for "
2217
  "clicktracking."
2219
  "Deshabilitar contadores de tiempo de clics e impresiones y activar una "
2220
  "ventana de alerta para el seguimiento de clics."
2221
 
2222
+ #: dashboard/settings/maintenance.php:55
2223
  msgid "Temporarily disable encryption on the redirect url."
2224
  msgstr "Desactivar temporalmente el cifrado en la redireccion de la url."
2225
 
2226
+ #: dashboard/settings/maintenance.php:60
2227
  msgid "Status and Versions"
2228
  msgstr ""
2229
 
2230
+ #: dashboard/settings/maintenance.php:63
2231
  msgid "Current status of adverts"
2232
  msgstr "Estado actual de los anuncios"
2233
 
2234
+ #: dashboard/settings/maintenance.php:64
2235
  msgid "Normal"
2236
  msgstr "Normal"
2237
 
2238
+ #: dashboard/settings/maintenance.php:64
2239
  msgid "Error"
2240
  msgstr "Error"
2241
 
2242
+ #: dashboard/settings/maintenance.php:64
2243
  msgid "Expired"
2244
  msgstr "Caducado"
2245
 
2246
+ #: dashboard/settings/maintenance.php:64
2247
  msgid "Expires Soon"
2248
  msgstr "Caduca Pronto"
2249
 
2250
+ #: dashboard/settings/maintenance.php:64
2251
  msgid "Unknown"
2252
  msgstr ""
2253
 
2254
+ #: dashboard/settings/maintenance.php:67
2255
  msgid "Banners/assets Folder"
2256
  msgstr ""
2257
 
2258
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2259
  msgid "Exists and appears writable"
2260
  msgstr ""
2261
 
2262
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2263
  msgid "Not writable or does not exist"
2264
  msgstr ""
2265
 
2266
+ #: dashboard/settings/maintenance.php:71
2267
  msgid "Reports Folder"
2268
  msgstr ""
2269
 
2270
+ #: dashboard/settings/maintenance.php:77
2271
  msgid "Advert evaluation"
2272
  msgstr ""
2273
 
2274
+ #: dashboard/settings/maintenance.php:78 dashboard/settings/maintenance.php:80
2275
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2276
  msgstr ""
2277
 
2278
+ #: dashboard/settings/maintenance.php:79
2279
+ msgid "Clean Transients"
2280
  msgstr ""
2281
 
2282
+ #: dashboard/settings/maintenance.php:84
2283
  msgid "Internal Versions"
2284
  msgstr ""
2285
 
2286
+ #: dashboard/settings/maintenance.php:85
2287
  msgid ""
2288
  "Unless you experience database issues or a warning shows below, these "
2289
  "numbers are not really relevant for troubleshooting. Support may ask for "
2290
  "them to verify your database status."
2291
  msgstr ""
2292
 
2293
+ #: dashboard/settings/maintenance.php:88
2294
  msgid "AdRotate version"
2295
  msgstr ""
2296
 
2297
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2298
  msgid "Current:"
2299
  msgstr ""
2300
 
2301
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2302
  msgid "Should be:"
2303
  msgstr ""
2304
 
2305
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2306
  msgid "Previous:"
2307
  msgstr ""
2308
 
2309
+ #: dashboard/settings/maintenance.php:90
2310
  msgid "Database version"
2311
  msgstr ""
2312
 
2313
+ #: dashboard/settings/maintenance.php:96
2314
+ msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2315
+ msgstr ""
2316
+
2317
+ #: dashboard/settings/maintenance.php:96
2318
+ msgid "Make sure you have a database backup!"
2319
+ msgstr ""
2320
+
2321
+ #: dashboard/settings/maintenance.php:97
2322
+ msgid ""
2323
+ "Attempt to update the database and migrate settings where required or "
2324
+ "relevant. Normally you should not need or use this option."
2325
+ msgstr ""
2326
+
2327
  #: dashboard/settings/misc.php:16
2328
  msgid "Miscellaneous"
2329
  msgstr "Varios"
2753
  msgstr ""
2754
  "Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
2755
 
2756
+ #: dashboard/settings/statistics.php:71
2757
+ msgid "Clean up temporary data"
2758
+ msgstr ""
2759
+
2760
+ #: dashboard/settings/statistics.php:73
2761
+ msgid ""
2762
+ "Periodically delete old tracker data. If you are using a memcached plugin "
2763
+ "you should disable this option!"
2764
+ msgstr ""
2765
+
2766
+ #, fuzzy
2767
+ #~ msgid "Help AdRotate Grow"
2768
+ #~ msgstr "Atascado con AdRotate? Yo te ayudaré!"
2769
+
2770
+ #, fuzzy
2771
+ #~ msgid "Manage Schedules"
2772
+ #~ msgstr "Gestionar Programas"
2773
+
2774
+ #, fuzzy
2775
+ #~ msgid "Manage Media"
2776
+ #~ msgstr "Gestionar Medios"
2777
+
2778
+ #, fuzzy
2779
+ #~ msgid "Schedule Management available in AdRotate Pro"
2780
+ #~ msgstr "Disponible en AdRotate Pro"
2781
+
2782
+ #, fuzzy
2783
+ #~ msgid "Start"
2784
+ #~ msgstr "Iniciar"
2785
+
2786
+ #, fuzzy
2787
+ #~ msgid "End"
2788
+ #~ msgstr "Finalizar"
2789
+
2790
+ #~ msgid "Ads"
2791
+ #~ msgstr "Anuncios"
2792
+
2793
+ #~ msgid "Max Impressions"
2794
+ #~ msgstr "Número máximo de Impresiones"
2795
+
2796
+ #~ msgid "Max Clicks"
2797
+ #~ msgstr "Número máximo de Clics"
2798
+
2799
+ #, fuzzy
2800
+ #~ msgid "No schedules created yet!"
2801
+ #~ msgstr "Todavia no se han creado programas!"
2802
+
2803
+ #, fuzzy
2804
+ #~ msgid "Easily manage your schedules from here with AdRotate Pro."
2805
+ #~ msgstr "Obtenga más funciones con AdRotate Pro"
2806
+
2807
+ #, fuzzy
2808
+ #~ msgid "Upgrade today!"
2809
+ #~ msgstr "Hoy"
2810
+
2811
+ #, fuzzy
2812
+ #~ msgid "Media Management available in AdRotate Pro"
2813
+ #~ msgstr "Esta función está disponible en AdRotate Pro"
2814
+
2815
+ #, fuzzy
2816
+ #~ msgid "Media uploading and management is available in AdRotate Pro."
2817
+ #~ msgstr "Esta función está disponible en AdRotate Pro"
2818
+
2819
+ #, fuzzy
2820
+ #~ msgid "Maximum size is 512Kb."
2821
+ #~ msgstr "El tamaño máximo es 512Kb."
2822
+
2823
+ #, fuzzy
2824
+ #~ msgid "Important:"
2825
+ #~ msgstr "Importante:"
2826
+
2827
+ #, fuzzy
2828
+ #~ msgid ""
2829
+ #~ "Make sure your file has no spaces or special characters in the name. "
2830
+ #~ "Replace spaces with a - or _."
2831
+ #~ msgstr ""
2832
+ #~ "Asegúrese de que en el nombre de su archivo no contiene espacios ni "
2833
+ #~ "caracteres especiales. Reemplace los espacios con un - o _."
2834
+
2835
+ #, fuzzy
2836
+ #~ msgid ""
2837
+ #~ "For responsive adverts make sure the filename is in the following format; "
2838
+ #~ "\"imagename.full.ext\". A full set of sized images is strongly "
2839
+ #~ "recommended."
2840
+ #~ msgstr ""
2841
+ #~ "Para los anuncios sensibles asegúrese de que el nombre del archivo es el "
2842
+ #~ "siguiente formato; \"imagename.full.ext\". Se recomienda una serie "
2843
+ #~ "completa de imágenes del mismo tamaño."
2844
+
2845
+ #~ msgid ""
2846
+ #~ "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in "
2847
+ #~ "the filename instead of \".full\" for the various viewports."
2848
+ #~ msgstr ""
2849
+ #~ "Para las imágenes de menor tamaño utilizar \".320\", \".480\", \".768\" "
2850
+ #~ "or \".1024\" en el nombre de archivo en lugar de \".completo\" para los "
2851
+ #~ "diferentes visores."
2852
+
2853
+ #, fuzzy
2854
+ #~ msgid ""
2855
+ #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
2856
+ #~ "advert for different viewports."
2857
+ #~ msgstr ""
2858
+ #~ "image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio "
2859
+ #~ "para distintas ventanas gráficas. Se necesita jQuery."
2860
+
2861
+ #, fuzzy
2862
+ #~ msgid "Actions"
2863
+ #~ msgstr "Acciones"
2864
+
2865
+ #, fuzzy
2866
+ #~ msgid ""
2867
+ #~ "Make sure the banner images are not in use by adverts when you delete "
2868
+ #~ "them!"
2869
+ #~ msgstr ""
2870
+ #~ "¡Asegúrese de que las imágenes de banner no se están utilizando en los "
2871
+ #~ "anuncios cuando las elimine!"
2872
+
2873
+ #, fuzzy
2874
+ #~ msgid "Manage your banner folder from here with AdRotate Pro."
2875
+ #~ msgstr "Obtenga más funciones con AdRotate Pro"
2876
+
2877
+ #~ msgid "Everything below is optional."
2878
+ #~ msgstr "Todo lo siguiente es opcional."
2879
+
2880
+ #~ msgid "For administrative purposes set a sortorder."
2881
+ #~ msgstr "A efectos administrativos, establecer una Clasificación normal."
2882
+
2883
+ #~ msgid "Leave empty or 0 to skip this. Will default to ad id."
2884
+ #~ msgstr "Dejar en blanco o 0 para omitir. Se usará el ID del anuncio."
2885
+
2886
+ #~ msgid "Select the countries you want the adverts to show in."
2887
+ #~ msgstr ""
2888
+ #~ "Seleccione los países en los que desea que los anuncios se muestren."
2889
+
2890
+ #~ msgid "Cities take priority and will be filtered first."
2891
+ #~ msgstr "Las ciudades tendrán prioridad y serán filtradas primero."
2892
+
2893
+ #~ msgid "Leave empty or 0 to skip this. Will default to group id."
2894
+ #~ msgstr ""
2895
+ #~ "Dejar en blanco o 0 para omitir. Se usará el ID predeterminado de grupo."
2896
+
2897
+ #~ msgid "Which categories?"
2898
+ #~ msgstr "¿En qué categorías?"
2899
+
2900
+ #~ msgid "Click the categories posts you want the adverts to show in."
2901
+ #~ msgstr ""
2902
+ #~ "Haga clic en las categorías de los mensajes en los que mostrar los "
2903
+ #~ "anuncios."
2904
+
2905
+ #~ msgid "Which pages?"
2906
+ #~ msgstr "¿En qué páginas?"
2907
+
2908
+ #~ msgid "Click the pages you want the adverts to show in."
2909
+ #~ msgstr "Haga clic en las páginas en las que mostrar los anuncios."
2910
+
2911
  #~ msgid "Enable responsive support for this advert."
2912
  #~ msgstr "Habilitar soporte sensible para este anuncio."
2913
 
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: 2016-07-17 23:25+0800\n"
6
- "PO-Revision-Date: 2016-07-17 23:25+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
9
  "Language: fr_FR\n"
@@ -13,112 +13,112 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:842
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
- #: adrotate-functions.php:845
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-functions.php:894
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:898
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:902
37
  msgid "Ad(s) deleted"
38
  msgstr "Publicité(s) supprimée(s)"
39
 
40
- #: adrotate-functions.php:906
41
  msgid "Group deleted"
42
  msgstr "Groupe supprimé"
43
 
44
- #: adrotate-functions.php:910
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
47
 
48
- #: adrotate-functions.php:914
49
  msgid "Ad(s) renewed"
50
  msgstr "publicité(s) renouvellée(s)"
51
 
52
- #: adrotate-functions.php:918
53
  msgid "Ad(s) deactivated"
54
  msgstr "Publicité(s) désactivée(s)"
55
 
56
- #: adrotate-functions.php:922
57
  msgid "Ad(s) activated"
58
  msgstr "Publicité(s) activée(s)"
59
 
60
- #: adrotate-functions.php:926
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Le gruop ainsi que ses publicités ont été supprimés"
63
 
64
- #: adrotate-functions.php:930
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Publicité créée"
68
 
69
- #: adrotate-functions.php:935
70
  msgid "Settings saved"
71
  msgstr "Paramètres sauvegardés"
72
 
73
- #: adrotate-functions.php:939
74
  msgid "Database optimized"
75
  msgstr "Base de données optimisée"
76
 
77
- #: adrotate-functions.php:943
78
  msgid "Database repaired"
79
  msgstr "Base de données réparée"
80
 
81
- #: adrotate-functions.php:947
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr ""
84
  "Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
85
 
86
- #: adrotate-functions.php:951
87
  msgid "Empty database records removed"
88
  msgstr "Les registres vides de la base de données ont été supprimés"
89
 
90
- #: adrotate-functions.php:956
91
  msgid "Action prohibited"
92
  msgstr "Action interdite"
93
 
94
- #: adrotate-functions.php:960
95
  msgid ""
96
  "The ad was saved but has an issue which might prevent it from working "
97
  "properly. Review the colored ad."
98
  msgstr ""
99
 
100
- #: adrotate-functions.php:964
101
  msgid "No data found in selected time period"
102
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
103
 
104
- #: adrotate-functions.php:968
105
  msgid "Database can only be optimized or cleaned once every hour"
106
  msgstr ""
107
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
108
 
109
- #: adrotate-functions.php:972
110
  msgid "Form can not be (partially) empty!"
111
  msgstr ""
112
 
113
- #: adrotate-functions.php:976
114
  msgid "No ads found."
115
  msgstr ""
116
 
117
- #: adrotate-functions.php:980
118
  msgid "Unexpected error"
119
  msgstr ""
120
 
121
- #: adrotate-manage-publisher.php:685
122
  msgid "AdRotate Advertiser"
123
  msgstr ""
124
 
@@ -201,217 +201,215 @@ msgid "An unknown error occured."
201
  msgstr "Une erreur inconnue s'est produite."
202
 
203
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
204
- #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
205
  msgid "Check adverts"
206
  msgstr ""
207
 
208
- #: adrotate-output.php:675
209
  msgid ""
210
  "You have enable caching support but W3 Total Cache is not active on your "
211
  "site!"
212
  msgstr ""
213
 
214
- #: adrotate-output.php:678
215
  msgid ""
216
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
217
  "not set."
218
  msgstr ""
219
 
220
- #: adrotate-output.php:683
221
  msgid "Your AdRotate Banner folder is not writable or does not exist."
222
  msgstr ""
223
 
224
- #: adrotate-output.php:723 dashboard/adrotatepro.php:99
225
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
226
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
227
- #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
228
- #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
229
- #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
230
- #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
231
  #: dashboard/settings/geotargeting.php:35
232
  msgid "Buy now"
233
  msgstr ""
234
 
235
- #: adrotate-output.php:724
236
  msgid ""
237
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
238
  "to the <strong>PRO</strong> version"
239
  msgstr ""
240
 
241
- #: adrotate-output.php:724
242
  #, php-format
243
  msgid ""
244
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
245
  msgstr ""
246
 
247
- #: adrotate-output.php:724
248
  msgid "Thank you for your purchase!"
249
  msgstr ""
250
 
251
- #: adrotate-output.php:785
252
  msgid ""
253
- "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
254
- "this menu. Check out the"
255
  msgstr ""
256
 
257
- #: adrotate-output.php:785
258
  msgid "manuals"
259
  msgstr "manuels"
260
 
261
- #: adrotate-output.php:785 adrotate-output.php:852
262
  msgid "and"
263
  msgstr ""
264
 
265
- #: adrotate-output.php:785
266
  msgid "forums"
267
  msgstr ""
268
 
269
- #: adrotate-output.php:815
270
  msgid "Useful Links"
271
  msgstr ""
272
 
273
- #: adrotate-output.php:816
274
  msgid "Useful links to learn more about AdRotate"
275
  msgstr ""
276
 
277
- #: adrotate-output.php:818
278
  msgid "AdRotate website"
279
  msgstr ""
280
 
281
- #: adrotate-output.php:819
282
  msgid "Getting Started With AdRotate"
283
  msgstr ""
284
 
285
- #: adrotate-output.php:820
286
  msgid "AdRotate manuals"
287
  msgstr ""
288
 
289
- #: adrotate-output.php:821
290
  msgid "AdRotate Support Forum"
291
  msgstr ""
292
 
293
- #: adrotate-output.php:844
294
- #, fuzzy
295
- msgid "Help AdRotate Grow"
296
- msgstr "AdRotate Pro"
297
 
298
- #: adrotate-output.php:845
299
- msgid "Follow Arnan on Facebook"
300
  msgstr ""
301
 
302
- #: adrotate-output.php:852
303
  msgid ""
304
- "A lot of users only think to review AdRotate when something goes wrong while "
305
- "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
306
  msgstr ""
307
 
308
- #: adrotate-output.php:852
309
- msgid "If you find AdRotate useful please leave your honest"
310
  msgstr ""
311
 
312
- #: adrotate-output.php:852
313
  msgid "rating"
314
  msgstr ""
315
 
316
- #: adrotate-output.php:852
317
  #, fuzzy
318
  msgid "review"
319
  msgstr "En avant-première"
320
 
321
- #: adrotate-output.php:852
322
  msgid "on WordPress.org to help AdRotate grow in a positive way"
323
  msgstr ""
324
 
325
- #: adrotate-output.php:885 dashboard/settings/notifications.php:50
326
  #: dashboard/settings/notifications.php:80
327
  msgid "Available in AdRotate Pro"
328
  msgstr "Disponible dans Adrotate Pro"
329
 
330
- #: adrotate-output.php:885
331
  msgid "More information..."
332
  msgstr "Plus d'informations..."
333
 
334
- #: adrotate-output.php:886
335
  msgid "This feature is available in AdRotate Pro"
336
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
337
 
338
- #: adrotate-output.php:886
339
  msgid "Learn more"
340
  msgstr "En savoir plus"
341
 
342
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
343
- #: dashboard/publisher/adverts-edit.php:235
344
  msgid "January"
345
  msgstr "Janvier"
346
 
347
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
348
- #: dashboard/publisher/adverts-edit.php:236
349
  msgid "February"
350
  msgstr "Février"
351
 
352
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
353
- #: dashboard/publisher/adverts-edit.php:237
354
  msgid "March"
355
  msgstr "Mars"
356
 
357
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
358
- #: dashboard/publisher/adverts-edit.php:238
359
  msgid "April"
360
  msgstr "Avril"
361
 
362
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
363
- #: dashboard/publisher/adverts-edit.php:239
364
  msgid "May"
365
  msgstr "Mai"
366
 
367
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
368
- #: dashboard/publisher/adverts-edit.php:240
369
  msgid "June"
370
  msgstr "Juin"
371
 
372
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
373
- #: dashboard/publisher/adverts-edit.php:241
374
  msgid "July"
375
  msgstr "Juillet"
376
 
377
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
378
- #: dashboard/publisher/adverts-edit.php:242
379
  msgid "August"
380
  msgstr "Août"
381
 
382
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
383
- #: dashboard/publisher/adverts-edit.php:243
384
  msgid "September"
385
  msgstr "Septembre"
386
 
387
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
388
- #: dashboard/publisher/adverts-edit.php:244
389
  msgid "October"
390
  msgstr "Octobre"
391
 
392
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
393
- #: dashboard/publisher/adverts-edit.php:245
394
  msgid "November"
395
  msgstr "Novembre"
396
 
397
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
398
- #: dashboard/publisher/adverts-edit.php:246
399
  msgid "December"
400
  msgstr "Décembre"
401
 
402
- #: adrotate-statistics.php:222
403
  msgid "Previous"
404
  msgstr "Précédent"
405
 
406
- #: adrotate-statistics.php:224
407
  msgid "This month"
408
  msgstr "Ce mois-ci"
409
 
410
- #: adrotate-statistics.php:225
411
  msgid "Next"
412
  msgstr "Prochain"
413
 
414
- #: adrotate-statistics.php:278
415
  msgid "No data to show!"
416
  msgstr "Aucune donnée à montrer!"
417
 
@@ -457,279 +455,57 @@ msgstr "ID :"
457
  msgid "Fill in the ID of the type you want to display!"
458
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
459
 
460
- #: adrotate.php:102
461
  msgid "General Info"
462
  msgstr "Informations générales"
463
 
464
- #: adrotate.php:103
465
  msgid "AdRotate Pro"
466
  msgstr "AdRotate Pro"
467
 
468
- #: adrotate.php:104
469
- msgid "Manage Adverts"
470
- msgstr ""
471
-
472
- #: adrotate.php:105 dashboard/publisher/groups-main.php:12
473
- msgid "Manage Groups"
474
- msgstr "Gérer les groupes"
475
-
476
- #: adrotate.php:106 adrotate.php:369
477
- #, fuzzy
478
- msgid "Manage Schedules"
479
- msgstr "Gérer les pubs"
480
 
481
- #: adrotate.php:107
482
- #, fuzzy
483
- msgid "Manage Media"
484
- msgstr "Gérer les pubs"
485
 
486
- #: adrotate.php:108
487
  msgid "Settings"
488
  msgstr "Paramètres"
489
 
490
- #: adrotate.php:128
491
  msgid "AdRotate Info"
492
  msgstr "Informations sur Adrotate"
493
 
494
- #: adrotate.php:146
495
  msgid "AdRotate Professional"
496
  msgstr "AdRotate professionel"
497
 
498
- #: adrotate.php:186
499
  msgid "Advert Management"
500
  msgstr ""
501
 
502
- #: adrotate.php:244 adrotate.php:311 adrotate.php:364
503
  msgid "Manage"
504
  msgstr "Gérer"
505
 
506
- #: adrotate.php:245 adrotate.php:312 adrotate.php:365
507
  msgid "Add New"
508
  msgstr "Ajouter"
509
 
510
- #: adrotate.php:305
511
  msgid "Group Management"
512
  msgstr "Gérer les groupes"
513
 
514
- #: adrotate.php:314
515
  msgid "Report"
516
  msgstr "Rapport"
517
 
518
- #: adrotate.php:360
519
- #, fuzzy
520
- msgid "Schedule Management available in AdRotate Pro"
521
- msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
522
-
523
- #: adrotate.php:370
524
- #, fuzzy
525
- msgid ""
526
- "Schedule management and multiple schedules per advert is available in "
527
- "AdRotate Pro."
528
- msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
529
-
530
- #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
531
- #: dashboard/publisher/adverts-main.php:114
532
- #: dashboard/publisher/groups-edit.php:71
533
- #: dashboard/publisher/groups-main.php:89
534
- msgid "More information"
535
- msgstr "Plus d'information"
536
-
537
- #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
538
- #: dashboard/publisher/adverts-error.php:19
539
- #: dashboard/publisher/adverts-main.php:20
540
- #: dashboard/publisher/groups-main.php:20
541
- msgid "Bulk Actions"
542
- msgstr "Actions en vrac"
543
-
544
- #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
545
- #: dashboard/publisher/adverts-error.php:29
546
- #: dashboard/publisher/adverts-main.php:30
547
- #: dashboard/publisher/groups-main.php:24
548
- msgid "Go"
549
- msgstr "Aller"
550
-
551
- #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
552
- #: dashboard/publisher/adverts-error.php:39
553
- #: dashboard/publisher/adverts-main.php:39
554
- #: dashboard/publisher/groups-main.php:32
555
- msgid "ID"
556
- msgstr "ID"
557
-
558
- #: adrotate.php:388
559
- #, fuzzy
560
- msgid "Start"
561
- msgstr "Début / Fin"
562
-
563
- #: adrotate.php:388
564
- msgid "End"
565
- msgstr ""
566
-
567
- #: adrotate.php:389
568
- msgid "Ads"
569
- msgstr "Pubs"
570
-
571
- #: adrotate.php:391
572
- #, fuzzy
573
- msgid "Max Impressions"
574
- msgstr "Nombre max de vues :"
575
-
576
- #: adrotate.php:392
577
- #, fuzzy
578
- msgid "Max Clicks"
579
- msgstr "Nombre de clicks max :"
580
-
581
- #: adrotate.php:422
582
- #, fuzzy
583
- msgid "No schedules created yet!"
584
- msgstr "Aucune pub n'a encore été créé!"
585
-
586
- #: adrotate.php:427
587
- #, fuzzy
588
- msgid "Easily manage your schedules from here with AdRotate Pro."
589
- msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
590
-
591
- #: adrotate.php:427 adrotate.php:490
592
- #, fuzzy
593
- msgid "Upgrade today!"
594
- msgstr "Mettre à jour aujourd'hui"
595
-
596
- #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
597
- #: dashboard/publisher/groups-edit.php:383
598
- msgid "Expires soon."
599
- msgstr "Expire bientôt."
600
-
601
- #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
602
- #: dashboard/publisher/groups-edit.php:384
603
- msgid "Has expired."
604
- msgstr "A expiré."
605
-
606
- #: adrotate.php:452
607
- #, fuzzy
608
- msgid "Media Management available in AdRotate Pro"
609
- msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
610
-
611
- #: adrotate.php:454
612
- msgid "Upload images to the AdRotate Pro banners folder from here."
613
- msgstr ""
614
-
615
- #: adrotate.php:454
616
- msgid ""
617
- "This is useful if you use responsive adverts with multiple images or have "
618
- "HTML5 adverts containing multiple files."
619
- msgstr ""
620
-
621
- #: adrotate.php:454
622
- #, fuzzy
623
- msgid "Media uploading and management is available in AdRotate Pro."
624
- msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
625
-
626
- #: adrotate.php:456
627
- msgid "Upload new file"
628
- msgstr ""
629
-
630
- #: adrotate.php:457
631
- msgid "Accepted files:"
632
- msgstr ""
633
-
634
- #: adrotate.php:457
635
- msgid "For HTML5 ads you can also upload html and javascript files."
636
- msgstr ""
637
-
638
- #: adrotate.php:457
639
- msgid "Maximum size is 512Kb."
640
- msgstr ""
641
-
642
- #: adrotate.php:457
643
- msgid "Important:"
644
- msgstr ""
645
-
646
- #: adrotate.php:457
647
- msgid ""
648
- "Make sure your file has no spaces or special characters in the name. Replace "
649
- "spaces with a - or _."
650
- msgstr ""
651
-
652
- #: adrotate.php:457
653
- msgid ""
654
- "If you remove spaces from filenames for HTML5 adverts also edit the html "
655
- "file so it knows about the changed name. For example for the javascript file."
656
- msgstr ""
657
-
658
- #: adrotate.php:460
659
- #, fuzzy
660
- msgid ""
661
- "For responsive adverts make sure the filename is in the following format; "
662
- "\"imagename.full.ext\". A full set of sized images is strongly recommended."
663
- msgstr ""
664
- "Transférez vos images dans le dossier de la bannière et assurez-vous que le "
665
- "fichier est dans le format suivant: \"nomdefichier.full.ext\". Un ensemble "
666
- "complet d'images de tailles différentes est recommendé si vous avez un site "
667
- "fluide."
668
-
669
- #: adrotate.php:461
670
- msgid ""
671
- "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
672
- "filename instead of \".full\" for the various viewports."
673
- msgstr ""
674
- "Pour des images plus petites, utilisez \".320\", \".480\", \".768\" ou "
675
- "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
676
- "tailles d'écran."
677
-
678
- #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
679
- #: dashboard/publisher/groups-edit.php:316
680
- msgid "Example:"
681
- msgstr "Exemple :"
682
-
683
- #: adrotate.php:462
684
- #, fuzzy
685
- msgid ""
686
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
687
- "for different viewports."
688
- msgstr ""
689
- "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
690
- "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
691
-
692
- #: adrotate.php:466
693
- msgid "Upload file"
694
- msgstr ""
695
-
696
- #: adrotate.php:466
697
- msgid "Click only once per file!"
698
- msgstr ""
699
-
700
- #: adrotate.php:469
701
- msgid "Available files in"
702
- msgstr ""
703
-
704
- #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
705
- #: dashboard/publisher/groups-main.php:33
706
- msgid "Name"
707
- msgstr "Nom"
708
-
709
- #: adrotate.php:475
710
- #, fuzzy
711
- msgid "Actions"
712
- msgstr "Actions en vrac"
713
-
714
- #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
715
- #: adrotate.php:484 adrotate.php:485 adrotate.php:486
716
- #: dashboard/publisher/adverts-disabled.php:22
717
- #: dashboard/publisher/adverts-error.php:21
718
- #: dashboard/publisher/adverts-main.php:22
719
- msgid "Delete"
720
- msgstr "Effacer"
721
-
722
- #: adrotate.php:490
723
- msgid ""
724
- "Make sure the banner images are not in use by adverts when you delete them!"
725
- msgstr ""
726
-
727
- #: adrotate.php:490
728
- #, fuzzy
729
- msgid "Manage your banner folder from here with AdRotate Pro."
730
- msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
731
-
732
- #: adrotate.php:516
733
  msgid "AdRotate Settings"
734
  msgstr "Paramètres de AdRotate"
735
 
@@ -758,8 +534,9 @@ msgstr ""
758
  msgid ""
759
  "Target mobile users with ease and show the right adverts to smartphones, "
760
  "tablets and computers. Mix and match as you please and offer adverts that "
761
- "suit the device. Create as many mobile adverts as you want without effort "
762
- "and with a few easy to use options they show up where you want them to!"
 
763
  msgstr ""
764
 
765
  #: dashboard/adrotatepro.php:34
@@ -786,39 +563,40 @@ msgid ""
786
  "forum. Get a solution (usually) within one business day."
787
  msgstr ""
788
 
789
- #: dashboard/adrotatepro.php:48 dashboard/info.php:119
790
  msgid "AdRotate is brought to you by"
791
  msgstr "AdRotate est offert par"
792
 
793
- #: dashboard/adrotatepro.php:74
794
  msgid "Schedule all campaigns with ease"
795
  msgstr "Planifier toutes vos campagnes en toute simplicité"
796
 
797
- #: dashboard/adrotatepro.php:77
798
  msgid ""
799
  "Schedule your adverts and set up advertising campaigns based on dates you or "
800
- "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
801
- "You name it, AdRotate schedules it. This makes planning your revenue stream "
802
- "much more easy. You can set one or many schedules for adverts."
 
803
  msgstr ""
804
 
805
- #: dashboard/adrotatepro.php:81
806
  msgid "Avoid adblockers"
807
  msgstr ""
808
 
809
- #: dashboard/adrotatepro.php:84
810
  msgid ""
811
- "Try and avoid adblockers so you adverts get the exposure you want them to "
812
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
813
  "adverts are less likely to be removed. Of-course make sure you create your "
814
  "adverts smartly so these features reach their full potential!"
815
  msgstr ""
816
 
817
- #: dashboard/adrotatepro.php:88
818
  msgid "Stay up-to-date with notifications"
819
  msgstr ""
820
 
821
- #: dashboard/adrotatepro.php:91
822
  msgid ""
823
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
824
  "adverts expire or need your attention. Additionally, send push notifications "
@@ -826,90 +604,90 @@ msgid ""
826
  "or when advertisers create new adverts. Never miss an expiration date again."
827
  msgstr ""
828
 
829
- #: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
830
- #: dashboard/info.php:78
831
  msgid "Buy AdRotate Professional"
832
  msgstr "Achetez AdRotate Professionel"
833
 
834
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
835
  msgid "Single License"
836
  msgstr ""
837
 
838
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
839
  msgid "For one WordPress installation."
840
  msgstr "Pour une installation Wordpress."
841
 
842
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
843
- #: dashboard/info.php:83 dashboard/info.php:90
844
  msgid "Duo License"
845
  msgstr "Licence Duo"
846
 
847
- #: dashboard/adrotatepro.php:100 dashboard/info.php:83
848
  msgid "For two WordPress installations."
849
  msgstr "Pour deux installations Wordpress."
850
 
851
- #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
852
- #: dashboard/info.php:84 dashboard/info.php:91
853
  msgid "Multi License"
854
  msgstr "Licence Multiple"
855
 
856
- #: dashboard/adrotatepro.php:101 dashboard/info.php:84
857
  msgid " For up to five WordPress installations."
858
  msgstr "Pour un max de cinq installation Wordpress."
859
 
860
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
861
- #: dashboard/info.php:85 dashboard/info.php:92
862
  msgid "Developer License"
863
  msgstr "Licence de Developpeur"
864
 
865
- #: dashboard/adrotatepro.php:102 dashboard/info.php:85
866
  msgid "Unlimited WordPress installations and/or networks."
867
  msgstr ""
868
 
869
- #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
870
- #: dashboard/info.php:86 dashboard/info.php:94
871
  msgid "Compare licenses"
872
  msgstr "Comparer les licences"
873
 
874
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
875
  msgid "Not sure which license is for you? Compare them..."
876
  msgstr ""
877
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
878
 
879
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
880
  msgid "All Licenses"
881
  msgstr "Toutes les licences"
882
 
883
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
884
  msgid "Lifetime License"
885
  msgstr ""
886
 
887
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
888
  msgid "Single installation."
889
  msgstr ""
890
 
891
- #: dashboard/adrotatepro.php:112 dashboard/info.php:90
892
  msgid "Up to 2 installations."
893
  msgstr ""
894
 
895
- #: dashboard/adrotatepro.php:113 dashboard/info.php:91
896
  msgid "Up to 10 installations."
897
  msgstr ""
898
 
899
- #: dashboard/adrotatepro.php:114 dashboard/info.php:92
900
  msgid "Up to 25 installations or multisite networks."
901
  msgstr ""
902
 
903
- #: dashboard/adrotatepro.php:115 dashboard/info.php:93
904
  msgid ""
905
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
906
  msgstr ""
907
 
908
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
909
  msgid "Not sure which license is for you?"
910
  msgstr ""
911
 
912
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
913
  msgid "Compare Licenses"
914
  msgstr ""
915
 
@@ -925,38 +703,41 @@ msgstr "Votre configuration"
925
  msgid "Adverts that need you"
926
  msgstr "Publicités qui ont besoin de votre attention"
927
 
928
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
929
- #: dashboard/publisher/groups-main.php:34
930
- msgid "Adverts"
931
- msgstr "Publicités"
932
-
933
  #: dashboard/info.php:38
934
  msgid "(Almost) Expired"
935
  msgstr "(presque) expiré"
936
 
937
- #: dashboard/info.php:41
938
- msgid "Groups"
939
- msgstr "Groupes"
940
-
941
  #: dashboard/info.php:42
942
  msgid "Have errors"
943
  msgstr "Il y a des erreurs"
944
 
945
- #: dashboard/info.php:48
946
- msgid "Support AdRotate"
947
- msgstr "Soutenez AdRotate"
948
-
949
- #: dashboard/info.php:55
950
  msgid ""
951
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
952
  "for updates about me and my plugins. Thank you!"
953
  msgstr ""
954
 
955
- #: dashboard/info.php:105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
956
  msgid "AdRotate News"
957
  msgstr ""
958
 
959
- #: dashboard/info.php:123
960
  msgid ""
961
  "I am a digital nomad in the Philippines. Click on my name to find out more "
962
  "about me and what I am doing. Thanks for your support and for using my "
@@ -967,17 +748,44 @@ msgstr ""
967
  msgid "Disabled Adverts"
968
  msgstr ""
969
 
 
 
 
 
 
 
 
970
  #: dashboard/publisher/adverts-disabled.php:21
971
- #: dashboard/publisher/adverts-edit.php:170
972
  msgid "Activate"
973
  msgstr "Activer"
974
 
 
 
 
 
 
 
975
  #: dashboard/publisher/adverts-disabled.php:23
976
  #: dashboard/publisher/adverts-error.php:22
977
  #: dashboard/publisher/adverts-main.php:23
978
  msgid "Reset stats"
979
  msgstr "Mettre à zéro les statistiques"
980
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
981
  #: dashboard/publisher/adverts-disabled.php:36
982
  #: dashboard/publisher/adverts-error.php:40
983
  #: dashboard/publisher/adverts-main.php:40
@@ -985,7 +793,7 @@ msgid "Start / End"
985
  msgstr "Début / Fin"
986
 
987
  #: dashboard/publisher/adverts-disabled.php:37
988
- #: dashboard/publisher/adverts-edit.php:110
989
  #: dashboard/publisher/adverts-error.php:41
990
  #: dashboard/publisher/adverts-main.php:41
991
  msgid "Title"
@@ -993,7 +801,7 @@ msgstr "Titre"
993
 
994
  #: dashboard/publisher/adverts-disabled.php:38
995
  #: dashboard/publisher/adverts-main.php:44
996
- #: dashboard/publisher/groups-edit.php:329
997
  #: dashboard/publisher/groups-main.php:36
998
  msgid "Shown"
999
  msgstr "Montré"
@@ -1002,7 +810,7 @@ msgstr "Montré"
1002
  #: dashboard/publisher/adverts-main.php:46
1003
  #: dashboard/publisher/adverts-report.php:36
1004
  #: dashboard/publisher/adverts-report.php:57
1005
- #: dashboard/publisher/groups-edit.php:330
1006
  #: dashboard/publisher/groups-main.php:38
1007
  #: dashboard/publisher/groups-report.php:37
1008
  #: dashboard/publisher/groups-report.php:58
@@ -1018,54 +826,54 @@ msgstr "Clicks"
1018
  msgid "CTR"
1019
  msgstr "CTR"
1020
 
1021
- #: dashboard/publisher/adverts-disabled.php:74
1022
  #: dashboard/publisher/adverts-error.php:64
1023
- #: dashboard/publisher/adverts-main.php:87
1024
  #: dashboard/publisher/groups-main.php:70
1025
  msgid "Edit"
1026
  msgstr "Modifier"
1027
 
1028
- #: dashboard/publisher/adverts-disabled.php:74
1029
  #: dashboard/publisher/adverts-error.php:64
1030
- #: dashboard/publisher/adverts-main.php:87
1031
  #: dashboard/publisher/groups-main.php:70
1032
  msgid "Stats"
1033
  msgstr "Statistiques"
1034
 
1035
- #: dashboard/publisher/adverts-disabled.php:74
1036
  #: dashboard/publisher/adverts-error.php:64
1037
- #: dashboard/publisher/adverts-main.php:87
1038
  #, fuzzy
1039
  msgid "Groups:"
1040
  msgstr "Groupes"
1041
 
1042
- #: dashboard/publisher/adverts-edit.php:48
1043
  msgid "The AdCode cannot be empty!"
1044
  msgstr "Le code de la publicité ne peut être vide!"
1045
 
1046
- #: dashboard/publisher/adverts-edit.php:51
1047
  msgid ""
1048
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1049
  "use!"
1050
  msgstr ""
1051
 
1052
- #: dashboard/publisher/adverts-edit.php:54
1053
  msgid ""
1054
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1055
  "use!"
1056
  msgstr ""
1057
 
1058
- #: dashboard/publisher/adverts-edit.php:57
1059
  msgid ""
1060
  "There is a problem saving the image. Please reset your image and re-save the "
1061
  "ad!"
1062
  msgstr ""
1063
 
1064
- #: dashboard/publisher/adverts-edit.php:60
1065
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1066
  msgstr ""
1067
 
1068
- #: dashboard/publisher/adverts-edit.php:65
1069
  msgid ""
1070
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1071
  "the ad!"
@@ -1073,78 +881,78 @@ msgstr ""
1073
  "AdRotate ne peut pas trouver une erreur, mais l'annonce est marquée erronée, "
1074
  "essayez d'enregistrer votre publicité à nouveau!"
1075
 
1076
- #: dashboard/publisher/adverts-edit.php:68
1077
  msgid "This ad is expired and currently not shown on your website!"
1078
  msgstr ""
1079
  "Cette publicité est expirée et ne figure actuellement pas sur votre site!"
1080
 
1081
- #: dashboard/publisher/adverts-edit.php:71
1082
  msgid "The ad will expire in less than 2 days!"
1083
  msgstr "Cette publicité va expirer dans moins de 2 jours!"
1084
 
1085
- #: dashboard/publisher/adverts-edit.php:74
1086
  msgid "This ad will expire in less than 7 days!"
1087
  msgstr "Cette publicité va expirer dans moins de 7 jours!"
1088
 
1089
- #: dashboard/publisher/adverts-edit.php:77
1090
  msgid "This ad has been disabled and does not rotate on your site!"
1091
  msgstr "Cette publicité à été désactivée et ne tourne plus sur votre site!"
1092
 
1093
- #: dashboard/publisher/adverts-edit.php:102
1094
  msgid "New Advert"
1095
  msgstr "Nouvelle pub"
1096
 
1097
- #: dashboard/publisher/adverts-edit.php:104
1098
  msgid "Edit Advert"
1099
  msgstr "Modifier la pub"
1100
 
1101
- #: dashboard/publisher/adverts-edit.php:116
1102
  msgid "AdCode"
1103
  msgstr ""
1104
 
1105
- #: dashboard/publisher/adverts-edit.php:121
1106
  msgid "Basic Examples:"
1107
  msgstr "Exemples de base :"
1108
 
1109
- #: dashboard/publisher/adverts-edit.php:128
1110
  msgid "Useful tags"
1111
  msgstr ""
1112
 
1113
- #: dashboard/publisher/adverts-edit.php:130
1114
  msgid "Insert the advert ID Number."
1115
  msgstr ""
1116
 
1117
- #: dashboard/publisher/adverts-edit.php:130
1118
  msgid "Required when selecting a asset below."
1119
  msgstr ""
1120
 
1121
- #: dashboard/publisher/adverts-edit.php:130
1122
  msgid "Insert the advert name."
1123
  msgstr ""
1124
 
1125
- #: dashboard/publisher/adverts-edit.php:130
1126
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1127
  msgstr ""
1128
 
1129
- #: dashboard/publisher/adverts-edit.php:130
1130
  msgid "Add inside the <a> tag to open advert in a new window."
1131
  msgstr ""
1132
 
1133
- #: dashboard/publisher/adverts-edit.php:130
1134
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1135
  msgstr ""
1136
 
1137
- #: dashboard/publisher/adverts-edit.php:130
1138
  msgid ""
1139
  "Place the cursor in your AdCode where you want to add any of these tags and "
1140
  "click to add it."
1141
  msgstr ""
1142
 
1143
- #: dashboard/publisher/adverts-edit.php:135
1144
  msgid "Preview"
1145
  msgstr "En avant-première"
1146
 
1147
- #: dashboard/publisher/adverts-edit.php:138
1148
  msgid ""
1149
  "Note: While this preview is an accurate one, it might look different then it "
1150
  "does on the website."
@@ -1152,42 +960,42 @@ msgstr ""
1152
  "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
1153
  "différente sur le site."
1154
 
1155
- #: dashboard/publisher/adverts-edit.php:139
1156
  msgid ""
1157
  "This is because of CSS differences. Your themes CSS file is not active here!"
1158
  msgstr ""
1159
  "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1160
  "pas actif ici!"
1161
 
1162
- #: dashboard/publisher/adverts-edit.php:144
1163
  msgid "Banner asset"
1164
  msgstr ""
1165
 
1166
- #: dashboard/publisher/adverts-edit.php:147
1167
  msgid "WordPress media:"
1168
  msgstr ""
1169
 
1170
- #: dashboard/publisher/adverts-edit.php:147
1171
  msgid "Select Banner"
1172
  msgstr "Choisir l'image"
1173
 
1174
- #: dashboard/publisher/adverts-edit.php:149
1175
  msgid "- OR -"
1176
  msgstr "- OU -"
1177
 
1178
- #: dashboard/publisher/adverts-edit.php:151
1179
  msgid "Banner folder:"
1180
  msgstr "Dossier de bannières :"
1181
 
1182
- #: dashboard/publisher/adverts-edit.php:152
1183
  msgid "No image selected"
1184
  msgstr "Aucune image sélectionnée"
1185
 
1186
- #: dashboard/publisher/adverts-edit.php:156
1187
  msgid "Use %asset% in the adcode instead of the file path."
1188
  msgstr ""
1189
 
1190
- #: dashboard/publisher/adverts-edit.php:156
1191
  msgid ""
1192
  "Use either the text field or the dropdown. If the textfield has content that "
1193
  "field has priority."
@@ -1195,316 +1003,311 @@ msgstr ""
1195
  "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1196
  "valeur, ce champ a la priorité."
1197
 
1198
- #: dashboard/publisher/adverts-edit.php:161
1199
  #: dashboard/settings/statistics.php:17
1200
  msgid "Statistics"
1201
  msgstr "Statistiques"
1202
 
1203
- #: dashboard/publisher/adverts-edit.php:163
1204
  msgid "Enable click and impression tracking for this advert."
1205
  msgstr ""
1206
 
1207
- #: dashboard/publisher/adverts-edit.php:164
1208
  msgid ""
1209
  "Note: Clicktracking does not work for Javascript adverts such as those "
1210
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1211
  "always supported."
1212
  msgstr ""
1213
 
1214
- #: dashboard/publisher/adverts-edit.php:174
1215
  msgid "Yes, this ad will be used"
1216
  msgstr "Oui, cette publicité sera utilisée"
1217
 
1218
- #: dashboard/publisher/adverts-edit.php:175
1219
  msgid "No, do not show this ad anywhere"
1220
  msgstr "Non, cette publicité ne sera pas utilisée"
1221
 
1222
- #: dashboard/publisher/adverts-edit.php:182
1223
- #: dashboard/publisher/adverts-main.php:114
1224
  #: dashboard/publisher/groups-edit.php:71
1225
  #: dashboard/publisher/groups-main.php:89
1226
  msgid "Get more features with AdRotate Pro."
1227
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
1228
 
1229
  #: dashboard/publisher/adverts-edit.php:185
1230
- #: dashboard/publisher/adverts-edit.php:285
1231
- #: dashboard/publisher/adverts-edit.php:408
1232
- #: dashboard/publisher/adverts-edit.php:449
 
 
 
 
 
 
 
1233
  msgid "Save Advert"
1234
  msgstr "Sauvegarder la pub"
1235
 
1236
- #: dashboard/publisher/adverts-edit.php:186
1237
- #: dashboard/publisher/adverts-edit.php:286
1238
- #: dashboard/publisher/adverts-edit.php:409
1239
- #: dashboard/publisher/adverts-edit.php:450
1240
  #: dashboard/publisher/groups-edit.php:150
1241
- #: dashboard/publisher/groups-edit.php:297
1242
- #: dashboard/publisher/groups-edit.php:389
1243
  msgid "Cancel"
1244
  msgstr "Annuller"
1245
 
1246
- #: dashboard/publisher/adverts-edit.php:189
1247
- #: dashboard/publisher/adverts-edit.php:391
1248
  #: dashboard/publisher/groups-edit.php:132
1249
- #: dashboard/publisher/groups-edit.php:279
1250
  msgid "Usage"
1251
  msgstr "Usage"
1252
 
1253
- #: dashboard/publisher/adverts-edit.php:193
1254
- #: dashboard/publisher/adverts-edit.php:395
1255
  #: dashboard/publisher/groups-edit.php:136
1256
- #: dashboard/publisher/groups-edit.php:283
 
 
1257
  msgid "Widget"
1258
  msgstr ""
1259
 
1260
- #: dashboard/publisher/adverts-edit.php:194
1261
- #: dashboard/publisher/adverts-edit.php:396
1262
  msgid ""
1263
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1264
  "and select the advert or the group the advert is in."
1265
  msgstr ""
1266
 
1267
- #: dashboard/publisher/adverts-edit.php:197
1268
- #: dashboard/publisher/adverts-edit.php:399
1269
  #: dashboard/publisher/groups-edit.php:140
1270
- #: dashboard/publisher/groups-edit.php:287
1271
  msgid "In a post or page"
1272
  msgstr ""
1273
 
1274
- #: dashboard/publisher/adverts-edit.php:199
1275
- #: dashboard/publisher/adverts-edit.php:401
1276
  #: dashboard/publisher/groups-edit.php:142
1277
- #: dashboard/publisher/groups-edit.php:289
1278
  msgid "Directly in a theme"
1279
  msgstr ""
1280
 
1281
- #: dashboard/publisher/adverts-edit.php:205
1282
  msgid "Schedule your advert"
1283
  msgstr ""
1284
 
1285
- #: dashboard/publisher/adverts-edit.php:209
1286
  msgid "Start date (day/month/year)"
1287
  msgstr ""
1288
 
1289
- #: dashboard/publisher/adverts-edit.php:230
1290
  msgid "End date (day/month/year)"
1291
  msgstr ""
1292
 
1293
- #: dashboard/publisher/adverts-edit.php:253
1294
  msgid "Start time (hh:mm)"
1295
  msgstr ""
1296
 
1297
- #: dashboard/publisher/adverts-edit.php:260
1298
  msgid "End time (hh:mm)"
1299
  msgstr ""
1300
 
1301
- #: dashboard/publisher/adverts-edit.php:270
1302
  msgid "Maximum Clicks"
1303
  msgstr ""
1304
 
1305
- #: dashboard/publisher/adverts-edit.php:271
1306
- #: dashboard/publisher/adverts-edit.php:273
1307
  msgid "Leave empty or 0 to skip this."
1308
  msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1309
 
1310
- #: dashboard/publisher/adverts-edit.php:272
1311
  msgid "Maximum Impressions"
1312
  msgstr ""
1313
 
1314
- #: dashboard/publisher/adverts-edit.php:277
1315
  msgid "Important"
1316
  msgstr ""
1317
 
1318
- #: dashboard/publisher/adverts-edit.php:278
1319
  msgid ""
1320
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1321
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1322
  "14:00 hours. 6AM is 6:00 hours."
1323
  msgstr ""
1324
 
1325
- #: dashboard/publisher/adverts-edit.php:282
1326
  msgid ""
1327
  "Create multiple and more advanced schedules for each advert with AdRotate "
1328
  "Pro."
1329
  msgstr ""
1330
 
1331
- #: dashboard/publisher/adverts-edit.php:282
1332
- #: dashboard/publisher/adverts-edit.php:345
1333
- #: dashboard/publisher/adverts-edit.php:389
1334
- #: dashboard/publisher/groups-edit.php:196
1335
  msgid "Upgrade today"
1336
  msgstr "Mettre à jour aujourd'hui"
1337
 
1338
- #: dashboard/publisher/adverts-edit.php:289
1339
  #: dashboard/publisher/groups-edit.php:153
1340
  msgid "Advanced"
1341
  msgstr "Avancé"
1342
 
1343
- #: dashboard/publisher/adverts-edit.php:290
1344
- msgid "Everything below is optional."
1345
- msgstr "Tous les paramètres ci-dessous sont optionels."
1346
-
1347
- #: dashboard/publisher/adverts-edit.php:290
1348
  msgid "Available in AdRotate Pro!"
1349
  msgstr ""
1350
 
1351
- #: dashboard/publisher/adverts-edit.php:295
1352
  #: dashboard/publisher/adverts-main.php:42
1353
- #: dashboard/publisher/groups-edit.php:332
1354
  msgid "Weight"
1355
  msgstr "Importance"
1356
 
1357
- #: dashboard/publisher/adverts-edit.php:298
1358
  msgid "Few impressions"
1359
  msgstr ""
1360
 
1361
- #: dashboard/publisher/adverts-edit.php:303
1362
  msgid "Less than average"
1363
  msgstr ""
1364
 
1365
- #: dashboard/publisher/adverts-edit.php:308
1366
  msgid "Normal impressions"
1367
  msgstr ""
1368
 
1369
- #: dashboard/publisher/adverts-edit.php:313
1370
  msgid "More than average"
1371
  msgstr ""
1372
 
1373
- #: dashboard/publisher/adverts-edit.php:318
1374
  msgid "Many impressions"
1375
  msgstr ""
1376
 
1377
- #: dashboard/publisher/adverts-edit.php:323
1378
  msgid "Mobile"
1379
  msgstr ""
1380
 
1381
- #: dashboard/publisher/adverts-edit.php:325
1382
  msgid "Computers"
1383
  msgstr ""
1384
 
1385
- #: dashboard/publisher/adverts-edit.php:328
1386
  msgid "Smartphones"
1387
  msgstr ""
1388
 
1389
- #: dashboard/publisher/adverts-edit.php:331
1390
  msgid "Tablets"
1391
  msgstr ""
1392
 
1393
- #: dashboard/publisher/adverts-edit.php:334
1394
  msgid ""
1395
  "Also enable mobile support in the group this advert goes in or these are "
1396
  "ignored."
1397
  msgstr ""
1398
 
1399
- #: dashboard/publisher/adverts-edit.php:338
1400
- #: dashboard/publisher/groups-edit.php:190
1401
- msgid "Sortorder"
 
1402
  msgstr ""
1403
 
1404
- #: dashboard/publisher/adverts-edit.php:340
1405
- #: dashboard/publisher/groups-edit.php:192
1406
- msgid "For administrative purposes set a sortorder."
1407
- msgstr "Pour des raisons administratives définir un ordre de tri."
1408
 
1409
- #: dashboard/publisher/adverts-edit.php:340
1410
- msgid "Leave empty or 0 to skip this. Will default to ad id."
1411
  msgstr ""
1412
- "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
1413
- "de l'ID de la publicité."
1414
 
1415
- #: dashboard/publisher/adverts-edit.php:345
1416
- msgid ""
1417
- "With AdRotate Pro you can easily select which devices the advert should show "
1418
- "on!"
1419
  msgstr ""
1420
 
1421
- #: dashboard/publisher/adverts-edit.php:347
1422
- msgid "Geo Targeting in AdRotate Pro"
1423
  msgstr ""
1424
 
1425
- #: dashboard/publisher/adverts-edit.php:348
1426
  msgid ""
1427
- "Assign the advert to a group and enable that group to use Geo Targeting."
 
1428
  msgstr ""
1429
 
1430
- #: dashboard/publisher/adverts-edit.php:352
1431
- msgid "Cities/States"
 
 
1432
  msgstr ""
1433
 
1434
- #: dashboard/publisher/adverts-edit.php:355
1435
  msgid ""
1436
- "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1437
- "states ISO codes are supported)"
1438
  msgstr ""
1439
 
1440
- #: dashboard/publisher/adverts-edit.php:355
 
 
 
 
1441
  msgid ""
1442
  "AdRotate does not check the validity of names so make sure you spell them "
1443
  "correctly!"
1444
  msgstr ""
1445
 
1446
- #: dashboard/publisher/adverts-edit.php:359
1447
- msgid "Countries"
1448
- msgstr ""
1449
-
1450
- #: dashboard/publisher/adverts-edit.php:384
1451
- #, fuzzy
1452
- msgid "Select the countries you want the adverts to show in."
1453
- msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
1454
-
1455
- #: dashboard/publisher/adverts-edit.php:384
1456
- msgid "Cities take priority and will be filtered first."
1457
- msgstr ""
1458
-
1459
- #: dashboard/publisher/adverts-edit.php:389
1460
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1461
  msgstr ""
1462
 
1463
- #: dashboard/publisher/adverts-edit.php:413
1464
  msgid "Select Groups"
1465
  msgstr "Choisir groupes"
1466
 
1467
- #: dashboard/publisher/adverts-edit.php:418
1468
  msgid "ID - Name"
1469
  msgstr "ID - Nom"
1470
 
1471
- #: dashboard/publisher/adverts-edit.php:428
1472
  #: dashboard/publisher/groups-main.php:60
1473
  #: dashboard/settings/geotargeting.php:49
1474
  msgid "Default"
1475
  msgstr "Par défaut"
1476
 
1477
- #: dashboard/publisher/adverts-edit.php:429
1478
  #: dashboard/publisher/groups-main.php:61
1479
  msgid "Dynamic"
1480
  msgstr "Dynamique"
1481
 
1482
- #: dashboard/publisher/adverts-edit.php:429
1483
  #: dashboard/publisher/groups-main.php:61
1484
  msgid "second rotation"
1485
  msgstr "deuxième rotation"
1486
 
1487
- #: dashboard/publisher/adverts-edit.php:430
1488
  #: dashboard/publisher/groups-main.php:62
1489
  msgid "Block"
1490
  msgstr "Bloc"
1491
 
1492
- #: dashboard/publisher/adverts-edit.php:430
1493
  #: dashboard/publisher/groups-main.php:62
1494
  msgid "grid"
1495
  msgstr "grille"
1496
 
1497
- #: dashboard/publisher/adverts-edit.php:431
1498
- #: dashboard/publisher/groups-edit.php:198
1499
  #: dashboard/publisher/groups-main.php:63
1500
  msgid "Post Injection"
1501
  msgstr "Injection dans l'article"
1502
 
1503
- #: dashboard/publisher/adverts-edit.php:432
1504
  msgid "Geolocation"
1505
  msgstr "Géolocalisation"
1506
 
1507
- #: dashboard/publisher/adverts-edit.php:438
1508
  #: dashboard/publisher/groups-edit.php:57
1509
  #: dashboard/publisher/groups-main.php:70
1510
  msgid "Mode"
@@ -1545,10 +1348,20 @@ msgid "For 7 days"
1545
  msgstr "Pour 7 jours"
1546
 
1547
  #: dashboard/publisher/adverts-error.php:71
1548
- #: dashboard/publisher/groups-edit.php:382
1549
  msgid "Configuration errors."
1550
  msgstr "Erreurs de configuration."
1551
 
 
 
 
 
 
 
 
 
 
 
1552
  #: dashboard/publisher/adverts-main.php:12
1553
  msgid "Active Adverts"
1554
  msgstr ""
@@ -1564,7 +1377,7 @@ msgstr ""
1564
  msgid "Today"
1565
  msgstr "Aujourd'hui"
1566
 
1567
- #: dashboard/publisher/adverts-main.php:109
1568
  msgid "No adverts created yet!"
1569
  msgstr ""
1570
 
@@ -1618,6 +1431,11 @@ msgstr "Nouveau Groupe"
1618
  msgid "Edit Group"
1619
  msgstr "Modifier Groupe"
1620
 
 
 
 
 
 
1621
  #: dashboard/publisher/groups-edit.php:60
1622
  msgid "Default - Show one ad at a time"
1623
  msgstr "Par defaut - Montrer une pub "
@@ -1704,15 +1522,15 @@ msgstr ""
1704
  "intervalle. La valeur par défaut est : 6."
1705
 
1706
  #: dashboard/publisher/groups-edit.php:137
1707
- #: dashboard/publisher/groups-edit.php:284
1708
  msgid ""
1709
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1710
  "Adverts\" and enter ID"
1711
  msgstr ""
1712
 
1713
  #: dashboard/publisher/groups-edit.php:149
1714
- #: dashboard/publisher/groups-edit.php:296
1715
- #: dashboard/publisher/groups-edit.php:388
1716
  msgid "Save Group"
1717
  msgstr "Sauvegarder groupe"
1718
 
@@ -1764,11 +1582,6 @@ msgid ""
1764
  "setting. Not every theme supports this feature."
1765
  msgstr ""
1766
 
1767
- #: dashboard/publisher/groups-edit.php:180
1768
- #: dashboard/settings/advertisers.php:38
1769
- msgid "Geo Targeting"
1770
- msgstr ""
1771
-
1772
  #: dashboard/publisher/groups-edit.php:181
1773
  msgid "Enable Geo Targeting for this group."
1774
  msgstr ""
@@ -1789,149 +1602,130 @@ msgstr ""
1789
  msgid "Do not forget to put at least one mobile advert in this group."
1790
  msgstr ""
1791
 
1792
- #: dashboard/publisher/groups-edit.php:192
1793
- msgid "Leave empty or 0 to skip this. Will default to group id."
1794
- msgstr ""
1795
- "Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
1796
- "défaut de l'identifiant du groupe."
1797
-
1798
- #: dashboard/publisher/groups-edit.php:196
1799
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1800
  msgstr ""
1801
 
1802
- #: dashboard/publisher/groups-edit.php:201
1803
- msgid "In categories?"
1804
- msgstr ""
1805
-
1806
- #: dashboard/publisher/groups-edit.php:205
1807
- #: dashboard/publisher/groups-edit.php:243
1808
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1809
  msgid "Disabled"
1810
  msgstr "Désactivé"
1811
 
1812
  #: dashboard/publisher/groups-edit.php:206
1813
- #: dashboard/publisher/groups-edit.php:244
1814
  msgid "Before content"
1815
  msgstr "Avant le contenu"
1816
 
1817
  #: dashboard/publisher/groups-edit.php:207
1818
- #: dashboard/publisher/groups-edit.php:245
1819
  msgid "After content"
1820
  msgstr "Après le contenu"
1821
 
1822
  #: dashboard/publisher/groups-edit.php:208
1823
- #: dashboard/publisher/groups-edit.php:246
1824
  msgid "Before and after content"
1825
  msgstr "Avant et après le contenu"
1826
 
1827
  #: dashboard/publisher/groups-edit.php:209
1828
- #: dashboard/publisher/groups-edit.php:247
1829
  msgid "Inside the content..."
1830
  msgstr ""
1831
 
1832
  #: dashboard/publisher/groups-edit.php:215
1833
- #: dashboard/publisher/groups-edit.php:253
1834
  msgid "after the middle paragraph"
1835
  msgstr ""
1836
 
1837
  #: dashboard/publisher/groups-edit.php:216
1838
- #: dashboard/publisher/groups-edit.php:254
1839
  msgid "after the 1st paragraph"
1840
  msgstr ""
1841
 
1842
  #: dashboard/publisher/groups-edit.php:217
1843
- #: dashboard/publisher/groups-edit.php:255
1844
  msgid "after the 2nd paragraph"
1845
  msgstr ""
1846
 
1847
  #: dashboard/publisher/groups-edit.php:218
1848
- #: dashboard/publisher/groups-edit.php:256
1849
  msgid "after the 3rd paragraph"
1850
  msgstr ""
1851
 
1852
  #: dashboard/publisher/groups-edit.php:219
1853
- #: dashboard/publisher/groups-edit.php:257
1854
  msgid "after the 4th paragraph"
1855
  msgstr ""
1856
 
1857
  #: dashboard/publisher/groups-edit.php:220
1858
- #: dashboard/publisher/groups-edit.php:258
1859
  msgid "after the 5th paragraph"
1860
  msgstr ""
1861
 
1862
  #: dashboard/publisher/groups-edit.php:221
1863
- #: dashboard/publisher/groups-edit.php:259
1864
  msgid "after the 6th paragraph"
1865
  msgstr ""
1866
 
1867
  #: dashboard/publisher/groups-edit.php:222
1868
- #: dashboard/publisher/groups-edit.php:260
1869
  msgid "after the 7th paragraph"
1870
  msgstr ""
1871
 
1872
  #: dashboard/publisher/groups-edit.php:223
1873
- #: dashboard/publisher/groups-edit.php:261
1874
  msgid "after the 8th paragraph"
1875
  msgstr ""
1876
 
1877
- #: dashboard/publisher/groups-edit.php:229
1878
- msgid "Which categories?"
1879
- msgstr "Quelles catégories?"
1880
-
1881
- #: dashboard/publisher/groups-edit.php:234
1882
- msgid "Click the categories posts you want the adverts to show in."
1883
- msgstr ""
1884
- "Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
1885
- "pulicités."
1886
-
1887
  #: dashboard/publisher/groups-edit.php:239
1888
- msgid "In pages?"
1889
  msgstr ""
1890
 
1891
- #: dashboard/publisher/groups-edit.php:267
1892
- msgid "Which pages?"
1893
- msgstr "Quelles pages?"
1894
-
1895
- #: dashboard/publisher/groups-edit.php:272
1896
- msgid "Click the pages you want the adverts to show in."
1897
- msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
1898
-
1899
- #: dashboard/publisher/groups-edit.php:300
1900
  msgid "Wrapper code"
1901
  msgstr "Code enveloppant"
1902
 
1903
- #: dashboard/publisher/groups-edit.php:301
1904
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1905
  msgstr ""
1906
 
1907
- #: dashboard/publisher/groups-edit.php:305
1908
  msgid "Before advert"
1909
  msgstr ""
1910
 
1911
- #: dashboard/publisher/groups-edit.php:309
 
 
 
 
 
1912
  msgid "Options:"
1913
  msgstr "Options :"
1914
 
1915
- #: dashboard/publisher/groups-edit.php:313
1916
  msgid "After advert"
1917
  msgstr ""
1918
 
1919
- #: dashboard/publisher/groups-edit.php:322
1920
  msgid "Select adverts"
1921
  msgstr ""
1922
 
1923
- #: dashboard/publisher/groups-edit.php:327
1924
  msgid "Choose adverts"
1925
  msgstr ""
1926
 
1927
- #: dashboard/publisher/groups-edit.php:333
1928
  msgid "Visible until"
1929
  msgstr "Visible jusqu'à"
1930
 
1931
- #: dashboard/publisher/groups-edit.php:375
1932
  msgid "No adverts created!"
1933
  msgstr ""
1934
 
 
 
 
 
1935
  #: dashboard/publisher/groups-main.php:21
1936
  msgid "Delete Group"
1937
  msgstr "Supprimer le groupe"
@@ -1949,7 +1743,8 @@ msgid "This action can not be undone!"
1949
  msgstr "Ceci ne peux pas être défait!"
1950
 
1951
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1952
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
1953
  msgid "OK to continue, CANCEL to stop."
1954
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1955
 
@@ -2014,9 +1809,9 @@ msgid ""
2014
  msgstr ""
2015
 
2016
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2017
- #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2018
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2019
- #: dashboard/settings/statistics.php:73
2020
  msgid "Update Options"
2021
  msgstr "Mettre à jour les options"
2022
 
@@ -2320,7 +2115,8 @@ msgstr ""
2320
  msgid "Are you sure you want to continue?"
2321
  msgstr "Etes-vous certains de vouloir continuer?"
2322
 
2323
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
2324
  msgid "This might take a while and may slow down your site during this action!"
2325
  msgstr ""
2326
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
@@ -2331,36 +2127,34 @@ msgid "Delete stats older than 356 days (Optional)."
2331
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
2332
 
2333
  #: dashboard/settings/maintenance.php:32
2334
- msgid ""
2335
- "AdRotate creates empty records when you start making ads, groups or "
2336
- "schedules. In rare occasions these records are faulty."
2337
  msgstr ""
2338
 
2339
- #: dashboard/settings/maintenance.php:32
2340
  msgid ""
2341
- "If you made an ad, group or schedule that does not save when you make it use "
2342
- "this button to delete those empty records."
2343
  msgstr ""
2344
 
2345
- #: dashboard/settings/maintenance.php:32
2346
  msgid ""
2347
- "Additionally you can clean up old schedules and/or statistics. This will "
2348
- "improve the speed of your site."
2349
  msgstr ""
2350
 
2351
- #: dashboard/settings/maintenance.php:36
2352
  msgid "Re-evaluate Ads"
2353
  msgstr "Re-évaluer les publicités"
2354
 
2355
- #: dashboard/settings/maintenance.php:38
2356
  msgid "Re-evaluate all ads"
2357
  msgstr "Re-évaluer toutes les publicités"
2358
 
2359
- #: dashboard/settings/maintenance.php:38
2360
  msgid "You are about to check all ads for errors."
2361
  msgstr "Vous allez véifier l'état de toutes les publicités."
2362
 
2363
- #: dashboard/settings/maintenance.php:39
2364
  msgid ""
2365
  "This will apply all evaluation rules to all ads to see if any error slipped "
2366
  "in. Normally you should not need this feature."
@@ -2369,7 +2163,7 @@ msgstr ""
2369
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
2370
  "fonctionalité."
2371
 
2372
- #: dashboard/settings/maintenance.php:43
2373
  msgid ""
2374
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2375
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2382,11 +2176,11 @@ msgid ""
2382
  "is not a valid point in any case."
2383
  msgstr ""
2384
 
2385
- #: dashboard/settings/maintenance.php:45
2386
  msgid "Troubleshooting"
2387
  msgstr "Diagnostic de dépannage"
2388
 
2389
- #: dashboard/settings/maintenance.php:46
2390
  msgid ""
2391
  "The below options are not meant for normal use and are only there for "
2392
  "developers to review saved settings or how ads are selected. These can be "
@@ -2394,19 +2188,19 @@ msgid ""
2394
  "SHOULD BE LEFT UNCHECKED!!"
2395
  msgstr ""
2396
 
2397
- #: dashboard/settings/maintenance.php:49
2398
  msgid "Developer Debug"
2399
  msgstr "Debuggage de développeur"
2400
 
2401
- #: dashboard/settings/maintenance.php:51
2402
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2403
  msgstr ""
2404
 
2405
- #: dashboard/settings/maintenance.php:52
2406
  msgid "View advert specs and (some) stats in the dashboard."
2407
  msgstr ""
2408
 
2409
- #: dashboard/settings/maintenance.php:53
2410
  msgid ""
2411
  "Disable timers for clicks and impressions and enable a alert window for "
2412
  "clicktracking."
@@ -2414,97 +2208,111 @@ msgstr ""
2414
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
2415
  "fenêtre d'alerte pour le suivi des clicks."
2416
 
2417
- #: dashboard/settings/maintenance.php:54
2418
  msgid "Temporarily disable encryption on the redirect url."
2419
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
2420
 
2421
- #: dashboard/settings/maintenance.php:59
2422
  msgid "Status and Versions"
2423
  msgstr ""
2424
 
2425
- #: dashboard/settings/maintenance.php:62
2426
  msgid "Current status of adverts"
2427
  msgstr "Etat actuel des publicités"
2428
 
2429
- #: dashboard/settings/maintenance.php:63
2430
  msgid "Normal"
2431
  msgstr "Normal"
2432
 
2433
- #: dashboard/settings/maintenance.php:63
2434
  msgid "Error"
2435
  msgstr "Erreur"
2436
 
2437
- #: dashboard/settings/maintenance.php:63
2438
  msgid "Expired"
2439
  msgstr "Expiré"
2440
 
2441
- #: dashboard/settings/maintenance.php:63
2442
  msgid "Expires Soon"
2443
  msgstr "Expire bientôt"
2444
 
2445
- #: dashboard/settings/maintenance.php:63
2446
  msgid "Unknown"
2447
  msgstr ""
2448
 
2449
- #: dashboard/settings/maintenance.php:66
2450
  msgid "Banners/assets Folder"
2451
  msgstr ""
2452
 
2453
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2454
  msgid "Exists and appears writable"
2455
  msgstr ""
2456
 
2457
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2458
  msgid "Not writable or does not exist"
2459
  msgstr ""
2460
 
2461
- #: dashboard/settings/maintenance.php:70
2462
  msgid "Reports Folder"
2463
  msgstr ""
2464
 
2465
- #: dashboard/settings/maintenance.php:76
2466
  msgid "Advert evaluation"
2467
  msgstr ""
2468
 
2469
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2470
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2471
  msgstr ""
2472
 
2473
- #: dashboard/settings/maintenance.php:78
2474
- msgid "Trackerdata cleanup"
2475
  msgstr ""
2476
 
2477
- #: dashboard/settings/maintenance.php:83
2478
  msgid "Internal Versions"
2479
  msgstr ""
2480
 
2481
- #: dashboard/settings/maintenance.php:84
2482
  msgid ""
2483
  "Unless you experience database issues or a warning shows below, these "
2484
  "numbers are not really relevant for troubleshooting. Support may ask for "
2485
  "them to verify your database status."
2486
  msgstr ""
2487
 
2488
- #: dashboard/settings/maintenance.php:87
2489
  msgid "AdRotate version"
2490
  msgstr ""
2491
 
2492
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2493
  msgid "Current:"
2494
  msgstr ""
2495
 
2496
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2497
  msgid "Should be:"
2498
  msgstr ""
2499
 
2500
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2501
  msgid "Previous:"
2502
  msgstr ""
2503
 
2504
- #: dashboard/settings/maintenance.php:89
2505
  msgid "Database version"
2506
  msgstr ""
2507
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2508
  #: dashboard/settings/misc.php:16
2509
  msgid "Miscellaneous"
2510
  msgstr "Divers"
@@ -2918,6 +2726,145 @@ msgid ""
2918
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2919
  msgstr ""
2920
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2921
  #~ msgid "Enable responsive support for this advert."
2922
  #~ msgstr "Activer le support réactif pour cette publicité."
2923
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-22 22:11+0800\n"
6
+ "PO-Revision-Date: 2017-01-22 22:11+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
9
  "Language: fr_FR\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.11\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:721
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
+ #: adrotate-functions.php:724
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-functions.php:773
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:777
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:781
37
  msgid "Ad(s) deleted"
38
  msgstr "Publicité(s) supprimée(s)"
39
 
40
+ #: adrotate-functions.php:785
41
  msgid "Group deleted"
42
  msgstr "Groupe supprimé"
43
 
44
+ #: adrotate-functions.php:789
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
47
 
48
+ #: adrotate-functions.php:793
49
  msgid "Ad(s) renewed"
50
  msgstr "publicité(s) renouvellée(s)"
51
 
52
+ #: adrotate-functions.php:797
53
  msgid "Ad(s) deactivated"
54
  msgstr "Publicité(s) désactivée(s)"
55
 
56
+ #: adrotate-functions.php:801
57
  msgid "Ad(s) activated"
58
  msgstr "Publicité(s) activée(s)"
59
 
60
+ #: adrotate-functions.php:805
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Le gruop ainsi que ses publicités ont été supprimés"
63
 
64
+ #: adrotate-functions.php:809
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Publicité créée"
68
 
69
+ #: adrotate-functions.php:814
70
  msgid "Settings saved"
71
  msgstr "Paramètres sauvegardés"
72
 
73
+ #: adrotate-functions.php:818
74
  msgid "Database optimized"
75
  msgstr "Base de données optimisée"
76
 
77
+ #: adrotate-functions.php:822
78
  msgid "Database repaired"
79
  msgstr "Base de données réparée"
80
 
81
+ #: adrotate-functions.php:826
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr ""
84
  "Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
85
 
86
+ #: adrotate-functions.php:830
87
  msgid "Empty database records removed"
88
  msgstr "Les registres vides de la base de données ont été supprimés"
89
 
90
+ #: adrotate-functions.php:835
91
  msgid "Action prohibited"
92
  msgstr "Action interdite"
93
 
94
+ #: adrotate-functions.php:839
95
  msgid ""
96
  "The ad was saved but has an issue which might prevent it from working "
97
  "properly. Review the colored ad."
98
  msgstr ""
99
 
100
+ #: adrotate-functions.php:843
101
  msgid "No data found in selected time period"
102
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
103
 
104
+ #: adrotate-functions.php:847
105
  msgid "Database can only be optimized or cleaned once every hour"
106
  msgstr ""
107
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
108
 
109
+ #: adrotate-functions.php:851
110
  msgid "Form can not be (partially) empty!"
111
  msgstr ""
112
 
113
+ #: adrotate-functions.php:855
114
  msgid "No ads found."
115
  msgstr ""
116
 
117
+ #: adrotate-functions.php:859
118
  msgid "Unexpected error"
119
  msgstr ""
120
 
121
+ #: adrotate-manage-publisher.php:677
122
  msgid "AdRotate Advertiser"
123
  msgstr ""
124
 
201
  msgstr "Une erreur inconnue s'est produite."
202
 
203
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
 
204
  msgid "Check adverts"
205
  msgstr ""
206
 
207
+ #: adrotate-output.php:664
208
  msgid ""
209
  "You have enable caching support but W3 Total Cache is not active on your "
210
  "site!"
211
  msgstr ""
212
 
213
+ #: adrotate-output.php:667
214
  msgid ""
215
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
216
  "not set."
217
  msgstr ""
218
 
219
+ #: adrotate-output.php:672
220
  msgid "Your AdRotate Banner folder is not writable or does not exist."
221
  msgstr ""
222
 
223
+ #: adrotate-output.php:712 dashboard/adrotatepro.php:86
224
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:88
225
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:98
226
+ #: dashboard/adrotatepro.php:99 dashboard/adrotatepro.php:100
227
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:64 dashboard/info.php:65
228
+ #: dashboard/info.php:66 dashboard/info.php:67 dashboard/info.php:71
229
+ #: dashboard/info.php:72 dashboard/info.php:73 dashboard/info.php:74
230
  #: dashboard/settings/geotargeting.php:35
231
  msgid "Buy now"
232
  msgstr ""
233
 
234
+ #: adrotate-output.php:713
235
  msgid ""
236
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
237
  "to the <strong>PRO</strong> version"
238
  msgstr ""
239
 
240
+ #: adrotate-output.php:713
241
  #, php-format
242
  msgid ""
243
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
244
  msgstr ""
245
 
246
+ #: adrotate-output.php:713
247
  msgid "Thank you for your purchase!"
248
  msgstr ""
249
 
250
+ #: adrotate-output.php:774
251
  msgid ""
252
+ "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
253
+ "menu. If you need help getting started take a look at the"
254
  msgstr ""
255
 
256
+ #: adrotate-output.php:774
257
  msgid "manuals"
258
  msgstr "manuels"
259
 
260
+ #: adrotate-output.php:774 adrotate-output.php:844
261
  msgid "and"
262
  msgstr ""
263
 
264
+ #: adrotate-output.php:774
265
  msgid "forums"
266
  msgstr ""
267
 
268
+ #: adrotate-output.php:807
269
  msgid "Useful Links"
270
  msgstr ""
271
 
272
+ #: adrotate-output.php:808
273
  msgid "Useful links to learn more about AdRotate"
274
  msgstr ""
275
 
276
+ #: adrotate-output.php:810
277
  msgid "AdRotate website"
278
  msgstr ""
279
 
280
+ #: adrotate-output.php:811
281
  msgid "Getting Started With AdRotate"
282
  msgstr ""
283
 
284
+ #: adrotate-output.php:812
285
  msgid "AdRotate manuals"
286
  msgstr ""
287
 
288
+ #: adrotate-output.php:813
289
  msgid "AdRotate Support Forum"
290
  msgstr ""
291
 
292
+ #: adrotate-output.php:836 dashboard/info.php:46
293
+ msgid "Support AdRotate"
294
+ msgstr "Soutenez AdRotate"
 
295
 
296
+ #: adrotate-output.php:837
297
+ msgid "Check out my website"
298
  msgstr ""
299
 
300
+ #: adrotate-output.php:844
301
  msgid ""
302
+ "Many users only think to review AdRotate when something goes wrong while "
303
+ "thousands of people happily use AdRotate."
304
  msgstr ""
305
 
306
+ #: adrotate-output.php:844
307
+ msgid "If you find AdRotate useful please leave your"
308
  msgstr ""
309
 
310
+ #: adrotate-output.php:844
311
  msgid "rating"
312
  msgstr ""
313
 
314
+ #: adrotate-output.php:844
315
  #, fuzzy
316
  msgid "review"
317
  msgstr "En avant-première"
318
 
319
+ #: adrotate-output.php:844
320
  msgid "on WordPress.org to help AdRotate grow in a positive way"
321
  msgstr ""
322
 
323
+ #: adrotate-output.php:870 dashboard/settings/notifications.php:50
324
  #: dashboard/settings/notifications.php:80
325
  msgid "Available in AdRotate Pro"
326
  msgstr "Disponible dans Adrotate Pro"
327
 
328
+ #: adrotate-output.php:870
329
  msgid "More information..."
330
  msgstr "Plus d'informations..."
331
 
332
+ #: adrotate-output.php:871
333
  msgid "This feature is available in AdRotate Pro"
334
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
335
 
336
+ #: adrotate-output.php:871
337
  msgid "Learn more"
338
  msgstr "En savoir plus"
339
 
340
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:217
341
+ #: dashboard/publisher/adverts-edit.php:238
342
  msgid "January"
343
  msgstr "Janvier"
344
 
345
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:218
346
+ #: dashboard/publisher/adverts-edit.php:239
347
  msgid "February"
348
  msgstr "Février"
349
 
350
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:219
351
+ #: dashboard/publisher/adverts-edit.php:240
352
  msgid "March"
353
  msgstr "Mars"
354
 
355
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:220
356
+ #: dashboard/publisher/adverts-edit.php:241
357
  msgid "April"
358
  msgstr "Avril"
359
 
360
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:221
361
+ #: dashboard/publisher/adverts-edit.php:242
362
  msgid "May"
363
  msgstr "Mai"
364
 
365
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:222
366
+ #: dashboard/publisher/adverts-edit.php:243
367
  msgid "June"
368
  msgstr "Juin"
369
 
370
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:223
371
+ #: dashboard/publisher/adverts-edit.php:244
372
  msgid "July"
373
  msgstr "Juillet"
374
 
375
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:224
376
+ #: dashboard/publisher/adverts-edit.php:245
377
  msgid "August"
378
  msgstr "Août"
379
 
380
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:225
381
+ #: dashboard/publisher/adverts-edit.php:246
382
  msgid "September"
383
  msgstr "Septembre"
384
 
385
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:226
386
+ #: dashboard/publisher/adverts-edit.php:247
387
  msgid "October"
388
  msgstr "Octobre"
389
 
390
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:227
391
+ #: dashboard/publisher/adverts-edit.php:248
392
  msgid "November"
393
  msgstr "Novembre"
394
 
395
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:228
396
+ #: dashboard/publisher/adverts-edit.php:249
397
  msgid "December"
398
  msgstr "Décembre"
399
 
400
+ #: adrotate-statistics.php:152
401
  msgid "Previous"
402
  msgstr "Précédent"
403
 
404
+ #: adrotate-statistics.php:154
405
  msgid "This month"
406
  msgstr "Ce mois-ci"
407
 
408
+ #: adrotate-statistics.php:155
409
  msgid "Next"
410
  msgstr "Prochain"
411
 
412
+ #: adrotate-statistics.php:229
413
  msgid "No data to show!"
414
  msgstr "Aucune donnée à montrer!"
415
 
455
  msgid "Fill in the ID of the type you want to display!"
456
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
457
 
458
+ #: adrotate.php:101
459
  msgid "General Info"
460
  msgstr "Informations générales"
461
 
462
+ #: adrotate.php:102
463
  msgid "AdRotate Pro"
464
  msgstr "AdRotate Pro"
465
 
466
+ #: adrotate.php:103 dashboard/info.php:37
467
+ #: dashboard/publisher/adverts-edit.php:455
468
+ #: dashboard/publisher/groups-main.php:34
469
+ msgid "Adverts"
470
+ msgstr "Publicités"
 
 
 
 
 
 
 
471
 
472
+ #: adrotate.php:104 dashboard/info.php:41
473
+ msgid "Groups"
474
+ msgstr "Groupes"
 
475
 
476
+ #: adrotate.php:105
477
  msgid "Settings"
478
  msgstr "Paramètres"
479
 
480
+ #: adrotate.php:123
481
  msgid "AdRotate Info"
482
  msgstr "Informations sur Adrotate"
483
 
484
+ #: adrotate.php:141
485
  msgid "AdRotate Professional"
486
  msgstr "AdRotate professionel"
487
 
488
+ #: adrotate.php:181
489
  msgid "Advert Management"
490
  msgstr ""
491
 
492
+ #: adrotate.php:239 adrotate.php:306
493
  msgid "Manage"
494
  msgstr "Gérer"
495
 
496
+ #: adrotate.php:240 adrotate.php:307
497
  msgid "Add New"
498
  msgstr "Ajouter"
499
 
500
+ #: adrotate.php:300
501
  msgid "Group Management"
502
  msgstr "Gérer les groupes"
503
 
504
+ #: adrotate.php:309
505
  msgid "Report"
506
  msgstr "Rapport"
507
 
508
+ #: adrotate.php:354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
509
  msgid "AdRotate Settings"
510
  msgstr "Paramètres de AdRotate"
511
 
534
  msgid ""
535
  "Target mobile users with ease and show the right adverts to smartphones, "
536
  "tablets and computers. Mix and match as you please and offer adverts that "
537
+ "suit the device or mobile operating system. Create as many mobile adverts as "
538
+ "you want without effort and with a few easy to use options they show up "
539
+ "where you want them to!"
540
  msgstr ""
541
 
542
  #: dashboard/adrotatepro.php:34
563
  "forum. Get a solution (usually) within one business day."
564
  msgstr ""
565
 
566
+ #: dashboard/adrotatepro.php:48 dashboard/info.php:101
567
  msgid "AdRotate is brought to you by"
568
  msgstr "AdRotate est offert par"
569
 
570
+ #: dashboard/adrotatepro.php:61
571
  msgid "Schedule all campaigns with ease"
572
  msgstr "Planifier toutes vos campagnes en toute simplicité"
573
 
574
+ #: dashboard/adrotatepro.php:64
575
  msgid ""
576
  "Schedule your adverts and set up advertising campaigns based on dates you or "
577
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
578
+ "specific days in the week. You name it, AdRotate schedules it. This makes "
579
+ "planning your revenue stream very flexible. You can set one or many "
580
+ "schedules for adverts."
581
  msgstr ""
582
 
583
+ #: dashboard/adrotatepro.php:68
584
  msgid "Avoid adblockers"
585
  msgstr ""
586
 
587
+ #: dashboard/adrotatepro.php:71
588
  msgid ""
589
+ "Try and avoid adblockers so your adverts get the exposure you want them to "
590
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
591
  "adverts are less likely to be removed. Of-course make sure you create your "
592
  "adverts smartly so these features reach their full potential!"
593
  msgstr ""
594
 
595
+ #: dashboard/adrotatepro.php:75
596
  msgid "Stay up-to-date with notifications"
597
  msgstr ""
598
 
599
+ #: dashboard/adrotatepro.php:78
600
  msgid ""
601
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
602
  "adverts expire or need your attention. Additionally, send push notifications "
604
  "or when advertisers create new adverts. Never miss an expiration date again."
605
  msgstr ""
606
 
607
+ #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
608
+ #: dashboard/info.php:60
609
  msgid "Buy AdRotate Professional"
610
  msgstr "Achetez AdRotate Professionel"
611
 
612
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:64
613
  msgid "Single License"
614
  msgstr ""
615
 
616
+ #: dashboard/adrotatepro.php:86
617
  msgid "For one WordPress installation."
618
  msgstr "Pour une installation Wordpress."
619
 
620
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
621
+ #: dashboard/info.php:65 dashboard/info.php:72
622
  msgid "Duo License"
623
  msgstr "Licence Duo"
624
 
625
+ #: dashboard/adrotatepro.php:87
626
  msgid "For two WordPress installations."
627
  msgstr "Pour deux installations Wordpress."
628
 
629
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
630
+ #: dashboard/info.php:66 dashboard/info.php:73
631
  msgid "Multi License"
632
  msgstr "Licence Multiple"
633
 
634
+ #: dashboard/adrotatepro.php:88
635
  msgid " For up to five WordPress installations."
636
  msgstr "Pour un max de cinq installation Wordpress."
637
 
638
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
639
+ #: dashboard/info.php:67 dashboard/info.php:74
640
  msgid "Developer License"
641
  msgstr "Licence de Developpeur"
642
 
643
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:67
644
  msgid "Unlimited WordPress installations and/or networks."
645
  msgstr ""
646
 
647
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
648
+ #: dashboard/info.php:68 dashboard/info.php:76
649
  msgid "Compare licenses"
650
  msgstr "Comparer les licences"
651
 
652
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
653
  msgid "Not sure which license is for you? Compare them..."
654
  msgstr ""
655
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
656
 
657
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
658
  msgid "All Licenses"
659
  msgstr "Toutes les licences"
660
 
661
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
662
  msgid "Lifetime License"
663
  msgstr ""
664
 
665
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
666
  msgid "Single installation."
667
  msgstr ""
668
 
669
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:72
670
  msgid "Up to 2 installations."
671
  msgstr ""
672
 
673
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:73
674
  msgid "Up to 10 installations."
675
  msgstr ""
676
 
677
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:74
678
  msgid "Up to 25 installations or multisite networks."
679
  msgstr ""
680
 
681
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:75
682
  msgid ""
683
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
684
  msgstr ""
685
 
686
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
687
  msgid "Not sure which license is for you?"
688
  msgstr ""
689
 
690
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
691
  msgid "Compare Licenses"
692
  msgstr ""
693
 
703
  msgid "Adverts that need you"
704
  msgstr "Publicités qui ont besoin de votre attention"
705
 
 
 
 
 
 
706
  #: dashboard/info.php:38
707
  msgid "(Almost) Expired"
708
  msgstr "(presque) expiré"
709
 
 
 
 
 
710
  #: dashboard/info.php:42
711
  msgid "Have errors"
712
  msgstr "Il y a des erreurs"
713
 
714
+ #: dashboard/info.php:47
 
 
 
 
715
  msgid ""
716
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
717
  "for updates about me and my plugins. Thank you!"
718
  msgstr ""
719
 
720
+ #: dashboard/info.php:51 dashboard/publisher/adverts-edit.php:124
721
+ msgid "Get paid as a publisher:"
722
+ msgstr ""
723
+
724
+ #: dashboard/info.php:64
725
+ msgid "One WordPress installation."
726
+ msgstr ""
727
+
728
+ #: dashboard/info.php:65
729
+ msgid "Two WordPress installations."
730
+ msgstr ""
731
+
732
+ #: dashboard/info.php:66
733
+ msgid "Up to five WordPress installations."
734
+ msgstr ""
735
+
736
+ #: dashboard/info.php:87
737
  msgid "AdRotate News"
738
  msgstr ""
739
 
740
+ #: dashboard/info.php:105
741
  msgid ""
742
  "I am a digital nomad in the Philippines. Click on my name to find out more "
743
  "about me and what I am doing. Thanks for your support and for using my "
748
  msgid "Disabled Adverts"
749
  msgstr ""
750
 
751
+ #: dashboard/publisher/adverts-disabled.php:20
752
+ #: dashboard/publisher/adverts-error.php:19
753
+ #: dashboard/publisher/adverts-main.php:20
754
+ #: dashboard/publisher/groups-main.php:20
755
+ msgid "Bulk Actions"
756
+ msgstr "Actions en vrac"
757
+
758
  #: dashboard/publisher/adverts-disabled.php:21
759
+ #: dashboard/publisher/adverts-edit.php:173
760
  msgid "Activate"
761
  msgstr "Activer"
762
 
763
+ #: dashboard/publisher/adverts-disabled.php:22
764
+ #: dashboard/publisher/adverts-error.php:21
765
+ #: dashboard/publisher/adverts-main.php:22
766
+ msgid "Delete"
767
+ msgstr "Effacer"
768
+
769
  #: dashboard/publisher/adverts-disabled.php:23
770
  #: dashboard/publisher/adverts-error.php:22
771
  #: dashboard/publisher/adverts-main.php:23
772
  msgid "Reset stats"
773
  msgstr "Mettre à zéro les statistiques"
774
 
775
+ #: dashboard/publisher/adverts-disabled.php:25
776
+ #: dashboard/publisher/adverts-error.php:29
777
+ #: dashboard/publisher/adverts-main.php:30
778
+ #: dashboard/publisher/groups-main.php:24
779
+ msgid "Go"
780
+ msgstr "Aller"
781
+
782
+ #: dashboard/publisher/adverts-disabled.php:35
783
+ #: dashboard/publisher/adverts-error.php:39
784
+ #: dashboard/publisher/adverts-main.php:39
785
+ #: dashboard/publisher/groups-main.php:32
786
+ msgid "ID"
787
+ msgstr "ID"
788
+
789
  #: dashboard/publisher/adverts-disabled.php:36
790
  #: dashboard/publisher/adverts-error.php:40
791
  #: dashboard/publisher/adverts-main.php:40
793
  msgstr "Début / Fin"
794
 
795
  #: dashboard/publisher/adverts-disabled.php:37
796
+ #: dashboard/publisher/adverts-edit.php:109
797
  #: dashboard/publisher/adverts-error.php:41
798
  #: dashboard/publisher/adverts-main.php:41
799
  msgid "Title"
801
 
802
  #: dashboard/publisher/adverts-disabled.php:38
803
  #: dashboard/publisher/adverts-main.php:44
804
+ #: dashboard/publisher/groups-edit.php:331
805
  #: dashboard/publisher/groups-main.php:36
806
  msgid "Shown"
807
  msgstr "Montré"
810
  #: dashboard/publisher/adverts-main.php:46
811
  #: dashboard/publisher/adverts-report.php:36
812
  #: dashboard/publisher/adverts-report.php:57
813
+ #: dashboard/publisher/groups-edit.php:332
814
  #: dashboard/publisher/groups-main.php:38
815
  #: dashboard/publisher/groups-report.php:37
816
  #: dashboard/publisher/groups-report.php:58
826
  msgid "CTR"
827
  msgstr "CTR"
828
 
829
+ #: dashboard/publisher/adverts-disabled.php:71
830
  #: dashboard/publisher/adverts-error.php:64
831
+ #: dashboard/publisher/adverts-main.php:82
832
  #: dashboard/publisher/groups-main.php:70
833
  msgid "Edit"
834
  msgstr "Modifier"
835
 
836
+ #: dashboard/publisher/adverts-disabled.php:71
837
  #: dashboard/publisher/adverts-error.php:64
838
+ #: dashboard/publisher/adverts-main.php:82
839
  #: dashboard/publisher/groups-main.php:70
840
  msgid "Stats"
841
  msgstr "Statistiques"
842
 
843
+ #: dashboard/publisher/adverts-disabled.php:71
844
  #: dashboard/publisher/adverts-error.php:64
845
+ #: dashboard/publisher/adverts-main.php:82
846
  #, fuzzy
847
  msgid "Groups:"
848
  msgstr "Groupes"
849
 
850
+ #: dashboard/publisher/adverts-edit.php:47
851
  msgid "The AdCode cannot be empty!"
852
  msgstr "Le code de la publicité ne peut être vide!"
853
 
854
+ #: dashboard/publisher/adverts-edit.php:50
855
  msgid ""
856
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
857
  "use!"
858
  msgstr ""
859
 
860
+ #: dashboard/publisher/adverts-edit.php:53
861
  msgid ""
862
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
863
  "use!"
864
  msgstr ""
865
 
866
+ #: dashboard/publisher/adverts-edit.php:56
867
  msgid ""
868
  "There is a problem saving the image. Please reset your image and re-save the "
869
  "ad!"
870
  msgstr ""
871
 
872
+ #: dashboard/publisher/adverts-edit.php:59
873
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
874
  msgstr ""
875
 
876
+ #: dashboard/publisher/adverts-edit.php:64
877
  msgid ""
878
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
879
  "the ad!"
881
  "AdRotate ne peut pas trouver une erreur, mais l'annonce est marquée erronée, "
882
  "essayez d'enregistrer votre publicité à nouveau!"
883
 
884
+ #: dashboard/publisher/adverts-edit.php:67
885
  msgid "This ad is expired and currently not shown on your website!"
886
  msgstr ""
887
  "Cette publicité est expirée et ne figure actuellement pas sur votre site!"
888
 
889
+ #: dashboard/publisher/adverts-edit.php:70
890
  msgid "The ad will expire in less than 2 days!"
891
  msgstr "Cette publicité va expirer dans moins de 2 jours!"
892
 
893
+ #: dashboard/publisher/adverts-edit.php:73
894
  msgid "This ad will expire in less than 7 days!"
895
  msgstr "Cette publicité va expirer dans moins de 7 jours!"
896
 
897
+ #: dashboard/publisher/adverts-edit.php:76
898
  msgid "This ad has been disabled and does not rotate on your site!"
899
  msgstr "Cette publicité à été désactivée et ne tourne plus sur votre site!"
900
 
901
+ #: dashboard/publisher/adverts-edit.php:101
902
  msgid "New Advert"
903
  msgstr "Nouvelle pub"
904
 
905
+ #: dashboard/publisher/adverts-edit.php:103
906
  msgid "Edit Advert"
907
  msgstr "Modifier la pub"
908
 
909
+ #: dashboard/publisher/adverts-edit.php:115
910
  msgid "AdCode"
911
  msgstr ""
912
 
913
+ #: dashboard/publisher/adverts-edit.php:120
914
  msgid "Basic Examples:"
915
  msgstr "Exemples de base :"
916
 
917
+ #: dashboard/publisher/adverts-edit.php:131
918
  msgid "Useful tags"
919
  msgstr ""
920
 
921
+ #: dashboard/publisher/adverts-edit.php:133
922
  msgid "Insert the advert ID Number."
923
  msgstr ""
924
 
925
+ #: dashboard/publisher/adverts-edit.php:133
926
  msgid "Required when selecting a asset below."
927
  msgstr ""
928
 
929
+ #: dashboard/publisher/adverts-edit.php:133
930
  msgid "Insert the advert name."
931
  msgstr ""
932
 
933
+ #: dashboard/publisher/adverts-edit.php:133
934
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
935
  msgstr ""
936
 
937
+ #: dashboard/publisher/adverts-edit.php:133
938
  msgid "Add inside the <a> tag to open advert in a new window."
939
  msgstr ""
940
 
941
+ #: dashboard/publisher/adverts-edit.php:133
942
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
943
  msgstr ""
944
 
945
+ #: dashboard/publisher/adverts-edit.php:133
946
  msgid ""
947
  "Place the cursor in your AdCode where you want to add any of these tags and "
948
  "click to add it."
949
  msgstr ""
950
 
951
+ #: dashboard/publisher/adverts-edit.php:138
952
  msgid "Preview"
953
  msgstr "En avant-première"
954
 
955
+ #: dashboard/publisher/adverts-edit.php:141
956
  msgid ""
957
  "Note: While this preview is an accurate one, it might look different then it "
958
  "does on the website."
960
  "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
961
  "différente sur le site."
962
 
963
+ #: dashboard/publisher/adverts-edit.php:142
964
  msgid ""
965
  "This is because of CSS differences. Your themes CSS file is not active here!"
966
  msgstr ""
967
  "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
968
  "pas actif ici!"
969
 
970
+ #: dashboard/publisher/adverts-edit.php:147
971
  msgid "Banner asset"
972
  msgstr ""
973
 
974
+ #: dashboard/publisher/adverts-edit.php:150
975
  msgid "WordPress media:"
976
  msgstr ""
977
 
978
+ #: dashboard/publisher/adverts-edit.php:150
979
  msgid "Select Banner"
980
  msgstr "Choisir l'image"
981
 
982
+ #: dashboard/publisher/adverts-edit.php:152
983
  msgid "- OR -"
984
  msgstr "- OU -"
985
 
986
+ #: dashboard/publisher/adverts-edit.php:154
987
  msgid "Banner folder:"
988
  msgstr "Dossier de bannières :"
989
 
990
+ #: dashboard/publisher/adverts-edit.php:155
991
  msgid "No image selected"
992
  msgstr "Aucune image sélectionnée"
993
 
994
+ #: dashboard/publisher/adverts-edit.php:159
995
  msgid "Use %asset% in the adcode instead of the file path."
996
  msgstr ""
997
 
998
+ #: dashboard/publisher/adverts-edit.php:159
999
  msgid ""
1000
  "Use either the text field or the dropdown. If the textfield has content that "
1001
  "field has priority."
1003
  "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1004
  "valeur, ce champ a la priorité."
1005
 
1006
+ #: dashboard/publisher/adverts-edit.php:164
1007
  #: dashboard/settings/statistics.php:17
1008
  msgid "Statistics"
1009
  msgstr "Statistiques"
1010
 
1011
+ #: dashboard/publisher/adverts-edit.php:166
1012
  msgid "Enable click and impression tracking for this advert."
1013
  msgstr ""
1014
 
1015
+ #: dashboard/publisher/adverts-edit.php:167
1016
  msgid ""
1017
  "Note: Clicktracking does not work for Javascript adverts such as those "
1018
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1019
  "always supported."
1020
  msgstr ""
1021
 
1022
+ #: dashboard/publisher/adverts-edit.php:177
1023
  msgid "Yes, this ad will be used"
1024
  msgstr "Oui, cette publicité sera utilisée"
1025
 
1026
+ #: dashboard/publisher/adverts-edit.php:178
1027
  msgid "No, do not show this ad anywhere"
1028
  msgstr "Non, cette publicité ne sera pas utilisée"
1029
 
1030
+ #: dashboard/publisher/adverts-edit.php:185
1031
+ #: dashboard/publisher/adverts-main.php:107
1032
  #: dashboard/publisher/groups-edit.php:71
1033
  #: dashboard/publisher/groups-main.php:89
1034
  msgid "Get more features with AdRotate Pro."
1035
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
1036
 
1037
  #: dashboard/publisher/adverts-edit.php:185
1038
+ #: dashboard/publisher/adverts-main.php:107
1039
+ #: dashboard/publisher/groups-edit.php:71
1040
+ #: dashboard/publisher/groups-main.php:89
1041
+ msgid "More information"
1042
+ msgstr "Plus d'information"
1043
+
1044
+ #: dashboard/publisher/adverts-edit.php:188
1045
+ #: dashboard/publisher/adverts-edit.php:288
1046
+ #: dashboard/publisher/adverts-edit.php:444
1047
+ #: dashboard/publisher/adverts-edit.php:485
1048
  msgid "Save Advert"
1049
  msgstr "Sauvegarder la pub"
1050
 
1051
+ #: dashboard/publisher/adverts-edit.php:189
1052
+ #: dashboard/publisher/adverts-edit.php:289
1053
+ #: dashboard/publisher/adverts-edit.php:445
1054
+ #: dashboard/publisher/adverts-edit.php:486
1055
  #: dashboard/publisher/groups-edit.php:150
1056
+ #: dashboard/publisher/groups-edit.php:299
1057
+ #: dashboard/publisher/groups-edit.php:391
1058
  msgid "Cancel"
1059
  msgstr "Annuller"
1060
 
1061
+ #: dashboard/publisher/adverts-edit.php:192
1062
+ #: dashboard/publisher/adverts-edit.php:427
1063
  #: dashboard/publisher/groups-edit.php:132
1064
+ #: dashboard/publisher/groups-edit.php:281
1065
  msgid "Usage"
1066
  msgstr "Usage"
1067
 
1068
+ #: dashboard/publisher/adverts-edit.php:196
1069
+ #: dashboard/publisher/adverts-edit.php:431
1070
  #: dashboard/publisher/groups-edit.php:136
1071
+ #: dashboard/publisher/groups-edit.php:205
1072
+ #: dashboard/publisher/groups-edit.php:245
1073
+ #: dashboard/publisher/groups-edit.php:285
1074
  msgid "Widget"
1075
  msgstr ""
1076
 
1077
+ #: dashboard/publisher/adverts-edit.php:197
1078
+ #: dashboard/publisher/adverts-edit.php:432
1079
  msgid ""
1080
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1081
  "and select the advert or the group the advert is in."
1082
  msgstr ""
1083
 
1084
+ #: dashboard/publisher/adverts-edit.php:200
1085
+ #: dashboard/publisher/adverts-edit.php:435
1086
  #: dashboard/publisher/groups-edit.php:140
1087
+ #: dashboard/publisher/groups-edit.php:289
1088
  msgid "In a post or page"
1089
  msgstr ""
1090
 
1091
+ #: dashboard/publisher/adverts-edit.php:202
1092
+ #: dashboard/publisher/adverts-edit.php:437
1093
  #: dashboard/publisher/groups-edit.php:142
1094
+ #: dashboard/publisher/groups-edit.php:291
1095
  msgid "Directly in a theme"
1096
  msgstr ""
1097
 
1098
+ #: dashboard/publisher/adverts-edit.php:208
1099
  msgid "Schedule your advert"
1100
  msgstr ""
1101
 
1102
+ #: dashboard/publisher/adverts-edit.php:212
1103
  msgid "Start date (day/month/year)"
1104
  msgstr ""
1105
 
1106
+ #: dashboard/publisher/adverts-edit.php:233
1107
  msgid "End date (day/month/year)"
1108
  msgstr ""
1109
 
1110
+ #: dashboard/publisher/adverts-edit.php:256
1111
  msgid "Start time (hh:mm)"
1112
  msgstr ""
1113
 
1114
+ #: dashboard/publisher/adverts-edit.php:263
1115
  msgid "End time (hh:mm)"
1116
  msgstr ""
1117
 
1118
+ #: dashboard/publisher/adverts-edit.php:273
1119
  msgid "Maximum Clicks"
1120
  msgstr ""
1121
 
1122
+ #: dashboard/publisher/adverts-edit.php:274
1123
+ #: dashboard/publisher/adverts-edit.php:276
1124
  msgid "Leave empty or 0 to skip this."
1125
  msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1126
 
1127
+ #: dashboard/publisher/adverts-edit.php:275
1128
  msgid "Maximum Impressions"
1129
  msgstr ""
1130
 
1131
+ #: dashboard/publisher/adverts-edit.php:280
1132
  msgid "Important"
1133
  msgstr ""
1134
 
1135
+ #: dashboard/publisher/adverts-edit.php:281
1136
  msgid ""
1137
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1138
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1139
  "14:00 hours. 6AM is 6:00 hours."
1140
  msgstr ""
1141
 
1142
+ #: dashboard/publisher/adverts-edit.php:285
1143
  msgid ""
1144
  "Create multiple and more advanced schedules for each advert with AdRotate "
1145
  "Pro."
1146
  msgstr ""
1147
 
1148
+ #: dashboard/publisher/adverts-edit.php:285
1149
+ #: dashboard/publisher/adverts-edit.php:354
1150
+ #: dashboard/publisher/adverts-edit.php:425
1151
+ #: dashboard/publisher/groups-edit.php:191
1152
  msgid "Upgrade today"
1153
  msgstr "Mettre à jour aujourd'hui"
1154
 
1155
+ #: dashboard/publisher/adverts-edit.php:292
1156
  #: dashboard/publisher/groups-edit.php:153
1157
  msgid "Advanced"
1158
  msgstr "Avancé"
1159
 
1160
+ #: dashboard/publisher/adverts-edit.php:293
1161
+ #: dashboard/publisher/adverts-edit.php:357
 
 
 
1162
  msgid "Available in AdRotate Pro!"
1163
  msgstr ""
1164
 
1165
+ #: dashboard/publisher/adverts-edit.php:298
1166
  #: dashboard/publisher/adverts-main.php:42
1167
+ #: dashboard/publisher/groups-edit.php:334
1168
  msgid "Weight"
1169
  msgstr "Importance"
1170
 
1171
+ #: dashboard/publisher/adverts-edit.php:301
1172
  msgid "Few impressions"
1173
  msgstr ""
1174
 
1175
+ #: dashboard/publisher/adverts-edit.php:306
1176
  msgid "Less than average"
1177
  msgstr ""
1178
 
1179
+ #: dashboard/publisher/adverts-edit.php:311
1180
  msgid "Normal impressions"
1181
  msgstr ""
1182
 
1183
+ #: dashboard/publisher/adverts-edit.php:316
1184
  msgid "More than average"
1185
  msgstr ""
1186
 
1187
+ #: dashboard/publisher/adverts-edit.php:321
1188
  msgid "Many impressions"
1189
  msgstr ""
1190
 
1191
+ #: dashboard/publisher/adverts-edit.php:326
1192
  msgid "Mobile"
1193
  msgstr ""
1194
 
1195
+ #: dashboard/publisher/adverts-edit.php:328
1196
  msgid "Computers"
1197
  msgstr ""
1198
 
1199
+ #: dashboard/publisher/adverts-edit.php:331
1200
  msgid "Smartphones"
1201
  msgstr ""
1202
 
1203
+ #: dashboard/publisher/adverts-edit.php:334
1204
  msgid "Tablets"
1205
  msgstr ""
1206
 
1207
+ #: dashboard/publisher/adverts-edit.php:337
1208
  msgid ""
1209
  "Also enable mobile support in the group this advert goes in or these are "
1210
  "ignored."
1211
  msgstr ""
1212
 
1213
+ #: dashboard/publisher/adverts-edit.php:337
1214
+ msgid ""
1215
+ "Operating system detection only detects iOS/Android/Others or neither. Only "
1216
+ "works if Smartphones and/or Tablets is enabled."
1217
  msgstr ""
1218
 
1219
+ #: dashboard/publisher/adverts-edit.php:341
1220
+ msgid "Mobile OS"
1221
+ msgstr ""
 
1222
 
1223
+ #: dashboard/publisher/adverts-edit.php:343
1224
+ msgid "iOS"
1225
  msgstr ""
 
 
1226
 
1227
+ #: dashboard/publisher/adverts-edit.php:346
1228
+ msgid "Android"
 
 
1229
  msgstr ""
1230
 
1231
+ #: dashboard/publisher/adverts-edit.php:349
1232
+ msgid "Others"
1233
  msgstr ""
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:354
1236
  msgid ""
1237
+ "With AdRotate Pro you can easily select which devices and mobile operating "
1238
+ "systems the advert should show on!"
1239
  msgstr ""
1240
 
1241
+ #: dashboard/publisher/adverts-edit.php:356
1242
+ #: dashboard/publisher/groups-edit.php:180
1243
+ #: dashboard/settings/advertisers.php:38
1244
+ msgid "Geo Targeting"
1245
  msgstr ""
1246
 
1247
+ #: dashboard/publisher/adverts-edit.php:357
1248
  msgid ""
1249
+ "Assign the advert to a group and enable that group to use Geo Targeting."
 
1250
  msgstr ""
1251
 
1252
+ #: dashboard/publisher/adverts-edit.php:415
1253
+ msgid "A comma separated list of items:"
1254
+ msgstr ""
1255
+
1256
+ #: dashboard/publisher/adverts-edit.php:415
1257
  msgid ""
1258
  "AdRotate does not check the validity of names so make sure you spell them "
1259
  "correctly!"
1260
  msgstr ""
1261
 
1262
+ #: dashboard/publisher/adverts-edit.php:425
 
 
 
 
 
 
 
 
 
 
 
 
 
1263
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1264
  msgstr ""
1265
 
1266
+ #: dashboard/publisher/adverts-edit.php:449
1267
  msgid "Select Groups"
1268
  msgstr "Choisir groupes"
1269
 
1270
+ #: dashboard/publisher/adverts-edit.php:454
1271
  msgid "ID - Name"
1272
  msgstr "ID - Nom"
1273
 
1274
+ #: dashboard/publisher/adverts-edit.php:464
1275
  #: dashboard/publisher/groups-main.php:60
1276
  #: dashboard/settings/geotargeting.php:49
1277
  msgid "Default"
1278
  msgstr "Par défaut"
1279
 
1280
+ #: dashboard/publisher/adverts-edit.php:465
1281
  #: dashboard/publisher/groups-main.php:61
1282
  msgid "Dynamic"
1283
  msgstr "Dynamique"
1284
 
1285
+ #: dashboard/publisher/adverts-edit.php:465
1286
  #: dashboard/publisher/groups-main.php:61
1287
  msgid "second rotation"
1288
  msgstr "deuxième rotation"
1289
 
1290
+ #: dashboard/publisher/adverts-edit.php:466
1291
  #: dashboard/publisher/groups-main.php:62
1292
  msgid "Block"
1293
  msgstr "Bloc"
1294
 
1295
+ #: dashboard/publisher/adverts-edit.php:466
1296
  #: dashboard/publisher/groups-main.php:62
1297
  msgid "grid"
1298
  msgstr "grille"
1299
 
1300
+ #: dashboard/publisher/adverts-edit.php:467
1301
+ #: dashboard/publisher/groups-edit.php:199
1302
  #: dashboard/publisher/groups-main.php:63
1303
  msgid "Post Injection"
1304
  msgstr "Injection dans l'article"
1305
 
1306
+ #: dashboard/publisher/adverts-edit.php:468
1307
  msgid "Geolocation"
1308
  msgstr "Géolocalisation"
1309
 
1310
+ #: dashboard/publisher/adverts-edit.php:474
1311
  #: dashboard/publisher/groups-edit.php:57
1312
  #: dashboard/publisher/groups-main.php:70
1313
  msgid "Mode"
1348
  msgstr "Pour 7 jours"
1349
 
1350
  #: dashboard/publisher/adverts-error.php:71
1351
+ #: dashboard/publisher/groups-edit.php:384
1352
  msgid "Configuration errors."
1353
  msgstr "Erreurs de configuration."
1354
 
1355
+ #: dashboard/publisher/adverts-error.php:72
1356
+ #: dashboard/publisher/groups-edit.php:385
1357
+ msgid "Expires soon."
1358
+ msgstr "Expire bientôt."
1359
+
1360
+ #: dashboard/publisher/adverts-error.php:73
1361
+ #: dashboard/publisher/groups-edit.php:386
1362
+ msgid "Has expired."
1363
+ msgstr "A expiré."
1364
+
1365
  #: dashboard/publisher/adverts-main.php:12
1366
  msgid "Active Adverts"
1367
  msgstr ""
1377
  msgid "Today"
1378
  msgstr "Aujourd'hui"
1379
 
1380
+ #: dashboard/publisher/adverts-main.php:102
1381
  msgid "No adverts created yet!"
1382
  msgstr ""
1383
 
1431
  msgid "Edit Group"
1432
  msgstr "Modifier Groupe"
1433
 
1434
+ #: dashboard/publisher/groups-edit.php:51
1435
+ #: dashboard/publisher/groups-main.php:33
1436
+ msgid "Name"
1437
+ msgstr "Nom"
1438
+
1439
  #: dashboard/publisher/groups-edit.php:60
1440
  msgid "Default - Show one ad at a time"
1441
  msgstr "Par defaut - Montrer une pub "
1522
  "intervalle. La valeur par défaut est : 6."
1523
 
1524
  #: dashboard/publisher/groups-edit.php:137
1525
+ #: dashboard/publisher/groups-edit.php:286
1526
  msgid ""
1527
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1528
  "Adverts\" and enter ID"
1529
  msgstr ""
1530
 
1531
  #: dashboard/publisher/groups-edit.php:149
1532
+ #: dashboard/publisher/groups-edit.php:298
1533
+ #: dashboard/publisher/groups-edit.php:390
1534
  msgid "Save Group"
1535
  msgstr "Sauvegarder groupe"
1536
 
1582
  "setting. Not every theme supports this feature."
1583
  msgstr ""
1584
 
 
 
 
 
 
1585
  #: dashboard/publisher/groups-edit.php:181
1586
  msgid "Enable Geo Targeting for this group."
1587
  msgstr ""
1602
  msgid "Do not forget to put at least one mobile advert in this group."
1603
  msgstr ""
1604
 
1605
+ #: dashboard/publisher/groups-edit.php:191
 
 
 
 
 
 
1606
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1607
  msgstr ""
1608
 
1609
+ #: dashboard/publisher/groups-edit.php:204
1610
+ #: dashboard/publisher/groups-edit.php:244
 
 
 
 
1611
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1612
  msgid "Disabled"
1613
  msgstr "Désactivé"
1614
 
1615
  #: dashboard/publisher/groups-edit.php:206
1616
+ #: dashboard/publisher/groups-edit.php:246
1617
  msgid "Before content"
1618
  msgstr "Avant le contenu"
1619
 
1620
  #: dashboard/publisher/groups-edit.php:207
1621
+ #: dashboard/publisher/groups-edit.php:247
1622
  msgid "After content"
1623
  msgstr "Après le contenu"
1624
 
1625
  #: dashboard/publisher/groups-edit.php:208
1626
+ #: dashboard/publisher/groups-edit.php:248
1627
  msgid "Before and after content"
1628
  msgstr "Avant et après le contenu"
1629
 
1630
  #: dashboard/publisher/groups-edit.php:209
1631
+ #: dashboard/publisher/groups-edit.php:249
1632
  msgid "Inside the content..."
1633
  msgstr ""
1634
 
1635
  #: dashboard/publisher/groups-edit.php:215
1636
+ #: dashboard/publisher/groups-edit.php:255
1637
  msgid "after the middle paragraph"
1638
  msgstr ""
1639
 
1640
  #: dashboard/publisher/groups-edit.php:216
1641
+ #: dashboard/publisher/groups-edit.php:256
1642
  msgid "after the 1st paragraph"
1643
  msgstr ""
1644
 
1645
  #: dashboard/publisher/groups-edit.php:217
1646
+ #: dashboard/publisher/groups-edit.php:257
1647
  msgid "after the 2nd paragraph"
1648
  msgstr ""
1649
 
1650
  #: dashboard/publisher/groups-edit.php:218
1651
+ #: dashboard/publisher/groups-edit.php:258
1652
  msgid "after the 3rd paragraph"
1653
  msgstr ""
1654
 
1655
  #: dashboard/publisher/groups-edit.php:219
1656
+ #: dashboard/publisher/groups-edit.php:259
1657
  msgid "after the 4th paragraph"
1658
  msgstr ""
1659
 
1660
  #: dashboard/publisher/groups-edit.php:220
1661
+ #: dashboard/publisher/groups-edit.php:260
1662
  msgid "after the 5th paragraph"
1663
  msgstr ""
1664
 
1665
  #: dashboard/publisher/groups-edit.php:221
1666
+ #: dashboard/publisher/groups-edit.php:261
1667
  msgid "after the 6th paragraph"
1668
  msgstr ""
1669
 
1670
  #: dashboard/publisher/groups-edit.php:222
1671
+ #: dashboard/publisher/groups-edit.php:262
1672
  msgid "after the 7th paragraph"
1673
  msgstr ""
1674
 
1675
  #: dashboard/publisher/groups-edit.php:223
1676
+ #: dashboard/publisher/groups-edit.php:263
1677
  msgid "after the 8th paragraph"
1678
  msgstr ""
1679
 
 
 
 
 
 
 
 
 
 
 
1680
  #: dashboard/publisher/groups-edit.php:239
1681
+ msgid "Page Injection"
1682
  msgstr ""
1683
 
1684
+ #: dashboard/publisher/groups-edit.php:302
 
 
 
 
 
 
 
 
1685
  msgid "Wrapper code"
1686
  msgstr "Code enveloppant"
1687
 
1688
+ #: dashboard/publisher/groups-edit.php:303
1689
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1690
  msgstr ""
1691
 
1692
+ #: dashboard/publisher/groups-edit.php:307
1693
  msgid "Before advert"
1694
  msgstr ""
1695
 
1696
+ #: dashboard/publisher/groups-edit.php:310
1697
+ #: dashboard/publisher/groups-edit.php:318
1698
+ msgid "Example:"
1699
+ msgstr "Exemple :"
1700
+
1701
+ #: dashboard/publisher/groups-edit.php:311
1702
  msgid "Options:"
1703
  msgstr "Options :"
1704
 
1705
+ #: dashboard/publisher/groups-edit.php:315
1706
  msgid "After advert"
1707
  msgstr ""
1708
 
1709
+ #: dashboard/publisher/groups-edit.php:324
1710
  msgid "Select adverts"
1711
  msgstr ""
1712
 
1713
+ #: dashboard/publisher/groups-edit.php:329
1714
  msgid "Choose adverts"
1715
  msgstr ""
1716
 
1717
+ #: dashboard/publisher/groups-edit.php:335
1718
  msgid "Visible until"
1719
  msgstr "Visible jusqu'à"
1720
 
1721
+ #: dashboard/publisher/groups-edit.php:377
1722
  msgid "No adverts created!"
1723
  msgstr ""
1724
 
1725
+ #: dashboard/publisher/groups-main.php:12
1726
+ msgid "Manage Groups"
1727
+ msgstr "Gérer les groupes"
1728
+
1729
  #: dashboard/publisher/groups-main.php:21
1730
  msgid "Delete Group"
1731
  msgstr "Supprimer le groupe"
1743
  msgstr "Ceci ne peux pas être défait!"
1744
 
1745
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1746
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
1747
+ #: dashboard/settings/maintenance.php:96
1748
  msgid "OK to continue, CANCEL to stop."
1749
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1750
 
1809
  msgstr ""
1810
 
1811
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1812
+ #: dashboard/settings/maintenance.php:103 dashboard/settings/misc.php:43
1813
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1814
+ #: dashboard/settings/statistics.php:79
1815
  msgid "Update Options"
1816
  msgstr "Mettre à jour les options"
1817
 
2115
  msgid "Are you sure you want to continue?"
2116
  msgstr "Etes-vous certains de vouloir continuer?"
2117
 
2118
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
2119
+ #: dashboard/settings/maintenance.php:96
2120
  msgid "This might take a while and may slow down your site during this action!"
2121
  msgstr ""
2122
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
2127
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
2128
 
2129
  #: dashboard/settings/maintenance.php:32
2130
+ msgid "Delete old tracker data. (Does nothing if you use a memcached plugin)"
 
 
2131
  msgstr ""
2132
 
2133
+ #: dashboard/settings/maintenance.php:33
2134
  msgid ""
2135
+ "For when you create an advert, group or schedule and it does not save or "
2136
+ "keep changes you make."
2137
  msgstr ""
2138
 
2139
+ #: dashboard/settings/maintenance.php:33
2140
  msgid ""
2141
+ "Additionally you can clean up old schedules, tracker data and/or statistics. "
2142
+ "This will improve the speed of your site."
2143
  msgstr ""
2144
 
2145
+ #: dashboard/settings/maintenance.php:37
2146
  msgid "Re-evaluate Ads"
2147
  msgstr "Re-évaluer les publicités"
2148
 
2149
+ #: dashboard/settings/maintenance.php:39
2150
  msgid "Re-evaluate all ads"
2151
  msgstr "Re-évaluer toutes les publicités"
2152
 
2153
+ #: dashboard/settings/maintenance.php:39
2154
  msgid "You are about to check all ads for errors."
2155
  msgstr "Vous allez véifier l'état de toutes les publicités."
2156
 
2157
+ #: dashboard/settings/maintenance.php:40
2158
  msgid ""
2159
  "This will apply all evaluation rules to all ads to see if any error slipped "
2160
  "in. Normally you should not need this feature."
2163
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
2164
  "fonctionalité."
2165
 
2166
+ #: dashboard/settings/maintenance.php:44
2167
  msgid ""
2168
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2169
  "database. They only apply to your ads/groups and stats. Not to other "
2176
  "is not a valid point in any case."
2177
  msgstr ""
2178
 
2179
+ #: dashboard/settings/maintenance.php:46
2180
  msgid "Troubleshooting"
2181
  msgstr "Diagnostic de dépannage"
2182
 
2183
+ #: dashboard/settings/maintenance.php:47
2184
  msgid ""
2185
  "The below options are not meant for normal use and are only there for "
2186
  "developers to review saved settings or how ads are selected. These can be "
2188
  "SHOULD BE LEFT UNCHECKED!!"
2189
  msgstr ""
2190
 
2191
+ #: dashboard/settings/maintenance.php:50
2192
  msgid "Developer Debug"
2193
  msgstr "Debuggage de développeur"
2194
 
2195
+ #: dashboard/settings/maintenance.php:52
2196
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2197
  msgstr ""
2198
 
2199
+ #: dashboard/settings/maintenance.php:53
2200
  msgid "View advert specs and (some) stats in the dashboard."
2201
  msgstr ""
2202
 
2203
+ #: dashboard/settings/maintenance.php:54
2204
  msgid ""
2205
  "Disable timers for clicks and impressions and enable a alert window for "
2206
  "clicktracking."
2208
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
2209
  "fenêtre d'alerte pour le suivi des clicks."
2210
 
2211
+ #: dashboard/settings/maintenance.php:55
2212
  msgid "Temporarily disable encryption on the redirect url."
2213
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
2214
 
2215
+ #: dashboard/settings/maintenance.php:60
2216
  msgid "Status and Versions"
2217
  msgstr ""
2218
 
2219
+ #: dashboard/settings/maintenance.php:63
2220
  msgid "Current status of adverts"
2221
  msgstr "Etat actuel des publicités"
2222
 
2223
+ #: dashboard/settings/maintenance.php:64
2224
  msgid "Normal"
2225
  msgstr "Normal"
2226
 
2227
+ #: dashboard/settings/maintenance.php:64
2228
  msgid "Error"
2229
  msgstr "Erreur"
2230
 
2231
+ #: dashboard/settings/maintenance.php:64
2232
  msgid "Expired"
2233
  msgstr "Expiré"
2234
 
2235
+ #: dashboard/settings/maintenance.php:64
2236
  msgid "Expires Soon"
2237
  msgstr "Expire bientôt"
2238
 
2239
+ #: dashboard/settings/maintenance.php:64
2240
  msgid "Unknown"
2241
  msgstr ""
2242
 
2243
+ #: dashboard/settings/maintenance.php:67
2244
  msgid "Banners/assets Folder"
2245
  msgstr ""
2246
 
2247
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2248
  msgid "Exists and appears writable"
2249
  msgstr ""
2250
 
2251
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2252
  msgid "Not writable or does not exist"
2253
  msgstr ""
2254
 
2255
+ #: dashboard/settings/maintenance.php:71
2256
  msgid "Reports Folder"
2257
  msgstr ""
2258
 
2259
+ #: dashboard/settings/maintenance.php:77
2260
  msgid "Advert evaluation"
2261
  msgstr ""
2262
 
2263
+ #: dashboard/settings/maintenance.php:78 dashboard/settings/maintenance.php:80
2264
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2265
  msgstr ""
2266
 
2267
+ #: dashboard/settings/maintenance.php:79
2268
+ msgid "Clean Transients"
2269
  msgstr ""
2270
 
2271
+ #: dashboard/settings/maintenance.php:84
2272
  msgid "Internal Versions"
2273
  msgstr ""
2274
 
2275
+ #: dashboard/settings/maintenance.php:85
2276
  msgid ""
2277
  "Unless you experience database issues or a warning shows below, these "
2278
  "numbers are not really relevant for troubleshooting. Support may ask for "
2279
  "them to verify your database status."
2280
  msgstr ""
2281
 
2282
+ #: dashboard/settings/maintenance.php:88
2283
  msgid "AdRotate version"
2284
  msgstr ""
2285
 
2286
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2287
  msgid "Current:"
2288
  msgstr ""
2289
 
2290
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2291
  msgid "Should be:"
2292
  msgstr ""
2293
 
2294
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2295
  msgid "Previous:"
2296
  msgstr ""
2297
 
2298
+ #: dashboard/settings/maintenance.php:90
2299
  msgid "Database version"
2300
  msgstr ""
2301
 
2302
+ #: dashboard/settings/maintenance.php:96
2303
+ msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2304
+ msgstr ""
2305
+
2306
+ #: dashboard/settings/maintenance.php:96
2307
+ msgid "Make sure you have a database backup!"
2308
+ msgstr ""
2309
+
2310
+ #: dashboard/settings/maintenance.php:97
2311
+ msgid ""
2312
+ "Attempt to update the database and migrate settings where required or "
2313
+ "relevant. Normally you should not need or use this option."
2314
+ msgstr ""
2315
+
2316
  #: dashboard/settings/misc.php:16
2317
  msgid "Miscellaneous"
2318
  msgstr "Divers"
2726
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2727
  msgstr ""
2728
 
2729
+ #: dashboard/settings/statistics.php:71
2730
+ msgid "Clean up temporary data"
2731
+ msgstr ""
2732
+
2733
+ #: dashboard/settings/statistics.php:73
2734
+ msgid ""
2735
+ "Periodically delete old tracker data. If you are using a memcached plugin "
2736
+ "you should disable this option!"
2737
+ msgstr ""
2738
+
2739
+ #, fuzzy
2740
+ #~ msgid "Help AdRotate Grow"
2741
+ #~ msgstr "AdRotate Pro"
2742
+
2743
+ #, fuzzy
2744
+ #~ msgid "Manage Schedules"
2745
+ #~ msgstr "Gérer les pubs"
2746
+
2747
+ #, fuzzy
2748
+ #~ msgid "Manage Media"
2749
+ #~ msgstr "Gérer les pubs"
2750
+
2751
+ #, fuzzy
2752
+ #~ msgid "Schedule Management available in AdRotate Pro"
2753
+ #~ msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
2754
+
2755
+ #, fuzzy
2756
+ #~ msgid ""
2757
+ #~ "Schedule management and multiple schedules per advert is available in "
2758
+ #~ "AdRotate Pro."
2759
+ #~ msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
2760
+
2761
+ #, fuzzy
2762
+ #~ msgid "Start"
2763
+ #~ msgstr "Début / Fin"
2764
+
2765
+ #~ msgid "Ads"
2766
+ #~ msgstr "Pubs"
2767
+
2768
+ #, fuzzy
2769
+ #~ msgid "Max Impressions"
2770
+ #~ msgstr "Nombre max de vues :"
2771
+
2772
+ #, fuzzy
2773
+ #~ msgid "Max Clicks"
2774
+ #~ msgstr "Nombre de clicks max :"
2775
+
2776
+ #, fuzzy
2777
+ #~ msgid "No schedules created yet!"
2778
+ #~ msgstr "Aucune pub n'a encore été créé!"
2779
+
2780
+ #, fuzzy
2781
+ #~ msgid "Easily manage your schedules from here with AdRotate Pro."
2782
+ #~ msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
2783
+
2784
+ #, fuzzy
2785
+ #~ msgid "Upgrade today!"
2786
+ #~ msgstr "Mettre à jour aujourd'hui"
2787
+
2788
+ #, fuzzy
2789
+ #~ msgid "Media Management available in AdRotate Pro"
2790
+ #~ msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
2791
+
2792
+ #, fuzzy
2793
+ #~ msgid "Media uploading and management is available in AdRotate Pro."
2794
+ #~ msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
2795
+
2796
+ #, fuzzy
2797
+ #~ msgid ""
2798
+ #~ "For responsive adverts make sure the filename is in the following format; "
2799
+ #~ "\"imagename.full.ext\". A full set of sized images is strongly "
2800
+ #~ "recommended."
2801
+ #~ msgstr ""
2802
+ #~ "Transférez vos images dans le dossier de la bannière et assurez-vous que "
2803
+ #~ "le fichier est dans le format suivant: \"nomdefichier.full.ext\". Un "
2804
+ #~ "ensemble complet d'images de tailles différentes est recommendé si vous "
2805
+ #~ "avez un site fluide."
2806
+
2807
+ #~ msgid ""
2808
+ #~ "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in "
2809
+ #~ "the filename instead of \".full\" for the various viewports."
2810
+ #~ msgstr ""
2811
+ #~ "Pour des images plus petites, utilisez \".320\", \".480\", \".768\" ou "
2812
+ #~ "\".1024\" dans le nom du fichier au lieu de \".full\" pour les "
2813
+ #~ "différentes tailles d'écran."
2814
+
2815
+ #, fuzzy
2816
+ #~ msgid ""
2817
+ #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
2818
+ #~ "advert for different viewports."
2819
+ #~ msgstr ""
2820
+ #~ "image.full.jpg, image.320.jpg et image.768.jpg serviront la même "
2821
+ #~ "publicité pour différentes tailles d'écran si le site est fluide. "
2822
+ #~ "Nécessite jQuery."
2823
+
2824
+ #, fuzzy
2825
+ #~ msgid "Actions"
2826
+ #~ msgstr "Actions en vrac"
2827
+
2828
+ #, fuzzy
2829
+ #~ msgid "Manage your banner folder from here with AdRotate Pro."
2830
+ #~ msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
2831
+
2832
+ #~ msgid "Everything below is optional."
2833
+ #~ msgstr "Tous les paramètres ci-dessous sont optionels."
2834
+
2835
+ #~ msgid "For administrative purposes set a sortorder."
2836
+ #~ msgstr "Pour des raisons administratives définir un ordre de tri."
2837
+
2838
+ #~ msgid "Leave empty or 0 to skip this. Will default to ad id."
2839
+ #~ msgstr ""
2840
+ #~ "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera "
2841
+ #~ "celle de l'ID de la publicité."
2842
+
2843
+ #, fuzzy
2844
+ #~ msgid "Select the countries you want the adverts to show in."
2845
+ #~ msgstr ""
2846
+ #~ "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
2847
+
2848
+ #~ msgid "Leave empty or 0 to skip this. Will default to group id."
2849
+ #~ msgstr ""
2850
+ #~ "Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
2851
+ #~ "défaut de l'identifiant du groupe."
2852
+
2853
+ #~ msgid "Which categories?"
2854
+ #~ msgstr "Quelles catégories?"
2855
+
2856
+ #~ msgid "Click the categories posts you want the adverts to show in."
2857
+ #~ msgstr ""
2858
+ #~ "Choisir les articles des catégories dans lesquelles vous voulez intégrer "
2859
+ #~ "les pulicités."
2860
+
2861
+ #~ msgid "Which pages?"
2862
+ #~ msgstr "Quelles pages?"
2863
+
2864
+ #~ msgid "Click the pages you want the adverts to show in."
2865
+ #~ msgstr ""
2866
+ #~ "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
2867
+
2868
  #~ msgid "Enable responsive support for this advert."
2869
  #~ msgstr "Activer le support réactif pour cette publicité."
2870
 
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: 2016-07-17 23:25+0800\n"
6
- "PO-Revision-Date: 2016-07-17 23:25+0800\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,110 +13,110 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.8.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:842
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
- #: adrotate-functions.php:845
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
- #: adrotate-functions.php:894
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
- #: adrotate-functions.php:898
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
- #: adrotate-functions.php:902
36
  msgid "Ad(s) deleted"
37
  msgstr "広告削除"
38
 
39
- #: adrotate-functions.php:906
40
  msgid "Group deleted"
41
  msgstr "グループの削除"
42
 
43
- #: adrotate-functions.php:910
44
  msgid "Ad(s) statistics reset"
45
  msgstr "広告の統計情報初期化"
46
 
47
- #: adrotate-functions.php:914
48
  msgid "Ad(s) renewed"
49
  msgstr "広告の更新"
50
 
51
- #: adrotate-functions.php:918
52
  msgid "Ad(s) deactivated"
53
  msgstr "広告の利用停止"
54
 
55
- #: adrotate-functions.php:922
56
  msgid "Ad(s) activated"
57
  msgstr "広告の利用可能化"
58
 
59
- #: adrotate-functions.php:926
60
  msgid "Group including it's Ads deleted"
61
  msgstr "削除された広告がグループに含まれています。"
62
 
63
- #: adrotate-functions.php:930
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "エクスポートオプション"
67
 
68
- #: adrotate-functions.php:935
69
  msgid "Settings saved"
70
  msgstr "設定を保存します。"
71
 
72
- #: adrotate-functions.php:939
73
  msgid "Database optimized"
74
  msgstr "データベースの最適化"
75
 
76
- #: adrotate-functions.php:943
77
  msgid "Database repaired"
78
  msgstr "データベースの修復"
79
 
80
- #: adrotate-functions.php:947
81
  #, fuzzy
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr "広告"
84
 
85
- #: adrotate-functions.php:951
86
  msgid "Empty database records removed"
87
  msgstr "空のデータベースは削除されました。"
88
 
89
- #: adrotate-functions.php:956
90
  msgid "Action prohibited"
91
  msgstr "今の操作は禁止されました。"
92
 
93
- #: adrotate-functions.php:960
94
  msgid ""
95
  "The ad was saved but has an issue which might prevent it from working "
96
  "properly. Review the colored ad."
97
  msgstr ""
98
 
99
- #: adrotate-functions.php:964
100
  msgid "No data found in selected time period"
101
  msgstr "選ばれた期間が見つかりません。"
102
 
103
- #: adrotate-functions.php:968
104
  msgid "Database can only be optimized or cleaned once every hour"
105
  msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
106
 
107
- #: adrotate-functions.php:972
108
  msgid "Form can not be (partially) empty!"
109
  msgstr ""
110
 
111
- #: adrotate-functions.php:976
112
  msgid "No ads found."
113
  msgstr ""
114
 
115
- #: adrotate-functions.php:980
116
  msgid "Unexpected error"
117
  msgstr ""
118
 
119
- #: adrotate-manage-publisher.php:685
120
  msgid "AdRotate Advertiser"
121
  msgstr ""
122
 
@@ -206,230 +206,229 @@ msgid "An unknown error occured."
206
  msgstr "理解できないエラーが起こっています。"
207
 
208
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
209
- #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
210
  msgid "Check adverts"
211
  msgstr ""
212
 
213
- #: adrotate-output.php:675
214
  msgid ""
215
  "You have enable caching support but W3 Total Cache is not active on your "
216
  "site!"
217
  msgstr ""
218
 
219
- #: adrotate-output.php:678
220
  msgid ""
221
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
222
  "not set."
223
  msgstr ""
224
 
225
- #: adrotate-output.php:683
226
  msgid "Your AdRotate Banner folder is not writable or does not exist."
227
  msgstr ""
228
 
229
- #: adrotate-output.php:723 dashboard/adrotatepro.php:99
230
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
231
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
232
- #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
233
- #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
234
- #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
235
- #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
236
  #: dashboard/settings/geotargeting.php:35
237
  #, fuzzy
238
  msgid "Buy now"
239
  msgstr "継続する場合は対応して下さい。"
240
 
241
- #: adrotate-output.php:724
242
  msgid ""
243
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
244
  "to the <strong>PRO</strong> version"
245
  msgstr ""
246
 
247
- #: adrotate-output.php:724
248
  #, php-format
249
  msgid ""
250
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
251
  msgstr ""
252
 
253
- #: adrotate-output.php:724
254
  msgid "Thank you for your purchase!"
255
  msgstr ""
256
 
257
- #: adrotate-output.php:785
258
  msgid ""
259
- "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
260
- "this menu. Check out the"
261
  msgstr ""
262
 
263
- #: adrotate-output.php:785
264
  msgid "manuals"
265
  msgstr "マニュアル(英語サイト)"
266
 
267
- #: adrotate-output.php:785 adrotate-output.php:852
268
  msgid "and"
269
  msgstr ""
270
 
271
- #: adrotate-output.php:785
272
  #, fuzzy
273
  msgid "forums"
274
  msgstr "フォーラム"
275
 
276
- #: adrotate-output.php:815
277
  #, fuzzy
278
  msgid "Useful Links"
279
  msgstr "役に立つ情報"
280
 
281
- #: adrotate-output.php:816
282
  msgid "Useful links to learn more about AdRotate"
283
  msgstr ""
284
 
285
- #: adrotate-output.php:818
286
  msgid "AdRotate website"
287
  msgstr ""
288
 
289
- #: adrotate-output.php:819
290
  #, fuzzy
291
  msgid "Getting Started With AdRotate"
292
  msgstr ""
293
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
294
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
295
 
296
- #: adrotate-output.php:820
297
  #, fuzzy
298
  msgid "AdRotate manuals"
299
  msgstr "AdRotate Blog"
300
 
301
- #: adrotate-output.php:821
302
  #, fuzzy
303
  msgid "AdRotate Support Forum"
304
  msgstr "AdRotate Blog"
305
 
306
- #: adrotate-output.php:844
307
  #, fuzzy
308
- msgid "Help AdRotate Grow"
309
  msgstr "AdRotate Blog"
310
 
311
- #: adrotate-output.php:845
312
- msgid "Follow Arnan on Facebook"
313
  msgstr ""
314
 
315
- #: adrotate-output.php:852
316
  msgid ""
317
- "A lot of users only think to review AdRotate when something goes wrong while "
318
- "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
319
  msgstr ""
320
 
321
- #: adrotate-output.php:852
322
- msgid "If you find AdRotate useful please leave your honest"
323
  msgstr ""
324
 
325
- #: adrotate-output.php:852
326
  msgid "rating"
327
  msgstr ""
328
 
329
- #: adrotate-output.php:852
330
  #, fuzzy
331
  msgid "review"
332
  msgstr "全般レポートを見れる権限"
333
 
334
- #: adrotate-output.php:852
335
  msgid "on WordPress.org to help AdRotate grow in a positive way"
336
  msgstr ""
337
 
338
- #: adrotate-output.php:885 dashboard/settings/notifications.php:50
339
  #: dashboard/settings/notifications.php:80
340
  #, fuzzy
341
  msgid "Available in AdRotate Pro"
342
  msgstr "AdRotate Blog"
343
 
344
- #: adrotate-output.php:885
345
  #, fuzzy
346
  msgid "More information..."
347
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
348
 
349
- #: adrotate-output.php:886
350
  #, fuzzy
351
  msgid "This feature is available in AdRotate Pro"
352
  msgstr "この機能は使いません。"
353
 
354
- #: adrotate-output.php:886
355
  #, fuzzy
356
  msgid "Learn more"
357
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
358
 
359
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
360
- #: dashboard/publisher/adverts-edit.php:235
361
  msgid "January"
362
  msgstr "1月"
363
 
364
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
365
- #: dashboard/publisher/adverts-edit.php:236
366
  msgid "February"
367
  msgstr "2月"
368
 
369
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
370
- #: dashboard/publisher/adverts-edit.php:237
371
  msgid "March"
372
  msgstr "3月"
373
 
374
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
375
- #: dashboard/publisher/adverts-edit.php:238
376
  msgid "April"
377
  msgstr "4月"
378
 
379
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
380
- #: dashboard/publisher/adverts-edit.php:239
381
  msgid "May"
382
  msgstr "5月"
383
 
384
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
385
- #: dashboard/publisher/adverts-edit.php:240
386
  msgid "June"
387
  msgstr "6月"
388
 
389
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
390
- #: dashboard/publisher/adverts-edit.php:241
391
  msgid "July"
392
  msgstr "7月"
393
 
394
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
395
- #: dashboard/publisher/adverts-edit.php:242
396
  msgid "August"
397
  msgstr "8月"
398
 
399
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
400
- #: dashboard/publisher/adverts-edit.php:243
401
  msgid "September"
402
  msgstr "9月"
403
 
404
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
405
- #: dashboard/publisher/adverts-edit.php:244
406
  msgid "October"
407
  msgstr "10月"
408
 
409
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
410
- #: dashboard/publisher/adverts-edit.php:245
411
  msgid "November"
412
  msgstr "11月"
413
 
414
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
415
- #: dashboard/publisher/adverts-edit.php:246
416
  msgid "December"
417
  msgstr "12月"
418
 
419
- #: adrotate-statistics.php:222
420
  #, fuzzy
421
  msgid "Previous"
422
  msgstr "プレビュー"
423
 
424
- #: adrotate-statistics.php:224
425
  msgid "This month"
426
  msgstr ""
427
 
428
- #: adrotate-statistics.php:225
429
  msgid "Next"
430
  msgstr ""
431
 
432
- #: adrotate-statistics.php:278
433
  msgid "No data to show!"
434
  msgstr "表示できるデータがありません。"
435
 
@@ -476,279 +475,62 @@ msgstr "広告ブロック - ブロックIDを使ってください。"
476
  msgid "Fill in the ID of the type you want to display!"
477
  msgstr "表示したいタイプのIDを入力してください!"
478
 
479
- #: adrotate.php:102
480
  #, fuzzy
481
  msgid "General Info"
482
  msgstr "一般設定"
483
 
484
- #: adrotate.php:103
485
  #, fuzzy
486
  msgid "AdRotate Pro"
487
  msgstr "AdRotate Blog"
488
 
489
- #: adrotate.php:104
490
- msgid "Manage Adverts"
491
- msgstr ""
492
-
493
- #: adrotate.php:105 dashboard/publisher/groups-main.php:12
494
- msgid "Manage Groups"
495
- msgstr "グループの管理"
496
-
497
- #: adrotate.php:106 adrotate.php:369
498
  #, fuzzy
499
- msgid "Manage Schedules"
500
- msgstr "管理"
501
 
502
- #: adrotate.php:107
503
- #, fuzzy
504
- msgid "Manage Media"
505
- msgstr "画像リンク先URL:"
506
 
507
- #: adrotate.php:108
508
  msgid "Settings"
509
  msgstr "設定"
510
 
511
- #: adrotate.php:128
512
  #, fuzzy
513
  msgid "AdRotate Info"
514
  msgstr "AdRotate Blog"
515
 
516
- #: adrotate.php:146
517
  #, fuzzy
518
  msgid "AdRotate Professional"
519
  msgstr "AdRotate Blog"
520
 
521
- #: adrotate.php:186
522
  msgid "Advert Management"
523
  msgstr ""
524
 
525
- #: adrotate.php:244 adrotate.php:311 adrotate.php:364
526
  msgid "Manage"
527
  msgstr "管理"
528
 
529
- #: adrotate.php:245 adrotate.php:312 adrotate.php:365
530
  msgid "Add New"
531
  msgstr "新規追加"
532
 
533
- #: adrotate.php:305
534
  msgid "Group Management"
535
  msgstr "グループの管理"
536
 
537
- #: adrotate.php:314
538
  msgid "Report"
539
  msgstr "レポート"
540
 
541
- #: adrotate.php:360
542
- #, fuzzy
543
- msgid "Schedule Management available in AdRotate Pro"
544
- msgstr "この機能は使いません。"
545
-
546
- #: adrotate.php:370
547
- #, fuzzy
548
- msgid ""
549
- "Schedule management and multiple schedules per advert is available in "
550
- "AdRotate Pro."
551
- msgstr "この機能は使いません。"
552
-
553
- #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
554
- #: dashboard/publisher/adverts-main.php:114
555
- #: dashboard/publisher/groups-edit.php:71
556
- #: dashboard/publisher/groups-main.php:89
557
- #, fuzzy
558
- msgid "More information"
559
- msgstr "ユーザーえー助演について知りたい方はこちらから。"
560
-
561
- #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
562
- #: dashboard/publisher/adverts-error.php:19
563
- #: dashboard/publisher/adverts-main.php:20
564
- #: dashboard/publisher/groups-main.php:20
565
- msgid "Bulk Actions"
566
- msgstr "一括操作"
567
-
568
- #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
569
- #: dashboard/publisher/adverts-error.php:29
570
- #: dashboard/publisher/adverts-main.php:30
571
- #: dashboard/publisher/groups-main.php:24
572
- msgid "Go"
573
- msgstr "実行"
574
-
575
- #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
576
- #: dashboard/publisher/adverts-error.php:39
577
- #: dashboard/publisher/adverts-main.php:39
578
- #: dashboard/publisher/groups-main.php:32
579
- #, fuzzy
580
- msgid "ID"
581
- msgstr "広告ブロック - ブロックIDを使ってください。"
582
-
583
- #: adrotate.php:388
584
- msgid "Start"
585
- msgstr ""
586
-
587
- #: adrotate.php:388
588
- msgid "End"
589
- msgstr ""
590
-
591
- #: adrotate.php:389
592
- msgid "Ads"
593
- msgstr "広告"
594
-
595
- #: adrotate.php:391
596
- #, fuzzy
597
- msgid "Max Impressions"
598
- msgstr "表示数"
599
-
600
- #: adrotate.php:392
601
- #, fuzzy
602
- msgid "Max Clicks"
603
- msgstr "クリック"
604
-
605
- #: adrotate.php:422
606
- #, fuzzy
607
- msgid "No schedules created yet!"
608
- msgstr "まだブロックが作られていません。"
609
-
610
- #: adrotate.php:427
611
- #, fuzzy
612
- msgid "Easily manage your schedules from here with AdRotate Pro."
613
- msgstr ""
614
- "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
615
- "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
616
-
617
- #: adrotate.php:427 adrotate.php:490
618
- #, fuzzy
619
- msgid "Upgrade today!"
620
- msgstr "本日"
621
-
622
- #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
623
- #: dashboard/publisher/groups-edit.php:383
624
- #, fuzzy
625
- msgid "Expires soon."
626
- msgstr "これは出来る限り早く修正して下さい。"
627
-
628
- #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
629
- #: dashboard/publisher/groups-edit.php:384
630
- #, fuzzy
631
- msgid "Has expired."
632
- msgstr "個の広告が期限切れです。"
633
-
634
- #: adrotate.php:452
635
- #, fuzzy
636
- msgid "Media Management available in AdRotate Pro"
637
- msgstr "この機能は使いません。"
638
-
639
- #: adrotate.php:454
640
- msgid "Upload images to the AdRotate Pro banners folder from here."
641
- msgstr ""
642
-
643
- #: adrotate.php:454
644
- msgid ""
645
- "This is useful if you use responsive adverts with multiple images or have "
646
- "HTML5 adverts containing multiple files."
647
- msgstr ""
648
-
649
- #: adrotate.php:454
650
- #, fuzzy
651
- msgid "Media uploading and management is available in AdRotate Pro."
652
- msgstr "この機能は使いません。"
653
-
654
- #: adrotate.php:456
655
- msgid "Upload new file"
656
- msgstr ""
657
-
658
- #: adrotate.php:457
659
- msgid "Accepted files:"
660
- msgstr ""
661
-
662
- #: adrotate.php:457
663
- msgid "For HTML5 ads you can also upload html and javascript files."
664
- msgstr ""
665
-
666
- #: adrotate.php:457
667
- msgid "Maximum size is 512Kb."
668
- msgstr ""
669
-
670
- #: adrotate.php:457
671
- msgid "Important:"
672
- msgstr ""
673
-
674
- #: adrotate.php:457
675
- msgid ""
676
- "Make sure your file has no spaces or special characters in the name. Replace "
677
- "spaces with a - or _."
678
- msgstr ""
679
-
680
- #: adrotate.php:457
681
- msgid ""
682
- "If you remove spaces from filenames for HTML5 adverts also edit the html "
683
- "file so it knows about the changed name. For example for the javascript file."
684
- msgstr ""
685
-
686
- #: adrotate.php:460
687
- msgid ""
688
- "For responsive adverts make sure the filename is in the following format; "
689
- "\"imagename.full.ext\". A full set of sized images is strongly recommended."
690
- msgstr ""
691
-
692
- #: adrotate.php:461
693
- msgid ""
694
- "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
695
- "filename instead of \".full\" for the various viewports."
696
- msgstr ""
697
-
698
- #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
699
- #: dashboard/publisher/groups-edit.php:316
700
- msgid "Example:"
701
- msgstr "例:"
702
-
703
- #: adrotate.php:462
704
- msgid ""
705
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
706
- "for different viewports."
707
- msgstr ""
708
-
709
- #: adrotate.php:466
710
- msgid "Upload file"
711
- msgstr ""
712
-
713
- #: adrotate.php:466
714
- msgid "Click only once per file!"
715
- msgstr ""
716
-
717
- #: adrotate.php:469
718
- msgid "Available files in"
719
- msgstr ""
720
-
721
- #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
722
- #: dashboard/publisher/groups-main.php:33
723
- msgid "Name"
724
- msgstr "名前"
725
-
726
- #: adrotate.php:475
727
- #, fuzzy
728
- msgid "Actions"
729
- msgstr "一括操作"
730
-
731
- #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
732
- #: adrotate.php:484 adrotate.php:485 adrotate.php:486
733
- #: dashboard/publisher/adverts-disabled.php:22
734
- #: dashboard/publisher/adverts-error.php:21
735
- #: dashboard/publisher/adverts-main.php:22
736
- msgid "Delete"
737
- msgstr "削除"
738
-
739
- #: adrotate.php:490
740
- msgid ""
741
- "Make sure the banner images are not in use by adverts when you delete them!"
742
- msgstr ""
743
-
744
- #: adrotate.php:490
745
- #, fuzzy
746
- msgid "Manage your banner folder from here with AdRotate Pro."
747
- msgstr ""
748
- "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
749
- "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
750
-
751
- #: adrotate.php:516
752
  msgid "AdRotate Settings"
753
  msgstr "AdRotate 設定"
754
 
@@ -773,8 +555,9 @@ msgstr ""
773
  msgid ""
774
  "Target mobile users with ease and show the right adverts to smartphones, "
775
  "tablets and computers. Mix and match as you please and offer adverts that "
776
- "suit the device. Create as many mobile adverts as you want without effort "
777
- "and with a few easy to use options they show up where you want them to!"
 
778
  msgstr ""
779
 
780
  #: dashboard/adrotatepro.php:34
@@ -801,40 +584,41 @@ msgid ""
801
  "forum. Get a solution (usually) within one business day."
802
  msgstr ""
803
 
804
- #: dashboard/adrotatepro.php:48 dashboard/info.php:119
805
  #, fuzzy
806
  msgid "AdRotate is brought to you by"
807
  msgstr "サービス紹介"
808
 
809
- #: dashboard/adrotatepro.php:74
810
  msgid "Schedule all campaigns with ease"
811
  msgstr ""
812
 
813
- #: dashboard/adrotatepro.php:77
814
  msgid ""
815
  "Schedule your adverts and set up advertising campaigns based on dates you or "
816
- "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
817
- "You name it, AdRotate schedules it. This makes planning your revenue stream "
818
- "much more easy. You can set one or many schedules for adverts."
 
819
  msgstr ""
820
 
821
- #: dashboard/adrotatepro.php:81
822
  msgid "Avoid adblockers"
823
  msgstr ""
824
 
825
- #: dashboard/adrotatepro.php:84
826
  msgid ""
827
- "Try and avoid adblockers so you adverts get the exposure you want them to "
828
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
829
  "adverts are less likely to be removed. Of-course make sure you create your "
830
  "adverts smartly so these features reach their full potential!"
831
  msgstr ""
832
 
833
- #: dashboard/adrotatepro.php:88
834
  msgid "Stay up-to-date with notifications"
835
  msgstr ""
836
 
837
- #: dashboard/adrotatepro.php:91
838
  msgid ""
839
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
840
  "adverts expire or need your attention. Additionally, send push notifications "
@@ -842,92 +626,92 @@ msgid ""
842
  "or when advertisers create new adverts. Never miss an expiration date again."
843
  msgstr ""
844
 
845
- #: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
846
- #: dashboard/info.php:78
847
  #, fuzzy
848
  msgid "Buy AdRotate Professional"
849
  msgstr "AdRotate Blog"
850
 
851
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
852
  msgid "Single License"
853
  msgstr ""
854
 
855
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
856
  msgid "For one WordPress installation."
857
  msgstr ""
858
 
859
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
860
- #: dashboard/info.php:83 dashboard/info.php:90
861
  msgid "Duo License"
862
  msgstr ""
863
 
864
- #: dashboard/adrotatepro.php:100 dashboard/info.php:83
865
  msgid "For two WordPress installations."
866
  msgstr ""
867
 
868
- #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
869
- #: dashboard/info.php:84 dashboard/info.php:91
870
  msgid "Multi License"
871
  msgstr ""
872
 
873
- #: dashboard/adrotatepro.php:101 dashboard/info.php:84
874
  msgid " For up to five WordPress installations."
875
  msgstr ""
876
 
877
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
878
- #: dashboard/info.php:85 dashboard/info.php:92
879
  #, fuzzy
880
  msgid "Developer License"
881
  msgstr "開発者向けデバッグ"
882
 
883
- #: dashboard/adrotatepro.php:102 dashboard/info.php:85
884
  msgid "Unlimited WordPress installations and/or networks."
885
  msgstr ""
886
 
887
- #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
888
- #: dashboard/info.php:86 dashboard/info.php:94
889
  msgid "Compare licenses"
890
  msgstr ""
891
 
892
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
893
  msgid "Not sure which license is for you? Compare them..."
894
  msgstr ""
895
 
896
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
897
  #, fuzzy
898
  msgid "All Licenses"
899
  msgstr "すべての広告の再評価"
900
 
901
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
902
  msgid "Lifetime License"
903
  msgstr ""
904
 
905
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
906
  msgid "Single installation."
907
  msgstr ""
908
 
909
- #: dashboard/adrotatepro.php:112 dashboard/info.php:90
910
  msgid "Up to 2 installations."
911
  msgstr ""
912
 
913
- #: dashboard/adrotatepro.php:113 dashboard/info.php:91
914
  msgid "Up to 10 installations."
915
  msgstr ""
916
 
917
- #: dashboard/adrotatepro.php:114 dashboard/info.php:92
918
  msgid "Up to 25 installations or multisite networks."
919
  msgstr ""
920
 
921
- #: dashboard/adrotatepro.php:115 dashboard/info.php:93
922
  msgid ""
923
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
924
  msgstr ""
925
 
926
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
927
  msgid "Not sure which license is for you?"
928
  msgstr ""
929
 
930
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
931
  msgid "Compare Licenses"
932
  msgstr ""
933
 
@@ -949,42 +733,43 @@ msgstr ""
949
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
950
  "さい。英語ですが。"
951
 
952
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
953
- #: dashboard/publisher/groups-main.php:34
954
- #, fuzzy
955
- msgid "Adverts"
956
- msgstr "新しい広告の承認"
957
-
958
  #: dashboard/info.php:38
959
  #, fuzzy
960
  msgid "(Almost) Expired"
961
  msgstr "個の広告が期限切れです。"
962
 
963
- #: dashboard/info.php:41
964
- msgid "Groups"
965
- msgstr "グループ"
966
-
967
  #: dashboard/info.php:42
968
  #, fuzzy
969
  msgid "Have errors"
970
  msgstr "個の広告が設定エラーになっています。"
971
 
972
- #: dashboard/info.php:48
973
- #, fuzzy
974
- msgid "Support AdRotate"
975
- msgstr "AdRotate Blog"
976
-
977
- #: dashboard/info.php:55
978
  msgid ""
979
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
980
  "for updates about me and my plugins. Thank you!"
981
  msgstr ""
982
 
983
- #: dashboard/info.php:105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
984
  msgid "AdRotate News"
985
  msgstr ""
986
 
987
- #: dashboard/info.php:123
988
  msgid ""
989
  "I am a digital nomad in the Philippines. Click on my name to find out more "
990
  "about me and what I am doing. Thanks for your support and for using my "
@@ -995,17 +780,45 @@ msgstr ""
995
  msgid "Disabled Adverts"
996
  msgstr ""
997
 
 
 
 
 
 
 
 
998
  #: dashboard/publisher/adverts-disabled.php:21
999
- #: dashboard/publisher/adverts-edit.php:170
1000
  msgid "Activate"
1001
  msgstr "利用可能"
1002
 
 
 
 
 
 
 
1003
  #: dashboard/publisher/adverts-disabled.php:23
1004
  #: dashboard/publisher/adverts-error.php:22
1005
  #: dashboard/publisher/adverts-main.php:23
1006
  msgid "Reset stats"
1007
  msgstr "統計リセット"
1008
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1009
  #: dashboard/publisher/adverts-disabled.php:36
1010
  #: dashboard/publisher/adverts-error.php:40
1011
  #: dashboard/publisher/adverts-main.php:40
@@ -1013,7 +826,7 @@ msgid "Start / End"
1013
  msgstr ""
1014
 
1015
  #: dashboard/publisher/adverts-disabled.php:37
1016
- #: dashboard/publisher/adverts-edit.php:110
1017
  #: dashboard/publisher/adverts-error.php:41
1018
  #: dashboard/publisher/adverts-main.php:41
1019
  msgid "Title"
@@ -1021,7 +834,7 @@ msgstr "タイトル"
1021
 
1022
  #: dashboard/publisher/adverts-disabled.php:38
1023
  #: dashboard/publisher/adverts-main.php:44
1024
- #: dashboard/publisher/groups-edit.php:329
1025
  #: dashboard/publisher/groups-main.php:36
1026
  #, fuzzy
1027
  msgid "Shown"
@@ -1031,7 +844,7 @@ msgstr "この広告は期限切れで現在サイトに表示されていませ
1031
  #: dashboard/publisher/adverts-main.php:46
1032
  #: dashboard/publisher/adverts-report.php:36
1033
  #: dashboard/publisher/adverts-report.php:57
1034
- #: dashboard/publisher/groups-edit.php:330
1035
  #: dashboard/publisher/groups-main.php:38
1036
  #: dashboard/publisher/groups-report.php:37
1037
  #: dashboard/publisher/groups-report.php:58
@@ -1047,55 +860,55 @@ msgstr "クリック"
1047
  msgid "CTR"
1048
  msgstr ""
1049
 
1050
- #: dashboard/publisher/adverts-disabled.php:74
1051
  #: dashboard/publisher/adverts-error.php:64
1052
- #: dashboard/publisher/adverts-main.php:87
1053
  #: dashboard/publisher/groups-main.php:70
1054
  msgid "Edit"
1055
  msgstr "編集"
1056
 
1057
- #: dashboard/publisher/adverts-disabled.php:74
1058
  #: dashboard/publisher/adverts-error.php:64
1059
- #: dashboard/publisher/adverts-main.php:87
1060
  #: dashboard/publisher/groups-main.php:70
1061
  #, fuzzy
1062
  msgid "Stats"
1063
  msgstr "統計リセット"
1064
 
1065
- #: dashboard/publisher/adverts-disabled.php:74
1066
  #: dashboard/publisher/adverts-error.php:64
1067
- #: dashboard/publisher/adverts-main.php:87
1068
  #, fuzzy
1069
  msgid "Groups:"
1070
  msgstr "グループ"
1071
 
1072
- #: dashboard/publisher/adverts-edit.php:48
1073
  msgid "The AdCode cannot be empty!"
1074
  msgstr "AdCodeを空にすることはできません!"
1075
 
1076
- #: dashboard/publisher/adverts-edit.php:51
1077
  msgid ""
1078
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1079
  "use!"
1080
  msgstr ""
1081
 
1082
- #: dashboard/publisher/adverts-edit.php:54
1083
  msgid ""
1084
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1085
  "use!"
1086
  msgstr ""
1087
 
1088
- #: dashboard/publisher/adverts-edit.php:57
1089
  msgid ""
1090
  "There is a problem saving the image. Please reset your image and re-save the "
1091
  "ad!"
1092
  msgstr ""
1093
 
1094
- #: dashboard/publisher/adverts-edit.php:60
1095
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1096
  msgstr ""
1097
 
1098
- #: dashboard/publisher/adverts-edit.php:65
1099
  msgid ""
1100
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1101
  "the ad!"
@@ -1103,79 +916,79 @@ msgstr ""
1103
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
1104
  "を再度保存してください!"
1105
 
1106
- #: dashboard/publisher/adverts-edit.php:68
1107
  msgid "This ad is expired and currently not shown on your website!"
1108
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
1109
 
1110
- #: dashboard/publisher/adverts-edit.php:71
1111
  msgid "The ad will expire in less than 2 days!"
1112
  msgstr "この広告は期限が2日間ありません。"
1113
 
1114
- #: dashboard/publisher/adverts-edit.php:74
1115
  msgid "This ad will expire in less than 7 days!"
1116
  msgstr "この広告は期限が7日間ありません。"
1117
 
1118
- #: dashboard/publisher/adverts-edit.php:77
1119
  msgid "This ad has been disabled and does not rotate on your site!"
1120
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
1121
 
1122
- #: dashboard/publisher/adverts-edit.php:102
1123
  #, fuzzy
1124
  msgid "New Advert"
1125
  msgstr "新規追加"
1126
 
1127
- #: dashboard/publisher/adverts-edit.php:104
1128
  #, fuzzy
1129
  msgid "Edit Advert"
1130
  msgstr "編集"
1131
 
1132
- #: dashboard/publisher/adverts-edit.php:116
1133
  msgid "AdCode"
1134
  msgstr ""
1135
 
1136
- #: dashboard/publisher/adverts-edit.php:121
1137
  msgid "Basic Examples:"
1138
  msgstr "設定例:"
1139
 
1140
- #: dashboard/publisher/adverts-edit.php:128
1141
  msgid "Useful tags"
1142
  msgstr ""
1143
 
1144
- #: dashboard/publisher/adverts-edit.php:130
1145
  msgid "Insert the advert ID Number."
1146
  msgstr ""
1147
 
1148
- #: dashboard/publisher/adverts-edit.php:130
1149
  msgid "Required when selecting a asset below."
1150
  msgstr ""
1151
 
1152
- #: dashboard/publisher/adverts-edit.php:130
1153
  msgid "Insert the advert name."
1154
  msgstr ""
1155
 
1156
- #: dashboard/publisher/adverts-edit.php:130
1157
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1158
  msgstr ""
1159
 
1160
- #: dashboard/publisher/adverts-edit.php:130
1161
  msgid "Add inside the <a> tag to open advert in a new window."
1162
  msgstr ""
1163
 
1164
- #: dashboard/publisher/adverts-edit.php:130
1165
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1166
  msgstr ""
1167
 
1168
- #: dashboard/publisher/adverts-edit.php:130
1169
  msgid ""
1170
  "Place the cursor in your AdCode where you want to add any of these tags and "
1171
  "click to add it."
1172
  msgstr ""
1173
 
1174
- #: dashboard/publisher/adverts-edit.php:135
1175
  msgid "Preview"
1176
  msgstr "プレビュー"
1177
 
1178
- #: dashboard/publisher/adverts-edit.php:138
1179
  msgid ""
1180
  "Note: While this preview is an accurate one, it might look different then it "
1181
  "does on the website."
@@ -1183,43 +996,43 @@ msgstr ""
1183
  "注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
1184
  "場合があります。"
1185
 
1186
- #: dashboard/publisher/adverts-edit.php:139
1187
  msgid ""
1188
  "This is because of CSS differences. Your themes CSS file is not active here!"
1189
  msgstr ""
1190
  "主な原因としてはCSSの設定がここでは反映されないからです。表示にCSSを利用され"
1191
  "ている場合は実ページでご確認下さい。"
1192
 
1193
- #: dashboard/publisher/adverts-edit.php:144
1194
  msgid "Banner asset"
1195
  msgstr ""
1196
 
1197
- #: dashboard/publisher/adverts-edit.php:147
1198
  msgid "WordPress media:"
1199
  msgstr ""
1200
 
1201
- #: dashboard/publisher/adverts-edit.php:147
1202
  #, fuzzy
1203
  msgid "Select Banner"
1204
  msgstr "バナー画像"
1205
 
1206
- #: dashboard/publisher/adverts-edit.php:149
1207
  msgid "- OR -"
1208
  msgstr "- もしくは -"
1209
 
1210
- #: dashboard/publisher/adverts-edit.php:151
1211
  msgid "Banner folder:"
1212
  msgstr "画像バナー"
1213
 
1214
- #: dashboard/publisher/adverts-edit.php:152
1215
  msgid "No image selected"
1216
  msgstr "画像は設定されていません。"
1217
 
1218
- #: dashboard/publisher/adverts-edit.php:156
1219
  msgid "Use %asset% in the adcode instead of the file path."
1220
  msgstr ""
1221
 
1222
- #: dashboard/publisher/adverts-edit.php:156
1223
  msgid ""
1224
  "Use either the text field or the dropdown. If the textfield has content that "
1225
  "field has priority."
@@ -1227,33 +1040,33 @@ msgstr ""
1227
  "上記の画像リンクかドロップダウンかを利用します。画像リンクが入力されている場"
1228
  "合はそちらが優先されます。"
1229
 
1230
- #: dashboard/publisher/adverts-edit.php:161
1231
  #: dashboard/settings/statistics.php:17
1232
  msgid "Statistics"
1233
  msgstr "統計"
1234
 
1235
- #: dashboard/publisher/adverts-edit.php:163
1236
  msgid "Enable click and impression tracking for this advert."
1237
  msgstr ""
1238
 
1239
- #: dashboard/publisher/adverts-edit.php:164
1240
  msgid ""
1241
  "Note: Clicktracking does not work for Javascript adverts such as those "
1242
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1243
  "always supported."
1244
  msgstr ""
1245
 
1246
- #: dashboard/publisher/adverts-edit.php:174
1247
  msgid "Yes, this ad will be used"
1248
  msgstr "この広告を掲載されるように設定する"
1249
 
1250
- #: dashboard/publisher/adverts-edit.php:175
1251
  #, fuzzy
1252
  msgid "No, do not show this ad anywhere"
1253
  msgstr "表示できるデータがありません。"
1254
 
1255
- #: dashboard/publisher/adverts-edit.php:182
1256
- #: dashboard/publisher/adverts-main.php:114
1257
  #: dashboard/publisher/groups-edit.php:71
1258
  #: dashboard/publisher/groups-main.php:89
1259
  #, fuzzy
@@ -1263,275 +1076,272 @@ msgstr ""
1263
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1264
 
1265
  #: dashboard/publisher/adverts-edit.php:185
1266
- #: dashboard/publisher/adverts-edit.php:285
1267
- #: dashboard/publisher/adverts-edit.php:408
1268
- #: dashboard/publisher/adverts-edit.php:449
 
 
 
 
 
 
 
 
1269
  #, fuzzy
1270
  msgid "Save Advert"
1271
  msgstr "保存"
1272
 
1273
- #: dashboard/publisher/adverts-edit.php:186
1274
- #: dashboard/publisher/adverts-edit.php:286
1275
- #: dashboard/publisher/adverts-edit.php:409
1276
- #: dashboard/publisher/adverts-edit.php:450
1277
  #: dashboard/publisher/groups-edit.php:150
1278
- #: dashboard/publisher/groups-edit.php:297
1279
- #: dashboard/publisher/groups-edit.php:389
1280
  msgid "Cancel"
1281
  msgstr "キャンセル"
1282
 
1283
- #: dashboard/publisher/adverts-edit.php:189
1284
- #: dashboard/publisher/adverts-edit.php:391
1285
  #: dashboard/publisher/groups-edit.php:132
1286
- #: dashboard/publisher/groups-edit.php:279
1287
  msgid "Usage"
1288
  msgstr "利用タグ"
1289
 
1290
- #: dashboard/publisher/adverts-edit.php:193
1291
- #: dashboard/publisher/adverts-edit.php:395
1292
  #: dashboard/publisher/groups-edit.php:136
1293
- #: dashboard/publisher/groups-edit.php:283
 
 
1294
  msgid "Widget"
1295
  msgstr ""
1296
 
1297
- #: dashboard/publisher/adverts-edit.php:194
1298
- #: dashboard/publisher/adverts-edit.php:396
1299
  msgid ""
1300
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1301
  "and select the advert or the group the advert is in."
1302
  msgstr ""
1303
 
1304
- #: dashboard/publisher/adverts-edit.php:197
1305
- #: dashboard/publisher/adverts-edit.php:399
1306
  #: dashboard/publisher/groups-edit.php:140
1307
- #: dashboard/publisher/groups-edit.php:287
1308
  msgid "In a post or page"
1309
  msgstr ""
1310
 
1311
- #: dashboard/publisher/adverts-edit.php:199
1312
- #: dashboard/publisher/adverts-edit.php:401
1313
  #: dashboard/publisher/groups-edit.php:142
1314
- #: dashboard/publisher/groups-edit.php:289
1315
  msgid "Directly in a theme"
1316
  msgstr ""
1317
 
1318
- #: dashboard/publisher/adverts-edit.php:205
1319
  msgid "Schedule your advert"
1320
  msgstr ""
1321
 
1322
- #: dashboard/publisher/adverts-edit.php:209
1323
  msgid "Start date (day/month/year)"
1324
  msgstr ""
1325
 
1326
- #: dashboard/publisher/adverts-edit.php:230
1327
  msgid "End date (day/month/year)"
1328
  msgstr ""
1329
 
1330
- #: dashboard/publisher/adverts-edit.php:253
1331
  msgid "Start time (hh:mm)"
1332
  msgstr ""
1333
 
1334
- #: dashboard/publisher/adverts-edit.php:260
1335
  msgid "End time (hh:mm)"
1336
  msgstr ""
1337
 
1338
- #: dashboard/publisher/adverts-edit.php:270
1339
  msgid "Maximum Clicks"
1340
  msgstr ""
1341
 
1342
- #: dashboard/publisher/adverts-edit.php:271
1343
- #: dashboard/publisher/adverts-edit.php:273
1344
  msgid "Leave empty or 0 to skip this."
1345
  msgstr "※この機能を利用しない場合は、空白か0を設定して下さい。"
1346
 
1347
- #: dashboard/publisher/adverts-edit.php:272
1348
  msgid "Maximum Impressions"
1349
  msgstr ""
1350
 
1351
- #: dashboard/publisher/adverts-edit.php:277
1352
  msgid "Important"
1353
  msgstr ""
1354
 
1355
- #: dashboard/publisher/adverts-edit.php:278
1356
  msgid ""
1357
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1358
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1359
  "14:00 hours. 6AM is 6:00 hours."
1360
  msgstr ""
1361
 
1362
- #: dashboard/publisher/adverts-edit.php:282
1363
  msgid ""
1364
  "Create multiple and more advanced schedules for each advert with AdRotate "
1365
  "Pro."
1366
  msgstr ""
1367
 
1368
- #: dashboard/publisher/adverts-edit.php:282
1369
- #: dashboard/publisher/adverts-edit.php:345
1370
- #: dashboard/publisher/adverts-edit.php:389
1371
- #: dashboard/publisher/groups-edit.php:196
1372
  #, fuzzy
1373
  msgid "Upgrade today"
1374
  msgstr "本日"
1375
 
1376
- #: dashboard/publisher/adverts-edit.php:289
1377
  #: dashboard/publisher/groups-edit.php:153
1378
  #, fuzzy
1379
  msgid "Advanced"
1380
  msgstr "設定例(高度):"
1381
 
1382
- #: dashboard/publisher/adverts-edit.php:290
1383
- #, fuzzy
1384
- msgid "Everything below is optional."
1385
- msgstr "タイトル(オプション):"
1386
-
1387
- #: dashboard/publisher/adverts-edit.php:290
1388
  msgid "Available in AdRotate Pro!"
1389
  msgstr ""
1390
 
1391
- #: dashboard/publisher/adverts-edit.php:295
1392
  #: dashboard/publisher/adverts-main.php:42
1393
- #: dashboard/publisher/groups-edit.php:332
1394
  msgid "Weight"
1395
  msgstr "表示頻度"
1396
 
1397
- #: dashboard/publisher/adverts-edit.php:298
1398
  msgid "Few impressions"
1399
  msgstr ""
1400
 
1401
- #: dashboard/publisher/adverts-edit.php:303
1402
  msgid "Less than average"
1403
  msgstr "標準より少し少ない表示(40%程度)"
1404
 
1405
- #: dashboard/publisher/adverts-edit.php:308
1406
  msgid "Normal impressions"
1407
  msgstr ""
1408
 
1409
- #: dashboard/publisher/adverts-edit.php:313
1410
  msgid "More than average"
1411
  msgstr "平均よりも多めの表示(70%程度)"
1412
 
1413
- #: dashboard/publisher/adverts-edit.php:318
1414
  msgid "Many impressions"
1415
  msgstr ""
1416
 
1417
- #: dashboard/publisher/adverts-edit.php:323
1418
  msgid "Mobile"
1419
  msgstr ""
1420
 
1421
- #: dashboard/publisher/adverts-edit.php:325
1422
  msgid "Computers"
1423
  msgstr ""
1424
 
1425
- #: dashboard/publisher/adverts-edit.php:328
1426
  msgid "Smartphones"
1427
  msgstr ""
1428
 
1429
- #: dashboard/publisher/adverts-edit.php:331
1430
  msgid "Tablets"
1431
  msgstr ""
1432
 
1433
- #: dashboard/publisher/adverts-edit.php:334
1434
  msgid ""
1435
  "Also enable mobile support in the group this advert goes in or these are "
1436
  "ignored."
1437
  msgstr ""
1438
 
1439
- #: dashboard/publisher/adverts-edit.php:338
1440
- #: dashboard/publisher/groups-edit.php:190
1441
- msgid "Sortorder"
 
1442
  msgstr ""
1443
 
1444
- #: dashboard/publisher/adverts-edit.php:340
1445
- #: dashboard/publisher/groups-edit.php:192
1446
- msgid "For administrative purposes set a sortorder."
1447
- msgstr "管理目的で順序を設定できます。"
1448
 
1449
- #: dashboard/publisher/adverts-edit.php:340
1450
- msgid "Leave empty or 0 to skip this. Will default to ad id."
1451
- msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
1452
 
1453
- #: dashboard/publisher/adverts-edit.php:345
1454
- msgid ""
1455
- "With AdRotate Pro you can easily select which devices the advert should show "
1456
- "on!"
1457
  msgstr ""
1458
 
1459
- #: dashboard/publisher/adverts-edit.php:347
1460
- msgid "Geo Targeting in AdRotate Pro"
1461
  msgstr ""
1462
 
1463
- #: dashboard/publisher/adverts-edit.php:348
1464
  msgid ""
1465
- "Assign the advert to a group and enable that group to use Geo Targeting."
 
1466
  msgstr ""
1467
 
1468
- #: dashboard/publisher/adverts-edit.php:352
1469
- msgid "Cities/States"
 
 
1470
  msgstr ""
1471
 
1472
- #: dashboard/publisher/adverts-edit.php:355
1473
  msgid ""
1474
- "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1475
- "states ISO codes are supported)"
 
 
 
1476
  msgstr ""
1477
 
1478
- #: dashboard/publisher/adverts-edit.php:355
1479
  msgid ""
1480
  "AdRotate does not check the validity of names so make sure you spell them "
1481
  "correctly!"
1482
  msgstr ""
1483
 
1484
- #: dashboard/publisher/adverts-edit.php:359
1485
- msgid "Countries"
1486
- msgstr ""
1487
-
1488
- #: dashboard/publisher/adverts-edit.php:384
1489
- #, fuzzy
1490
- msgid "Select the countries you want the adverts to show in."
1491
- msgstr "このウィジェットに使いたい物を選んで下さい。"
1492
-
1493
- #: dashboard/publisher/adverts-edit.php:384
1494
- msgid "Cities take priority and will be filtered first."
1495
- msgstr ""
1496
-
1497
- #: dashboard/publisher/adverts-edit.php:389
1498
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1499
  msgstr ""
1500
 
1501
- #: dashboard/publisher/adverts-edit.php:413
1502
  msgid "Select Groups"
1503
  msgstr "グループを選択"
1504
 
1505
- #: dashboard/publisher/adverts-edit.php:418
1506
  #, fuzzy
1507
  msgid "ID - Name"
1508
  msgstr "名前"
1509
 
1510
- #: dashboard/publisher/adverts-edit.php:428
1511
  #: dashboard/publisher/groups-main.php:60
1512
  #: dashboard/settings/geotargeting.php:49
1513
  #, fuzzy
1514
  msgid "Default"
1515
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
1516
 
1517
- #: dashboard/publisher/adverts-edit.php:429
1518
  #: dashboard/publisher/groups-main.php:61
1519
  msgid "Dynamic"
1520
  msgstr ""
1521
 
1522
- #: dashboard/publisher/adverts-edit.php:429
1523
  #: dashboard/publisher/groups-main.php:61
1524
  #, fuzzy
1525
  msgid "second rotation"
1526
  msgstr "バナーがないか、利用不可か適応されていません。"
1527
 
1528
- #: dashboard/publisher/adverts-edit.php:430
1529
  #: dashboard/publisher/groups-main.php:62
1530
  #, fuzzy
1531
  msgid "Block"
1532
  msgstr "ブロック管理"
1533
 
1534
- #: dashboard/publisher/adverts-edit.php:430
1535
  #: dashboard/publisher/groups-main.php:62
1536
  #, fuzzy
1537
  msgid "grid"
@@ -1539,18 +1349,18 @@ msgstr ""
1539
  "広告に表組みを指定します。2と2を入力すると2行2列になります。(初期設定は2行2"
1540
  "列です。)"
1541
 
1542
- #: dashboard/publisher/adverts-edit.php:431
1543
- #: dashboard/publisher/groups-edit.php:198
1544
  #: dashboard/publisher/groups-main.php:63
1545
  #, fuzzy
1546
  msgid "Post Injection"
1547
  msgstr "投稿及びページ内掲載する場合:"
1548
 
1549
- #: dashboard/publisher/adverts-edit.php:432
1550
  msgid "Geolocation"
1551
  msgstr ""
1552
 
1553
- #: dashboard/publisher/adverts-edit.php:438
1554
  #: dashboard/publisher/groups-edit.php:57
1555
  #: dashboard/publisher/groups-main.php:70
1556
  #, fuzzy
@@ -1592,11 +1402,23 @@ msgid "For 7 days"
1592
  msgstr "1週間(7日)"
1593
 
1594
  #: dashboard/publisher/adverts-error.php:71
1595
- #: dashboard/publisher/groups-edit.php:382
1596
  #, fuzzy
1597
  msgid "Configuration errors."
1598
  msgstr "個の広告が設定エラーになっています。"
1599
 
 
 
 
 
 
 
 
 
 
 
 
 
1600
  #: dashboard/publisher/adverts-main.php:12
1601
  msgid "Active Adverts"
1602
  msgstr ""
@@ -1613,7 +1435,7 @@ msgstr "エクスポートオプション"
1613
  msgid "Today"
1614
  msgstr "本日"
1615
 
1616
- #: dashboard/publisher/adverts-main.php:109
1617
  msgid "No adverts created yet!"
1618
  msgstr ""
1619
 
@@ -1670,6 +1492,11 @@ msgstr "新規追加"
1670
  msgid "Edit Group"
1671
  msgstr "グループ編集"
1672
 
 
 
 
 
 
1673
  #: dashboard/publisher/groups-edit.php:60
1674
  #, fuzzy
1675
  msgid "Default - Show one ad at a time"
@@ -1761,15 +1588,15 @@ msgid ""
1761
  msgstr "新規追加"
1762
 
1763
  #: dashboard/publisher/groups-edit.php:137
1764
- #: dashboard/publisher/groups-edit.php:284
1765
  msgid ""
1766
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1767
  "Adverts\" and enter ID"
1768
  msgstr ""
1769
 
1770
  #: dashboard/publisher/groups-edit.php:149
1771
- #: dashboard/publisher/groups-edit.php:296
1772
- #: dashboard/publisher/groups-edit.php:388
1773
  #, fuzzy
1774
  msgid "Save Group"
1775
  msgstr "保存"
@@ -1827,11 +1654,6 @@ msgid ""
1827
  "setting. Not every theme supports this feature."
1828
  msgstr ""
1829
 
1830
- #: dashboard/publisher/groups-edit.php:180
1831
- #: dashboard/settings/advertisers.php:38
1832
- msgid "Geo Targeting"
1833
- msgstr ""
1834
-
1835
  #: dashboard/publisher/groups-edit.php:181
1836
  msgid "Enable Geo Targeting for this group."
1837
  msgstr ""
@@ -1853,154 +1675,135 @@ msgstr ""
1853
  msgid "Do not forget to put at least one mobile advert in this group."
1854
  msgstr ""
1855
 
1856
- #: dashboard/publisher/groups-edit.php:192
1857
- msgid "Leave empty or 0 to skip this. Will default to group id."
1858
- msgstr ""
1859
- "この項目をスキップするには空か0を入れて下さい。グループIDがデフォルトになりま"
1860
- "す。"
1861
-
1862
- #: dashboard/publisher/groups-edit.php:196
1863
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1864
  msgstr ""
1865
 
1866
- #: dashboard/publisher/groups-edit.php:201
1867
- msgid "In categories?"
1868
- msgstr ""
1869
-
1870
- #: dashboard/publisher/groups-edit.php:205
1871
- #: dashboard/publisher/groups-edit.php:243
1872
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1873
  #, fuzzy
1874
  msgid "Disabled"
1875
  msgstr "掲載不可広告"
1876
 
1877
  #: dashboard/publisher/groups-edit.php:206
1878
- #: dashboard/publisher/groups-edit.php:244
1879
  #, fuzzy
1880
  msgid "Before content"
1881
  msgstr "投稿内容の前"
1882
 
1883
  #: dashboard/publisher/groups-edit.php:207
1884
- #: dashboard/publisher/groups-edit.php:245
1885
  #, fuzzy
1886
  msgid "After content"
1887
  msgstr "コンテンツの前と後ろ"
1888
 
1889
  #: dashboard/publisher/groups-edit.php:208
1890
- #: dashboard/publisher/groups-edit.php:246
1891
  #, fuzzy
1892
  msgid "Before and after content"
1893
  msgstr "コンテンツの前と後ろ"
1894
 
1895
  #: dashboard/publisher/groups-edit.php:209
1896
- #: dashboard/publisher/groups-edit.php:247
1897
  msgid "Inside the content..."
1898
  msgstr ""
1899
 
1900
  #: dashboard/publisher/groups-edit.php:215
1901
- #: dashboard/publisher/groups-edit.php:253
1902
  msgid "after the middle paragraph"
1903
  msgstr ""
1904
 
1905
  #: dashboard/publisher/groups-edit.php:216
1906
- #: dashboard/publisher/groups-edit.php:254
1907
  msgid "after the 1st paragraph"
1908
  msgstr ""
1909
 
1910
  #: dashboard/publisher/groups-edit.php:217
1911
- #: dashboard/publisher/groups-edit.php:255
1912
  msgid "after the 2nd paragraph"
1913
  msgstr ""
1914
 
1915
  #: dashboard/publisher/groups-edit.php:218
1916
- #: dashboard/publisher/groups-edit.php:256
1917
  msgid "after the 3rd paragraph"
1918
  msgstr ""
1919
 
1920
  #: dashboard/publisher/groups-edit.php:219
1921
- #: dashboard/publisher/groups-edit.php:257
1922
  msgid "after the 4th paragraph"
1923
  msgstr ""
1924
 
1925
  #: dashboard/publisher/groups-edit.php:220
1926
- #: dashboard/publisher/groups-edit.php:258
1927
  msgid "after the 5th paragraph"
1928
  msgstr ""
1929
 
1930
  #: dashboard/publisher/groups-edit.php:221
1931
- #: dashboard/publisher/groups-edit.php:259
1932
  msgid "after the 6th paragraph"
1933
  msgstr ""
1934
 
1935
  #: dashboard/publisher/groups-edit.php:222
1936
- #: dashboard/publisher/groups-edit.php:260
1937
  msgid "after the 7th paragraph"
1938
  msgstr ""
1939
 
1940
  #: dashboard/publisher/groups-edit.php:223
1941
- #: dashboard/publisher/groups-edit.php:261
1942
  msgid "after the 8th paragraph"
1943
  msgstr ""
1944
 
1945
- #: dashboard/publisher/groups-edit.php:229
1946
- msgid "Which categories?"
1947
- msgstr "どのカテゴリーですか?"
1948
-
1949
- #: dashboard/publisher/groups-edit.php:234
1950
- #, fuzzy
1951
- msgid "Click the categories posts you want the adverts to show in."
1952
- msgstr "このウィジェットに使いたい物を選んで下さい。"
1953
-
1954
  #: dashboard/publisher/groups-edit.php:239
1955
- msgid "In pages?"
1956
  msgstr ""
1957
 
1958
- #: dashboard/publisher/groups-edit.php:267
1959
- msgid "Which pages?"
1960
- msgstr "どのページですか?"
1961
-
1962
- #: dashboard/publisher/groups-edit.php:272
1963
- #, fuzzy
1964
- msgid "Click the pages you want the adverts to show in."
1965
- msgstr "このウィジェットに使いたい物を選んで下さい。"
1966
-
1967
- #: dashboard/publisher/groups-edit.php:300
1968
  #, fuzzy
1969
  msgid "Wrapper code"
1970
  msgstr "Wrapper code (Optional) - 各広告を囲みます。"
1971
 
1972
- #: dashboard/publisher/groups-edit.php:301
1973
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1974
  msgstr ""
1975
 
1976
- #: dashboard/publisher/groups-edit.php:305
1977
  msgid "Before advert"
1978
  msgstr ""
1979
 
1980
- #: dashboard/publisher/groups-edit.php:309
 
 
 
 
 
1981
  msgid "Options:"
1982
  msgstr "オプション:"
1983
 
1984
- #: dashboard/publisher/groups-edit.php:313
1985
  msgid "After advert"
1986
  msgstr ""
1987
 
1988
- #: dashboard/publisher/groups-edit.php:322
1989
  msgid "Select adverts"
1990
  msgstr ""
1991
 
1992
- #: dashboard/publisher/groups-edit.php:327
1993
  msgid "Choose adverts"
1994
  msgstr ""
1995
 
1996
- #: dashboard/publisher/groups-edit.php:333
1997
  msgid "Visible until"
1998
  msgstr "掲載期限"
1999
 
2000
- #: dashboard/publisher/groups-edit.php:375
2001
  msgid "No adverts created!"
2002
  msgstr ""
2003
 
 
 
 
 
2004
  #: dashboard/publisher/groups-main.php:21
2005
  msgid "Delete Group"
2006
  msgstr "グループ削除"
@@ -2018,7 +1821,8 @@ msgid "This action can not be undone!"
2018
  msgstr "この処理は復旧できません。注意して下さい。"
2019
 
2020
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
2021
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
2022
  msgid "OK to continue, CANCEL to stop."
2023
  msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
2024
 
@@ -2090,9 +1894,9 @@ msgid ""
2090
  msgstr ""
2091
 
2092
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2093
- #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2094
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2095
- #: dashboard/settings/statistics.php:73
2096
  msgid "Update Options"
2097
  msgstr "設定の更新"
2098
 
@@ -2402,7 +2206,8 @@ msgstr "データベースのクリーンアップ"
2402
  msgid "Are you sure you want to continue?"
2403
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2404
 
2405
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
2406
  #, fuzzy
2407
  msgid "This might take a while and may slow down your site during this action!"
2408
  msgstr ""
@@ -2415,43 +2220,41 @@ msgid "Delete stats older than 356 days (Optional)."
2415
  msgstr "広告の削除やリセットする権限"
2416
 
2417
  #: dashboard/settings/maintenance.php:32
2418
- msgid ""
2419
- "AdRotate creates empty records when you start making ads, groups or "
2420
- "schedules. In rare occasions these records are faulty."
2421
  msgstr ""
2422
 
2423
- #: dashboard/settings/maintenance.php:32
2424
  msgid ""
2425
- "If you made an ad, group or schedule that does not save when you make it use "
2426
- "this button to delete those empty records."
2427
  msgstr ""
2428
 
2429
- #: dashboard/settings/maintenance.php:32
2430
  msgid ""
2431
- "Additionally you can clean up old schedules and/or statistics. This will "
2432
- "improve the speed of your site."
2433
  msgstr ""
2434
 
2435
- #: dashboard/settings/maintenance.php:36
2436
  msgid "Re-evaluate Ads"
2437
  msgstr "広告の再評価"
2438
 
2439
- #: dashboard/settings/maintenance.php:38
2440
  msgid "Re-evaluate all ads"
2441
  msgstr "すべての広告の再評価"
2442
 
2443
- #: dashboard/settings/maintenance.php:38
2444
  msgid "You are about to check all ads for errors."
2445
  msgstr "すべての広告のエラーをチェックしようとしています。"
2446
 
2447
- #: dashboard/settings/maintenance.php:39
2448
  #, fuzzy
2449
  msgid ""
2450
  "This will apply all evaluation rules to all ads to see if any error slipped "
2451
  "in. Normally you should not need this feature."
2452
  msgstr "すべての広告のエラーをチェックしようとしています。"
2453
 
2454
- #: dashboard/settings/maintenance.php:43
2455
  msgid ""
2456
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2457
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2464,11 +2267,11 @@ msgid ""
2464
  "is not a valid point in any case."
2465
  msgstr ""
2466
 
2467
- #: dashboard/settings/maintenance.php:45
2468
  msgid "Troubleshooting"
2469
  msgstr "トラブルシューティング(トラブル対応)"
2470
 
2471
- #: dashboard/settings/maintenance.php:46
2472
  msgid ""
2473
  "The below options are not meant for normal use and are only there for "
2474
  "developers to review saved settings or how ads are selected. These can be "
@@ -2476,124 +2279,138 @@ msgid ""
2476
  "SHOULD BE LEFT UNCHECKED!!"
2477
  msgstr ""
2478
 
2479
- #: dashboard/settings/maintenance.php:49
2480
  msgid "Developer Debug"
2481
  msgstr "開発者向けデバッグ"
2482
 
2483
- #: dashboard/settings/maintenance.php:51
2484
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2485
  msgstr ""
2486
 
2487
- #: dashboard/settings/maintenance.php:52
2488
  msgid "View advert specs and (some) stats in the dashboard."
2489
  msgstr ""
2490
 
2491
- #: dashboard/settings/maintenance.php:53
2492
  #, fuzzy
2493
  msgid ""
2494
  "Disable timers for clicks and impressions and enable a alert window for "
2495
  "clicktracking."
2496
  msgstr "テキストリンク(クリック数調査付):"
2497
 
2498
- #: dashboard/settings/maintenance.php:54
2499
  #, fuzzy
2500
  msgid "Temporarily disable encryption on the redirect url."
2501
  msgstr ""
2502
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2503
  "可能性があります。"
2504
 
2505
- #: dashboard/settings/maintenance.php:59
2506
  msgid "Status and Versions"
2507
  msgstr ""
2508
 
2509
- #: dashboard/settings/maintenance.php:62
2510
  #, fuzzy
2511
  msgid "Current status of adverts"
2512
  msgstr "現在のスケジュール"
2513
 
2514
- #: dashboard/settings/maintenance.php:63
2515
  #, fuzzy
2516
  msgid "Normal"
2517
  msgstr "平均的表示(50%程度)"
2518
 
2519
- #: dashboard/settings/maintenance.php:63
2520
  #, fuzzy
2521
  msgid "Error"
2522
  msgstr "理解できないエラーが起こっています。"
2523
 
2524
- #: dashboard/settings/maintenance.php:63
2525
  #, fuzzy
2526
  msgid "Expired"
2527
  msgstr "個の広告が期限切れです。"
2528
 
2529
- #: dashboard/settings/maintenance.php:63
2530
  #, fuzzy
2531
  msgid "Expires Soon"
2532
  msgstr "これは出来る限り早く修正して下さい。"
2533
 
2534
- #: dashboard/settings/maintenance.php:63
2535
  msgid "Unknown"
2536
  msgstr ""
2537
 
2538
- #: dashboard/settings/maintenance.php:66
2539
  msgid "Banners/assets Folder"
2540
  msgstr ""
2541
 
2542
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2543
  msgid "Exists and appears writable"
2544
  msgstr ""
2545
 
2546
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2547
  msgid "Not writable or does not exist"
2548
  msgstr ""
2549
 
2550
- #: dashboard/settings/maintenance.php:70
2551
  msgid "Reports Folder"
2552
  msgstr ""
2553
 
2554
- #: dashboard/settings/maintenance.php:76
2555
  msgid "Advert evaluation"
2556
  msgstr ""
2557
 
2558
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2559
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2560
  msgstr ""
2561
 
2562
- #: dashboard/settings/maintenance.php:78
2563
- msgid "Trackerdata cleanup"
2564
  msgstr ""
2565
 
2566
- #: dashboard/settings/maintenance.php:83
2567
  msgid "Internal Versions"
2568
  msgstr ""
2569
 
2570
- #: dashboard/settings/maintenance.php:84
2571
  msgid ""
2572
  "Unless you experience database issues or a warning shows below, these "
2573
  "numbers are not really relevant for troubleshooting. Support may ask for "
2574
  "them to verify your database status."
2575
  msgstr ""
2576
 
2577
- #: dashboard/settings/maintenance.php:87
2578
  msgid "AdRotate version"
2579
  msgstr ""
2580
 
2581
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2582
  msgid "Current:"
2583
  msgstr ""
2584
 
2585
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2586
  msgid "Should be:"
2587
  msgstr ""
2588
 
2589
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2590
  msgid "Previous:"
2591
  msgstr ""
2592
 
2593
- #: dashboard/settings/maintenance.php:89
2594
  msgid "Database version"
2595
  msgstr ""
2596
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2597
  #: dashboard/settings/misc.php:16
2598
  msgid "Miscellaneous"
2599
  msgstr "その他"
@@ -3024,6 +2841,116 @@ msgid ""
3024
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3025
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
3026
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3027
  #, fuzzy
3028
  #~ msgid "Enable responsive support for this advert."
3029
  #~ msgstr "広告の追加・編集管理"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-22 22:11+0800\n"
6
+ "PO-Revision-Date: 2017-01-22 22:11+0800\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.11\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:721
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
+ #: adrotate-functions.php:724
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
+ #: adrotate-functions.php:773
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
+ #: adrotate-functions.php:777
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
+ #: adrotate-functions.php:781
36
  msgid "Ad(s) deleted"
37
  msgstr "広告削除"
38
 
39
+ #: adrotate-functions.php:785
40
  msgid "Group deleted"
41
  msgstr "グループの削除"
42
 
43
+ #: adrotate-functions.php:789
44
  msgid "Ad(s) statistics reset"
45
  msgstr "広告の統計情報初期化"
46
 
47
+ #: adrotate-functions.php:793
48
  msgid "Ad(s) renewed"
49
  msgstr "広告の更新"
50
 
51
+ #: adrotate-functions.php:797
52
  msgid "Ad(s) deactivated"
53
  msgstr "広告の利用停止"
54
 
55
+ #: adrotate-functions.php:801
56
  msgid "Ad(s) activated"
57
  msgstr "広告の利用可能化"
58
 
59
+ #: adrotate-functions.php:805
60
  msgid "Group including it's Ads deleted"
61
  msgstr "削除された広告がグループに含まれています。"
62
 
63
+ #: adrotate-functions.php:809
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "エクスポートオプション"
67
 
68
+ #: adrotate-functions.php:814
69
  msgid "Settings saved"
70
  msgstr "設定を保存します。"
71
 
72
+ #: adrotate-functions.php:818
73
  msgid "Database optimized"
74
  msgstr "データベースの最適化"
75
 
76
+ #: adrotate-functions.php:822
77
  msgid "Database repaired"
78
  msgstr "データベースの修復"
79
 
80
+ #: adrotate-functions.php:826
81
  #, fuzzy
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr "広告"
84
 
85
+ #: adrotate-functions.php:830
86
  msgid "Empty database records removed"
87
  msgstr "空のデータベースは削除されました。"
88
 
89
+ #: adrotate-functions.php:835
90
  msgid "Action prohibited"
91
  msgstr "今の操作は禁止されました。"
92
 
93
+ #: adrotate-functions.php:839
94
  msgid ""
95
  "The ad was saved but has an issue which might prevent it from working "
96
  "properly. Review the colored ad."
97
  msgstr ""
98
 
99
+ #: adrotate-functions.php:843
100
  msgid "No data found in selected time period"
101
  msgstr "選ばれた期間が見つかりません。"
102
 
103
+ #: adrotate-functions.php:847
104
  msgid "Database can only be optimized or cleaned once every hour"
105
  msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
106
 
107
+ #: adrotate-functions.php:851
108
  msgid "Form can not be (partially) empty!"
109
  msgstr ""
110
 
111
+ #: adrotate-functions.php:855
112
  msgid "No ads found."
113
  msgstr ""
114
 
115
+ #: adrotate-functions.php:859
116
  msgid "Unexpected error"
117
  msgstr ""
118
 
119
+ #: adrotate-manage-publisher.php:677
120
  msgid "AdRotate Advertiser"
121
  msgstr ""
122
 
206
  msgstr "理解できないエラーが起こっています。"
207
 
208
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
 
209
  msgid "Check adverts"
210
  msgstr ""
211
 
212
+ #: adrotate-output.php:664
213
  msgid ""
214
  "You have enable caching support but W3 Total Cache is not active on your "
215
  "site!"
216
  msgstr ""
217
 
218
+ #: adrotate-output.php:667
219
  msgid ""
220
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
221
  "not set."
222
  msgstr ""
223
 
224
+ #: adrotate-output.php:672
225
  msgid "Your AdRotate Banner folder is not writable or does not exist."
226
  msgstr ""
227
 
228
+ #: adrotate-output.php:712 dashboard/adrotatepro.php:86
229
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:88
230
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:98
231
+ #: dashboard/adrotatepro.php:99 dashboard/adrotatepro.php:100
232
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:64 dashboard/info.php:65
233
+ #: dashboard/info.php:66 dashboard/info.php:67 dashboard/info.php:71
234
+ #: dashboard/info.php:72 dashboard/info.php:73 dashboard/info.php:74
235
  #: dashboard/settings/geotargeting.php:35
236
  #, fuzzy
237
  msgid "Buy now"
238
  msgstr "継続する場合は対応して下さい。"
239
 
240
+ #: adrotate-output.php:713
241
  msgid ""
242
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
243
  "to the <strong>PRO</strong> version"
244
  msgstr ""
245
 
246
+ #: adrotate-output.php:713
247
  #, php-format
248
  msgid ""
249
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
250
  msgstr ""
251
 
252
+ #: adrotate-output.php:713
253
  msgid "Thank you for your purchase!"
254
  msgstr ""
255
 
256
+ #: adrotate-output.php:774
257
  msgid ""
258
+ "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
259
+ "menu. If you need help getting started take a look at the"
260
  msgstr ""
261
 
262
+ #: adrotate-output.php:774
263
  msgid "manuals"
264
  msgstr "マニュアル(英語サイト)"
265
 
266
+ #: adrotate-output.php:774 adrotate-output.php:844
267
  msgid "and"
268
  msgstr ""
269
 
270
+ #: adrotate-output.php:774
271
  #, fuzzy
272
  msgid "forums"
273
  msgstr "フォーラム"
274
 
275
+ #: adrotate-output.php:807
276
  #, fuzzy
277
  msgid "Useful Links"
278
  msgstr "役に立つ情報"
279
 
280
+ #: adrotate-output.php:808
281
  msgid "Useful links to learn more about AdRotate"
282
  msgstr ""
283
 
284
+ #: adrotate-output.php:810
285
  msgid "AdRotate website"
286
  msgstr ""
287
 
288
+ #: adrotate-output.php:811
289
  #, fuzzy
290
  msgid "Getting Started With AdRotate"
291
  msgstr ""
292
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
293
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
294
 
295
+ #: adrotate-output.php:812
296
  #, fuzzy
297
  msgid "AdRotate manuals"
298
  msgstr "AdRotate Blog"
299
 
300
+ #: adrotate-output.php:813
301
  #, fuzzy
302
  msgid "AdRotate Support Forum"
303
  msgstr "AdRotate Blog"
304
 
305
+ #: adrotate-output.php:836 dashboard/info.php:46
306
  #, fuzzy
307
+ msgid "Support AdRotate"
308
  msgstr "AdRotate Blog"
309
 
310
+ #: adrotate-output.php:837
311
+ msgid "Check out my website"
312
  msgstr ""
313
 
314
+ #: adrotate-output.php:844
315
  msgid ""
316
+ "Many users only think to review AdRotate when something goes wrong while "
317
+ "thousands of people happily use AdRotate."
318
  msgstr ""
319
 
320
+ #: adrotate-output.php:844
321
+ msgid "If you find AdRotate useful please leave your"
322
  msgstr ""
323
 
324
+ #: adrotate-output.php:844
325
  msgid "rating"
326
  msgstr ""
327
 
328
+ #: adrotate-output.php:844
329
  #, fuzzy
330
  msgid "review"
331
  msgstr "全般レポートを見れる権限"
332
 
333
+ #: adrotate-output.php:844
334
  msgid "on WordPress.org to help AdRotate grow in a positive way"
335
  msgstr ""
336
 
337
+ #: adrotate-output.php:870 dashboard/settings/notifications.php:50
338
  #: dashboard/settings/notifications.php:80
339
  #, fuzzy
340
  msgid "Available in AdRotate Pro"
341
  msgstr "AdRotate Blog"
342
 
343
+ #: adrotate-output.php:870
344
  #, fuzzy
345
  msgid "More information..."
346
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
347
 
348
+ #: adrotate-output.php:871
349
  #, fuzzy
350
  msgid "This feature is available in AdRotate Pro"
351
  msgstr "この機能は使いません。"
352
 
353
+ #: adrotate-output.php:871
354
  #, fuzzy
355
  msgid "Learn more"
356
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
357
 
358
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:217
359
+ #: dashboard/publisher/adverts-edit.php:238
360
  msgid "January"
361
  msgstr "1月"
362
 
363
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:218
364
+ #: dashboard/publisher/adverts-edit.php:239
365
  msgid "February"
366
  msgstr "2月"
367
 
368
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:219
369
+ #: dashboard/publisher/adverts-edit.php:240
370
  msgid "March"
371
  msgstr "3月"
372
 
373
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:220
374
+ #: dashboard/publisher/adverts-edit.php:241
375
  msgid "April"
376
  msgstr "4月"
377
 
378
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:221
379
+ #: dashboard/publisher/adverts-edit.php:242
380
  msgid "May"
381
  msgstr "5月"
382
 
383
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:222
384
+ #: dashboard/publisher/adverts-edit.php:243
385
  msgid "June"
386
  msgstr "6月"
387
 
388
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:223
389
+ #: dashboard/publisher/adverts-edit.php:244
390
  msgid "July"
391
  msgstr "7月"
392
 
393
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:224
394
+ #: dashboard/publisher/adverts-edit.php:245
395
  msgid "August"
396
  msgstr "8月"
397
 
398
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:225
399
+ #: dashboard/publisher/adverts-edit.php:246
400
  msgid "September"
401
  msgstr "9月"
402
 
403
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:226
404
+ #: dashboard/publisher/adverts-edit.php:247
405
  msgid "October"
406
  msgstr "10月"
407
 
408
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:227
409
+ #: dashboard/publisher/adverts-edit.php:248
410
  msgid "November"
411
  msgstr "11月"
412
 
413
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:228
414
+ #: dashboard/publisher/adverts-edit.php:249
415
  msgid "December"
416
  msgstr "12月"
417
 
418
+ #: adrotate-statistics.php:152
419
  #, fuzzy
420
  msgid "Previous"
421
  msgstr "プレビュー"
422
 
423
+ #: adrotate-statistics.php:154
424
  msgid "This month"
425
  msgstr ""
426
 
427
+ #: adrotate-statistics.php:155
428
  msgid "Next"
429
  msgstr ""
430
 
431
+ #: adrotate-statistics.php:229
432
  msgid "No data to show!"
433
  msgstr "表示できるデータがありません。"
434
 
475
  msgid "Fill in the ID of the type you want to display!"
476
  msgstr "表示したいタイプのIDを入力してください!"
477
 
478
+ #: adrotate.php:101
479
  #, fuzzy
480
  msgid "General Info"
481
  msgstr "一般設定"
482
 
483
+ #: adrotate.php:102
484
  #, fuzzy
485
  msgid "AdRotate Pro"
486
  msgstr "AdRotate Blog"
487
 
488
+ #: adrotate.php:103 dashboard/info.php:37
489
+ #: dashboard/publisher/adverts-edit.php:455
490
+ #: dashboard/publisher/groups-main.php:34
 
 
 
 
 
 
491
  #, fuzzy
492
+ msgid "Adverts"
493
+ msgstr "新しい広告の承認"
494
 
495
+ #: adrotate.php:104 dashboard/info.php:41
496
+ msgid "Groups"
497
+ msgstr "グループ"
 
498
 
499
+ #: adrotate.php:105
500
  msgid "Settings"
501
  msgstr "設定"
502
 
503
+ #: adrotate.php:123
504
  #, fuzzy
505
  msgid "AdRotate Info"
506
  msgstr "AdRotate Blog"
507
 
508
+ #: adrotate.php:141
509
  #, fuzzy
510
  msgid "AdRotate Professional"
511
  msgstr "AdRotate Blog"
512
 
513
+ #: adrotate.php:181
514
  msgid "Advert Management"
515
  msgstr ""
516
 
517
+ #: adrotate.php:239 adrotate.php:306
518
  msgid "Manage"
519
  msgstr "管理"
520
 
521
+ #: adrotate.php:240 adrotate.php:307
522
  msgid "Add New"
523
  msgstr "新規追加"
524
 
525
+ #: adrotate.php:300
526
  msgid "Group Management"
527
  msgstr "グループの管理"
528
 
529
+ #: adrotate.php:309
530
  msgid "Report"
531
  msgstr "レポート"
532
 
533
+ #: adrotate.php:354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
534
  msgid "AdRotate Settings"
535
  msgstr "AdRotate 設定"
536
 
555
  msgid ""
556
  "Target mobile users with ease and show the right adverts to smartphones, "
557
  "tablets and computers. Mix and match as you please and offer adverts that "
558
+ "suit the device or mobile operating system. Create as many mobile adverts as "
559
+ "you want without effort and with a few easy to use options they show up "
560
+ "where you want them to!"
561
  msgstr ""
562
 
563
  #: dashboard/adrotatepro.php:34
584
  "forum. Get a solution (usually) within one business day."
585
  msgstr ""
586
 
587
+ #: dashboard/adrotatepro.php:48 dashboard/info.php:101
588
  #, fuzzy
589
  msgid "AdRotate is brought to you by"
590
  msgstr "サービス紹介"
591
 
592
+ #: dashboard/adrotatepro.php:61
593
  msgid "Schedule all campaigns with ease"
594
  msgstr ""
595
 
596
+ #: dashboard/adrotatepro.php:64
597
  msgid ""
598
  "Schedule your adverts and set up advertising campaigns based on dates you or "
599
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
600
+ "specific days in the week. You name it, AdRotate schedules it. This makes "
601
+ "planning your revenue stream very flexible. You can set one or many "
602
+ "schedules for adverts."
603
  msgstr ""
604
 
605
+ #: dashboard/adrotatepro.php:68
606
  msgid "Avoid adblockers"
607
  msgstr ""
608
 
609
+ #: dashboard/adrotatepro.php:71
610
  msgid ""
611
+ "Try and avoid adblockers so your adverts get the exposure you want them to "
612
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
613
  "adverts are less likely to be removed. Of-course make sure you create your "
614
  "adverts smartly so these features reach their full potential!"
615
  msgstr ""
616
 
617
+ #: dashboard/adrotatepro.php:75
618
  msgid "Stay up-to-date with notifications"
619
  msgstr ""
620
 
621
+ #: dashboard/adrotatepro.php:78
622
  msgid ""
623
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
624
  "adverts expire or need your attention. Additionally, send push notifications "
626
  "or when advertisers create new adverts. Never miss an expiration date again."
627
  msgstr ""
628
 
629
+ #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
630
+ #: dashboard/info.php:60
631
  #, fuzzy
632
  msgid "Buy AdRotate Professional"
633
  msgstr "AdRotate Blog"
634
 
635
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:64
636
  msgid "Single License"
637
  msgstr ""
638
 
639
+ #: dashboard/adrotatepro.php:86
640
  msgid "For one WordPress installation."
641
  msgstr ""
642
 
643
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
644
+ #: dashboard/info.php:65 dashboard/info.php:72
645
  msgid "Duo License"
646
  msgstr ""
647
 
648
+ #: dashboard/adrotatepro.php:87
649
  msgid "For two WordPress installations."
650
  msgstr ""
651
 
652
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
653
+ #: dashboard/info.php:66 dashboard/info.php:73
654
  msgid "Multi License"
655
  msgstr ""
656
 
657
+ #: dashboard/adrotatepro.php:88
658
  msgid " For up to five WordPress installations."
659
  msgstr ""
660
 
661
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
662
+ #: dashboard/info.php:67 dashboard/info.php:74
663
  #, fuzzy
664
  msgid "Developer License"
665
  msgstr "開発者向けデバッグ"
666
 
667
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:67
668
  msgid "Unlimited WordPress installations and/or networks."
669
  msgstr ""
670
 
671
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
672
+ #: dashboard/info.php:68 dashboard/info.php:76
673
  msgid "Compare licenses"
674
  msgstr ""
675
 
676
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
677
  msgid "Not sure which license is for you? Compare them..."
678
  msgstr ""
679
 
680
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
681
  #, fuzzy
682
  msgid "All Licenses"
683
  msgstr "すべての広告の再評価"
684
 
685
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
686
  msgid "Lifetime License"
687
  msgstr ""
688
 
689
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
690
  msgid "Single installation."
691
  msgstr ""
692
 
693
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:72
694
  msgid "Up to 2 installations."
695
  msgstr ""
696
 
697
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:73
698
  msgid "Up to 10 installations."
699
  msgstr ""
700
 
701
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:74
702
  msgid "Up to 25 installations or multisite networks."
703
  msgstr ""
704
 
705
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:75
706
  msgid ""
707
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
708
  msgstr ""
709
 
710
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
711
  msgid "Not sure which license is for you?"
712
  msgstr ""
713
 
714
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
715
  msgid "Compare Licenses"
716
  msgstr ""
717
 
733
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
734
  "さい。英語ですが。"
735
 
 
 
 
 
 
 
736
  #: dashboard/info.php:38
737
  #, fuzzy
738
  msgid "(Almost) Expired"
739
  msgstr "個の広告が期限切れです。"
740
 
 
 
 
 
741
  #: dashboard/info.php:42
742
  #, fuzzy
743
  msgid "Have errors"
744
  msgstr "個の広告が設定エラーになっています。"
745
 
746
+ #: dashboard/info.php:47
 
 
 
 
 
747
  msgid ""
748
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
749
  "for updates about me and my plugins. Thank you!"
750
  msgstr ""
751
 
752
+ #: dashboard/info.php:51 dashboard/publisher/adverts-edit.php:124
753
+ msgid "Get paid as a publisher:"
754
+ msgstr ""
755
+
756
+ #: dashboard/info.php:64
757
+ msgid "One WordPress installation."
758
+ msgstr ""
759
+
760
+ #: dashboard/info.php:65
761
+ msgid "Two WordPress installations."
762
+ msgstr ""
763
+
764
+ #: dashboard/info.php:66
765
+ msgid "Up to five WordPress installations."
766
+ msgstr ""
767
+
768
+ #: dashboard/info.php:87
769
  msgid "AdRotate News"
770
  msgstr ""
771
 
772
+ #: dashboard/info.php:105
773
  msgid ""
774
  "I am a digital nomad in the Philippines. Click on my name to find out more "
775
  "about me and what I am doing. Thanks for your support and for using my "
780
  msgid "Disabled Adverts"
781
  msgstr ""
782
 
783
+ #: dashboard/publisher/adverts-disabled.php:20
784
+ #: dashboard/publisher/adverts-error.php:19
785
+ #: dashboard/publisher/adverts-main.php:20
786
+ #: dashboard/publisher/groups-main.php:20
787
+ msgid "Bulk Actions"
788
+ msgstr "一括操作"
789
+
790
  #: dashboard/publisher/adverts-disabled.php:21
791
+ #: dashboard/publisher/adverts-edit.php:173
792
  msgid "Activate"
793
  msgstr "利用可能"
794
 
795
+ #: dashboard/publisher/adverts-disabled.php:22
796
+ #: dashboard/publisher/adverts-error.php:21
797
+ #: dashboard/publisher/adverts-main.php:22
798
+ msgid "Delete"
799
+ msgstr "削除"
800
+
801
  #: dashboard/publisher/adverts-disabled.php:23
802
  #: dashboard/publisher/adverts-error.php:22
803
  #: dashboard/publisher/adverts-main.php:23
804
  msgid "Reset stats"
805
  msgstr "統計リセット"
806
 
807
+ #: dashboard/publisher/adverts-disabled.php:25
808
+ #: dashboard/publisher/adverts-error.php:29
809
+ #: dashboard/publisher/adverts-main.php:30
810
+ #: dashboard/publisher/groups-main.php:24
811
+ msgid "Go"
812
+ msgstr "実行"
813
+
814
+ #: dashboard/publisher/adverts-disabled.php:35
815
+ #: dashboard/publisher/adverts-error.php:39
816
+ #: dashboard/publisher/adverts-main.php:39
817
+ #: dashboard/publisher/groups-main.php:32
818
+ #, fuzzy
819
+ msgid "ID"
820
+ msgstr "広告ブロック - ブロックIDを使ってください。"
821
+
822
  #: dashboard/publisher/adverts-disabled.php:36
823
  #: dashboard/publisher/adverts-error.php:40
824
  #: dashboard/publisher/adverts-main.php:40
826
  msgstr ""
827
 
828
  #: dashboard/publisher/adverts-disabled.php:37
829
+ #: dashboard/publisher/adverts-edit.php:109
830
  #: dashboard/publisher/adverts-error.php:41
831
  #: dashboard/publisher/adverts-main.php:41
832
  msgid "Title"
834
 
835
  #: dashboard/publisher/adverts-disabled.php:38
836
  #: dashboard/publisher/adverts-main.php:44
837
+ #: dashboard/publisher/groups-edit.php:331
838
  #: dashboard/publisher/groups-main.php:36
839
  #, fuzzy
840
  msgid "Shown"
844
  #: dashboard/publisher/adverts-main.php:46
845
  #: dashboard/publisher/adverts-report.php:36
846
  #: dashboard/publisher/adverts-report.php:57
847
+ #: dashboard/publisher/groups-edit.php:332
848
  #: dashboard/publisher/groups-main.php:38
849
  #: dashboard/publisher/groups-report.php:37
850
  #: dashboard/publisher/groups-report.php:58
860
  msgid "CTR"
861
  msgstr ""
862
 
863
+ #: dashboard/publisher/adverts-disabled.php:71
864
  #: dashboard/publisher/adverts-error.php:64
865
+ #: dashboard/publisher/adverts-main.php:82
866
  #: dashboard/publisher/groups-main.php:70
867
  msgid "Edit"
868
  msgstr "編集"
869
 
870
+ #: dashboard/publisher/adverts-disabled.php:71
871
  #: dashboard/publisher/adverts-error.php:64
872
+ #: dashboard/publisher/adverts-main.php:82
873
  #: dashboard/publisher/groups-main.php:70
874
  #, fuzzy
875
  msgid "Stats"
876
  msgstr "統計リセット"
877
 
878
+ #: dashboard/publisher/adverts-disabled.php:71
879
  #: dashboard/publisher/adverts-error.php:64
880
+ #: dashboard/publisher/adverts-main.php:82
881
  #, fuzzy
882
  msgid "Groups:"
883
  msgstr "グループ"
884
 
885
+ #: dashboard/publisher/adverts-edit.php:47
886
  msgid "The AdCode cannot be empty!"
887
  msgstr "AdCodeを空にすることはできません!"
888
 
889
+ #: dashboard/publisher/adverts-edit.php:50
890
  msgid ""
891
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
892
  "use!"
893
  msgstr ""
894
 
895
+ #: dashboard/publisher/adverts-edit.php:53
896
  msgid ""
897
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
898
  "use!"
899
  msgstr ""
900
 
901
+ #: dashboard/publisher/adverts-edit.php:56
902
  msgid ""
903
  "There is a problem saving the image. Please reset your image and re-save the "
904
  "ad!"
905
  msgstr ""
906
 
907
+ #: dashboard/publisher/adverts-edit.php:59
908
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
909
  msgstr ""
910
 
911
+ #: dashboard/publisher/adverts-edit.php:64
912
  msgid ""
913
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
914
  "the ad!"
916
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
917
  "を再度保存してください!"
918
 
919
+ #: dashboard/publisher/adverts-edit.php:67
920
  msgid "This ad is expired and currently not shown on your website!"
921
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
922
 
923
+ #: dashboard/publisher/adverts-edit.php:70
924
  msgid "The ad will expire in less than 2 days!"
925
  msgstr "この広告は期限が2日間ありません。"
926
 
927
+ #: dashboard/publisher/adverts-edit.php:73
928
  msgid "This ad will expire in less than 7 days!"
929
  msgstr "この広告は期限が7日間ありません。"
930
 
931
+ #: dashboard/publisher/adverts-edit.php:76
932
  msgid "This ad has been disabled and does not rotate on your site!"
933
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
934
 
935
+ #: dashboard/publisher/adverts-edit.php:101
936
  #, fuzzy
937
  msgid "New Advert"
938
  msgstr "新規追加"
939
 
940
+ #: dashboard/publisher/adverts-edit.php:103
941
  #, fuzzy
942
  msgid "Edit Advert"
943
  msgstr "編集"
944
 
945
+ #: dashboard/publisher/adverts-edit.php:115
946
  msgid "AdCode"
947
  msgstr ""
948
 
949
+ #: dashboard/publisher/adverts-edit.php:120
950
  msgid "Basic Examples:"
951
  msgstr "設定例:"
952
 
953
+ #: dashboard/publisher/adverts-edit.php:131
954
  msgid "Useful tags"
955
  msgstr ""
956
 
957
+ #: dashboard/publisher/adverts-edit.php:133
958
  msgid "Insert the advert ID Number."
959
  msgstr ""
960
 
961
+ #: dashboard/publisher/adverts-edit.php:133
962
  msgid "Required when selecting a asset below."
963
  msgstr ""
964
 
965
+ #: dashboard/publisher/adverts-edit.php:133
966
  msgid "Insert the advert name."
967
  msgstr ""
968
 
969
+ #: dashboard/publisher/adverts-edit.php:133
970
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
971
  msgstr ""
972
 
973
+ #: dashboard/publisher/adverts-edit.php:133
974
  msgid "Add inside the <a> tag to open advert in a new window."
975
  msgstr ""
976
 
977
+ #: dashboard/publisher/adverts-edit.php:133
978
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
979
  msgstr ""
980
 
981
+ #: dashboard/publisher/adverts-edit.php:133
982
  msgid ""
983
  "Place the cursor in your AdCode where you want to add any of these tags and "
984
  "click to add it."
985
  msgstr ""
986
 
987
+ #: dashboard/publisher/adverts-edit.php:138
988
  msgid "Preview"
989
  msgstr "プレビュー"
990
 
991
+ #: dashboard/publisher/adverts-edit.php:141
992
  msgid ""
993
  "Note: While this preview is an accurate one, it might look different then it "
994
  "does on the website."
996
  "注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
997
  "場合があります。"
998
 
999
+ #: dashboard/publisher/adverts-edit.php:142
1000
  msgid ""
1001
  "This is because of CSS differences. Your themes CSS file is not active here!"
1002
  msgstr ""
1003
  "主な原因としてはCSSの設定がここでは反映されないからです。表示にCSSを利用され"
1004
  "ている場合は実ページでご確認下さい。"
1005
 
1006
+ #: dashboard/publisher/adverts-edit.php:147
1007
  msgid "Banner asset"
1008
  msgstr ""
1009
 
1010
+ #: dashboard/publisher/adverts-edit.php:150
1011
  msgid "WordPress media:"
1012
  msgstr ""
1013
 
1014
+ #: dashboard/publisher/adverts-edit.php:150
1015
  #, fuzzy
1016
  msgid "Select Banner"
1017
  msgstr "バナー画像"
1018
 
1019
+ #: dashboard/publisher/adverts-edit.php:152
1020
  msgid "- OR -"
1021
  msgstr "- もしくは -"
1022
 
1023
+ #: dashboard/publisher/adverts-edit.php:154
1024
  msgid "Banner folder:"
1025
  msgstr "画像バナー"
1026
 
1027
+ #: dashboard/publisher/adverts-edit.php:155
1028
  msgid "No image selected"
1029
  msgstr "画像は設定されていません。"
1030
 
1031
+ #: dashboard/publisher/adverts-edit.php:159
1032
  msgid "Use %asset% in the adcode instead of the file path."
1033
  msgstr ""
1034
 
1035
+ #: dashboard/publisher/adverts-edit.php:159
1036
  msgid ""
1037
  "Use either the text field or the dropdown. If the textfield has content that "
1038
  "field has priority."
1040
  "上記の画像リンクかドロップダウンかを利用します。画像リンクが入力されている場"
1041
  "合はそちらが優先されます。"
1042
 
1043
+ #: dashboard/publisher/adverts-edit.php:164
1044
  #: dashboard/settings/statistics.php:17
1045
  msgid "Statistics"
1046
  msgstr "統計"
1047
 
1048
+ #: dashboard/publisher/adverts-edit.php:166
1049
  msgid "Enable click and impression tracking for this advert."
1050
  msgstr ""
1051
 
1052
+ #: dashboard/publisher/adverts-edit.php:167
1053
  msgid ""
1054
  "Note: Clicktracking does not work for Javascript adverts such as those "
1055
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1056
  "always supported."
1057
  msgstr ""
1058
 
1059
+ #: dashboard/publisher/adverts-edit.php:177
1060
  msgid "Yes, this ad will be used"
1061
  msgstr "この広告を掲載されるように設定する"
1062
 
1063
+ #: dashboard/publisher/adverts-edit.php:178
1064
  #, fuzzy
1065
  msgid "No, do not show this ad anywhere"
1066
  msgstr "表示できるデータがありません。"
1067
 
1068
+ #: dashboard/publisher/adverts-edit.php:185
1069
+ #: dashboard/publisher/adverts-main.php:107
1070
  #: dashboard/publisher/groups-edit.php:71
1071
  #: dashboard/publisher/groups-main.php:89
1072
  #, fuzzy
1076
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1077
 
1078
  #: dashboard/publisher/adverts-edit.php:185
1079
+ #: dashboard/publisher/adverts-main.php:107
1080
+ #: dashboard/publisher/groups-edit.php:71
1081
+ #: dashboard/publisher/groups-main.php:89
1082
+ #, fuzzy
1083
+ msgid "More information"
1084
+ msgstr "ユーザーえー助演について知りたい方はこちらから。"
1085
+
1086
+ #: dashboard/publisher/adverts-edit.php:188
1087
+ #: dashboard/publisher/adverts-edit.php:288
1088
+ #: dashboard/publisher/adverts-edit.php:444
1089
+ #: dashboard/publisher/adverts-edit.php:485
1090
  #, fuzzy
1091
  msgid "Save Advert"
1092
  msgstr "保存"
1093
 
1094
+ #: dashboard/publisher/adverts-edit.php:189
1095
+ #: dashboard/publisher/adverts-edit.php:289
1096
+ #: dashboard/publisher/adverts-edit.php:445
1097
+ #: dashboard/publisher/adverts-edit.php:486
1098
  #: dashboard/publisher/groups-edit.php:150
1099
+ #: dashboard/publisher/groups-edit.php:299
1100
+ #: dashboard/publisher/groups-edit.php:391
1101
  msgid "Cancel"
1102
  msgstr "キャンセル"
1103
 
1104
+ #: dashboard/publisher/adverts-edit.php:192
1105
+ #: dashboard/publisher/adverts-edit.php:427
1106
  #: dashboard/publisher/groups-edit.php:132
1107
+ #: dashboard/publisher/groups-edit.php:281
1108
  msgid "Usage"
1109
  msgstr "利用タグ"
1110
 
1111
+ #: dashboard/publisher/adverts-edit.php:196
1112
+ #: dashboard/publisher/adverts-edit.php:431
1113
  #: dashboard/publisher/groups-edit.php:136
1114
+ #: dashboard/publisher/groups-edit.php:205
1115
+ #: dashboard/publisher/groups-edit.php:245
1116
+ #: dashboard/publisher/groups-edit.php:285
1117
  msgid "Widget"
1118
  msgstr ""
1119
 
1120
+ #: dashboard/publisher/adverts-edit.php:197
1121
+ #: dashboard/publisher/adverts-edit.php:432
1122
  msgid ""
1123
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1124
  "and select the advert or the group the advert is in."
1125
  msgstr ""
1126
 
1127
+ #: dashboard/publisher/adverts-edit.php:200
1128
+ #: dashboard/publisher/adverts-edit.php:435
1129
  #: dashboard/publisher/groups-edit.php:140
1130
+ #: dashboard/publisher/groups-edit.php:289
1131
  msgid "In a post or page"
1132
  msgstr ""
1133
 
1134
+ #: dashboard/publisher/adverts-edit.php:202
1135
+ #: dashboard/publisher/adverts-edit.php:437
1136
  #: dashboard/publisher/groups-edit.php:142
1137
+ #: dashboard/publisher/groups-edit.php:291
1138
  msgid "Directly in a theme"
1139
  msgstr ""
1140
 
1141
+ #: dashboard/publisher/adverts-edit.php:208
1142
  msgid "Schedule your advert"
1143
  msgstr ""
1144
 
1145
+ #: dashboard/publisher/adverts-edit.php:212
1146
  msgid "Start date (day/month/year)"
1147
  msgstr ""
1148
 
1149
+ #: dashboard/publisher/adverts-edit.php:233
1150
  msgid "End date (day/month/year)"
1151
  msgstr ""
1152
 
1153
+ #: dashboard/publisher/adverts-edit.php:256
1154
  msgid "Start time (hh:mm)"
1155
  msgstr ""
1156
 
1157
+ #: dashboard/publisher/adverts-edit.php:263
1158
  msgid "End time (hh:mm)"
1159
  msgstr ""
1160
 
1161
+ #: dashboard/publisher/adverts-edit.php:273
1162
  msgid "Maximum Clicks"
1163
  msgstr ""
1164
 
1165
+ #: dashboard/publisher/adverts-edit.php:274
1166
+ #: dashboard/publisher/adverts-edit.php:276
1167
  msgid "Leave empty or 0 to skip this."
1168
  msgstr "※この機能を利用しない場合は、空白か0を設定して下さい。"
1169
 
1170
+ #: dashboard/publisher/adverts-edit.php:275
1171
  msgid "Maximum Impressions"
1172
  msgstr ""
1173
 
1174
+ #: dashboard/publisher/adverts-edit.php:280
1175
  msgid "Important"
1176
  msgstr ""
1177
 
1178
+ #: dashboard/publisher/adverts-edit.php:281
1179
  msgid ""
1180
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1181
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1182
  "14:00 hours. 6AM is 6:00 hours."
1183
  msgstr ""
1184
 
1185
+ #: dashboard/publisher/adverts-edit.php:285
1186
  msgid ""
1187
  "Create multiple and more advanced schedules for each advert with AdRotate "
1188
  "Pro."
1189
  msgstr ""
1190
 
1191
+ #: dashboard/publisher/adverts-edit.php:285
1192
+ #: dashboard/publisher/adverts-edit.php:354
1193
+ #: dashboard/publisher/adverts-edit.php:425
1194
+ #: dashboard/publisher/groups-edit.php:191
1195
  #, fuzzy
1196
  msgid "Upgrade today"
1197
  msgstr "本日"
1198
 
1199
+ #: dashboard/publisher/adverts-edit.php:292
1200
  #: dashboard/publisher/groups-edit.php:153
1201
  #, fuzzy
1202
  msgid "Advanced"
1203
  msgstr "設定例(高度):"
1204
 
1205
+ #: dashboard/publisher/adverts-edit.php:293
1206
+ #: dashboard/publisher/adverts-edit.php:357
 
 
 
 
1207
  msgid "Available in AdRotate Pro!"
1208
  msgstr ""
1209
 
1210
+ #: dashboard/publisher/adverts-edit.php:298
1211
  #: dashboard/publisher/adverts-main.php:42
1212
+ #: dashboard/publisher/groups-edit.php:334
1213
  msgid "Weight"
1214
  msgstr "表示頻度"
1215
 
1216
+ #: dashboard/publisher/adverts-edit.php:301
1217
  msgid "Few impressions"
1218
  msgstr ""
1219
 
1220
+ #: dashboard/publisher/adverts-edit.php:306
1221
  msgid "Less than average"
1222
  msgstr "標準より少し少ない表示(40%程度)"
1223
 
1224
+ #: dashboard/publisher/adverts-edit.php:311
1225
  msgid "Normal impressions"
1226
  msgstr ""
1227
 
1228
+ #: dashboard/publisher/adverts-edit.php:316
1229
  msgid "More than average"
1230
  msgstr "平均よりも多めの表示(70%程度)"
1231
 
1232
+ #: dashboard/publisher/adverts-edit.php:321
1233
  msgid "Many impressions"
1234
  msgstr ""
1235
 
1236
+ #: dashboard/publisher/adverts-edit.php:326
1237
  msgid "Mobile"
1238
  msgstr ""
1239
 
1240
+ #: dashboard/publisher/adverts-edit.php:328
1241
  msgid "Computers"
1242
  msgstr ""
1243
 
1244
+ #: dashboard/publisher/adverts-edit.php:331
1245
  msgid "Smartphones"
1246
  msgstr ""
1247
 
1248
+ #: dashboard/publisher/adverts-edit.php:334
1249
  msgid "Tablets"
1250
  msgstr ""
1251
 
1252
+ #: dashboard/publisher/adverts-edit.php:337
1253
  msgid ""
1254
  "Also enable mobile support in the group this advert goes in or these are "
1255
  "ignored."
1256
  msgstr ""
1257
 
1258
+ #: dashboard/publisher/adverts-edit.php:337
1259
+ msgid ""
1260
+ "Operating system detection only detects iOS/Android/Others or neither. Only "
1261
+ "works if Smartphones and/or Tablets is enabled."
1262
  msgstr ""
1263
 
1264
+ #: dashboard/publisher/adverts-edit.php:341
1265
+ msgid "Mobile OS"
1266
+ msgstr ""
 
1267
 
1268
+ #: dashboard/publisher/adverts-edit.php:343
1269
+ msgid "iOS"
1270
+ msgstr ""
1271
 
1272
+ #: dashboard/publisher/adverts-edit.php:346
1273
+ msgid "Android"
 
 
1274
  msgstr ""
1275
 
1276
+ #: dashboard/publisher/adverts-edit.php:349
1277
+ msgid "Others"
1278
  msgstr ""
1279
 
1280
+ #: dashboard/publisher/adverts-edit.php:354
1281
  msgid ""
1282
+ "With AdRotate Pro you can easily select which devices and mobile operating "
1283
+ "systems the advert should show on!"
1284
  msgstr ""
1285
 
1286
+ #: dashboard/publisher/adverts-edit.php:356
1287
+ #: dashboard/publisher/groups-edit.php:180
1288
+ #: dashboard/settings/advertisers.php:38
1289
+ msgid "Geo Targeting"
1290
  msgstr ""
1291
 
1292
+ #: dashboard/publisher/adverts-edit.php:357
1293
  msgid ""
1294
+ "Assign the advert to a group and enable that group to use Geo Targeting."
1295
+ msgstr ""
1296
+
1297
+ #: dashboard/publisher/adverts-edit.php:415
1298
+ msgid "A comma separated list of items:"
1299
  msgstr ""
1300
 
1301
+ #: dashboard/publisher/adverts-edit.php:415
1302
  msgid ""
1303
  "AdRotate does not check the validity of names so make sure you spell them "
1304
  "correctly!"
1305
  msgstr ""
1306
 
1307
+ #: dashboard/publisher/adverts-edit.php:425
 
 
 
 
 
 
 
 
 
 
 
 
 
1308
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1309
  msgstr ""
1310
 
1311
+ #: dashboard/publisher/adverts-edit.php:449
1312
  msgid "Select Groups"
1313
  msgstr "グループを選択"
1314
 
1315
+ #: dashboard/publisher/adverts-edit.php:454
1316
  #, fuzzy
1317
  msgid "ID - Name"
1318
  msgstr "名前"
1319
 
1320
+ #: dashboard/publisher/adverts-edit.php:464
1321
  #: dashboard/publisher/groups-main.php:60
1322
  #: dashboard/settings/geotargeting.php:49
1323
  #, fuzzy
1324
  msgid "Default"
1325
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
1326
 
1327
+ #: dashboard/publisher/adverts-edit.php:465
1328
  #: dashboard/publisher/groups-main.php:61
1329
  msgid "Dynamic"
1330
  msgstr ""
1331
 
1332
+ #: dashboard/publisher/adverts-edit.php:465
1333
  #: dashboard/publisher/groups-main.php:61
1334
  #, fuzzy
1335
  msgid "second rotation"
1336
  msgstr "バナーがないか、利用不可か適応されていません。"
1337
 
1338
+ #: dashboard/publisher/adverts-edit.php:466
1339
  #: dashboard/publisher/groups-main.php:62
1340
  #, fuzzy
1341
  msgid "Block"
1342
  msgstr "ブロック管理"
1343
 
1344
+ #: dashboard/publisher/adverts-edit.php:466
1345
  #: dashboard/publisher/groups-main.php:62
1346
  #, fuzzy
1347
  msgid "grid"
1349
  "広告に表組みを指定します。2と2を入力すると2行2列になります。(初期設定は2行2"
1350
  "列です。)"
1351
 
1352
+ #: dashboard/publisher/adverts-edit.php:467
1353
+ #: dashboard/publisher/groups-edit.php:199
1354
  #: dashboard/publisher/groups-main.php:63
1355
  #, fuzzy
1356
  msgid "Post Injection"
1357
  msgstr "投稿及びページ内掲載する場合:"
1358
 
1359
+ #: dashboard/publisher/adverts-edit.php:468
1360
  msgid "Geolocation"
1361
  msgstr ""
1362
 
1363
+ #: dashboard/publisher/adverts-edit.php:474
1364
  #: dashboard/publisher/groups-edit.php:57
1365
  #: dashboard/publisher/groups-main.php:70
1366
  #, fuzzy
1402
  msgstr "1週間(7日)"
1403
 
1404
  #: dashboard/publisher/adverts-error.php:71
1405
+ #: dashboard/publisher/groups-edit.php:384
1406
  #, fuzzy
1407
  msgid "Configuration errors."
1408
  msgstr "個の広告が設定エラーになっています。"
1409
 
1410
+ #: dashboard/publisher/adverts-error.php:72
1411
+ #: dashboard/publisher/groups-edit.php:385
1412
+ #, fuzzy
1413
+ msgid "Expires soon."
1414
+ msgstr "これは出来る限り早く修正して下さい。"
1415
+
1416
+ #: dashboard/publisher/adverts-error.php:73
1417
+ #: dashboard/publisher/groups-edit.php:386
1418
+ #, fuzzy
1419
+ msgid "Has expired."
1420
+ msgstr "個の広告が期限切れです。"
1421
+
1422
  #: dashboard/publisher/adverts-main.php:12
1423
  msgid "Active Adverts"
1424
  msgstr ""
1435
  msgid "Today"
1436
  msgstr "本日"
1437
 
1438
+ #: dashboard/publisher/adverts-main.php:102
1439
  msgid "No adverts created yet!"
1440
  msgstr ""
1441
 
1492
  msgid "Edit Group"
1493
  msgstr "グループ編集"
1494
 
1495
+ #: dashboard/publisher/groups-edit.php:51
1496
+ #: dashboard/publisher/groups-main.php:33
1497
+ msgid "Name"
1498
+ msgstr "名前"
1499
+
1500
  #: dashboard/publisher/groups-edit.php:60
1501
  #, fuzzy
1502
  msgid "Default - Show one ad at a time"
1588
  msgstr "新規追加"
1589
 
1590
  #: dashboard/publisher/groups-edit.php:137
1591
+ #: dashboard/publisher/groups-edit.php:286
1592
  msgid ""
1593
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1594
  "Adverts\" and enter ID"
1595
  msgstr ""
1596
 
1597
  #: dashboard/publisher/groups-edit.php:149
1598
+ #: dashboard/publisher/groups-edit.php:298
1599
+ #: dashboard/publisher/groups-edit.php:390
1600
  #, fuzzy
1601
  msgid "Save Group"
1602
  msgstr "保存"
1654
  "setting. Not every theme supports this feature."
1655
  msgstr ""
1656
 
 
 
 
 
 
1657
  #: dashboard/publisher/groups-edit.php:181
1658
  msgid "Enable Geo Targeting for this group."
1659
  msgstr ""
1675
  msgid "Do not forget to put at least one mobile advert in this group."
1676
  msgstr ""
1677
 
1678
+ #: dashboard/publisher/groups-edit.php:191
 
 
 
 
 
 
1679
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1680
  msgstr ""
1681
 
1682
+ #: dashboard/publisher/groups-edit.php:204
1683
+ #: dashboard/publisher/groups-edit.php:244
 
 
 
 
1684
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1685
  #, fuzzy
1686
  msgid "Disabled"
1687
  msgstr "掲載不可広告"
1688
 
1689
  #: dashboard/publisher/groups-edit.php:206
1690
+ #: dashboard/publisher/groups-edit.php:246
1691
  #, fuzzy
1692
  msgid "Before content"
1693
  msgstr "投稿内容の前"
1694
 
1695
  #: dashboard/publisher/groups-edit.php:207
1696
+ #: dashboard/publisher/groups-edit.php:247
1697
  #, fuzzy
1698
  msgid "After content"
1699
  msgstr "コンテンツの前と後ろ"
1700
 
1701
  #: dashboard/publisher/groups-edit.php:208
1702
+ #: dashboard/publisher/groups-edit.php:248
1703
  #, fuzzy
1704
  msgid "Before and after content"
1705
  msgstr "コンテンツの前と後ろ"
1706
 
1707
  #: dashboard/publisher/groups-edit.php:209
1708
+ #: dashboard/publisher/groups-edit.php:249
1709
  msgid "Inside the content..."
1710
  msgstr ""
1711
 
1712
  #: dashboard/publisher/groups-edit.php:215
1713
+ #: dashboard/publisher/groups-edit.php:255
1714
  msgid "after the middle paragraph"
1715
  msgstr ""
1716
 
1717
  #: dashboard/publisher/groups-edit.php:216
1718
+ #: dashboard/publisher/groups-edit.php:256
1719
  msgid "after the 1st paragraph"
1720
  msgstr ""
1721
 
1722
  #: dashboard/publisher/groups-edit.php:217
1723
+ #: dashboard/publisher/groups-edit.php:257
1724
  msgid "after the 2nd paragraph"
1725
  msgstr ""
1726
 
1727
  #: dashboard/publisher/groups-edit.php:218
1728
+ #: dashboard/publisher/groups-edit.php:258
1729
  msgid "after the 3rd paragraph"
1730
  msgstr ""
1731
 
1732
  #: dashboard/publisher/groups-edit.php:219
1733
+ #: dashboard/publisher/groups-edit.php:259
1734
  msgid "after the 4th paragraph"
1735
  msgstr ""
1736
 
1737
  #: dashboard/publisher/groups-edit.php:220
1738
+ #: dashboard/publisher/groups-edit.php:260
1739
  msgid "after the 5th paragraph"
1740
  msgstr ""
1741
 
1742
  #: dashboard/publisher/groups-edit.php:221
1743
+ #: dashboard/publisher/groups-edit.php:261
1744
  msgid "after the 6th paragraph"
1745
  msgstr ""
1746
 
1747
  #: dashboard/publisher/groups-edit.php:222
1748
+ #: dashboard/publisher/groups-edit.php:262
1749
  msgid "after the 7th paragraph"
1750
  msgstr ""
1751
 
1752
  #: dashboard/publisher/groups-edit.php:223
1753
+ #: dashboard/publisher/groups-edit.php:263
1754
  msgid "after the 8th paragraph"
1755
  msgstr ""
1756
 
 
 
 
 
 
 
 
 
 
1757
  #: dashboard/publisher/groups-edit.php:239
1758
+ msgid "Page Injection"
1759
  msgstr ""
1760
 
1761
+ #: dashboard/publisher/groups-edit.php:302
 
 
 
 
 
 
 
 
 
1762
  #, fuzzy
1763
  msgid "Wrapper code"
1764
  msgstr "Wrapper code (Optional) - 各広告を囲みます。"
1765
 
1766
+ #: dashboard/publisher/groups-edit.php:303
1767
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1768
  msgstr ""
1769
 
1770
+ #: dashboard/publisher/groups-edit.php:307
1771
  msgid "Before advert"
1772
  msgstr ""
1773
 
1774
+ #: dashboard/publisher/groups-edit.php:310
1775
+ #: dashboard/publisher/groups-edit.php:318
1776
+ msgid "Example:"
1777
+ msgstr "例:"
1778
+
1779
+ #: dashboard/publisher/groups-edit.php:311
1780
  msgid "Options:"
1781
  msgstr "オプション:"
1782
 
1783
+ #: dashboard/publisher/groups-edit.php:315
1784
  msgid "After advert"
1785
  msgstr ""
1786
 
1787
+ #: dashboard/publisher/groups-edit.php:324
1788
  msgid "Select adverts"
1789
  msgstr ""
1790
 
1791
+ #: dashboard/publisher/groups-edit.php:329
1792
  msgid "Choose adverts"
1793
  msgstr ""
1794
 
1795
+ #: dashboard/publisher/groups-edit.php:335
1796
  msgid "Visible until"
1797
  msgstr "掲載期限"
1798
 
1799
+ #: dashboard/publisher/groups-edit.php:377
1800
  msgid "No adverts created!"
1801
  msgstr ""
1802
 
1803
+ #: dashboard/publisher/groups-main.php:12
1804
+ msgid "Manage Groups"
1805
+ msgstr "グループの管理"
1806
+
1807
  #: dashboard/publisher/groups-main.php:21
1808
  msgid "Delete Group"
1809
  msgstr "グループ削除"
1821
  msgstr "この処理は復旧できません。注意して下さい。"
1822
 
1823
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1824
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
1825
+ #: dashboard/settings/maintenance.php:96
1826
  msgid "OK to continue, CANCEL to stop."
1827
  msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
1828
 
1894
  msgstr ""
1895
 
1896
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1897
+ #: dashboard/settings/maintenance.php:103 dashboard/settings/misc.php:43
1898
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1899
+ #: dashboard/settings/statistics.php:79
1900
  msgid "Update Options"
1901
  msgstr "設定の更新"
1902
 
2206
  msgid "Are you sure you want to continue?"
2207
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2208
 
2209
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
2210
+ #: dashboard/settings/maintenance.php:96
2211
  #, fuzzy
2212
  msgid "This might take a while and may slow down your site during this action!"
2213
  msgstr ""
2220
  msgstr "広告の削除やリセットする権限"
2221
 
2222
  #: dashboard/settings/maintenance.php:32
2223
+ msgid "Delete old tracker data. (Does nothing if you use a memcached plugin)"
 
 
2224
  msgstr ""
2225
 
2226
+ #: dashboard/settings/maintenance.php:33
2227
  msgid ""
2228
+ "For when you create an advert, group or schedule and it does not save or "
2229
+ "keep changes you make."
2230
  msgstr ""
2231
 
2232
+ #: dashboard/settings/maintenance.php:33
2233
  msgid ""
2234
+ "Additionally you can clean up old schedules, tracker data and/or statistics. "
2235
+ "This will improve the speed of your site."
2236
  msgstr ""
2237
 
2238
+ #: dashboard/settings/maintenance.php:37
2239
  msgid "Re-evaluate Ads"
2240
  msgstr "広告の再評価"
2241
 
2242
+ #: dashboard/settings/maintenance.php:39
2243
  msgid "Re-evaluate all ads"
2244
  msgstr "すべての広告の再評価"
2245
 
2246
+ #: dashboard/settings/maintenance.php:39
2247
  msgid "You are about to check all ads for errors."
2248
  msgstr "すべての広告のエラーをチェックしようとしています。"
2249
 
2250
+ #: dashboard/settings/maintenance.php:40
2251
  #, fuzzy
2252
  msgid ""
2253
  "This will apply all evaluation rules to all ads to see if any error slipped "
2254
  "in. Normally you should not need this feature."
2255
  msgstr "すべての広告のエラーをチェックしようとしています。"
2256
 
2257
+ #: dashboard/settings/maintenance.php:44
2258
  msgid ""
2259
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2260
  "database. They only apply to your ads/groups and stats. Not to other "
2267
  "is not a valid point in any case."
2268
  msgstr ""
2269
 
2270
+ #: dashboard/settings/maintenance.php:46
2271
  msgid "Troubleshooting"
2272
  msgstr "トラブルシューティング(トラブル対応)"
2273
 
2274
+ #: dashboard/settings/maintenance.php:47
2275
  msgid ""
2276
  "The below options are not meant for normal use and are only there for "
2277
  "developers to review saved settings or how ads are selected. These can be "
2279
  "SHOULD BE LEFT UNCHECKED!!"
2280
  msgstr ""
2281
 
2282
+ #: dashboard/settings/maintenance.php:50
2283
  msgid "Developer Debug"
2284
  msgstr "開発者向けデバッグ"
2285
 
2286
+ #: dashboard/settings/maintenance.php:52
2287
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2288
  msgstr ""
2289
 
2290
+ #: dashboard/settings/maintenance.php:53
2291
  msgid "View advert specs and (some) stats in the dashboard."
2292
  msgstr ""
2293
 
2294
+ #: dashboard/settings/maintenance.php:54
2295
  #, fuzzy
2296
  msgid ""
2297
  "Disable timers for clicks and impressions and enable a alert window for "
2298
  "clicktracking."
2299
  msgstr "テキストリンク(クリック数調査付):"
2300
 
2301
+ #: dashboard/settings/maintenance.php:55
2302
  #, fuzzy
2303
  msgid "Temporarily disable encryption on the redirect url."
2304
  msgstr ""
2305
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2306
  "可能性があります。"
2307
 
2308
+ #: dashboard/settings/maintenance.php:60
2309
  msgid "Status and Versions"
2310
  msgstr ""
2311
 
2312
+ #: dashboard/settings/maintenance.php:63
2313
  #, fuzzy
2314
  msgid "Current status of adverts"
2315
  msgstr "現在のスケジュール"
2316
 
2317
+ #: dashboard/settings/maintenance.php:64
2318
  #, fuzzy
2319
  msgid "Normal"
2320
  msgstr "平均的表示(50%程度)"
2321
 
2322
+ #: dashboard/settings/maintenance.php:64
2323
  #, fuzzy
2324
  msgid "Error"
2325
  msgstr "理解できないエラーが起こっています。"
2326
 
2327
+ #: dashboard/settings/maintenance.php:64
2328
  #, fuzzy
2329
  msgid "Expired"
2330
  msgstr "個の広告が期限切れです。"
2331
 
2332
+ #: dashboard/settings/maintenance.php:64
2333
  #, fuzzy
2334
  msgid "Expires Soon"
2335
  msgstr "これは出来る限り早く修正して下さい。"
2336
 
2337
+ #: dashboard/settings/maintenance.php:64
2338
  msgid "Unknown"
2339
  msgstr ""
2340
 
2341
+ #: dashboard/settings/maintenance.php:67
2342
  msgid "Banners/assets Folder"
2343
  msgstr ""
2344
 
2345
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2346
  msgid "Exists and appears writable"
2347
  msgstr ""
2348
 
2349
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2350
  msgid "Not writable or does not exist"
2351
  msgstr ""
2352
 
2353
+ #: dashboard/settings/maintenance.php:71
2354
  msgid "Reports Folder"
2355
  msgstr ""
2356
 
2357
+ #: dashboard/settings/maintenance.php:77
2358
  msgid "Advert evaluation"
2359
  msgstr ""
2360
 
2361
+ #: dashboard/settings/maintenance.php:78 dashboard/settings/maintenance.php:80
2362
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2363
  msgstr ""
2364
 
2365
+ #: dashboard/settings/maintenance.php:79
2366
+ msgid "Clean Transients"
2367
  msgstr ""
2368
 
2369
+ #: dashboard/settings/maintenance.php:84
2370
  msgid "Internal Versions"
2371
  msgstr ""
2372
 
2373
+ #: dashboard/settings/maintenance.php:85
2374
  msgid ""
2375
  "Unless you experience database issues or a warning shows below, these "
2376
  "numbers are not really relevant for troubleshooting. Support may ask for "
2377
  "them to verify your database status."
2378
  msgstr ""
2379
 
2380
+ #: dashboard/settings/maintenance.php:88
2381
  msgid "AdRotate version"
2382
  msgstr ""
2383
 
2384
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2385
  msgid "Current:"
2386
  msgstr ""
2387
 
2388
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2389
  msgid "Should be:"
2390
  msgstr ""
2391
 
2392
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2393
  msgid "Previous:"
2394
  msgstr ""
2395
 
2396
+ #: dashboard/settings/maintenance.php:90
2397
  msgid "Database version"
2398
  msgstr ""
2399
 
2400
+ #: dashboard/settings/maintenance.php:96
2401
+ msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2402
+ msgstr ""
2403
+
2404
+ #: dashboard/settings/maintenance.php:96
2405
+ msgid "Make sure you have a database backup!"
2406
+ msgstr ""
2407
+
2408
+ #: dashboard/settings/maintenance.php:97
2409
+ msgid ""
2410
+ "Attempt to update the database and migrate settings where required or "
2411
+ "relevant. Normally you should not need or use this option."
2412
+ msgstr ""
2413
+
2414
  #: dashboard/settings/misc.php:16
2415
  msgid "Miscellaneous"
2416
  msgstr "その他"
2841
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2842
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
2843
 
2844
+ #: dashboard/settings/statistics.php:71
2845
+ msgid "Clean up temporary data"
2846
+ msgstr ""
2847
+
2848
+ #: dashboard/settings/statistics.php:73
2849
+ msgid ""
2850
+ "Periodically delete old tracker data. If you are using a memcached plugin "
2851
+ "you should disable this option!"
2852
+ msgstr ""
2853
+
2854
+ #, fuzzy
2855
+ #~ msgid "Help AdRotate Grow"
2856
+ #~ msgstr "AdRotate Blog"
2857
+
2858
+ #, fuzzy
2859
+ #~ msgid "Manage Schedules"
2860
+ #~ msgstr "管理"
2861
+
2862
+ #, fuzzy
2863
+ #~ msgid "Manage Media"
2864
+ #~ msgstr "画像リンク先URL:"
2865
+
2866
+ #, fuzzy
2867
+ #~ msgid "Schedule Management available in AdRotate Pro"
2868
+ #~ msgstr "この機能は使いません。"
2869
+
2870
+ #, fuzzy
2871
+ #~ msgid ""
2872
+ #~ "Schedule management and multiple schedules per advert is available in "
2873
+ #~ "AdRotate Pro."
2874
+ #~ msgstr "この機能は使いません。"
2875
+
2876
+ #~ msgid "Ads"
2877
+ #~ msgstr "広告"
2878
+
2879
+ #, fuzzy
2880
+ #~ msgid "Max Impressions"
2881
+ #~ msgstr "表示数"
2882
+
2883
+ #, fuzzy
2884
+ #~ msgid "Max Clicks"
2885
+ #~ msgstr "クリック"
2886
+
2887
+ #, fuzzy
2888
+ #~ msgid "No schedules created yet!"
2889
+ #~ msgstr "まだブロックが作られていません。"
2890
+
2891
+ #, fuzzy
2892
+ #~ msgid "Easily manage your schedules from here with AdRotate Pro."
2893
+ #~ msgstr ""
2894
+ #~ "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーな"
2895
+ #~ "どにはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さ"
2896
+ #~ "い。"
2897
+
2898
+ #, fuzzy
2899
+ #~ msgid "Upgrade today!"
2900
+ #~ msgstr "本日"
2901
+
2902
+ #, fuzzy
2903
+ #~ msgid "Media Management available in AdRotate Pro"
2904
+ #~ msgstr "この機能は使いません。"
2905
+
2906
+ #, fuzzy
2907
+ #~ msgid "Media uploading and management is available in AdRotate Pro."
2908
+ #~ msgstr "この機能は使いません。"
2909
+
2910
+ #, fuzzy
2911
+ #~ msgid "Actions"
2912
+ #~ msgstr "一括操作"
2913
+
2914
+ #, fuzzy
2915
+ #~ msgid "Manage your banner folder from here with AdRotate Pro."
2916
+ #~ msgstr ""
2917
+ #~ "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーな"
2918
+ #~ "どにはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さ"
2919
+ #~ "い。"
2920
+
2921
+ #, fuzzy
2922
+ #~ msgid "Everything below is optional."
2923
+ #~ msgstr "タイトル(オプション):"
2924
+
2925
+ #~ msgid "For administrative purposes set a sortorder."
2926
+ #~ msgstr "管理目的で順序を設定できます。"
2927
+
2928
+ #~ msgid "Leave empty or 0 to skip this. Will default to ad id."
2929
+ #~ msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
2930
+
2931
+ #, fuzzy
2932
+ #~ msgid "Select the countries you want the adverts to show in."
2933
+ #~ msgstr "このウィジェットに使いたい物を選んで下さい。"
2934
+
2935
+ #~ msgid "Leave empty or 0 to skip this. Will default to group id."
2936
+ #~ msgstr ""
2937
+ #~ "この項目をスキップするには空か0を入れて下さい。グループIDがデフォルトにな"
2938
+ #~ "ります。"
2939
+
2940
+ #~ msgid "Which categories?"
2941
+ #~ msgstr "どのカテゴリーですか?"
2942
+
2943
+ #, fuzzy
2944
+ #~ msgid "Click the categories posts you want the adverts to show in."
2945
+ #~ msgstr "このウィジェットに使いたい物を選んで下さい。"
2946
+
2947
+ #~ msgid "Which pages?"
2948
+ #~ msgstr "どのページですか?"
2949
+
2950
+ #, fuzzy
2951
+ #~ msgid "Click the pages you want the adverts to show in."
2952
+ #~ msgstr "このウィジェットに使いたい物を選んで下さい。"
2953
+
2954
  #, fuzzy
2955
  #~ msgid "Enable responsive support for this advert."
2956
  #~ msgstr "広告の追加・編集管理"
language/adrotate-pl_PL.mo CHANGED
Binary file
language/adrotate-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-07-17 23:25+0800\n"
6
- "PO-Revision-Date: 2016-07-17 23:25+0800\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,111 +15,111 @@ 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.8.7\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:842
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
- #: adrotate-functions.php:845
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
- #: adrotate-functions.php:894
32
  msgid "Ad saved"
33
  msgstr ""
34
 
35
- #: adrotate-functions.php:898
36
  msgid "Group saved"
37
  msgstr ""
38
 
39
- #: adrotate-functions.php:902
40
  msgid "Ad(s) deleted"
41
  msgstr "Reklama usunięta"
42
 
43
- #: adrotate-functions.php:906
44
  msgid "Group deleted"
45
  msgstr "Grupa usunięta"
46
 
47
- #: adrotate-functions.php:910
48
  msgid "Ad(s) statistics reset"
49
  msgstr "Resetuj statystyki reklamy"
50
 
51
- #: adrotate-functions.php:914
52
  msgid "Ad(s) renewed"
53
  msgstr "Odnów reklamę"
54
 
55
- #: adrotate-functions.php:918
56
  msgid "Ad(s) deactivated"
57
  msgstr "Reklama wyłączona"
58
 
59
- #: adrotate-functions.php:922
60
  msgid "Ad(s) activated"
61
  msgstr "Reklama włączona"
62
 
63
- #: adrotate-functions.php:926
64
  msgid "Group including it's Ads deleted"
65
  msgstr "Grupa wraz z reklamami usunięta"
66
 
67
- #: adrotate-functions.php:930
68
  #, fuzzy
69
  msgid "Export created"
70
  msgstr "Reklama utworzona"
71
 
72
- #: adrotate-functions.php:935
73
  msgid "Settings saved"
74
  msgstr "Ustawienia zapisane"
75
 
76
- #: adrotate-functions.php:939
77
  msgid "Database optimized"
78
  msgstr "Baza danych zoptymalizowana"
79
 
80
- #: adrotate-functions.php:943
81
  msgid "Database repaired"
82
  msgstr "Baza danych naprawiona"
83
 
84
- #: adrotate-functions.php:947
85
  msgid "Ads evaluated and statuses have been corrected where required"
86
  msgstr "Oceny i statusy reklam zostały poprawione tam gdzie było to wymagane."
87
 
88
- #: adrotate-functions.php:951
89
  msgid "Empty database records removed"
90
  msgstr "Usunięto puste rekordy bazy danych"
91
 
92
- #: adrotate-functions.php:956
93
  msgid "Action prohibited"
94
  msgstr "Czynność zabroniona."
95
 
96
- #: adrotate-functions.php:960
97
  msgid ""
98
  "The ad was saved but has an issue which might prevent it from working "
99
  "properly. Review the colored ad."
100
  msgstr ""
101
 
102
- #: adrotate-functions.php:964
103
  msgid "No data found in selected time period"
104
  msgstr "Nie znaleziono żadnych wyników dla podanego przedziału czasowego."
105
 
106
- #: adrotate-functions.php:968
107
  msgid "Database can only be optimized or cleaned once every hour"
108
  msgstr "Bazadanych może być optymalizowana i czyszczona jedynie raz na godzinę"
109
 
110
- #: adrotate-functions.php:972
111
  msgid "Form can not be (partially) empty!"
112
  msgstr ""
113
 
114
- #: adrotate-functions.php:976
115
  msgid "No ads found."
116
  msgstr ""
117
 
118
- #: adrotate-functions.php:980
119
  msgid "Unexpected error"
120
  msgstr ""
121
 
122
- #: adrotate-manage-publisher.php:685
123
  msgid "AdRotate Advertiser"
124
  msgstr ""
125
 
@@ -200,7 +200,7 @@ msgstr ""
200
  msgid "An unknown error occured."
201
  msgstr "Pojawił się nieznany błąd."
202
 
203
- #: adrotate-output.php:652 adrotate-output.php:664
204
  #, php-format
205
  msgid "One advert is expired."
206
  msgid_plural "%1$s adverts expired!"
@@ -209,11 +209,10 @@ msgstr[1] ""
209
  msgstr[2] ""
210
 
211
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
212
- #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
213
  msgid "Check adverts"
214
  msgstr ""
215
 
216
- #: adrotate-output.php:655 adrotate-output.php:667
217
  #, php-format
218
  msgid "One advert expires soon."
219
  msgid_plural "%1$s adverts are almost expiring!"
@@ -221,7 +220,7 @@ msgstr[0] ""
221
  msgstr[1] ""
222
  msgstr[2] ""
223
 
224
- #: adrotate-output.php:659 adrotate-output.php:670
225
  #, php-format
226
  msgid "One advert with configuration errors."
227
  msgid_plural "%1$s adverts have configuration errors!"
@@ -229,233 +228,232 @@ msgstr[0] ""
229
  msgstr[1] ""
230
  msgstr[2] ""
231
 
232
- #: adrotate-output.php:675
233
  msgid ""
234
  "You have enable caching support but W3 Total Cache is not active on your "
235
  "site!"
236
  msgstr ""
237
 
238
- #: adrotate-output.php:678
239
  msgid ""
240
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
241
  "not set."
242
  msgstr ""
243
 
244
- #: adrotate-output.php:683
245
  msgid "Your AdRotate Banner folder is not writable or does not exist."
246
  msgstr ""
247
 
248
- #: adrotate-output.php:702
249
  msgid "one issue that requires"
250
  msgid_plural "several issues that require"
251
  msgstr[0] ""
252
  msgstr[1] ""
253
  msgstr[2] ""
254
 
255
- #: adrotate-output.php:723 dashboard/adrotatepro.php:99
256
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
257
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
258
- #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
259
- #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
260
- #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
261
- #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
262
  #: dashboard/settings/geotargeting.php:35
263
  #, fuzzy
264
  msgid "Buy now"
265
  msgstr "Kup"
266
 
267
- #: adrotate-output.php:724
268
  msgid ""
269
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
270
  "to the <strong>PRO</strong> version"
271
  msgstr ""
272
 
273
- #: adrotate-output.php:724
274
  #, php-format
275
  msgid ""
276
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
277
  msgstr ""
278
 
279
- #: adrotate-output.php:724
280
  msgid "Thank you for your purchase!"
281
  msgstr ""
282
 
283
- #: adrotate-output.php:750
284
  msgid "one plugin"
285
  msgid_plural "several plugins"
286
  msgstr[0] ""
287
  msgstr[1] ""
288
  msgstr[2] ""
289
 
290
- #: adrotate-output.php:785
291
  msgid ""
292
- "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
293
- "this menu. Check out the"
294
  msgstr ""
295
 
296
- #: adrotate-output.php:785
297
  msgid "manuals"
298
  msgstr "instrukcje"
299
 
300
- #: adrotate-output.php:785 adrotate-output.php:852
301
  msgid "and"
302
  msgstr ""
303
 
304
- #: adrotate-output.php:785
305
  msgid "forums"
306
  msgstr ""
307
 
308
- #: adrotate-output.php:815
309
  #, fuzzy
310
  msgid "Useful Links"
311
  msgstr "Użyteczne odnośniki."
312
 
313
- #: adrotate-output.php:816
314
  msgid "Useful links to learn more about AdRotate"
315
  msgstr ""
316
 
317
- #: adrotate-output.php:818
318
  msgid "AdRotate website"
319
  msgstr ""
320
 
321
- #: adrotate-output.php:819
322
  #, fuzzy
323
  msgid "Getting Started With AdRotate"
324
  msgstr "Więcej ustawień z AdRotate Pro"
325
 
326
- #: adrotate-output.php:820
327
  #, fuzzy
328
  msgid "AdRotate manuals"
329
  msgstr "Informacja AdRotate "
330
 
331
- #: adrotate-output.php:821
332
  #, fuzzy
333
  msgid "AdRotate Support Forum"
334
  msgstr "Sklep AdRotate"
335
 
336
- #: adrotate-output.php:844
337
- #, fuzzy
338
- msgid "Help AdRotate Grow"
339
- msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
340
 
341
- #: adrotate-output.php:845
342
- msgid "Follow Arnan on Facebook"
343
  msgstr ""
344
 
345
- #: adrotate-output.php:852
346
  msgid ""
347
- "A lot of users only think to review AdRotate when something goes wrong while "
348
- "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
349
  msgstr ""
350
 
351
- #: adrotate-output.php:852
352
- msgid "If you find AdRotate useful please leave your honest"
353
  msgstr ""
354
 
355
- #: adrotate-output.php:852
356
  msgid "rating"
357
  msgstr ""
358
 
359
- #: adrotate-output.php:852
360
  #, fuzzy
361
  msgid "review"
362
  msgstr ""
363
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
364
 
365
- #: adrotate-output.php:852
366
  msgid "on WordPress.org to help AdRotate grow in a positive way"
367
  msgstr ""
368
 
369
- #: adrotate-output.php:885 dashboard/settings/notifications.php:50
370
  #: dashboard/settings/notifications.php:80
371
  msgid "Available in AdRotate Pro"
372
  msgstr "Dostępne w wersji AdRotate Pro"
373
 
374
- #: adrotate-output.php:885
375
  msgid "More information..."
376
  msgstr "Więcej informacji"
377
 
378
- #: adrotate-output.php:886
379
  msgid "This feature is available in AdRotate Pro"
380
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
381
 
382
- #: adrotate-output.php:886
383
  msgid "Learn more"
384
  msgstr "Dowiedź się więcej"
385
 
386
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
387
- #: dashboard/publisher/adverts-edit.php:235
388
  msgid "January"
389
  msgstr "Styczeń "
390
 
391
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
392
- #: dashboard/publisher/adverts-edit.php:236
393
  msgid "February"
394
  msgstr "Luty"
395
 
396
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
397
- #: dashboard/publisher/adverts-edit.php:237
398
  msgid "March"
399
  msgstr "Marzec"
400
 
401
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
402
- #: dashboard/publisher/adverts-edit.php:238
403
  msgid "April"
404
  msgstr "Kwiecień"
405
 
406
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
407
- #: dashboard/publisher/adverts-edit.php:239
408
  msgid "May"
409
  msgstr "Maj"
410
 
411
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
412
- #: dashboard/publisher/adverts-edit.php:240
413
  msgid "June"
414
  msgstr "Czerwiec"
415
 
416
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
417
- #: dashboard/publisher/adverts-edit.php:241
418
  msgid "July"
419
  msgstr "Lipiec"
420
 
421
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
422
- #: dashboard/publisher/adverts-edit.php:242
423
  msgid "August"
424
  msgstr "Sierpień"
425
 
426
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
427
- #: dashboard/publisher/adverts-edit.php:243
428
  msgid "September"
429
  msgstr "Wrzesień"
430
 
431
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
432
- #: dashboard/publisher/adverts-edit.php:244
433
  msgid "October"
434
  msgstr "Pażdziernik"
435
 
436
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
437
- #: dashboard/publisher/adverts-edit.php:245
438
  msgid "November"
439
  msgstr "Listopad"
440
 
441
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
442
- #: dashboard/publisher/adverts-edit.php:246
443
  msgid "December"
444
  msgstr "Grudzień"
445
 
446
- #: adrotate-statistics.php:222
447
  msgid "Previous"
448
  msgstr "Poprzedni"
449
 
450
- #: adrotate-statistics.php:224
451
  msgid "This month"
452
  msgstr "Obecny miesiąc"
453
 
454
- #: adrotate-statistics.php:225
455
  msgid "Next"
456
  msgstr "Następny"
457
 
458
- #: adrotate-statistics.php:278
459
  msgid "No data to show!"
460
  msgstr "Brak danych !"
461
 
@@ -499,276 +497,57 @@ msgstr "ID:"
499
  msgid "Fill in the ID of the type you want to display!"
500
  msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
501
 
502
- #: adrotate.php:102
503
  msgid "General Info"
504
  msgstr "Informacje główne"
505
 
506
- #: adrotate.php:103
507
  msgid "AdRotate Pro"
508
  msgstr "AdRotate Pro"
509
 
510
- #: adrotate.php:104
511
- msgid "Manage Adverts"
512
- msgstr ""
513
-
514
- #: adrotate.php:105 dashboard/publisher/groups-main.php:12
515
- msgid "Manage Groups"
516
- msgstr "Zarządzaj grupami"
517
-
518
- #: adrotate.php:106 adrotate.php:369
519
- #, fuzzy
520
- msgid "Manage Schedules"
521
- msgstr "Zarządzaj"
522
 
523
- #: adrotate.php:107
524
- #, fuzzy
525
- msgid "Manage Media"
526
- msgstr "Media:"
527
 
528
- #: adrotate.php:108
529
  msgid "Settings"
530
  msgstr "Ustawienia"
531
 
532
- #: adrotate.php:128
533
  msgid "AdRotate Info"
534
  msgstr "Informacja AdRotate "
535
 
536
- #: adrotate.php:146
537
  msgid "AdRotate Professional"
538
  msgstr "AdRotate Professional"
539
 
540
- #: adrotate.php:186
541
  msgid "Advert Management"
542
  msgstr ""
543
 
544
- #: adrotate.php:244 adrotate.php:311 adrotate.php:364
545
  msgid "Manage"
546
  msgstr "Zarządzaj"
547
 
548
- #: adrotate.php:245 adrotate.php:312 adrotate.php:365
549
  msgid "Add New"
550
  msgstr "Dodaj nową"
551
 
552
- #: adrotate.php:305
553
  msgid "Group Management"
554
  msgstr "Zarządzanie grupą reklam"
555
 
556
- #: adrotate.php:314
557
  msgid "Report"
558
  msgstr "Raport"
559
 
560
- #: adrotate.php:360
561
- #, fuzzy
562
- msgid "Schedule Management available in AdRotate Pro"
563
- msgstr "Dostępne w wersji AdRotate Pro"
564
-
565
- #: adrotate.php:370
566
- msgid ""
567
- "Schedule management and multiple schedules per advert is available in "
568
- "AdRotate Pro."
569
- msgstr ""
570
-
571
- #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
572
- #: dashboard/publisher/adverts-main.php:114
573
- #: dashboard/publisher/groups-edit.php:71
574
- #: dashboard/publisher/groups-main.php:89
575
- #, fuzzy
576
- msgid "More information"
577
- msgstr "Więcej informacji"
578
-
579
- #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
580
- #: dashboard/publisher/adverts-error.php:19
581
- #: dashboard/publisher/adverts-main.php:20
582
- #: dashboard/publisher/groups-main.php:20
583
- msgid "Bulk Actions"
584
- msgstr "Działania masowe"
585
-
586
- #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
587
- #: dashboard/publisher/adverts-error.php:29
588
- #: dashboard/publisher/adverts-main.php:30
589
- #: dashboard/publisher/groups-main.php:24
590
- msgid "Go"
591
- msgstr "Idź"
592
-
593
- #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
594
- #: dashboard/publisher/adverts-error.php:39
595
- #: dashboard/publisher/adverts-main.php:39
596
- #: dashboard/publisher/groups-main.php:32
597
- msgid "ID"
598
- msgstr "ID"
599
-
600
- #: adrotate.php:388
601
- #, fuzzy
602
- msgid "Start"
603
- msgstr "Start / Koniec"
604
-
605
- #: adrotate.php:388
606
- #, fuzzy
607
- msgid "End"
608
- msgstr "Start / Koniec"
609
-
610
- #: adrotate.php:389
611
- msgid "Ads"
612
- msgstr "Reklamy"
613
-
614
- #: adrotate.php:391
615
- msgid "Max Impressions"
616
- msgstr "Maksymalna liczba wyświetleń"
617
-
618
- #: adrotate.php:392
619
- msgid "Max Clicks"
620
- msgstr "Maksymalna liczna kliknięć"
621
-
622
- #: adrotate.php:422
623
- #, fuzzy
624
- msgid "No schedules created yet!"
625
- msgstr "Nie utworzono jeszcze żadnych reklam!"
626
-
627
- #: adrotate.php:427
628
- #, fuzzy
629
- msgid "Easily manage your schedules from here with AdRotate Pro."
630
- msgstr "Więcej ustawień z AdRotate Pro"
631
-
632
- #: adrotate.php:427 adrotate.php:490
633
- #, fuzzy
634
- msgid "Upgrade today!"
635
- msgstr "Dziś"
636
-
637
- #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
638
- #: dashboard/publisher/groups-edit.php:383
639
- msgid "Expires soon."
640
- msgstr "Wygasa wkrótce."
641
-
642
- #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
643
- #: dashboard/publisher/groups-edit.php:384
644
- msgid "Has expired."
645
- msgstr "Wygasła."
646
-
647
- #: adrotate.php:452
648
- #, fuzzy
649
- msgid "Media Management available in AdRotate Pro"
650
- msgstr "Dostępne w wersji AdRotate Pro"
651
-
652
- #: adrotate.php:454
653
- msgid "Upload images to the AdRotate Pro banners folder from here."
654
- msgstr ""
655
-
656
- #: adrotate.php:454
657
- msgid ""
658
- "This is useful if you use responsive adverts with multiple images or have "
659
- "HTML5 adverts containing multiple files."
660
- msgstr ""
661
-
662
- #: adrotate.php:454
663
- #, fuzzy
664
- msgid "Media uploading and management is available in AdRotate Pro."
665
- msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
666
-
667
- #: adrotate.php:456
668
- msgid "Upload new file"
669
- msgstr ""
670
-
671
- #: adrotate.php:457
672
- msgid "Accepted files:"
673
- msgstr ""
674
-
675
- #: adrotate.php:457
676
- msgid "For HTML5 ads you can also upload html and javascript files."
677
- msgstr ""
678
-
679
- #: adrotate.php:457
680
- msgid "Maximum size is 512Kb."
681
- msgstr ""
682
-
683
- #: adrotate.php:457
684
- msgid "Important:"
685
- msgstr ""
686
-
687
- #: adrotate.php:457
688
- msgid ""
689
- "Make sure your file has no spaces or special characters in the name. Replace "
690
- "spaces with a - or _."
691
- msgstr ""
692
-
693
- #: adrotate.php:457
694
- msgid ""
695
- "If you remove spaces from filenames for HTML5 adverts also edit the html "
696
- "file so it knows about the changed name. For example for the javascript file."
697
- msgstr ""
698
-
699
- #: adrotate.php:460
700
- #, fuzzy
701
- msgid ""
702
- "For responsive adverts make sure the filename is in the following format; "
703
- "\"imagename.full.ext\". A full set of sized images is strongly recommended."
704
- msgstr ""
705
- "Wyślij obrazy do folderu banerów i upewnij się że pliki mają odpowiednie "
706
- "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
707
- "pełnego wachlarza rozmiarów.'"
708
-
709
- #: adrotate.php:461
710
- msgid ""
711
- "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
712
- "filename instead of \".full\" for the various viewports."
713
- msgstr ""
714
- "Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
715
- "\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
716
-
717
- #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
718
- #: dashboard/publisher/groups-edit.php:316
719
- msgid "Example:"
720
- msgstr "Przykład:"
721
-
722
- #: adrotate.php:462
723
- #, fuzzy
724
- msgid ""
725
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
726
- "for different viewports."
727
- msgstr ""
728
- "image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie w "
729
- "różnych widokach. Wymaga jQuery."
730
-
731
- #: adrotate.php:466
732
- msgid "Upload file"
733
- msgstr ""
734
-
735
- #: adrotate.php:466
736
- msgid "Click only once per file!"
737
- msgstr ""
738
-
739
- #: adrotate.php:469
740
- msgid "Available files in"
741
- msgstr ""
742
-
743
- #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
744
- #: dashboard/publisher/groups-main.php:33
745
- msgid "Name"
746
- msgstr "Nazwa"
747
-
748
- #: adrotate.php:475
749
- #, fuzzy
750
- msgid "Actions"
751
- msgstr "Działania masowe"
752
-
753
- #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
754
- #: adrotate.php:484 adrotate.php:485 adrotate.php:486
755
- #: dashboard/publisher/adverts-disabled.php:22
756
- #: dashboard/publisher/adverts-error.php:21
757
- #: dashboard/publisher/adverts-main.php:22
758
- msgid "Delete"
759
- msgstr "Usuń"
760
-
761
- #: adrotate.php:490
762
- msgid ""
763
- "Make sure the banner images are not in use by adverts when you delete them!"
764
- msgstr ""
765
-
766
- #: adrotate.php:490
767
- #, fuzzy
768
- msgid "Manage your banner folder from here with AdRotate Pro."
769
- msgstr "Więcej ustawień z AdRotate Pro"
770
-
771
- #: adrotate.php:516
772
  msgid "AdRotate Settings"
773
  msgstr "Ustawienia AdRotate"
774
 
@@ -797,8 +576,9 @@ msgstr ""
797
  msgid ""
798
  "Target mobile users with ease and show the right adverts to smartphones, "
799
  "tablets and computers. Mix and match as you please and offer adverts that "
800
- "suit the device. Create as many mobile adverts as you want without effort "
801
- "and with a few easy to use options they show up where you want them to!"
 
802
  msgstr ""
803
 
804
  #: dashboard/adrotatepro.php:34
@@ -825,39 +605,40 @@ msgid ""
825
  "forum. Get a solution (usually) within one business day."
826
  msgstr ""
827
 
828
- #: dashboard/adrotatepro.php:48 dashboard/info.php:119
829
  msgid "AdRotate is brought to you by"
830
  msgstr "Możesz koszystać z AdRotate dzięki"
831
 
832
- #: dashboard/adrotatepro.php:74
833
  msgid "Schedule all campaigns with ease"
834
  msgstr "Zaplanuj z łatwością wszystkie kampanie reklamowe"
835
 
836
- #: dashboard/adrotatepro.php:77
837
  msgid ""
838
  "Schedule your adverts and set up advertising campaigns based on dates you or "
839
- "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
840
- "You name it, AdRotate schedules it. This makes planning your revenue stream "
841
- "much more easy. You can set one or many schedules for adverts."
 
842
  msgstr ""
843
 
844
- #: dashboard/adrotatepro.php:81
845
  msgid "Avoid adblockers"
846
  msgstr ""
847
 
848
- #: dashboard/adrotatepro.php:84
849
  msgid ""
850
- "Try and avoid adblockers so you adverts get the exposure you want them to "
851
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
852
  "adverts are less likely to be removed. Of-course make sure you create your "
853
  "adverts smartly so these features reach their full potential!"
854
  msgstr ""
855
 
856
- #: dashboard/adrotatepro.php:88
857
  msgid "Stay up-to-date with notifications"
858
  msgstr ""
859
 
860
- #: dashboard/adrotatepro.php:91
861
  msgid ""
862
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
863
  "adverts expire or need your attention. Additionally, send push notifications "
@@ -865,89 +646,89 @@ msgid ""
865
  "or when advertisers create new adverts. Never miss an expiration date again."
866
  msgstr ""
867
 
868
- #: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
869
- #: dashboard/info.php:78
870
  msgid "Buy AdRotate Professional"
871
  msgstr "Kup AdRotate Pro"
872
 
873
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
874
  msgid "Single License"
875
  msgstr ""
876
 
877
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
878
  msgid "For one WordPress installation."
879
  msgstr "dla jednej instalcji Wordpressa"
880
 
881
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
882
- #: dashboard/info.php:83 dashboard/info.php:90
883
  msgid "Duo License"
884
  msgstr "Podwójna licencja"
885
 
886
- #: dashboard/adrotatepro.php:100 dashboard/info.php:83
887
  msgid "For two WordPress installations."
888
  msgstr "dla dwóch instalcji Wordpressa"
889
 
890
- #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
891
- #: dashboard/info.php:84 dashboard/info.php:91
892
  msgid "Multi License"
893
  msgstr "Multi licencja"
894
 
895
- #: dashboard/adrotatepro.php:101 dashboard/info.php:84
896
  msgid " For up to five WordPress installations."
897
  msgstr "dla 5 instalacji Wordpessa."
898
 
899
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
900
- #: dashboard/info.php:85 dashboard/info.php:92
901
  msgid "Developer License"
902
  msgstr "Licencja Programisty"
903
 
904
- #: dashboard/adrotatepro.php:102 dashboard/info.php:85
905
  msgid "Unlimited WordPress installations and/or networks."
906
  msgstr ""
907
 
908
- #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
909
- #: dashboard/info.php:86 dashboard/info.php:94
910
  msgid "Compare licenses"
911
  msgstr "Porównaj licencje."
912
 
913
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
914
  msgid "Not sure which license is for you? Compare them..."
915
  msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
916
 
917
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
918
  msgid "All Licenses"
919
  msgstr "Wszystkie licencje"
920
 
921
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
922
  msgid "Lifetime License"
923
  msgstr ""
924
 
925
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
926
  msgid "Single installation."
927
  msgstr ""
928
 
929
- #: dashboard/adrotatepro.php:112 dashboard/info.php:90
930
  msgid "Up to 2 installations."
931
  msgstr ""
932
 
933
- #: dashboard/adrotatepro.php:113 dashboard/info.php:91
934
  msgid "Up to 10 installations."
935
  msgstr ""
936
 
937
- #: dashboard/adrotatepro.php:114 dashboard/info.php:92
938
  msgid "Up to 25 installations or multisite networks."
939
  msgstr ""
940
 
941
- #: dashboard/adrotatepro.php:115 dashboard/info.php:93
942
  msgid ""
943
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
944
  msgstr ""
945
 
946
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
947
  msgid "Not sure which license is for you?"
948
  msgstr ""
949
 
950
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
951
  msgid "Compare Licenses"
952
  msgstr ""
953
 
@@ -963,38 +744,41 @@ msgstr "Twoje ustawienia"
963
  msgid "Adverts that need you"
964
  msgstr "Reklamy wymagające uwagi"
965
 
966
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
967
- #: dashboard/publisher/groups-main.php:34
968
- msgid "Adverts"
969
- msgstr "Reklamy"
970
-
971
  #: dashboard/info.php:38
972
  msgid "(Almost) Expired"
973
  msgstr "(Wkrótce) wygasa "
974
 
975
- #: dashboard/info.php:41
976
- msgid "Groups"
977
- msgstr "Grupy"
978
-
979
  #: dashboard/info.php:42
980
  msgid "Have errors"
981
  msgstr "Posiada błędy"
982
 
983
- #: dashboard/info.php:48
984
- msgid "Support AdRotate"
985
- msgstr "Wesprzyj AdRotate"
986
-
987
- #: dashboard/info.php:55
988
  msgid ""
989
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
990
  "for updates about me and my plugins. Thank you!"
991
  msgstr ""
992
 
993
- #: dashboard/info.php:105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
994
  msgid "AdRotate News"
995
  msgstr ""
996
 
997
- #: dashboard/info.php:123
998
  msgid ""
999
  "I am a digital nomad in the Philippines. Click on my name to find out more "
1000
  "about me and what I am doing. Thanks for your support and for using my "
@@ -1005,17 +789,44 @@ msgstr ""
1005
  msgid "Disabled Adverts"
1006
  msgstr ""
1007
 
 
 
 
 
 
 
 
1008
  #: dashboard/publisher/adverts-disabled.php:21
1009
- #: dashboard/publisher/adverts-edit.php:170
1010
  msgid "Activate"
1011
  msgstr "Aktywuj"
1012
 
 
 
 
 
 
 
1013
  #: dashboard/publisher/adverts-disabled.php:23
1014
  #: dashboard/publisher/adverts-error.php:22
1015
  #: dashboard/publisher/adverts-main.php:23
1016
  msgid "Reset stats"
1017
  msgstr "Resetuj statystyki"
1018
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1019
  #: dashboard/publisher/adverts-disabled.php:36
1020
  #: dashboard/publisher/adverts-error.php:40
1021
  #: dashboard/publisher/adverts-main.php:40
@@ -1023,7 +834,7 @@ msgid "Start / End"
1023
  msgstr "Start / Koniec"
1024
 
1025
  #: dashboard/publisher/adverts-disabled.php:37
1026
- #: dashboard/publisher/adverts-edit.php:110
1027
  #: dashboard/publisher/adverts-error.php:41
1028
  #: dashboard/publisher/adverts-main.php:41
1029
  msgid "Title"
@@ -1031,7 +842,7 @@ msgstr "tytuł"
1031
 
1032
  #: dashboard/publisher/adverts-disabled.php:38
1033
  #: dashboard/publisher/adverts-main.php:44
1034
- #: dashboard/publisher/groups-edit.php:329
1035
  #: dashboard/publisher/groups-main.php:36
1036
  msgid "Shown"
1037
  msgstr "Wyświetlane"
@@ -1040,7 +851,7 @@ msgstr "Wyświetlane"
1040
  #: dashboard/publisher/adverts-main.php:46
1041
  #: dashboard/publisher/adverts-report.php:36
1042
  #: dashboard/publisher/adverts-report.php:57
1043
- #: dashboard/publisher/groups-edit.php:330
1044
  #: dashboard/publisher/groups-main.php:38
1045
  #: dashboard/publisher/groups-report.php:37
1046
  #: dashboard/publisher/groups-report.php:58
@@ -1056,54 +867,54 @@ msgstr "Kliknięcia"
1056
  msgid "CTR"
1057
  msgstr "CTR"
1058
 
1059
- #: dashboard/publisher/adverts-disabled.php:74
1060
  #: dashboard/publisher/adverts-error.php:64
1061
- #: dashboard/publisher/adverts-main.php:87
1062
  #: dashboard/publisher/groups-main.php:70
1063
  msgid "Edit"
1064
  msgstr "Edytuj"
1065
 
1066
- #: dashboard/publisher/adverts-disabled.php:74
1067
  #: dashboard/publisher/adverts-error.php:64
1068
- #: dashboard/publisher/adverts-main.php:87
1069
  #: dashboard/publisher/groups-main.php:70
1070
  msgid "Stats"
1071
  msgstr "Statystyki"
1072
 
1073
- #: dashboard/publisher/adverts-disabled.php:74
1074
  #: dashboard/publisher/adverts-error.php:64
1075
- #: dashboard/publisher/adverts-main.php:87
1076
  #, fuzzy
1077
  msgid "Groups:"
1078
  msgstr "Grupy"
1079
 
1080
- #: dashboard/publisher/adverts-edit.php:48
1081
  msgid "The AdCode cannot be empty!"
1082
  msgstr "Kod reklamy nie może być pusty!"
1083
 
1084
- #: dashboard/publisher/adverts-edit.php:51
1085
  msgid ""
1086
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1087
  "use!"
1088
  msgstr ""
1089
 
1090
- #: dashboard/publisher/adverts-edit.php:54
1091
  msgid ""
1092
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1093
  "use!"
1094
  msgstr ""
1095
 
1096
- #: dashboard/publisher/adverts-edit.php:57
1097
  msgid ""
1098
  "There is a problem saving the image. Please reset your image and re-save the "
1099
  "ad!"
1100
  msgstr ""
1101
 
1102
- #: dashboard/publisher/adverts-edit.php:60
1103
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1104
  msgstr ""
1105
 
1106
- #: dashboard/publisher/adverts-edit.php:65
1107
  msgid ""
1108
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1109
  "the ad!"
@@ -1111,77 +922,77 @@ msgstr ""
1111
  "AdRotate nie może znaleść błedu ale reklama jest oznaczona jako zawierajaca "
1112
  "błędy. Sprobuj zapisać ją ponownie!"
1113
 
1114
- #: dashboard/publisher/adverts-edit.php:68
1115
  msgid "This ad is expired and currently not shown on your website!"
1116
  msgstr "Ta reklama wygasła i obecnie nie jest wyświetlana na stronie!"
1117
 
1118
- #: dashboard/publisher/adverts-edit.php:71
1119
  msgid "The ad will expire in less than 2 days!"
1120
  msgstr "Ta reklama wygaśnie za 2 dni!"
1121
 
1122
- #: dashboard/publisher/adverts-edit.php:74
1123
  msgid "This ad will expire in less than 7 days!"
1124
  msgstr "Ta reklama wygaśnie za 7 dni!"
1125
 
1126
- #: dashboard/publisher/adverts-edit.php:77
1127
  msgid "This ad has been disabled and does not rotate on your site!"
1128
  msgstr "Reklama został wyłączona i nie jest wyświetlana na stronie!"
1129
 
1130
- #: dashboard/publisher/adverts-edit.php:102
1131
  msgid "New Advert"
1132
  msgstr "Nowa reklama"
1133
 
1134
- #: dashboard/publisher/adverts-edit.php:104
1135
  msgid "Edit Advert"
1136
  msgstr "Edytuj reklamę"
1137
 
1138
- #: dashboard/publisher/adverts-edit.php:116
1139
  msgid "AdCode"
1140
  msgstr ""
1141
 
1142
- #: dashboard/publisher/adverts-edit.php:121
1143
  msgid "Basic Examples:"
1144
  msgstr "Proste przykłady:"
1145
 
1146
- #: dashboard/publisher/adverts-edit.php:128
1147
  msgid "Useful tags"
1148
  msgstr ""
1149
 
1150
- #: dashboard/publisher/adverts-edit.php:130
1151
  msgid "Insert the advert ID Number."
1152
  msgstr ""
1153
 
1154
- #: dashboard/publisher/adverts-edit.php:130
1155
  msgid "Required when selecting a asset below."
1156
  msgstr ""
1157
 
1158
- #: dashboard/publisher/adverts-edit.php:130
1159
  msgid "Insert the advert name."
1160
  msgstr ""
1161
 
1162
- #: dashboard/publisher/adverts-edit.php:130
1163
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1164
  msgstr ""
1165
 
1166
- #: dashboard/publisher/adverts-edit.php:130
1167
  msgid "Add inside the <a> tag to open advert in a new window."
1168
  msgstr ""
1169
 
1170
- #: dashboard/publisher/adverts-edit.php:130
1171
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1172
  msgstr ""
1173
 
1174
- #: dashboard/publisher/adverts-edit.php:130
1175
  msgid ""
1176
  "Place the cursor in your AdCode where you want to add any of these tags and "
1177
  "click to add it."
1178
  msgstr ""
1179
 
1180
- #: dashboard/publisher/adverts-edit.php:135
1181
  msgid "Preview"
1182
  msgstr "Podgląd"
1183
 
1184
- #: dashboard/publisher/adverts-edit.php:138
1185
  msgid ""
1186
  "Note: While this preview is an accurate one, it might look different then it "
1187
  "does on the website."
@@ -1189,42 +1000,42 @@ msgstr ""
1189
  "Uwaga: Podczas podglądu reklama może wygląać inaczej, to nie na stronie "
1190
  "internetowej."
1191
 
1192
- #: dashboard/publisher/adverts-edit.php:139
1193
  msgid ""
1194
  "This is because of CSS differences. Your themes CSS file is not active here!"
1195
  msgstr ""
1196
  "To wynika z różnic w Kaskadowych arkuszach stylu CSS. Twój szablon nie "
1197
  "działa w tym pliku!."
1198
 
1199
- #: dashboard/publisher/adverts-edit.php:144
1200
  msgid "Banner asset"
1201
  msgstr ""
1202
 
1203
- #: dashboard/publisher/adverts-edit.php:147
1204
  msgid "WordPress media:"
1205
  msgstr ""
1206
 
1207
- #: dashboard/publisher/adverts-edit.php:147
1208
  msgid "Select Banner"
1209
  msgstr "Wybierz baner:"
1210
 
1211
- #: dashboard/publisher/adverts-edit.php:149
1212
  msgid "- OR -"
1213
  msgstr "--albo-"
1214
 
1215
- #: dashboard/publisher/adverts-edit.php:151
1216
  msgid "Banner folder:"
1217
  msgstr "Folder banerów:"
1218
 
1219
- #: dashboard/publisher/adverts-edit.php:152
1220
  msgid "No image selected"
1221
  msgstr "Nie wybrano żadnego obrazu"
1222
 
1223
- #: dashboard/publisher/adverts-edit.php:156
1224
  msgid "Use %asset% in the adcode instead of the file path."
1225
  msgstr ""
1226
 
1227
- #: dashboard/publisher/adverts-edit.php:156
1228
  msgid ""
1229
  "Use either the text field or the dropdown. If the textfield has content that "
1230
  "field has priority."
@@ -1232,32 +1043,32 @@ msgstr ""
1232
  "Skorzystaj z pola tekstowego lub listy rozwijanej. Jeśli pole tekstowe "
1233
  "zawiera treści, te pole ma pierwszeństwo."
1234
 
1235
- #: dashboard/publisher/adverts-edit.php:161
1236
  #: dashboard/settings/statistics.php:17
1237
  msgid "Statistics"
1238
  msgstr "Statystyki"
1239
 
1240
- #: dashboard/publisher/adverts-edit.php:163
1241
  msgid "Enable click and impression tracking for this advert."
1242
  msgstr ""
1243
 
1244
- #: dashboard/publisher/adverts-edit.php:164
1245
  msgid ""
1246
  "Note: Clicktracking does not work for Javascript adverts such as those "
1247
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1248
  "always supported."
1249
  msgstr ""
1250
 
1251
- #: dashboard/publisher/adverts-edit.php:174
1252
  msgid "Yes, this ad will be used"
1253
  msgstr "Uruchom ta reklamę"
1254
 
1255
- #: dashboard/publisher/adverts-edit.php:175
1256
  msgid "No, do not show this ad anywhere"
1257
  msgstr "Niepokazuj tej reklamy."
1258
 
1259
- #: dashboard/publisher/adverts-edit.php:182
1260
- #: dashboard/publisher/adverts-main.php:114
1261
  #: dashboard/publisher/groups-edit.php:71
1262
  #: dashboard/publisher/groups-main.php:89
1263
  #, fuzzy
@@ -1265,283 +1076,281 @@ msgid "Get more features with AdRotate Pro."
1265
  msgstr "Więcej ustawień z AdRotate Pro"
1266
 
1267
  #: dashboard/publisher/adverts-edit.php:185
1268
- #: dashboard/publisher/adverts-edit.php:285
1269
- #: dashboard/publisher/adverts-edit.php:408
1270
- #: dashboard/publisher/adverts-edit.php:449
 
 
 
 
 
 
 
 
1271
  msgid "Save Advert"
1272
  msgstr "Zapisz reklamę"
1273
 
1274
- #: dashboard/publisher/adverts-edit.php:186
1275
- #: dashboard/publisher/adverts-edit.php:286
1276
- #: dashboard/publisher/adverts-edit.php:409
1277
- #: dashboard/publisher/adverts-edit.php:450
1278
  #: dashboard/publisher/groups-edit.php:150
1279
- #: dashboard/publisher/groups-edit.php:297
1280
- #: dashboard/publisher/groups-edit.php:389
1281
  msgid "Cancel"
1282
  msgstr "Anuluj"
1283
 
1284
- #: dashboard/publisher/adverts-edit.php:189
1285
- #: dashboard/publisher/adverts-edit.php:391
1286
  #: dashboard/publisher/groups-edit.php:132
1287
- #: dashboard/publisher/groups-edit.php:279
1288
  msgid "Usage"
1289
  msgstr "Użycie"
1290
 
1291
- #: dashboard/publisher/adverts-edit.php:193
1292
- #: dashboard/publisher/adverts-edit.php:395
1293
  #: dashboard/publisher/groups-edit.php:136
1294
- #: dashboard/publisher/groups-edit.php:283
 
 
1295
  msgid "Widget"
1296
  msgstr ""
1297
 
1298
- #: dashboard/publisher/adverts-edit.php:194
1299
- #: dashboard/publisher/adverts-edit.php:396
1300
  msgid ""
1301
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1302
  "and select the advert or the group the advert is in."
1303
  msgstr ""
1304
 
1305
- #: dashboard/publisher/adverts-edit.php:197
1306
- #: dashboard/publisher/adverts-edit.php:399
1307
  #: dashboard/publisher/groups-edit.php:140
1308
- #: dashboard/publisher/groups-edit.php:287
1309
  msgid "In a post or page"
1310
  msgstr ""
1311
 
1312
- #: dashboard/publisher/adverts-edit.php:199
1313
- #: dashboard/publisher/adverts-edit.php:401
1314
  #: dashboard/publisher/groups-edit.php:142
1315
- #: dashboard/publisher/groups-edit.php:289
1316
  msgid "Directly in a theme"
1317
  msgstr ""
1318
 
1319
- #: dashboard/publisher/adverts-edit.php:205
1320
  msgid "Schedule your advert"
1321
  msgstr ""
1322
 
1323
- #: dashboard/publisher/adverts-edit.php:209
1324
  msgid "Start date (day/month/year)"
1325
  msgstr ""
1326
 
1327
- #: dashboard/publisher/adverts-edit.php:230
1328
  msgid "End date (day/month/year)"
1329
  msgstr ""
1330
 
1331
- #: dashboard/publisher/adverts-edit.php:253
1332
  msgid "Start time (hh:mm)"
1333
  msgstr ""
1334
 
1335
- #: dashboard/publisher/adverts-edit.php:260
1336
  msgid "End time (hh:mm)"
1337
  msgstr ""
1338
 
1339
- #: dashboard/publisher/adverts-edit.php:270
1340
  msgid "Maximum Clicks"
1341
  msgstr ""
1342
 
1343
- #: dashboard/publisher/adverts-edit.php:271
1344
- #: dashboard/publisher/adverts-edit.php:273
1345
  msgid "Leave empty or 0 to skip this."
1346
  msgstr "Pozostaw puste albo wpisz 0 ."
1347
 
1348
- #: dashboard/publisher/adverts-edit.php:272
1349
  msgid "Maximum Impressions"
1350
  msgstr ""
1351
 
1352
- #: dashboard/publisher/adverts-edit.php:277
1353
  msgid "Important"
1354
  msgstr ""
1355
 
1356
- #: dashboard/publisher/adverts-edit.php:278
1357
  msgid ""
1358
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1359
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1360
  "14:00 hours. 6AM is 6:00 hours."
1361
  msgstr ""
1362
 
1363
- #: dashboard/publisher/adverts-edit.php:282
1364
  msgid ""
1365
  "Create multiple and more advanced schedules for each advert with AdRotate "
1366
  "Pro."
1367
  msgstr ""
1368
 
1369
- #: dashboard/publisher/adverts-edit.php:282
1370
- #: dashboard/publisher/adverts-edit.php:345
1371
- #: dashboard/publisher/adverts-edit.php:389
1372
- #: dashboard/publisher/groups-edit.php:196
1373
  #, fuzzy
1374
  msgid "Upgrade today"
1375
  msgstr "Dziś"
1376
 
1377
- #: dashboard/publisher/adverts-edit.php:289
1378
  #: dashboard/publisher/groups-edit.php:153
1379
  msgid "Advanced"
1380
  msgstr "Zaawansowane"
1381
 
1382
- #: dashboard/publisher/adverts-edit.php:290
1383
- msgid "Everything below is optional."
1384
- msgstr "Wszystkie opcje poniżej są opcjonalne."
1385
-
1386
- #: dashboard/publisher/adverts-edit.php:290
1387
  msgid "Available in AdRotate Pro!"
1388
  msgstr ""
1389
 
1390
- #: dashboard/publisher/adverts-edit.php:295
1391
  #: dashboard/publisher/adverts-main.php:42
1392
- #: dashboard/publisher/groups-edit.php:332
1393
  msgid "Weight"
1394
  msgstr "Waga"
1395
 
1396
- #: dashboard/publisher/adverts-edit.php:298
1397
  msgid "Few impressions"
1398
  msgstr ""
1399
 
1400
- #: dashboard/publisher/adverts-edit.php:303
1401
  msgid "Less than average"
1402
  msgstr "Mniej niż średnia"
1403
 
1404
- #: dashboard/publisher/adverts-edit.php:308
1405
  msgid "Normal impressions"
1406
  msgstr ""
1407
 
1408
- #: dashboard/publisher/adverts-edit.php:313
1409
  msgid "More than average"
1410
  msgstr "Więcej niż średnia"
1411
 
1412
- #: dashboard/publisher/adverts-edit.php:318
1413
  msgid "Many impressions"
1414
  msgstr ""
1415
 
1416
- #: dashboard/publisher/adverts-edit.php:323
1417
  msgid "Mobile"
1418
  msgstr ""
1419
 
1420
- #: dashboard/publisher/adverts-edit.php:325
1421
  msgid "Computers"
1422
  msgstr ""
1423
 
1424
- #: dashboard/publisher/adverts-edit.php:328
1425
  msgid "Smartphones"
1426
  msgstr ""
1427
 
1428
- #: dashboard/publisher/adverts-edit.php:331
1429
  msgid "Tablets"
1430
  msgstr ""
1431
 
1432
- #: dashboard/publisher/adverts-edit.php:334
1433
  msgid ""
1434
  "Also enable mobile support in the group this advert goes in or these are "
1435
  "ignored."
1436
  msgstr ""
1437
 
1438
- #: dashboard/publisher/adverts-edit.php:338
1439
- #: dashboard/publisher/groups-edit.php:190
1440
- msgid "Sortorder"
 
1441
  msgstr ""
1442
 
1443
- #: dashboard/publisher/adverts-edit.php:340
1444
- #: dashboard/publisher/groups-edit.php:192
1445
- msgid "For administrative purposes set a sortorder."
1446
- msgstr "Dla celów administracyjnych ustaw sortowanie."
1447
 
1448
- #: dashboard/publisher/adverts-edit.php:340
1449
- msgid "Leave empty or 0 to skip this. Will default to ad id."
1450
  msgstr ""
1451
- "Pozostaw puste albo wpisz 0 by pominąć te ustawienia. Domyślnie ID reklamy."
1452
 
1453
- #: dashboard/publisher/adverts-edit.php:345
1454
- msgid ""
1455
- "With AdRotate Pro you can easily select which devices the advert should show "
1456
- "on!"
1457
  msgstr ""
1458
 
1459
- #: dashboard/publisher/adverts-edit.php:347
1460
- msgid "Geo Targeting in AdRotate Pro"
1461
  msgstr ""
1462
 
1463
- #: dashboard/publisher/adverts-edit.php:348
1464
  msgid ""
1465
- "Assign the advert to a group and enable that group to use Geo Targeting."
 
1466
  msgstr ""
1467
 
1468
- #: dashboard/publisher/adverts-edit.php:352
1469
- msgid "Cities/States"
1470
- msgstr ""
 
 
1471
 
1472
- #: dashboard/publisher/adverts-edit.php:355
1473
  msgid ""
1474
- "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1475
- "states ISO codes are supported)"
 
 
 
1476
  msgstr ""
1477
 
1478
- #: dashboard/publisher/adverts-edit.php:355
1479
  msgid ""
1480
  "AdRotate does not check the validity of names so make sure you spell them "
1481
  "correctly!"
1482
  msgstr ""
1483
 
1484
- #: dashboard/publisher/adverts-edit.php:359
1485
- msgid "Countries"
1486
- msgstr ""
1487
-
1488
- #: dashboard/publisher/adverts-edit.php:384
1489
- msgid "Select the countries you want the adverts to show in."
1490
- msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
1491
-
1492
- #: dashboard/publisher/adverts-edit.php:384
1493
- msgid "Cities take priority and will be filtered first."
1494
- msgstr "Miasta mają pierwszeństwo i będą filtrowane jaki pierwsze."
1495
-
1496
- #: dashboard/publisher/adverts-edit.php:389
1497
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1498
  msgstr ""
1499
 
1500
- #: dashboard/publisher/adverts-edit.php:413
1501
  msgid "Select Groups"
1502
  msgstr "Wybierz grupy"
1503
 
1504
- #: dashboard/publisher/adverts-edit.php:418
1505
  msgid "ID - Name"
1506
  msgstr "ID - Nazwa"
1507
 
1508
- #: dashboard/publisher/adverts-edit.php:428
1509
  #: dashboard/publisher/groups-main.php:60
1510
  #: dashboard/settings/geotargeting.php:49
1511
  msgid "Default"
1512
  msgstr "Domyślny"
1513
 
1514
- #: dashboard/publisher/adverts-edit.php:429
1515
  #: dashboard/publisher/groups-main.php:61
1516
  msgid "Dynamic"
1517
  msgstr "Dynamiczny"
1518
 
1519
- #: dashboard/publisher/adverts-edit.php:429
1520
  #: dashboard/publisher/groups-main.php:61
1521
  msgid "second rotation"
1522
  msgstr "drugi obrót"
1523
 
1524
- #: dashboard/publisher/adverts-edit.php:430
1525
  #: dashboard/publisher/groups-main.php:62
1526
  msgid "Block"
1527
  msgstr "Blok"
1528
 
1529
- #: dashboard/publisher/adverts-edit.php:430
1530
  #: dashboard/publisher/groups-main.php:62
1531
  msgid "grid"
1532
  msgstr "siatka"
1533
 
1534
- #: dashboard/publisher/adverts-edit.php:431
1535
- #: dashboard/publisher/groups-edit.php:198
1536
  #: dashboard/publisher/groups-main.php:63
1537
  msgid "Post Injection"
1538
  msgstr "Umieszczanie we wpisach"
1539
 
1540
- #: dashboard/publisher/adverts-edit.php:432
1541
  msgid "Geolocation"
1542
  msgstr "Geolokalizacja"
1543
 
1544
- #: dashboard/publisher/adverts-edit.php:438
1545
  #: dashboard/publisher/groups-edit.php:57
1546
  #: dashboard/publisher/groups-main.php:70
1547
  msgid "Mode"
@@ -1582,10 +1391,20 @@ msgid "For 7 days"
1582
  msgstr "Na 7 dni"
1583
 
1584
  #: dashboard/publisher/adverts-error.php:71
1585
- #: dashboard/publisher/groups-edit.php:382
1586
  msgid "Configuration errors."
1587
  msgstr "Błedy konfiguracji."
1588
 
 
 
 
 
 
 
 
 
 
 
1589
  #: dashboard/publisher/adverts-main.php:12
1590
  msgid "Active Adverts"
1591
  msgstr ""
@@ -1602,7 +1421,7 @@ msgstr "Eksportuj ustawienia"
1602
  msgid "Today"
1603
  msgstr "Dziś"
1604
 
1605
- #: dashboard/publisher/adverts-main.php:109
1606
  msgid "No adverts created yet!"
1607
  msgstr ""
1608
 
@@ -1656,6 +1475,11 @@ msgstr "Nowa grupa"
1656
  msgid "Edit Group"
1657
  msgstr "Edytuj grupę"
1658
 
 
 
 
 
 
1659
  #: dashboard/publisher/groups-edit.php:60
1660
  msgid "Default - Show one ad at a time"
1661
  msgstr "Domyśłne - pokazuj jedną na raz"
@@ -1743,15 +1567,15 @@ msgstr ""
1743
  "Domyślnie 6."
1744
 
1745
  #: dashboard/publisher/groups-edit.php:137
1746
- #: dashboard/publisher/groups-edit.php:284
1747
  msgid ""
1748
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1749
  "Adverts\" and enter ID"
1750
  msgstr ""
1751
 
1752
  #: dashboard/publisher/groups-edit.php:149
1753
- #: dashboard/publisher/groups-edit.php:296
1754
- #: dashboard/publisher/groups-edit.php:388
1755
  msgid "Save Group"
1756
  msgstr "Zapisz grupę"
1757
 
@@ -1806,11 +1630,6 @@ msgid ""
1806
  "setting. Not every theme supports this feature."
1807
  msgstr ""
1808
 
1809
- #: dashboard/publisher/groups-edit.php:180
1810
- #: dashboard/settings/advertisers.php:38
1811
- msgid "Geo Targeting"
1812
- msgstr "Geo Targeting"
1813
-
1814
  #: dashboard/publisher/groups-edit.php:181
1815
  msgid "Enable Geo Targeting for this group."
1816
  msgstr ""
@@ -1833,146 +1652,130 @@ msgstr ""
1833
  msgid "Do not forget to put at least one mobile advert in this group."
1834
  msgstr ""
1835
 
1836
- #: dashboard/publisher/groups-edit.php:192
1837
- msgid "Leave empty or 0 to skip this. Will default to group id."
1838
- msgstr ""
1839
- "Pozostaw puste albo wpisz 0 by ominąc tą opcje. Domyślnie dla ID grupy."
1840
-
1841
- #: dashboard/publisher/groups-edit.php:196
1842
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1843
  msgstr ""
1844
 
1845
- #: dashboard/publisher/groups-edit.php:201
1846
- msgid "In categories?"
1847
- msgstr ""
1848
-
1849
- #: dashboard/publisher/groups-edit.php:205
1850
- #: dashboard/publisher/groups-edit.php:243
1851
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1852
  msgid "Disabled"
1853
  msgstr "Wyłącz"
1854
 
1855
  #: dashboard/publisher/groups-edit.php:206
1856
- #: dashboard/publisher/groups-edit.php:244
1857
  msgid "Before content"
1858
  msgstr "Przed treścią"
1859
 
1860
  #: dashboard/publisher/groups-edit.php:207
1861
- #: dashboard/publisher/groups-edit.php:245
1862
  msgid "After content"
1863
  msgstr "Po treści"
1864
 
1865
  #: dashboard/publisher/groups-edit.php:208
1866
- #: dashboard/publisher/groups-edit.php:246
1867
  msgid "Before and after content"
1868
  msgstr "Przed i po treści"
1869
 
1870
  #: dashboard/publisher/groups-edit.php:209
1871
- #: dashboard/publisher/groups-edit.php:247
1872
  msgid "Inside the content..."
1873
  msgstr ""
1874
 
1875
  #: dashboard/publisher/groups-edit.php:215
1876
- #: dashboard/publisher/groups-edit.php:253
1877
  msgid "after the middle paragraph"
1878
  msgstr ""
1879
 
1880
  #: dashboard/publisher/groups-edit.php:216
1881
- #: dashboard/publisher/groups-edit.php:254
1882
  msgid "after the 1st paragraph"
1883
  msgstr ""
1884
 
1885
  #: dashboard/publisher/groups-edit.php:217
1886
- #: dashboard/publisher/groups-edit.php:255
1887
  msgid "after the 2nd paragraph"
1888
  msgstr ""
1889
 
1890
  #: dashboard/publisher/groups-edit.php:218
1891
- #: dashboard/publisher/groups-edit.php:256
1892
  msgid "after the 3rd paragraph"
1893
  msgstr ""
1894
 
1895
  #: dashboard/publisher/groups-edit.php:219
1896
- #: dashboard/publisher/groups-edit.php:257
1897
  msgid "after the 4th paragraph"
1898
  msgstr ""
1899
 
1900
  #: dashboard/publisher/groups-edit.php:220
1901
- #: dashboard/publisher/groups-edit.php:258
1902
  msgid "after the 5th paragraph"
1903
  msgstr ""
1904
 
1905
  #: dashboard/publisher/groups-edit.php:221
1906
- #: dashboard/publisher/groups-edit.php:259
1907
  msgid "after the 6th paragraph"
1908
  msgstr ""
1909
 
1910
  #: dashboard/publisher/groups-edit.php:222
1911
- #: dashboard/publisher/groups-edit.php:260
1912
  msgid "after the 7th paragraph"
1913
  msgstr ""
1914
 
1915
  #: dashboard/publisher/groups-edit.php:223
1916
- #: dashboard/publisher/groups-edit.php:261
1917
  msgid "after the 8th paragraph"
1918
  msgstr ""
1919
 
1920
- #: dashboard/publisher/groups-edit.php:229
1921
- msgid "Which categories?"
1922
- msgstr "Która kategoria?"
1923
-
1924
- #: dashboard/publisher/groups-edit.php:234
1925
- msgid "Click the categories posts you want the adverts to show in."
1926
- msgstr "Wybierz kategorie wpisów na których chcesz wyświetlać reklamy."
1927
-
1928
  #: dashboard/publisher/groups-edit.php:239
1929
- msgid "In pages?"
1930
  msgstr ""
1931
 
1932
- #: dashboard/publisher/groups-edit.php:267
1933
- msgid "Which pages?"
1934
- msgstr "Które strony?"
1935
-
1936
- #: dashboard/publisher/groups-edit.php:272
1937
- msgid "Click the pages you want the adverts to show in."
1938
- msgstr "Wybierz strony na których chcesz wyświetlać reklamy."
1939
-
1940
- #: dashboard/publisher/groups-edit.php:300
1941
  msgid "Wrapper code"
1942
  msgstr "Kod wrappera"
1943
 
1944
- #: dashboard/publisher/groups-edit.php:301
1945
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1946
  msgstr ""
1947
 
1948
- #: dashboard/publisher/groups-edit.php:305
1949
  msgid "Before advert"
1950
  msgstr ""
1951
 
1952
- #: dashboard/publisher/groups-edit.php:309
 
 
 
 
 
1953
  msgid "Options:"
1954
  msgstr "Opcje:"
1955
 
1956
- #: dashboard/publisher/groups-edit.php:313
1957
  msgid "After advert"
1958
  msgstr ""
1959
 
1960
- #: dashboard/publisher/groups-edit.php:322
1961
  msgid "Select adverts"
1962
  msgstr ""
1963
 
1964
- #: dashboard/publisher/groups-edit.php:327
1965
  msgid "Choose adverts"
1966
  msgstr ""
1967
 
1968
- #: dashboard/publisher/groups-edit.php:333
1969
  msgid "Visible until"
1970
  msgstr "Widoczne do"
1971
 
1972
- #: dashboard/publisher/groups-edit.php:375
1973
  msgid "No adverts created!"
1974
  msgstr ""
1975
 
 
 
 
 
1976
  #: dashboard/publisher/groups-main.php:21
1977
  msgid "Delete Group"
1978
  msgstr "Usuń grupę"
@@ -1990,7 +1793,8 @@ msgid "This action can not be undone!"
1990
  msgstr "Nie można cofnąć tego ruchu!"
1991
 
1992
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1993
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
1994
  msgid "OK to continue, CANCEL to stop."
1995
  msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
1996
 
@@ -2057,9 +1861,9 @@ msgid ""
2057
  msgstr ""
2058
 
2059
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2060
- #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2061
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2062
- #: dashboard/settings/statistics.php:73
2063
  msgid "Update Options"
2064
  msgstr "Zapisz opcje"
2065
 
@@ -2365,7 +2169,8 @@ msgstr ""
2365
  msgid "Are you sure you want to continue?"
2366
  msgstr "Czy jesteś pewien że chcesz kontynuować?"
2367
 
2368
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
2369
  msgid "This might take a while and may slow down your site during this action!"
2370
  msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
2371
 
@@ -2374,36 +2179,34 @@ msgid "Delete stats older than 356 days (Optional)."
2374
  msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
2375
 
2376
  #: dashboard/settings/maintenance.php:32
2377
- msgid ""
2378
- "AdRotate creates empty records when you start making ads, groups or "
2379
- "schedules. In rare occasions these records are faulty."
2380
  msgstr ""
2381
 
2382
- #: dashboard/settings/maintenance.php:32
2383
  msgid ""
2384
- "If you made an ad, group or schedule that does not save when you make it use "
2385
- "this button to delete those empty records."
2386
  msgstr ""
2387
 
2388
- #: dashboard/settings/maintenance.php:32
2389
  msgid ""
2390
- "Additionally you can clean up old schedules and/or statistics. This will "
2391
- "improve the speed of your site."
2392
  msgstr ""
2393
 
2394
- #: dashboard/settings/maintenance.php:36
2395
  msgid "Re-evaluate Ads"
2396
  msgstr "Oszacuj ponownie reklamy."
2397
 
2398
- #: dashboard/settings/maintenance.php:38
2399
  msgid "Re-evaluate all ads"
2400
  msgstr "Oszacuj ponownie wszystkie reklamy."
2401
 
2402
- #: dashboard/settings/maintenance.php:38
2403
  msgid "You are about to check all ads for errors."
2404
  msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
2405
 
2406
- #: dashboard/settings/maintenance.php:39
2407
  msgid ""
2408
  "This will apply all evaluation rules to all ads to see if any error slipped "
2409
  "in. Normally you should not need this feature."
@@ -2412,7 +2215,7 @@ msgstr ""
2412
  "na wszystkich reklamach oraz przejrze nie wszystkich błędów. Normalnie nie "
2413
  "potrzebujesz wykorzystywać tej funkcji."
2414
 
2415
- #: dashboard/settings/maintenance.php:43
2416
  msgid ""
2417
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2418
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2425,11 +2228,11 @@ msgid ""
2425
  "is not a valid point in any case."
2426
  msgstr ""
2427
 
2428
- #: dashboard/settings/maintenance.php:45
2429
  msgid "Troubleshooting"
2430
  msgstr "Masz problem"
2431
 
2432
- #: dashboard/settings/maintenance.php:46
2433
  msgid ""
2434
  "The below options are not meant for normal use and are only there for "
2435
  "developers to review saved settings or how ads are selected. These can be "
@@ -2437,19 +2240,19 @@ msgid ""
2437
  "SHOULD BE LEFT UNCHECKED!!"
2438
  msgstr ""
2439
 
2440
- #: dashboard/settings/maintenance.php:49
2441
  msgid "Developer Debug"
2442
  msgstr "Debuger dewelopera"
2443
 
2444
- #: dashboard/settings/maintenance.php:51
2445
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2446
  msgstr ""
2447
 
2448
- #: dashboard/settings/maintenance.php:52
2449
  msgid "View advert specs and (some) stats in the dashboard."
2450
  msgstr ""
2451
 
2452
- #: dashboard/settings/maintenance.php:53
2453
  msgid ""
2454
  "Disable timers for clicks and impressions and enable a alert window for "
2455
  "clicktracking."
@@ -2457,97 +2260,111 @@ msgstr ""
2457
  "Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
2458
  "śledzenia kliknięć."
2459
 
2460
- #: dashboard/settings/maintenance.php:54
2461
  msgid "Temporarily disable encryption on the redirect url."
2462
  msgstr "Tymczasowo wyłącz szyfrowanie na przekierowanym adresie URL."
2463
 
2464
- #: dashboard/settings/maintenance.php:59
2465
  msgid "Status and Versions"
2466
  msgstr ""
2467
 
2468
- #: dashboard/settings/maintenance.php:62
2469
  msgid "Current status of adverts"
2470
  msgstr "Bieżący status reklam"
2471
 
2472
- #: dashboard/settings/maintenance.php:63
2473
  msgid "Normal"
2474
  msgstr "Normalny"
2475
 
2476
- #: dashboard/settings/maintenance.php:63
2477
  msgid "Error"
2478
  msgstr "Błąd"
2479
 
2480
- #: dashboard/settings/maintenance.php:63
2481
  msgid "Expired"
2482
  msgstr "Wygasa"
2483
 
2484
- #: dashboard/settings/maintenance.php:63
2485
  msgid "Expires Soon"
2486
  msgstr "Wygas wkrótce"
2487
 
2488
- #: dashboard/settings/maintenance.php:63
2489
  msgid "Unknown"
2490
  msgstr ""
2491
 
2492
- #: dashboard/settings/maintenance.php:66
2493
  msgid "Banners/assets Folder"
2494
  msgstr ""
2495
 
2496
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2497
  msgid "Exists and appears writable"
2498
  msgstr ""
2499
 
2500
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2501
  msgid "Not writable or does not exist"
2502
  msgstr ""
2503
 
2504
- #: dashboard/settings/maintenance.php:70
2505
  msgid "Reports Folder"
2506
  msgstr ""
2507
 
2508
- #: dashboard/settings/maintenance.php:76
2509
  msgid "Advert evaluation"
2510
  msgstr ""
2511
 
2512
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2513
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2514
  msgstr ""
2515
 
2516
- #: dashboard/settings/maintenance.php:78
2517
- msgid "Trackerdata cleanup"
2518
  msgstr ""
2519
 
2520
- #: dashboard/settings/maintenance.php:83
2521
  msgid "Internal Versions"
2522
  msgstr ""
2523
 
2524
- #: dashboard/settings/maintenance.php:84
2525
  msgid ""
2526
  "Unless you experience database issues or a warning shows below, these "
2527
  "numbers are not really relevant for troubleshooting. Support may ask for "
2528
  "them to verify your database status."
2529
  msgstr ""
2530
 
2531
- #: dashboard/settings/maintenance.php:87
2532
  msgid "AdRotate version"
2533
  msgstr ""
2534
 
2535
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2536
  msgid "Current:"
2537
  msgstr ""
2538
 
2539
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2540
  msgid "Should be:"
2541
  msgstr ""
2542
 
2543
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2544
  msgid "Previous:"
2545
  msgstr ""
2546
 
2547
- #: dashboard/settings/maintenance.php:89
2548
  msgid "Database version"
2549
  msgstr ""
2550
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2551
  #: dashboard/settings/misc.php:16
2552
  msgid "Miscellaneous"
2553
  msgstr "Różne"
@@ -2982,6 +2799,135 @@ msgid ""
2982
  msgstr ""
2983
  "Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
2984
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2985
  #~ msgid "Enable responsive support for this advert."
2986
  #~ msgstr "Włącz responsywny wygląd dla tej reklamy."
2987
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-22 22:10+0800\n"
6
+ "PO-Revision-Date: 2017-01-22 22:10+0800\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.11\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:721
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
+ #: adrotate-functions.php:724
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
+ #: adrotate-functions.php:773
32
  msgid "Ad saved"
33
  msgstr ""
34
 
35
+ #: adrotate-functions.php:777
36
  msgid "Group saved"
37
  msgstr ""
38
 
39
+ #: adrotate-functions.php:781
40
  msgid "Ad(s) deleted"
41
  msgstr "Reklama usunięta"
42
 
43
+ #: adrotate-functions.php:785
44
  msgid "Group deleted"
45
  msgstr "Grupa usunięta"
46
 
47
+ #: adrotate-functions.php:789
48
  msgid "Ad(s) statistics reset"
49
  msgstr "Resetuj statystyki reklamy"
50
 
51
+ #: adrotate-functions.php:793
52
  msgid "Ad(s) renewed"
53
  msgstr "Odnów reklamę"
54
 
55
+ #: adrotate-functions.php:797
56
  msgid "Ad(s) deactivated"
57
  msgstr "Reklama wyłączona"
58
 
59
+ #: adrotate-functions.php:801
60
  msgid "Ad(s) activated"
61
  msgstr "Reklama włączona"
62
 
63
+ #: adrotate-functions.php:805
64
  msgid "Group including it's Ads deleted"
65
  msgstr "Grupa wraz z reklamami usunięta"
66
 
67
+ #: adrotate-functions.php:809
68
  #, fuzzy
69
  msgid "Export created"
70
  msgstr "Reklama utworzona"
71
 
72
+ #: adrotate-functions.php:814
73
  msgid "Settings saved"
74
  msgstr "Ustawienia zapisane"
75
 
76
+ #: adrotate-functions.php:818
77
  msgid "Database optimized"
78
  msgstr "Baza danych zoptymalizowana"
79
 
80
+ #: adrotate-functions.php:822
81
  msgid "Database repaired"
82
  msgstr "Baza danych naprawiona"
83
 
84
+ #: adrotate-functions.php:826
85
  msgid "Ads evaluated and statuses have been corrected where required"
86
  msgstr "Oceny i statusy reklam zostały poprawione tam gdzie było to wymagane."
87
 
88
+ #: adrotate-functions.php:830
89
  msgid "Empty database records removed"
90
  msgstr "Usunięto puste rekordy bazy danych"
91
 
92
+ #: adrotate-functions.php:835
93
  msgid "Action prohibited"
94
  msgstr "Czynność zabroniona."
95
 
96
+ #: adrotate-functions.php:839
97
  msgid ""
98
  "The ad was saved but has an issue which might prevent it from working "
99
  "properly. Review the colored ad."
100
  msgstr ""
101
 
102
+ #: adrotate-functions.php:843
103
  msgid "No data found in selected time period"
104
  msgstr "Nie znaleziono żadnych wyników dla podanego przedziału czasowego."
105
 
106
+ #: adrotate-functions.php:847
107
  msgid "Database can only be optimized or cleaned once every hour"
108
  msgstr "Bazadanych może być optymalizowana i czyszczona jedynie raz na godzinę"
109
 
110
+ #: adrotate-functions.php:851
111
  msgid "Form can not be (partially) empty!"
112
  msgstr ""
113
 
114
+ #: adrotate-functions.php:855
115
  msgid "No ads found."
116
  msgstr ""
117
 
118
+ #: adrotate-functions.php:859
119
  msgid "Unexpected error"
120
  msgstr ""
121
 
122
+ #: adrotate-manage-publisher.php:677
123
  msgid "AdRotate Advertiser"
124
  msgstr ""
125
 
200
  msgid "An unknown error occured."
201
  msgstr "Pojawił się nieznany błąd."
202
 
203
+ #: adrotate-output.php:652
204
  #, php-format
205
  msgid "One advert is expired."
206
  msgid_plural "%1$s adverts expired!"
209
  msgstr[2] ""
210
 
211
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
 
212
  msgid "Check adverts"
213
  msgstr ""
214
 
215
+ #: adrotate-output.php:655
216
  #, php-format
217
  msgid "One advert expires soon."
218
  msgid_plural "%1$s adverts are almost expiring!"
220
  msgstr[1] ""
221
  msgstr[2] ""
222
 
223
+ #: adrotate-output.php:659
224
  #, php-format
225
  msgid "One advert with configuration errors."
226
  msgid_plural "%1$s adverts have configuration errors!"
228
  msgstr[1] ""
229
  msgstr[2] ""
230
 
231
+ #: adrotate-output.php:664
232
  msgid ""
233
  "You have enable caching support but W3 Total Cache is not active on your "
234
  "site!"
235
  msgstr ""
236
 
237
+ #: adrotate-output.php:667
238
  msgid ""
239
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
240
  "not set."
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:672
244
  msgid "Your AdRotate Banner folder is not writable or does not exist."
245
  msgstr ""
246
 
247
+ #: adrotate-output.php:691
248
  msgid "one issue that requires"
249
  msgid_plural "several issues that require"
250
  msgstr[0] ""
251
  msgstr[1] ""
252
  msgstr[2] ""
253
 
254
+ #: adrotate-output.php:712 dashboard/adrotatepro.php:86
255
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:88
256
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:98
257
+ #: dashboard/adrotatepro.php:99 dashboard/adrotatepro.php:100
258
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:64 dashboard/info.php:65
259
+ #: dashboard/info.php:66 dashboard/info.php:67 dashboard/info.php:71
260
+ #: dashboard/info.php:72 dashboard/info.php:73 dashboard/info.php:74
261
  #: dashboard/settings/geotargeting.php:35
262
  #, fuzzy
263
  msgid "Buy now"
264
  msgstr "Kup"
265
 
266
+ #: adrotate-output.php:713
267
  msgid ""
268
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
269
  "to the <strong>PRO</strong> version"
270
  msgstr ""
271
 
272
+ #: adrotate-output.php:713
273
  #, php-format
274
  msgid ""
275
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
276
  msgstr ""
277
 
278
+ #: adrotate-output.php:713
279
  msgid "Thank you for your purchase!"
280
  msgstr ""
281
 
282
+ #: adrotate-output.php:739
283
  msgid "one plugin"
284
  msgid_plural "several plugins"
285
  msgstr[0] ""
286
  msgstr[1] ""
287
  msgstr[2] ""
288
 
289
+ #: adrotate-output.php:774
290
  msgid ""
291
+ "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
292
+ "menu. If you need help getting started take a look at the"
293
  msgstr ""
294
 
295
+ #: adrotate-output.php:774
296
  msgid "manuals"
297
  msgstr "instrukcje"
298
 
299
+ #: adrotate-output.php:774 adrotate-output.php:844
300
  msgid "and"
301
  msgstr ""
302
 
303
+ #: adrotate-output.php:774
304
  msgid "forums"
305
  msgstr ""
306
 
307
+ #: adrotate-output.php:807
308
  #, fuzzy
309
  msgid "Useful Links"
310
  msgstr "Użyteczne odnośniki."
311
 
312
+ #: adrotate-output.php:808
313
  msgid "Useful links to learn more about AdRotate"
314
  msgstr ""
315
 
316
+ #: adrotate-output.php:810
317
  msgid "AdRotate website"
318
  msgstr ""
319
 
320
+ #: adrotate-output.php:811
321
  #, fuzzy
322
  msgid "Getting Started With AdRotate"
323
  msgstr "Więcej ustawień z AdRotate Pro"
324
 
325
+ #: adrotate-output.php:812
326
  #, fuzzy
327
  msgid "AdRotate manuals"
328
  msgstr "Informacja AdRotate "
329
 
330
+ #: adrotate-output.php:813
331
  #, fuzzy
332
  msgid "AdRotate Support Forum"
333
  msgstr "Sklep AdRotate"
334
 
335
+ #: adrotate-output.php:836 dashboard/info.php:46
336
+ msgid "Support AdRotate"
337
+ msgstr "Wesprzyj AdRotate"
 
338
 
339
+ #: adrotate-output.php:837
340
+ msgid "Check out my website"
341
  msgstr ""
342
 
343
+ #: adrotate-output.php:844
344
  msgid ""
345
+ "Many users only think to review AdRotate when something goes wrong while "
346
+ "thousands of people happily use AdRotate."
347
  msgstr ""
348
 
349
+ #: adrotate-output.php:844
350
+ msgid "If you find AdRotate useful please leave your"
351
  msgstr ""
352
 
353
+ #: adrotate-output.php:844
354
  msgid "rating"
355
  msgstr ""
356
 
357
+ #: adrotate-output.php:844
358
  #, fuzzy
359
  msgid "review"
360
  msgstr ""
361
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
362
 
363
+ #: adrotate-output.php:844
364
  msgid "on WordPress.org to help AdRotate grow in a positive way"
365
  msgstr ""
366
 
367
+ #: adrotate-output.php:870 dashboard/settings/notifications.php:50
368
  #: dashboard/settings/notifications.php:80
369
  msgid "Available in AdRotate Pro"
370
  msgstr "Dostępne w wersji AdRotate Pro"
371
 
372
+ #: adrotate-output.php:870
373
  msgid "More information..."
374
  msgstr "Więcej informacji"
375
 
376
+ #: adrotate-output.php:871
377
  msgid "This feature is available in AdRotate Pro"
378
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
379
 
380
+ #: adrotate-output.php:871
381
  msgid "Learn more"
382
  msgstr "Dowiedź się więcej"
383
 
384
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:217
385
+ #: dashboard/publisher/adverts-edit.php:238
386
  msgid "January"
387
  msgstr "Styczeń "
388
 
389
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:218
390
+ #: dashboard/publisher/adverts-edit.php:239
391
  msgid "February"
392
  msgstr "Luty"
393
 
394
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:219
395
+ #: dashboard/publisher/adverts-edit.php:240
396
  msgid "March"
397
  msgstr "Marzec"
398
 
399
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:220
400
+ #: dashboard/publisher/adverts-edit.php:241
401
  msgid "April"
402
  msgstr "Kwiecień"
403
 
404
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:221
405
+ #: dashboard/publisher/adverts-edit.php:242
406
  msgid "May"
407
  msgstr "Maj"
408
 
409
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:222
410
+ #: dashboard/publisher/adverts-edit.php:243
411
  msgid "June"
412
  msgstr "Czerwiec"
413
 
414
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:223
415
+ #: dashboard/publisher/adverts-edit.php:244
416
  msgid "July"
417
  msgstr "Lipiec"
418
 
419
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:224
420
+ #: dashboard/publisher/adverts-edit.php:245
421
  msgid "August"
422
  msgstr "Sierpień"
423
 
424
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:225
425
+ #: dashboard/publisher/adverts-edit.php:246
426
  msgid "September"
427
  msgstr "Wrzesień"
428
 
429
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:226
430
+ #: dashboard/publisher/adverts-edit.php:247
431
  msgid "October"
432
  msgstr "Pażdziernik"
433
 
434
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:227
435
+ #: dashboard/publisher/adverts-edit.php:248
436
  msgid "November"
437
  msgstr "Listopad"
438
 
439
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:228
440
+ #: dashboard/publisher/adverts-edit.php:249
441
  msgid "December"
442
  msgstr "Grudzień"
443
 
444
+ #: adrotate-statistics.php:152
445
  msgid "Previous"
446
  msgstr "Poprzedni"
447
 
448
+ #: adrotate-statistics.php:154
449
  msgid "This month"
450
  msgstr "Obecny miesiąc"
451
 
452
+ #: adrotate-statistics.php:155
453
  msgid "Next"
454
  msgstr "Następny"
455
 
456
+ #: adrotate-statistics.php:229
457
  msgid "No data to show!"
458
  msgstr "Brak danych !"
459
 
497
  msgid "Fill in the ID of the type you want to display!"
498
  msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
499
 
500
+ #: adrotate.php:101
501
  msgid "General Info"
502
  msgstr "Informacje główne"
503
 
504
+ #: adrotate.php:102
505
  msgid "AdRotate Pro"
506
  msgstr "AdRotate Pro"
507
 
508
+ #: adrotate.php:103 dashboard/info.php:37
509
+ #: dashboard/publisher/adverts-edit.php:455
510
+ #: dashboard/publisher/groups-main.php:34
511
+ msgid "Adverts"
512
+ msgstr "Reklamy"
 
 
 
 
 
 
 
513
 
514
+ #: adrotate.php:104 dashboard/info.php:41
515
+ msgid "Groups"
516
+ msgstr "Grupy"
 
517
 
518
+ #: adrotate.php:105
519
  msgid "Settings"
520
  msgstr "Ustawienia"
521
 
522
+ #: adrotate.php:123
523
  msgid "AdRotate Info"
524
  msgstr "Informacja AdRotate "
525
 
526
+ #: adrotate.php:141
527
  msgid "AdRotate Professional"
528
  msgstr "AdRotate Professional"
529
 
530
+ #: adrotate.php:181
531
  msgid "Advert Management"
532
  msgstr ""
533
 
534
+ #: adrotate.php:239 adrotate.php:306
535
  msgid "Manage"
536
  msgstr "Zarządzaj"
537
 
538
+ #: adrotate.php:240 adrotate.php:307
539
  msgid "Add New"
540
  msgstr "Dodaj nową"
541
 
542
+ #: adrotate.php:300
543
  msgid "Group Management"
544
  msgstr "Zarządzanie grupą reklam"
545
 
546
+ #: adrotate.php:309
547
  msgid "Report"
548
  msgstr "Raport"
549
 
550
+ #: adrotate.php:354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
551
  msgid "AdRotate Settings"
552
  msgstr "Ustawienia AdRotate"
553
 
576
  msgid ""
577
  "Target mobile users with ease and show the right adverts to smartphones, "
578
  "tablets and computers. Mix and match as you please and offer adverts that "
579
+ "suit the device or mobile operating system. Create as many mobile adverts as "
580
+ "you want without effort and with a few easy to use options they show up "
581
+ "where you want them to!"
582
  msgstr ""
583
 
584
  #: dashboard/adrotatepro.php:34
605
  "forum. Get a solution (usually) within one business day."
606
  msgstr ""
607
 
608
+ #: dashboard/adrotatepro.php:48 dashboard/info.php:101
609
  msgid "AdRotate is brought to you by"
610
  msgstr "Możesz koszystać z AdRotate dzięki"
611
 
612
+ #: dashboard/adrotatepro.php:61
613
  msgid "Schedule all campaigns with ease"
614
  msgstr "Zaplanuj z łatwością wszystkie kampanie reklamowe"
615
 
616
+ #: dashboard/adrotatepro.php:64
617
  msgid ""
618
  "Schedule your adverts and set up advertising campaigns based on dates you or "
619
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
620
+ "specific days in the week. You name it, AdRotate schedules it. This makes "
621
+ "planning your revenue stream very flexible. You can set one or many "
622
+ "schedules for adverts."
623
  msgstr ""
624
 
625
+ #: dashboard/adrotatepro.php:68
626
  msgid "Avoid adblockers"
627
  msgstr ""
628
 
629
+ #: dashboard/adrotatepro.php:71
630
  msgid ""
631
+ "Try and avoid adblockers so your adverts get the exposure you want them to "
632
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
633
  "adverts are less likely to be removed. Of-course make sure you create your "
634
  "adverts smartly so these features reach their full potential!"
635
  msgstr ""
636
 
637
+ #: dashboard/adrotatepro.php:75
638
  msgid "Stay up-to-date with notifications"
639
  msgstr ""
640
 
641
+ #: dashboard/adrotatepro.php:78
642
  msgid ""
643
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
644
  "adverts expire or need your attention. Additionally, send push notifications "
646
  "or when advertisers create new adverts. Never miss an expiration date again."
647
  msgstr ""
648
 
649
+ #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
650
+ #: dashboard/info.php:60
651
  msgid "Buy AdRotate Professional"
652
  msgstr "Kup AdRotate Pro"
653
 
654
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:64
655
  msgid "Single License"
656
  msgstr ""
657
 
658
+ #: dashboard/adrotatepro.php:86
659
  msgid "For one WordPress installation."
660
  msgstr "dla jednej instalcji Wordpressa"
661
 
662
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
663
+ #: dashboard/info.php:65 dashboard/info.php:72
664
  msgid "Duo License"
665
  msgstr "Podwójna licencja"
666
 
667
+ #: dashboard/adrotatepro.php:87
668
  msgid "For two WordPress installations."
669
  msgstr "dla dwóch instalcji Wordpressa"
670
 
671
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
672
+ #: dashboard/info.php:66 dashboard/info.php:73
673
  msgid "Multi License"
674
  msgstr "Multi licencja"
675
 
676
+ #: dashboard/adrotatepro.php:88
677
  msgid " For up to five WordPress installations."
678
  msgstr "dla 5 instalacji Wordpessa."
679
 
680
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
681
+ #: dashboard/info.php:67 dashboard/info.php:74
682
  msgid "Developer License"
683
  msgstr "Licencja Programisty"
684
 
685
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:67
686
  msgid "Unlimited WordPress installations and/or networks."
687
  msgstr ""
688
 
689
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
690
+ #: dashboard/info.php:68 dashboard/info.php:76
691
  msgid "Compare licenses"
692
  msgstr "Porównaj licencje."
693
 
694
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
695
  msgid "Not sure which license is for you? Compare them..."
696
  msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
697
 
698
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
699
  msgid "All Licenses"
700
  msgstr "Wszystkie licencje"
701
 
702
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
703
  msgid "Lifetime License"
704
  msgstr ""
705
 
706
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
707
  msgid "Single installation."
708
  msgstr ""
709
 
710
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:72
711
  msgid "Up to 2 installations."
712
  msgstr ""
713
 
714
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:73
715
  msgid "Up to 10 installations."
716
  msgstr ""
717
 
718
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:74
719
  msgid "Up to 25 installations or multisite networks."
720
  msgstr ""
721
 
722
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:75
723
  msgid ""
724
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
725
  msgstr ""
726
 
727
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
728
  msgid "Not sure which license is for you?"
729
  msgstr ""
730
 
731
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
732
  msgid "Compare Licenses"
733
  msgstr ""
734
 
744
  msgid "Adverts that need you"
745
  msgstr "Reklamy wymagające uwagi"
746
 
 
 
 
 
 
747
  #: dashboard/info.php:38
748
  msgid "(Almost) Expired"
749
  msgstr "(Wkrótce) wygasa "
750
 
 
 
 
 
751
  #: dashboard/info.php:42
752
  msgid "Have errors"
753
  msgstr "Posiada błędy"
754
 
755
+ #: dashboard/info.php:47
 
 
 
 
756
  msgid ""
757
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
758
  "for updates about me and my plugins. Thank you!"
759
  msgstr ""
760
 
761
+ #: dashboard/info.php:51 dashboard/publisher/adverts-edit.php:124
762
+ msgid "Get paid as a publisher:"
763
+ msgstr ""
764
+
765
+ #: dashboard/info.php:64
766
+ msgid "One WordPress installation."
767
+ msgstr ""
768
+
769
+ #: dashboard/info.php:65
770
+ msgid "Two WordPress installations."
771
+ msgstr ""
772
+
773
+ #: dashboard/info.php:66
774
+ msgid "Up to five WordPress installations."
775
+ msgstr ""
776
+
777
+ #: dashboard/info.php:87
778
  msgid "AdRotate News"
779
  msgstr ""
780
 
781
+ #: dashboard/info.php:105
782
  msgid ""
783
  "I am a digital nomad in the Philippines. Click on my name to find out more "
784
  "about me and what I am doing. Thanks for your support and for using my "
789
  msgid "Disabled Adverts"
790
  msgstr ""
791
 
792
+ #: dashboard/publisher/adverts-disabled.php:20
793
+ #: dashboard/publisher/adverts-error.php:19
794
+ #: dashboard/publisher/adverts-main.php:20
795
+ #: dashboard/publisher/groups-main.php:20
796
+ msgid "Bulk Actions"
797
+ msgstr "Działania masowe"
798
+
799
  #: dashboard/publisher/adverts-disabled.php:21
800
+ #: dashboard/publisher/adverts-edit.php:173
801
  msgid "Activate"
802
  msgstr "Aktywuj"
803
 
804
+ #: dashboard/publisher/adverts-disabled.php:22
805
+ #: dashboard/publisher/adverts-error.php:21
806
+ #: dashboard/publisher/adverts-main.php:22
807
+ msgid "Delete"
808
+ msgstr "Usuń"
809
+
810
  #: dashboard/publisher/adverts-disabled.php:23
811
  #: dashboard/publisher/adverts-error.php:22
812
  #: dashboard/publisher/adverts-main.php:23
813
  msgid "Reset stats"
814
  msgstr "Resetuj statystyki"
815
 
816
+ #: dashboard/publisher/adverts-disabled.php:25
817
+ #: dashboard/publisher/adverts-error.php:29
818
+ #: dashboard/publisher/adverts-main.php:30
819
+ #: dashboard/publisher/groups-main.php:24
820
+ msgid "Go"
821
+ msgstr "Idź"
822
+
823
+ #: dashboard/publisher/adverts-disabled.php:35
824
+ #: dashboard/publisher/adverts-error.php:39
825
+ #: dashboard/publisher/adverts-main.php:39
826
+ #: dashboard/publisher/groups-main.php:32
827
+ msgid "ID"
828
+ msgstr "ID"
829
+
830
  #: dashboard/publisher/adverts-disabled.php:36
831
  #: dashboard/publisher/adverts-error.php:40
832
  #: dashboard/publisher/adverts-main.php:40
834
  msgstr "Start / Koniec"
835
 
836
  #: dashboard/publisher/adverts-disabled.php:37
837
+ #: dashboard/publisher/adverts-edit.php:109
838
  #: dashboard/publisher/adverts-error.php:41
839
  #: dashboard/publisher/adverts-main.php:41
840
  msgid "Title"
842
 
843
  #: dashboard/publisher/adverts-disabled.php:38
844
  #: dashboard/publisher/adverts-main.php:44
845
+ #: dashboard/publisher/groups-edit.php:331
846
  #: dashboard/publisher/groups-main.php:36
847
  msgid "Shown"
848
  msgstr "Wyświetlane"
851
  #: dashboard/publisher/adverts-main.php:46
852
  #: dashboard/publisher/adverts-report.php:36
853
  #: dashboard/publisher/adverts-report.php:57
854
+ #: dashboard/publisher/groups-edit.php:332
855
  #: dashboard/publisher/groups-main.php:38
856
  #: dashboard/publisher/groups-report.php:37
857
  #: dashboard/publisher/groups-report.php:58
867
  msgid "CTR"
868
  msgstr "CTR"
869
 
870
+ #: dashboard/publisher/adverts-disabled.php:71
871
  #: dashboard/publisher/adverts-error.php:64
872
+ #: dashboard/publisher/adverts-main.php:82
873
  #: dashboard/publisher/groups-main.php:70
874
  msgid "Edit"
875
  msgstr "Edytuj"
876
 
877
+ #: dashboard/publisher/adverts-disabled.php:71
878
  #: dashboard/publisher/adverts-error.php:64
879
+ #: dashboard/publisher/adverts-main.php:82
880
  #: dashboard/publisher/groups-main.php:70
881
  msgid "Stats"
882
  msgstr "Statystyki"
883
 
884
+ #: dashboard/publisher/adverts-disabled.php:71
885
  #: dashboard/publisher/adverts-error.php:64
886
+ #: dashboard/publisher/adverts-main.php:82
887
  #, fuzzy
888
  msgid "Groups:"
889
  msgstr "Grupy"
890
 
891
+ #: dashboard/publisher/adverts-edit.php:47
892
  msgid "The AdCode cannot be empty!"
893
  msgstr "Kod reklamy nie może być pusty!"
894
 
895
+ #: dashboard/publisher/adverts-edit.php:50
896
  msgid ""
897
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
898
  "use!"
899
  msgstr ""
900
 
901
+ #: dashboard/publisher/adverts-edit.php:53
902
  msgid ""
903
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
904
  "use!"
905
  msgstr ""
906
 
907
+ #: dashboard/publisher/adverts-edit.php:56
908
  msgid ""
909
  "There is a problem saving the image. Please reset your image and re-save the "
910
  "ad!"
911
  msgstr ""
912
 
913
+ #: dashboard/publisher/adverts-edit.php:59
914
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
915
  msgstr ""
916
 
917
+ #: dashboard/publisher/adverts-edit.php:64
918
  msgid ""
919
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
920
  "the ad!"
922
  "AdRotate nie może znaleść błedu ale reklama jest oznaczona jako zawierajaca "
923
  "błędy. Sprobuj zapisać ją ponownie!"
924
 
925
+ #: dashboard/publisher/adverts-edit.php:67
926
  msgid "This ad is expired and currently not shown on your website!"
927
  msgstr "Ta reklama wygasła i obecnie nie jest wyświetlana na stronie!"
928
 
929
+ #: dashboard/publisher/adverts-edit.php:70
930
  msgid "The ad will expire in less than 2 days!"
931
  msgstr "Ta reklama wygaśnie za 2 dni!"
932
 
933
+ #: dashboard/publisher/adverts-edit.php:73
934
  msgid "This ad will expire in less than 7 days!"
935
  msgstr "Ta reklama wygaśnie za 7 dni!"
936
 
937
+ #: dashboard/publisher/adverts-edit.php:76
938
  msgid "This ad has been disabled and does not rotate on your site!"
939
  msgstr "Reklama został wyłączona i nie jest wyświetlana na stronie!"
940
 
941
+ #: dashboard/publisher/adverts-edit.php:101
942
  msgid "New Advert"
943
  msgstr "Nowa reklama"
944
 
945
+ #: dashboard/publisher/adverts-edit.php:103
946
  msgid "Edit Advert"
947
  msgstr "Edytuj reklamę"
948
 
949
+ #: dashboard/publisher/adverts-edit.php:115
950
  msgid "AdCode"
951
  msgstr ""
952
 
953
+ #: dashboard/publisher/adverts-edit.php:120
954
  msgid "Basic Examples:"
955
  msgstr "Proste przykłady:"
956
 
957
+ #: dashboard/publisher/adverts-edit.php:131
958
  msgid "Useful tags"
959
  msgstr ""
960
 
961
+ #: dashboard/publisher/adverts-edit.php:133
962
  msgid "Insert the advert ID Number."
963
  msgstr ""
964
 
965
+ #: dashboard/publisher/adverts-edit.php:133
966
  msgid "Required when selecting a asset below."
967
  msgstr ""
968
 
969
+ #: dashboard/publisher/adverts-edit.php:133
970
  msgid "Insert the advert name."
971
  msgstr ""
972
 
973
+ #: dashboard/publisher/adverts-edit.php:133
974
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
975
  msgstr ""
976
 
977
+ #: dashboard/publisher/adverts-edit.php:133
978
  msgid "Add inside the <a> tag to open advert in a new window."
979
  msgstr ""
980
 
981
+ #: dashboard/publisher/adverts-edit.php:133
982
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
983
  msgstr ""
984
 
985
+ #: dashboard/publisher/adverts-edit.php:133
986
  msgid ""
987
  "Place the cursor in your AdCode where you want to add any of these tags and "
988
  "click to add it."
989
  msgstr ""
990
 
991
+ #: dashboard/publisher/adverts-edit.php:138
992
  msgid "Preview"
993
  msgstr "Podgląd"
994
 
995
+ #: dashboard/publisher/adverts-edit.php:141
996
  msgid ""
997
  "Note: While this preview is an accurate one, it might look different then it "
998
  "does on the website."
1000
  "Uwaga: Podczas podglądu reklama może wygląać inaczej, to nie na stronie "
1001
  "internetowej."
1002
 
1003
+ #: dashboard/publisher/adverts-edit.php:142
1004
  msgid ""
1005
  "This is because of CSS differences. Your themes CSS file is not active here!"
1006
  msgstr ""
1007
  "To wynika z różnic w Kaskadowych arkuszach stylu CSS. Twój szablon nie "
1008
  "działa w tym pliku!."
1009
 
1010
+ #: dashboard/publisher/adverts-edit.php:147
1011
  msgid "Banner asset"
1012
  msgstr ""
1013
 
1014
+ #: dashboard/publisher/adverts-edit.php:150
1015
  msgid "WordPress media:"
1016
  msgstr ""
1017
 
1018
+ #: dashboard/publisher/adverts-edit.php:150
1019
  msgid "Select Banner"
1020
  msgstr "Wybierz baner:"
1021
 
1022
+ #: dashboard/publisher/adverts-edit.php:152
1023
  msgid "- OR -"
1024
  msgstr "--albo-"
1025
 
1026
+ #: dashboard/publisher/adverts-edit.php:154
1027
  msgid "Banner folder:"
1028
  msgstr "Folder banerów:"
1029
 
1030
+ #: dashboard/publisher/adverts-edit.php:155
1031
  msgid "No image selected"
1032
  msgstr "Nie wybrano żadnego obrazu"
1033
 
1034
+ #: dashboard/publisher/adverts-edit.php:159
1035
  msgid "Use %asset% in the adcode instead of the file path."
1036
  msgstr ""
1037
 
1038
+ #: dashboard/publisher/adverts-edit.php:159
1039
  msgid ""
1040
  "Use either the text field or the dropdown. If the textfield has content that "
1041
  "field has priority."
1043
  "Skorzystaj z pola tekstowego lub listy rozwijanej. Jeśli pole tekstowe "
1044
  "zawiera treści, te pole ma pierwszeństwo."
1045
 
1046
+ #: dashboard/publisher/adverts-edit.php:164
1047
  #: dashboard/settings/statistics.php:17
1048
  msgid "Statistics"
1049
  msgstr "Statystyki"
1050
 
1051
+ #: dashboard/publisher/adverts-edit.php:166
1052
  msgid "Enable click and impression tracking for this advert."
1053
  msgstr ""
1054
 
1055
+ #: dashboard/publisher/adverts-edit.php:167
1056
  msgid ""
1057
  "Note: Clicktracking does not work for Javascript adverts such as those "
1058
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1059
  "always supported."
1060
  msgstr ""
1061
 
1062
+ #: dashboard/publisher/adverts-edit.php:177
1063
  msgid "Yes, this ad will be used"
1064
  msgstr "Uruchom ta reklamę"
1065
 
1066
+ #: dashboard/publisher/adverts-edit.php:178
1067
  msgid "No, do not show this ad anywhere"
1068
  msgstr "Niepokazuj tej reklamy."
1069
 
1070
+ #: dashboard/publisher/adverts-edit.php:185
1071
+ #: dashboard/publisher/adverts-main.php:107
1072
  #: dashboard/publisher/groups-edit.php:71
1073
  #: dashboard/publisher/groups-main.php:89
1074
  #, fuzzy
1076
  msgstr "Więcej ustawień z AdRotate Pro"
1077
 
1078
  #: dashboard/publisher/adverts-edit.php:185
1079
+ #: dashboard/publisher/adverts-main.php:107
1080
+ #: dashboard/publisher/groups-edit.php:71
1081
+ #: dashboard/publisher/groups-main.php:89
1082
+ #, fuzzy
1083
+ msgid "More information"
1084
+ msgstr "Więcej informacji"
1085
+
1086
+ #: dashboard/publisher/adverts-edit.php:188
1087
+ #: dashboard/publisher/adverts-edit.php:288
1088
+ #: dashboard/publisher/adverts-edit.php:444
1089
+ #: dashboard/publisher/adverts-edit.php:485
1090
  msgid "Save Advert"
1091
  msgstr "Zapisz reklamę"
1092
 
1093
+ #: dashboard/publisher/adverts-edit.php:189
1094
+ #: dashboard/publisher/adverts-edit.php:289
1095
+ #: dashboard/publisher/adverts-edit.php:445
1096
+ #: dashboard/publisher/adverts-edit.php:486
1097
  #: dashboard/publisher/groups-edit.php:150
1098
+ #: dashboard/publisher/groups-edit.php:299
1099
+ #: dashboard/publisher/groups-edit.php:391
1100
  msgid "Cancel"
1101
  msgstr "Anuluj"
1102
 
1103
+ #: dashboard/publisher/adverts-edit.php:192
1104
+ #: dashboard/publisher/adverts-edit.php:427
1105
  #: dashboard/publisher/groups-edit.php:132
1106
+ #: dashboard/publisher/groups-edit.php:281
1107
  msgid "Usage"
1108
  msgstr "Użycie"
1109
 
1110
+ #: dashboard/publisher/adverts-edit.php:196
1111
+ #: dashboard/publisher/adverts-edit.php:431
1112
  #: dashboard/publisher/groups-edit.php:136
1113
+ #: dashboard/publisher/groups-edit.php:205
1114
+ #: dashboard/publisher/groups-edit.php:245
1115
+ #: dashboard/publisher/groups-edit.php:285
1116
  msgid "Widget"
1117
  msgstr ""
1118
 
1119
+ #: dashboard/publisher/adverts-edit.php:197
1120
+ #: dashboard/publisher/adverts-edit.php:432
1121
  msgid ""
1122
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1123
  "and select the advert or the group the advert is in."
1124
  msgstr ""
1125
 
1126
+ #: dashboard/publisher/adverts-edit.php:200
1127
+ #: dashboard/publisher/adverts-edit.php:435
1128
  #: dashboard/publisher/groups-edit.php:140
1129
+ #: dashboard/publisher/groups-edit.php:289
1130
  msgid "In a post or page"
1131
  msgstr ""
1132
 
1133
+ #: dashboard/publisher/adverts-edit.php:202
1134
+ #: dashboard/publisher/adverts-edit.php:437
1135
  #: dashboard/publisher/groups-edit.php:142
1136
+ #: dashboard/publisher/groups-edit.php:291
1137
  msgid "Directly in a theme"
1138
  msgstr ""
1139
 
1140
+ #: dashboard/publisher/adverts-edit.php:208
1141
  msgid "Schedule your advert"
1142
  msgstr ""
1143
 
1144
+ #: dashboard/publisher/adverts-edit.php:212
1145
  msgid "Start date (day/month/year)"
1146
  msgstr ""
1147
 
1148
+ #: dashboard/publisher/adverts-edit.php:233
1149
  msgid "End date (day/month/year)"
1150
  msgstr ""
1151
 
1152
+ #: dashboard/publisher/adverts-edit.php:256
1153
  msgid "Start time (hh:mm)"
1154
  msgstr ""
1155
 
1156
+ #: dashboard/publisher/adverts-edit.php:263
1157
  msgid "End time (hh:mm)"
1158
  msgstr ""
1159
 
1160
+ #: dashboard/publisher/adverts-edit.php:273
1161
  msgid "Maximum Clicks"
1162
  msgstr ""
1163
 
1164
+ #: dashboard/publisher/adverts-edit.php:274
1165
+ #: dashboard/publisher/adverts-edit.php:276
1166
  msgid "Leave empty or 0 to skip this."
1167
  msgstr "Pozostaw puste albo wpisz 0 ."
1168
 
1169
+ #: dashboard/publisher/adverts-edit.php:275
1170
  msgid "Maximum Impressions"
1171
  msgstr ""
1172
 
1173
+ #: dashboard/publisher/adverts-edit.php:280
1174
  msgid "Important"
1175
  msgstr ""
1176
 
1177
+ #: dashboard/publisher/adverts-edit.php:281
1178
  msgid ""
1179
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1180
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1181
  "14:00 hours. 6AM is 6:00 hours."
1182
  msgstr ""
1183
 
1184
+ #: dashboard/publisher/adverts-edit.php:285
1185
  msgid ""
1186
  "Create multiple and more advanced schedules for each advert with AdRotate "
1187
  "Pro."
1188
  msgstr ""
1189
 
1190
+ #: dashboard/publisher/adverts-edit.php:285
1191
+ #: dashboard/publisher/adverts-edit.php:354
1192
+ #: dashboard/publisher/adverts-edit.php:425
1193
+ #: dashboard/publisher/groups-edit.php:191
1194
  #, fuzzy
1195
  msgid "Upgrade today"
1196
  msgstr "Dziś"
1197
 
1198
+ #: dashboard/publisher/adverts-edit.php:292
1199
  #: dashboard/publisher/groups-edit.php:153
1200
  msgid "Advanced"
1201
  msgstr "Zaawansowane"
1202
 
1203
+ #: dashboard/publisher/adverts-edit.php:293
1204
+ #: dashboard/publisher/adverts-edit.php:357
 
 
 
1205
  msgid "Available in AdRotate Pro!"
1206
  msgstr ""
1207
 
1208
+ #: dashboard/publisher/adverts-edit.php:298
1209
  #: dashboard/publisher/adverts-main.php:42
1210
+ #: dashboard/publisher/groups-edit.php:334
1211
  msgid "Weight"
1212
  msgstr "Waga"
1213
 
1214
+ #: dashboard/publisher/adverts-edit.php:301
1215
  msgid "Few impressions"
1216
  msgstr ""
1217
 
1218
+ #: dashboard/publisher/adverts-edit.php:306
1219
  msgid "Less than average"
1220
  msgstr "Mniej niż średnia"
1221
 
1222
+ #: dashboard/publisher/adverts-edit.php:311
1223
  msgid "Normal impressions"
1224
  msgstr ""
1225
 
1226
+ #: dashboard/publisher/adverts-edit.php:316
1227
  msgid "More than average"
1228
  msgstr "Więcej niż średnia"
1229
 
1230
+ #: dashboard/publisher/adverts-edit.php:321
1231
  msgid "Many impressions"
1232
  msgstr ""
1233
 
1234
+ #: dashboard/publisher/adverts-edit.php:326
1235
  msgid "Mobile"
1236
  msgstr ""
1237
 
1238
+ #: dashboard/publisher/adverts-edit.php:328
1239
  msgid "Computers"
1240
  msgstr ""
1241
 
1242
+ #: dashboard/publisher/adverts-edit.php:331
1243
  msgid "Smartphones"
1244
  msgstr ""
1245
 
1246
+ #: dashboard/publisher/adverts-edit.php:334
1247
  msgid "Tablets"
1248
  msgstr ""
1249
 
1250
+ #: dashboard/publisher/adverts-edit.php:337
1251
  msgid ""
1252
  "Also enable mobile support in the group this advert goes in or these are "
1253
  "ignored."
1254
  msgstr ""
1255
 
1256
+ #: dashboard/publisher/adverts-edit.php:337
1257
+ msgid ""
1258
+ "Operating system detection only detects iOS/Android/Others or neither. Only "
1259
+ "works if Smartphones and/or Tablets is enabled."
1260
  msgstr ""
1261
 
1262
+ #: dashboard/publisher/adverts-edit.php:341
1263
+ msgid "Mobile OS"
1264
+ msgstr ""
 
1265
 
1266
+ #: dashboard/publisher/adverts-edit.php:343
1267
+ msgid "iOS"
1268
  msgstr ""
 
1269
 
1270
+ #: dashboard/publisher/adverts-edit.php:346
1271
+ msgid "Android"
 
 
1272
  msgstr ""
1273
 
1274
+ #: dashboard/publisher/adverts-edit.php:349
1275
+ msgid "Others"
1276
  msgstr ""
1277
 
1278
+ #: dashboard/publisher/adverts-edit.php:354
1279
  msgid ""
1280
+ "With AdRotate Pro you can easily select which devices and mobile operating "
1281
+ "systems the advert should show on!"
1282
  msgstr ""
1283
 
1284
+ #: dashboard/publisher/adverts-edit.php:356
1285
+ #: dashboard/publisher/groups-edit.php:180
1286
+ #: dashboard/settings/advertisers.php:38
1287
+ msgid "Geo Targeting"
1288
+ msgstr "Geo Targeting"
1289
 
1290
+ #: dashboard/publisher/adverts-edit.php:357
1291
  msgid ""
1292
+ "Assign the advert to a group and enable that group to use Geo Targeting."
1293
+ msgstr ""
1294
+
1295
+ #: dashboard/publisher/adverts-edit.php:415
1296
+ msgid "A comma separated list of items:"
1297
  msgstr ""
1298
 
1299
+ #: dashboard/publisher/adverts-edit.php:415
1300
  msgid ""
1301
  "AdRotate does not check the validity of names so make sure you spell them "
1302
  "correctly!"
1303
  msgstr ""
1304
 
1305
+ #: dashboard/publisher/adverts-edit.php:425
 
 
 
 
 
 
 
 
 
 
 
 
1306
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1307
  msgstr ""
1308
 
1309
+ #: dashboard/publisher/adverts-edit.php:449
1310
  msgid "Select Groups"
1311
  msgstr "Wybierz grupy"
1312
 
1313
+ #: dashboard/publisher/adverts-edit.php:454
1314
  msgid "ID - Name"
1315
  msgstr "ID - Nazwa"
1316
 
1317
+ #: dashboard/publisher/adverts-edit.php:464
1318
  #: dashboard/publisher/groups-main.php:60
1319
  #: dashboard/settings/geotargeting.php:49
1320
  msgid "Default"
1321
  msgstr "Domyślny"
1322
 
1323
+ #: dashboard/publisher/adverts-edit.php:465
1324
  #: dashboard/publisher/groups-main.php:61
1325
  msgid "Dynamic"
1326
  msgstr "Dynamiczny"
1327
 
1328
+ #: dashboard/publisher/adverts-edit.php:465
1329
  #: dashboard/publisher/groups-main.php:61
1330
  msgid "second rotation"
1331
  msgstr "drugi obrót"
1332
 
1333
+ #: dashboard/publisher/adverts-edit.php:466
1334
  #: dashboard/publisher/groups-main.php:62
1335
  msgid "Block"
1336
  msgstr "Blok"
1337
 
1338
+ #: dashboard/publisher/adverts-edit.php:466
1339
  #: dashboard/publisher/groups-main.php:62
1340
  msgid "grid"
1341
  msgstr "siatka"
1342
 
1343
+ #: dashboard/publisher/adverts-edit.php:467
1344
+ #: dashboard/publisher/groups-edit.php:199
1345
  #: dashboard/publisher/groups-main.php:63
1346
  msgid "Post Injection"
1347
  msgstr "Umieszczanie we wpisach"
1348
 
1349
+ #: dashboard/publisher/adverts-edit.php:468
1350
  msgid "Geolocation"
1351
  msgstr "Geolokalizacja"
1352
 
1353
+ #: dashboard/publisher/adverts-edit.php:474
1354
  #: dashboard/publisher/groups-edit.php:57
1355
  #: dashboard/publisher/groups-main.php:70
1356
  msgid "Mode"
1391
  msgstr "Na 7 dni"
1392
 
1393
  #: dashboard/publisher/adverts-error.php:71
1394
+ #: dashboard/publisher/groups-edit.php:384
1395
  msgid "Configuration errors."
1396
  msgstr "Błedy konfiguracji."
1397
 
1398
+ #: dashboard/publisher/adverts-error.php:72
1399
+ #: dashboard/publisher/groups-edit.php:385
1400
+ msgid "Expires soon."
1401
+ msgstr "Wygasa wkrótce."
1402
+
1403
+ #: dashboard/publisher/adverts-error.php:73
1404
+ #: dashboard/publisher/groups-edit.php:386
1405
+ msgid "Has expired."
1406
+ msgstr "Wygasła."
1407
+
1408
  #: dashboard/publisher/adverts-main.php:12
1409
  msgid "Active Adverts"
1410
  msgstr ""
1421
  msgid "Today"
1422
  msgstr "Dziś"
1423
 
1424
+ #: dashboard/publisher/adverts-main.php:102
1425
  msgid "No adverts created yet!"
1426
  msgstr ""
1427
 
1475
  msgid "Edit Group"
1476
  msgstr "Edytuj grupę"
1477
 
1478
+ #: dashboard/publisher/groups-edit.php:51
1479
+ #: dashboard/publisher/groups-main.php:33
1480
+ msgid "Name"
1481
+ msgstr "Nazwa"
1482
+
1483
  #: dashboard/publisher/groups-edit.php:60
1484
  msgid "Default - Show one ad at a time"
1485
  msgstr "Domyśłne - pokazuj jedną na raz"
1567
  "Domyślnie 6."
1568
 
1569
  #: dashboard/publisher/groups-edit.php:137
1570
+ #: dashboard/publisher/groups-edit.php:286
1571
  msgid ""
1572
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1573
  "Adverts\" and enter ID"
1574
  msgstr ""
1575
 
1576
  #: dashboard/publisher/groups-edit.php:149
1577
+ #: dashboard/publisher/groups-edit.php:298
1578
+ #: dashboard/publisher/groups-edit.php:390
1579
  msgid "Save Group"
1580
  msgstr "Zapisz grupę"
1581
 
1630
  "setting. Not every theme supports this feature."
1631
  msgstr ""
1632
 
 
 
 
 
 
1633
  #: dashboard/publisher/groups-edit.php:181
1634
  msgid "Enable Geo Targeting for this group."
1635
  msgstr ""
1652
  msgid "Do not forget to put at least one mobile advert in this group."
1653
  msgstr ""
1654
 
1655
+ #: dashboard/publisher/groups-edit.php:191
 
 
 
 
 
1656
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1657
  msgstr ""
1658
 
1659
+ #: dashboard/publisher/groups-edit.php:204
1660
+ #: dashboard/publisher/groups-edit.php:244
 
 
 
 
1661
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1662
  msgid "Disabled"
1663
  msgstr "Wyłącz"
1664
 
1665
  #: dashboard/publisher/groups-edit.php:206
1666
+ #: dashboard/publisher/groups-edit.php:246
1667
  msgid "Before content"
1668
  msgstr "Przed treścią"
1669
 
1670
  #: dashboard/publisher/groups-edit.php:207
1671
+ #: dashboard/publisher/groups-edit.php:247
1672
  msgid "After content"
1673
  msgstr "Po treści"
1674
 
1675
  #: dashboard/publisher/groups-edit.php:208
1676
+ #: dashboard/publisher/groups-edit.php:248
1677
  msgid "Before and after content"
1678
  msgstr "Przed i po treści"
1679
 
1680
  #: dashboard/publisher/groups-edit.php:209
1681
+ #: dashboard/publisher/groups-edit.php:249
1682
  msgid "Inside the content..."
1683
  msgstr ""
1684
 
1685
  #: dashboard/publisher/groups-edit.php:215
1686
+ #: dashboard/publisher/groups-edit.php:255
1687
  msgid "after the middle paragraph"
1688
  msgstr ""
1689
 
1690
  #: dashboard/publisher/groups-edit.php:216
1691
+ #: dashboard/publisher/groups-edit.php:256
1692
  msgid "after the 1st paragraph"
1693
  msgstr ""
1694
 
1695
  #: dashboard/publisher/groups-edit.php:217
1696
+ #: dashboard/publisher/groups-edit.php:257
1697
  msgid "after the 2nd paragraph"
1698
  msgstr ""
1699
 
1700
  #: dashboard/publisher/groups-edit.php:218
1701
+ #: dashboard/publisher/groups-edit.php:258
1702
  msgid "after the 3rd paragraph"
1703
  msgstr ""
1704
 
1705
  #: dashboard/publisher/groups-edit.php:219
1706
+ #: dashboard/publisher/groups-edit.php:259
1707
  msgid "after the 4th paragraph"
1708
  msgstr ""
1709
 
1710
  #: dashboard/publisher/groups-edit.php:220
1711
+ #: dashboard/publisher/groups-edit.php:260
1712
  msgid "after the 5th paragraph"
1713
  msgstr ""
1714
 
1715
  #: dashboard/publisher/groups-edit.php:221
1716
+ #: dashboard/publisher/groups-edit.php:261
1717
  msgid "after the 6th paragraph"
1718
  msgstr ""
1719
 
1720
  #: dashboard/publisher/groups-edit.php:222
1721
+ #: dashboard/publisher/groups-edit.php:262
1722
  msgid "after the 7th paragraph"
1723
  msgstr ""
1724
 
1725
  #: dashboard/publisher/groups-edit.php:223
1726
+ #: dashboard/publisher/groups-edit.php:263
1727
  msgid "after the 8th paragraph"
1728
  msgstr ""
1729
 
 
 
 
 
 
 
 
 
1730
  #: dashboard/publisher/groups-edit.php:239
1731
+ msgid "Page Injection"
1732
  msgstr ""
1733
 
1734
+ #: dashboard/publisher/groups-edit.php:302
 
 
 
 
 
 
 
 
1735
  msgid "Wrapper code"
1736
  msgstr "Kod wrappera"
1737
 
1738
+ #: dashboard/publisher/groups-edit.php:303
1739
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1740
  msgstr ""
1741
 
1742
+ #: dashboard/publisher/groups-edit.php:307
1743
  msgid "Before advert"
1744
  msgstr ""
1745
 
1746
+ #: dashboard/publisher/groups-edit.php:310
1747
+ #: dashboard/publisher/groups-edit.php:318
1748
+ msgid "Example:"
1749
+ msgstr "Przykład:"
1750
+
1751
+ #: dashboard/publisher/groups-edit.php:311
1752
  msgid "Options:"
1753
  msgstr "Opcje:"
1754
 
1755
+ #: dashboard/publisher/groups-edit.php:315
1756
  msgid "After advert"
1757
  msgstr ""
1758
 
1759
+ #: dashboard/publisher/groups-edit.php:324
1760
  msgid "Select adverts"
1761
  msgstr ""
1762
 
1763
+ #: dashboard/publisher/groups-edit.php:329
1764
  msgid "Choose adverts"
1765
  msgstr ""
1766
 
1767
+ #: dashboard/publisher/groups-edit.php:335
1768
  msgid "Visible until"
1769
  msgstr "Widoczne do"
1770
 
1771
+ #: dashboard/publisher/groups-edit.php:377
1772
  msgid "No adverts created!"
1773
  msgstr ""
1774
 
1775
+ #: dashboard/publisher/groups-main.php:12
1776
+ msgid "Manage Groups"
1777
+ msgstr "Zarządzaj grupami"
1778
+
1779
  #: dashboard/publisher/groups-main.php:21
1780
  msgid "Delete Group"
1781
  msgstr "Usuń grupę"
1793
  msgstr "Nie można cofnąć tego ruchu!"
1794
 
1795
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1796
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
1797
+ #: dashboard/settings/maintenance.php:96
1798
  msgid "OK to continue, CANCEL to stop."
1799
  msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
1800
 
1861
  msgstr ""
1862
 
1863
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1864
+ #: dashboard/settings/maintenance.php:103 dashboard/settings/misc.php:43
1865
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1866
+ #: dashboard/settings/statistics.php:79
1867
  msgid "Update Options"
1868
  msgstr "Zapisz opcje"
1869
 
2169
  msgid "Are you sure you want to continue?"
2170
  msgstr "Czy jesteś pewien że chcesz kontynuować?"
2171
 
2172
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
2173
+ #: dashboard/settings/maintenance.php:96
2174
  msgid "This might take a while and may slow down your site during this action!"
2175
  msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
2176
 
2179
  msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
2180
 
2181
  #: dashboard/settings/maintenance.php:32
2182
+ msgid "Delete old tracker data. (Does nothing if you use a memcached plugin)"
 
 
2183
  msgstr ""
2184
 
2185
+ #: dashboard/settings/maintenance.php:33
2186
  msgid ""
2187
+ "For when you create an advert, group or schedule and it does not save or "
2188
+ "keep changes you make."
2189
  msgstr ""
2190
 
2191
+ #: dashboard/settings/maintenance.php:33
2192
  msgid ""
2193
+ "Additionally you can clean up old schedules, tracker data and/or statistics. "
2194
+ "This will improve the speed of your site."
2195
  msgstr ""
2196
 
2197
+ #: dashboard/settings/maintenance.php:37
2198
  msgid "Re-evaluate Ads"
2199
  msgstr "Oszacuj ponownie reklamy."
2200
 
2201
+ #: dashboard/settings/maintenance.php:39
2202
  msgid "Re-evaluate all ads"
2203
  msgstr "Oszacuj ponownie wszystkie reklamy."
2204
 
2205
+ #: dashboard/settings/maintenance.php:39
2206
  msgid "You are about to check all ads for errors."
2207
  msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
2208
 
2209
+ #: dashboard/settings/maintenance.php:40
2210
  msgid ""
2211
  "This will apply all evaluation rules to all ads to see if any error slipped "
2212
  "in. Normally you should not need this feature."
2215
  "na wszystkich reklamach oraz przejrze nie wszystkich błędów. Normalnie nie "
2216
  "potrzebujesz wykorzystywać tej funkcji."
2217
 
2218
+ #: dashboard/settings/maintenance.php:44
2219
  msgid ""
2220
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2221
  "database. They only apply to your ads/groups and stats. Not to other "
2228
  "is not a valid point in any case."
2229
  msgstr ""
2230
 
2231
+ #: dashboard/settings/maintenance.php:46
2232
  msgid "Troubleshooting"
2233
  msgstr "Masz problem"
2234
 
2235
+ #: dashboard/settings/maintenance.php:47
2236
  msgid ""
2237
  "The below options are not meant for normal use and are only there for "
2238
  "developers to review saved settings or how ads are selected. These can be "
2240
  "SHOULD BE LEFT UNCHECKED!!"
2241
  msgstr ""
2242
 
2243
+ #: dashboard/settings/maintenance.php:50
2244
  msgid "Developer Debug"
2245
  msgstr "Debuger dewelopera"
2246
 
2247
+ #: dashboard/settings/maintenance.php:52
2248
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2249
  msgstr ""
2250
 
2251
+ #: dashboard/settings/maintenance.php:53
2252
  msgid "View advert specs and (some) stats in the dashboard."
2253
  msgstr ""
2254
 
2255
+ #: dashboard/settings/maintenance.php:54
2256
  msgid ""
2257
  "Disable timers for clicks and impressions and enable a alert window for "
2258
  "clicktracking."
2260
  "Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
2261
  "śledzenia kliknięć."
2262
 
2263
+ #: dashboard/settings/maintenance.php:55
2264
  msgid "Temporarily disable encryption on the redirect url."
2265
  msgstr "Tymczasowo wyłącz szyfrowanie na przekierowanym adresie URL."
2266
 
2267
+ #: dashboard/settings/maintenance.php:60
2268
  msgid "Status and Versions"
2269
  msgstr ""
2270
 
2271
+ #: dashboard/settings/maintenance.php:63
2272
  msgid "Current status of adverts"
2273
  msgstr "Bieżący status reklam"
2274
 
2275
+ #: dashboard/settings/maintenance.php:64
2276
  msgid "Normal"
2277
  msgstr "Normalny"
2278
 
2279
+ #: dashboard/settings/maintenance.php:64
2280
  msgid "Error"
2281
  msgstr "Błąd"
2282
 
2283
+ #: dashboard/settings/maintenance.php:64
2284
  msgid "Expired"
2285
  msgstr "Wygasa"
2286
 
2287
+ #: dashboard/settings/maintenance.php:64
2288
  msgid "Expires Soon"
2289
  msgstr "Wygas wkrótce"
2290
 
2291
+ #: dashboard/settings/maintenance.php:64
2292
  msgid "Unknown"
2293
  msgstr ""
2294
 
2295
+ #: dashboard/settings/maintenance.php:67
2296
  msgid "Banners/assets Folder"
2297
  msgstr ""
2298
 
2299
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2300
  msgid "Exists and appears writable"
2301
  msgstr ""
2302
 
2303
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2304
  msgid "Not writable or does not exist"
2305
  msgstr ""
2306
 
2307
+ #: dashboard/settings/maintenance.php:71
2308
  msgid "Reports Folder"
2309
  msgstr ""
2310
 
2311
+ #: dashboard/settings/maintenance.php:77
2312
  msgid "Advert evaluation"
2313
  msgstr ""
2314
 
2315
+ #: dashboard/settings/maintenance.php:78 dashboard/settings/maintenance.php:80
2316
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2317
  msgstr ""
2318
 
2319
+ #: dashboard/settings/maintenance.php:79
2320
+ msgid "Clean Transients"
2321
  msgstr ""
2322
 
2323
+ #: dashboard/settings/maintenance.php:84
2324
  msgid "Internal Versions"
2325
  msgstr ""
2326
 
2327
+ #: dashboard/settings/maintenance.php:85
2328
  msgid ""
2329
  "Unless you experience database issues or a warning shows below, these "
2330
  "numbers are not really relevant for troubleshooting. Support may ask for "
2331
  "them to verify your database status."
2332
  msgstr ""
2333
 
2334
+ #: dashboard/settings/maintenance.php:88
2335
  msgid "AdRotate version"
2336
  msgstr ""
2337
 
2338
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2339
  msgid "Current:"
2340
  msgstr ""
2341
 
2342
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2343
  msgid "Should be:"
2344
  msgstr ""
2345
 
2346
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2347
  msgid "Previous:"
2348
  msgstr ""
2349
 
2350
+ #: dashboard/settings/maintenance.php:90
2351
  msgid "Database version"
2352
  msgstr ""
2353
 
2354
+ #: dashboard/settings/maintenance.php:96
2355
+ msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2356
+ msgstr ""
2357
+
2358
+ #: dashboard/settings/maintenance.php:96
2359
+ msgid "Make sure you have a database backup!"
2360
+ msgstr ""
2361
+
2362
+ #: dashboard/settings/maintenance.php:97
2363
+ msgid ""
2364
+ "Attempt to update the database and migrate settings where required or "
2365
+ "relevant. Normally you should not need or use this option."
2366
+ msgstr ""
2367
+
2368
  #: dashboard/settings/misc.php:16
2369
  msgid "Miscellaneous"
2370
  msgstr "Różne"
2799
  msgstr ""
2800
  "Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
2801
 
2802
+ #: dashboard/settings/statistics.php:71
2803
+ msgid "Clean up temporary data"
2804
+ msgstr ""
2805
+
2806
+ #: dashboard/settings/statistics.php:73
2807
+ msgid ""
2808
+ "Periodically delete old tracker data. If you are using a memcached plugin "
2809
+ "you should disable this option!"
2810
+ msgstr ""
2811
+
2812
+ #, fuzzy
2813
+ #~ msgid "Help AdRotate Grow"
2814
+ #~ msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
2815
+
2816
+ #, fuzzy
2817
+ #~ msgid "Manage Schedules"
2818
+ #~ msgstr "Zarządzaj"
2819
+
2820
+ #, fuzzy
2821
+ #~ msgid "Manage Media"
2822
+ #~ msgstr "Media:"
2823
+
2824
+ #, fuzzy
2825
+ #~ msgid "Schedule Management available in AdRotate Pro"
2826
+ #~ msgstr "Dostępne w wersji AdRotate Pro"
2827
+
2828
+ #, fuzzy
2829
+ #~ msgid "Start"
2830
+ #~ msgstr "Start / Koniec"
2831
+
2832
+ #, fuzzy
2833
+ #~ msgid "End"
2834
+ #~ msgstr "Start / Koniec"
2835
+
2836
+ #~ msgid "Ads"
2837
+ #~ msgstr "Reklamy"
2838
+
2839
+ #~ msgid "Max Impressions"
2840
+ #~ msgstr "Maksymalna liczba wyświetleń"
2841
+
2842
+ #~ msgid "Max Clicks"
2843
+ #~ msgstr "Maksymalna liczna kliknięć"
2844
+
2845
+ #, fuzzy
2846
+ #~ msgid "No schedules created yet!"
2847
+ #~ msgstr "Nie utworzono jeszcze żadnych reklam!"
2848
+
2849
+ #, fuzzy
2850
+ #~ msgid "Easily manage your schedules from here with AdRotate Pro."
2851
+ #~ msgstr "Więcej ustawień z AdRotate Pro"
2852
+
2853
+ #, fuzzy
2854
+ #~ msgid "Upgrade today!"
2855
+ #~ msgstr "Dziś"
2856
+
2857
+ #, fuzzy
2858
+ #~ msgid "Media Management available in AdRotate Pro"
2859
+ #~ msgstr "Dostępne w wersji AdRotate Pro"
2860
+
2861
+ #, fuzzy
2862
+ #~ msgid "Media uploading and management is available in AdRotate Pro."
2863
+ #~ msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
2864
+
2865
+ #, fuzzy
2866
+ #~ msgid ""
2867
+ #~ "For responsive adverts make sure the filename is in the following format; "
2868
+ #~ "\"imagename.full.ext\". A full set of sized images is strongly "
2869
+ #~ "recommended."
2870
+ #~ msgstr ""
2871
+ #~ "Wyślij obrazy do folderu banerów i upewnij się że pliki mają odpowiednie "
2872
+ #~ "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
2873
+ #~ "pełnego wachlarza rozmiarów.'"
2874
+
2875
+ #~ msgid ""
2876
+ #~ "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in "
2877
+ #~ "the filename instead of \".full\" for the various viewports."
2878
+ #~ msgstr ""
2879
+ #~ "Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
2880
+ #~ "\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
2881
+
2882
+ #, fuzzy
2883
+ #~ msgid ""
2884
+ #~ "image.full.jpg, image.320.jpg and image.768.jpg will serve the same "
2885
+ #~ "advert for different viewports."
2886
+ #~ msgstr ""
2887
+ #~ "image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie "
2888
+ #~ "w różnych widokach. Wymaga jQuery."
2889
+
2890
+ #, fuzzy
2891
+ #~ msgid "Actions"
2892
+ #~ msgstr "Działania masowe"
2893
+
2894
+ #, fuzzy
2895
+ #~ msgid "Manage your banner folder from here with AdRotate Pro."
2896
+ #~ msgstr "Więcej ustawień z AdRotate Pro"
2897
+
2898
+ #~ msgid "Everything below is optional."
2899
+ #~ msgstr "Wszystkie opcje poniżej są opcjonalne."
2900
+
2901
+ #~ msgid "For administrative purposes set a sortorder."
2902
+ #~ msgstr "Dla celów administracyjnych ustaw sortowanie."
2903
+
2904
+ #~ msgid "Leave empty or 0 to skip this. Will default to ad id."
2905
+ #~ msgstr ""
2906
+ #~ "Pozostaw puste albo wpisz 0 by pominąć te ustawienia. Domyślnie ID "
2907
+ #~ "reklamy."
2908
+
2909
+ #~ msgid "Select the countries you want the adverts to show in."
2910
+ #~ msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
2911
+
2912
+ #~ msgid "Cities take priority and will be filtered first."
2913
+ #~ msgstr "Miasta mają pierwszeństwo i będą filtrowane jaki pierwsze."
2914
+
2915
+ #~ msgid "Leave empty or 0 to skip this. Will default to group id."
2916
+ #~ msgstr ""
2917
+ #~ "Pozostaw puste albo wpisz 0 by ominąc tą opcje. Domyślnie dla ID grupy."
2918
+
2919
+ #~ msgid "Which categories?"
2920
+ #~ msgstr "Która kategoria?"
2921
+
2922
+ #~ msgid "Click the categories posts you want the adverts to show in."
2923
+ #~ msgstr "Wybierz kategorie wpisów na których chcesz wyświetlać reklamy."
2924
+
2925
+ #~ msgid "Which pages?"
2926
+ #~ msgstr "Które strony?"
2927
+
2928
+ #~ msgid "Click the pages you want the adverts to show in."
2929
+ #~ msgstr "Wybierz strony na których chcesz wyświetlać reklamy."
2930
+
2931
  #~ msgid "Enable responsive support for this advert."
2932
  #~ msgstr "Włącz responsywny wygląd dla tej reklamy."
2933
 
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: 2016-07-17 23:25+0800\n"
6
- "PO-Revision-Date: 2016-07-17 23:25+0800\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,109 +13,109 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:842
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
- #: adrotate-functions.php:845
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
- #: adrotate-functions.php:894
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
- #: adrotate-functions.php:898
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
- #: adrotate-functions.php:902
36
  msgid "Ad(s) deleted"
37
  msgstr "Izbrisani oglasu"
38
 
39
- #: adrotate-functions.php:906
40
  msgid "Group deleted"
41
  msgstr "Izbrisana grupa"
42
 
43
- #: adrotate-functions.php:910
44
  msgid "Ad(s) statistics reset"
45
  msgstr "Statistički resestovani oglasi"
46
 
47
- #: adrotate-functions.php:914
48
  msgid "Ad(s) renewed"
49
  msgstr "Ponovo obnovljeni oglasi"
50
 
51
- #: adrotate-functions.php:918
52
  msgid "Ad(s) deactivated"
53
  msgstr "Deaktivirani oglasi"
54
 
55
- #: adrotate-functions.php:922
56
  msgid "Ad(s) activated"
57
  msgstr "Aktivirani oglasi"
58
 
59
- #: adrotate-functions.php:926
60
  msgid "Group including it's Ads deleted"
61
  msgstr "Grupa koja podrazumeva obrisane oglase"
62
 
63
- #: adrotate-functions.php:930
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "Izlazne opcije za"
67
 
68
- #: adrotate-functions.php:935
69
  msgid "Settings saved"
70
  msgstr "Postavke sačuvane"
71
 
72
- #: adrotate-functions.php:939
73
  msgid "Database optimized"
74
  msgstr "Baza podataka optimizirana"
75
 
76
- #: adrotate-functions.php:943
77
  msgid "Database repaired"
78
  msgstr "Baza podataka popravljena"
79
 
80
- #: adrotate-functions.php:947
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr "Oglasi procenjuju i statusi su ispravljene kada je to potrebno"
83
 
84
- #: adrotate-functions.php:951
85
  msgid "Empty database records removed"
86
  msgstr "Prazni zapisi baze podataka uklanjaju"
87
 
88
- #: adrotate-functions.php:956
89
  msgid "Action prohibited"
90
  msgstr "Zabranjeno delo"
91
 
92
- #: adrotate-functions.php:960
93
  msgid ""
94
  "The ad was saved but has an issue which might prevent it from working "
95
  "properly. Review the colored ad."
96
  msgstr ""
97
 
98
- #: adrotate-functions.php:964
99
  msgid "No data found in selected time period"
100
  msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
101
 
102
- #: adrotate-functions.php:968
103
  msgid "Database can only be optimized or cleaned once every hour"
104
  msgstr "Baza podataka može biti optimizovana ili čiste jednom svaki sat"
105
 
106
- #: adrotate-functions.php:972
107
  msgid "Form can not be (partially) empty!"
108
  msgstr ""
109
 
110
- #: adrotate-functions.php:976
111
  msgid "No ads found."
112
  msgstr ""
113
 
114
- #: adrotate-functions.php:980
115
  msgid "Unexpected error"
116
  msgstr ""
117
 
118
- #: adrotate-manage-publisher.php:685
119
  msgid "AdRotate Advertiser"
120
  msgstr ""
121
 
@@ -193,223 +193,221 @@ msgid "An unknown error occured."
193
  msgstr "Nepoznati error se ukazao."
194
 
195
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
196
- #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
197
  msgid "Check adverts"
198
  msgstr ""
199
 
200
- #: adrotate-output.php:675
201
  msgid ""
202
  "You have enable caching support but W3 Total Cache is not active on your "
203
  "site!"
204
  msgstr ""
205
 
206
- #: adrotate-output.php:678
207
  msgid ""
208
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
209
  "not set."
210
  msgstr ""
211
 
212
- #: adrotate-output.php:683
213
  msgid "Your AdRotate Banner folder is not writable or does not exist."
214
  msgstr ""
215
 
216
- #: adrotate-output.php:723 dashboard/adrotatepro.php:99
217
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
218
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
219
- #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
220
- #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
221
- #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
222
- #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
223
  #: dashboard/settings/geotargeting.php:35
224
  #, fuzzy
225
  msgid "Buy now"
226
  msgstr "Kupite odmah"
227
 
228
- #: adrotate-output.php:724
229
  msgid ""
230
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
231
  "to the <strong>PRO</strong> version"
232
  msgstr ""
233
 
234
- #: adrotate-output.php:724
235
  #, php-format
236
  msgid ""
237
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
238
  msgstr ""
239
 
240
- #: adrotate-output.php:724
241
  msgid "Thank you for your purchase!"
242
  msgstr ""
243
 
244
- #: adrotate-output.php:785
245
  msgid ""
246
- "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
247
- "this menu. Check out the"
248
  msgstr ""
249
 
250
- #: adrotate-output.php:785
251
  msgid "manuals"
252
  msgstr "priručnici"
253
 
254
- #: adrotate-output.php:785 adrotate-output.php:852
255
  msgid "and"
256
  msgstr ""
257
 
258
- #: adrotate-output.php:785
259
  msgid "forums"
260
  msgstr ""
261
 
262
- #: adrotate-output.php:815
263
  #, fuzzy
264
  msgid "Useful Links"
265
  msgstr "Korisni linkovi"
266
 
267
- #: adrotate-output.php:816
268
  msgid "Useful links to learn more about AdRotate"
269
  msgstr ""
270
 
271
- #: adrotate-output.php:818
272
  msgid "AdRotate website"
273
  msgstr ""
274
 
275
- #: adrotate-output.php:819
276
  #, fuzzy
277
  msgid "Getting Started With AdRotate"
278
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
279
 
280
- #: adrotate-output.php:820
281
  #, fuzzy
282
  msgid "AdRotate manuals"
283
  msgstr "AdRotate informacije"
284
 
285
- #: adrotate-output.php:821
286
  #, fuzzy
287
  msgid "AdRotate Support Forum"
288
  msgstr "AdRotate prodavnica"
289
 
290
- #: adrotate-output.php:844
291
- #, fuzzy
292
- msgid "Help AdRotate Grow"
293
- msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
294
 
295
- #: adrotate-output.php:845
296
- msgid "Follow Arnan on Facebook"
297
  msgstr ""
298
 
299
- #: adrotate-output.php:852
300
  msgid ""
301
- "A lot of users only think to review AdRotate when something goes wrong while "
302
- "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
303
  msgstr ""
304
 
305
- #: adrotate-output.php:852
306
- msgid "If you find AdRotate useful please leave your honest"
307
  msgstr ""
308
 
309
- #: adrotate-output.php:852
310
  msgid "rating"
311
  msgstr ""
312
 
313
- #: adrotate-output.php:852
314
  #, fuzzy
315
  msgid "review"
316
  msgstr "Dajte ocenu i komentar"
317
 
318
- #: adrotate-output.php:852
319
  msgid "on WordPress.org to help AdRotate grow in a positive way"
320
  msgstr ""
321
 
322
- #: adrotate-output.php:885 dashboard/settings/notifications.php:50
323
  #: dashboard/settings/notifications.php:80
324
  msgid "Available in AdRotate Pro"
325
  msgstr "Dostupno u AdRotate Pro"
326
 
327
- #: adrotate-output.php:885
328
  #, fuzzy
329
  msgid "More information..."
330
  msgstr "Saznajte više"
331
 
332
- #: adrotate-output.php:886
333
  msgid "This feature is available in AdRotate Pro"
334
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
335
 
336
- #: adrotate-output.php:886
337
  msgid "Learn more"
338
  msgstr "Saznajte više"
339
 
340
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
341
- #: dashboard/publisher/adverts-edit.php:235
342
  msgid "January"
343
  msgstr "Januar"
344
 
345
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
346
- #: dashboard/publisher/adverts-edit.php:236
347
  msgid "February"
348
  msgstr "Februar"
349
 
350
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
351
- #: dashboard/publisher/adverts-edit.php:237
352
  msgid "March"
353
  msgstr "Mart"
354
 
355
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
356
- #: dashboard/publisher/adverts-edit.php:238
357
  msgid "April"
358
  msgstr "April"
359
 
360
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
361
- #: dashboard/publisher/adverts-edit.php:239
362
  msgid "May"
363
  msgstr "Maj"
364
 
365
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
366
- #: dashboard/publisher/adverts-edit.php:240
367
  msgid "June"
368
  msgstr "Jun"
369
 
370
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
371
- #: dashboard/publisher/adverts-edit.php:241
372
  msgid "July"
373
  msgstr "Jul"
374
 
375
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
376
- #: dashboard/publisher/adverts-edit.php:242
377
  msgid "August"
378
  msgstr "Avgust"
379
 
380
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
381
- #: dashboard/publisher/adverts-edit.php:243
382
  msgid "September"
383
  msgstr "Septembar"
384
 
385
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
386
- #: dashboard/publisher/adverts-edit.php:244
387
  msgid "October"
388
  msgstr "Oktobar"
389
 
390
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
391
- #: dashboard/publisher/adverts-edit.php:245
392
  msgid "November"
393
  msgstr "Novembar"
394
 
395
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
396
- #: dashboard/publisher/adverts-edit.php:246
397
  msgid "December"
398
  msgstr "Decembar"
399
 
400
- #: adrotate-statistics.php:222
401
  msgid "Previous"
402
  msgstr "Prethodno"
403
 
404
- #: adrotate-statistics.php:224
405
  msgid "This month"
406
  msgstr "Ovaj mesec"
407
 
408
- #: adrotate-statistics.php:225
409
  msgid "Next"
410
  msgstr "Sledeći"
411
 
412
- #: adrotate-statistics.php:278
413
  msgid "No data to show!"
414
  msgstr "Nema podataka za prikaz!"
415
 
@@ -455,271 +453,58 @@ msgstr "ID:"
455
  msgid "Fill in the ID of the type you want to display!"
456
  msgstr "Popunite ID tipa koji želite da prikažete!"
457
 
458
- #: adrotate.php:102
459
  msgid "General Info"
460
  msgstr "Opšte informacije"
461
 
462
- #: adrotate.php:103
463
  msgid "AdRotate Pro"
464
  msgstr "AdRotate Pro"
465
 
466
- #: adrotate.php:104
467
- msgid "Manage Adverts"
468
- msgstr ""
469
-
470
- #: adrotate.php:105 dashboard/publisher/groups-main.php:12
471
- msgid "Manage Groups"
472
- msgstr "Upravljajte grupama"
473
-
474
- #: adrotate.php:106 adrotate.php:369
475
- #, fuzzy
476
- msgid "Manage Schedules"
477
- msgstr "Upravljati"
478
 
479
- #: adrotate.php:107
480
- #, fuzzy
481
- msgid "Manage Media"
482
- msgstr "Media:"
483
 
484
- #: adrotate.php:108
485
  msgid "Settings"
486
  msgstr "Postavke"
487
 
488
- #: adrotate.php:128
489
  msgid "AdRotate Info"
490
  msgstr "AdRotate informacije"
491
 
492
- #: adrotate.php:146
493
  #, fuzzy
494
  msgid "AdRotate Professional"
495
  msgstr "AdRotate promocije"
496
 
497
- #: adrotate.php:186
498
  msgid "Advert Management"
499
  msgstr ""
500
 
501
- #: adrotate.php:244 adrotate.php:311 adrotate.php:364
502
  msgid "Manage"
503
  msgstr "Upravljati"
504
 
505
- #: adrotate.php:245 adrotate.php:312 adrotate.php:365
506
  msgid "Add New"
507
  msgstr "Dodati novi"
508
 
509
- #: adrotate.php:305
510
  msgid "Group Management"
511
  msgstr "Menadžment grupe"
512
 
513
- #: adrotate.php:314
514
  msgid "Report"
515
  msgstr "Izveštaj"
516
 
517
- #: adrotate.php:360
518
- #, fuzzy
519
- msgid "Schedule Management available in AdRotate Pro"
520
- msgstr "Dostupno u AdRotate Pro"
521
-
522
- #: adrotate.php:370
523
- #, fuzzy
524
- msgid ""
525
- "Schedule management and multiple schedules per advert is available in "
526
- "AdRotate Pro."
527
- msgstr "Ova karakteristika je dostupna na AdRotate Pro"
528
-
529
- #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
530
- #: dashboard/publisher/adverts-main.php:114
531
- #: dashboard/publisher/groups-edit.php:71
532
- #: dashboard/publisher/groups-main.php:89
533
- #, fuzzy
534
- msgid "More information"
535
- msgstr "Saznajte više"
536
-
537
- #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
538
- #: dashboard/publisher/adverts-error.php:19
539
- #: dashboard/publisher/adverts-main.php:20
540
- #: dashboard/publisher/groups-main.php:20
541
- msgid "Bulk Actions"
542
- msgstr "Delo bulk-ovanja"
543
-
544
- #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
545
- #: dashboard/publisher/adverts-error.php:29
546
- #: dashboard/publisher/adverts-main.php:30
547
- #: dashboard/publisher/groups-main.php:24
548
- msgid "Go"
549
- msgstr "Kreni"
550
-
551
- #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
552
- #: dashboard/publisher/adverts-error.php:39
553
- #: dashboard/publisher/adverts-main.php:39
554
- #: dashboard/publisher/groups-main.php:32
555
- msgid "ID"
556
- msgstr "ID"
557
-
558
- #: adrotate.php:388
559
- #, fuzzy
560
- msgid "Start"
561
- msgstr "Početno vreme (hh:mm):"
562
-
563
- #: adrotate.php:388
564
- #, fuzzy
565
- msgid "End"
566
- msgstr "Završno vreme (hh:mm):"
567
-
568
- #: adrotate.php:389
569
- msgid "Ads"
570
- msgstr "Oglasi"
571
-
572
- #: adrotate.php:391
573
- #, fuzzy
574
- msgid "Max Impressions"
575
- msgstr "Utisci"
576
-
577
- #: adrotate.php:392
578
- #, fuzzy
579
- msgid "Max Clicks"
580
- msgstr "Klikovi"
581
-
582
- #: adrotate.php:422
583
- #, fuzzy
584
- msgid "No schedules created yet!"
585
- msgstr "Nijedan blok nije stvoren još uvek!"
586
-
587
- #: adrotate.php:427
588
- #, fuzzy
589
- msgid "Easily manage your schedules from here with AdRotate Pro."
590
- msgstr "Nabvite jos karakteristika! AdRotate Pro."
591
-
592
- #: adrotate.php:427 adrotate.php:490
593
- #, fuzzy
594
- msgid "Upgrade today!"
595
- msgstr "Danas"
596
-
597
- #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
598
- #: dashboard/publisher/groups-edit.php:383
599
- msgid "Expires soon."
600
- msgstr "Ističe uskoro."
601
-
602
- #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
603
- #: dashboard/publisher/groups-edit.php:384
604
- msgid "Has expired."
605
- msgstr "Isteklo je."
606
-
607
- #: adrotate.php:452
608
- #, fuzzy
609
- msgid "Media Management available in AdRotate Pro"
610
- msgstr "Dostupno u AdRotate Pro"
611
-
612
- #: adrotate.php:454
613
- msgid "Upload images to the AdRotate Pro banners folder from here."
614
- msgstr ""
615
-
616
- #: adrotate.php:454
617
- msgid ""
618
- "This is useful if you use responsive adverts with multiple images or have "
619
- "HTML5 adverts containing multiple files."
620
- msgstr ""
621
-
622
- #: adrotate.php:454
623
- #, fuzzy
624
- msgid "Media uploading and management is available in AdRotate Pro."
625
- msgstr "Ova karakteristika je dostupna na AdRotate Pro"
626
-
627
- #: adrotate.php:456
628
- msgid "Upload new file"
629
- msgstr ""
630
-
631
- #: adrotate.php:457
632
- msgid "Accepted files:"
633
- msgstr ""
634
-
635
- #: adrotate.php:457
636
- msgid "For HTML5 ads you can also upload html and javascript files."
637
- msgstr ""
638
-
639
- #: adrotate.php:457
640
- msgid "Maximum size is 512Kb."
641
- msgstr ""
642
-
643
- #: adrotate.php:457
644
- msgid "Important:"
645
- msgstr ""
646
-
647
- #: adrotate.php:457
648
- msgid ""
649
- "Make sure your file has no spaces or special characters in the name. Replace "
650
- "spaces with a - or _."
651
- msgstr ""
652
-
653
- #: adrotate.php:457
654
- msgid ""
655
- "If you remove spaces from filenames for HTML5 adverts also edit the html "
656
- "file so it knows about the changed name. For example for the javascript file."
657
- msgstr ""
658
-
659
- #: adrotate.php:460
660
- msgid ""
661
- "For responsive adverts make sure the filename is in the following format; "
662
- "\"imagename.full.ext\". A full set of sized images is strongly recommended."
663
- msgstr ""
664
-
665
- #: adrotate.php:461
666
- msgid ""
667
- "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
668
- "filename instead of \".full\" for the various viewports."
669
- msgstr ""
670
-
671
- #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
672
- #: dashboard/publisher/groups-edit.php:316
673
- msgid "Example:"
674
- msgstr "Primer"
675
-
676
- #: adrotate.php:462
677
- msgid ""
678
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
679
- "for different viewports."
680
- msgstr ""
681
-
682
- #: adrotate.php:466
683
- msgid "Upload file"
684
- msgstr ""
685
-
686
- #: adrotate.php:466
687
- msgid "Click only once per file!"
688
- msgstr ""
689
-
690
- #: adrotate.php:469
691
- msgid "Available files in"
692
- msgstr ""
693
-
694
- #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
695
- #: dashboard/publisher/groups-main.php:33
696
- msgid "Name"
697
- msgstr "Ime"
698
-
699
- #: adrotate.php:475
700
- #, fuzzy
701
- msgid "Actions"
702
- msgstr "Delo bulk-ovanja"
703
-
704
- #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
705
- #: adrotate.php:484 adrotate.php:485 adrotate.php:486
706
- #: dashboard/publisher/adverts-disabled.php:22
707
- #: dashboard/publisher/adverts-error.php:21
708
- #: dashboard/publisher/adverts-main.php:22
709
- msgid "Delete"
710
- msgstr "Obrisati"
711
-
712
- #: adrotate.php:490
713
- msgid ""
714
- "Make sure the banner images are not in use by adverts when you delete them!"
715
- msgstr ""
716
-
717
- #: adrotate.php:490
718
- #, fuzzy
719
- msgid "Manage your banner folder from here with AdRotate Pro."
720
- msgstr "Nabvite jos karakteristika! AdRotate Pro."
721
-
722
- #: adrotate.php:516
723
  msgid "AdRotate Settings"
724
  msgstr "AdRotate postavke"
725
 
@@ -744,8 +529,9 @@ msgstr ""
744
  msgid ""
745
  "Target mobile users with ease and show the right adverts to smartphones, "
746
  "tablets and computers. Mix and match as you please and offer adverts that "
747
- "suit the device. Create as many mobile adverts as you want without effort "
748
- "and with a few easy to use options they show up where you want them to!"
 
749
  msgstr ""
750
 
751
  #: dashboard/adrotatepro.php:34
@@ -772,39 +558,40 @@ msgid ""
772
  "forum. Get a solution (usually) within one business day."
773
  msgstr ""
774
 
775
- #: dashboard/adrotatepro.php:48 dashboard/info.php:119
776
  msgid "AdRotate is brought to you by"
777
  msgstr "AdRotate vam je omogućio"
778
 
779
- #: dashboard/adrotatepro.php:74
780
  msgid "Schedule all campaigns with ease"
781
  msgstr ""
782
 
783
- #: dashboard/adrotatepro.php:77
784
  msgid ""
785
  "Schedule your adverts and set up advertising campaigns based on dates you or "
786
- "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
787
- "You name it, AdRotate schedules it. This makes planning your revenue stream "
788
- "much more easy. You can set one or many schedules for adverts."
 
789
  msgstr ""
790
 
791
- #: dashboard/adrotatepro.php:81
792
  msgid "Avoid adblockers"
793
  msgstr ""
794
 
795
- #: dashboard/adrotatepro.php:84
796
  msgid ""
797
- "Try and avoid adblockers so you adverts get the exposure you want them to "
798
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
799
  "adverts are less likely to be removed. Of-course make sure you create your "
800
  "adverts smartly so these features reach their full potential!"
801
  msgstr ""
802
 
803
- #: dashboard/adrotatepro.php:88
804
  msgid "Stay up-to-date with notifications"
805
  msgstr ""
806
 
807
- #: dashboard/adrotatepro.php:91
808
  msgid ""
809
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
810
  "adverts expire or need your attention. Additionally, send push notifications "
@@ -812,95 +599,95 @@ msgid ""
812
  "or when advertisers create new adverts. Never miss an expiration date again."
813
  msgstr ""
814
 
815
- #: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
816
- #: dashboard/info.php:78
817
  #, fuzzy
818
  msgid "Buy AdRotate Professional"
819
  msgstr "Kupite odmah"
820
 
821
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
822
  msgid "Single License"
823
  msgstr ""
824
 
825
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
826
  #, fuzzy
827
  msgid "For one WordPress installation."
828
  msgstr "Instalacije"
829
 
830
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
831
- #: dashboard/info.php:83 dashboard/info.php:90
832
  msgid "Duo License"
833
  msgstr ""
834
 
835
- #: dashboard/adrotatepro.php:100 dashboard/info.php:83
836
  #, fuzzy
837
  msgid "For two WordPress installations."
838
  msgstr "Instalacije"
839
 
840
- #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
841
- #: dashboard/info.php:84 dashboard/info.php:91
842
  msgid "Multi License"
843
  msgstr ""
844
 
845
- #: dashboard/adrotatepro.php:101 dashboard/info.php:84
846
  #, fuzzy
847
  msgid " For up to five WordPress installations."
848
  msgstr "Instalacije"
849
 
850
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
851
- #: dashboard/info.php:85 dashboard/info.php:92
852
  #, fuzzy
853
  msgid "Developer License"
854
  msgstr "Debug za programera"
855
 
856
- #: dashboard/adrotatepro.php:102 dashboard/info.php:85
857
  msgid "Unlimited WordPress installations and/or networks."
858
  msgstr ""
859
 
860
- #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
861
- #: dashboard/info.php:86 dashboard/info.php:94
862
  msgid "Compare licenses"
863
  msgstr ""
864
 
865
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
866
  msgid "Not sure which license is for you? Compare them..."
867
  msgstr ""
868
 
869
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
870
  #, fuzzy
871
  msgid "All Licenses"
872
  msgstr "Ponovo ocenite sve oglase"
873
 
874
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
875
  msgid "Lifetime License"
876
  msgstr ""
877
 
878
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
879
  msgid "Single installation."
880
  msgstr ""
881
 
882
- #: dashboard/adrotatepro.php:112 dashboard/info.php:90
883
  msgid "Up to 2 installations."
884
  msgstr ""
885
 
886
- #: dashboard/adrotatepro.php:113 dashboard/info.php:91
887
  msgid "Up to 10 installations."
888
  msgstr ""
889
 
890
- #: dashboard/adrotatepro.php:114 dashboard/info.php:92
891
  msgid "Up to 25 installations or multisite networks."
892
  msgstr ""
893
 
894
- #: dashboard/adrotatepro.php:115 dashboard/info.php:93
895
  msgid ""
896
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
897
  msgstr ""
898
 
899
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
900
  msgid "Not sure which license is for you?"
901
  msgstr ""
902
 
903
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
904
  msgid "Compare Licenses"
905
  msgstr ""
906
 
@@ -916,38 +703,41 @@ msgstr "Vaš pristup"
916
  msgid "Adverts that need you"
917
  msgstr "Oglasi koji su vam potrebni"
918
 
919
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
920
- #: dashboard/publisher/groups-main.php:34
921
- msgid "Adverts"
922
- msgstr "Oglasi"
923
-
924
  #: dashboard/info.php:38
925
  msgid "(Almost) Expired"
926
  msgstr "( Skoro ) Isteklo"
927
 
928
- #: dashboard/info.php:41
929
- msgid "Groups"
930
- msgstr "Grupe"
931
-
932
  #: dashboard/info.php:42
933
  msgid "Have errors"
934
  msgstr "Ima greške"
935
 
936
- #: dashboard/info.php:48
937
- msgid "Support AdRotate"
938
- msgstr "AdRotate podrška"
939
-
940
- #: dashboard/info.php:55
941
  msgid ""
942
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
943
  "for updates about me and my plugins. Thank you!"
944
  msgstr ""
945
 
946
- #: dashboard/info.php:105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
947
  msgid "AdRotate News"
948
  msgstr ""
949
 
950
- #: dashboard/info.php:123
951
  msgid ""
952
  "I am a digital nomad in the Philippines. Click on my name to find out more "
953
  "about me and what I am doing. Thanks for your support and for using my "
@@ -958,17 +748,44 @@ msgstr ""
958
  msgid "Disabled Adverts"
959
  msgstr ""
960
 
 
 
 
 
 
 
 
961
  #: dashboard/publisher/adverts-disabled.php:21
962
- #: dashboard/publisher/adverts-edit.php:170
963
  msgid "Activate"
964
  msgstr "Aktiviraj"
965
 
 
 
 
 
 
 
966
  #: dashboard/publisher/adverts-disabled.php:23
967
  #: dashboard/publisher/adverts-error.php:22
968
  #: dashboard/publisher/adverts-main.php:23
969
  msgid "Reset stats"
970
  msgstr "Resetuj statistiku"
971
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
972
  #: dashboard/publisher/adverts-disabled.php:36
973
  #: dashboard/publisher/adverts-error.php:40
974
  #: dashboard/publisher/adverts-main.php:40
@@ -980,7 +797,7 @@ msgstr ""
980
  "2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
981
 
982
  #: dashboard/publisher/adverts-disabled.php:37
983
- #: dashboard/publisher/adverts-edit.php:110
984
  #: dashboard/publisher/adverts-error.php:41
985
  #: dashboard/publisher/adverts-main.php:41
986
  msgid "Title"
@@ -988,7 +805,7 @@ msgstr "Naslov"
988
 
989
  #: dashboard/publisher/adverts-disabled.php:38
990
  #: dashboard/publisher/adverts-main.php:44
991
- #: dashboard/publisher/groups-edit.php:329
992
  #: dashboard/publisher/groups-main.php:36
993
  #, fuzzy
994
  msgid "Shown"
@@ -998,7 +815,7 @@ msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
998
  #: dashboard/publisher/adverts-main.php:46
999
  #: dashboard/publisher/adverts-report.php:36
1000
  #: dashboard/publisher/adverts-report.php:57
1001
- #: dashboard/publisher/groups-edit.php:330
1002
  #: dashboard/publisher/groups-main.php:38
1003
  #: dashboard/publisher/groups-report.php:37
1004
  #: dashboard/publisher/groups-report.php:58
@@ -1014,54 +831,54 @@ msgstr "Klikovi"
1014
  msgid "CTR"
1015
  msgstr "CTR"
1016
 
1017
- #: dashboard/publisher/adverts-disabled.php:74
1018
  #: dashboard/publisher/adverts-error.php:64
1019
- #: dashboard/publisher/adverts-main.php:87
1020
  #: dashboard/publisher/groups-main.php:70
1021
  msgid "Edit"
1022
  msgstr "Edituj"
1023
 
1024
- #: dashboard/publisher/adverts-disabled.php:74
1025
  #: dashboard/publisher/adverts-error.php:64
1026
- #: dashboard/publisher/adverts-main.php:87
1027
  #: dashboard/publisher/groups-main.php:70
1028
  msgid "Stats"
1029
  msgstr "Statistika"
1030
 
1031
- #: dashboard/publisher/adverts-disabled.php:74
1032
  #: dashboard/publisher/adverts-error.php:64
1033
- #: dashboard/publisher/adverts-main.php:87
1034
  #, fuzzy
1035
  msgid "Groups:"
1036
  msgstr "Grupe"
1037
 
1038
- #: dashboard/publisher/adverts-edit.php:48
1039
  msgid "The AdCode cannot be empty!"
1040
  msgstr "AdCode ne može biti prazan !"
1041
 
1042
- #: dashboard/publisher/adverts-edit.php:51
1043
  msgid ""
1044
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1045
  "use!"
1046
  msgstr ""
1047
 
1048
- #: dashboard/publisher/adverts-edit.php:54
1049
  msgid ""
1050
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1051
  "use!"
1052
  msgstr ""
1053
 
1054
- #: dashboard/publisher/adverts-edit.php:57
1055
  msgid ""
1056
  "There is a problem saving the image. Please reset your image and re-save the "
1057
  "ad!"
1058
  msgstr ""
1059
 
1060
- #: dashboard/publisher/adverts-edit.php:60
1061
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1062
  msgstr ""
1063
 
1064
- #: dashboard/publisher/adverts-edit.php:65
1065
  msgid ""
1066
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1067
  "the ad!"
@@ -1069,81 +886,81 @@ msgstr ""
1069
  "AdRotate ne može da pronađe grešku , alioglas obeležen pogrešno , pokušajte "
1070
  "ponovo čuvanja oglas !"
1071
 
1072
- #: dashboard/publisher/adverts-edit.php:68
1073
  msgid "This ad is expired and currently not shown on your website!"
1074
  msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
1075
 
1076
- #: dashboard/publisher/adverts-edit.php:71
1077
  msgid "The ad will expire in less than 2 days!"
1078
  msgstr "Oglas ističe za manje od 2 dana !"
1079
 
1080
- #: dashboard/publisher/adverts-edit.php:74
1081
  msgid "This ad will expire in less than 7 days!"
1082
  msgstr "Ovaj oglas će isteći za manje od 7 dana !"
1083
 
1084
- #: dashboard/publisher/adverts-edit.php:77
1085
  msgid "This ad has been disabled and does not rotate on your site!"
1086
  msgstr "Ovaj oglas je onemogućen i ne rotira na vašem sajtu !"
1087
 
1088
- #: dashboard/publisher/adverts-edit.php:102
1089
  #, fuzzy
1090
  msgid "New Advert"
1091
  msgstr ""
1092
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1093
  "Default: 6."
1094
 
1095
- #: dashboard/publisher/adverts-edit.php:104
1096
  #, fuzzy
1097
  msgid "Edit Advert"
1098
  msgstr "Edituj"
1099
 
1100
- #: dashboard/publisher/adverts-edit.php:116
1101
  msgid "AdCode"
1102
  msgstr ""
1103
 
1104
- #: dashboard/publisher/adverts-edit.php:121
1105
  msgid "Basic Examples:"
1106
  msgstr "Osnovni Primeri :"
1107
 
1108
- #: dashboard/publisher/adverts-edit.php:128
1109
  msgid "Useful tags"
1110
  msgstr ""
1111
 
1112
- #: dashboard/publisher/adverts-edit.php:130
1113
  msgid "Insert the advert ID Number."
1114
  msgstr ""
1115
 
1116
- #: dashboard/publisher/adverts-edit.php:130
1117
  msgid "Required when selecting a asset below."
1118
  msgstr ""
1119
 
1120
- #: dashboard/publisher/adverts-edit.php:130
1121
  msgid "Insert the advert name."
1122
  msgstr ""
1123
 
1124
- #: dashboard/publisher/adverts-edit.php:130
1125
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1126
  msgstr ""
1127
 
1128
- #: dashboard/publisher/adverts-edit.php:130
1129
  msgid "Add inside the <a> tag to open advert in a new window."
1130
  msgstr ""
1131
 
1132
- #: dashboard/publisher/adverts-edit.php:130
1133
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1134
  msgstr ""
1135
 
1136
- #: dashboard/publisher/adverts-edit.php:130
1137
  msgid ""
1138
  "Place the cursor in your AdCode where you want to add any of these tags and "
1139
  "click to add it."
1140
  msgstr ""
1141
 
1142
- #: dashboard/publisher/adverts-edit.php:135
1143
  msgid "Preview"
1144
  msgstr "Pregled"
1145
 
1146
- #: dashboard/publisher/adverts-edit.php:138
1147
  msgid ""
1148
  "Note: While this preview is an accurate one, it might look different then it "
1149
  "does on the website."
@@ -1151,41 +968,41 @@ msgstr ""
1151
  "Napomena : Iako je ovaj pregled jejedan tačan , to bi moglo da izgleda "
1152
  "drugačije onda to čini na sajtu ."
1153
 
1154
- #: dashboard/publisher/adverts-edit.php:139
1155
  msgid ""
1156
  "This is because of CSS differences. Your themes CSS file is not active here!"
1157
  msgstr "To je zbog CSS razlika . Vaš teme CSS fajl nije aktivan ovde !"
1158
 
1159
- #: dashboard/publisher/adverts-edit.php:144
1160
  msgid "Banner asset"
1161
  msgstr ""
1162
 
1163
- #: dashboard/publisher/adverts-edit.php:147
1164
  msgid "WordPress media:"
1165
  msgstr ""
1166
 
1167
- #: dashboard/publisher/adverts-edit.php:147
1168
  #, fuzzy
1169
  msgid "Select Banner"
1170
  msgstr "Baner Folder"
1171
 
1172
- #: dashboard/publisher/adverts-edit.php:149
1173
  msgid "- OR -"
1174
  msgstr "- ILI -"
1175
 
1176
- #: dashboard/publisher/adverts-edit.php:151
1177
  msgid "Banner folder:"
1178
  msgstr "Folder banera:"
1179
 
1180
- #: dashboard/publisher/adverts-edit.php:152
1181
  msgid "No image selected"
1182
  msgstr "Nijedna slika nije izabrana"
1183
 
1184
- #: dashboard/publisher/adverts-edit.php:156
1185
  msgid "Use %asset% in the adcode instead of the file path."
1186
  msgstr ""
1187
 
1188
- #: dashboard/publisher/adverts-edit.php:156
1189
  msgid ""
1190
  "Use either the text field or the dropdown. If the textfield has content that "
1191
  "field has priority."
@@ -1193,32 +1010,32 @@ msgstr ""
1193
  "Koristite ili polje za tekst ili dropdown. Ako polje teksta ima sadržaj koji "
1194
  "polje ima prioritet ."
1195
 
1196
- #: dashboard/publisher/adverts-edit.php:161
1197
  #: dashboard/settings/statistics.php:17
1198
  msgid "Statistics"
1199
  msgstr "Statistike"
1200
 
1201
- #: dashboard/publisher/adverts-edit.php:163
1202
  msgid "Enable click and impression tracking for this advert."
1203
  msgstr ""
1204
 
1205
- #: dashboard/publisher/adverts-edit.php:164
1206
  msgid ""
1207
  "Note: Clicktracking does not work for Javascript adverts such as those "
1208
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1209
  "always supported."
1210
  msgstr ""
1211
 
1212
- #: dashboard/publisher/adverts-edit.php:174
1213
  msgid "Yes, this ad will be used"
1214
  msgstr "Da , ovaj oglas će se koristiti"
1215
 
1216
- #: dashboard/publisher/adverts-edit.php:175
1217
  msgid "No, do not show this ad anywhere"
1218
  msgstr "Ne , ne pokazuju nigde ovaj oglas"
1219
 
1220
- #: dashboard/publisher/adverts-edit.php:182
1221
- #: dashboard/publisher/adverts-main.php:114
1222
  #: dashboard/publisher/groups-edit.php:71
1223
  #: dashboard/publisher/groups-main.php:89
1224
  #, fuzzy
@@ -1226,295 +1043,293 @@ msgid "Get more features with AdRotate Pro."
1226
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
1227
 
1228
  #: dashboard/publisher/adverts-edit.php:185
1229
- #: dashboard/publisher/adverts-edit.php:285
1230
- #: dashboard/publisher/adverts-edit.php:408
1231
- #: dashboard/publisher/adverts-edit.php:449
 
 
 
 
 
 
 
 
1232
  msgid "Save Advert"
1233
  msgstr "Sačuvaj oglas"
1234
 
1235
- #: dashboard/publisher/adverts-edit.php:186
1236
- #: dashboard/publisher/adverts-edit.php:286
1237
- #: dashboard/publisher/adverts-edit.php:409
1238
- #: dashboard/publisher/adverts-edit.php:450
1239
  #: dashboard/publisher/groups-edit.php:150
1240
- #: dashboard/publisher/groups-edit.php:297
1241
- #: dashboard/publisher/groups-edit.php:389
1242
  msgid "Cancel"
1243
  msgstr "Ukini"
1244
 
1245
- #: dashboard/publisher/adverts-edit.php:189
1246
- #: dashboard/publisher/adverts-edit.php:391
1247
  #: dashboard/publisher/groups-edit.php:132
1248
- #: dashboard/publisher/groups-edit.php:279
1249
  msgid "Usage"
1250
  msgstr "upotreba"
1251
 
1252
- #: dashboard/publisher/adverts-edit.php:193
1253
- #: dashboard/publisher/adverts-edit.php:395
1254
  #: dashboard/publisher/groups-edit.php:136
1255
- #: dashboard/publisher/groups-edit.php:283
 
 
1256
  msgid "Widget"
1257
  msgstr ""
1258
 
1259
- #: dashboard/publisher/adverts-edit.php:194
1260
- #: dashboard/publisher/adverts-edit.php:396
1261
  msgid ""
1262
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1263
  "and select the advert or the group the advert is in."
1264
  msgstr ""
1265
 
1266
- #: dashboard/publisher/adverts-edit.php:197
1267
- #: dashboard/publisher/adverts-edit.php:399
1268
  #: dashboard/publisher/groups-edit.php:140
1269
- #: dashboard/publisher/groups-edit.php:287
1270
  msgid "In a post or page"
1271
  msgstr ""
1272
 
1273
- #: dashboard/publisher/adverts-edit.php:199
1274
- #: dashboard/publisher/adverts-edit.php:401
1275
  #: dashboard/publisher/groups-edit.php:142
1276
- #: dashboard/publisher/groups-edit.php:289
1277
  msgid "Directly in a theme"
1278
  msgstr ""
1279
 
1280
- #: dashboard/publisher/adverts-edit.php:205
1281
  msgid "Schedule your advert"
1282
  msgstr ""
1283
 
1284
- #: dashboard/publisher/adverts-edit.php:209
1285
  msgid "Start date (day/month/year)"
1286
  msgstr ""
1287
 
1288
- #: dashboard/publisher/adverts-edit.php:230
1289
  msgid "End date (day/month/year)"
1290
  msgstr ""
1291
 
1292
- #: dashboard/publisher/adverts-edit.php:253
1293
  msgid "Start time (hh:mm)"
1294
  msgstr ""
1295
 
1296
- #: dashboard/publisher/adverts-edit.php:260
1297
  msgid "End time (hh:mm)"
1298
  msgstr ""
1299
 
1300
- #: dashboard/publisher/adverts-edit.php:270
1301
  msgid "Maximum Clicks"
1302
  msgstr ""
1303
 
1304
- #: dashboard/publisher/adverts-edit.php:271
1305
- #: dashboard/publisher/adverts-edit.php:273
1306
  msgid "Leave empty or 0 to skip this."
1307
  msgstr "Ostavite prazno ili 0 da preskoči ovo."
1308
 
1309
- #: dashboard/publisher/adverts-edit.php:272
1310
  msgid "Maximum Impressions"
1311
  msgstr ""
1312
 
1313
- #: dashboard/publisher/adverts-edit.php:277
1314
  msgid "Important"
1315
  msgstr ""
1316
 
1317
- #: dashboard/publisher/adverts-edit.php:278
1318
  msgid ""
1319
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1320
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1321
  "14:00 hours. 6AM is 6:00 hours."
1322
  msgstr ""
1323
 
1324
- #: dashboard/publisher/adverts-edit.php:282
1325
  msgid ""
1326
  "Create multiple and more advanced schedules for each advert with AdRotate "
1327
  "Pro."
1328
  msgstr ""
1329
 
1330
- #: dashboard/publisher/adverts-edit.php:282
1331
- #: dashboard/publisher/adverts-edit.php:345
1332
- #: dashboard/publisher/adverts-edit.php:389
1333
- #: dashboard/publisher/groups-edit.php:196
1334
  #, fuzzy
1335
  msgid "Upgrade today"
1336
  msgstr "Danas"
1337
 
1338
- #: dashboard/publisher/adverts-edit.php:289
1339
  #: dashboard/publisher/groups-edit.php:153
1340
  msgid "Advanced"
1341
  msgstr ""
1342
 
1343
- #: dashboard/publisher/adverts-edit.php:290
1344
- #, fuzzy
1345
- msgid "Everything below is optional."
1346
- msgstr "Naslov (opcionalno):"
1347
-
1348
- #: dashboard/publisher/adverts-edit.php:290
1349
  msgid "Available in AdRotate Pro!"
1350
  msgstr ""
1351
 
1352
- #: dashboard/publisher/adverts-edit.php:295
1353
  #: dashboard/publisher/adverts-main.php:42
1354
- #: dashboard/publisher/groups-edit.php:332
1355
  msgid "Weight"
1356
  msgstr "Težina"
1357
 
1358
- #: dashboard/publisher/adverts-edit.php:298
1359
  msgid "Few impressions"
1360
  msgstr ""
1361
 
1362
- #: dashboard/publisher/adverts-edit.php:303
1363
  #, fuzzy
1364
  msgid "Less than average"
1365
  msgstr "Oglas ističe za manje od 2 dana !"
1366
 
1367
- #: dashboard/publisher/adverts-edit.php:308
1368
  msgid "Normal impressions"
1369
  msgstr ""
1370
 
1371
- #: dashboard/publisher/adverts-edit.php:313
1372
  #, fuzzy
1373
  msgid "More than average"
1374
  msgstr "Saznajte više"
1375
 
1376
- #: dashboard/publisher/adverts-edit.php:318
1377
  msgid "Many impressions"
1378
  msgstr ""
1379
 
1380
- #: dashboard/publisher/adverts-edit.php:323
1381
  msgid "Mobile"
1382
  msgstr ""
1383
 
1384
- #: dashboard/publisher/adverts-edit.php:325
1385
  msgid "Computers"
1386
  msgstr ""
1387
 
1388
- #: dashboard/publisher/adverts-edit.php:328
1389
  msgid "Smartphones"
1390
  msgstr ""
1391
 
1392
- #: dashboard/publisher/adverts-edit.php:331
1393
  msgid "Tablets"
1394
  msgstr ""
1395
 
1396
- #: dashboard/publisher/adverts-edit.php:334
1397
  msgid ""
1398
  "Also enable mobile support in the group this advert goes in or these are "
1399
  "ignored."
1400
  msgstr ""
1401
 
1402
- #: dashboard/publisher/adverts-edit.php:338
1403
- #: dashboard/publisher/groups-edit.php:190
1404
- msgid "Sortorder"
 
1405
  msgstr ""
1406
 
1407
- #: dashboard/publisher/adverts-edit.php:340
1408
- #: dashboard/publisher/groups-edit.php:192
1409
- msgid "For administrative purposes set a sortorder."
1410
- msgstr "Za administrativne svrhe postavili sortorder ."
1411
-
1412
- #: dashboard/publisher/adverts-edit.php:340
1413
- msgid "Leave empty or 0 to skip this. Will default to ad id."
1414
- msgstr "Ostavite prazno ili 0 da preskočite ovo . Će podrazumevano ID oglasa ."
1415
-
1416
- #: dashboard/publisher/adverts-edit.php:345
1417
- msgid ""
1418
- "With AdRotate Pro you can easily select which devices the advert should show "
1419
- "on!"
1420
  msgstr ""
1421
 
1422
- #: dashboard/publisher/adverts-edit.php:347
1423
- msgid "Geo Targeting in AdRotate Pro"
1424
  msgstr ""
1425
 
1426
- #: dashboard/publisher/adverts-edit.php:348
1427
- msgid ""
1428
- "Assign the advert to a group and enable that group to use Geo Targeting."
1429
  msgstr ""
1430
 
1431
- #: dashboard/publisher/adverts-edit.php:352
1432
- msgid "Cities/States"
1433
  msgstr ""
1434
 
1435
- #: dashboard/publisher/adverts-edit.php:355
1436
  msgid ""
1437
- "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1438
- "states ISO codes are supported)"
1439
  msgstr ""
1440
 
1441
- #: dashboard/publisher/adverts-edit.php:355
 
 
 
 
 
 
 
1442
  msgid ""
1443
- "AdRotate does not check the validity of names so make sure you spell them "
1444
- "correctly!"
1445
  msgstr ""
1446
 
1447
- #: dashboard/publisher/adverts-edit.php:359
1448
- msgid "Countries"
1449
  msgstr ""
1450
 
1451
- #: dashboard/publisher/adverts-edit.php:384
1452
- #, fuzzy
1453
- msgid "Select the countries you want the adverts to show in."
1454
- msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
1455
-
1456
- #: dashboard/publisher/adverts-edit.php:384
1457
- msgid "Cities take priority and will be filtered first."
1458
  msgstr ""
1459
 
1460
- #: dashboard/publisher/adverts-edit.php:389
1461
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1462
  msgstr ""
1463
 
1464
- #: dashboard/publisher/adverts-edit.php:413
1465
  msgid "Select Groups"
1466
  msgstr "Izbor grupe"
1467
 
1468
- #: dashboard/publisher/adverts-edit.php:418
1469
  #, fuzzy
1470
  msgid "ID - Name"
1471
  msgstr "Ime"
1472
 
1473
- #: dashboard/publisher/adverts-edit.php:428
1474
  #: dashboard/publisher/groups-main.php:60
1475
  #: dashboard/settings/geotargeting.php:49
1476
  #, fuzzy
1477
  msgid "Default"
1478
  msgstr "Default - Prikazati po jedan oglas"
1479
 
1480
- #: dashboard/publisher/adverts-edit.php:429
1481
  #: dashboard/publisher/groups-main.php:61
1482
  #, fuzzy
1483
  msgid "Dynamic"
1484
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
1485
 
1486
- #: dashboard/publisher/adverts-edit.php:429
1487
  #: dashboard/publisher/groups-main.php:61
1488
  #, fuzzy
1489
  msgid "second rotation"
1490
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
1491
 
1492
- #: dashboard/publisher/adverts-edit.php:430
1493
  #: dashboard/publisher/groups-main.php:62
1494
  #, fuzzy
1495
  msgid "Block"
1496
  msgstr "Menadžmet blokiranih"
1497
 
1498
- #: dashboard/publisher/adverts-edit.php:430
1499
  #: dashboard/publisher/groups-main.php:62
1500
  #, fuzzy
1501
  msgid "grid"
1502
  msgstr ""
1503
  "Napravite mrežu za oglase. Popunjavanje 2 i 2 čini 2x2 mrežu. (Default: 2/2)"
1504
 
1505
- #: dashboard/publisher/adverts-edit.php:431
1506
- #: dashboard/publisher/groups-edit.php:198
1507
  #: dashboard/publisher/groups-main.php:63
1508
  #, fuzzy
1509
  msgid "Post Injection"
1510
  msgstr "U post ili stranicu:"
1511
 
1512
- #: dashboard/publisher/adverts-edit.php:432
1513
  #, fuzzy
1514
  msgid "Geolocation"
1515
  msgstr "GeoLocation"
1516
 
1517
- #: dashboard/publisher/adverts-edit.php:438
1518
  #: dashboard/publisher/groups-edit.php:57
1519
  #: dashboard/publisher/groups-main.php:70
1520
  msgid "Mode"
@@ -1555,10 +1370,20 @@ msgid "For 7 days"
1555
  msgstr "Za 7 dana"
1556
 
1557
  #: dashboard/publisher/adverts-error.php:71
1558
- #: dashboard/publisher/groups-edit.php:382
1559
  msgid "Configuration errors."
1560
  msgstr "Konfiguracione greške."
1561
 
 
 
 
 
 
 
 
 
 
 
1562
  #: dashboard/publisher/adverts-main.php:12
1563
  msgid "Active Adverts"
1564
  msgstr ""
@@ -1575,7 +1400,7 @@ msgstr "Izlazne opcije za"
1575
  msgid "Today"
1576
  msgstr "Danas"
1577
 
1578
- #: dashboard/publisher/adverts-main.php:109
1579
  msgid "No adverts created yet!"
1580
  msgstr ""
1581
 
@@ -1631,6 +1456,11 @@ msgstr "Dodati novi"
1631
  msgid "Edit Group"
1632
  msgstr "Edituj grupu"
1633
 
 
 
 
 
 
1634
  #: dashboard/publisher/groups-edit.php:60
1635
  msgid "Default - Show one ad at a time"
1636
  msgstr "Default - Prikazati po jedan oglas"
@@ -1722,15 +1552,15 @@ msgstr ""
1722
  "Default: 6."
1723
 
1724
  #: dashboard/publisher/groups-edit.php:137
1725
- #: dashboard/publisher/groups-edit.php:284
1726
  msgid ""
1727
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1728
  "Adverts\" and enter ID"
1729
  msgstr ""
1730
 
1731
  #: dashboard/publisher/groups-edit.php:149
1732
- #: dashboard/publisher/groups-edit.php:296
1733
- #: dashboard/publisher/groups-edit.php:388
1734
  #, fuzzy
1735
  msgid "Save Group"
1736
  msgstr "Sačuvati"
@@ -1786,12 +1616,6 @@ msgid ""
1786
  "setting. Not every theme supports this feature."
1787
  msgstr ""
1788
 
1789
- #: dashboard/publisher/groups-edit.php:180
1790
- #: dashboard/settings/advertisers.php:38
1791
- #, fuzzy
1792
- msgid "Geo Targeting"
1793
- msgstr "GeoTargeting"
1794
-
1795
  #: dashboard/publisher/groups-edit.php:181
1796
  msgid "Enable Geo Targeting for this group."
1797
  msgstr ""
@@ -1813,150 +1637,135 @@ msgstr ""
1813
  msgid "Do not forget to put at least one mobile advert in this group."
1814
  msgstr ""
1815
 
1816
- #: dashboard/publisher/groups-edit.php:192
1817
- msgid "Leave empty or 0 to skip this. Will default to group id."
1818
- msgstr "Ostavite prazno ili 0 da preskočite ovo . Biće default ID grupe ."
1819
-
1820
- #: dashboard/publisher/groups-edit.php:196
1821
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1822
  msgstr ""
1823
 
1824
- #: dashboard/publisher/groups-edit.php:201
1825
- msgid "In categories?"
1826
- msgstr ""
1827
-
1828
- #: dashboard/publisher/groups-edit.php:205
1829
- #: dashboard/publisher/groups-edit.php:243
1830
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1831
  #, fuzzy
1832
  msgid "Disabled"
1833
  msgstr "Onemogući odgovore"
1834
 
1835
  #: dashboard/publisher/groups-edit.php:206
1836
- #: dashboard/publisher/groups-edit.php:244
1837
  #, fuzzy
1838
  msgid "Before content"
1839
  msgstr "Pre objavljenog sadržaja"
1840
 
1841
  #: dashboard/publisher/groups-edit.php:207
1842
- #: dashboard/publisher/groups-edit.php:245
1843
  #, fuzzy
1844
  msgid "After content"
1845
  msgstr "Pre i posle sadržaju"
1846
 
1847
  #: dashboard/publisher/groups-edit.php:208
1848
- #: dashboard/publisher/groups-edit.php:246
1849
  #, fuzzy
1850
  msgid "Before and after content"
1851
  msgstr "Pre i posle sadržaju"
1852
 
1853
  #: dashboard/publisher/groups-edit.php:209
1854
- #: dashboard/publisher/groups-edit.php:247
1855
  msgid "Inside the content..."
1856
  msgstr ""
1857
 
1858
  #: dashboard/publisher/groups-edit.php:215
1859
- #: dashboard/publisher/groups-edit.php:253
1860
  msgid "after the middle paragraph"
1861
  msgstr ""
1862
 
1863
  #: dashboard/publisher/groups-edit.php:216
1864
- #: dashboard/publisher/groups-edit.php:254
1865
  msgid "after the 1st paragraph"
1866
  msgstr ""
1867
 
1868
  #: dashboard/publisher/groups-edit.php:217
1869
- #: dashboard/publisher/groups-edit.php:255
1870
  msgid "after the 2nd paragraph"
1871
  msgstr ""
1872
 
1873
  #: dashboard/publisher/groups-edit.php:218
1874
- #: dashboard/publisher/groups-edit.php:256
1875
  msgid "after the 3rd paragraph"
1876
  msgstr ""
1877
 
1878
  #: dashboard/publisher/groups-edit.php:219
1879
- #: dashboard/publisher/groups-edit.php:257
1880
  msgid "after the 4th paragraph"
1881
  msgstr ""
1882
 
1883
  #: dashboard/publisher/groups-edit.php:220
1884
- #: dashboard/publisher/groups-edit.php:258
1885
  msgid "after the 5th paragraph"
1886
  msgstr ""
1887
 
1888
  #: dashboard/publisher/groups-edit.php:221
1889
- #: dashboard/publisher/groups-edit.php:259
1890
  msgid "after the 6th paragraph"
1891
  msgstr ""
1892
 
1893
  #: dashboard/publisher/groups-edit.php:222
1894
- #: dashboard/publisher/groups-edit.php:260
1895
  msgid "after the 7th paragraph"
1896
  msgstr ""
1897
 
1898
  #: dashboard/publisher/groups-edit.php:223
1899
- #: dashboard/publisher/groups-edit.php:261
1900
  msgid "after the 8th paragraph"
1901
  msgstr ""
1902
 
1903
- #: dashboard/publisher/groups-edit.php:229
1904
- msgid "Which categories?"
1905
- msgstr "Koje kategorije?"
1906
-
1907
- #: dashboard/publisher/groups-edit.php:234
1908
- msgid "Click the categories posts you want the adverts to show in."
1909
- msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
1910
-
1911
  #: dashboard/publisher/groups-edit.php:239
1912
- msgid "In pages?"
1913
  msgstr ""
1914
 
1915
- #: dashboard/publisher/groups-edit.php:267
1916
- msgid "Which pages?"
1917
- msgstr "Koje stranice ?"
1918
-
1919
- #: dashboard/publisher/groups-edit.php:272
1920
- msgid "Click the pages you want the adverts to show in."
1921
- msgstr "Izaberite stranice koje želite da reklama pokaže"
1922
-
1923
- #: dashboard/publisher/groups-edit.php:300
1924
  #, fuzzy
1925
  msgid "Wrapper code"
1926
  msgstr "Kod omotača (Opcionalno) - Obmotava se oko svakog posebnog oglasa"
1927
 
1928
- #: dashboard/publisher/groups-edit.php:301
1929
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1930
  msgstr ""
1931
 
1932
- #: dashboard/publisher/groups-edit.php:305
1933
  msgid "Before advert"
1934
  msgstr ""
1935
 
1936
- #: dashboard/publisher/groups-edit.php:309
 
 
 
 
 
1937
  msgid "Options:"
1938
  msgstr "Opcije :"
1939
 
1940
- #: dashboard/publisher/groups-edit.php:313
1941
  msgid "After advert"
1942
  msgstr ""
1943
 
1944
- #: dashboard/publisher/groups-edit.php:322
1945
  msgid "Select adverts"
1946
  msgstr ""
1947
 
1948
- #: dashboard/publisher/groups-edit.php:327
1949
  msgid "Choose adverts"
1950
  msgstr ""
1951
 
1952
- #: dashboard/publisher/groups-edit.php:333
1953
  msgid "Visible until"
1954
  msgstr "Vidljivo do"
1955
 
1956
- #: dashboard/publisher/groups-edit.php:375
1957
  msgid "No adverts created!"
1958
  msgstr ""
1959
 
 
 
 
 
1960
  #: dashboard/publisher/groups-main.php:21
1961
  msgid "Delete Group"
1962
  msgstr "Brisanje grupe"
@@ -1974,7 +1783,8 @@ msgid "This action can not be undone!"
1974
  msgstr "Ovo delo se ne može povratiti!"
1975
 
1976
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1977
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
1978
  msgid "OK to continue, CANCEL to stop."
1979
  msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
1980
 
@@ -2041,9 +1851,9 @@ msgid ""
2041
  msgstr ""
2042
 
2043
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2044
- #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2045
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2046
- #: dashboard/settings/statistics.php:73
2047
  msgid "Update Options"
2048
  msgstr "Update opcije"
2049
 
@@ -2361,7 +2171,8 @@ msgstr "Čišćenje baze"
2361
  msgid "Are you sure you want to continue?"
2362
  msgstr "Popunite ID tipa koji želite da prikažete!"
2363
 
2364
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
2365
  #, fuzzy
2366
  msgid "This might take a while and may slow down your site during this action!"
2367
  msgstr ""
@@ -2374,36 +2185,34 @@ msgid "Delete stats older than 356 days (Optional)."
2374
  msgstr "Uloga obrisati oglase i resetovanje ."
2375
 
2376
  #: dashboard/settings/maintenance.php:32
2377
- msgid ""
2378
- "AdRotate creates empty records when you start making ads, groups or "
2379
- "schedules. In rare occasions these records are faulty."
2380
  msgstr ""
2381
 
2382
- #: dashboard/settings/maintenance.php:32
2383
  msgid ""
2384
- "If you made an ad, group or schedule that does not save when you make it use "
2385
- "this button to delete those empty records."
2386
  msgstr ""
2387
 
2388
- #: dashboard/settings/maintenance.php:32
2389
  msgid ""
2390
- "Additionally you can clean up old schedules and/or statistics. This will "
2391
- "improve the speed of your site."
2392
  msgstr ""
2393
 
2394
- #: dashboard/settings/maintenance.php:36
2395
  msgid "Re-evaluate Ads"
2396
  msgstr "Ponovo ocenjeni oglasi"
2397
 
2398
- #: dashboard/settings/maintenance.php:38
2399
  msgid "Re-evaluate all ads"
2400
  msgstr "Ponovo ocenite sve oglase"
2401
 
2402
- #: dashboard/settings/maintenance.php:38
2403
  msgid "You are about to check all ads for errors."
2404
  msgstr "Vi ste o tome da proveri sve oglase za greške ."
2405
 
2406
- #: dashboard/settings/maintenance.php:39
2407
  msgid ""
2408
  "This will apply all evaluation rules to all ads to see if any error slipped "
2409
  "in. Normally you should not need this feature."
@@ -2411,7 +2220,7 @@ msgstr ""
2411
  "Ovo će primeniti sva pravila za ocenjivanje na sve oglase da vidim da li "
2412
  "bilo koja greška okliznuo unutra Normalno ne bi trebalo ovu funkciju ."
2413
 
2414
- #: dashboard/settings/maintenance.php:43
2415
  msgid ""
2416
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2417
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2424,11 +2233,11 @@ msgid ""
2424
  "is not a valid point in any case."
2425
  msgstr ""
2426
 
2427
- #: dashboard/settings/maintenance.php:45
2428
  msgid "Troubleshooting"
2429
  msgstr "Rešavanje problema"
2430
 
2431
- #: dashboard/settings/maintenance.php:46
2432
  msgid ""
2433
  "The below options are not meant for normal use and are only there for "
2434
  "developers to review saved settings or how ads are selected. These can be "
@@ -2436,39 +2245,39 @@ msgid ""
2436
  "SHOULD BE LEFT UNCHECKED!!"
2437
  msgstr ""
2438
 
2439
- #: dashboard/settings/maintenance.php:49
2440
  msgid "Developer Debug"
2441
  msgstr "Debug za programera"
2442
 
2443
- #: dashboard/settings/maintenance.php:51
2444
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2445
  msgstr ""
2446
 
2447
- #: dashboard/settings/maintenance.php:52
2448
  msgid "View advert specs and (some) stats in the dashboard."
2449
  msgstr ""
2450
 
2451
- #: dashboard/settings/maintenance.php:53
2452
  #, fuzzy
2453
  msgid ""
2454
  "Disable timers for clicks and impressions and enable a alert window for "
2455
  "clicktracking."
2456
  msgstr "Pratite klikove i prikaze ."
2457
 
2458
- #: dashboard/settings/maintenance.php:54
2459
  msgid "Temporarily disable encryption on the redirect url."
2460
  msgstr "Privremeno onemogući šifrovanje na URL adresu za preusmeravanje ."
2461
 
2462
- #: dashboard/settings/maintenance.php:59
2463
  msgid "Status and Versions"
2464
  msgstr ""
2465
 
2466
- #: dashboard/settings/maintenance.php:62
2467
  #, fuzzy
2468
  msgid "Current status of adverts"
2469
  msgstr "Trenutni raspored"
2470
 
2471
- #: dashboard/settings/maintenance.php:63
2472
  #, fuzzy
2473
  msgid "Normal"
2474
  msgstr ""
@@ -2477,84 +2286,98 @@ msgstr ""
2477
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
2478
  "normalnu upotrebu oni treba da budu levo neprovereni "
2479
 
2480
- #: dashboard/settings/maintenance.php:63
2481
  #, fuzzy
2482
  msgid "Error"
2483
  msgstr "Nepoznati error se ukazao."
2484
 
2485
- #: dashboard/settings/maintenance.php:63
2486
  #, fuzzy
2487
  msgid "Expired"
2488
  msgstr "Isteklo je."
2489
 
2490
- #: dashboard/settings/maintenance.php:63
2491
  #, fuzzy
2492
  msgid "Expires Soon"
2493
  msgstr "Ističe uskoro."
2494
 
2495
- #: dashboard/settings/maintenance.php:63
2496
  msgid "Unknown"
2497
  msgstr ""
2498
 
2499
- #: dashboard/settings/maintenance.php:66
2500
  msgid "Banners/assets Folder"
2501
  msgstr ""
2502
 
2503
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2504
  msgid "Exists and appears writable"
2505
  msgstr ""
2506
 
2507
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2508
  msgid "Not writable or does not exist"
2509
  msgstr ""
2510
 
2511
- #: dashboard/settings/maintenance.php:70
2512
  msgid "Reports Folder"
2513
  msgstr ""
2514
 
2515
- #: dashboard/settings/maintenance.php:76
2516
  msgid "Advert evaluation"
2517
  msgstr ""
2518
 
2519
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2520
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2521
  msgstr ""
2522
 
2523
- #: dashboard/settings/maintenance.php:78
2524
- msgid "Trackerdata cleanup"
2525
  msgstr ""
2526
 
2527
- #: dashboard/settings/maintenance.php:83
2528
  msgid "Internal Versions"
2529
  msgstr ""
2530
 
2531
- #: dashboard/settings/maintenance.php:84
2532
  msgid ""
2533
  "Unless you experience database issues or a warning shows below, these "
2534
  "numbers are not really relevant for troubleshooting. Support may ask for "
2535
  "them to verify your database status."
2536
  msgstr ""
2537
 
2538
- #: dashboard/settings/maintenance.php:87
2539
  msgid "AdRotate version"
2540
  msgstr ""
2541
 
2542
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2543
  msgid "Current:"
2544
  msgstr ""
2545
 
2546
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2547
  msgid "Should be:"
2548
  msgstr ""
2549
 
2550
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2551
  msgid "Previous:"
2552
  msgstr ""
2553
 
2554
- #: dashboard/settings/maintenance.php:89
2555
  msgid "Database version"
2556
  msgstr ""
2557
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2558
  #: dashboard/settings/misc.php:16
2559
  msgid "Miscellaneous"
2560
  msgstr "Ostalo"
@@ -2990,6 +2813,115 @@ msgid ""
2990
  msgstr ""
2991
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
2992
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2993
  #, fuzzy
2994
  #~ msgid "Enable responsive support for this advert."
2995
  #~ msgstr "Oglasi"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-22 22:10+0800\n"
6
+ "PO-Revision-Date: 2017-01-22 22:10+0800\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.11\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:721
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
+ #: adrotate-functions.php:724
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
+ #: adrotate-functions.php:773
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
+ #: adrotate-functions.php:777
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
+ #: adrotate-functions.php:781
36
  msgid "Ad(s) deleted"
37
  msgstr "Izbrisani oglasu"
38
 
39
+ #: adrotate-functions.php:785
40
  msgid "Group deleted"
41
  msgstr "Izbrisana grupa"
42
 
43
+ #: adrotate-functions.php:789
44
  msgid "Ad(s) statistics reset"
45
  msgstr "Statistički resestovani oglasi"
46
 
47
+ #: adrotate-functions.php:793
48
  msgid "Ad(s) renewed"
49
  msgstr "Ponovo obnovljeni oglasi"
50
 
51
+ #: adrotate-functions.php:797
52
  msgid "Ad(s) deactivated"
53
  msgstr "Deaktivirani oglasi"
54
 
55
+ #: adrotate-functions.php:801
56
  msgid "Ad(s) activated"
57
  msgstr "Aktivirani oglasi"
58
 
59
+ #: adrotate-functions.php:805
60
  msgid "Group including it's Ads deleted"
61
  msgstr "Grupa koja podrazumeva obrisane oglase"
62
 
63
+ #: adrotate-functions.php:809
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "Izlazne opcije za"
67
 
68
+ #: adrotate-functions.php:814
69
  msgid "Settings saved"
70
  msgstr "Postavke sačuvane"
71
 
72
+ #: adrotate-functions.php:818
73
  msgid "Database optimized"
74
  msgstr "Baza podataka optimizirana"
75
 
76
+ #: adrotate-functions.php:822
77
  msgid "Database repaired"
78
  msgstr "Baza podataka popravljena"
79
 
80
+ #: adrotate-functions.php:826
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr "Oglasi procenjuju i statusi su ispravljene kada je to potrebno"
83
 
84
+ #: adrotate-functions.php:830
85
  msgid "Empty database records removed"
86
  msgstr "Prazni zapisi baze podataka uklanjaju"
87
 
88
+ #: adrotate-functions.php:835
89
  msgid "Action prohibited"
90
  msgstr "Zabranjeno delo"
91
 
92
+ #: adrotate-functions.php:839
93
  msgid ""
94
  "The ad was saved but has an issue which might prevent it from working "
95
  "properly. Review the colored ad."
96
  msgstr ""
97
 
98
+ #: adrotate-functions.php:843
99
  msgid "No data found in selected time period"
100
  msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
101
 
102
+ #: adrotate-functions.php:847
103
  msgid "Database can only be optimized or cleaned once every hour"
104
  msgstr "Baza podataka može biti optimizovana ili čiste jednom svaki sat"
105
 
106
+ #: adrotate-functions.php:851
107
  msgid "Form can not be (partially) empty!"
108
  msgstr ""
109
 
110
+ #: adrotate-functions.php:855
111
  msgid "No ads found."
112
  msgstr ""
113
 
114
+ #: adrotate-functions.php:859
115
  msgid "Unexpected error"
116
  msgstr ""
117
 
118
+ #: adrotate-manage-publisher.php:677
119
  msgid "AdRotate Advertiser"
120
  msgstr ""
121
 
193
  msgstr "Nepoznati error se ukazao."
194
 
195
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
 
196
  msgid "Check adverts"
197
  msgstr ""
198
 
199
+ #: adrotate-output.php:664
200
  msgid ""
201
  "You have enable caching support but W3 Total Cache is not active on your "
202
  "site!"
203
  msgstr ""
204
 
205
+ #: adrotate-output.php:667
206
  msgid ""
207
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
208
  "not set."
209
  msgstr ""
210
 
211
+ #: adrotate-output.php:672
212
  msgid "Your AdRotate Banner folder is not writable or does not exist."
213
  msgstr ""
214
 
215
+ #: adrotate-output.php:712 dashboard/adrotatepro.php:86
216
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:88
217
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:98
218
+ #: dashboard/adrotatepro.php:99 dashboard/adrotatepro.php:100
219
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:64 dashboard/info.php:65
220
+ #: dashboard/info.php:66 dashboard/info.php:67 dashboard/info.php:71
221
+ #: dashboard/info.php:72 dashboard/info.php:73 dashboard/info.php:74
222
  #: dashboard/settings/geotargeting.php:35
223
  #, fuzzy
224
  msgid "Buy now"
225
  msgstr "Kupite odmah"
226
 
227
+ #: adrotate-output.php:713
228
  msgid ""
229
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
230
  "to the <strong>PRO</strong> version"
231
  msgstr ""
232
 
233
+ #: adrotate-output.php:713
234
  #, php-format
235
  msgid ""
236
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:713
240
  msgid "Thank you for your purchase!"
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:774
244
  msgid ""
245
+ "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
246
+ "menu. If you need help getting started take a look at the"
247
  msgstr ""
248
 
249
+ #: adrotate-output.php:774
250
  msgid "manuals"
251
  msgstr "priručnici"
252
 
253
+ #: adrotate-output.php:774 adrotate-output.php:844
254
  msgid "and"
255
  msgstr ""
256
 
257
+ #: adrotate-output.php:774
258
  msgid "forums"
259
  msgstr ""
260
 
261
+ #: adrotate-output.php:807
262
  #, fuzzy
263
  msgid "Useful Links"
264
  msgstr "Korisni linkovi"
265
 
266
+ #: adrotate-output.php:808
267
  msgid "Useful links to learn more about AdRotate"
268
  msgstr ""
269
 
270
+ #: adrotate-output.php:810
271
  msgid "AdRotate website"
272
  msgstr ""
273
 
274
+ #: adrotate-output.php:811
275
  #, fuzzy
276
  msgid "Getting Started With AdRotate"
277
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
278
 
279
+ #: adrotate-output.php:812
280
  #, fuzzy
281
  msgid "AdRotate manuals"
282
  msgstr "AdRotate informacije"
283
 
284
+ #: adrotate-output.php:813
285
  #, fuzzy
286
  msgid "AdRotate Support Forum"
287
  msgstr "AdRotate prodavnica"
288
 
289
+ #: adrotate-output.php:836 dashboard/info.php:46
290
+ msgid "Support AdRotate"
291
+ msgstr "AdRotate podrška"
 
292
 
293
+ #: adrotate-output.php:837
294
+ msgid "Check out my website"
295
  msgstr ""
296
 
297
+ #: adrotate-output.php:844
298
  msgid ""
299
+ "Many users only think to review AdRotate when something goes wrong while "
300
+ "thousands of people happily use AdRotate."
301
  msgstr ""
302
 
303
+ #: adrotate-output.php:844
304
+ msgid "If you find AdRotate useful please leave your"
305
  msgstr ""
306
 
307
+ #: adrotate-output.php:844
308
  msgid "rating"
309
  msgstr ""
310
 
311
+ #: adrotate-output.php:844
312
  #, fuzzy
313
  msgid "review"
314
  msgstr "Dajte ocenu i komentar"
315
 
316
+ #: adrotate-output.php:844
317
  msgid "on WordPress.org to help AdRotate grow in a positive way"
318
  msgstr ""
319
 
320
+ #: adrotate-output.php:870 dashboard/settings/notifications.php:50
321
  #: dashboard/settings/notifications.php:80
322
  msgid "Available in AdRotate Pro"
323
  msgstr "Dostupno u AdRotate Pro"
324
 
325
+ #: adrotate-output.php:870
326
  #, fuzzy
327
  msgid "More information..."
328
  msgstr "Saznajte više"
329
 
330
+ #: adrotate-output.php:871
331
  msgid "This feature is available in AdRotate Pro"
332
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
333
 
334
+ #: adrotate-output.php:871
335
  msgid "Learn more"
336
  msgstr "Saznajte više"
337
 
338
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:217
339
+ #: dashboard/publisher/adverts-edit.php:238
340
  msgid "January"
341
  msgstr "Januar"
342
 
343
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:218
344
+ #: dashboard/publisher/adverts-edit.php:239
345
  msgid "February"
346
  msgstr "Februar"
347
 
348
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:219
349
+ #: dashboard/publisher/adverts-edit.php:240
350
  msgid "March"
351
  msgstr "Mart"
352
 
353
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:220
354
+ #: dashboard/publisher/adverts-edit.php:241
355
  msgid "April"
356
  msgstr "April"
357
 
358
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:221
359
+ #: dashboard/publisher/adverts-edit.php:242
360
  msgid "May"
361
  msgstr "Maj"
362
 
363
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:222
364
+ #: dashboard/publisher/adverts-edit.php:243
365
  msgid "June"
366
  msgstr "Jun"
367
 
368
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:223
369
+ #: dashboard/publisher/adverts-edit.php:244
370
  msgid "July"
371
  msgstr "Jul"
372
 
373
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:224
374
+ #: dashboard/publisher/adverts-edit.php:245
375
  msgid "August"
376
  msgstr "Avgust"
377
 
378
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:225
379
+ #: dashboard/publisher/adverts-edit.php:246
380
  msgid "September"
381
  msgstr "Septembar"
382
 
383
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:226
384
+ #: dashboard/publisher/adverts-edit.php:247
385
  msgid "October"
386
  msgstr "Oktobar"
387
 
388
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:227
389
+ #: dashboard/publisher/adverts-edit.php:248
390
  msgid "November"
391
  msgstr "Novembar"
392
 
393
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:228
394
+ #: dashboard/publisher/adverts-edit.php:249
395
  msgid "December"
396
  msgstr "Decembar"
397
 
398
+ #: adrotate-statistics.php:152
399
  msgid "Previous"
400
  msgstr "Prethodno"
401
 
402
+ #: adrotate-statistics.php:154
403
  msgid "This month"
404
  msgstr "Ovaj mesec"
405
 
406
+ #: adrotate-statistics.php:155
407
  msgid "Next"
408
  msgstr "Sledeći"
409
 
410
+ #: adrotate-statistics.php:229
411
  msgid "No data to show!"
412
  msgstr "Nema podataka za prikaz!"
413
 
453
  msgid "Fill in the ID of the type you want to display!"
454
  msgstr "Popunite ID tipa koji želite da prikažete!"
455
 
456
+ #: adrotate.php:101
457
  msgid "General Info"
458
  msgstr "Opšte informacije"
459
 
460
+ #: adrotate.php:102
461
  msgid "AdRotate Pro"
462
  msgstr "AdRotate Pro"
463
 
464
+ #: adrotate.php:103 dashboard/info.php:37
465
+ #: dashboard/publisher/adverts-edit.php:455
466
+ #: dashboard/publisher/groups-main.php:34
467
+ msgid "Adverts"
468
+ msgstr "Oglasi"
 
 
 
 
 
 
 
469
 
470
+ #: adrotate.php:104 dashboard/info.php:41
471
+ msgid "Groups"
472
+ msgstr "Grupe"
 
473
 
474
+ #: adrotate.php:105
475
  msgid "Settings"
476
  msgstr "Postavke"
477
 
478
+ #: adrotate.php:123
479
  msgid "AdRotate Info"
480
  msgstr "AdRotate informacije"
481
 
482
+ #: adrotate.php:141
483
  #, fuzzy
484
  msgid "AdRotate Professional"
485
  msgstr "AdRotate promocije"
486
 
487
+ #: adrotate.php:181
488
  msgid "Advert Management"
489
  msgstr ""
490
 
491
+ #: adrotate.php:239 adrotate.php:306
492
  msgid "Manage"
493
  msgstr "Upravljati"
494
 
495
+ #: adrotate.php:240 adrotate.php:307
496
  msgid "Add New"
497
  msgstr "Dodati novi"
498
 
499
+ #: adrotate.php:300
500
  msgid "Group Management"
501
  msgstr "Menadžment grupe"
502
 
503
+ #: adrotate.php:309
504
  msgid "Report"
505
  msgstr "Izveštaj"
506
 
507
+ #: adrotate.php:354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
508
  msgid "AdRotate Settings"
509
  msgstr "AdRotate postavke"
510
 
529
  msgid ""
530
  "Target mobile users with ease and show the right adverts to smartphones, "
531
  "tablets and computers. Mix and match as you please and offer adverts that "
532
+ "suit the device or mobile operating system. Create as many mobile adverts as "
533
+ "you want without effort and with a few easy to use options they show up "
534
+ "where you want them to!"
535
  msgstr ""
536
 
537
  #: dashboard/adrotatepro.php:34
558
  "forum. Get a solution (usually) within one business day."
559
  msgstr ""
560
 
561
+ #: dashboard/adrotatepro.php:48 dashboard/info.php:101
562
  msgid "AdRotate is brought to you by"
563
  msgstr "AdRotate vam je omogućio"
564
 
565
+ #: dashboard/adrotatepro.php:61
566
  msgid "Schedule all campaigns with ease"
567
  msgstr ""
568
 
569
+ #: dashboard/adrotatepro.php:64
570
  msgid ""
571
  "Schedule your adverts and set up advertising campaigns based on dates you or "
572
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
573
+ "specific days in the week. You name it, AdRotate schedules it. This makes "
574
+ "planning your revenue stream very flexible. You can set one or many "
575
+ "schedules for adverts."
576
  msgstr ""
577
 
578
+ #: dashboard/adrotatepro.php:68
579
  msgid "Avoid adblockers"
580
  msgstr ""
581
 
582
+ #: dashboard/adrotatepro.php:71
583
  msgid ""
584
+ "Try and avoid adblockers so your adverts get the exposure you want them to "
585
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
586
  "adverts are less likely to be removed. Of-course make sure you create your "
587
  "adverts smartly so these features reach their full potential!"
588
  msgstr ""
589
 
590
+ #: dashboard/adrotatepro.php:75
591
  msgid "Stay up-to-date with notifications"
592
  msgstr ""
593
 
594
+ #: dashboard/adrotatepro.php:78
595
  msgid ""
596
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
597
  "adverts expire or need your attention. Additionally, send push notifications "
599
  "or when advertisers create new adverts. Never miss an expiration date again."
600
  msgstr ""
601
 
602
+ #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
603
+ #: dashboard/info.php:60
604
  #, fuzzy
605
  msgid "Buy AdRotate Professional"
606
  msgstr "Kupite odmah"
607
 
608
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:64
609
  msgid "Single License"
610
  msgstr ""
611
 
612
+ #: dashboard/adrotatepro.php:86
613
  #, fuzzy
614
  msgid "For one WordPress installation."
615
  msgstr "Instalacije"
616
 
617
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
618
+ #: dashboard/info.php:65 dashboard/info.php:72
619
  msgid "Duo License"
620
  msgstr ""
621
 
622
+ #: dashboard/adrotatepro.php:87
623
  #, fuzzy
624
  msgid "For two WordPress installations."
625
  msgstr "Instalacije"
626
 
627
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
628
+ #: dashboard/info.php:66 dashboard/info.php:73
629
  msgid "Multi License"
630
  msgstr ""
631
 
632
+ #: dashboard/adrotatepro.php:88
633
  #, fuzzy
634
  msgid " For up to five WordPress installations."
635
  msgstr "Instalacije"
636
 
637
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
638
+ #: dashboard/info.php:67 dashboard/info.php:74
639
  #, fuzzy
640
  msgid "Developer License"
641
  msgstr "Debug za programera"
642
 
643
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:67
644
  msgid "Unlimited WordPress installations and/or networks."
645
  msgstr ""
646
 
647
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
648
+ #: dashboard/info.php:68 dashboard/info.php:76
649
  msgid "Compare licenses"
650
  msgstr ""
651
 
652
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
653
  msgid "Not sure which license is for you? Compare them..."
654
  msgstr ""
655
 
656
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
657
  #, fuzzy
658
  msgid "All Licenses"
659
  msgstr "Ponovo ocenite sve oglase"
660
 
661
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
662
  msgid "Lifetime License"
663
  msgstr ""
664
 
665
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
666
  msgid "Single installation."
667
  msgstr ""
668
 
669
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:72
670
  msgid "Up to 2 installations."
671
  msgstr ""
672
 
673
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:73
674
  msgid "Up to 10 installations."
675
  msgstr ""
676
 
677
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:74
678
  msgid "Up to 25 installations or multisite networks."
679
  msgstr ""
680
 
681
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:75
682
  msgid ""
683
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
684
  msgstr ""
685
 
686
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
687
  msgid "Not sure which license is for you?"
688
  msgstr ""
689
 
690
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
691
  msgid "Compare Licenses"
692
  msgstr ""
693
 
703
  msgid "Adverts that need you"
704
  msgstr "Oglasi koji su vam potrebni"
705
 
 
 
 
 
 
706
  #: dashboard/info.php:38
707
  msgid "(Almost) Expired"
708
  msgstr "( Skoro ) Isteklo"
709
 
 
 
 
 
710
  #: dashboard/info.php:42
711
  msgid "Have errors"
712
  msgstr "Ima greške"
713
 
714
+ #: dashboard/info.php:47
 
 
 
 
715
  msgid ""
716
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
717
  "for updates about me and my plugins. Thank you!"
718
  msgstr ""
719
 
720
+ #: dashboard/info.php:51 dashboard/publisher/adverts-edit.php:124
721
+ msgid "Get paid as a publisher:"
722
+ msgstr ""
723
+
724
+ #: dashboard/info.php:64
725
+ msgid "One WordPress installation."
726
+ msgstr ""
727
+
728
+ #: dashboard/info.php:65
729
+ msgid "Two WordPress installations."
730
+ msgstr ""
731
+
732
+ #: dashboard/info.php:66
733
+ msgid "Up to five WordPress installations."
734
+ msgstr ""
735
+
736
+ #: dashboard/info.php:87
737
  msgid "AdRotate News"
738
  msgstr ""
739
 
740
+ #: dashboard/info.php:105
741
  msgid ""
742
  "I am a digital nomad in the Philippines. Click on my name to find out more "
743
  "about me and what I am doing. Thanks for your support and for using my "
748
  msgid "Disabled Adverts"
749
  msgstr ""
750
 
751
+ #: dashboard/publisher/adverts-disabled.php:20
752
+ #: dashboard/publisher/adverts-error.php:19
753
+ #: dashboard/publisher/adverts-main.php:20
754
+ #: dashboard/publisher/groups-main.php:20
755
+ msgid "Bulk Actions"
756
+ msgstr "Delo bulk-ovanja"
757
+
758
  #: dashboard/publisher/adverts-disabled.php:21
759
+ #: dashboard/publisher/adverts-edit.php:173
760
  msgid "Activate"
761
  msgstr "Aktiviraj"
762
 
763
+ #: dashboard/publisher/adverts-disabled.php:22
764
+ #: dashboard/publisher/adverts-error.php:21
765
+ #: dashboard/publisher/adverts-main.php:22
766
+ msgid "Delete"
767
+ msgstr "Obrisati"
768
+
769
  #: dashboard/publisher/adverts-disabled.php:23
770
  #: dashboard/publisher/adverts-error.php:22
771
  #: dashboard/publisher/adverts-main.php:23
772
  msgid "Reset stats"
773
  msgstr "Resetuj statistiku"
774
 
775
+ #: dashboard/publisher/adverts-disabled.php:25
776
+ #: dashboard/publisher/adverts-error.php:29
777
+ #: dashboard/publisher/adverts-main.php:30
778
+ #: dashboard/publisher/groups-main.php:24
779
+ msgid "Go"
780
+ msgstr "Kreni"
781
+
782
+ #: dashboard/publisher/adverts-disabled.php:35
783
+ #: dashboard/publisher/adverts-error.php:39
784
+ #: dashboard/publisher/adverts-main.php:39
785
+ #: dashboard/publisher/groups-main.php:32
786
+ msgid "ID"
787
+ msgstr "ID"
788
+
789
  #: dashboard/publisher/adverts-disabled.php:36
790
  #: dashboard/publisher/adverts-error.php:40
791
  #: dashboard/publisher/adverts-main.php:40
797
  "2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
798
 
799
  #: dashboard/publisher/adverts-disabled.php:37
800
+ #: dashboard/publisher/adverts-edit.php:109
801
  #: dashboard/publisher/adverts-error.php:41
802
  #: dashboard/publisher/adverts-main.php:41
803
  msgid "Title"
805
 
806
  #: dashboard/publisher/adverts-disabled.php:38
807
  #: dashboard/publisher/adverts-main.php:44
808
+ #: dashboard/publisher/groups-edit.php:331
809
  #: dashboard/publisher/groups-main.php:36
810
  #, fuzzy
811
  msgid "Shown"
815
  #: dashboard/publisher/adverts-main.php:46
816
  #: dashboard/publisher/adverts-report.php:36
817
  #: dashboard/publisher/adverts-report.php:57
818
+ #: dashboard/publisher/groups-edit.php:332
819
  #: dashboard/publisher/groups-main.php:38
820
  #: dashboard/publisher/groups-report.php:37
821
  #: dashboard/publisher/groups-report.php:58
831
  msgid "CTR"
832
  msgstr "CTR"
833
 
834
+ #: dashboard/publisher/adverts-disabled.php:71
835
  #: dashboard/publisher/adverts-error.php:64
836
+ #: dashboard/publisher/adverts-main.php:82
837
  #: dashboard/publisher/groups-main.php:70
838
  msgid "Edit"
839
  msgstr "Edituj"
840
 
841
+ #: dashboard/publisher/adverts-disabled.php:71
842
  #: dashboard/publisher/adverts-error.php:64
843
+ #: dashboard/publisher/adverts-main.php:82
844
  #: dashboard/publisher/groups-main.php:70
845
  msgid "Stats"
846
  msgstr "Statistika"
847
 
848
+ #: dashboard/publisher/adverts-disabled.php:71
849
  #: dashboard/publisher/adverts-error.php:64
850
+ #: dashboard/publisher/adverts-main.php:82
851
  #, fuzzy
852
  msgid "Groups:"
853
  msgstr "Grupe"
854
 
855
+ #: dashboard/publisher/adverts-edit.php:47
856
  msgid "The AdCode cannot be empty!"
857
  msgstr "AdCode ne može biti prazan !"
858
 
859
+ #: dashboard/publisher/adverts-edit.php:50
860
  msgid ""
861
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
862
  "use!"
863
  msgstr ""
864
 
865
+ #: dashboard/publisher/adverts-edit.php:53
866
  msgid ""
867
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
868
  "use!"
869
  msgstr ""
870
 
871
+ #: dashboard/publisher/adverts-edit.php:56
872
  msgid ""
873
  "There is a problem saving the image. Please reset your image and re-save the "
874
  "ad!"
875
  msgstr ""
876
 
877
+ #: dashboard/publisher/adverts-edit.php:59
878
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
879
  msgstr ""
880
 
881
+ #: dashboard/publisher/adverts-edit.php:64
882
  msgid ""
883
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
884
  "the ad!"
886
  "AdRotate ne može da pronađe grešku , alioglas obeležen pogrešno , pokušajte "
887
  "ponovo čuvanja oglas !"
888
 
889
+ #: dashboard/publisher/adverts-edit.php:67
890
  msgid "This ad is expired and currently not shown on your website!"
891
  msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
892
 
893
+ #: dashboard/publisher/adverts-edit.php:70
894
  msgid "The ad will expire in less than 2 days!"
895
  msgstr "Oglas ističe za manje od 2 dana !"
896
 
897
+ #: dashboard/publisher/adverts-edit.php:73
898
  msgid "This ad will expire in less than 7 days!"
899
  msgstr "Ovaj oglas će isteći za manje od 7 dana !"
900
 
901
+ #: dashboard/publisher/adverts-edit.php:76
902
  msgid "This ad has been disabled and does not rotate on your site!"
903
  msgstr "Ovaj oglas je onemogućen i ne rotira na vašem sajtu !"
904
 
905
+ #: dashboard/publisher/adverts-edit.php:101
906
  #, fuzzy
907
  msgid "New Advert"
908
  msgstr ""
909
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
910
  "Default: 6."
911
 
912
+ #: dashboard/publisher/adverts-edit.php:103
913
  #, fuzzy
914
  msgid "Edit Advert"
915
  msgstr "Edituj"
916
 
917
+ #: dashboard/publisher/adverts-edit.php:115
918
  msgid "AdCode"
919
  msgstr ""
920
 
921
+ #: dashboard/publisher/adverts-edit.php:120
922
  msgid "Basic Examples:"
923
  msgstr "Osnovni Primeri :"
924
 
925
+ #: dashboard/publisher/adverts-edit.php:131
926
  msgid "Useful tags"
927
  msgstr ""
928
 
929
+ #: dashboard/publisher/adverts-edit.php:133
930
  msgid "Insert the advert ID Number."
931
  msgstr ""
932
 
933
+ #: dashboard/publisher/adverts-edit.php:133
934
  msgid "Required when selecting a asset below."
935
  msgstr ""
936
 
937
+ #: dashboard/publisher/adverts-edit.php:133
938
  msgid "Insert the advert name."
939
  msgstr ""
940
 
941
+ #: dashboard/publisher/adverts-edit.php:133
942
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
943
  msgstr ""
944
 
945
+ #: dashboard/publisher/adverts-edit.php:133
946
  msgid "Add inside the <a> tag to open advert in a new window."
947
  msgstr ""
948
 
949
+ #: dashboard/publisher/adverts-edit.php:133
950
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
951
  msgstr ""
952
 
953
+ #: dashboard/publisher/adverts-edit.php:133
954
  msgid ""
955
  "Place the cursor in your AdCode where you want to add any of these tags and "
956
  "click to add it."
957
  msgstr ""
958
 
959
+ #: dashboard/publisher/adverts-edit.php:138
960
  msgid "Preview"
961
  msgstr "Pregled"
962
 
963
+ #: dashboard/publisher/adverts-edit.php:141
964
  msgid ""
965
  "Note: While this preview is an accurate one, it might look different then it "
966
  "does on the website."
968
  "Napomena : Iako je ovaj pregled jejedan tačan , to bi moglo da izgleda "
969
  "drugačije onda to čini na sajtu ."
970
 
971
+ #: dashboard/publisher/adverts-edit.php:142
972
  msgid ""
973
  "This is because of CSS differences. Your themes CSS file is not active here!"
974
  msgstr "To je zbog CSS razlika . Vaš teme CSS fajl nije aktivan ovde !"
975
 
976
+ #: dashboard/publisher/adverts-edit.php:147
977
  msgid "Banner asset"
978
  msgstr ""
979
 
980
+ #: dashboard/publisher/adverts-edit.php:150
981
  msgid "WordPress media:"
982
  msgstr ""
983
 
984
+ #: dashboard/publisher/adverts-edit.php:150
985
  #, fuzzy
986
  msgid "Select Banner"
987
  msgstr "Baner Folder"
988
 
989
+ #: dashboard/publisher/adverts-edit.php:152
990
  msgid "- OR -"
991
  msgstr "- ILI -"
992
 
993
+ #: dashboard/publisher/adverts-edit.php:154
994
  msgid "Banner folder:"
995
  msgstr "Folder banera:"
996
 
997
+ #: dashboard/publisher/adverts-edit.php:155
998
  msgid "No image selected"
999
  msgstr "Nijedna slika nije izabrana"
1000
 
1001
+ #: dashboard/publisher/adverts-edit.php:159
1002
  msgid "Use %asset% in the adcode instead of the file path."
1003
  msgstr ""
1004
 
1005
+ #: dashboard/publisher/adverts-edit.php:159
1006
  msgid ""
1007
  "Use either the text field or the dropdown. If the textfield has content that "
1008
  "field has priority."
1010
  "Koristite ili polje za tekst ili dropdown. Ako polje teksta ima sadržaj koji "
1011
  "polje ima prioritet ."
1012
 
1013
+ #: dashboard/publisher/adverts-edit.php:164
1014
  #: dashboard/settings/statistics.php:17
1015
  msgid "Statistics"
1016
  msgstr "Statistike"
1017
 
1018
+ #: dashboard/publisher/adverts-edit.php:166
1019
  msgid "Enable click and impression tracking for this advert."
1020
  msgstr ""
1021
 
1022
+ #: dashboard/publisher/adverts-edit.php:167
1023
  msgid ""
1024
  "Note: Clicktracking does not work for Javascript adverts such as those "
1025
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1026
  "always supported."
1027
  msgstr ""
1028
 
1029
+ #: dashboard/publisher/adverts-edit.php:177
1030
  msgid "Yes, this ad will be used"
1031
  msgstr "Da , ovaj oglas će se koristiti"
1032
 
1033
+ #: dashboard/publisher/adverts-edit.php:178
1034
  msgid "No, do not show this ad anywhere"
1035
  msgstr "Ne , ne pokazuju nigde ovaj oglas"
1036
 
1037
+ #: dashboard/publisher/adverts-edit.php:185
1038
+ #: dashboard/publisher/adverts-main.php:107
1039
  #: dashboard/publisher/groups-edit.php:71
1040
  #: dashboard/publisher/groups-main.php:89
1041
  #, fuzzy
1043
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
1044
 
1045
  #: dashboard/publisher/adverts-edit.php:185
1046
+ #: dashboard/publisher/adverts-main.php:107
1047
+ #: dashboard/publisher/groups-edit.php:71
1048
+ #: dashboard/publisher/groups-main.php:89
1049
+ #, fuzzy
1050
+ msgid "More information"
1051
+ msgstr "Saznajte više"
1052
+
1053
+ #: dashboard/publisher/adverts-edit.php:188
1054
+ #: dashboard/publisher/adverts-edit.php:288
1055
+ #: dashboard/publisher/adverts-edit.php:444
1056
+ #: dashboard/publisher/adverts-edit.php:485
1057
  msgid "Save Advert"
1058
  msgstr "Sačuvaj oglas"
1059
 
1060
+ #: dashboard/publisher/adverts-edit.php:189
1061
+ #: dashboard/publisher/adverts-edit.php:289
1062
+ #: dashboard/publisher/adverts-edit.php:445
1063
+ #: dashboard/publisher/adverts-edit.php:486
1064
  #: dashboard/publisher/groups-edit.php:150
1065
+ #: dashboard/publisher/groups-edit.php:299
1066
+ #: dashboard/publisher/groups-edit.php:391
1067
  msgid "Cancel"
1068
  msgstr "Ukini"
1069
 
1070
+ #: dashboard/publisher/adverts-edit.php:192
1071
+ #: dashboard/publisher/adverts-edit.php:427
1072
  #: dashboard/publisher/groups-edit.php:132
1073
+ #: dashboard/publisher/groups-edit.php:281
1074
  msgid "Usage"
1075
  msgstr "upotreba"
1076
 
1077
+ #: dashboard/publisher/adverts-edit.php:196
1078
+ #: dashboard/publisher/adverts-edit.php:431
1079
  #: dashboard/publisher/groups-edit.php:136
1080
+ #: dashboard/publisher/groups-edit.php:205
1081
+ #: dashboard/publisher/groups-edit.php:245
1082
+ #: dashboard/publisher/groups-edit.php:285
1083
  msgid "Widget"
1084
  msgstr ""
1085
 
1086
+ #: dashboard/publisher/adverts-edit.php:197
1087
+ #: dashboard/publisher/adverts-edit.php:432
1088
  msgid ""
1089
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1090
  "and select the advert or the group the advert is in."
1091
  msgstr ""
1092
 
1093
+ #: dashboard/publisher/adverts-edit.php:200
1094
+ #: dashboard/publisher/adverts-edit.php:435
1095
  #: dashboard/publisher/groups-edit.php:140
1096
+ #: dashboard/publisher/groups-edit.php:289
1097
  msgid "In a post or page"
1098
  msgstr ""
1099
 
1100
+ #: dashboard/publisher/adverts-edit.php:202
1101
+ #: dashboard/publisher/adverts-edit.php:437
1102
  #: dashboard/publisher/groups-edit.php:142
1103
+ #: dashboard/publisher/groups-edit.php:291
1104
  msgid "Directly in a theme"
1105
  msgstr ""
1106
 
1107
+ #: dashboard/publisher/adverts-edit.php:208
1108
  msgid "Schedule your advert"
1109
  msgstr ""
1110
 
1111
+ #: dashboard/publisher/adverts-edit.php:212
1112
  msgid "Start date (day/month/year)"
1113
  msgstr ""
1114
 
1115
+ #: dashboard/publisher/adverts-edit.php:233
1116
  msgid "End date (day/month/year)"
1117
  msgstr ""
1118
 
1119
+ #: dashboard/publisher/adverts-edit.php:256
1120
  msgid "Start time (hh:mm)"
1121
  msgstr ""
1122
 
1123
+ #: dashboard/publisher/adverts-edit.php:263
1124
  msgid "End time (hh:mm)"
1125
  msgstr ""
1126
 
1127
+ #: dashboard/publisher/adverts-edit.php:273
1128
  msgid "Maximum Clicks"
1129
  msgstr ""
1130
 
1131
+ #: dashboard/publisher/adverts-edit.php:274
1132
+ #: dashboard/publisher/adverts-edit.php:276
1133
  msgid "Leave empty or 0 to skip this."
1134
  msgstr "Ostavite prazno ili 0 da preskoči ovo."
1135
 
1136
+ #: dashboard/publisher/adverts-edit.php:275
1137
  msgid "Maximum Impressions"
1138
  msgstr ""
1139
 
1140
+ #: dashboard/publisher/adverts-edit.php:280
1141
  msgid "Important"
1142
  msgstr ""
1143
 
1144
+ #: dashboard/publisher/adverts-edit.php:281
1145
  msgid ""
1146
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1147
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1148
  "14:00 hours. 6AM is 6:00 hours."
1149
  msgstr ""
1150
 
1151
+ #: dashboard/publisher/adverts-edit.php:285
1152
  msgid ""
1153
  "Create multiple and more advanced schedules for each advert with AdRotate "
1154
  "Pro."
1155
  msgstr ""
1156
 
1157
+ #: dashboard/publisher/adverts-edit.php:285
1158
+ #: dashboard/publisher/adverts-edit.php:354
1159
+ #: dashboard/publisher/adverts-edit.php:425
1160
+ #: dashboard/publisher/groups-edit.php:191
1161
  #, fuzzy
1162
  msgid "Upgrade today"
1163
  msgstr "Danas"
1164
 
1165
+ #: dashboard/publisher/adverts-edit.php:292
1166
  #: dashboard/publisher/groups-edit.php:153
1167
  msgid "Advanced"
1168
  msgstr ""
1169
 
1170
+ #: dashboard/publisher/adverts-edit.php:293
1171
+ #: dashboard/publisher/adverts-edit.php:357
 
 
 
 
1172
  msgid "Available in AdRotate Pro!"
1173
  msgstr ""
1174
 
1175
+ #: dashboard/publisher/adverts-edit.php:298
1176
  #: dashboard/publisher/adverts-main.php:42
1177
+ #: dashboard/publisher/groups-edit.php:334
1178
  msgid "Weight"
1179
  msgstr "Težina"
1180
 
1181
+ #: dashboard/publisher/adverts-edit.php:301
1182
  msgid "Few impressions"
1183
  msgstr ""
1184
 
1185
+ #: dashboard/publisher/adverts-edit.php:306
1186
  #, fuzzy
1187
  msgid "Less than average"
1188
  msgstr "Oglas ističe za manje od 2 dana !"
1189
 
1190
+ #: dashboard/publisher/adverts-edit.php:311
1191
  msgid "Normal impressions"
1192
  msgstr ""
1193
 
1194
+ #: dashboard/publisher/adverts-edit.php:316
1195
  #, fuzzy
1196
  msgid "More than average"
1197
  msgstr "Saznajte više"
1198
 
1199
+ #: dashboard/publisher/adverts-edit.php:321
1200
  msgid "Many impressions"
1201
  msgstr ""
1202
 
1203
+ #: dashboard/publisher/adverts-edit.php:326
1204
  msgid "Mobile"
1205
  msgstr ""
1206
 
1207
+ #: dashboard/publisher/adverts-edit.php:328
1208
  msgid "Computers"
1209
  msgstr ""
1210
 
1211
+ #: dashboard/publisher/adverts-edit.php:331
1212
  msgid "Smartphones"
1213
  msgstr ""
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:334
1216
  msgid "Tablets"
1217
  msgstr ""
1218
 
1219
+ #: dashboard/publisher/adverts-edit.php:337
1220
  msgid ""
1221
  "Also enable mobile support in the group this advert goes in or these are "
1222
  "ignored."
1223
  msgstr ""
1224
 
1225
+ #: dashboard/publisher/adverts-edit.php:337
1226
+ msgid ""
1227
+ "Operating system detection only detects iOS/Android/Others or neither. Only "
1228
+ "works if Smartphones and/or Tablets is enabled."
1229
  msgstr ""
1230
 
1231
+ #: dashboard/publisher/adverts-edit.php:341
1232
+ msgid "Mobile OS"
 
 
 
 
 
 
 
 
 
 
 
1233
  msgstr ""
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:343
1236
+ msgid "iOS"
1237
  msgstr ""
1238
 
1239
+ #: dashboard/publisher/adverts-edit.php:346
1240
+ msgid "Android"
 
1241
  msgstr ""
1242
 
1243
+ #: dashboard/publisher/adverts-edit.php:349
1244
+ msgid "Others"
1245
  msgstr ""
1246
 
1247
+ #: dashboard/publisher/adverts-edit.php:354
1248
  msgid ""
1249
+ "With AdRotate Pro you can easily select which devices and mobile operating "
1250
+ "systems the advert should show on!"
1251
  msgstr ""
1252
 
1253
+ #: dashboard/publisher/adverts-edit.php:356
1254
+ #: dashboard/publisher/groups-edit.php:180
1255
+ #: dashboard/settings/advertisers.php:38
1256
+ #, fuzzy
1257
+ msgid "Geo Targeting"
1258
+ msgstr "GeoTargeting"
1259
+
1260
+ #: dashboard/publisher/adverts-edit.php:357
1261
  msgid ""
1262
+ "Assign the advert to a group and enable that group to use Geo Targeting."
 
1263
  msgstr ""
1264
 
1265
+ #: dashboard/publisher/adverts-edit.php:415
1266
+ msgid "A comma separated list of items:"
1267
  msgstr ""
1268
 
1269
+ #: dashboard/publisher/adverts-edit.php:415
1270
+ msgid ""
1271
+ "AdRotate does not check the validity of names so make sure you spell them "
1272
+ "correctly!"
 
 
 
1273
  msgstr ""
1274
 
1275
+ #: dashboard/publisher/adverts-edit.php:425
1276
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1277
  msgstr ""
1278
 
1279
+ #: dashboard/publisher/adverts-edit.php:449
1280
  msgid "Select Groups"
1281
  msgstr "Izbor grupe"
1282
 
1283
+ #: dashboard/publisher/adverts-edit.php:454
1284
  #, fuzzy
1285
  msgid "ID - Name"
1286
  msgstr "Ime"
1287
 
1288
+ #: dashboard/publisher/adverts-edit.php:464
1289
  #: dashboard/publisher/groups-main.php:60
1290
  #: dashboard/settings/geotargeting.php:49
1291
  #, fuzzy
1292
  msgid "Default"
1293
  msgstr "Default - Prikazati po jedan oglas"
1294
 
1295
+ #: dashboard/publisher/adverts-edit.php:465
1296
  #: dashboard/publisher/groups-main.php:61
1297
  #, fuzzy
1298
  msgid "Dynamic"
1299
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
1300
 
1301
+ #: dashboard/publisher/adverts-edit.php:465
1302
  #: dashboard/publisher/groups-main.php:61
1303
  #, fuzzy
1304
  msgid "second rotation"
1305
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
1306
 
1307
+ #: dashboard/publisher/adverts-edit.php:466
1308
  #: dashboard/publisher/groups-main.php:62
1309
  #, fuzzy
1310
  msgid "Block"
1311
  msgstr "Menadžmet blokiranih"
1312
 
1313
+ #: dashboard/publisher/adverts-edit.php:466
1314
  #: dashboard/publisher/groups-main.php:62
1315
  #, fuzzy
1316
  msgid "grid"
1317
  msgstr ""
1318
  "Napravite mrežu za oglase. Popunjavanje 2 i 2 čini 2x2 mrežu. (Default: 2/2)"
1319
 
1320
+ #: dashboard/publisher/adverts-edit.php:467
1321
+ #: dashboard/publisher/groups-edit.php:199
1322
  #: dashboard/publisher/groups-main.php:63
1323
  #, fuzzy
1324
  msgid "Post Injection"
1325
  msgstr "U post ili stranicu:"
1326
 
1327
+ #: dashboard/publisher/adverts-edit.php:468
1328
  #, fuzzy
1329
  msgid "Geolocation"
1330
  msgstr "GeoLocation"
1331
 
1332
+ #: dashboard/publisher/adverts-edit.php:474
1333
  #: dashboard/publisher/groups-edit.php:57
1334
  #: dashboard/publisher/groups-main.php:70
1335
  msgid "Mode"
1370
  msgstr "Za 7 dana"
1371
 
1372
  #: dashboard/publisher/adverts-error.php:71
1373
+ #: dashboard/publisher/groups-edit.php:384
1374
  msgid "Configuration errors."
1375
  msgstr "Konfiguracione greške."
1376
 
1377
+ #: dashboard/publisher/adverts-error.php:72
1378
+ #: dashboard/publisher/groups-edit.php:385
1379
+ msgid "Expires soon."
1380
+ msgstr "Ističe uskoro."
1381
+
1382
+ #: dashboard/publisher/adverts-error.php:73
1383
+ #: dashboard/publisher/groups-edit.php:386
1384
+ msgid "Has expired."
1385
+ msgstr "Isteklo je."
1386
+
1387
  #: dashboard/publisher/adverts-main.php:12
1388
  msgid "Active Adverts"
1389
  msgstr ""
1400
  msgid "Today"
1401
  msgstr "Danas"
1402
 
1403
+ #: dashboard/publisher/adverts-main.php:102
1404
  msgid "No adverts created yet!"
1405
  msgstr ""
1406
 
1456
  msgid "Edit Group"
1457
  msgstr "Edituj grupu"
1458
 
1459
+ #: dashboard/publisher/groups-edit.php:51
1460
+ #: dashboard/publisher/groups-main.php:33
1461
+ msgid "Name"
1462
+ msgstr "Ime"
1463
+
1464
  #: dashboard/publisher/groups-edit.php:60
1465
  msgid "Default - Show one ad at a time"
1466
  msgstr "Default - Prikazati po jedan oglas"
1552
  "Default: 6."
1553
 
1554
  #: dashboard/publisher/groups-edit.php:137
1555
+ #: dashboard/publisher/groups-edit.php:286
1556
  msgid ""
1557
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1558
  "Adverts\" and enter ID"
1559
  msgstr ""
1560
 
1561
  #: dashboard/publisher/groups-edit.php:149
1562
+ #: dashboard/publisher/groups-edit.php:298
1563
+ #: dashboard/publisher/groups-edit.php:390
1564
  #, fuzzy
1565
  msgid "Save Group"
1566
  msgstr "Sačuvati"
1616
  "setting. Not every theme supports this feature."
1617
  msgstr ""
1618
 
 
 
 
 
 
 
1619
  #: dashboard/publisher/groups-edit.php:181
1620
  msgid "Enable Geo Targeting for this group."
1621
  msgstr ""
1637
  msgid "Do not forget to put at least one mobile advert in this group."
1638
  msgstr ""
1639
 
1640
+ #: dashboard/publisher/groups-edit.php:191
 
 
 
 
1641
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1642
  msgstr ""
1643
 
1644
+ #: dashboard/publisher/groups-edit.php:204
1645
+ #: dashboard/publisher/groups-edit.php:244
 
 
 
 
1646
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1647
  #, fuzzy
1648
  msgid "Disabled"
1649
  msgstr "Onemogući odgovore"
1650
 
1651
  #: dashboard/publisher/groups-edit.php:206
1652
+ #: dashboard/publisher/groups-edit.php:246
1653
  #, fuzzy
1654
  msgid "Before content"
1655
  msgstr "Pre objavljenog sadržaja"
1656
 
1657
  #: dashboard/publisher/groups-edit.php:207
1658
+ #: dashboard/publisher/groups-edit.php:247
1659
  #, fuzzy
1660
  msgid "After content"
1661
  msgstr "Pre i posle sadržaju"
1662
 
1663
  #: dashboard/publisher/groups-edit.php:208
1664
+ #: dashboard/publisher/groups-edit.php:248
1665
  #, fuzzy
1666
  msgid "Before and after content"
1667
  msgstr "Pre i posle sadržaju"
1668
 
1669
  #: dashboard/publisher/groups-edit.php:209
1670
+ #: dashboard/publisher/groups-edit.php:249
1671
  msgid "Inside the content..."
1672
  msgstr ""
1673
 
1674
  #: dashboard/publisher/groups-edit.php:215
1675
+ #: dashboard/publisher/groups-edit.php:255
1676
  msgid "after the middle paragraph"
1677
  msgstr ""
1678
 
1679
  #: dashboard/publisher/groups-edit.php:216
1680
+ #: dashboard/publisher/groups-edit.php:256
1681
  msgid "after the 1st paragraph"
1682
  msgstr ""
1683
 
1684
  #: dashboard/publisher/groups-edit.php:217
1685
+ #: dashboard/publisher/groups-edit.php:257
1686
  msgid "after the 2nd paragraph"
1687
  msgstr ""
1688
 
1689
  #: dashboard/publisher/groups-edit.php:218
1690
+ #: dashboard/publisher/groups-edit.php:258
1691
  msgid "after the 3rd paragraph"
1692
  msgstr ""
1693
 
1694
  #: dashboard/publisher/groups-edit.php:219
1695
+ #: dashboard/publisher/groups-edit.php:259
1696
  msgid "after the 4th paragraph"
1697
  msgstr ""
1698
 
1699
  #: dashboard/publisher/groups-edit.php:220
1700
+ #: dashboard/publisher/groups-edit.php:260
1701
  msgid "after the 5th paragraph"
1702
  msgstr ""
1703
 
1704
  #: dashboard/publisher/groups-edit.php:221
1705
+ #: dashboard/publisher/groups-edit.php:261
1706
  msgid "after the 6th paragraph"
1707
  msgstr ""
1708
 
1709
  #: dashboard/publisher/groups-edit.php:222
1710
+ #: dashboard/publisher/groups-edit.php:262
1711
  msgid "after the 7th paragraph"
1712
  msgstr ""
1713
 
1714
  #: dashboard/publisher/groups-edit.php:223
1715
+ #: dashboard/publisher/groups-edit.php:263
1716
  msgid "after the 8th paragraph"
1717
  msgstr ""
1718
 
 
 
 
 
 
 
 
 
1719
  #: dashboard/publisher/groups-edit.php:239
1720
+ msgid "Page Injection"
1721
  msgstr ""
1722
 
1723
+ #: dashboard/publisher/groups-edit.php:302
 
 
 
 
 
 
 
 
1724
  #, fuzzy
1725
  msgid "Wrapper code"
1726
  msgstr "Kod omotača (Opcionalno) - Obmotava se oko svakog posebnog oglasa"
1727
 
1728
+ #: dashboard/publisher/groups-edit.php:303
1729
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1730
  msgstr ""
1731
 
1732
+ #: dashboard/publisher/groups-edit.php:307
1733
  msgid "Before advert"
1734
  msgstr ""
1735
 
1736
+ #: dashboard/publisher/groups-edit.php:310
1737
+ #: dashboard/publisher/groups-edit.php:318
1738
+ msgid "Example:"
1739
+ msgstr "Primer"
1740
+
1741
+ #: dashboard/publisher/groups-edit.php:311
1742
  msgid "Options:"
1743
  msgstr "Opcije :"
1744
 
1745
+ #: dashboard/publisher/groups-edit.php:315
1746
  msgid "After advert"
1747
  msgstr ""
1748
 
1749
+ #: dashboard/publisher/groups-edit.php:324
1750
  msgid "Select adverts"
1751
  msgstr ""
1752
 
1753
+ #: dashboard/publisher/groups-edit.php:329
1754
  msgid "Choose adverts"
1755
  msgstr ""
1756
 
1757
+ #: dashboard/publisher/groups-edit.php:335
1758
  msgid "Visible until"
1759
  msgstr "Vidljivo do"
1760
 
1761
+ #: dashboard/publisher/groups-edit.php:377
1762
  msgid "No adverts created!"
1763
  msgstr ""
1764
 
1765
+ #: dashboard/publisher/groups-main.php:12
1766
+ msgid "Manage Groups"
1767
+ msgstr "Upravljajte grupama"
1768
+
1769
  #: dashboard/publisher/groups-main.php:21
1770
  msgid "Delete Group"
1771
  msgstr "Brisanje grupe"
1783
  msgstr "Ovo delo se ne može povratiti!"
1784
 
1785
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1786
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
1787
+ #: dashboard/settings/maintenance.php:96
1788
  msgid "OK to continue, CANCEL to stop."
1789
  msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
1790
 
1851
  msgstr ""
1852
 
1853
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1854
+ #: dashboard/settings/maintenance.php:103 dashboard/settings/misc.php:43
1855
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1856
+ #: dashboard/settings/statistics.php:79
1857
  msgid "Update Options"
1858
  msgstr "Update opcije"
1859
 
2171
  msgid "Are you sure you want to continue?"
2172
  msgstr "Popunite ID tipa koji želite da prikažete!"
2173
 
2174
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
2175
+ #: dashboard/settings/maintenance.php:96
2176
  #, fuzzy
2177
  msgid "This might take a while and may slow down your site during this action!"
2178
  msgstr ""
2185
  msgstr "Uloga obrisati oglase i resetovanje ."
2186
 
2187
  #: dashboard/settings/maintenance.php:32
2188
+ msgid "Delete old tracker data. (Does nothing if you use a memcached plugin)"
 
 
2189
  msgstr ""
2190
 
2191
+ #: dashboard/settings/maintenance.php:33
2192
  msgid ""
2193
+ "For when you create an advert, group or schedule and it does not save or "
2194
+ "keep changes you make."
2195
  msgstr ""
2196
 
2197
+ #: dashboard/settings/maintenance.php:33
2198
  msgid ""
2199
+ "Additionally you can clean up old schedules, tracker data and/or statistics. "
2200
+ "This will improve the speed of your site."
2201
  msgstr ""
2202
 
2203
+ #: dashboard/settings/maintenance.php:37
2204
  msgid "Re-evaluate Ads"
2205
  msgstr "Ponovo ocenjeni oglasi"
2206
 
2207
+ #: dashboard/settings/maintenance.php:39
2208
  msgid "Re-evaluate all ads"
2209
  msgstr "Ponovo ocenite sve oglase"
2210
 
2211
+ #: dashboard/settings/maintenance.php:39
2212
  msgid "You are about to check all ads for errors."
2213
  msgstr "Vi ste o tome da proveri sve oglase za greške ."
2214
 
2215
+ #: dashboard/settings/maintenance.php:40
2216
  msgid ""
2217
  "This will apply all evaluation rules to all ads to see if any error slipped "
2218
  "in. Normally you should not need this feature."
2220
  "Ovo će primeniti sva pravila za ocenjivanje na sve oglase da vidim da li "
2221
  "bilo koja greška okliznuo unutra Normalno ne bi trebalo ovu funkciju ."
2222
 
2223
+ #: dashboard/settings/maintenance.php:44
2224
  msgid ""
2225
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2226
  "database. They only apply to your ads/groups and stats. Not to other "
2233
  "is not a valid point in any case."
2234
  msgstr ""
2235
 
2236
+ #: dashboard/settings/maintenance.php:46
2237
  msgid "Troubleshooting"
2238
  msgstr "Rešavanje problema"
2239
 
2240
+ #: dashboard/settings/maintenance.php:47
2241
  msgid ""
2242
  "The below options are not meant for normal use and are only there for "
2243
  "developers to review saved settings or how ads are selected. These can be "
2245
  "SHOULD BE LEFT UNCHECKED!!"
2246
  msgstr ""
2247
 
2248
+ #: dashboard/settings/maintenance.php:50
2249
  msgid "Developer Debug"
2250
  msgstr "Debug za programera"
2251
 
2252
+ #: dashboard/settings/maintenance.php:52
2253
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2254
  msgstr ""
2255
 
2256
+ #: dashboard/settings/maintenance.php:53
2257
  msgid "View advert specs and (some) stats in the dashboard."
2258
  msgstr ""
2259
 
2260
+ #: dashboard/settings/maintenance.php:54
2261
  #, fuzzy
2262
  msgid ""
2263
  "Disable timers for clicks and impressions and enable a alert window for "
2264
  "clicktracking."
2265
  msgstr "Pratite klikove i prikaze ."
2266
 
2267
+ #: dashboard/settings/maintenance.php:55
2268
  msgid "Temporarily disable encryption on the redirect url."
2269
  msgstr "Privremeno onemogući šifrovanje na URL adresu za preusmeravanje ."
2270
 
2271
+ #: dashboard/settings/maintenance.php:60
2272
  msgid "Status and Versions"
2273
  msgstr ""
2274
 
2275
+ #: dashboard/settings/maintenance.php:63
2276
  #, fuzzy
2277
  msgid "Current status of adverts"
2278
  msgstr "Trenutni raspored"
2279
 
2280
+ #: dashboard/settings/maintenance.php:64
2281
  #, fuzzy
2282
  msgid "Normal"
2283
  msgstr ""
2286
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
2287
  "normalnu upotrebu oni treba da budu levo neprovereni "
2288
 
2289
+ #: dashboard/settings/maintenance.php:64
2290
  #, fuzzy
2291
  msgid "Error"
2292
  msgstr "Nepoznati error se ukazao."
2293
 
2294
+ #: dashboard/settings/maintenance.php:64
2295
  #, fuzzy
2296
  msgid "Expired"
2297
  msgstr "Isteklo je."
2298
 
2299
+ #: dashboard/settings/maintenance.php:64
2300
  #, fuzzy
2301
  msgid "Expires Soon"
2302
  msgstr "Ističe uskoro."
2303
 
2304
+ #: dashboard/settings/maintenance.php:64
2305
  msgid "Unknown"
2306
  msgstr ""
2307
 
2308
+ #: dashboard/settings/maintenance.php:67
2309
  msgid "Banners/assets Folder"
2310
  msgstr ""
2311
 
2312
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2313
  msgid "Exists and appears writable"
2314
  msgstr ""
2315
 
2316
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2317
  msgid "Not writable or does not exist"
2318
  msgstr ""
2319
 
2320
+ #: dashboard/settings/maintenance.php:71
2321
  msgid "Reports Folder"
2322
  msgstr ""
2323
 
2324
+ #: dashboard/settings/maintenance.php:77
2325
  msgid "Advert evaluation"
2326
  msgstr ""
2327
 
2328
+ #: dashboard/settings/maintenance.php:78 dashboard/settings/maintenance.php:80
2329
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2330
  msgstr ""
2331
 
2332
+ #: dashboard/settings/maintenance.php:79
2333
+ msgid "Clean Transients"
2334
  msgstr ""
2335
 
2336
+ #: dashboard/settings/maintenance.php:84
2337
  msgid "Internal Versions"
2338
  msgstr ""
2339
 
2340
+ #: dashboard/settings/maintenance.php:85
2341
  msgid ""
2342
  "Unless you experience database issues or a warning shows below, these "
2343
  "numbers are not really relevant for troubleshooting. Support may ask for "
2344
  "them to verify your database status."
2345
  msgstr ""
2346
 
2347
+ #: dashboard/settings/maintenance.php:88
2348
  msgid "AdRotate version"
2349
  msgstr ""
2350
 
2351
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2352
  msgid "Current:"
2353
  msgstr ""
2354
 
2355
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2356
  msgid "Should be:"
2357
  msgstr ""
2358
 
2359
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2360
  msgid "Previous:"
2361
  msgstr ""
2362
 
2363
+ #: dashboard/settings/maintenance.php:90
2364
  msgid "Database version"
2365
  msgstr ""
2366
 
2367
+ #: dashboard/settings/maintenance.php:96
2368
+ msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2369
+ msgstr ""
2370
+
2371
+ #: dashboard/settings/maintenance.php:96
2372
+ msgid "Make sure you have a database backup!"
2373
+ msgstr ""
2374
+
2375
+ #: dashboard/settings/maintenance.php:97
2376
+ msgid ""
2377
+ "Attempt to update the database and migrate settings where required or "
2378
+ "relevant. Normally you should not need or use this option."
2379
+ msgstr ""
2380
+
2381
  #: dashboard/settings/misc.php:16
2382
  msgid "Miscellaneous"
2383
  msgstr "Ostalo"
2813
  msgstr ""
2814
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
2815
 
2816
+ #: dashboard/settings/statistics.php:71
2817
+ msgid "Clean up temporary data"
2818
+ msgstr ""
2819
+
2820
+ #: dashboard/settings/statistics.php:73
2821
+ msgid ""
2822
+ "Periodically delete old tracker data. If you are using a memcached plugin "
2823
+ "you should disable this option!"
2824
+ msgstr ""
2825
+
2826
+ #, fuzzy
2827
+ #~ msgid "Help AdRotate Grow"
2828
+ #~ msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
2829
+
2830
+ #, fuzzy
2831
+ #~ msgid "Manage Schedules"
2832
+ #~ msgstr "Upravljati"
2833
+
2834
+ #, fuzzy
2835
+ #~ msgid "Manage Media"
2836
+ #~ msgstr "Media:"
2837
+
2838
+ #, fuzzy
2839
+ #~ msgid "Schedule Management available in AdRotate Pro"
2840
+ #~ msgstr "Dostupno u AdRotate Pro"
2841
+
2842
+ #, fuzzy
2843
+ #~ msgid ""
2844
+ #~ "Schedule management and multiple schedules per advert is available in "
2845
+ #~ "AdRotate Pro."
2846
+ #~ msgstr "Ova karakteristika je dostupna na AdRotate Pro"
2847
+
2848
+ #, fuzzy
2849
+ #~ msgid "Start"
2850
+ #~ msgstr "Početno vreme (hh:mm):"
2851
+
2852
+ #, fuzzy
2853
+ #~ msgid "End"
2854
+ #~ msgstr "Završno vreme (hh:mm):"
2855
+
2856
+ #~ msgid "Ads"
2857
+ #~ msgstr "Oglasi"
2858
+
2859
+ #, fuzzy
2860
+ #~ msgid "Max Impressions"
2861
+ #~ msgstr "Utisci"
2862
+
2863
+ #, fuzzy
2864
+ #~ msgid "Max Clicks"
2865
+ #~ msgstr "Klikovi"
2866
+
2867
+ #, fuzzy
2868
+ #~ msgid "No schedules created yet!"
2869
+ #~ msgstr "Nijedan blok nije stvoren još uvek!"
2870
+
2871
+ #, fuzzy
2872
+ #~ msgid "Easily manage your schedules from here with AdRotate Pro."
2873
+ #~ msgstr "Nabvite jos karakteristika! AdRotate Pro."
2874
+
2875
+ #, fuzzy
2876
+ #~ msgid "Upgrade today!"
2877
+ #~ msgstr "Danas"
2878
+
2879
+ #, fuzzy
2880
+ #~ msgid "Media Management available in AdRotate Pro"
2881
+ #~ msgstr "Dostupno u AdRotate Pro"
2882
+
2883
+ #, fuzzy
2884
+ #~ msgid "Media uploading and management is available in AdRotate Pro."
2885
+ #~ msgstr "Ova karakteristika je dostupna na AdRotate Pro"
2886
+
2887
+ #, fuzzy
2888
+ #~ msgid "Actions"
2889
+ #~ msgstr "Delo bulk-ovanja"
2890
+
2891
+ #, fuzzy
2892
+ #~ msgid "Manage your banner folder from here with AdRotate Pro."
2893
+ #~ msgstr "Nabvite jos karakteristika! AdRotate Pro."
2894
+
2895
+ #, fuzzy
2896
+ #~ msgid "Everything below is optional."
2897
+ #~ msgstr "Naslov (opcionalno):"
2898
+
2899
+ #~ msgid "For administrative purposes set a sortorder."
2900
+ #~ msgstr "Za administrativne svrhe postavili sortorder ."
2901
+
2902
+ #~ msgid "Leave empty or 0 to skip this. Will default to ad id."
2903
+ #~ msgstr ""
2904
+ #~ "Ostavite prazno ili 0 da preskočite ovo . Će podrazumevano ID oglasa ."
2905
+
2906
+ #, fuzzy
2907
+ #~ msgid "Select the countries you want the adverts to show in."
2908
+ #~ msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
2909
+
2910
+ #~ msgid "Leave empty or 0 to skip this. Will default to group id."
2911
+ #~ msgstr "Ostavite prazno ili 0 da preskočite ovo . Biće default ID grupe ."
2912
+
2913
+ #~ msgid "Which categories?"
2914
+ #~ msgstr "Koje kategorije?"
2915
+
2916
+ #~ msgid "Click the categories posts you want the adverts to show in."
2917
+ #~ msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
2918
+
2919
+ #~ msgid "Which pages?"
2920
+ #~ msgstr "Koje stranice ?"
2921
+
2922
+ #~ msgid "Click the pages you want the adverts to show in."
2923
+ #~ msgstr "Izaberite stranice koje želite da reklama pokaže"
2924
+
2925
  #, fuzzy
2926
  #~ msgid "Enable responsive support for this advert."
2927
  #~ msgstr "Oglasi"
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: 2016-07-17 23:25+0800\n"
6
- "PO-Revision-Date: 2016-07-17 23:25+0800\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,110 +13,110 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:842
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
- #: adrotate-functions.php:845
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
- #: adrotate-functions.php:894
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:898
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:902
37
  msgid "Ad(s) deleted"
38
  msgstr "Annons(er) raderas"
39
 
40
- #: adrotate-functions.php:906
41
  msgid "Group deleted"
42
  msgstr "Grupp raderad"
43
 
44
- #: adrotate-functions.php:910
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Annons(er) statistik återställning"
47
 
48
- #: adrotate-functions.php:914
49
  msgid "Ad(s) renewed"
50
  msgstr "Annons(er) förnyas"
51
 
52
- #: adrotate-functions.php:918
53
  msgid "Ad(s) deactivated"
54
  msgstr "Annons(er) avaktiveras"
55
 
56
- #: adrotate-functions.php:922
57
  msgid "Ad(s) activated"
58
  msgstr "Annons(er) aktiveras"
59
 
60
- #: adrotate-functions.php:926
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupp inklusive dess annonser raderade"
63
 
64
- #: adrotate-functions.php:930
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "export skapad"
68
 
69
- #: adrotate-functions.php:935
70
  msgid "Settings saved"
71
  msgstr "Inställningar sparas"
72
 
73
- #: adrotate-functions.php:939
74
  msgid "Database optimized"
75
  msgstr "Databas optimerad"
76
 
77
- #: adrotate-functions.php:943
78
  msgid "Database repaired"
79
  msgstr "Databas reparation"
80
 
81
- #: adrotate-functions.php:947
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr "annonser utvärderas och status har rättats till vid behov"
84
 
85
- #: adrotate-functions.php:951
86
  msgid "Empty database records removed"
87
  msgstr "Tomma databasposter tas bort"
88
 
89
- #: adrotate-functions.php:956
90
  msgid "Action prohibited"
91
  msgstr "Åtgärden förbjuden"
92
 
93
- #: adrotate-functions.php:960
94
  msgid ""
95
  "The ad was saved but has an issue which might prevent it from working "
96
  "properly. Review the colored ad."
97
  msgstr ""
98
 
99
- #: adrotate-functions.php:964
100
  msgid "No data found in selected time period"
101
  msgstr "Inga data finns i vald tidsperiod"
102
 
103
- #: adrotate-functions.php:968
104
  msgid "Database can only be optimized or cleaned once every hour"
105
  msgstr "Databas kan endast optimeras eller rengöras en gång i timmen"
106
 
107
- #: adrotate-functions.php:972
108
  msgid "Form can not be (partially) empty!"
109
  msgstr ""
110
 
111
- #: adrotate-functions.php:976
112
  msgid "No ads found."
113
  msgstr ""
114
 
115
- #: adrotate-functions.php:980
116
  msgid "Unexpected error"
117
  msgstr ""
118
 
119
- #: adrotate-manage-publisher.php:685
120
  msgid "AdRotate Advertiser"
121
  msgstr ""
122
 
@@ -197,224 +197,222 @@ msgid "An unknown error occured."
197
  msgstr "Ett okänt fel uppstod."
198
 
199
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
200
- #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
201
  msgid "Check adverts"
202
  msgstr ""
203
 
204
- #: adrotate-output.php:675
205
  msgid ""
206
  "You have enable caching support but W3 Total Cache is not active on your "
207
  "site!"
208
  msgstr ""
209
 
210
- #: adrotate-output.php:678
211
  msgid ""
212
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
213
  "not set."
214
  msgstr ""
215
 
216
- #: adrotate-output.php:683
217
  msgid "Your AdRotate Banner folder is not writable or does not exist."
218
  msgstr ""
219
 
220
- #: adrotate-output.php:723 dashboard/adrotatepro.php:99
221
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
222
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
223
- #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
224
- #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
225
- #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
226
- #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
227
  #: dashboard/settings/geotargeting.php:35
228
  #, fuzzy
229
  msgid "Buy now"
230
  msgstr "Köp nu"
231
 
232
- #: adrotate-output.php:724
233
  msgid ""
234
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
235
  "to the <strong>PRO</strong> version"
236
  msgstr ""
237
 
238
- #: adrotate-output.php:724
239
  #, php-format
240
  msgid ""
241
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
242
  msgstr ""
243
 
244
- #: adrotate-output.php:724
245
  msgid "Thank you for your purchase!"
246
  msgstr ""
247
 
248
- #: adrotate-output.php:785
249
  msgid ""
250
- "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
251
- "this menu. Check out the"
252
  msgstr ""
253
 
254
- #: adrotate-output.php:785
255
  msgid "manuals"
256
  msgstr "manual"
257
 
258
- #: adrotate-output.php:785 adrotate-output.php:852
259
  msgid "and"
260
  msgstr ""
261
 
262
- #: adrotate-output.php:785
263
  msgid "forums"
264
  msgstr ""
265
 
266
- #: adrotate-output.php:815
267
  #, fuzzy
268
  msgid "Useful Links"
269
  msgstr "Nyttiga länkar"
270
 
271
- #: adrotate-output.php:816
272
  msgid "Useful links to learn more about AdRotate"
273
  msgstr ""
274
 
275
- #: adrotate-output.php:818
276
  msgid "AdRotate website"
277
  msgstr ""
278
 
279
- #: adrotate-output.php:819
280
  #, fuzzy
281
  msgid "Getting Started With AdRotate"
282
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
283
 
284
- #: adrotate-output.php:820
285
  #, fuzzy
286
  msgid "AdRotate manuals"
287
  msgstr "AdRotate Information"
288
 
289
- #: adrotate-output.php:821
290
  #, fuzzy
291
  msgid "AdRotate Support Forum"
292
  msgstr "AdRotate butik"
293
 
294
- #: adrotate-output.php:844
295
- #, fuzzy
296
- msgid "Help AdRotate Grow"
297
- msgstr "Fastnat med AdRotate? Jag hjälper!"
298
 
299
- #: adrotate-output.php:845
300
- msgid "Follow Arnan on Facebook"
301
  msgstr ""
302
 
303
- #: adrotate-output.php:852
304
  msgid ""
305
- "A lot of users only think to review AdRotate when something goes wrong while "
306
- "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
307
  msgstr ""
308
 
309
- #: adrotate-output.php:852
310
- msgid "If you find AdRotate useful please leave your honest"
311
  msgstr ""
312
 
313
- #: adrotate-output.php:852
314
  msgid "rating"
315
  msgstr ""
316
 
317
- #: adrotate-output.php:852
318
  #, fuzzy
319
  msgid "review"
320
  msgstr "Betygsätt och omdöme"
321
 
322
- #: adrotate-output.php:852
323
  msgid "on WordPress.org to help AdRotate grow in a positive way"
324
  msgstr ""
325
 
326
- #: adrotate-output.php:885 dashboard/settings/notifications.php:50
327
  #: dashboard/settings/notifications.php:80
328
  msgid "Available in AdRotate Pro"
329
  msgstr "Tillgänglig i AdRotate Pro"
330
 
331
- #: adrotate-output.php:885
332
  #, fuzzy
333
  msgid "More information..."
334
  msgstr "Mer info"
335
 
336
- #: adrotate-output.php:886
337
  msgid "This feature is available in AdRotate Pro"
338
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
339
 
340
- #: adrotate-output.php:886
341
  #, fuzzy
342
  msgid "Learn more"
343
  msgstr "Läs mer om"
344
 
345
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
346
- #: dashboard/publisher/adverts-edit.php:235
347
  msgid "January"
348
  msgstr "Januari"
349
 
350
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
351
- #: dashboard/publisher/adverts-edit.php:236
352
  msgid "February"
353
  msgstr "Februari"
354
 
355
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
356
- #: dashboard/publisher/adverts-edit.php:237
357
  msgid "March"
358
  msgstr "Mars"
359
 
360
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
361
- #: dashboard/publisher/adverts-edit.php:238
362
  msgid "April"
363
  msgstr "April"
364
 
365
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
366
- #: dashboard/publisher/adverts-edit.php:239
367
  msgid "May"
368
  msgstr "Maj"
369
 
370
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
371
- #: dashboard/publisher/adverts-edit.php:240
372
  msgid "June"
373
  msgstr "Juni"
374
 
375
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
376
- #: dashboard/publisher/adverts-edit.php:241
377
  msgid "July"
378
  msgstr "Juli"
379
 
380
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
381
- #: dashboard/publisher/adverts-edit.php:242
382
  msgid "August"
383
  msgstr "Augusti"
384
 
385
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
386
- #: dashboard/publisher/adverts-edit.php:243
387
  msgid "September"
388
  msgstr "September"
389
 
390
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
391
- #: dashboard/publisher/adverts-edit.php:244
392
  msgid "October"
393
  msgstr "Oktober"
394
 
395
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
396
- #: dashboard/publisher/adverts-edit.php:245
397
  msgid "November"
398
  msgstr "November"
399
 
400
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
401
- #: dashboard/publisher/adverts-edit.php:246
402
  msgid "December"
403
  msgstr "December"
404
 
405
- #: adrotate-statistics.php:222
406
  msgid "Previous"
407
  msgstr "Föregående"
408
 
409
- #: adrotate-statistics.php:224
410
  msgid "This month"
411
  msgstr "Den här månaden"
412
 
413
- #: adrotate-statistics.php:225
414
  msgid "Next"
415
  msgstr "Nästa"
416
 
417
- #: adrotate-statistics.php:278
418
  msgid "No data to show!"
419
  msgstr "Inga data att visa!"
420
 
@@ -459,270 +457,58 @@ msgstr "ID:"
459
  msgid "Fill in the ID of the type you want to display!"
460
  msgstr "Fyll i ID för den typ som du vill visa!"
461
 
462
- #: adrotate.php:102
463
  msgid "General Info"
464
  msgstr "Allmän info"
465
 
466
- #: adrotate.php:103
467
  msgid "AdRotate Pro"
468
  msgstr "AdRotate Pro"
469
 
470
- #: adrotate.php:104
471
- msgid "Manage Adverts"
472
- msgstr ""
473
-
474
- #: adrotate.php:105 dashboard/publisher/groups-main.php:12
475
- msgid "Manage Groups"
476
- msgstr "Hantera Grupper"
477
-
478
- #: adrotate.php:106 adrotate.php:369
479
- #, fuzzy
480
- msgid "Manage Schedules"
481
- msgstr "Hantera"
482
 
483
- #: adrotate.php:107
484
- #, fuzzy
485
- msgid "Manage Media"
486
- msgstr "Media:"
487
 
488
- #: adrotate.php:108
489
  msgid "Settings"
490
  msgstr "Inställningar"
491
 
492
- #: adrotate.php:128
493
  msgid "AdRotate Info"
494
  msgstr "AdRotate Information"
495
 
496
- #: adrotate.php:146
497
  #, fuzzy
498
  msgid "AdRotate Professional"
499
  msgstr "AdRotate"
500
 
501
- #: adrotate.php:186
502
  msgid "Advert Management"
503
  msgstr ""
504
 
505
- #: adrotate.php:244 adrotate.php:311 adrotate.php:364
506
  msgid "Manage"
507
  msgstr "Hantera"
508
 
509
- #: adrotate.php:245 adrotate.php:312 adrotate.php:365
510
  msgid "Add New"
511
  msgstr "Lägg till ny"
512
 
513
- #: adrotate.php:305
514
  msgid "Group Management"
515
  msgstr "Grupp Hantering"
516
 
517
- #: adrotate.php:314
518
  msgid "Report"
519
  msgstr "Rapport"
520
 
521
- #: adrotate.php:360
522
- #, fuzzy
523
- msgid "Schedule Management available in AdRotate Pro"
524
- msgstr "Tillgänglig i AdRotate Pro"
525
-
526
- #: adrotate.php:370
527
- #, fuzzy
528
- msgid ""
529
- "Schedule management and multiple schedules per advert is available in "
530
- "AdRotate Pro."
531
- msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
532
-
533
- #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
534
- #: dashboard/publisher/adverts-main.php:114
535
- #: dashboard/publisher/groups-edit.php:71
536
- #: dashboard/publisher/groups-main.php:89
537
- #, fuzzy
538
- msgid "More information"
539
- msgstr "Mer info"
540
-
541
- #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
542
- #: dashboard/publisher/adverts-error.php:19
543
- #: dashboard/publisher/adverts-main.php:20
544
- #: dashboard/publisher/groups-main.php:20
545
- msgid "Bulk Actions"
546
- msgstr "Massåtgärder"
547
-
548
- #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
549
- #: dashboard/publisher/adverts-error.php:29
550
- #: dashboard/publisher/adverts-main.php:30
551
- #: dashboard/publisher/groups-main.php:24
552
- msgid "Go"
553
- msgstr "Gå"
554
-
555
- #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
556
- #: dashboard/publisher/adverts-error.php:39
557
- #: dashboard/publisher/adverts-main.php:39
558
- #: dashboard/publisher/groups-main.php:32
559
- msgid "ID"
560
- msgstr "ID"
561
-
562
- #: adrotate.php:388
563
- #, fuzzy
564
- msgid "Start"
565
- msgstr "Starttid (hh: mm):"
566
-
567
- #: adrotate.php:388
568
- #, fuzzy
569
- msgid "End"
570
- msgstr "Avsluta tid (hh: mm):"
571
-
572
- #: adrotate.php:389
573
- msgid "Ads"
574
- msgstr "Annonser"
575
-
576
- #: adrotate.php:391
577
- msgid "Max Impressions"
578
- msgstr "Max Intryck"
579
-
580
- #: adrotate.php:392
581
- msgid "Max Clicks"
582
- msgstr "Max Klick"
583
-
584
- #: adrotate.php:422
585
- #, fuzzy
586
- msgid "No schedules created yet!"
587
- msgstr "Inga block har skapats än!"
588
-
589
- #: adrotate.php:427
590
- #, fuzzy
591
- msgid "Easily manage your schedules from here with AdRotate Pro."
592
- msgstr "Få fler funktioner! Skaffa AdRotate Pro."
593
-
594
- #: adrotate.php:427 adrotate.php:490
595
- #, fuzzy
596
- msgid "Upgrade today!"
597
- msgstr "i dag"
598
-
599
- #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
600
- #: dashboard/publisher/groups-edit.php:383
601
- msgid "Expires soon."
602
- msgstr "Utgår inom kort."
603
-
604
- #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
605
- #: dashboard/publisher/groups-edit.php:384
606
- msgid "Has expired."
607
- msgstr "Har gått ut."
608
-
609
- #: adrotate.php:452
610
- #, fuzzy
611
- msgid "Media Management available in AdRotate Pro"
612
- msgstr "Tillgänglig i AdRotate Pro"
613
-
614
- #: adrotate.php:454
615
- msgid "Upload images to the AdRotate Pro banners folder from here."
616
- msgstr ""
617
-
618
- #: adrotate.php:454
619
- msgid ""
620
- "This is useful if you use responsive adverts with multiple images or have "
621
- "HTML5 adverts containing multiple files."
622
- msgstr ""
623
-
624
- #: adrotate.php:454
625
- #, fuzzy
626
- msgid "Media uploading and management is available in AdRotate Pro."
627
- msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
628
-
629
- #: adrotate.php:456
630
- msgid "Upload new file"
631
- msgstr ""
632
-
633
- #: adrotate.php:457
634
- msgid "Accepted files:"
635
- msgstr ""
636
-
637
- #: adrotate.php:457
638
- msgid "For HTML5 ads you can also upload html and javascript files."
639
- msgstr ""
640
-
641
- #: adrotate.php:457
642
- #, fuzzy
643
- msgid "Maximum size is 512Kb."
644
- msgstr "Maximal storlek är 512Kb."
645
-
646
- #: adrotate.php:457
647
- msgid "Important:"
648
- msgstr ""
649
-
650
- #: adrotate.php:457
651
- msgid ""
652
- "Make sure your file has no spaces or special characters in the name. Replace "
653
- "spaces with a - or _."
654
- msgstr ""
655
-
656
- #: adrotate.php:457
657
- msgid ""
658
- "If you remove spaces from filenames for HTML5 adverts also edit the html "
659
- "file so it knows about the changed name. For example for the javascript file."
660
- msgstr ""
661
-
662
- #: adrotate.php:460
663
- msgid ""
664
- "For responsive adverts make sure the filename is in the following format; "
665
- "\"imagename.full.ext\". A full set of sized images is strongly recommended."
666
- msgstr ""
667
-
668
- #: adrotate.php:461
669
- msgid ""
670
- "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
671
- "filename instead of \".full\" for the various viewports."
672
- msgstr ""
673
-
674
- #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
675
- #: dashboard/publisher/groups-edit.php:316
676
- msgid "Example:"
677
- msgstr "Exempel:"
678
-
679
- #: adrotate.php:462
680
- msgid ""
681
- "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
682
- "for different viewports."
683
- msgstr ""
684
-
685
- #: adrotate.php:466
686
- msgid "Upload file"
687
- msgstr ""
688
-
689
- #: adrotate.php:466
690
- msgid "Click only once per file!"
691
- msgstr ""
692
-
693
- #: adrotate.php:469
694
- msgid "Available files in"
695
- msgstr ""
696
-
697
- #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
698
- #: dashboard/publisher/groups-main.php:33
699
- msgid "Name"
700
- msgstr "Namn"
701
-
702
- #: adrotate.php:475
703
- #, fuzzy
704
- msgid "Actions"
705
- msgstr "Massåtgärder"
706
-
707
- #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
708
- #: adrotate.php:484 adrotate.php:485 adrotate.php:486
709
- #: dashboard/publisher/adverts-disabled.php:22
710
- #: dashboard/publisher/adverts-error.php:21
711
- #: dashboard/publisher/adverts-main.php:22
712
- msgid "Delete"
713
- msgstr "Radera"
714
-
715
- #: adrotate.php:490
716
- msgid ""
717
- "Make sure the banner images are not in use by adverts when you delete them!"
718
- msgstr ""
719
-
720
- #: adrotate.php:490
721
- #, fuzzy
722
- msgid "Manage your banner folder from here with AdRotate Pro."
723
- msgstr "Få fler funktioner! Skaffa AdRotate Pro."
724
-
725
- #: adrotate.php:516
726
  msgid "AdRotate Settings"
727
  msgstr "AdRotate Inställningar"
728
 
@@ -747,8 +533,9 @@ msgstr ""
747
  msgid ""
748
  "Target mobile users with ease and show the right adverts to smartphones, "
749
  "tablets and computers. Mix and match as you please and offer adverts that "
750
- "suit the device. Create as many mobile adverts as you want without effort "
751
- "and with a few easy to use options they show up where you want them to!"
 
752
  msgstr ""
753
 
754
  #: dashboard/adrotatepro.php:34
@@ -775,39 +562,40 @@ msgid ""
775
  "forum. Get a solution (usually) within one business day."
776
  msgstr ""
777
 
778
- #: dashboard/adrotatepro.php:48 dashboard/info.php:119
779
  msgid "AdRotate is brought to you by"
780
  msgstr "AdRotate kommer till dig genom"
781
 
782
- #: dashboard/adrotatepro.php:74
783
  msgid "Schedule all campaigns with ease"
784
  msgstr ""
785
 
786
- #: dashboard/adrotatepro.php:77
787
  msgid ""
788
  "Schedule your adverts and set up advertising campaigns based on dates you or "
789
- "your advertisers specify without hassle. Seasonal adverts, weekly adverts. "
790
- "You name it, AdRotate schedules it. This makes planning your revenue stream "
791
- "much more easy. You can set one or many schedules for adverts."
 
792
  msgstr ""
793
 
794
- #: dashboard/adrotatepro.php:81
795
  msgid "Avoid adblockers"
796
  msgstr ""
797
 
798
- #: dashboard/adrotatepro.php:84
799
  msgid ""
800
- "Try and avoid adblockers so you adverts get the exposure you want them to "
801
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
802
  "adverts are less likely to be removed. Of-course make sure you create your "
803
  "adverts smartly so these features reach their full potential!"
804
  msgstr ""
805
 
806
- #: dashboard/adrotatepro.php:88
807
  msgid "Stay up-to-date with notifications"
808
  msgstr ""
809
 
810
- #: dashboard/adrotatepro.php:91
811
  msgid ""
812
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
813
  "adverts expire or need your attention. Additionally, send push notifications "
@@ -815,96 +603,96 @@ msgid ""
815
  "or when advertisers create new adverts. Never miss an expiration date again."
816
  msgstr ""
817
 
818
- #: dashboard/adrotatepro.php:95 dashboard/adrotatepro.php:107
819
- #: dashboard/info.php:78
820
  #, fuzzy
821
  msgid "Buy AdRotate Professional"
822
  msgstr "Köp nu"
823
 
824
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
825
  msgid "Single License"
826
  msgstr ""
827
 
828
- #: dashboard/adrotatepro.php:99 dashboard/info.php:82
829
  #, fuzzy
830
  msgid "For one WordPress installation."
831
  msgstr "Installation"
832
 
833
- #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:112
834
- #: dashboard/info.php:83 dashboard/info.php:90
835
  #, fuzzy
836
  msgid "Duo License"
837
  msgstr "AdRotate Licens"
838
 
839
- #: dashboard/adrotatepro.php:100 dashboard/info.php:83
840
  #, fuzzy
841
  msgid "For two WordPress installations."
842
  msgstr "Installation"
843
 
844
- #: dashboard/adrotatepro.php:101 dashboard/adrotatepro.php:113
845
- #: dashboard/info.php:84 dashboard/info.php:91
846
  #, fuzzy
847
  msgid "Multi License"
848
  msgstr "AdRotate Licens"
849
 
850
- #: dashboard/adrotatepro.php:101 dashboard/info.php:84
851
  #, fuzzy
852
  msgid " For up to five WordPress installations."
853
  msgstr "Installation"
854
 
855
- #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:114
856
- #: dashboard/info.php:85 dashboard/info.php:92
857
  #, fuzzy
858
  msgid "Developer License"
859
  msgstr "Utvecklar Debug"
860
 
861
- #: dashboard/adrotatepro.php:102 dashboard/info.php:85
862
  msgid "Unlimited WordPress installations and/or networks."
863
  msgstr ""
864
 
865
- #: dashboard/adrotatepro.php:103 dashboard/adrotatepro.php:116
866
- #: dashboard/info.php:86 dashboard/info.php:94
867
  msgid "Compare licenses"
868
  msgstr ""
869
 
870
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
871
  msgid "Not sure which license is for you? Compare them..."
872
  msgstr ""
873
 
874
- #: dashboard/adrotatepro.php:103 dashboard/info.php:86
875
  msgid "All Licenses"
876
  msgstr ""
877
 
878
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
879
  msgid "Lifetime License"
880
  msgstr ""
881
 
882
- #: dashboard/adrotatepro.php:111 dashboard/info.php:89
883
  msgid "Single installation."
884
  msgstr ""
885
 
886
- #: dashboard/adrotatepro.php:112 dashboard/info.php:90
887
  msgid "Up to 2 installations."
888
  msgstr ""
889
 
890
- #: dashboard/adrotatepro.php:113 dashboard/info.php:91
891
  msgid "Up to 10 installations."
892
  msgstr ""
893
 
894
- #: dashboard/adrotatepro.php:114 dashboard/info.php:92
895
  msgid "Up to 25 installations or multisite networks."
896
  msgstr ""
897
 
898
- #: dashboard/adrotatepro.php:115 dashboard/info.php:93
899
  msgid ""
900
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
901
  msgstr ""
902
 
903
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
904
  msgid "Not sure which license is for you?"
905
  msgstr ""
906
 
907
- #: dashboard/adrotatepro.php:116 dashboard/info.php:94
908
  msgid "Compare Licenses"
909
  msgstr ""
910
 
@@ -920,38 +708,41 @@ msgstr "Din installation"
920
  msgid "Adverts that need you"
921
  msgstr "Annonser som behöver dig"
922
 
923
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
924
- #: dashboard/publisher/groups-main.php:34
925
- msgid "Adverts"
926
- msgstr "Annonser"
927
-
928
  #: dashboard/info.php:38
929
  msgid "(Almost) Expired"
930
  msgstr "(Nästan) Expired"
931
 
932
- #: dashboard/info.php:41
933
- msgid "Groups"
934
- msgstr "Grupper"
935
-
936
  #: dashboard/info.php:42
937
  msgid "Have errors"
938
  msgstr "Har fel"
939
 
940
- #: dashboard/info.php:48
941
- msgid "Support AdRotate"
942
- msgstr "Support AdRotate"
943
-
944
- #: dashboard/info.php:55
945
  msgid ""
946
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
947
  "for updates about me and my plugins. Thank you!"
948
  msgstr ""
949
 
950
- #: dashboard/info.php:105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
951
  msgid "AdRotate News"
952
  msgstr ""
953
 
954
- #: dashboard/info.php:123
955
  msgid ""
956
  "I am a digital nomad in the Philippines. Click on my name to find out more "
957
  "about me and what I am doing. Thanks for your support and for using my "
@@ -962,17 +753,44 @@ msgstr ""
962
  msgid "Disabled Adverts"
963
  msgstr ""
964
 
 
 
 
 
 
 
 
965
  #: dashboard/publisher/adverts-disabled.php:21
966
- #: dashboard/publisher/adverts-edit.php:170
967
  msgid "Activate"
968
  msgstr "Aktivera"
969
 
 
 
 
 
 
 
970
  #: dashboard/publisher/adverts-disabled.php:23
971
  #: dashboard/publisher/adverts-error.php:22
972
  #: dashboard/publisher/adverts-main.php:23
973
  msgid "Reset stats"
974
  msgstr "Återställ statistik"
975
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
976
  #: dashboard/publisher/adverts-disabled.php:36
977
  #: dashboard/publisher/adverts-error.php:40
978
  #: dashboard/publisher/adverts-main.php:40
@@ -984,7 +802,7 @@ msgstr ""
984
  "timmar. 14:00 är 14:00. 06:00 är 6:00 timmar."
985
 
986
  #: dashboard/publisher/adverts-disabled.php:37
987
- #: dashboard/publisher/adverts-edit.php:110
988
  #: dashboard/publisher/adverts-error.php:41
989
  #: dashboard/publisher/adverts-main.php:41
990
  msgid "Title"
@@ -992,7 +810,7 @@ msgstr "Titel"
992
 
993
  #: dashboard/publisher/adverts-disabled.php:38
994
  #: dashboard/publisher/adverts-main.php:44
995
- #: dashboard/publisher/groups-edit.php:329
996
  #: dashboard/publisher/groups-main.php:36
997
  msgid "Shown"
998
  msgstr "Visa"
@@ -1001,7 +819,7 @@ msgstr "Visa"
1001
  #: dashboard/publisher/adverts-main.php:46
1002
  #: dashboard/publisher/adverts-report.php:36
1003
  #: dashboard/publisher/adverts-report.php:57
1004
- #: dashboard/publisher/groups-edit.php:330
1005
  #: dashboard/publisher/groups-main.php:38
1006
  #: dashboard/publisher/groups-report.php:37
1007
  #: dashboard/publisher/groups-report.php:58
@@ -1017,54 +835,54 @@ msgstr "Klick"
1017
  msgid "CTR"
1018
  msgstr "CTR"
1019
 
1020
- #: dashboard/publisher/adverts-disabled.php:74
1021
  #: dashboard/publisher/adverts-error.php:64
1022
- #: dashboard/publisher/adverts-main.php:87
1023
  #: dashboard/publisher/groups-main.php:70
1024
  msgid "Edit"
1025
  msgstr "Ändra"
1026
 
1027
- #: dashboard/publisher/adverts-disabled.php:74
1028
  #: dashboard/publisher/adverts-error.php:64
1029
- #: dashboard/publisher/adverts-main.php:87
1030
  #: dashboard/publisher/groups-main.php:70
1031
  msgid "Stats"
1032
  msgstr "Statistik"
1033
 
1034
- #: dashboard/publisher/adverts-disabled.php:74
1035
  #: dashboard/publisher/adverts-error.php:64
1036
- #: dashboard/publisher/adverts-main.php:87
1037
  #, fuzzy
1038
  msgid "Groups:"
1039
  msgstr "Grupper"
1040
 
1041
- #: dashboard/publisher/adverts-edit.php:48
1042
  msgid "The AdCode cannot be empty!"
1043
  msgstr "Den AdCode kan inte vara tomt!"
1044
 
1045
- #: dashboard/publisher/adverts-edit.php:51
1046
  msgid ""
1047
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1048
  "use!"
1049
  msgstr ""
1050
 
1051
- #: dashboard/publisher/adverts-edit.php:54
1052
  msgid ""
1053
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1054
  "use!"
1055
  msgstr ""
1056
 
1057
- #: dashboard/publisher/adverts-edit.php:57
1058
  msgid ""
1059
  "There is a problem saving the image. Please reset your image and re-save the "
1060
  "ad!"
1061
  msgstr ""
1062
 
1063
- #: dashboard/publisher/adverts-edit.php:60
1064
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1065
  msgstr ""
1066
 
1067
- #: dashboard/publisher/adverts-edit.php:65
1068
  msgid ""
1069
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1070
  "the ad!"
@@ -1072,78 +890,78 @@ msgstr ""
1072
  "AdRotate kan inte hitta något fel, men annonsen är märkt felaktiga, försök "
1073
  "åter spara annonsen!"
1074
 
1075
- #: dashboard/publisher/adverts-edit.php:68
1076
  msgid "This ad is expired and currently not shown on your website!"
1077
  msgstr ""
1078
  "Den här annonsen har gått ut och för tillfället inte visas på din webbplats!"
1079
 
1080
- #: dashboard/publisher/adverts-edit.php:71
1081
  msgid "The ad will expire in less than 2 days!"
1082
  msgstr "Annonsen går ut om mindre än 2 dagar!"
1083
 
1084
- #: dashboard/publisher/adverts-edit.php:74
1085
  msgid "This ad will expire in less than 7 days!"
1086
  msgstr "Annonsen går ut om mindre än 7 dagar!"
1087
 
1088
- #: dashboard/publisher/adverts-edit.php:77
1089
  msgid "This ad has been disabled and does not rotate on your site!"
1090
  msgstr "Den här annonsen har inaktiverats och inte roterar på din webbplats!"
1091
 
1092
- #: dashboard/publisher/adverts-edit.php:102
1093
  msgid "New Advert"
1094
  msgstr "Ny annons"
1095
 
1096
- #: dashboard/publisher/adverts-edit.php:104
1097
  msgid "Edit Advert"
1098
  msgstr "Redigera annons"
1099
 
1100
- #: dashboard/publisher/adverts-edit.php:116
1101
  msgid "AdCode"
1102
  msgstr ""
1103
 
1104
- #: dashboard/publisher/adverts-edit.php:121
1105
  msgid "Basic Examples:"
1106
  msgstr "Grundläggande Exempel:"
1107
 
1108
- #: dashboard/publisher/adverts-edit.php:128
1109
  msgid "Useful tags"
1110
  msgstr ""
1111
 
1112
- #: dashboard/publisher/adverts-edit.php:130
1113
  msgid "Insert the advert ID Number."
1114
  msgstr ""
1115
 
1116
- #: dashboard/publisher/adverts-edit.php:130
1117
  msgid "Required when selecting a asset below."
1118
  msgstr ""
1119
 
1120
- #: dashboard/publisher/adverts-edit.php:130
1121
  msgid "Insert the advert name."
1122
  msgstr ""
1123
 
1124
- #: dashboard/publisher/adverts-edit.php:130
1125
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1126
  msgstr ""
1127
 
1128
- #: dashboard/publisher/adverts-edit.php:130
1129
  msgid "Add inside the <a> tag to open advert in a new window."
1130
  msgstr ""
1131
 
1132
- #: dashboard/publisher/adverts-edit.php:130
1133
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1134
  msgstr ""
1135
 
1136
- #: dashboard/publisher/adverts-edit.php:130
1137
  msgid ""
1138
  "Place the cursor in your AdCode where you want to add any of these tags and "
1139
  "click to add it."
1140
  msgstr ""
1141
 
1142
- #: dashboard/publisher/adverts-edit.php:135
1143
  msgid "Preview"
1144
  msgstr "Förhandsgranska"
1145
 
1146
- #: dashboard/publisher/adverts-edit.php:138
1147
  msgid ""
1148
  "Note: While this preview is an accurate one, it might look different then it "
1149
  "does on the website."
@@ -1151,41 +969,41 @@ msgstr ""
1151
  "OBS: Även förhandsvisningen är en riktig en, kan det se annorlunda ut då den "
1152
  "gör på webbplatsen."
1153
 
1154
- #: dashboard/publisher/adverts-edit.php:139
1155
  msgid ""
1156
  "This is because of CSS differences. Your themes CSS file is not active here!"
1157
  msgstr ""
1158
  "Detta är på grund av CSS skillnader. Ditt teman CSS-fil är inte aktiv här!"
1159
 
1160
- #: dashboard/publisher/adverts-edit.php:144
1161
  msgid "Banner asset"
1162
  msgstr ""
1163
 
1164
- #: dashboard/publisher/adverts-edit.php:147
1165
  msgid "WordPress media:"
1166
  msgstr ""
1167
 
1168
- #: dashboard/publisher/adverts-edit.php:147
1169
  msgid "Select Banner"
1170
  msgstr "Välj Banner"
1171
 
1172
- #: dashboard/publisher/adverts-edit.php:149
1173
  msgid "- OR -"
1174
  msgstr "- ELLER -"
1175
 
1176
- #: dashboard/publisher/adverts-edit.php:151
1177
  msgid "Banner folder:"
1178
  msgstr "Banner folder:"
1179
 
1180
- #: dashboard/publisher/adverts-edit.php:152
1181
  msgid "No image selected"
1182
  msgstr "Ingen bild vald"
1183
 
1184
- #: dashboard/publisher/adverts-edit.php:156
1185
  msgid "Use %asset% in the adcode instead of the file path."
1186
  msgstr ""
1187
 
1188
- #: dashboard/publisher/adverts-edit.php:156
1189
  msgid ""
1190
  "Use either the text field or the dropdown. If the textfield has content that "
1191
  "field has priority."
@@ -1193,32 +1011,32 @@ msgstr ""
1193
  "Använd antingen textfältet eller listrutan. Om textfältet har innehåll som "
1194
  "området har företräde."
1195
 
1196
- #: dashboard/publisher/adverts-edit.php:161
1197
  #: dashboard/settings/statistics.php:17
1198
  msgid "Statistics"
1199
  msgstr "Statistik"
1200
 
1201
- #: dashboard/publisher/adverts-edit.php:163
1202
  msgid "Enable click and impression tracking for this advert."
1203
  msgstr ""
1204
 
1205
- #: dashboard/publisher/adverts-edit.php:164
1206
  msgid ""
1207
  "Note: Clicktracking does not work for Javascript adverts such as those "
1208
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1209
  "always supported."
1210
  msgstr ""
1211
 
1212
- #: dashboard/publisher/adverts-edit.php:174
1213
  msgid "Yes, this ad will be used"
1214
  msgstr "Ja, kommer denna annons att användas"
1215
 
1216
- #: dashboard/publisher/adverts-edit.php:175
1217
  msgid "No, do not show this ad anywhere"
1218
  msgstr "Nej, inte visa denna annons någonstans"
1219
 
1220
- #: dashboard/publisher/adverts-edit.php:182
1221
- #: dashboard/publisher/adverts-main.php:114
1222
  #: dashboard/publisher/groups-edit.php:71
1223
  #: dashboard/publisher/groups-main.php:89
1224
  #, fuzzy
@@ -1226,217 +1044,227 @@ msgid "Get more features with AdRotate Pro."
1226
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1227
 
1228
  #: dashboard/publisher/adverts-edit.php:185
1229
- #: dashboard/publisher/adverts-edit.php:285
1230
- #: dashboard/publisher/adverts-edit.php:408
1231
- #: dashboard/publisher/adverts-edit.php:449
 
 
 
 
 
 
 
 
1232
  msgid "Save Advert"
1233
  msgstr "Spara annons"
1234
 
1235
- #: dashboard/publisher/adverts-edit.php:186
1236
- #: dashboard/publisher/adverts-edit.php:286
1237
- #: dashboard/publisher/adverts-edit.php:409
1238
- #: dashboard/publisher/adverts-edit.php:450
1239
  #: dashboard/publisher/groups-edit.php:150
1240
- #: dashboard/publisher/groups-edit.php:297
1241
- #: dashboard/publisher/groups-edit.php:389
1242
  msgid "Cancel"
1243
  msgstr "Avbryt"
1244
 
1245
- #: dashboard/publisher/adverts-edit.php:189
1246
- #: dashboard/publisher/adverts-edit.php:391
1247
  #: dashboard/publisher/groups-edit.php:132
1248
- #: dashboard/publisher/groups-edit.php:279
1249
  msgid "Usage"
1250
  msgstr "Användning"
1251
 
1252
- #: dashboard/publisher/adverts-edit.php:193
1253
- #: dashboard/publisher/adverts-edit.php:395
1254
  #: dashboard/publisher/groups-edit.php:136
1255
- #: dashboard/publisher/groups-edit.php:283
 
 
1256
  msgid "Widget"
1257
  msgstr ""
1258
 
1259
- #: dashboard/publisher/adverts-edit.php:194
1260
- #: dashboard/publisher/adverts-edit.php:396
1261
  msgid ""
1262
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1263
  "and select the advert or the group the advert is in."
1264
  msgstr ""
1265
 
1266
- #: dashboard/publisher/adverts-edit.php:197
1267
- #: dashboard/publisher/adverts-edit.php:399
1268
  #: dashboard/publisher/groups-edit.php:140
1269
- #: dashboard/publisher/groups-edit.php:287
1270
  msgid "In a post or page"
1271
  msgstr ""
1272
 
1273
- #: dashboard/publisher/adverts-edit.php:199
1274
- #: dashboard/publisher/adverts-edit.php:401
1275
  #: dashboard/publisher/groups-edit.php:142
1276
- #: dashboard/publisher/groups-edit.php:289
1277
  msgid "Directly in a theme"
1278
  msgstr ""
1279
 
1280
- #: dashboard/publisher/adverts-edit.php:205
1281
  msgid "Schedule your advert"
1282
  msgstr ""
1283
 
1284
- #: dashboard/publisher/adverts-edit.php:209
1285
  msgid "Start date (day/month/year)"
1286
  msgstr ""
1287
 
1288
- #: dashboard/publisher/adverts-edit.php:230
1289
  msgid "End date (day/month/year)"
1290
  msgstr ""
1291
 
1292
- #: dashboard/publisher/adverts-edit.php:253
1293
  msgid "Start time (hh:mm)"
1294
  msgstr ""
1295
 
1296
- #: dashboard/publisher/adverts-edit.php:260
1297
  msgid "End time (hh:mm)"
1298
  msgstr ""
1299
 
1300
- #: dashboard/publisher/adverts-edit.php:270
1301
  msgid "Maximum Clicks"
1302
  msgstr ""
1303
 
1304
- #: dashboard/publisher/adverts-edit.php:271
1305
- #: dashboard/publisher/adverts-edit.php:273
1306
  msgid "Leave empty or 0 to skip this."
1307
  msgstr "Lämna tomt eller 0 för att hoppa över detta."
1308
 
1309
- #: dashboard/publisher/adverts-edit.php:272
1310
  msgid "Maximum Impressions"
1311
  msgstr ""
1312
 
1313
- #: dashboard/publisher/adverts-edit.php:277
1314
  msgid "Important"
1315
  msgstr ""
1316
 
1317
- #: dashboard/publisher/adverts-edit.php:278
1318
  msgid ""
1319
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1320
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1321
  "14:00 hours. 6AM is 6:00 hours."
1322
  msgstr ""
1323
 
1324
- #: dashboard/publisher/adverts-edit.php:282
1325
  msgid ""
1326
  "Create multiple and more advanced schedules for each advert with AdRotate "
1327
  "Pro."
1328
  msgstr ""
1329
 
1330
- #: dashboard/publisher/adverts-edit.php:282
1331
- #: dashboard/publisher/adverts-edit.php:345
1332
- #: dashboard/publisher/adverts-edit.php:389
1333
- #: dashboard/publisher/groups-edit.php:196
1334
  #, fuzzy
1335
  msgid "Upgrade today"
1336
  msgstr "i dag"
1337
 
1338
- #: dashboard/publisher/adverts-edit.php:289
1339
  #: dashboard/publisher/groups-edit.php:153
1340
  msgid "Advanced"
1341
  msgstr "Utökad"
1342
 
1343
- #: dashboard/publisher/adverts-edit.php:290
1344
- msgid "Everything below is optional."
1345
- msgstr "Allt nedan är frivillig."
1346
-
1347
- #: dashboard/publisher/adverts-edit.php:290
1348
  msgid "Available in AdRotate Pro!"
1349
  msgstr ""
1350
 
1351
- #: dashboard/publisher/adverts-edit.php:295
1352
  #: dashboard/publisher/adverts-main.php:42
1353
- #: dashboard/publisher/groups-edit.php:332
1354
  msgid "Weight"
1355
  msgstr "Vikt"
1356
 
1357
- #: dashboard/publisher/adverts-edit.php:298
1358
  msgid "Few impressions"
1359
  msgstr ""
1360
 
1361
- #: dashboard/publisher/adverts-edit.php:303
1362
  msgid "Less than average"
1363
  msgstr "Mindre än genomsnittet"
1364
 
1365
- #: dashboard/publisher/adverts-edit.php:308
1366
  msgid "Normal impressions"
1367
  msgstr ""
1368
 
1369
- #: dashboard/publisher/adverts-edit.php:313
1370
  msgid "More than average"
1371
  msgstr "Mer än genomsnittet"
1372
 
1373
- #: dashboard/publisher/adverts-edit.php:318
1374
  msgid "Many impressions"
1375
  msgstr ""
1376
 
1377
- #: dashboard/publisher/adverts-edit.php:323
1378
  msgid "Mobile"
1379
  msgstr ""
1380
 
1381
- #: dashboard/publisher/adverts-edit.php:325
1382
  msgid "Computers"
1383
  msgstr ""
1384
 
1385
- #: dashboard/publisher/adverts-edit.php:328
1386
  msgid "Smartphones"
1387
  msgstr ""
1388
 
1389
- #: dashboard/publisher/adverts-edit.php:331
1390
  msgid "Tablets"
1391
  msgstr ""
1392
 
1393
- #: dashboard/publisher/adverts-edit.php:334
1394
  msgid ""
1395
  "Also enable mobile support in the group this advert goes in or these are "
1396
  "ignored."
1397
  msgstr ""
1398
 
1399
- #: dashboard/publisher/adverts-edit.php:338
1400
- #: dashboard/publisher/groups-edit.php:190
1401
- msgid "Sortorder"
 
1402
  msgstr ""
1403
 
1404
- #: dashboard/publisher/adverts-edit.php:340
1405
- #: dashboard/publisher/groups-edit.php:192
1406
- msgid "For administrative purposes set a sortorder."
1407
- msgstr "För administrativa ändamål sätt en sortorder."
1408
 
1409
- #: dashboard/publisher/adverts-edit.php:340
1410
- msgid "Leave empty or 0 to skip this. Will default to ad id."
1411
  msgstr ""
1412
- "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till annons-ID."
1413
 
1414
- #: dashboard/publisher/adverts-edit.php:345
1415
- msgid ""
1416
- "With AdRotate Pro you can easily select which devices the advert should show "
1417
- "on!"
1418
  msgstr ""
1419
 
1420
- #: dashboard/publisher/adverts-edit.php:347
1421
- msgid "Geo Targeting in AdRotate Pro"
1422
  msgstr ""
1423
 
1424
- #: dashboard/publisher/adverts-edit.php:348
1425
  msgid ""
1426
- "Assign the advert to a group and enable that group to use Geo Targeting."
 
1427
  msgstr ""
1428
 
1429
- #: dashboard/publisher/adverts-edit.php:352
1430
- msgid "Cities/States"
1431
- msgstr ""
 
 
1432
 
1433
- #: dashboard/publisher/adverts-edit.php:355
1434
  msgid ""
1435
- "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1436
- "states ISO codes are supported)"
1437
  msgstr ""
1438
 
1439
- #: dashboard/publisher/adverts-edit.php:355
 
 
 
 
1440
  #, fuzzy
1441
  msgid ""
1442
  "AdRotate does not check the validity of names so make sure you spell them "
@@ -1445,55 +1273,41 @@ msgstr ""
1445
  "AdRotate kan inte kontrollera giltigheten av namn så se till att stava dem "
1446
  "rätt!"
1447
 
1448
- #: dashboard/publisher/adverts-edit.php:359
1449
- msgid "Countries"
1450
- msgstr ""
1451
-
1452
- #: dashboard/publisher/adverts-edit.php:384
1453
- #, fuzzy
1454
- msgid "Select the countries you want the adverts to show in."
1455
- msgstr "Välj de länder som du vill att annonser för att visa i."
1456
-
1457
- #: dashboard/publisher/adverts-edit.php:384
1458
- #, fuzzy
1459
- msgid "Cities take priority and will be filtered first."
1460
- msgstr "Städer prioriteras och kommer att filtreras först."
1461
-
1462
- #: dashboard/publisher/adverts-edit.php:389
1463
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1464
  msgstr ""
1465
 
1466
- #: dashboard/publisher/adverts-edit.php:413
1467
  msgid "Select Groups"
1468
  msgstr "Välj Grupper"
1469
 
1470
- #: dashboard/publisher/adverts-edit.php:418
1471
  msgid "ID - Name"
1472
  msgstr "ID - Namn"
1473
 
1474
- #: dashboard/publisher/adverts-edit.php:428
1475
  #: dashboard/publisher/groups-main.php:60
1476
  #: dashboard/settings/geotargeting.php:49
1477
  msgid "Default"
1478
  msgstr "Default"
1479
 
1480
- #: dashboard/publisher/adverts-edit.php:429
1481
  #: dashboard/publisher/groups-main.php:61
1482
  msgid "Dynamic"
1483
  msgstr "Dynamic"
1484
 
1485
- #: dashboard/publisher/adverts-edit.php:429
1486
  #: dashboard/publisher/groups-main.php:61
1487
  #, fuzzy
1488
  msgid "second rotation"
1489
  msgstr "Geo Location"
1490
 
1491
- #: dashboard/publisher/adverts-edit.php:430
1492
  #: dashboard/publisher/groups-main.php:62
1493
  msgid "Block"
1494
  msgstr "Block"
1495
 
1496
- #: dashboard/publisher/adverts-edit.php:430
1497
  #: dashboard/publisher/groups-main.php:62
1498
  #, fuzzy
1499
  msgid "grid"
@@ -1501,17 +1315,17 @@ msgstr ""
1501
  "Gör ett rutnät för dina annonser. Fylla i 2 och 2 gör ett 2x2 rutnät. "
1502
  "(Standard: 2/2)"
1503
 
1504
- #: dashboard/publisher/adverts-edit.php:431
1505
- #: dashboard/publisher/groups-edit.php:198
1506
  #: dashboard/publisher/groups-main.php:63
1507
  msgid "Post Injection"
1508
  msgstr "Post injektion"
1509
 
1510
- #: dashboard/publisher/adverts-edit.php:432
1511
  msgid "Geolocation"
1512
  msgstr "Geolocation"
1513
 
1514
- #: dashboard/publisher/adverts-edit.php:438
1515
  #: dashboard/publisher/groups-edit.php:57
1516
  #: dashboard/publisher/groups-main.php:70
1517
  msgid "Mode"
@@ -1552,10 +1366,20 @@ msgid "For 7 days"
1552
  msgstr "För 7 dagar"
1553
 
1554
  #: dashboard/publisher/adverts-error.php:71
1555
- #: dashboard/publisher/groups-edit.php:382
1556
  msgid "Configuration errors."
1557
  msgstr "Konfigurations fel."
1558
 
 
 
 
 
 
 
 
 
 
 
1559
  #: dashboard/publisher/adverts-main.php:12
1560
  msgid "Active Adverts"
1561
  msgstr ""
@@ -1572,7 +1396,7 @@ msgstr "Exportera"
1572
  msgid "Today"
1573
  msgstr "i dag"
1574
 
1575
- #: dashboard/publisher/adverts-main.php:109
1576
  msgid "No adverts created yet!"
1577
  msgstr ""
1578
 
@@ -1626,6 +1450,11 @@ msgstr "Ny grupp"
1626
  msgid "Edit Group"
1627
  msgstr "Redigera grupp"
1628
 
 
 
 
 
 
1629
  #: dashboard/publisher/groups-edit.php:60
1630
  msgid "Default - Show one ad at a time"
1631
  msgstr "Standard - Visa en annons i taget"
@@ -1711,15 +1540,15 @@ msgstr ""
1711
  "Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
1712
 
1713
  #: dashboard/publisher/groups-edit.php:137
1714
- #: dashboard/publisher/groups-edit.php:284
1715
  msgid ""
1716
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1717
  "Adverts\" and enter ID"
1718
  msgstr ""
1719
 
1720
  #: dashboard/publisher/groups-edit.php:149
1721
- #: dashboard/publisher/groups-edit.php:296
1722
- #: dashboard/publisher/groups-edit.php:388
1723
  #, fuzzy
1724
  msgid "Save Group"
1725
  msgstr "Spara"
@@ -1775,11 +1604,6 @@ msgid ""
1775
  "setting. Not every theme supports this feature."
1776
  msgstr ""
1777
 
1778
- #: dashboard/publisher/groups-edit.php:180
1779
- #: dashboard/settings/advertisers.php:38
1780
- msgid "Geo Targeting"
1781
- msgstr "Geo Targeting"
1782
-
1783
  #: dashboard/publisher/groups-edit.php:181
1784
  msgid "Enable Geo Targeting for this group."
1785
  msgstr ""
@@ -1800,150 +1624,134 @@ msgstr ""
1800
  msgid "Do not forget to put at least one mobile advert in this group."
1801
  msgstr ""
1802
 
1803
- #: dashboard/publisher/groups-edit.php:192
1804
- msgid "Leave empty or 0 to skip this. Will default to group id."
1805
- msgstr ""
1806
- "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till grupp-ID."
1807
-
1808
- #: dashboard/publisher/groups-edit.php:196
1809
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1810
  msgstr ""
1811
 
1812
- #: dashboard/publisher/groups-edit.php:201
1813
- msgid "In categories?"
1814
- msgstr ""
1815
-
1816
- #: dashboard/publisher/groups-edit.php:205
1817
- #: dashboard/publisher/groups-edit.php:243
1818
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1819
  #, fuzzy
1820
  msgid "Disabled"
1821
  msgstr "Inaktivera annonser"
1822
 
1823
  #: dashboard/publisher/groups-edit.php:206
1824
- #: dashboard/publisher/groups-edit.php:244
1825
  #, fuzzy
1826
  msgid "Before content"
1827
  msgstr "Innan publicerat innehåll"
1828
 
1829
  #: dashboard/publisher/groups-edit.php:207
1830
- #: dashboard/publisher/groups-edit.php:245
1831
  #, fuzzy
1832
  msgid "After content"
1833
  msgstr "Före och efter innehållet"
1834
 
1835
  #: dashboard/publisher/groups-edit.php:208
1836
- #: dashboard/publisher/groups-edit.php:246
1837
  #, fuzzy
1838
  msgid "Before and after content"
1839
  msgstr "Före och efter innehållet"
1840
 
1841
  #: dashboard/publisher/groups-edit.php:209
1842
- #: dashboard/publisher/groups-edit.php:247
1843
  msgid "Inside the content..."
1844
  msgstr ""
1845
 
1846
  #: dashboard/publisher/groups-edit.php:215
1847
- #: dashboard/publisher/groups-edit.php:253
1848
  msgid "after the middle paragraph"
1849
  msgstr ""
1850
 
1851
  #: dashboard/publisher/groups-edit.php:216
1852
- #: dashboard/publisher/groups-edit.php:254
1853
  msgid "after the 1st paragraph"
1854
  msgstr ""
1855
 
1856
  #: dashboard/publisher/groups-edit.php:217
1857
- #: dashboard/publisher/groups-edit.php:255
1858
  msgid "after the 2nd paragraph"
1859
  msgstr ""
1860
 
1861
  #: dashboard/publisher/groups-edit.php:218
1862
- #: dashboard/publisher/groups-edit.php:256
1863
  msgid "after the 3rd paragraph"
1864
  msgstr ""
1865
 
1866
  #: dashboard/publisher/groups-edit.php:219
1867
- #: dashboard/publisher/groups-edit.php:257
1868
  msgid "after the 4th paragraph"
1869
  msgstr ""
1870
 
1871
  #: dashboard/publisher/groups-edit.php:220
1872
- #: dashboard/publisher/groups-edit.php:258
1873
  msgid "after the 5th paragraph"
1874
  msgstr ""
1875
 
1876
  #: dashboard/publisher/groups-edit.php:221
1877
- #: dashboard/publisher/groups-edit.php:259
1878
  msgid "after the 6th paragraph"
1879
  msgstr ""
1880
 
1881
  #: dashboard/publisher/groups-edit.php:222
1882
- #: dashboard/publisher/groups-edit.php:260
1883
  msgid "after the 7th paragraph"
1884
  msgstr ""
1885
 
1886
  #: dashboard/publisher/groups-edit.php:223
1887
- #: dashboard/publisher/groups-edit.php:261
1888
  msgid "after the 8th paragraph"
1889
  msgstr ""
1890
 
1891
- #: dashboard/publisher/groups-edit.php:229
1892
- msgid "Which categories?"
1893
- msgstr "Vilka kategorier?"
1894
-
1895
- #: dashboard/publisher/groups-edit.php:234
1896
- msgid "Click the categories posts you want the adverts to show in."
1897
- msgstr "Klicka på kategorierna inlägg du vill att annonser för att visa i."
1898
-
1899
  #: dashboard/publisher/groups-edit.php:239
1900
- msgid "In pages?"
1901
  msgstr ""
1902
 
1903
- #: dashboard/publisher/groups-edit.php:267
1904
- msgid "Which pages?"
1905
- msgstr "Vilka sidor?"
1906
-
1907
- #: dashboard/publisher/groups-edit.php:272
1908
- msgid "Click the pages you want the adverts to show in."
1909
- msgstr "Klicka på de sidor du vill annonserna att visa i."
1910
-
1911
- #: dashboard/publisher/groups-edit.php:300
1912
  msgid "Wrapper code"
1913
  msgstr "Wrapper kod"
1914
 
1915
- #: dashboard/publisher/groups-edit.php:301
1916
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1917
  msgstr ""
1918
 
1919
- #: dashboard/publisher/groups-edit.php:305
1920
  msgid "Before advert"
1921
  msgstr ""
1922
 
1923
- #: dashboard/publisher/groups-edit.php:309
 
 
 
 
 
1924
  msgid "Options:"
1925
  msgstr "Options:"
1926
 
1927
- #: dashboard/publisher/groups-edit.php:313
1928
  msgid "After advert"
1929
  msgstr ""
1930
 
1931
- #: dashboard/publisher/groups-edit.php:322
1932
  msgid "Select adverts"
1933
  msgstr ""
1934
 
1935
- #: dashboard/publisher/groups-edit.php:327
1936
  msgid "Choose adverts"
1937
  msgstr ""
1938
 
1939
- #: dashboard/publisher/groups-edit.php:333
1940
  msgid "Visible until"
1941
  msgstr "Synlig tills"
1942
 
1943
- #: dashboard/publisher/groups-edit.php:375
1944
  msgid "No adverts created!"
1945
  msgstr ""
1946
 
 
 
 
 
1947
  #: dashboard/publisher/groups-main.php:21
1948
  msgid "Delete Group"
1949
  msgstr "Ta bort grupp"
@@ -1961,7 +1769,8 @@ msgid "This action can not be undone!"
1961
  msgstr "Denna åtgärd kan inte ångras!"
1962
 
1963
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1964
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
1965
  msgid "OK to continue, CANCEL to stop."
1966
  msgstr "OK för att fortsätta, CANCEL för att avbryta."
1967
 
@@ -2027,9 +1836,9 @@ msgid ""
2027
  msgstr ""
2028
 
2029
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2030
- #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2031
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2032
- #: dashboard/settings/statistics.php:73
2033
  msgid "Update Options"
2034
  msgstr "Update Options"
2035
 
@@ -2346,7 +2155,8 @@ msgstr ""
2346
  msgid "Are you sure you want to continue?"
2347
  msgstr "Är du säker på att du vill fortsätta?"
2348
 
2349
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
 
2350
  #, fuzzy
2351
  msgid "This might take a while and may slow down your site during this action!"
2352
  msgstr ""
@@ -2358,39 +2168,37 @@ msgid "Delete stats older than 356 days (Optional)."
2358
  msgstr "Radera statistik äldre än 356 dagar (tillval)."
2359
 
2360
  #: dashboard/settings/maintenance.php:32
2361
- msgid ""
2362
- "AdRotate creates empty records when you start making ads, groups or "
2363
- "schedules. In rare occasions these records are faulty."
2364
  msgstr ""
2365
 
2366
- #: dashboard/settings/maintenance.php:32
2367
  msgid ""
2368
- "If you made an ad, group or schedule that does not save when you make it use "
2369
- "this button to delete those empty records."
2370
  msgstr ""
2371
 
2372
- #: dashboard/settings/maintenance.php:32
2373
  msgid ""
2374
- "Additionally you can clean up old schedules and/or statistics. This will "
2375
- "improve the speed of your site."
2376
  msgstr ""
2377
 
2378
- #: dashboard/settings/maintenance.php:36
2379
  #, fuzzy
2380
  msgid "Re-evaluate Ads"
2381
  msgstr "Omvärdera annonser"
2382
 
2383
- #: dashboard/settings/maintenance.php:38
2384
  #, fuzzy
2385
  msgid "Re-evaluate all ads"
2386
  msgstr "Omvärdera alla annonser"
2387
 
2388
- #: dashboard/settings/maintenance.php:38
2389
  #, fuzzy
2390
  msgid "You are about to check all ads for errors."
2391
  msgstr "Du håller på att kolla alla annonser för fel."
2392
 
2393
- #: dashboard/settings/maintenance.php:39
2394
  #, fuzzy
2395
  msgid ""
2396
  "This will apply all evaluation rules to all ads to see if any error slipped "
@@ -2399,7 +2207,7 @@ msgstr ""
2399
  "Detta kommer att gälla alla regler utvärderings alla annonser för att se om "
2400
  "något fel halkade in. Normalt ska du inte behöva den här funktionen."
2401
 
2402
- #: dashboard/settings/maintenance.php:43
2403
  msgid ""
2404
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2405
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2412,11 +2220,11 @@ msgid ""
2412
  "is not a valid point in any case."
2413
  msgstr ""
2414
 
2415
- #: dashboard/settings/maintenance.php:45
2416
  msgid "Troubleshooting"
2417
  msgstr "Felsökning"
2418
 
2419
- #: dashboard/settings/maintenance.php:46
2420
  msgid ""
2421
  "The below options are not meant for normal use and are only there for "
2422
  "developers to review saved settings or how ads are selected. These can be "
@@ -2424,116 +2232,130 @@ msgid ""
2424
  "SHOULD BE LEFT UNCHECKED!!"
2425
  msgstr ""
2426
 
2427
- #: dashboard/settings/maintenance.php:49
2428
  msgid "Developer Debug"
2429
  msgstr "Utvecklar Debug"
2430
 
2431
- #: dashboard/settings/maintenance.php:51
2432
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2433
  msgstr ""
2434
 
2435
- #: dashboard/settings/maintenance.php:52
2436
  msgid "View advert specs and (some) stats in the dashboard."
2437
  msgstr ""
2438
 
2439
- #: dashboard/settings/maintenance.php:53
2440
  #, fuzzy
2441
  msgid ""
2442
  "Disable timers for clicks and impressions and enable a alert window for "
2443
  "clicktracking."
2444
  msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
2445
 
2446
- #: dashboard/settings/maintenance.php:54
2447
  msgid "Temporarily disable encryption on the redirect url."
2448
  msgstr "Inaktivera tillfälligt kryptering på omdirigera url."
2449
 
2450
- #: dashboard/settings/maintenance.php:59
2451
  msgid "Status and Versions"
2452
  msgstr ""
2453
 
2454
- #: dashboard/settings/maintenance.php:62
2455
  msgid "Current status of adverts"
2456
  msgstr "Aktuell status för annonser"
2457
 
2458
- #: dashboard/settings/maintenance.php:63
2459
  msgid "Normal"
2460
  msgstr "Normal"
2461
 
2462
- #: dashboard/settings/maintenance.php:63
2463
  msgid "Error"
2464
  msgstr "Error"
2465
 
2466
- #: dashboard/settings/maintenance.php:63
2467
  msgid "Expired"
2468
  msgstr "Utgånget"
2469
 
2470
- #: dashboard/settings/maintenance.php:63
2471
  msgid "Expires Soon"
2472
  msgstr "Utgår snart"
2473
 
2474
- #: dashboard/settings/maintenance.php:63
2475
  msgid "Unknown"
2476
  msgstr ""
2477
 
2478
- #: dashboard/settings/maintenance.php:66
2479
  msgid "Banners/assets Folder"
2480
  msgstr ""
2481
 
2482
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2483
  msgid "Exists and appears writable"
2484
  msgstr ""
2485
 
2486
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2487
  msgid "Not writable or does not exist"
2488
  msgstr ""
2489
 
2490
- #: dashboard/settings/maintenance.php:70
2491
  msgid "Reports Folder"
2492
  msgstr ""
2493
 
2494
- #: dashboard/settings/maintenance.php:76
2495
  msgid "Advert evaluation"
2496
  msgstr ""
2497
 
2498
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2499
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2500
  msgstr ""
2501
 
2502
- #: dashboard/settings/maintenance.php:78
2503
- msgid "Trackerdata cleanup"
2504
  msgstr ""
2505
 
2506
- #: dashboard/settings/maintenance.php:83
2507
  msgid "Internal Versions"
2508
  msgstr ""
2509
 
2510
- #: dashboard/settings/maintenance.php:84
2511
  msgid ""
2512
  "Unless you experience database issues or a warning shows below, these "
2513
  "numbers are not really relevant for troubleshooting. Support may ask for "
2514
  "them to verify your database status."
2515
  msgstr ""
2516
 
2517
- #: dashboard/settings/maintenance.php:87
2518
  msgid "AdRotate version"
2519
  msgstr ""
2520
 
2521
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2522
  msgid "Current:"
2523
  msgstr ""
2524
 
2525
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2526
  msgid "Should be:"
2527
  msgstr ""
2528
 
2529
- #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2530
  msgid "Previous:"
2531
  msgstr ""
2532
 
2533
- #: dashboard/settings/maintenance.php:89
2534
  msgid "Database version"
2535
  msgstr ""
2536
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2537
  #: dashboard/settings/misc.php:16
2538
  msgid "Miscellaneous"
2539
  msgstr "Diverse"
@@ -2963,6 +2785,123 @@ msgid ""
2963
  msgstr ""
2964
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
2965
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2966
  #, fuzzy
2967
  #~ msgid "Enable responsive support for this advert."
2968
  #~ msgstr "Aktivera klickspårning för denna annons."
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-22 22:10+0800\n"
6
+ "PO-Revision-Date: 2017-01-22 22:10+0800\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.11\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:721
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
+ #: adrotate-functions.php:724
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
+ #: adrotate-functions.php:773
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:777
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:781
37
  msgid "Ad(s) deleted"
38
  msgstr "Annons(er) raderas"
39
 
40
+ #: adrotate-functions.php:785
41
  msgid "Group deleted"
42
  msgstr "Grupp raderad"
43
 
44
+ #: adrotate-functions.php:789
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Annons(er) statistik återställning"
47
 
48
+ #: adrotate-functions.php:793
49
  msgid "Ad(s) renewed"
50
  msgstr "Annons(er) förnyas"
51
 
52
+ #: adrotate-functions.php:797
53
  msgid "Ad(s) deactivated"
54
  msgstr "Annons(er) avaktiveras"
55
 
56
+ #: adrotate-functions.php:801
57
  msgid "Ad(s) activated"
58
  msgstr "Annons(er) aktiveras"
59
 
60
+ #: adrotate-functions.php:805
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupp inklusive dess annonser raderade"
63
 
64
+ #: adrotate-functions.php:809
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "export skapad"
68
 
69
+ #: adrotate-functions.php:814
70
  msgid "Settings saved"
71
  msgstr "Inställningar sparas"
72
 
73
+ #: adrotate-functions.php:818
74
  msgid "Database optimized"
75
  msgstr "Databas optimerad"
76
 
77
+ #: adrotate-functions.php:822
78
  msgid "Database repaired"
79
  msgstr "Databas reparation"
80
 
81
+ #: adrotate-functions.php:826
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr "annonser utvärderas och status har rättats till vid behov"
84
 
85
+ #: adrotate-functions.php:830
86
  msgid "Empty database records removed"
87
  msgstr "Tomma databasposter tas bort"
88
 
89
+ #: adrotate-functions.php:835
90
  msgid "Action prohibited"
91
  msgstr "Åtgärden förbjuden"
92
 
93
+ #: adrotate-functions.php:839
94
  msgid ""
95
  "The ad was saved but has an issue which might prevent it from working "
96
  "properly. Review the colored ad."
97
  msgstr ""
98
 
99
+ #: adrotate-functions.php:843
100
  msgid "No data found in selected time period"
101
  msgstr "Inga data finns i vald tidsperiod"
102
 
103
+ #: adrotate-functions.php:847
104
  msgid "Database can only be optimized or cleaned once every hour"
105
  msgstr "Databas kan endast optimeras eller rengöras en gång i timmen"
106
 
107
+ #: adrotate-functions.php:851
108
  msgid "Form can not be (partially) empty!"
109
  msgstr ""
110
 
111
+ #: adrotate-functions.php:855
112
  msgid "No ads found."
113
  msgstr ""
114
 
115
+ #: adrotate-functions.php:859
116
  msgid "Unexpected error"
117
  msgstr ""
118
 
119
+ #: adrotate-manage-publisher.php:677
120
  msgid "AdRotate Advertiser"
121
  msgstr ""
122
 
197
  msgstr "Ett okänt fel uppstod."
198
 
199
  #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
 
200
  msgid "Check adverts"
201
  msgstr ""
202
 
203
+ #: adrotate-output.php:664
204
  msgid ""
205
  "You have enable caching support but W3 Total Cache is not active on your "
206
  "site!"
207
  msgstr ""
208
 
209
+ #: adrotate-output.php:667
210
  msgid ""
211
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
212
  "not set."
213
  msgstr ""
214
 
215
+ #: adrotate-output.php:672
216
  msgid "Your AdRotate Banner folder is not writable or does not exist."
217
  msgstr ""
218
 
219
+ #: adrotate-output.php:712 dashboard/adrotatepro.php:86
220
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:88
221
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:98
222
+ #: dashboard/adrotatepro.php:99 dashboard/adrotatepro.php:100
223
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:64 dashboard/info.php:65
224
+ #: dashboard/info.php:66 dashboard/info.php:67 dashboard/info.php:71
225
+ #: dashboard/info.php:72 dashboard/info.php:73 dashboard/info.php:74
226
  #: dashboard/settings/geotargeting.php:35
227
  #, fuzzy
228
  msgid "Buy now"
229
  msgstr "Köp nu"
230
 
231
+ #: adrotate-output.php:713
232
  msgid ""
233
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
234
  "to the <strong>PRO</strong> version"
235
  msgstr ""
236
 
237
+ #: adrotate-output.php:713
238
  #, php-format
239
  msgid ""
240
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:713
244
  msgid "Thank you for your purchase!"
245
  msgstr ""
246
 
247
+ #: adrotate-output.php:774
248
  msgid ""
249
+ "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
250
+ "menu. If you need help getting started take a look at the"
251
  msgstr ""
252
 
253
+ #: adrotate-output.php:774
254
  msgid "manuals"
255
  msgstr "manual"
256
 
257
+ #: adrotate-output.php:774 adrotate-output.php:844
258
  msgid "and"
259
  msgstr ""
260
 
261
+ #: adrotate-output.php:774
262
  msgid "forums"
263
  msgstr ""
264
 
265
+ #: adrotate-output.php:807
266
  #, fuzzy
267
  msgid "Useful Links"
268
  msgstr "Nyttiga länkar"
269
 
270
+ #: adrotate-output.php:808
271
  msgid "Useful links to learn more about AdRotate"
272
  msgstr ""
273
 
274
+ #: adrotate-output.php:810
275
  msgid "AdRotate website"
276
  msgstr ""
277
 
278
+ #: adrotate-output.php:811
279
  #, fuzzy
280
  msgid "Getting Started With AdRotate"
281
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
282
 
283
+ #: adrotate-output.php:812
284
  #, fuzzy
285
  msgid "AdRotate manuals"
286
  msgstr "AdRotate Information"
287
 
288
+ #: adrotate-output.php:813
289
  #, fuzzy
290
  msgid "AdRotate Support Forum"
291
  msgstr "AdRotate butik"
292
 
293
+ #: adrotate-output.php:836 dashboard/info.php:46
294
+ msgid "Support AdRotate"
295
+ msgstr "Support AdRotate"
 
296
 
297
+ #: adrotate-output.php:837
298
+ msgid "Check out my website"
299
  msgstr ""
300
 
301
+ #: adrotate-output.php:844
302
  msgid ""
303
+ "Many users only think to review AdRotate when something goes wrong while "
304
+ "thousands of people happily use AdRotate."
305
  msgstr ""
306
 
307
+ #: adrotate-output.php:844
308
+ msgid "If you find AdRotate useful please leave your"
309
  msgstr ""
310
 
311
+ #: adrotate-output.php:844
312
  msgid "rating"
313
  msgstr ""
314
 
315
+ #: adrotate-output.php:844
316
  #, fuzzy
317
  msgid "review"
318
  msgstr "Betygsätt och omdöme"
319
 
320
+ #: adrotate-output.php:844
321
  msgid "on WordPress.org to help AdRotate grow in a positive way"
322
  msgstr ""
323
 
324
+ #: adrotate-output.php:870 dashboard/settings/notifications.php:50
325
  #: dashboard/settings/notifications.php:80
326
  msgid "Available in AdRotate Pro"
327
  msgstr "Tillgänglig i AdRotate Pro"
328
 
329
+ #: adrotate-output.php:870
330
  #, fuzzy
331
  msgid "More information..."
332
  msgstr "Mer info"
333
 
334
+ #: adrotate-output.php:871
335
  msgid "This feature is available in AdRotate Pro"
336
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
337
 
338
+ #: adrotate-output.php:871
339
  #, fuzzy
340
  msgid "Learn more"
341
  msgstr "Läs mer om"
342
 
343
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:217
344
+ #: dashboard/publisher/adverts-edit.php:238
345
  msgid "January"
346
  msgstr "Januari"
347
 
348
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:218
349
+ #: dashboard/publisher/adverts-edit.php:239
350
  msgid "February"
351
  msgstr "Februari"
352
 
353
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:219
354
+ #: dashboard/publisher/adverts-edit.php:240
355
  msgid "March"
356
  msgstr "Mars"
357
 
358
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:220
359
+ #: dashboard/publisher/adverts-edit.php:241
360
  msgid "April"
361
  msgstr "April"
362
 
363
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:221
364
+ #: dashboard/publisher/adverts-edit.php:242
365
  msgid "May"
366
  msgstr "Maj"
367
 
368
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:222
369
+ #: dashboard/publisher/adverts-edit.php:243
370
  msgid "June"
371
  msgstr "Juni"
372
 
373
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:223
374
+ #: dashboard/publisher/adverts-edit.php:244
375
  msgid "July"
376
  msgstr "Juli"
377
 
378
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:224
379
+ #: dashboard/publisher/adverts-edit.php:245
380
  msgid "August"
381
  msgstr "Augusti"
382
 
383
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:225
384
+ #: dashboard/publisher/adverts-edit.php:246
385
  msgid "September"
386
  msgstr "September"
387
 
388
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:226
389
+ #: dashboard/publisher/adverts-edit.php:247
390
  msgid "October"
391
  msgstr "Oktober"
392
 
393
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:227
394
+ #: dashboard/publisher/adverts-edit.php:248
395
  msgid "November"
396
  msgstr "November"
397
 
398
+ #: adrotate-statistics.php:147 dashboard/publisher/adverts-edit.php:228
399
+ #: dashboard/publisher/adverts-edit.php:249
400
  msgid "December"
401
  msgstr "December"
402
 
403
+ #: adrotate-statistics.php:152
404
  msgid "Previous"
405
  msgstr "Föregående"
406
 
407
+ #: adrotate-statistics.php:154
408
  msgid "This month"
409
  msgstr "Den här månaden"
410
 
411
+ #: adrotate-statistics.php:155
412
  msgid "Next"
413
  msgstr "Nästa"
414
 
415
+ #: adrotate-statistics.php:229
416
  msgid "No data to show!"
417
  msgstr "Inga data att visa!"
418
 
457
  msgid "Fill in the ID of the type you want to display!"
458
  msgstr "Fyll i ID för den typ som du vill visa!"
459
 
460
+ #: adrotate.php:101
461
  msgid "General Info"
462
  msgstr "Allmän info"
463
 
464
+ #: adrotate.php:102
465
  msgid "AdRotate Pro"
466
  msgstr "AdRotate Pro"
467
 
468
+ #: adrotate.php:103 dashboard/info.php:37
469
+ #: dashboard/publisher/adverts-edit.php:455
470
+ #: dashboard/publisher/groups-main.php:34
471
+ msgid "Adverts"
472
+ msgstr "Annonser"
 
 
 
 
 
 
 
473
 
474
+ #: adrotate.php:104 dashboard/info.php:41
475
+ msgid "Groups"
476
+ msgstr "Grupper"
 
477
 
478
+ #: adrotate.php:105
479
  msgid "Settings"
480
  msgstr "Inställningar"
481
 
482
+ #: adrotate.php:123
483
  msgid "AdRotate Info"
484
  msgstr "AdRotate Information"
485
 
486
+ #: adrotate.php:141
487
  #, fuzzy
488
  msgid "AdRotate Professional"
489
  msgstr "AdRotate"
490
 
491
+ #: adrotate.php:181
492
  msgid "Advert Management"
493
  msgstr ""
494
 
495
+ #: adrotate.php:239 adrotate.php:306
496
  msgid "Manage"
497
  msgstr "Hantera"
498
 
499
+ #: adrotate.php:240 adrotate.php:307
500
  msgid "Add New"
501
  msgstr "Lägg till ny"
502
 
503
+ #: adrotate.php:300
504
  msgid "Group Management"
505
  msgstr "Grupp Hantering"
506
 
507
+ #: adrotate.php:309
508
  msgid "Report"
509
  msgstr "Rapport"
510
 
511
+ #: adrotate.php:354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
512
  msgid "AdRotate Settings"
513
  msgstr "AdRotate Inställningar"
514
 
533
  msgid ""
534
  "Target mobile users with ease and show the right adverts to smartphones, "
535
  "tablets and computers. Mix and match as you please and offer adverts that "
536
+ "suit the device or mobile operating system. Create as many mobile adverts as "
537
+ "you want without effort and with a few easy to use options they show up "
538
+ "where you want them to!"
539
  msgstr ""
540
 
541
  #: dashboard/adrotatepro.php:34
562
  "forum. Get a solution (usually) within one business day."
563
  msgstr ""
564
 
565
+ #: dashboard/adrotatepro.php:48 dashboard/info.php:101
566
  msgid "AdRotate is brought to you by"
567
  msgstr "AdRotate kommer till dig genom"
568
 
569
+ #: dashboard/adrotatepro.php:61
570
  msgid "Schedule all campaigns with ease"
571
  msgstr ""
572
 
573
+ #: dashboard/adrotatepro.php:64
574
  msgid ""
575
  "Schedule your adverts and set up advertising campaigns based on dates you or "
576
+ "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
577
+ "specific days in the week. You name it, AdRotate schedules it. This makes "
578
+ "planning your revenue stream very flexible. You can set one or many "
579
+ "schedules for adverts."
580
  msgstr ""
581
 
582
+ #: dashboard/adrotatepro.php:68
583
  msgid "Avoid adblockers"
584
  msgstr ""
585
 
586
+ #: dashboard/adrotatepro.php:71
587
  msgid ""
588
+ "Try and avoid adblockers so your adverts get the exposure you want them to "
589
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
590
  "adverts are less likely to be removed. Of-course make sure you create your "
591
  "adverts smartly so these features reach their full potential!"
592
  msgstr ""
593
 
594
+ #: dashboard/adrotatepro.php:75
595
  msgid "Stay up-to-date with notifications"
596
  msgstr ""
597
 
598
+ #: dashboard/adrotatepro.php:78
599
  msgid ""
600
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
601
  "adverts expire or need your attention. Additionally, send push notifications "
603
  "or when advertisers create new adverts. Never miss an expiration date again."
604
  msgstr ""
605
 
606
+ #: dashboard/adrotatepro.php:82 dashboard/adrotatepro.php:94
607
+ #: dashboard/info.php:60
608
  #, fuzzy
609
  msgid "Buy AdRotate Professional"
610
  msgstr "Köp nu"
611
 
612
+ #: dashboard/adrotatepro.php:86 dashboard/info.php:64
613
  msgid "Single License"
614
  msgstr ""
615
 
616
+ #: dashboard/adrotatepro.php:86
617
  #, fuzzy
618
  msgid "For one WordPress installation."
619
  msgstr "Installation"
620
 
621
+ #: dashboard/adrotatepro.php:87 dashboard/adrotatepro.php:99
622
+ #: dashboard/info.php:65 dashboard/info.php:72
623
  #, fuzzy
624
  msgid "Duo License"
625
  msgstr "AdRotate Licens"
626
 
627
+ #: dashboard/adrotatepro.php:87
628
  #, fuzzy
629
  msgid "For two WordPress installations."
630
  msgstr "Installation"
631
 
632
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
633
+ #: dashboard/info.php:66 dashboard/info.php:73
634
  #, fuzzy
635
  msgid "Multi License"
636
  msgstr "AdRotate Licens"
637
 
638
+ #: dashboard/adrotatepro.php:88
639
  #, fuzzy
640
  msgid " For up to five WordPress installations."
641
  msgstr "Installation"
642
 
643
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
644
+ #: dashboard/info.php:67 dashboard/info.php:74
645
  #, fuzzy
646
  msgid "Developer License"
647
  msgstr "Utvecklar Debug"
648
 
649
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:67
650
  msgid "Unlimited WordPress installations and/or networks."
651
  msgstr ""
652
 
653
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:103
654
+ #: dashboard/info.php:68 dashboard/info.php:76
655
  msgid "Compare licenses"
656
  msgstr ""
657
 
658
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
659
  msgid "Not sure which license is for you? Compare them..."
660
  msgstr ""
661
 
662
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:68
663
  msgid "All Licenses"
664
  msgstr ""
665
 
666
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
667
  msgid "Lifetime License"
668
  msgstr ""
669
 
670
+ #: dashboard/adrotatepro.php:98 dashboard/info.php:71
671
  msgid "Single installation."
672
  msgstr ""
673
 
674
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:72
675
  msgid "Up to 2 installations."
676
  msgstr ""
677
 
678
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:73
679
  msgid "Up to 10 installations."
680
  msgstr ""
681
 
682
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:74
683
  msgid "Up to 25 installations or multisite networks."
684
  msgstr ""
685
 
686
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:75
687
  msgid ""
688
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
689
  msgstr ""
690
 
691
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
692
  msgid "Not sure which license is for you?"
693
  msgstr ""
694
 
695
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:76
696
  msgid "Compare Licenses"
697
  msgstr ""
698
 
708
  msgid "Adverts that need you"
709
  msgstr "Annonser som behöver dig"
710
 
 
 
 
 
 
711
  #: dashboard/info.php:38
712
  msgid "(Almost) Expired"
713
  msgstr "(Nästan) Expired"
714
 
 
 
 
 
715
  #: dashboard/info.php:42
716
  msgid "Have errors"
717
  msgstr "Har fel"
718
 
719
+ #: dashboard/info.php:47
 
 
 
 
720
  msgid ""
721
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
722
  "for updates about me and my plugins. Thank you!"
723
  msgstr ""
724
 
725
+ #: dashboard/info.php:51 dashboard/publisher/adverts-edit.php:124
726
+ msgid "Get paid as a publisher:"
727
+ msgstr ""
728
+
729
+ #: dashboard/info.php:64
730
+ msgid "One WordPress installation."
731
+ msgstr ""
732
+
733
+ #: dashboard/info.php:65
734
+ msgid "Two WordPress installations."
735
+ msgstr ""
736
+
737
+ #: dashboard/info.php:66
738
+ msgid "Up to five WordPress installations."
739
+ msgstr ""
740
+
741
+ #: dashboard/info.php:87
742
  msgid "AdRotate News"
743
  msgstr ""
744
 
745
+ #: dashboard/info.php:105
746
  msgid ""
747
  "I am a digital nomad in the Philippines. Click on my name to find out more "
748
  "about me and what I am doing. Thanks for your support and for using my "
753
  msgid "Disabled Adverts"
754
  msgstr ""
755
 
756
+ #: dashboard/publisher/adverts-disabled.php:20
757
+ #: dashboard/publisher/adverts-error.php:19
758
+ #: dashboard/publisher/adverts-main.php:20
759
+ #: dashboard/publisher/groups-main.php:20
760
+ msgid "Bulk Actions"
761
+ msgstr "Massåtgärder"
762
+
763
  #: dashboard/publisher/adverts-disabled.php:21
764
+ #: dashboard/publisher/adverts-edit.php:173
765
  msgid "Activate"
766
  msgstr "Aktivera"
767
 
768
+ #: dashboard/publisher/adverts-disabled.php:22
769
+ #: dashboard/publisher/adverts-error.php:21
770
+ #: dashboard/publisher/adverts-main.php:22
771
+ msgid "Delete"
772
+ msgstr "Radera"
773
+
774
  #: dashboard/publisher/adverts-disabled.php:23
775
  #: dashboard/publisher/adverts-error.php:22
776
  #: dashboard/publisher/adverts-main.php:23
777
  msgid "Reset stats"
778
  msgstr "Återställ statistik"
779
 
780
+ #: dashboard/publisher/adverts-disabled.php:25
781
+ #: dashboard/publisher/adverts-error.php:29
782
+ #: dashboard/publisher/adverts-main.php:30
783
+ #: dashboard/publisher/groups-main.php:24
784
+ msgid "Go"
785
+ msgstr "Gå"
786
+
787
+ #: dashboard/publisher/adverts-disabled.php:35
788
+ #: dashboard/publisher/adverts-error.php:39
789
+ #: dashboard/publisher/adverts-main.php:39
790
+ #: dashboard/publisher/groups-main.php:32
791
+ msgid "ID"
792
+ msgstr "ID"
793
+
794
  #: dashboard/publisher/adverts-disabled.php:36
795
  #: dashboard/publisher/adverts-error.php:40
796
  #: dashboard/publisher/adverts-main.php:40
802
  "timmar. 14:00 är 14:00. 06:00 är 6:00 timmar."
803
 
804
  #: dashboard/publisher/adverts-disabled.php:37
805
+ #: dashboard/publisher/adverts-edit.php:109
806
  #: dashboard/publisher/adverts-error.php:41
807
  #: dashboard/publisher/adverts-main.php:41
808
  msgid "Title"
810
 
811
  #: dashboard/publisher/adverts-disabled.php:38
812
  #: dashboard/publisher/adverts-main.php:44
813
+ #: dashboard/publisher/groups-edit.php:331
814
  #: dashboard/publisher/groups-main.php:36
815
  msgid "Shown"
816
  msgstr "Visa"
819
  #: dashboard/publisher/adverts-main.php:46
820
  #: dashboard/publisher/adverts-report.php:36
821
  #: dashboard/publisher/adverts-report.php:57
822
+ #: dashboard/publisher/groups-edit.php:332
823
  #: dashboard/publisher/groups-main.php:38
824
  #: dashboard/publisher/groups-report.php:37
825
  #: dashboard/publisher/groups-report.php:58
835
  msgid "CTR"
836
  msgstr "CTR"
837
 
838
+ #: dashboard/publisher/adverts-disabled.php:71
839
  #: dashboard/publisher/adverts-error.php:64
840
+ #: dashboard/publisher/adverts-main.php:82
841
  #: dashboard/publisher/groups-main.php:70
842
  msgid "Edit"
843
  msgstr "Ändra"
844
 
845
+ #: dashboard/publisher/adverts-disabled.php:71
846
  #: dashboard/publisher/adverts-error.php:64
847
+ #: dashboard/publisher/adverts-main.php:82
848
  #: dashboard/publisher/groups-main.php:70
849
  msgid "Stats"
850
  msgstr "Statistik"
851
 
852
+ #: dashboard/publisher/adverts-disabled.php:71
853
  #: dashboard/publisher/adverts-error.php:64
854
+ #: dashboard/publisher/adverts-main.php:82
855
  #, fuzzy
856
  msgid "Groups:"
857
  msgstr "Grupper"
858
 
859
+ #: dashboard/publisher/adverts-edit.php:47
860
  msgid "The AdCode cannot be empty!"
861
  msgstr "Den AdCode kan inte vara tomt!"
862
 
863
+ #: dashboard/publisher/adverts-edit.php:50
864
  msgid ""
865
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
866
  "use!"
867
  msgstr ""
868
 
869
+ #: dashboard/publisher/adverts-edit.php:53
870
  msgid ""
871
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
872
  "use!"
873
  msgstr ""
874
 
875
+ #: dashboard/publisher/adverts-edit.php:56
876
  msgid ""
877
  "There is a problem saving the image. Please reset your image and re-save the "
878
  "ad!"
879
  msgstr ""
880
 
881
+ #: dashboard/publisher/adverts-edit.php:59
882
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
883
  msgstr ""
884
 
885
+ #: dashboard/publisher/adverts-edit.php:64
886
  msgid ""
887
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
888
  "the ad!"
890
  "AdRotate kan inte hitta något fel, men annonsen är märkt felaktiga, försök "
891
  "åter spara annonsen!"
892
 
893
+ #: dashboard/publisher/adverts-edit.php:67
894
  msgid "This ad is expired and currently not shown on your website!"
895
  msgstr ""
896
  "Den här annonsen har gått ut och för tillfället inte visas på din webbplats!"
897
 
898
+ #: dashboard/publisher/adverts-edit.php:70
899
  msgid "The ad will expire in less than 2 days!"
900
  msgstr "Annonsen går ut om mindre än 2 dagar!"
901
 
902
+ #: dashboard/publisher/adverts-edit.php:73
903
  msgid "This ad will expire in less than 7 days!"
904
  msgstr "Annonsen går ut om mindre än 7 dagar!"
905
 
906
+ #: dashboard/publisher/adverts-edit.php:76
907
  msgid "This ad has been disabled and does not rotate on your site!"
908
  msgstr "Den här annonsen har inaktiverats och inte roterar på din webbplats!"
909
 
910
+ #: dashboard/publisher/adverts-edit.php:101
911
  msgid "New Advert"
912
  msgstr "Ny annons"
913
 
914
+ #: dashboard/publisher/adverts-edit.php:103
915
  msgid "Edit Advert"
916
  msgstr "Redigera annons"
917
 
918
+ #: dashboard/publisher/adverts-edit.php:115
919
  msgid "AdCode"
920
  msgstr ""
921
 
922
+ #: dashboard/publisher/adverts-edit.php:120
923
  msgid "Basic Examples:"
924
  msgstr "Grundläggande Exempel:"
925
 
926
+ #: dashboard/publisher/adverts-edit.php:131
927
  msgid "Useful tags"
928
  msgstr ""
929
 
930
+ #: dashboard/publisher/adverts-edit.php:133
931
  msgid "Insert the advert ID Number."
932
  msgstr ""
933
 
934
+ #: dashboard/publisher/adverts-edit.php:133
935
  msgid "Required when selecting a asset below."
936
  msgstr ""
937
 
938
+ #: dashboard/publisher/adverts-edit.php:133
939
  msgid "Insert the advert name."
940
  msgstr ""
941
 
942
+ #: dashboard/publisher/adverts-edit.php:133
943
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
944
  msgstr ""
945
 
946
+ #: dashboard/publisher/adverts-edit.php:133
947
  msgid "Add inside the <a> tag to open advert in a new window."
948
  msgstr ""
949
 
950
+ #: dashboard/publisher/adverts-edit.php:133
951
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
952
  msgstr ""
953
 
954
+ #: dashboard/publisher/adverts-edit.php:133
955
  msgid ""
956
  "Place the cursor in your AdCode where you want to add any of these tags and "
957
  "click to add it."
958
  msgstr ""
959
 
960
+ #: dashboard/publisher/adverts-edit.php:138
961
  msgid "Preview"
962
  msgstr "Förhandsgranska"
963
 
964
+ #: dashboard/publisher/adverts-edit.php:141
965
  msgid ""
966
  "Note: While this preview is an accurate one, it might look different then it "
967
  "does on the website."
969
  "OBS: Även förhandsvisningen är en riktig en, kan det se annorlunda ut då den "
970
  "gör på webbplatsen."
971
 
972
+ #: dashboard/publisher/adverts-edit.php:142
973
  msgid ""
974
  "This is because of CSS differences. Your themes CSS file is not active here!"
975
  msgstr ""
976
  "Detta är på grund av CSS skillnader. Ditt teman CSS-fil är inte aktiv här!"
977
 
978
+ #: dashboard/publisher/adverts-edit.php:147
979
  msgid "Banner asset"
980
  msgstr ""
981
 
982
+ #: dashboard/publisher/adverts-edit.php:150
983
  msgid "WordPress media:"
984
  msgstr ""
985
 
986
+ #: dashboard/publisher/adverts-edit.php:150
987
  msgid "Select Banner"
988
  msgstr "Välj Banner"
989
 
990
+ #: dashboard/publisher/adverts-edit.php:152
991
  msgid "- OR -"
992
  msgstr "- ELLER -"
993
 
994
+ #: dashboard/publisher/adverts-edit.php:154
995
  msgid "Banner folder:"
996
  msgstr "Banner folder:"
997
 
998
+ #: dashboard/publisher/adverts-edit.php:155
999
  msgid "No image selected"
1000
  msgstr "Ingen bild vald"
1001
 
1002
+ #: dashboard/publisher/adverts-edit.php:159
1003
  msgid "Use %asset% in the adcode instead of the file path."
1004
  msgstr ""
1005
 
1006
+ #: dashboard/publisher/adverts-edit.php:159
1007
  msgid ""
1008
  "Use either the text field or the dropdown. If the textfield has content that "
1009
  "field has priority."
1011
  "Använd antingen textfältet eller listrutan. Om textfältet har innehåll som "
1012
  "området har företräde."
1013
 
1014
+ #: dashboard/publisher/adverts-edit.php:164
1015
  #: dashboard/settings/statistics.php:17
1016
  msgid "Statistics"
1017
  msgstr "Statistik"
1018
 
1019
+ #: dashboard/publisher/adverts-edit.php:166
1020
  msgid "Enable click and impression tracking for this advert."
1021
  msgstr ""
1022
 
1023
+ #: dashboard/publisher/adverts-edit.php:167
1024
  msgid ""
1025
  "Note: Clicktracking does not work for Javascript adverts such as those "
1026
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1027
  "always supported."
1028
  msgstr ""
1029
 
1030
+ #: dashboard/publisher/adverts-edit.php:177
1031
  msgid "Yes, this ad will be used"
1032
  msgstr "Ja, kommer denna annons att användas"
1033
 
1034
+ #: dashboard/publisher/adverts-edit.php:178
1035
  msgid "No, do not show this ad anywhere"
1036
  msgstr "Nej, inte visa denna annons någonstans"
1037
 
1038
+ #: dashboard/publisher/adverts-edit.php:185
1039
+ #: dashboard/publisher/adverts-main.php:107
1040
  #: dashboard/publisher/groups-edit.php:71
1041
  #: dashboard/publisher/groups-main.php:89
1042
  #, fuzzy
1044
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1045
 
1046
  #: dashboard/publisher/adverts-edit.php:185
1047
+ #: dashboard/publisher/adverts-main.php:107
1048
+ #: dashboard/publisher/groups-edit.php:71
1049
+ #: dashboard/publisher/groups-main.php:89
1050
+ #, fuzzy
1051
+ msgid "More information"
1052
+ msgstr "Mer info"
1053
+
1054
+ #: dashboard/publisher/adverts-edit.php:188
1055
+ #: dashboard/publisher/adverts-edit.php:288
1056
+ #: dashboard/publisher/adverts-edit.php:444
1057
+ #: dashboard/publisher/adverts-edit.php:485
1058
  msgid "Save Advert"
1059
  msgstr "Spara annons"
1060
 
1061
+ #: dashboard/publisher/adverts-edit.php:189
1062
+ #: dashboard/publisher/adverts-edit.php:289
1063
+ #: dashboard/publisher/adverts-edit.php:445
1064
+ #: dashboard/publisher/adverts-edit.php:486
1065
  #: dashboard/publisher/groups-edit.php:150
1066
+ #: dashboard/publisher/groups-edit.php:299
1067
+ #: dashboard/publisher/groups-edit.php:391
1068
  msgid "Cancel"
1069
  msgstr "Avbryt"
1070
 
1071
+ #: dashboard/publisher/adverts-edit.php:192
1072
+ #: dashboard/publisher/adverts-edit.php:427
1073
  #: dashboard/publisher/groups-edit.php:132
1074
+ #: dashboard/publisher/groups-edit.php:281
1075
  msgid "Usage"
1076
  msgstr "Användning"
1077
 
1078
+ #: dashboard/publisher/adverts-edit.php:196
1079
+ #: dashboard/publisher/adverts-edit.php:431
1080
  #: dashboard/publisher/groups-edit.php:136
1081
+ #: dashboard/publisher/groups-edit.php:205
1082
+ #: dashboard/publisher/groups-edit.php:245
1083
+ #: dashboard/publisher/groups-edit.php:285
1084
  msgid "Widget"
1085
  msgstr ""
1086
 
1087
+ #: dashboard/publisher/adverts-edit.php:197
1088
+ #: dashboard/publisher/adverts-edit.php:432
1089
  msgid ""
1090
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1091
  "and select the advert or the group the advert is in."
1092
  msgstr ""
1093
 
1094
+ #: dashboard/publisher/adverts-edit.php:200
1095
+ #: dashboard/publisher/adverts-edit.php:435
1096
  #: dashboard/publisher/groups-edit.php:140
1097
+ #: dashboard/publisher/groups-edit.php:289
1098
  msgid "In a post or page"
1099
  msgstr ""
1100
 
1101
+ #: dashboard/publisher/adverts-edit.php:202
1102
+ #: dashboard/publisher/adverts-edit.php:437
1103
  #: dashboard/publisher/groups-edit.php:142
1104
+ #: dashboard/publisher/groups-edit.php:291
1105
  msgid "Directly in a theme"
1106
  msgstr ""
1107
 
1108
+ #: dashboard/publisher/adverts-edit.php:208
1109
  msgid "Schedule your advert"
1110
  msgstr ""
1111
 
1112
+ #: dashboard/publisher/adverts-edit.php:212
1113
  msgid "Start date (day/month/year)"
1114
  msgstr ""
1115
 
1116
+ #: dashboard/publisher/adverts-edit.php:233
1117
  msgid "End date (day/month/year)"
1118
  msgstr ""
1119
 
1120
+ #: dashboard/publisher/adverts-edit.php:256
1121
  msgid "Start time (hh:mm)"
1122
  msgstr ""
1123
 
1124
+ #: dashboard/publisher/adverts-edit.php:263
1125
  msgid "End time (hh:mm)"
1126
  msgstr ""
1127
 
1128
+ #: dashboard/publisher/adverts-edit.php:273
1129
  msgid "Maximum Clicks"
1130
  msgstr ""
1131
 
1132
+ #: dashboard/publisher/adverts-edit.php:274
1133
+ #: dashboard/publisher/adverts-edit.php:276
1134
  msgid "Leave empty or 0 to skip this."
1135
  msgstr "Lämna tomt eller 0 för att hoppa över detta."
1136
 
1137
+ #: dashboard/publisher/adverts-edit.php:275
1138
  msgid "Maximum Impressions"
1139
  msgstr ""
1140
 
1141
+ #: dashboard/publisher/adverts-edit.php:280
1142
  msgid "Important"
1143
  msgstr ""
1144
 
1145
+ #: dashboard/publisher/adverts-edit.php:281
1146
  msgid ""
1147
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1148
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1149
  "14:00 hours. 6AM is 6:00 hours."
1150
  msgstr ""
1151
 
1152
+ #: dashboard/publisher/adverts-edit.php:285
1153
  msgid ""
1154
  "Create multiple and more advanced schedules for each advert with AdRotate "
1155
  "Pro."
1156
  msgstr ""
1157
 
1158
+ #: dashboard/publisher/adverts-edit.php:285
1159
+ #: dashboard/publisher/adverts-edit.php:354
1160
+ #: dashboard/publisher/adverts-edit.php:425
1161
+ #: dashboard/publisher/groups-edit.php:191
1162
  #, fuzzy
1163
  msgid "Upgrade today"
1164
  msgstr "i dag"
1165
 
1166
+ #: dashboard/publisher/adverts-edit.php:292
1167
  #: dashboard/publisher/groups-edit.php:153
1168
  msgid "Advanced"
1169
  msgstr "Utökad"
1170
 
1171
+ #: dashboard/publisher/adverts-edit.php:293
1172
+ #: dashboard/publisher/adverts-edit.php:357
 
 
 
1173
  msgid "Available in AdRotate Pro!"
1174
  msgstr ""
1175
 
1176
+ #: dashboard/publisher/adverts-edit.php:298
1177
  #: dashboard/publisher/adverts-main.php:42
1178
+ #: dashboard/publisher/groups-edit.php:334
1179
  msgid "Weight"
1180
  msgstr "Vikt"
1181
 
1182
+ #: dashboard/publisher/adverts-edit.php:301
1183
  msgid "Few impressions"
1184
  msgstr ""
1185
 
1186
+ #: dashboard/publisher/adverts-edit.php:306
1187
  msgid "Less than average"
1188
  msgstr "Mindre än genomsnittet"
1189
 
1190
+ #: dashboard/publisher/adverts-edit.php:311
1191
  msgid "Normal impressions"
1192
  msgstr ""
1193
 
1194
+ #: dashboard/publisher/adverts-edit.php:316
1195
  msgid "More than average"
1196
  msgstr "Mer än genomsnittet"
1197
 
1198
+ #: dashboard/publisher/adverts-edit.php:321
1199
  msgid "Many impressions"
1200
  msgstr ""
1201
 
1202
+ #: dashboard/publisher/adverts-edit.php:326
1203
  msgid "Mobile"
1204
  msgstr ""
1205
 
1206
+ #: dashboard/publisher/adverts-edit.php:328
1207
  msgid "Computers"
1208
  msgstr ""
1209
 
1210
+ #: dashboard/publisher/adverts-edit.php:331
1211
  msgid "Smartphones"
1212
  msgstr ""
1213
 
1214
+ #: dashboard/publisher/adverts-edit.php:334
1215
  msgid "Tablets"
1216
  msgstr ""
1217
 
1218
+ #: dashboard/publisher/adverts-edit.php:337
1219
  msgid ""
1220
  "Also enable mobile support in the group this advert goes in or these are "
1221
  "ignored."
1222
  msgstr ""
1223
 
1224
+ #: dashboard/publisher/adverts-edit.php:337
1225
+ msgid ""
1226
+ "Operating system detection only detects iOS/Android/Others or neither. Only "
1227
+ "works if Smartphones and/or Tablets is enabled."
1228
  msgstr ""
1229
 
1230
+ #: dashboard/publisher/adverts-edit.php:341
1231
+ msgid "Mobile OS"
1232
+ msgstr ""
 
1233
 
1234
+ #: dashboard/publisher/adverts-edit.php:343
1235
+ msgid "iOS"
1236
  msgstr ""
 
1237
 
1238
+ #: dashboard/publisher/adverts-edit.php:346
1239
+ msgid "Android"
 
 
1240
  msgstr ""
1241
 
1242
+ #: dashboard/publisher/adverts-edit.php:349
1243
+ msgid "Others"
1244
  msgstr ""
1245
 
1246
+ #: dashboard/publisher/adverts-edit.php:354
1247
  msgid ""
1248
+ "With AdRotate Pro you can easily select which devices and mobile operating "
1249
+ "systems the advert should show on!"
1250
  msgstr ""
1251
 
1252
+ #: dashboard/publisher/adverts-edit.php:356
1253
+ #: dashboard/publisher/groups-edit.php:180
1254
+ #: dashboard/settings/advertisers.php:38
1255
+ msgid "Geo Targeting"
1256
+ msgstr "Geo Targeting"
1257
 
1258
+ #: dashboard/publisher/adverts-edit.php:357
1259
  msgid ""
1260
+ "Assign the advert to a group and enable that group to use Geo Targeting."
 
1261
  msgstr ""
1262
 
1263
+ #: dashboard/publisher/adverts-edit.php:415
1264
+ msgid "A comma separated list of items:"
1265
+ msgstr ""
1266
+
1267
+ #: dashboard/publisher/adverts-edit.php:415
1268
  #, fuzzy
1269
  msgid ""
1270
  "AdRotate does not check the validity of names so make sure you spell them "
1273
  "AdRotate kan inte kontrollera giltigheten av namn så se till att stava dem "
1274
  "rätt!"
1275
 
1276
+ #: dashboard/publisher/adverts-edit.php:425
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1277
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1278
  msgstr ""
1279
 
1280
+ #: dashboard/publisher/adverts-edit.php:449
1281
  msgid "Select Groups"
1282
  msgstr "Välj Grupper"
1283
 
1284
+ #: dashboard/publisher/adverts-edit.php:454
1285
  msgid "ID - Name"
1286
  msgstr "ID - Namn"
1287
 
1288
+ #: dashboard/publisher/adverts-edit.php:464
1289
  #: dashboard/publisher/groups-main.php:60
1290
  #: dashboard/settings/geotargeting.php:49
1291
  msgid "Default"
1292
  msgstr "Default"
1293
 
1294
+ #: dashboard/publisher/adverts-edit.php:465
1295
  #: dashboard/publisher/groups-main.php:61
1296
  msgid "Dynamic"
1297
  msgstr "Dynamic"
1298
 
1299
+ #: dashboard/publisher/adverts-edit.php:465
1300
  #: dashboard/publisher/groups-main.php:61
1301
  #, fuzzy
1302
  msgid "second rotation"
1303
  msgstr "Geo Location"
1304
 
1305
+ #: dashboard/publisher/adverts-edit.php:466
1306
  #: dashboard/publisher/groups-main.php:62
1307
  msgid "Block"
1308
  msgstr "Block"
1309
 
1310
+ #: dashboard/publisher/adverts-edit.php:466
1311
  #: dashboard/publisher/groups-main.php:62
1312
  #, fuzzy
1313
  msgid "grid"
1315
  "Gör ett rutnät för dina annonser. Fylla i 2 och 2 gör ett 2x2 rutnät. "
1316
  "(Standard: 2/2)"
1317
 
1318
+ #: dashboard/publisher/adverts-edit.php:467
1319
+ #: dashboard/publisher/groups-edit.php:199
1320
  #: dashboard/publisher/groups-main.php:63
1321
  msgid "Post Injection"
1322
  msgstr "Post injektion"
1323
 
1324
+ #: dashboard/publisher/adverts-edit.php:468
1325
  msgid "Geolocation"
1326
  msgstr "Geolocation"
1327
 
1328
+ #: dashboard/publisher/adverts-edit.php:474
1329
  #: dashboard/publisher/groups-edit.php:57
1330
  #: dashboard/publisher/groups-main.php:70
1331
  msgid "Mode"
1366
  msgstr "För 7 dagar"
1367
 
1368
  #: dashboard/publisher/adverts-error.php:71
1369
+ #: dashboard/publisher/groups-edit.php:384
1370
  msgid "Configuration errors."
1371
  msgstr "Konfigurations fel."
1372
 
1373
+ #: dashboard/publisher/adverts-error.php:72
1374
+ #: dashboard/publisher/groups-edit.php:385
1375
+ msgid "Expires soon."
1376
+ msgstr "Utgår inom kort."
1377
+
1378
+ #: dashboard/publisher/adverts-error.php:73
1379
+ #: dashboard/publisher/groups-edit.php:386
1380
+ msgid "Has expired."
1381
+ msgstr "Har gått ut."
1382
+
1383
  #: dashboard/publisher/adverts-main.php:12
1384
  msgid "Active Adverts"
1385
  msgstr ""
1396
  msgid "Today"
1397
  msgstr "i dag"
1398
 
1399
+ #: dashboard/publisher/adverts-main.php:102
1400
  msgid "No adverts created yet!"
1401
  msgstr ""
1402
 
1450
  msgid "Edit Group"
1451
  msgstr "Redigera grupp"
1452
 
1453
+ #: dashboard/publisher/groups-edit.php:51
1454
+ #: dashboard/publisher/groups-main.php:33
1455
+ msgid "Name"
1456
+ msgstr "Namn"
1457
+
1458
  #: dashboard/publisher/groups-edit.php:60
1459
  msgid "Default - Show one ad at a time"
1460
  msgstr "Standard - Visa en annons i taget"
1540
  "Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
1541
 
1542
  #: dashboard/publisher/groups-edit.php:137
1543
+ #: dashboard/publisher/groups-edit.php:286
1544
  msgid ""
1545
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1546
  "Adverts\" and enter ID"
1547
  msgstr ""
1548
 
1549
  #: dashboard/publisher/groups-edit.php:149
1550
+ #: dashboard/publisher/groups-edit.php:298
1551
+ #: dashboard/publisher/groups-edit.php:390
1552
  #, fuzzy
1553
  msgid "Save Group"
1554
  msgstr "Spara"
1604
  "setting. Not every theme supports this feature."
1605
  msgstr ""
1606
 
 
 
 
 
 
1607
  #: dashboard/publisher/groups-edit.php:181
1608
  msgid "Enable Geo Targeting for this group."
1609
  msgstr ""
1624
  msgid "Do not forget to put at least one mobile advert in this group."
1625
  msgstr ""
1626
 
1627
+ #: dashboard/publisher/groups-edit.php:191
 
 
 
 
 
1628
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1629
  msgstr ""
1630
 
1631
+ #: dashboard/publisher/groups-edit.php:204
1632
+ #: dashboard/publisher/groups-edit.php:244
 
 
 
 
1633
  #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1634
  #, fuzzy
1635
  msgid "Disabled"
1636
  msgstr "Inaktivera annonser"
1637
 
1638
  #: dashboard/publisher/groups-edit.php:206
1639
+ #: dashboard/publisher/groups-edit.php:246
1640
  #, fuzzy
1641
  msgid "Before content"
1642
  msgstr "Innan publicerat innehåll"
1643
 
1644
  #: dashboard/publisher/groups-edit.php:207
1645
+ #: dashboard/publisher/groups-edit.php:247
1646
  #, fuzzy
1647
  msgid "After content"
1648
  msgstr "Före och efter innehållet"
1649
 
1650
  #: dashboard/publisher/groups-edit.php:208
1651
+ #: dashboard/publisher/groups-edit.php:248
1652
  #, fuzzy
1653
  msgid "Before and after content"
1654
  msgstr "Före och efter innehållet"
1655
 
1656
  #: dashboard/publisher/groups-edit.php:209
1657
+ #: dashboard/publisher/groups-edit.php:249
1658
  msgid "Inside the content..."
1659
  msgstr ""
1660
 
1661
  #: dashboard/publisher/groups-edit.php:215
1662
+ #: dashboard/publisher/groups-edit.php:255
1663
  msgid "after the middle paragraph"
1664
  msgstr ""
1665
 
1666
  #: dashboard/publisher/groups-edit.php:216
1667
+ #: dashboard/publisher/groups-edit.php:256
1668
  msgid "after the 1st paragraph"
1669
  msgstr ""
1670
 
1671
  #: dashboard/publisher/groups-edit.php:217
1672
+ #: dashboard/publisher/groups-edit.php:257
1673
  msgid "after the 2nd paragraph"
1674
  msgstr ""
1675
 
1676
  #: dashboard/publisher/groups-edit.php:218
1677
+ #: dashboard/publisher/groups-edit.php:258
1678
  msgid "after the 3rd paragraph"
1679
  msgstr ""
1680
 
1681
  #: dashboard/publisher/groups-edit.php:219
1682
+ #: dashboard/publisher/groups-edit.php:259
1683
  msgid "after the 4th paragraph"
1684
  msgstr ""
1685
 
1686
  #: dashboard/publisher/groups-edit.php:220
1687
+ #: dashboard/publisher/groups-edit.php:260
1688
  msgid "after the 5th paragraph"
1689
  msgstr ""
1690
 
1691
  #: dashboard/publisher/groups-edit.php:221
1692
+ #: dashboard/publisher/groups-edit.php:261
1693
  msgid "after the 6th paragraph"
1694
  msgstr ""
1695
 
1696
  #: dashboard/publisher/groups-edit.php:222
1697
+ #: dashboard/publisher/groups-edit.php:262
1698
  msgid "after the 7th paragraph"
1699
  msgstr ""
1700
 
1701
  #: dashboard/publisher/groups-edit.php:223
1702
+ #: dashboard/publisher/groups-edit.php:263
1703
  msgid "after the 8th paragraph"
1704
  msgstr ""
1705
 
 
 
 
 
 
 
 
 
1706
  #: dashboard/publisher/groups-edit.php:239
1707
+ msgid "Page Injection"
1708
  msgstr ""
1709
 
1710
+ #: dashboard/publisher/groups-edit.php:302
 
 
 
 
 
 
 
 
1711
  msgid "Wrapper code"
1712
  msgstr "Wrapper kod"
1713
 
1714
+ #: dashboard/publisher/groups-edit.php:303
1715
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1716
  msgstr ""
1717
 
1718
+ #: dashboard/publisher/groups-edit.php:307
1719
  msgid "Before advert"
1720
  msgstr ""
1721
 
1722
+ #: dashboard/publisher/groups-edit.php:310
1723
+ #: dashboard/publisher/groups-edit.php:318
1724
+ msgid "Example:"
1725
+ msgstr "Exempel:"
1726
+
1727
+ #: dashboard/publisher/groups-edit.php:311
1728
  msgid "Options:"
1729
  msgstr "Options:"
1730
 
1731
+ #: dashboard/publisher/groups-edit.php:315
1732
  msgid "After advert"
1733
  msgstr ""
1734
 
1735
+ #: dashboard/publisher/groups-edit.php:324
1736
  msgid "Select adverts"
1737
  msgstr ""
1738
 
1739
+ #: dashboard/publisher/groups-edit.php:329
1740
  msgid "Choose adverts"
1741
  msgstr ""
1742
 
1743
+ #: dashboard/publisher/groups-edit.php:335
1744
  msgid "Visible until"
1745
  msgstr "Synlig tills"
1746
 
1747
+ #: dashboard/publisher/groups-edit.php:377
1748
  msgid "No adverts created!"
1749
  msgstr ""
1750
 
1751
+ #: dashboard/publisher/groups-main.php:12
1752
+ msgid "Manage Groups"
1753
+ msgstr "Hantera Grupper"
1754
+
1755
  #: dashboard/publisher/groups-main.php:21
1756
  msgid "Delete Group"
1757
  msgstr "Ta bort grupp"
1769
  msgstr "Denna åtgärd kan inte ångras!"
1770
 
1771
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1772
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
1773
+ #: dashboard/settings/maintenance.php:96
1774
  msgid "OK to continue, CANCEL to stop."
1775
  msgstr "OK för att fortsätta, CANCEL för att avbryta."
1776
 
1836
  msgstr ""
1837
 
1838
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1839
+ #: dashboard/settings/maintenance.php:103 dashboard/settings/misc.php:43
1840
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1841
+ #: dashboard/settings/statistics.php:79
1842
  msgid "Update Options"
1843
  msgstr "Update Options"
1844
 
2155
  msgid "Are you sure you want to continue?"
2156
  msgstr "Är du säker på att du vill fortsätta?"
2157
 
2158
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:39
2159
+ #: dashboard/settings/maintenance.php:96
2160
  #, fuzzy
2161
  msgid "This might take a while and may slow down your site during this action!"
2162
  msgstr ""
2168
  msgstr "Radera statistik äldre än 356 dagar (tillval)."
2169
 
2170
  #: dashboard/settings/maintenance.php:32
2171
+ msgid "Delete old tracker data. (Does nothing if you use a memcached plugin)"
 
 
2172
  msgstr ""
2173
 
2174
+ #: dashboard/settings/maintenance.php:33
2175
  msgid ""
2176
+ "For when you create an advert, group or schedule and it does not save or "
2177
+ "keep changes you make."
2178
  msgstr ""
2179
 
2180
+ #: dashboard/settings/maintenance.php:33
2181
  msgid ""
2182
+ "Additionally you can clean up old schedules, tracker data and/or statistics. "
2183
+ "This will improve the speed of your site."
2184
  msgstr ""
2185
 
2186
+ #: dashboard/settings/maintenance.php:37
2187
  #, fuzzy
2188
  msgid "Re-evaluate Ads"
2189
  msgstr "Omvärdera annonser"
2190
 
2191
+ #: dashboard/settings/maintenance.php:39
2192
  #, fuzzy
2193
  msgid "Re-evaluate all ads"
2194
  msgstr "Omvärdera alla annonser"
2195
 
2196
+ #: dashboard/settings/maintenance.php:39
2197
  #, fuzzy
2198
  msgid "You are about to check all ads for errors."
2199
  msgstr "Du håller på att kolla alla annonser för fel."
2200
 
2201
+ #: dashboard/settings/maintenance.php:40
2202
  #, fuzzy
2203
  msgid ""
2204
  "This will apply all evaluation rules to all ads to see if any error slipped "
2207
  "Detta kommer att gälla alla regler utvärderings alla annonser för att se om "
2208
  "något fel halkade in. Normalt ska du inte behöva den här funktionen."
2209
 
2210
+ #: dashboard/settings/maintenance.php:44
2211
  msgid ""
2212
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2213
  "database. They only apply to your ads/groups and stats. Not to other "
2220
  "is not a valid point in any case."
2221
  msgstr ""
2222
 
2223
+ #: dashboard/settings/maintenance.php:46
2224
  msgid "Troubleshooting"
2225
  msgstr "Felsökning"
2226
 
2227
+ #: dashboard/settings/maintenance.php:47
2228
  msgid ""
2229
  "The below options are not meant for normal use and are only there for "
2230
  "developers to review saved settings or how ads are selected. These can be "
2232
  "SHOULD BE LEFT UNCHECKED!!"
2233
  msgstr ""
2234
 
2235
+ #: dashboard/settings/maintenance.php:50
2236
  msgid "Developer Debug"
2237
  msgstr "Utvecklar Debug"
2238
 
2239
+ #: dashboard/settings/maintenance.php:52
2240
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2241
  msgstr ""
2242
 
2243
+ #: dashboard/settings/maintenance.php:53
2244
  msgid "View advert specs and (some) stats in the dashboard."
2245
  msgstr ""
2246
 
2247
+ #: dashboard/settings/maintenance.php:54
2248
  #, fuzzy
2249
  msgid ""
2250
  "Disable timers for clicks and impressions and enable a alert window for "
2251
  "clicktracking."
2252
  msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
2253
 
2254
+ #: dashboard/settings/maintenance.php:55
2255
  msgid "Temporarily disable encryption on the redirect url."
2256
  msgstr "Inaktivera tillfälligt kryptering på omdirigera url."
2257
 
2258
+ #: dashboard/settings/maintenance.php:60
2259
  msgid "Status and Versions"
2260
  msgstr ""
2261
 
2262
+ #: dashboard/settings/maintenance.php:63
2263
  msgid "Current status of adverts"
2264
  msgstr "Aktuell status för annonser"
2265
 
2266
+ #: dashboard/settings/maintenance.php:64
2267
  msgid "Normal"
2268
  msgstr "Normal"
2269
 
2270
+ #: dashboard/settings/maintenance.php:64
2271
  msgid "Error"
2272
  msgstr "Error"
2273
 
2274
+ #: dashboard/settings/maintenance.php:64
2275
  msgid "Expired"
2276
  msgstr "Utgånget"
2277
 
2278
+ #: dashboard/settings/maintenance.php:64
2279
  msgid "Expires Soon"
2280
  msgstr "Utgår snart"
2281
 
2282
+ #: dashboard/settings/maintenance.php:64
2283
  msgid "Unknown"
2284
  msgstr ""
2285
 
2286
+ #: dashboard/settings/maintenance.php:67
2287
  msgid "Banners/assets Folder"
2288
  msgstr ""
2289
 
2290
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2291
  msgid "Exists and appears writable"
2292
  msgstr ""
2293
 
2294
+ #: dashboard/settings/maintenance.php:69 dashboard/settings/maintenance.php:73
2295
  msgid "Not writable or does not exist"
2296
  msgstr ""
2297
 
2298
+ #: dashboard/settings/maintenance.php:71
2299
  msgid "Reports Folder"
2300
  msgstr ""
2301
 
2302
+ #: dashboard/settings/maintenance.php:77
2303
  msgid "Advert evaluation"
2304
  msgstr ""
2305
 
2306
+ #: dashboard/settings/maintenance.php:78 dashboard/settings/maintenance.php:80
2307
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2308
  msgstr ""
2309
 
2310
+ #: dashboard/settings/maintenance.php:79
2311
+ msgid "Clean Transients"
2312
  msgstr ""
2313
 
2314
+ #: dashboard/settings/maintenance.php:84
2315
  msgid "Internal Versions"
2316
  msgstr ""
2317
 
2318
+ #: dashboard/settings/maintenance.php:85
2319
  msgid ""
2320
  "Unless you experience database issues or a warning shows below, these "
2321
  "numbers are not really relevant for troubleshooting. Support may ask for "
2322
  "them to verify your database status."
2323
  msgstr ""
2324
 
2325
+ #: dashboard/settings/maintenance.php:88
2326
  msgid "AdRotate version"
2327
  msgstr ""
2328
 
2329
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2330
  msgid "Current:"
2331
  msgstr ""
2332
 
2333
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2334
  msgid "Should be:"
2335
  msgstr ""
2336
 
2337
+ #: dashboard/settings/maintenance.php:89 dashboard/settings/maintenance.php:91
2338
  msgid "Previous:"
2339
  msgstr ""
2340
 
2341
+ #: dashboard/settings/maintenance.php:90
2342
  msgid "Database version"
2343
  msgstr ""
2344
 
2345
+ #: dashboard/settings/maintenance.php:96
2346
+ msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2347
+ msgstr ""
2348
+
2349
+ #: dashboard/settings/maintenance.php:96
2350
+ msgid "Make sure you have a database backup!"
2351
+ msgstr ""
2352
+
2353
+ #: dashboard/settings/maintenance.php:97
2354
+ msgid ""
2355
+ "Attempt to update the database and migrate settings where required or "
2356
+ "relevant. Normally you should not need or use this option."
2357
+ msgstr ""
2358
+
2359
  #: dashboard/settings/misc.php:16
2360
  msgid "Miscellaneous"
2361
  msgstr "Diverse"
2785
  msgstr ""
2786
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
2787
 
2788
+ #: dashboard/settings/statistics.php:71
2789
+ msgid "Clean up temporary data"
2790
+ msgstr ""
2791
+
2792
+ #: dashboard/settings/statistics.php:73
2793
+ msgid ""
2794
+ "Periodically delete old tracker data. If you are using a memcached plugin "
2795
+ "you should disable this option!"
2796
+ msgstr ""
2797
+
2798
+ #, fuzzy
2799
+ #~ msgid "Help AdRotate Grow"
2800
+ #~ msgstr "Fastnat med AdRotate? Jag hjälper!"
2801
+
2802
+ #, fuzzy
2803
+ #~ msgid "Manage Schedules"
2804
+ #~ msgstr "Hantera"
2805
+
2806
+ #, fuzzy
2807
+ #~ msgid "Manage Media"
2808
+ #~ msgstr "Media:"
2809
+
2810
+ #, fuzzy
2811
+ #~ msgid "Schedule Management available in AdRotate Pro"
2812
+ #~ msgstr "Tillgänglig i AdRotate Pro"
2813
+
2814
+ #, fuzzy
2815
+ #~ msgid ""
2816
+ #~ "Schedule management and multiple schedules per advert is available in "
2817
+ #~ "AdRotate Pro."
2818
+ #~ msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
2819
+
2820
+ #, fuzzy
2821
+ #~ msgid "Start"
2822
+ #~ msgstr "Starttid (hh: mm):"
2823
+
2824
+ #, fuzzy
2825
+ #~ msgid "End"
2826
+ #~ msgstr "Avsluta tid (hh: mm):"
2827
+
2828
+ #~ msgid "Ads"
2829
+ #~ msgstr "Annonser"
2830
+
2831
+ #~ msgid "Max Impressions"
2832
+ #~ msgstr "Max Intryck"
2833
+
2834
+ #~ msgid "Max Clicks"
2835
+ #~ msgstr "Max Klick"
2836
+
2837
+ #, fuzzy
2838
+ #~ msgid "No schedules created yet!"
2839
+ #~ msgstr "Inga block har skapats än!"
2840
+
2841
+ #, fuzzy
2842
+ #~ msgid "Easily manage your schedules from here with AdRotate Pro."
2843
+ #~ msgstr "Få fler funktioner! Skaffa AdRotate Pro."
2844
+
2845
+ #, fuzzy
2846
+ #~ msgid "Upgrade today!"
2847
+ #~ msgstr "i dag"
2848
+
2849
+ #, fuzzy
2850
+ #~ msgid "Media Management available in AdRotate Pro"
2851
+ #~ msgstr "Tillgänglig i AdRotate Pro"
2852
+
2853
+ #, fuzzy
2854
+ #~ msgid "Media uploading and management is available in AdRotate Pro."
2855
+ #~ msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
2856
+
2857
+ #, fuzzy
2858
+ #~ msgid "Maximum size is 512Kb."
2859
+ #~ msgstr "Maximal storlek är 512Kb."
2860
+
2861
+ #, fuzzy
2862
+ #~ msgid "Actions"
2863
+ #~ msgstr "Massåtgärder"
2864
+
2865
+ #, fuzzy
2866
+ #~ msgid "Manage your banner folder from here with AdRotate Pro."
2867
+ #~ msgstr "Få fler funktioner! Skaffa AdRotate Pro."
2868
+
2869
+ #~ msgid "Everything below is optional."
2870
+ #~ msgstr "Allt nedan är frivillig."
2871
+
2872
+ #~ msgid "For administrative purposes set a sortorder."
2873
+ #~ msgstr "För administrativa ändamål sätt en sortorder."
2874
+
2875
+ #~ msgid "Leave empty or 0 to skip this. Will default to ad id."
2876
+ #~ msgstr ""
2877
+ #~ "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till annons-"
2878
+ #~ "ID."
2879
+
2880
+ #, fuzzy
2881
+ #~ msgid "Select the countries you want the adverts to show in."
2882
+ #~ msgstr "Välj de länder som du vill att annonser för att visa i."
2883
+
2884
+ #, fuzzy
2885
+ #~ msgid "Cities take priority and will be filtered first."
2886
+ #~ msgstr "Städer prioriteras och kommer att filtreras först."
2887
+
2888
+ #~ msgid "Leave empty or 0 to skip this. Will default to group id."
2889
+ #~ msgstr ""
2890
+ #~ "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till grupp-"
2891
+ #~ "ID."
2892
+
2893
+ #~ msgid "Which categories?"
2894
+ #~ msgstr "Vilka kategorier?"
2895
+
2896
+ #~ msgid "Click the categories posts you want the adverts to show in."
2897
+ #~ msgstr "Klicka på kategorierna inlägg du vill att annonser för att visa i."
2898
+
2899
+ #~ msgid "Which pages?"
2900
+ #~ msgstr "Vilka sidor?"
2901
+
2902
+ #~ msgid "Click the pages you want the adverts to show in."
2903
+ #~ msgstr "Klicka på de sidor du vill annonserna att visa i."
2904
+
2905
  #, fuzzy
2906
  #~ msgid "Enable responsive support for this advert."
2907
  #~ msgstr "Aktivera klickspårning för denna annons."
library/dashboard.css CHANGED
@@ -12,8 +12,10 @@
12
  .stats_large { display: block; margin-bottom: 10px; margin-top: 10px; text-align: center; font-weight: bold; }
13
  .number_large { margin: 20px; font-size: 28px; }
14
 
15
- /* Fancy select box for group and page injection*/
16
- .adrotate-select { padding:3px; border:1px solid #ccc; max-width:500px; max-height:200px; overflow-y:scroll; background-color:#fff; }
 
 
17
 
18
  /* Banner styles */
19
  .ajdg_notification { margin:12px 0; position:relative; overflow:hidden; }
@@ -29,8 +31,7 @@
29
  /* Dashboard styles */
30
  .postbox-ajdg { 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; }
31
  .postbox-ajdg 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; }
32
- .postbox-ajdg .inside { margin:10px 0px 0px 10px; padding:0px 10px 10px 0px; min-height:40px; position:relative; }
33
- .inside { padding:6px 10px 12px; clear:both; }
34
  .pro-image { padding:0px 3px 0px 0px; }
35
  .ajdg-photo { border-radius: 5px; }
36
 
12
  .stats_large { display: block; margin-bottom: 10px; margin-top: 10px; text-align: center; font-weight: bold; }
13
  .number_large { margin: 20px; font-size: 28px; }
14
 
15
+ /* Fancy select box for Post/Page injection */
16
+ .adrotate-select { padding:3px; border:1px solid #efefef; max-width:500px; max-height:200px; overflow-y:scroll; background-color:#fff; }
17
+ .adrotate-select .check-column { width: 7%; text-align: center; }
18
+ .postbox-ajdg textarea { border:1px solid #efefef; width:100%; margin:3px 0; padding:3px; }
19
 
20
  /* Banner styles */
21
  .ajdg_notification { margin:12px 0; position:relative; overflow:hidden; }
31
  /* Dashboard styles */
32
  .postbox-ajdg { 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; }
33
  .postbox-ajdg 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; }
34
+ .postbox-ajdg .inside { margin:10px 0px 0px 10px; padding:0px 10px 12px 10px; clear:both; min-height:40px; position:relative; }
 
35
  .pro-image { padding:0px 3px 0px 0px; }
36
  .ajdg-photo { border-radius: 5px; }
37
 
library/jquery.adrotate.clicktracker.js CHANGED
@@ -1,6 +1,6 @@
1
  /*
2
  Track clicks from special elements
3
- Arnan de Gans from AJdG Solutions (http://meandmymac.net, https://ajdg.solutions)
4
  Version: 1.0
5
  With help from: Fraser Munro
6
  Original code: Arnan de Gans
1
  /*
2
  Track clicks from special elements
3
+ Arnan de Gans (http://www.arnan.me)
4
  Version: 1.0
5
  With help from: Fraser Munro
6
  Original code: Arnan de Gans
library/jquery.adrotate.dyngroup.js CHANGED
@@ -1,6 +1,6 @@
1
  /****************************************************************************************
2
  * Dynamic advert rotation for AdRotate *
3
- * Arnan de Gans from AJdG Solutions (http://meandmymac.net, https://ajdg.solutions/) *
4
  * Version: 0.8.1 *
5
  * With help from: Mathias Joergensen (http://www.moofy.me), Fraser Munro *
6
  * Original code: Arnan de Gans *
1
  /****************************************************************************************
2
  * Dynamic advert rotation for AdRotate *
3
+ * Arnan de Gans from AJdG Solutions (http://www.arnan.me.net) *
4
  * Version: 0.8.1 *
5
  * With help from: Mathias Joergensen (http://www.moofy.me), Fraser Munro *
6
  * Original code: Arnan de Gans *
library/jquery.adrotate.responsive.js CHANGED
@@ -1,6 +1,6 @@
1
  /****************************************************************************************
2
  * Dynamic responsive adverts for AdRotate *
3
- * Arnan de Gans from AJdG Solutions (http://meandmymac.net, http://ajdg.solutions) *
4
  * Version: 0.5 *
5
  * With help from: Mathias Joergensen (http://www.moofy.me) *
6
  * Original code: N/a *
@@ -8,7 +8,7 @@
8
 
9
  /* ------------------------------------------------------------------------------------
10
  * COPYRIGHT AND TRADEMARK NOTICE
11
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
12
  * ADROTATE is a trademark of Arnan de Gans.
13
 
14
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  /****************************************************************************************
2
  * Dynamic responsive adverts for AdRotate *
3
+ * Arnan de Gans (http://www.arnan.me) *
4
  * Version: 0.5 *
5
  * With help from: Mathias Joergensen (http://www.moofy.me) *
6
  * Original code: N/a *
8
 
9
  /* ------------------------------------------------------------------------------------
10
  * COPYRIGHT AND TRADEMARK NOTICE
11
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
12
  * ADROTATE is a trademark of Arnan de Gans.
13
 
14
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
library/jquery.adrotate.tablesorter.js CHANGED
@@ -1,6 +1,6 @@
1
  /*
2
  Tablesorter settings/directives
3
- Arnan de Gans (http://meandmymac.net, https://ajdg.solutions/)
4
  Version: 1.0
5
  With help from: N/a
6
  Original code: Tablesorter docs
@@ -8,7 +8,7 @@ Original code: Tablesorter docs
8
 
9
  /* ------------------------------------------------------------------------------------
10
  * COPYRIGHT AND TRADEMARK NOTICE
11
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
12
  * ADROTATE is a trademark of Arnan de Gans.
13
 
14
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  /*
2
  Tablesorter settings/directives
3
+ Arnan de Gans (http://www.arnan.me)
4
  Version: 1.0
5
  With help from: N/a
6
  Original code: Tablesorter docs
8
 
9
  /* ------------------------------------------------------------------------------------
10
  * COPYRIGHT AND TRADEMARK NOTICE
11
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
12
  * ADROTATE is a trademark of Arnan de Gans.
13
 
14
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
library/textatcursor.js CHANGED
@@ -1,11 +1,11 @@
1
  /*!*********************************************************************
2
  * A Small Javascript function insert text at the position of the cursor in a HTML textarea.
3
- * Arnan de Gans from AJdG Solutions (http://meandmymac.net, http://www.ajdg.net)
4
  **********************************************************************/
5
 
6
  /* ------------------------------------------------------------------------------------
7
  * COPYRIGHT AND TRADEMARK NOTICE
8
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
9
  * ADROTATE is a trademark of Arnan de Gans.
10
 
11
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
1
  /*!*********************************************************************
2
  * A Small Javascript function insert text at the position of the cursor in a HTML textarea.
3
+ * Arnan de Gans (http://www.arnan.me)
4
  **********************************************************************/
5
 
6
  /* ------------------------------------------------------------------------------------
7
  * COPYRIGHT AND TRADEMARK NOTICE
8
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
9
  * ADROTATE is a trademark of Arnan de Gans.
10
 
11
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
library/uploader-hook.js CHANGED
@@ -5,7 +5,7 @@
5
 
6
  /* ------------------------------------------------------------------------------------
7
  * COPYRIGHT AND TRADEMARK NOTICE
8
- * Copyright 2008-2015 Arnan de Gans. All Rights Reserved.
9
  * ADROTATE is a trademark of Arnan de Gans.
10
 
11
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
5
 
6
  /* ------------------------------------------------------------------------------------
7
  * COPYRIGHT AND TRADEMARK NOTICE
8
+ * Copyright 2008-2017 Arnan de Gans. All Rights Reserved.
9
  * ADROTATE is a trademark of Arnan de Gans.
10
 
11
  * COPYRIGHT NOTICES AND ALL THE COMMENTS SHOULD REMAIN INTACT.
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: adegans
3
  Donate link: http://www.arnan.me/donate/?utm_campaign=donations&utm_medium=readme&utm_source=adrotate-free
4
  Tags: ads, advert, adverts, banner, monetize, admin, advertise, adrotator, rotator, ad, advertising, advertisement, advertiser, publisher, adsense, chitika, clickbank, geo, geolocation, geotarget, banner manager, advert manager, campaign manager, maxmind, statistics, stats, report, geoselect, geolite, schedules, schedule, monetize, header, widget, html5 advert, javascript advert, tracking, clicks, impressions
5
  Requires at least: 3.8
6
- Tested up to: 4.7
7
- Stable tag: 3.18
8
  License: GPLv3
9
 
10
  The popular choice for monetizing your website with adverts while keeping things simple. Start making money today!
@@ -97,19 +97,15 @@ You can also post your questions on the [forum](https://ajdg.solutions/forums/?u
97
 
98
  Be a Pro and go Pro. With [AdRotate Pro](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=readme&utm_source=adrotate-free)!
99
 
100
- = 3.18 FREE =
101
- * [new] Maintenance function to clean up AdRotate transients
102
- * [fix] Stats link not always showing for expired adverts
103
 
104
- = 4.2.1 PRO =
105
- * [new] Maintenance function to clean up AdRotate transients
106
- * [change] Clearer color-scheme for schedules that are expiring
107
- * [fix] Advertiser dropdown no longer shows non-advertiser
108
- * [fix] Stats link not showing for expired adverts
109
- * [fix] Graphs showing hourly stats instead of days
110
- * [fix] Unexpected output when activating the plugin
111
- * [fix] Periodic stats table misaligned for advert stats
112
- * [i18n] Added missing translation strings for settings tabs
113
 
114
  All recent changes are available on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_campaign=development&utm_medium=readme&utm_source=adrotate-free).
115
 
@@ -117,9 +113,9 @@ NOTE: Unsolicited offers, parnterships, job offers, promotional emails or produc
117
 
118
  == Upgrade Notice ==
119
 
120
- = 3.18 =
121
- * [new] Maintenance function to clean up AdRotate transients
122
- * [fix] Stats link not always showing for expired adverts
123
 
124
  All recent changes are available on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_campaign=development&utm_medium=readme&utm_source=adrotate-free).
125
 
3
  Donate link: http://www.arnan.me/donate/?utm_campaign=donations&utm_medium=readme&utm_source=adrotate-free
4
  Tags: ads, advert, adverts, banner, monetize, admin, advertise, adrotator, rotator, ad, advertising, advertisement, advertiser, publisher, adsense, chitika, clickbank, geo, geolocation, geotarget, banner manager, advert manager, campaign manager, maxmind, statistics, stats, report, geoselect, geolite, schedules, schedule, monetize, header, widget, html5 advert, javascript advert, tracking, clicks, impressions
5
  Requires at least: 3.8
6
+ Tested up to: 4.7.1
7
+ Stable tag: 3.18.1
8
  License: GPLv3
9
 
10
  The popular choice for monetizing your website with adverts while keeping things simple. Start making money today!
97
 
98
  Be a Pro and go Pro. With [AdRotate Pro](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=readme&utm_source=adrotate-free)!
99
 
100
+ = 3.18.1 FREE =
101
+ * [fix] 'Select all' for post injection not always working
102
+ * [fix] Undefined notice on error listing.
103
 
104
+ = 4.2.2 & 4.2.3 PRO =
105
+ * [fix] 'Select all' for post injection not always working
106
+ * [fix] 'Select all' for geo targeting countries not always working
107
+ * [fix] Dashboard notification layout
108
+ * [fix] Wrong database prefix for transient cleanup
 
 
 
 
109
 
110
  All recent changes are available on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_campaign=development&utm_medium=readme&utm_source=adrotate-free).
111
 
113
 
114
  == Upgrade Notice ==
115
 
116
+ = 3.18.1 =
117
+ * [fix] 'Select all' for post injection not always working
118
+ * [fix] Undefined notice on error listing.
119
 
120
  All recent changes are available on the [AdRotate website](https://ajdg.solutions/products/adrotate-for-wordpress/development/?utm_campaign=development&utm_medium=readme&utm_source=adrotate-free).
121