AdRotate Banner Manager - Version 4.4

Version Description

FREE = * [new] Advert exports to CSV * [new] Option to delete old export files in Settings > Maintenance * [change] Banner folder must be in wp-content (or it's equivalent) * [change] Dashboard tweaks * [change] XML exporting no longer supported * [change] Advert exporting now requires 'ad_manage' permission * [i18n] Settings tabs added * [i18n] Updated Spanish by Juanjo Navarra * [i18n] Updated all po files with new strings

Download this release

Release Info

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

Code changes from version 4.3 to 4.4

adrotate-export.php CHANGED
@@ -17,71 +17,80 @@
17
  Return: -- None --
18
  Since: 3.11
19
  -------------------------------------------------------------*/
20
- function adrotate_export_ads($ids, $format) {
21
  global $wpdb;
22
 
23
- $all_ads = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}adrotate` ORDER BY `id` ASC;", ARRAY_A);
24
-
25
- $ads = array();
26
- foreach($all_ads as $single) {
27
- if(in_array($single['id'], $ids)) {
28
- $starttime = $stoptime = 0;
29
- $starttime = $wpdb->get_var("SELECT `starttime` FROM `{$wpdb->prefix}adrotate_schedule`, `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = '".$single['id']."' AND `schedule` = `{$wpdb->prefix}adrotate_schedule`.`id` ORDER BY `starttime` ASC LIMIT 1;");
30
- $stoptime = $wpdb->get_var("SELECT `stoptime` FROM `{$wpdb->prefix}adrotate_schedule`, `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = '".$single['id']."' AND `schedule` = `{$wpdb->prefix}adrotate_schedule`.`id` ORDER BY `stoptime` DESC LIMIT 1;");
31
-
32
- if(!is_array($single['cities'])) $single['cities'] = array();
33
- if(!is_array($single['countries'])) $single['countries'] = array();
34
-
35
- $ads[$single['id']] = array(
36
- 'title' => $single['title'],
37
- 'bannercode' => stripslashes($single['bannercode']),
38
- 'imagetype' => $single['imagetype'],
39
- 'image' => $single['image'],
40
- 'tracker' => $single['tracker'],
41
- 'mobile' => $single['mobile'],
42
- 'tablet' => $single['tablet'],
43
- 'responsive' => 'N',
44
- 'weight' => $single['weight'],
45
- 'budget' => $single['budget'],
46
- 'crate' => $single['crate'],
47
- 'irate' => $single['irate'],
48
- 'cities' => implode(',', maybe_unserialize($single['cities'])),
49
- 'countries' => implode(',', maybe_unserialize($single['countries'])),
50
- 'start' => $starttime,
51
- 'end' => $stoptime,
52
- );
53
  }
 
 
 
 
 
 
 
 
 
54
  }
55
 
56
- if($ads) {
57
- $filename = "AdRotate_export_".date_i18n("mdYHi")."_".uniqid().".xml";
 
 
 
58
 
59
- $xml = new SimpleXMLElement('<adverts></adverts>');
60
- foreach($ads as $ad) {
61
- $node = $xml->addChild('advert');
62
- $node->addChild('title', $ad['title']);
63
- $node->addChild('bannercode', $ad['bannercode']);
64
- $node->addChild('imagetype', $ad['imagetype']);
65
- $node->addChild('image', $ad['image']);
66
- $node->addChild('tracker', $ad['tracker']);
67
- $node->addChild('mobile', $ad['mobile']);
68
- $node->addChild('tablet', $ad['tablet']);
69
- $node->addChild('responsive', 'N');
70
- $node->addChild('weight', $ad['weight']);
71
- $node->addChild('budget', $ad['budget']);
72
- $node->addChild('crate', $ad['crate']);
73
- $node->addChild('irate', $ad['irate']);
74
- $node->addChild('cities', $ad['cities']);
75
- $node->addChild('countries', $ad['countries']);
76
- $node->addChild('start', $ad['start']);
77
- $node->addChild('end', $ad['end']);
78
- }
 
 
 
 
 
 
 
79
 
80
- file_put_contents(WP_CONTENT_DIR . '/reports/'.$filename, $xml->saveXML());
81
- unset($all_ads, $ads);
 
 
 
 
 
 
82
 
83
- adrotate_return('adrotate-ads', 215, array('file' => $filename));
84
- exit;
 
 
 
 
 
 
 
 
 
85
  } else {
86
  adrotate_return('adrotate-ads', 509);
87
  }
17
  Return: -- None --
18
  Since: 3.11
19
  -------------------------------------------------------------*/
20
+ function adrotate_export_ads($ids) {
21
  global $wpdb;
22
 
23
+ $where = false;
24
+ if(count($ids) > 1) {
25
+ $where = "`id` = ";
26
+ foreach($ids as $key => $id) {
27
+ $where .= "'{$id}' OR `id` = ";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  }
29
+ $where = rtrim($where, " OR `id` = ");
30
+ }
31
+
32
+ if(count($ids) == 1) {
33
+ $where = "`id` = '{$ids[0]}'";
34
+ }
35
+
36
+ if($where) {
37
+ $to_export = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}adrotate` WHERE {$where} ORDER BY `id` ASC;", ARRAY_A);
38
  }
39
 
40
+ $adverts = array();
41
+ foreach($to_export as $export) {
42
+ $starttime = $stoptime = 0;
43
+ $starttime = $wpdb->get_var("SELECT `starttime` FROM `{$wpdb->prefix}adrotate_schedule`, `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = '".$export['id']."' AND `schedule` = `{$wpdb->prefix}adrotate_schedule`.`id` ORDER BY `starttime` ASC LIMIT 1;");
44
+ $stoptime = $wpdb->get_var("SELECT `stoptime` FROM `{$wpdb->prefix}adrotate_schedule`, `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = '".$export['id']."' AND `schedule` = `{$wpdb->prefix}adrotate_schedule`.`id` ORDER BY `stoptime` DESC LIMIT 1;");
45
 
46
+ if(!is_array($export['cities'])) $export['cities'] = array();
47
+ if(!is_array($export['countries'])) $export['countries'] = array();
48
+
49
+ $adverts[$export['id']] = array(
50
+ 'id' => $export['id'],
51
+ 'title' => $export['title'],
52
+ 'bannercode' => stripslashes($export['bannercode']),
53
+ 'imagetype' => (empty($export['imagetype'])) ? null : $export['imagetype'],
54
+ 'image' => (empty($export['image'])) ? null : $export['image'],
55
+ 'paid' => $export['paid'],
56
+ 'tracker' => $export['tracker'],
57
+ 'desktop' => $export['desktop'],
58
+ 'mobile' => $export['mobile'],
59
+ 'tablet' => $export['tablet'],
60
+ 'os_ios' => $export['os_ios'],
61
+ 'os_android' => $export['os_android'],
62
+ 'os_other' => $export['os_other'],
63
+ 'weight' => $export['weight'],
64
+ 'budget' => $export['budget'],
65
+ 'crate' => $export['crate'],
66
+ 'irate' => $export['irate'],
67
+ 'cities' => (empty($export['cities'])) ? null : implode(',', maybe_unserialize($export['cities'])),
68
+ 'countries' => (empty($export['countries'])) ? null : implode(',', maybe_unserialize($export['countries'])),
69
+ 'schedule_start' => $starttime,
70
+ 'schedule_end' => $stoptime,
71
+ );
72
+ }
73
 
74
+ if(count($adverts) > 0) {
75
+ $filename = "AdRotate_export_adverts_".date_i18n("mdYHis").".csv";
76
+ if(!file_exists(WP_CONTENT_DIR . '/reports/')) mkdir(WP_CONTENT_DIR . '/reports/', 0755);
77
+ $fp = fopen(WP_CONTENT_DIR . '/reports/'.$filename, 'w');
78
+
79
+ if($fp) {
80
+ $generated = array('Generated', date_i18n("M d Y, H:i:s"));
81
+ $keys = array('id', 'name', 'bannercode', 'imagetype', 'image_url', 'is_paid', 'enable_stats', 'show_desktop', 'show_mobile', 'show_tablet', 'show_ios', 'show_android', 'show_otheros', 'weight', 'budget', 'click_rate', 'impression_rate', 'geo_cities', 'geo_countries', 'schedule_start', 'schedule_end');
82
 
83
+ fputcsv($fp, $generated);
84
+ fputcsv($fp, $keys);
85
+ foreach($adverts as $advert) {
86
+ fputcsv($fp, $advert);
87
+ }
88
+
89
+ fclose($fp);
90
+
91
+ adrotate_return('adrotate-ads', 215, array('file' => $filename));
92
+ exit;
93
+ }
94
  } else {
95
  adrotate_return('adrotate-ads', 509);
96
  }
adrotate-functions.php CHANGED
@@ -688,7 +688,7 @@ function adrotate_folder_contents($current) {
688
  // Read Banner folder
689
  $files = array();
690
  $i = 0;
691
- if($handle = opendir(ABSPATH.$adrotate_config['banner_folder'])) {
692
  while (false !== ($file = readdir($handle))) {
693
  if ($file != "." AND $file != ".." AND $file != "index.php") {
694
  $files[] = $file;
@@ -714,7 +714,7 @@ function adrotate_folder_contents($current) {
714
  )
715
  ) {
716
  $output .= "<option value='".$file."'";
717
- if(($current == $siteurl.'/wp-content/banners/'.$file) OR ($current == $siteurl."/%folder%".$file)) { $output .= "selected"; }
718
  $output .= ">".$file."</option>";
719
  }
720
  }
@@ -730,14 +730,10 @@ function adrotate_folder_contents($current) {
730
 
731
  /*-------------------------------------------------------------
732
  Name: adrotate_return
733
-
734
  Purpose: Internal redirects
735
- Receive: $action, $arg (array)
736
- Return: -none-
737
  Since: 3.12
738
  -------------------------------------------------------------*/
739
  function adrotate_return($page, $status, $args = null) {
740
-
741
  if(strlen($page) > 0 AND ($status > 0 AND $status < 1000)) {
742
  $defaults = array(
743
  'status' => $status
@@ -749,14 +745,12 @@ function adrotate_return($page, $status, $args = null) {
749
  }
750
 
751
  wp_redirect($redirect);
 
752
  }
753
 
754
  /*-------------------------------------------------------------
755
  Name: adrotate_status
756
-
757
  Purpose: Internal redirects
758
- Receive: $status, $args
759
- Return: -none-
760
  Since: 3.12
761
  -------------------------------------------------------------*/
762
  function adrotate_status($status, $args = null) {
@@ -807,7 +801,7 @@ function adrotate_status($status, $args = null) {
807
  break;
808
 
809
  case '215' :
810
- echo '<div id="message" class="updated"><p>'. __('Export created', 'adrotate') .'. <a href="' . WP_CONTENT_URL . '/reports/'.$arguments['file'].'">Download</a>.</p></div>';
811
  break;
812
 
813
  // Settings
@@ -828,7 +822,7 @@ function adrotate_status($status, $args = null) {
828
  break;
829
 
830
  case '406' :
831
- echo '<div id="message" class="updated"><p>'. __('Empty database records removed', 'adrotate') .'</p></div>';
832
  break;
833
 
834
  // (all) Error messages
688
  // Read Banner folder
689
  $files = array();
690
  $i = 0;
691
+ if($handle = opendir(WP_CONTENT_DIR."/".$adrotate_config['banner_folder'])) {
692
  while (false !== ($file = readdir($handle))) {
693
  if ($file != "." AND $file != ".." AND $file != "index.php") {
694
  $files[] = $file;
714
  )
715
  ) {
716
  $output .= "<option value='".$file."'";
717
+ if(($current == WP_CONTENT_URL.'/banners/'.$file) OR ($current == WP_CONTENT_URL."/%folder%/".$file)) { $output .= "selected"; }
718
  $output .= ">".$file."</option>";
719
  }
720
  }
730
 
731
  /*-------------------------------------------------------------
732
  Name: adrotate_return
 
733
  Purpose: Internal redirects
 
 
734
  Since: 3.12
735
  -------------------------------------------------------------*/
736
  function adrotate_return($page, $status, $args = null) {
 
737
  if(strlen($page) > 0 AND ($status > 0 AND $status < 1000)) {
738
  $defaults = array(
739
  'status' => $status
745
  }
746
 
747
  wp_redirect($redirect);
748
+ exit;
749
  }
750
 
751
  /*-------------------------------------------------------------
752
  Name: adrotate_status
 
753
  Purpose: Internal redirects
 
 
754
  Since: 3.12
755
  -------------------------------------------------------------*/
756
  function adrotate_status($status, $args = null) {
801
  break;
802
 
803
  case '215' :
804
+ echo '<div id="message" class="updated"><p>'. __('Export created', 'adrotate-pro') .'. <a href="' . WP_CONTENT_URL . '/reports/'.$arguments['file'].'">Download</a>.</p></div>';
805
  break;
806
 
807
  // Settings
822
  break;
823
 
824
  case '406' :
825
+ echo '<div id="message" class="updated"><p>'. __('Cleanup complete', 'adrotate-pro') .'</p></div>';
826
  break;
827
 
828
  // (all) Error messages
adrotate-manage-publisher.php CHANGED
@@ -54,7 +54,7 @@ function adrotate_insert_input() {
54
  if(isset($_POST['adrotate_image_dropdown'])) $image_dropdown = strip_tags(trim($_POST['adrotate_image_dropdown'], "\t\n "));
55
  if(isset($_POST['adrotate_tracker'])) $tracker = strip_tags(trim($_POST['adrotate_tracker'], "\t\n "));
56
 
57
- // Misc variabled
58
  $type = '';
59
  $groups = array();
60
  if(isset($_POST['groupselect'])) $groups = $_POST['groupselect'];
@@ -335,8 +335,8 @@ function adrotate_request_action() {
335
  if($banner_ids != '') {
336
  $return = 'adrotate-ads';
337
  if($action == 'export') {
338
- if(current_user_can('adrotate_moderate')) {
339
- adrotate_export($banner_ids, $specific);
340
  $result_id = 215;
341
  } else {
342
  adrotate_return($return, 500);
@@ -508,9 +508,9 @@ function adrotate_renew($id, $howlong = 2592000) {
508
  Purpose: Export selected banners
509
  Since: 3.8.5
510
  -------------------------------------------------------------*/
511
- function adrotate_export($ids, $format) {
512
  if(is_array($ids)) {
513
- adrotate_export_ads($ids, $format);
514
  }
515
  }
516
 
@@ -533,9 +533,7 @@ function adrotate_options_submit() {
533
 
534
  // Turn options off/reset them. Available in AdRotate Pro only
535
  $config['textwidget_shortcodes'] = "N";
536
- $wpcontent = explode('/', WP_CONTENT_DIR);
537
- $wpcontent = end($wpcontent);
538
- $config['banner_folder'] = $wpcontent."/banners/";
539
  $config['notification_email'] = array();
540
  $config['advertiser_email'] = array();
541
  $config['enable_geo'] = 0;
54
  if(isset($_POST['adrotate_image_dropdown'])) $image_dropdown = strip_tags(trim($_POST['adrotate_image_dropdown'], "\t\n "));
55
  if(isset($_POST['adrotate_tracker'])) $tracker = strip_tags(trim($_POST['adrotate_tracker'], "\t\n "));
56
 
57
+ // Misc variables
58
  $type = '';
59
  $groups = array();
60
  if(isset($_POST['groupselect'])) $groups = $_POST['groupselect'];
335
  if($banner_ids != '') {
336
  $return = 'adrotate-ads';
337
  if($action == 'export') {
338
+ if(current_user_can('adrotate_ad_manage')) {
339
+ adrotate_export($banner_ids);
340
  $result_id = 215;
341
  } else {
342
  adrotate_return($return, 500);
508
  Purpose: Export selected banners
509
  Since: 3.8.5
510
  -------------------------------------------------------------*/
511
+ function adrotate_export($ids) {
512
  if(is_array($ids)) {
513
+ adrotate_export_ads($ids);
514
  }
515
  }
516
 
533
 
534
  // Turn options off/reset them. Available in AdRotate Pro only
535
  $config['textwidget_shortcodes'] = "N";
536
+ $config['banner_folder'] = "banners";
 
 
537
  $config['notification_email'] = array();
538
  $config['advertiser_email'] = array();
539
  $config['enable_geo'] = 0;
adrotate-output.php CHANGED
@@ -333,7 +333,7 @@ function adrotate_preview($banner_id) {
333
  }
334
 
335
  if($banner) {
336
- $image = str_replace('%folder%', '/wp-content/banners/', $banner->image);
337
  $output = adrotate_ad_output($banner->id, 0, $banner->title, $banner->bannercode, $banner->tracker, $image, 'N');
338
  } else {
339
  $output = adrotate_error('ad_expired');
@@ -644,7 +644,7 @@ function adrotate_dashboard_error() {
644
  }
645
 
646
  // Misc
647
- if(!is_writable(ABSPATH.$adrotate_config['banner_folder'])) {
648
  $error['banners_folder'] = __('Your AdRotate Banner folder is not writable or does not exist.', 'adrotate-pro').' <a href="https://ajdg.solutions/manuals/adrotate-manuals/manage-banner-images/?utm_campaign=adrotate-manual&utm_medium=dashboard-notification&utm_source=adrotate-free" target="_blank">Set up your banner folder</a>.';
649
  }
650
 
333
  }
334
 
335
  if($banner) {
336
+ $image = str_replace('%folder%', '/banners/', $banner->image);
337
  $output = adrotate_ad_output($banner->id, 0, $banner->title, $banner->bannercode, $banner->tracker, $image, 'N');
338
  } else {
339
  $output = adrotate_error('ad_expired');
644
  }
645
 
646
  // Misc
647
+ if(!is_writable(WP_CONTENT_DIR."/".$adrotate_config['banner_folder'])) {
648
  $error['banners_folder'] = __('Your AdRotate Banner folder is not writable or does not exist.', 'adrotate-pro').' <a href="https://ajdg.solutions/manuals/adrotate-manuals/manage-banner-images/?utm_campaign=adrotate-manual&utm_medium=dashboard-notification&utm_source=adrotate-free" target="_blank">Set up your banner folder</a>.';
649
  }
650
 
adrotate-setup.php CHANGED
@@ -255,9 +255,7 @@ function adrotate_check_config() {
255
  if(!isset($config['geo_cookie_life'])) $config['geo_cookie_life'] = 86400;
256
  if(!isset($config['enable_geo_advertisers'])) $config['enable_geo_advertisers'] = 0;
257
  if(!isset($config['adblock_disguise'])) $config['adblock_disguise'] = '';
258
- $wpcontent = explode('/', WP_CONTENT_DIR);
259
- $wpcontent = end($wpcontent);
260
- if(!isset($config['banner_folder'])) $config['banner_folder'] = $wpcontent."/banners/";
261
  if(!isset($config['adminbar']) OR ($config['adminbar'] != 'Y' AND $config['adminbar'] != 'N')) $config['adminbar'] = 'Y';
262
  if(!isset($config['impression_timer']) OR $config['impression_timer'] < 10 OR $config['impression_timer'] > 3600) $config['impression_timer'] = 60;
263
  if(!isset($config['click_timer']) OR $config['click_timer'] < 60 OR $config['click_timer'] > 86400) $config['click_timer'] = 86400;
@@ -1143,6 +1141,15 @@ function adrotate_core_upgrade() {
1143
  adrotate_check_schedules();
1144
  }
1145
 
 
 
 
 
 
 
 
 
 
1146
  update_option("adrotate_version", array('current' => ADROTATE_VERSION, 'previous' => $adrotate_version['current']));
1147
  }
1148
 
@@ -1190,6 +1197,11 @@ function adrotate_cleanup_database() {
1190
  $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_stats` WHERE `thetime` < $lastyear;");
1191
  }
1192
 
 
 
 
 
 
1193
  // Clean up Tracker data
1194
  $yesterday = $now - 86400;
1195
  $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_tracker` WHERE `timer` < $yesterday;");
255
  if(!isset($config['geo_cookie_life'])) $config['geo_cookie_life'] = 86400;
256
  if(!isset($config['enable_geo_advertisers'])) $config['enable_geo_advertisers'] = 0;
257
  if(!isset($config['adblock_disguise'])) $config['adblock_disguise'] = '';
258
+ if(!isset($config['banner_folder'])) $config['banner_folder'] = "banners";
 
 
259
  if(!isset($config['adminbar']) OR ($config['adminbar'] != 'Y' AND $config['adminbar'] != 'N')) $config['adminbar'] = 'Y';
260
  if(!isset($config['impression_timer']) OR $config['impression_timer'] < 10 OR $config['impression_timer'] > 3600) $config['impression_timer'] = 60;
261
  if(!isset($config['click_timer']) OR $config['click_timer'] < 60 OR $config['click_timer'] > 86400) $config['click_timer'] = 86400;
1141
  adrotate_check_schedules();
1142
  }
1143
 
1144
+ // 4.4
1145
+ if($adrotate_version['current'] < 390) {
1146
+ if(!is_dir(WP_CONTENT_DIR.'/banners')) mkdir(WP_CONTENT_DIR.'/banners', 0755);
1147
+ if(!is_dir(WP_CONTENT_DIR.'/reports')) mkdir(WP_CONTENT_DIR.'/reports', 0755);
1148
+ $config390 = get_option('adrotate_config');
1149
+ $config390['banner_folder'] = "banners";
1150
+ update_option('adrotate_config', $config390);
1151
+ }
1152
+
1153
  update_option("adrotate_version", array('current' => ADROTATE_VERSION, 'previous' => $adrotate_version['current']));
1154
  }
1155
 
1197
  $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_stats` WHERE `thetime` < $lastyear;");
1198
  }
1199
 
1200
+ // Delete export files
1201
+ if(isset($_POST['adrotate_db_cleanup_exportfiles'])) {
1202
+ array_map('unlink', glob(WP_CONTENT_DIR.'/reports/AdRotate_export_*.csv'));
1203
+ }
1204
+
1205
  // Clean up Tracker data
1206
  $yesterday = $now - 86400;
1207
  $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_tracker` WHERE `timer` < $yesterday;");
adrotate.php CHANGED
@@ -7,7 +7,7 @@ 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: 4.3
11
  License: GPLv3
12
  */
13
 
@@ -22,8 +22,8 @@ License: GPLv3
22
  ------------------------------------------------------------------------------------ */
23
 
24
  /*--- AdRotate values ---------------------------------------*/
25
- define("ADROTATE_DISPLAY", '4.3');
26
- define("ADROTATE_VERSION", 389);
27
  define("ADROTATE_DB_VERSION", 63);
28
  $plugin_folder = plugin_dir_path(__FILE__);
29
  /*-----------------------------------------------------------*/
@@ -358,14 +358,14 @@ function adrotate_options() {
358
  <?php if($status > 0) adrotate_status($status, array('error' => $error)); ?>
359
 
360
  <h2 class="nav-tab-wrapper">
361
- <a href="?page=adrotate-settings&tab=general" class="nav-tab <?php echo $active_tab == 'general' ? 'nav-tab-active' : ''; ?>">General</a>
362
- <a href="?page=adrotate-settings&tab=notifications" class="nav-tab <?php echo $active_tab == 'notifications' ? 'nav-tab-active' : ''; ?>">Notifications</a>
363
- <a href="?page=adrotate-settings&tab=stats" class="nav-tab <?php echo $active_tab == 'stats' ? 'nav-tab-active' : ''; ?>">Stats</a>
364
- <a href="?page=adrotate-settings&tab=geo" class="nav-tab <?php echo $active_tab == 'geo' ? 'nav-tab-active' : ''; ?>">Geo Targeting</a>
365
- <a href="?page=adrotate-settings&tab=advertisers" class="nav-tab <?php echo $active_tab == 'advertisers' ? 'nav-tab-active' : ''; ?>">Advertisers</a>
366
- <a href="?page=adrotate-settings&tab=roles" class="nav-tab <?php echo $active_tab == 'roles' ? 'nav-tab-active' : ''; ?>">Roles</a>
367
- <a href="?page=adrotate-settings&tab=misc" class="nav-tab <?php echo $active_tab == 'misc' ? 'nav-tab-active' : ''; ?>">Misc</a>
368
- <a href="?page=adrotate-settings&tab=maintenance" class="nav-tab <?php echo $active_tab == 'maintenance' ? 'nav-tab-active' : ''; ?>">Maintenance</a>
369
  </h2>
370
 
371
  <?php
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: 4.4
11
  License: GPLv3
12
  */
13
 
22
  ------------------------------------------------------------------------------------ */
23
 
24
  /*--- AdRotate values ---------------------------------------*/
25
+ define("ADROTATE_DISPLAY", '4.4');
26
+ define("ADROTATE_VERSION", 390);
27
  define("ADROTATE_DB_VERSION", 63);
28
  $plugin_folder = plugin_dir_path(__FILE__);
29
  /*-----------------------------------------------------------*/
358
  <?php if($status > 0) adrotate_status($status, array('error' => $error)); ?>
359
 
360
  <h2 class="nav-tab-wrapper">
361
+ <a href="?page=adrotate-settings&tab=general" class="nav-tab <?php echo $active_tab == 'general' ? 'nav-tab-active' : ''; ?>"><?php _e('General', 'adrotate'); ?></a>
362
+ <a href="?page=adrotate-settings&tab=notifications" class="nav-tab <?php echo $active_tab == 'notifications' ? 'nav-tab-active' : ''; ?>"><?php _e('Notifications', 'adrotate'); ?></a>
363
+ <a href="?page=adrotate-settings&tab=stats" class="nav-tab <?php echo $active_tab == 'stats' ? 'nav-tab-active' : ''; ?>"><?php _e('Stats', 'adrotate'); ?></a>
364
+ <a href="?page=adrotate-settings&tab=geo" class="nav-tab <?php echo $active_tab == 'geo' ? 'nav-tab-active' : ''; ?>"><?php _e('Geo Targeting', 'adrotate'); ?></a>
365
+ <a href="?page=adrotate-settings&tab=advertisers" class="nav-tab <?php echo $active_tab == 'advertisers' ? 'nav-tab-active' : ''; ?>"><?php _e('Advertisers', 'adrotate'); ?></a>
366
+ <a href="?page=adrotate-settings&tab=roles" class="nav-tab <?php echo $active_tab == 'roles' ? 'nav-tab-active' : ''; ?>"><?php _e('Roles', 'adrotate'); ?></a>
367
+ <a href="?page=adrotate-settings&tab=misc" class="nav-tab <?php echo $active_tab == 'misc' ? 'nav-tab-active' : ''; ?>"><?php _e('Misc', 'adrotate'); ?></a>
368
+ <a href="?page=adrotate-settings&tab=maintenance" class="nav-tab <?php echo $active_tab == 'maintenance' ? 'nav-tab-active' : ''; ?>"><?php _e('Maintenance', 'adrotate'); ?></a>
369
  </h2>
370
 
371
  <?php
dashboard/publisher/adverts-main.php CHANGED
@@ -21,7 +21,7 @@
21
  <option value="deactivate"><?php _e('Deactivate', 'adrotate'); ?></option>
22
  <option value="delete"><?php _e('Delete', 'adrotate'); ?></option>
23
  <option value="reset"><?php _e('Reset stats', 'adrotate'); ?></option>
24
- <option value="export-xml"><?php _e('Export to XML', 'adrotate'); ?></option>
25
  <option value="" disabled><?php _e('-- Renew --', 'adrotate'); ?></option>
26
  <option value="renew-31536000"><?php _e('For 1 year', 'adrotate'); ?></option>
27
  <option value="renew-5184000"><?php _e('For 180 days', 'adrotate'); ?></option>
21
  <option value="deactivate"><?php _e('Deactivate', 'adrotate'); ?></option>
22
  <option value="delete"><?php _e('Delete', 'adrotate'); ?></option>
23
  <option value="reset"><?php _e('Reset stats', 'adrotate'); ?></option>
24
+ <option value="export-csv"><?php _e('Export to CSV', 'adrotate'); ?></option>
25
  <option value="" disabled><?php _e('-- Renew --', 'adrotate'); ?></option>
26
  <option value="renew-31536000"><?php _e('For 1 year', 'adrotate'); ?></option>
27
  <option value="renew-5184000"><?php _e('For 180 days', 'adrotate'); ?></option>
dashboard/settings/general.php CHANGED
@@ -40,20 +40,20 @@
40
  <tr>
41
  <th valign="top"><?php _e('Adblock disguise', 'adrotate'); ?></th>
42
  <td>
43
- <label for="adrotate_adblock_disguise"><input name="adrotate_adblock_disguise" type="text" class="search-input" size="5" value="getpro" disabled /> <?php _e('Leave empty to disable. Use only lowercaps letters. For example:', 'adrotate'); ?> <?php echo adrotate_rand(6); ?><br />
44
  <span class="description"><?php _e('Try and avoid adblock plugins in most modern browsers when using shortcodes.', 'adrotate'); ?><br /><?php _e('To also apply this feature to widgets, use a text widget with a shortcode instead of the AdRotate widget.', 'adrotate'); ?><br /><?php _e('Avoid the use of obvious keywords or filenames in your adverts or this feature will have little effect!', 'adrotate'); ?></span>
45
  </td>
46
  </tr>
47
  </table>
48
 
49
  <h3><?php _e('Banner Folder', 'adrotate'); ?></h3>
50
- <span class="description"><?php _e('Set a location where your banner images will be stored.', 'adrotate'); ?></span>
51
  <table class="form-table">
52
  <tr>
53
- <th valign="top"><?php _e('Location', 'adrotate'); ?></th>
54
  <td>
55
- <label for="adrotate_banner_folder"><?php echo ABSPATH; ?><input name="adrotate_banner_folder_disabled" type="text" class="search-input" size="30" value="<?php echo $adrotate_config['banner_folder']; ?>" disabled="1" /> <?php _e('(Default: wp-content/banners/).', 'adrotate'); ?><br />
56
- <span class="description"><?php _e('To try and trick ad blockers you could set the folder to something crazy like:', 'adrotate'); ?> "/wp-content/<?php echo adrotate_rand(12); ?>/".<br />
57
  <?php _e("This folder will not be automatically created if it doesn't exist. AdRotate will show errors when the folder is missing.", 'adrotate'); ?></span>
58
  </td>
59
  </tr>
40
  <tr>
41
  <th valign="top"><?php _e('Adblock disguise', 'adrotate'); ?></th>
42
  <td>
43
+ <label for="adrotate_adblock_disguise"><input name="adrotate_adblock_disguise" type="text" class="search-input" size="6" value="getpro" disabled /> <?php _e('Leave empty to disable. Use only lowercaps letters. For example:', 'adrotate'); ?> <?php echo adrotate_rand(6); ?><br />
44
  <span class="description"><?php _e('Try and avoid adblock plugins in most modern browsers when using shortcodes.', 'adrotate'); ?><br /><?php _e('To also apply this feature to widgets, use a text widget with a shortcode instead of the AdRotate widget.', 'adrotate'); ?><br /><?php _e('Avoid the use of obvious keywords or filenames in your adverts or this feature will have little effect!', 'adrotate'); ?></span>
45
  </td>
46
  </tr>
47
  </table>
48
 
49
  <h3><?php _e('Banner Folder', 'adrotate'); ?></h3>
50
+ <span class="description"><?php _e('Set a folder where your banner images will be stored.', 'adrotate'); ?></span>
51
  <table class="form-table">
52
  <tr>
53
+ <th valign="top"><?php _e('Folder name', 'adrotate'); ?></th>
54
  <td>
55
+ <label for="adrotate_banner_folder"><?php echo WP_CONTENT_DIR; ?>/<input name="adrotate_banner_folder_disabled" type="text" class="search-input" size="20" value="<?php echo $adrotate_config['banner_folder']; ?>" disabled="1" />/ <?php _e('(Default: banners).', 'adrotate'); ?><br />
56
+ <span class="description"><?php _e('To try and trick ad blockers you could set the folder to something crazy like:', 'adrotate'); ?> "<?php echo adrotate_rand(12); ?>".<br />
57
  <?php _e("This folder will not be automatically created if it doesn't exist. AdRotate will show errors when the folder is missing.", 'adrotate'); ?></span>
58
  </td>
59
  </tr>
dashboard/settings/maintenance.php CHANGED
@@ -25,11 +25,12 @@
25
  </td>
26
  </tr>
27
  <tr>
28
- <th valign="top"><?php _e('Clean-up Database', 'adrotate'); ?></th>
29
  <td>
30
- <input type="submit" id="post-role-submit" name="adrotate_db_cleanup_submit" value="<?php _e('Clean-up Database', 'adrotate'); ?>" class="button-secondary" onclick="return confirm('<?php _e('You are about to clean up your database. This may delete expired schedules and older statistics.', 'adrotate'); ?>\n\n<?php _e('Are you sure you want to continue?', 'adrotate'); ?>\n\n<?php _e('This might take a while and may slow down your site during this action!', 'adrotate'); ?>\n\n<?php _e('OK to continue, CANCEL to stop.', 'adrotate'); ?>')" /><br />
31
- <label for="adrotate_db_cleanup_statistics"><input type="checkbox" name="adrotate_db_cleanup_statistics" value="1" /> <?php _e('Delete stats older than 356 days (Optional).', 'adrotate'); ?></label><br />
32
- <span class="description"><?php _e('For when you create an advert, group or schedule and it does not save or keep changes you make.', 'adrotate-pro'); ?><br /><?php _e('Additionally you can clean up old schedules, tracker data and/or statistics. This will improve the speed of your site.', 'adrotate-pro'); ?></span>
 
33
  </td>
34
  </tr>
35
  <tr>
@@ -63,13 +64,21 @@
63
  <td colspan="3"><?php _e('Normal', 'adrotate'); ?>: <?php echo $advert_status['normal']; ?>, <?php _e('Error', 'adrotate'); ?>: <?php echo $advert_status['error']; ?>, <?php _e('Expired', 'adrotate'); ?>: <?php echo $advert_status['expired']; ?>, <?php _e('Expires Soon', 'adrotate'); ?>: <?php echo $advert_status['expiressoon']; ?>, <?php _e('Unknown', 'adrotate'); ?>: <?php echo $advert_status['unknown']; ?>.</td>
64
  </tr>
65
  <tr>
66
- <th width="15%"><?php _e('Banners/assets Folder', 'adrotate'); ?></th>
67
- <td>
68
- <?php echo (is_writeable(ABSPATH.$adrotate_config['banner_folder'])) ? '<span style="color:#009900;">'.__('Exists and appears writable', 'adrotate-pro').'</span>' : '<span style="color:#CC2900;">'.__('Not writable or does not exist', 'adrotate-pro').'</span>'; ?>
 
 
 
69
  </td>
70
- <th width="15%"><?php _e('Reports Folder', 'adrotate'); ?></th>
71
- <td>
72
- <?php echo (is_writable(ABSPATH.'wp-content/reports/')) ? '<span style="color:#009900;">'.__('Exists and appears writable', 'adrotate-pro').'</span>' : '<span style="color:#CC2900;">'.__('Not writable or does not exist', 'adrotate-pro').'</span>'; ?>
 
 
 
 
 
73
  </td>
74
  </tr>
75
  <tr>
25
  </td>
26
  </tr>
27
  <tr>
28
+ <th valign="top"><?php _e('Clean-up Database and Files', 'adrotate'); ?></th>
29
  <td>
30
+ <input type="submit" id="post-role-submit" name="adrotate_db_cleanup_submit" value="<?php _e('Clean-up Database', 'adrotate'); ?>" class="button-secondary" onclick="return confirm('<?php _e('You are about to clean up your database. This may delete expired schedules, older statistics and try to delete export files', 'adrotate'); ?>\n\n<?php _e('Are you sure you want to continue?', 'adrotate'); ?>\n<?php _e('THIS ACTION CAN NOT BE UNDONE!', 'adrotate'); ?>')" /><br />
31
+ <label for="adrotate_db_cleanup_statistics"><input type="checkbox" name="adrotate_db_cleanup_statistics" value="1" /> <?php _e('Delete stats older than 356 days.', 'adrotate'); ?></label><br />
32
+ <label for="adrotate_db_cleanup_exportfiles"><input type="checkbox" name="adrotate_db_cleanup_exportfiles" value="1" /> <?php _e('Delete leftover export files.', 'adrotate'); ?></label><br />
33
+ <span class="description"><?php _e('For when you create an advert, group or schedule and it does not save or keep changes you make.', 'adrotate-pro'); ?><br /><?php _e('Additionally you can delete statistics and/or unused export files. This will improve the speed of your site.', 'adrotate'); ?></span>
34
  </td>
35
  </tr>
36
  <tr>
64
  <td colspan="3"><?php _e('Normal', 'adrotate'); ?>: <?php echo $advert_status['normal']; ?>, <?php _e('Error', 'adrotate'); ?>: <?php echo $advert_status['error']; ?>, <?php _e('Expired', 'adrotate'); ?>: <?php echo $advert_status['expired']; ?>, <?php _e('Expires Soon', 'adrotate'); ?>: <?php echo $advert_status['expiressoon']; ?>, <?php _e('Unknown', 'adrotate'); ?>: <?php echo $advert_status['unknown']; ?>.</td>
65
  </tr>
66
  <tr>
67
+ <th width="15%"><?php _e('Banners/assets Folder', 'adrotate-pro'); ?></th>
68
+ <td colspan="3">
69
+ <?php
70
+ echo WP_CONTENT_DIR.'/'.$adrotate_config['banner_folder'].'/ -> ';
71
+ echo (is_writeable(WP_CONTENT_DIR.'/'.$adrotate_config['banner_folder']).'/') ? '<span style="color:#009900;">'.__('Exists and appears writable', 'adrotate-pro').'</span>' : '<span style="color:#CC2900;">'.__('Not writable or does not exist', 'adrotate-pro').'</span>';
72
+ ?>
73
  </td>
74
+ </tr>
75
+ <tr>
76
+ <th width="15%"><?php _e('Reports Folder', 'adrotate-pro'); ?></th>
77
+ <td colspan="3">
78
+ <?php
79
+ echo WP_CONTENT_DIR.'/reports/'.' -> ';
80
+ echo (is_writable(WP_CONTENT_DIR.'/reports/')) ? '<span style="color:#009900;">'.__('Exists and appears writable', 'adrotate-pro').'</span>' : '<span style="color:#CC2900;">'.__('Not writable or does not exist', 'adrotate-pro').'</span>';
81
+ ?>
82
  </td>
83
  </tr>
84
  <tr>
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: 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,117 +13,119 @@ 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.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
 
122
- #: adrotate-output.php:575
123
  msgid "Oh no! Something went wrong!"
124
  msgstr "О не! Нещо се случи!"
125
 
126
- #: adrotate-output.php:576
127
  msgid ""
128
  "WordPress was unable to verify the authenticity of the url you have clicked. "
129
  "Verify if the url used is valid or log in via your browser."
@@ -132,17 +134,17 @@ msgstr ""
132
  "кликнал. Проверете дали адреса е валиден или се впишете посредством браузъра "
133
  "си."
134
 
135
- #: adrotate-output.php:577
136
  msgid ""
137
  "If you have received the url you want to visit via email, you are being "
138
  "tricked!"
139
  msgstr "Ако сте получили този адрес по email, то някой ви е изиграл!"
140
 
141
- #: adrotate-output.php:578
142
  msgid "Contact support if the issue persists:"
143
  msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
144
 
145
- #: adrotate-output.php:593
146
  msgid ""
147
  "Error, Ad is not available at this time due to schedule/geolocation "
148
  "restrictions or does not exist!"
@@ -150,33 +152,33 @@ msgstr ""
150
  "Грешка, рекламата не е налична в момента, поради ограничения в графика/"
151
  "геолокацията или не съществува!"
152
 
153
- #: adrotate-output.php:595
154
  msgid ""
155
  "Error, Ad is not available at this time due to schedule/geolocation "
156
  "restrictions!"
157
  msgstr ""
158
  "Грешка, рекламата не е налична, поради ограничения в графика/геолокацията!"
159
 
160
- #: adrotate-output.php:602 adrotate-output.php:604
161
  msgid ""
162
  "Either there are no banners, they are disabled or none qualified for this "
163
  "location!"
164
  msgstr ""
165
  "Няма налични банери, те са деактивирани или не са подходящи за това място!"
166
 
167
- #: adrotate-output.php:610
168
  msgid "Error, no Ad ID set! Check your syntax!"
169
  msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
170
 
171
- #: adrotate-output.php:616
172
  msgid "Error, no group ID set! Check your syntax!"
173
  msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
174
 
175
- #: adrotate-output.php:621
176
  msgid "Error, group does not exist! Check your syntax!"
177
  msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
178
 
179
- #: adrotate-output.php:627
180
  msgid ""
181
  "There was an error locating the database tables for AdRotate. Please "
182
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -184,46 +186,46 @@ msgstr ""
184
  "Не могат да бъдат открити таблиците на AdRotate в базата данни. Моля, "
185
  "изключете и включете наново AdRotate от страницата с плъгините!!"
186
 
187
- #: adrotate-output.php:627
188
  msgid "If this does not solve the issue please seek support at"
189
  msgstr "Ако това не решава проблема, моля потърсете помощ на"
190
 
191
- #: adrotate-output.php:633
192
  msgid "An unknown error occured."
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,178 +233,178 @@ msgstr ""
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,60 +448,99 @@ msgstr "ID:"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
503
  #: dashboard/adrotatepro.php:20
504
  msgid "Satisfy your advertisers"
505
  msgstr "Задоволете рекламодателите си"
@@ -553,15 +594,21 @@ msgid ""
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, "
@@ -570,11 +617,11 @@ msgid ""
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 "
@@ -582,11 +629,11 @@ msgid ""
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,143 +641,124 @@ msgid ""
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
 
683
- #: dashboard/info.php:24
684
  msgid "Currently"
685
  msgstr "В момента"
686
 
687
- #: dashboard/info.php:30
688
  msgid "Your setup"
689
  msgstr "Вие имате"
690
 
691
- #: dashboard/info.php:31
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 "
733
- "plugins!"
734
  msgstr ""
735
 
736
  #: dashboard/publisher/adverts-disabled.php:15
@@ -745,7 +773,7 @@ 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
 
@@ -776,38 +804,39 @@ 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
781
  msgid "Start / End"
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"
789
- msgstr "Заглавие"
 
 
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 "Показана"
797
 
798
- #: dashboard/publisher/adverts-disabled.php:39
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
806
  msgid "Clicks"
807
  msgstr "Кликове"
808
 
809
- #: dashboard/publisher/adverts-disabled.php:40
810
- #: dashboard/publisher/adverts-main.php:48
811
  #: dashboard/publisher/adverts-report.php:39
812
  #: dashboard/publisher/adverts-report.php:58
813
  #: dashboard/publisher/groups-report.php:40
@@ -815,53 +844,46 @@ msgstr "Кликове"
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,77 +891,92 @@ msgstr ""
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,41 +984,41 @@ msgstr ""
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,70 +1026,70 @@ msgstr ""
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
@@ -1060,186 +1097,177 @@ msgstr "Употреба"
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,55 +1275,55 @@ msgstr ""
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,36 +1364,40 @@ msgid "For 7 days"
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 ""
1356
 
1357
  #: dashboard/publisher/adverts-main.php:24
1358
- msgid "Export to XML"
 
 
1359
  msgstr "Експорт в XML"
1360
 
1361
- #: dashboard/publisher/adverts-main.php:45
1362
- #: dashboard/publisher/adverts-main.php:47
1363
  #: dashboard/publisher/groups-main.php:37
1364
  #: dashboard/publisher/groups-main.php:39
1365
  msgid "Today"
1366
  msgstr "Днес"
1367
 
1368
- #: dashboard/publisher/adverts-main.php:102
1369
  msgid "No adverts created yet!"
1370
  msgstr ""
1371
 
@@ -1419,11 +1451,6 @@ msgstr "Нова група"
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 "По подразбиране - показва се само една реклама"
@@ -1700,7 +1727,7 @@ msgstr ""
1700
  msgid "Choose adverts"
1701
  msgstr ""
1702
 
1703
- #: dashboard/publisher/groups-edit.php:335
1704
  msgid "Visible until"
1705
  msgstr "Да се вижда до"
1706
 
@@ -1708,6 +1735,18 @@ msgstr "Да се вижда до"
1708
  msgid "No adverts created!"
1709
  msgstr ""
1710
 
 
 
 
 
 
 
 
 
 
 
 
 
1711
  #: dashboard/publisher/groups-main.php:12
1712
  msgid "Manage Groups"
1713
  msgstr "Управление на групи"
@@ -1729,8 +1768,7 @@ msgid "This action can not be undone!"
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,9 +1835,9 @@ msgid ""
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
 
@@ -1895,16 +1933,20 @@ msgid "Banner Folder"
1895
  msgstr "Папка с банери"
1896
 
1897
  #: dashboard/settings/general.php:50
1898
- msgid "Set a location where your banner images will be stored."
 
 
1899
  msgstr ""
1900
  "Задайте местоположение, където да се записват вашите картинки за банери."
1901
 
1902
  #: dashboard/settings/general.php:53
1903
- msgid "Location"
1904
- msgstr "Местоположение"
1905
 
1906
  #: dashboard/settings/general.php:55
1907
- msgid "(Default: wp-content/banners/)."
 
 
1908
  msgstr "(По подразбиране: wp-content/banners/)."
1909
 
1910
  #: dashboard/settings/general.php:56
@@ -2047,10 +2089,6 @@ msgstr ""
2047
  msgid "Password/License Key"
2048
  msgstr ""
2049
 
2050
- #: dashboard/settings/maintenance.php:16
2051
- msgid "Maintenance"
2052
- msgstr "Поддръжка"
2053
-
2054
  #: dashboard/settings/maintenance.php:17
2055
  msgid ""
2056
  "Use these functions when you notice your database is slow, unresponsive and "
@@ -2089,14 +2127,24 @@ msgstr ""
2089
  "Overhead данните са боклук, акумулиран в резултат на множеството промени, "
2090
  "които правите. Те могар да варират от 0 до хиляди KB."
2091
 
2092
- #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
 
 
 
 
 
 
2093
  msgid "Clean-up Database"
2094
  msgstr "Почистване на базата данни"
2095
 
2096
  #: dashboard/settings/maintenance.php:30
 
 
 
 
2097
  msgid ""
2098
- "You are about to clean up your database. This may delete expired schedules "
2099
- "and older statistics."
2100
  msgstr ""
2101
  "На път сте да почистите базата с данни. Това може да изтрие истекли графици "
2102
  "и стари статистики."
@@ -2105,19 +2153,18 @@ msgstr ""
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
- "Това действие ще отнеме време и може да забави сайта ви по време на "
2113
- "изпълнението му!"
2114
 
2115
  #: dashboard/settings/maintenance.php:31
2116
- msgid "Delete stats older than 356 days (Optional)."
 
 
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
@@ -2127,10 +2174,16 @@ msgid ""
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"
@@ -2144,6 +2197,12 @@ msgstr "Преоценка на всички реклами"
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 "
@@ -2190,12 +2249,10 @@ 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."
2196
- msgstr ""
2197
- "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
2198
- "за проследяване на кликове."
2199
 
2200
  #: dashboard/settings/maintenance.php:55
2201
  msgid "Temporarily disable encryption on the redirect url."
@@ -2217,10 +2274,6 @@ msgstr "Нормално"
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 "Изтича скоро"
@@ -2233,74 +2286,94 @@ msgstr ""
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"
@@ -2376,10 +2449,6 @@ msgstr ""
2376
  "на AdRotate. Ако използвате PHP кода, трябва да го поставите в изключващ код "
2377
  "сами."
2378
 
2379
- #: dashboard/settings/notifications.php:18
2380
- msgid "Notifications"
2381
- msgstr "Известия"
2382
-
2383
  #: dashboard/settings/notifications.php:19
2384
  msgid "Set up who gets notifications if ads need your attention."
2385
  msgstr "Изберете кой да получава известие, ако реклама се нуждае от внимание."
@@ -2517,10 +2586,6 @@ msgid ""
2517
  "separated. This field may not be empty!"
2518
  msgstr ""
2519
 
2520
- #: dashboard/settings/notifications.php:72
2521
- msgid "Advertisers"
2522
- msgstr "Рекламодатели"
2523
-
2524
  #: dashboard/settings/notifications.php:75
2525
  msgid ""
2526
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
@@ -2576,10 +2641,6 @@ msgstr ""
2576
  msgid "and get your API token"
2577
  msgstr ""
2578
 
2579
- #: dashboard/settings/roles.php:17
2580
- msgid "Roles"
2581
- msgstr ""
2582
-
2583
  #: dashboard/settings/roles.php:18
2584
  msgid "Who has access to what?"
2585
  msgstr "Кой до какво има достъп?"
@@ -2725,15 +2786,27 @@ 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"
@@ -2899,13 +2972,6 @@ msgstr ""
2899
  #~ msgid "Ad evaluation next run:"
2900
  #~ msgstr "Оценка на рекламата:"
2901
 
2902
- #~ msgid "Not scheduled!"
2903
- #~ msgstr "Не е планирано!"
2904
-
2905
- #, fuzzy
2906
- #~ msgid "Clean Trackerdata next run:"
2907
- #~ msgstr "Изчистване на Trackerdata при следващо стартиране:"
2908
-
2909
  #~ msgid "Set up who gets notification emails."
2910
  #~ msgstr "Задайте кой да получава известия по email."
2911
 
@@ -3115,9 +3181,6 @@ msgstr ""
3115
  #~ msgid "Ad created"
3116
  #~ msgstr "Рекламата е създадена"
3117
 
3118
- #~ msgid "Ad updated"
3119
- #~ msgstr "Рекламата е обновена"
3120
-
3121
  #~ msgid ""
3122
  #~ "The ad was saved but has an issue which might prevent it from working "
3123
  #~ "properly. Review the yellow marked ad."
@@ -3221,13 +3284,6 @@ msgstr ""
3221
  #~ "Ако създадете реклама или група, която не може да се запише, използвайте "
3222
  #~ "този бутон, за да изтриете празните полета."
3223
 
3224
- #~ msgid ""
3225
- #~ "Additionally you can clean up old statistics. This will improve the speed "
3226
- #~ "of your site."
3227
- #~ msgstr ""
3228
- #~ "Също така можете да изчистите остарелите статистики. Това ще подобри "
3229
- #~ "скоростта на сайта Ви."
3230
-
3231
  #~ msgid ""
3232
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3233
  #~ "becomes unusable in any way or by any means in whichever way I will not "
@@ -3494,9 +3550,6 @@ msgstr ""
3494
  #~ msgid "Enable stats"
3495
  #~ msgstr "Включване на статистиката"
3496
 
3497
- #~ msgid "Track clicks and impressions."
3498
- #~ msgstr "Проследяване на кликове и импресии."
3499
-
3500
  #~ msgid ""
3501
  #~ "Disabling this also disables click and impression limits on schedules."
3502
  #~ msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-19 15:30+0800\n"
6
+ "PO-Revision-Date: 2017-06-19 15:30+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 2.0.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:722
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
+ #: adrotate-functions.php:725
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
+ #: adrotate-functions.php:768
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:772
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:776
37
  msgid "Ad(s) deleted"
38
  msgstr "Успешно изтриване"
39
 
40
+ #: adrotate-functions.php:780
41
  msgid "Group deleted"
42
  msgstr "Групата е изтрита"
43
 
44
+ #: adrotate-functions.php:784
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Статистиката е нулирана"
47
 
48
+ #: adrotate-functions.php:788
49
  msgid "Ad(s) renewed"
50
  msgstr "Успешно подновяване"
51
 
52
+ #: adrotate-functions.php:792
53
  msgid "Ad(s) deactivated"
54
  msgstr "Успешно деактивиране"
55
 
56
+ #: adrotate-functions.php:796
57
  msgid "Ad(s) activated"
58
  msgstr "Успешно активиране"
59
 
60
+ #: adrotate-functions.php:800
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
63
 
64
+ #: adrotate-functions.php:804
65
  msgid "Export created"
66
  msgstr "Експорта е завършен"
67
 
68
+ #: adrotate-functions.php:809
69
  msgid "Settings saved"
70
  msgstr "Настройките са запазени"
71
 
72
+ #: adrotate-functions.php:813
73
  msgid "Database optimized"
74
  msgstr "Базата данни е оптимизирана"
75
 
76
+ #: adrotate-functions.php:817
77
  msgid "Database repaired"
78
  msgstr "Базата данни е поправена"
79
 
80
+ #: adrotate-functions.php:821
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
83
 
84
+ #: adrotate-functions.php:825
85
+ #, fuzzy
86
+ #| msgid "Clean-up Database"
87
+ msgid "Cleanup complete"
88
+ msgstr "Почистване на базата данни"
89
 
90
+ #: adrotate-functions.php:830
91
  msgid "Action prohibited"
92
  msgstr "Забранено действие"
93
 
94
+ #: adrotate-functions.php:834
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:838
101
  msgid "No data found in selected time period"
102
  msgstr "Не е намерена информация за избрания период"
103
 
104
+ #: adrotate-functions.php:842
105
  msgid "Database can only be optimized or cleaned once every hour"
106
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
107
 
108
+ #: adrotate-functions.php:846
109
  msgid "Form can not be (partially) empty!"
110
  msgstr ""
111
 
112
+ #: adrotate-functions.php:850
113
  msgid "No ads found."
114
  msgstr ""
115
 
116
+ #: adrotate-functions.php:854
117
  msgid "Unexpected error"
118
  msgstr ""
119
 
120
+ #: adrotate-manage-publisher.php:665
121
  msgid "AdRotate Advertiser"
122
  msgstr ""
123
 
124
+ #: adrotate-output.php:551
125
  msgid "Oh no! Something went wrong!"
126
  msgstr "О не! Нещо се случи!"
127
 
128
+ #: adrotate-output.php:552
129
  msgid ""
130
  "WordPress was unable to verify the authenticity of the url you have clicked. "
131
  "Verify if the url used is valid or log in via your browser."
134
  "кликнал. Проверете дали адреса е валиден или се впишете посредством браузъра "
135
  "си."
136
 
137
+ #: adrotate-output.php:553
138
  msgid ""
139
  "If you have received the url you want to visit via email, you are being "
140
  "tricked!"
141
  msgstr "Ако сте получили този адрес по email, то някой ви е изиграл!"
142
 
143
+ #: adrotate-output.php:554
144
  msgid "Contact support if the issue persists:"
145
  msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
146
 
147
+ #: adrotate-output.php:569
148
  msgid ""
149
  "Error, Ad is not available at this time due to schedule/geolocation "
150
  "restrictions or does not exist!"
152
  "Грешка, рекламата не е налична в момента, поради ограничения в графика/"
153
  "геолокацията или не съществува!"
154
 
155
+ #: adrotate-output.php:571
156
  msgid ""
157
  "Error, Ad is not available at this time due to schedule/geolocation "
158
  "restrictions!"
159
  msgstr ""
160
  "Грешка, рекламата не е налична, поради ограничения в графика/геолокацията!"
161
 
162
+ #: adrotate-output.php:578 adrotate-output.php:580
163
  msgid ""
164
  "Either there are no banners, they are disabled or none qualified for this "
165
  "location!"
166
  msgstr ""
167
  "Няма налични банери, те са деактивирани или не са подходящи за това място!"
168
 
169
+ #: adrotate-output.php:586
170
  msgid "Error, no Ad ID set! Check your syntax!"
171
  msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
172
 
173
+ #: adrotate-output.php:592
174
  msgid "Error, no group ID set! Check your syntax!"
175
  msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
176
 
177
+ #: adrotate-output.php:597
178
  msgid "Error, group does not exist! Check your syntax!"
179
  msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
180
 
181
+ #: adrotate-output.php:603
182
  msgid ""
183
  "There was an error locating the database tables for AdRotate. Please "
184
  "deactivate and re-activate AdRotate from the plugin page!!"
186
  "Не могат да бъдат открити таблиците на AdRotate в базата данни. Моля, "
187
  "изключете и включете наново AdRotate от страницата с плъгините!!"
188
 
189
+ #: adrotate-output.php:603
190
  msgid "If this does not solve the issue please seek support at"
191
  msgstr "Ако това не решава проблема, моля потърсете помощ на"
192
 
193
+ #: adrotate-output.php:609
194
  msgid "An unknown error occured."
195
  msgstr "Възникна неизвестна грешка."
196
 
197
+ #: adrotate-output.php:628 adrotate-output.php:631 adrotate-output.php:635
198
  msgid "Check adverts"
199
  msgstr ""
200
 
201
+ #: adrotate-output.php:640
202
  msgid ""
203
  "You have enable caching support but W3 Total Cache is not active on your "
204
  "site!"
205
  msgstr ""
206
 
207
+ #: adrotate-output.php:643
208
  msgid ""
209
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
210
  "not set."
211
  msgstr ""
212
 
213
+ #: adrotate-output.php:648
214
  msgid "Your AdRotate Banner folder is not writable or does not exist."
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:688 dashboard/adrotatepro.php:87
218
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
219
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
220
+ #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
221
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:97 dashboard/info.php:98
222
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:104
223
+ #: dashboard/info.php:105 dashboard/info.php:106 dashboard/info.php:107
224
  #: dashboard/settings/geotargeting.php:35
225
  msgid "Buy now"
226
  msgstr "Купи сега"
227
 
228
+ #: adrotate-output.php:689
229
  msgid ""
230
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
231
  "to the <strong>PRO</strong> version"
233
  "Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
234
  "до <strong>PRO</strong> версията"
235
 
236
+ #: adrotate-output.php:689
237
  #, php-format
238
  msgid ""
239
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
240
  msgstr ""
241
 
242
+ #: adrotate-output.php:689
243
  msgid "Thank you for your purchase!"
244
  msgstr ""
245
 
246
+ #: adrotate-output.php:752
247
  msgid ""
248
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
249
  "menu. If you need help getting started take a look at the"
250
  msgstr ""
251
 
252
+ #: adrotate-output.php:752
253
  msgid "manuals"
254
  msgstr "ръководства"
255
 
256
+ #: adrotate-output.php:752 adrotate-output.php:822
257
  msgid "and"
258
  msgstr "и"
259
 
260
+ #: adrotate-output.php:752
261
  msgid "forums"
262
  msgstr ""
263
 
264
+ #: adrotate-output.php:785
265
  msgid "Useful Links"
266
  msgstr "Полезни връзки"
267
 
268
+ #: adrotate-output.php:786
269
  msgid "Useful links to learn more about AdRotate"
270
  msgstr "Полезни връзки, за да получите повече информация за AdRotate"
271
 
272
+ #: adrotate-output.php:788
273
  msgid "AdRotate website"
274
  msgstr ""
275
 
276
+ #: adrotate-output.php:789
277
  msgid "Getting Started With AdRotate"
278
  msgstr "Започнете от нулата с AdRotate Pro"
279
 
280
+ #: adrotate-output.php:790
281
  msgid "AdRotate manuals"
282
  msgstr ""
283
 
284
+ #: adrotate-output.php:791
285
  msgid "AdRotate Support Forum"
286
  msgstr "Форум за поддръжка на AdRotate"
287
 
288
+ #: adrotate-output.php:814 dashboard/info.php:49
289
  msgid "Support AdRotate"
290
  msgstr "Подкрепете AdRotate"
291
 
292
+ #: adrotate-output.php:815
293
  msgid "Check out my website"
294
  msgstr ""
295
 
296
+ #: adrotate-output.php:822
297
  msgid ""
298
  "Many users only think to review AdRotate when something goes wrong while "
299
  "thousands of people happily use AdRotate."
300
  msgstr ""
301
 
302
+ #: adrotate-output.php:822
303
  msgid "If you find AdRotate useful please leave your"
304
  msgstr ""
305
 
306
+ #: adrotate-output.php:822
307
  msgid "rating"
308
  msgstr "оценка"
309
 
310
+ #: adrotate-output.php:822
311
  msgid "review"
312
  msgstr "мнение"
313
 
314
+ #: adrotate-output.php:822
315
  msgid "on WordPress.org to help AdRotate grow in a positive way"
316
  msgstr "на WordPress.org, за да се развива AdRotate"
317
 
318
+ #: adrotate-output.php:848 dashboard/settings/notifications.php:50
319
  #: dashboard/settings/notifications.php:80
320
  msgid "Available in AdRotate Pro"
321
  msgstr "Налично в AdRotate Pro"
322
 
323
+ #: adrotate-output.php:848
324
  msgid "More information..."
325
  msgstr "Повече информация..."
326
 
327
+ #: adrotate-output.php:849
328
  msgid "This feature is available in AdRotate Pro"
329
  msgstr "Тази функционалност е налична в AdRotate Pro"
330
 
331
+ #: adrotate-output.php:849
332
  msgid "Learn more"
333
  msgstr "Повече информация"
334
 
335
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:220
336
+ #: dashboard/publisher/adverts-edit.php:241
337
  msgid "January"
338
  msgstr "Януари"
339
 
340
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:221
341
+ #: dashboard/publisher/adverts-edit.php:242
342
  msgid "February"
343
  msgstr "Февруари"
344
 
345
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:222
346
+ #: dashboard/publisher/adverts-edit.php:243
347
  msgid "March"
348
  msgstr "Март"
349
 
350
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:223
351
+ #: dashboard/publisher/adverts-edit.php:244
352
  msgid "April"
353
  msgstr "Април"
354
 
355
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:224
356
+ #: dashboard/publisher/adverts-edit.php:245
357
  msgid "May"
358
  msgstr "Май"
359
 
360
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:225
361
+ #: dashboard/publisher/adverts-edit.php:246
362
  msgid "June"
363
  msgstr "Юни"
364
 
365
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:226
366
+ #: dashboard/publisher/adverts-edit.php:247
367
  msgid "July"
368
  msgstr "Юли"
369
 
370
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:227
371
+ #: dashboard/publisher/adverts-edit.php:248
372
  msgid "August"
373
  msgstr "Август"
374
 
375
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:228
376
+ #: dashboard/publisher/adverts-edit.php:249
377
  msgid "September"
378
  msgstr "Септември"
379
 
380
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:229
381
+ #: dashboard/publisher/adverts-edit.php:250
382
  msgid "October"
383
  msgstr "Октомври"
384
 
385
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:230
386
+ #: dashboard/publisher/adverts-edit.php:251
387
  msgid "November"
388
  msgstr "Ноември"
389
 
390
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:231
391
+ #: dashboard/publisher/adverts-edit.php:252
392
  msgid "December"
393
  msgstr "Декември"
394
 
395
+ #: adrotate-statistics.php:143
396
  msgid "Previous"
397
  msgstr "Предишен"
398
 
399
+ #: adrotate-statistics.php:145
400
  msgid "This month"
401
  msgstr "Този месец"
402
 
403
+ #: adrotate-statistics.php:146
404
  msgid "Next"
405
  msgstr "Следващ"
406
 
407
+ #: adrotate-statistics.php:232
408
  msgid "No data to show!"
409
  msgstr "Няма информация!"
410
 
448
  msgid "Fill in the ID of the type you want to display!"
449
  msgstr "Попълнете ID-то на типа, който искате да се показва!"
450
 
451
+ #: adrotate.php:103
452
  msgid "General Info"
453
  msgstr "Обща информация"
454
 
455
+ #: adrotate.php:104
456
  msgid "AdRotate Pro"
457
  msgstr "AdRotate Pro"
458
 
459
+ #: adrotate.php:105 dashboard/info.php:40
460
+ #: dashboard/publisher/adverts-edit.php:458
461
  #: dashboard/publisher/groups-main.php:34
462
  msgid "Adverts"
463
  msgstr "Реклами"
464
 
465
+ #: adrotate.php:106 dashboard/info.php:44
466
  msgid "Groups"
467
  msgstr "Групи"
468
 
469
+ #: adrotate.php:107
470
  msgid "Settings"
471
  msgstr "Настройки"
472
 
473
+ #: adrotate.php:125
474
  msgid "AdRotate Info"
475
  msgstr "AdRotate Info"
476
 
477
+ #: adrotate.php:143
478
  msgid "AdRotate Professional"
479
  msgstr "AdRotate Professional"
480
 
481
+ #: adrotate.php:183
482
  msgid "Advert Management"
483
  msgstr ""
484
 
485
+ #: adrotate.php:241 adrotate.php:308
486
  msgid "Manage"
487
  msgstr "Управление"
488
 
489
+ #: adrotate.php:242 adrotate.php:309
490
  msgid "Add New"
491
  msgstr "Добавяне"
492
 
493
+ #: adrotate.php:302
494
  msgid "Group Management"
495
  msgstr "Управление на групи"
496
 
497
+ #: adrotate.php:311
498
  msgid "Report"
499
  msgstr "Доклад"
500
 
501
+ #: adrotate.php:356
502
  msgid "AdRotate Settings"
503
  msgstr "AdRotate Настройки"
504
 
505
+ #: adrotate.php:361
506
+ #, fuzzy
507
+ #| msgid "General Info"
508
+ msgid "General"
509
+ msgstr "Обща информация"
510
+
511
+ #: adrotate.php:362 dashboard/settings/notifications.php:18
512
+ msgid "Notifications"
513
+ msgstr "Известия"
514
+
515
+ #: adrotate.php:363 dashboard/publisher/adverts-disabled.php:69
516
+ #: dashboard/publisher/adverts-error.php:63
517
+ #: dashboard/publisher/adverts-main.php:81
518
+ #: dashboard/publisher/groups-main.php:70
519
+ msgid "Stats"
520
+ msgstr "Статистики"
521
+
522
+ #: adrotate.php:364 dashboard/publisher/adverts-edit.php:359
523
+ #: dashboard/publisher/groups-edit.php:180
524
+ #: dashboard/settings/advertisers.php:38
525
+ msgid "Geo Targeting"
526
+ msgstr "Таргетиране спрямо местоположението"
527
+
528
+ #: adrotate.php:365 dashboard/settings/notifications.php:72
529
+ msgid "Advertisers"
530
+ msgstr "Рекламодатели"
531
+
532
+ #: adrotate.php:366 dashboard/settings/roles.php:17
533
+ msgid "Roles"
534
+ msgstr ""
535
+
536
+ #: adrotate.php:367
537
+ msgid "Misc"
538
+ msgstr ""
539
+
540
+ #: adrotate.php:368 dashboard/settings/maintenance.php:16
541
+ msgid "Maintenance"
542
+ msgstr "Поддръжка"
543
+
544
  #: dashboard/adrotatepro.php:20
545
  msgid "Satisfy your advertisers"
546
  msgstr "Задоволете рекламодателите си"
594
  "forum. Get a solution (usually) within one business day."
595
  msgstr ""
596
 
597
+ #: dashboard/adrotatepro.php:48
598
  msgid "AdRotate is brought to you by"
599
  msgstr "AdRotate достига до Вас, благодарение на"
600
 
601
+ #: dashboard/adrotatepro.php:51
602
+ msgid ""
603
+ "I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner "
604
+ "to find out more about me and what I am doing!"
605
+ msgstr ""
606
+
607
+ #: dashboard/adrotatepro.php:62
608
  msgid "Schedule all campaigns with ease"
609
  msgstr "Планиране на всички кампании с лекота"
610
 
611
+ #: dashboard/adrotatepro.php:65
612
  msgid ""
613
  "Schedule your adverts and set up advertising campaigns based on dates you or "
614
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
617
  "schedules for adverts."
618
  msgstr ""
619
 
620
+ #: dashboard/adrotatepro.php:69
621
  msgid "Avoid adblockers"
622
  msgstr ""
623
 
624
+ #: dashboard/adrotatepro.php:72
625
  msgid ""
626
  "Try and avoid adblockers so your adverts get the exposure you want them to "
627
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
629
  "adverts smartly so these features reach their full potential!"
630
  msgstr ""
631
 
632
+ #: dashboard/adrotatepro.php:76
633
  msgid "Stay up-to-date with notifications"
634
  msgstr ""
635
 
636
+ #: dashboard/adrotatepro.php:79
637
  msgid ""
638
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
639
  "adverts expire or need your attention. Additionally, send push notifications "
641
  "or when advertisers create new adverts. Never miss an expiration date again."
642
  msgstr ""
643
 
644
+ #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
645
+ #: dashboard/info.php:93
646
  msgid "Buy AdRotate Professional"
647
  msgstr "Купете AdRotate Professional"
648
 
649
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
650
  msgid "Single License"
651
  msgstr ""
652
 
653
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
654
+ msgid "One WordPress installation."
655
+ msgstr ""
656
 
657
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
658
+ #: dashboard/info.php:98 dashboard/info.php:105
659
  msgid "Duo License"
660
  msgstr "Duo лиценз"
661
 
662
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:98
663
+ msgid "Two WordPress installations."
664
+ msgstr ""
665
 
666
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
667
+ #: dashboard/info.php:99 dashboard/info.php:106
668
  msgid "Multi License"
669
  msgstr "Multi лиценз"
670
 
671
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:99
672
+ msgid "Up to five WordPress installations."
673
+ msgstr ""
674
 
675
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
676
+ #: dashboard/info.php:100 dashboard/info.php:107
677
  msgid "Developer License"
678
  msgstr "Developer лиценз"
679
 
680
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:100
681
  msgid "Unlimited WordPress installations and/or networks."
682
  msgstr ""
683
 
684
+ #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
685
+ #: dashboard/info.php:101 dashboard/info.php:109
686
  msgid "Compare licenses"
687
  msgstr "Сравнение на лицензи"
688
 
689
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
690
  msgid "Not sure which license is for you? Compare them..."
691
  msgstr "Не сте сигурни кой лиценз ви е необходим? Сравнете ги..."
692
 
693
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
694
  msgid "All Licenses"
695
  msgstr "Всички лицензи"
696
 
697
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
698
  msgid "Lifetime License"
699
  msgstr ""
700
 
701
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
702
  msgid "Single installation."
703
  msgstr ""
704
 
705
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:105
706
  msgid "Up to 2 installations."
707
  msgstr ""
708
 
709
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:106
710
  msgid "Up to 10 installations."
711
  msgstr ""
712
 
713
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:107
714
  msgid "Up to 25 installations or multisite networks."
715
  msgstr ""
716
 
717
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:108
718
  msgid ""
719
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
720
  msgstr ""
721
 
722
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
723
  msgid "Not sure which license is for you?"
724
  msgstr ""
725
 
726
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
727
  msgid "Compare Licenses"
728
  msgstr ""
729
 
730
+ #: dashboard/info.php:27
731
  msgid "Currently"
732
  msgstr "В момента"
733
 
734
+ #: dashboard/info.php:33
735
  msgid "Your setup"
736
  msgstr "Вие имате"
737
 
738
+ #: dashboard/info.php:34
739
  msgid "Adverts that need you"
740
  msgstr "Реклами, които изискват вниманието Ви"
741
 
742
+ #: dashboard/info.php:41
743
  msgid "(Almost) Expired"
744
  msgstr "(Почти) Изтекли"
745
 
746
+ #: dashboard/info.php:45
747
  msgid "Have errors"
748
  msgstr "Има грешки"
749
 
750
+ #: dashboard/info.php:50
751
  msgid ""
752
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
753
  "for updates about me and my plugins. Thank you!"
754
  msgstr ""
755
 
756
+ #: dashboard/info.php:74
757
+ msgid "Arnan de Gans News & Updates"
 
 
 
 
758
  msgstr ""
759
 
760
+ #: dashboard/info.php:114
761
+ msgid "Join the Media.net advertising network"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
762
  msgstr ""
763
 
764
  #: dashboard/publisher/adverts-disabled.php:15
773
  msgstr "Масови действия"
774
 
775
  #: dashboard/publisher/adverts-disabled.php:21
776
+ #: dashboard/publisher/adverts-edit.php:176
777
  msgid "Activate"
778
  msgstr "Активиране"
779
 
804
  msgstr "ID"
805
 
806
  #: dashboard/publisher/adverts-disabled.php:36
807
+ #: dashboard/publisher/adverts-error.php:41
808
  #: dashboard/publisher/adverts-main.php:40
809
  msgid "Start / End"
810
  msgstr "Начало / Край"
811
 
812
  #: dashboard/publisher/adverts-disabled.php:37
813
+ #: dashboard/publisher/adverts-error.php:40
 
814
  #: dashboard/publisher/adverts-main.php:41
815
+ #: dashboard/publisher/groups-edit.php:51
816
+ #: dashboard/publisher/groups-main.php:33
817
+ msgid "Name"
818
+ msgstr "Име"
819
 
820
+ #: dashboard/publisher/adverts-disabled.php:39
821
+ #: dashboard/publisher/adverts-main.php:43
822
+ #: dashboard/publisher/groups-edit.php:333
823
  #: dashboard/publisher/groups-main.php:36
824
  msgid "Shown"
825
  msgstr "Показана"
826
 
827
+ #: dashboard/publisher/adverts-disabled.php:40
828
+ #: dashboard/publisher/adverts-main.php:45
829
  #: dashboard/publisher/adverts-report.php:36
830
  #: dashboard/publisher/adverts-report.php:57
831
+ #: dashboard/publisher/groups-edit.php:334
832
  #: dashboard/publisher/groups-main.php:38
833
  #: dashboard/publisher/groups-report.php:37
834
  #: dashboard/publisher/groups-report.php:58
835
  msgid "Clicks"
836
  msgstr "Кликове"
837
 
838
+ #: dashboard/publisher/adverts-disabled.php:41
839
+ #: dashboard/publisher/adverts-main.php:47
840
  #: dashboard/publisher/adverts-report.php:39
841
  #: dashboard/publisher/adverts-report.php:58
842
  #: dashboard/publisher/groups-report.php:40
844
  msgid "CTR"
845
  msgstr "CTR"
846
 
847
+ #: dashboard/publisher/adverts-disabled.php:69
848
+ #: dashboard/publisher/adverts-error.php:63
849
+ #: dashboard/publisher/adverts-main.php:81
850
  #: dashboard/publisher/groups-main.php:70
851
  msgid "Edit"
852
  msgstr "Редакция"
853
 
854
+ #: dashboard/publisher/adverts-disabled.php:69
855
+ #: dashboard/publisher/adverts-error.php:63
856
+ #: dashboard/publisher/adverts-main.php:81
 
 
 
 
 
 
 
857
  msgid "Groups:"
858
  msgstr "Групи:"
859
 
860
+ #: dashboard/publisher/adverts-edit.php:48
861
  msgid "The AdCode cannot be empty!"
862
  msgstr "AdCode не може да бъде празен!"
863
 
864
+ #: dashboard/publisher/adverts-edit.php:51
865
  msgid ""
866
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
867
  "use!"
868
  msgstr ""
869
 
870
+ #: dashboard/publisher/adverts-edit.php:54
871
  msgid ""
872
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
873
  "use!"
874
  msgstr ""
875
 
876
+ #: dashboard/publisher/adverts-edit.php:57
877
  msgid ""
878
  "There is a problem saving the image. Please reset your image and re-save the "
879
  "ad!"
880
  msgstr ""
881
 
882
+ #: dashboard/publisher/adverts-edit.php:60
883
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
884
  msgstr ""
885
 
886
+ #: dashboard/publisher/adverts-edit.php:65
887
  msgid ""
888
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
889
  "the ad!"
891
  "AdRotate не открива грешка, но рекламата е маркирана като грешна, моля, "
892
  "запишете я наново!"
893
 
894
+ #: dashboard/publisher/adverts-edit.php:68
895
  msgid "This ad is expired and currently not shown on your website!"
896
  msgstr "Тази реклама е изтекла и не се показва на сайта Ви!"
897
 
898
+ #: dashboard/publisher/adverts-edit.php:71
899
  msgid "The ad will expire in less than 2 days!"
900
  msgstr "Тази реклама изтича след по-малко от 2 дни!"
901
 
902
+ #: dashboard/publisher/adverts-edit.php:74
903
  msgid "This ad will expire in less than 7 days!"
904
  msgstr "Тази реклама изтича след по-малко от 7 дни!"
905
 
906
+ #: dashboard/publisher/adverts-edit.php:77
907
  msgid "This ad has been disabled and does not rotate on your site!"
908
  msgstr "Тази реклама е деактивирана и не се показва на сайта Ви!"
909
 
910
+ #: dashboard/publisher/adverts-edit.php:81
911
+ msgid ""
912
+ "This advert uses the obsolete Responsive feature. Please use the more "
913
+ "reliable Mobile feature! Saving the advert will disable the responsive "
914
+ "option silently."
915
+ msgstr ""
916
+
917
+ #: dashboard/publisher/adverts-edit.php:106
918
  msgid "New Advert"
919
  msgstr "Нова реклама"
920
 
921
+ #: dashboard/publisher/adverts-edit.php:108
922
  msgid "Edit Advert"
923
  msgstr "Редакция на реклама"
924
 
925
+ #: dashboard/publisher/adverts-edit.php:114
926
+ msgid "Title"
927
+ msgstr "Заглавие"
928
+
929
+ #: dashboard/publisher/adverts-edit.php:120
930
  msgid "AdCode"
931
  msgstr ""
932
 
933
+ #: dashboard/publisher/adverts-edit.php:125
934
  msgid "Basic Examples:"
935
  msgstr "Основни примери:"
936
 
937
+ #: dashboard/publisher/adverts-edit.php:129
938
+ msgid "Get better adverts from Media.net"
939
+ msgstr ""
940
+
941
+ #: dashboard/publisher/adverts-edit.php:134
942
  msgid "Useful tags"
943
  msgstr ""
944
 
945
+ #: dashboard/publisher/adverts-edit.php:136
946
  msgid "Insert the advert ID Number."
947
  msgstr ""
948
 
949
+ #: dashboard/publisher/adverts-edit.php:136
950
  msgid "Required when selecting a asset below."
951
  msgstr ""
952
 
953
+ #: dashboard/publisher/adverts-edit.php:136
954
  msgid "Insert the advert name."
955
  msgstr ""
956
 
957
+ #: dashboard/publisher/adverts-edit.php:136
958
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
959
  msgstr ""
960
 
961
+ #: dashboard/publisher/adverts-edit.php:136
962
  msgid "Add inside the <a> tag to open advert in a new window."
963
  msgstr ""
964
 
965
+ #: dashboard/publisher/adverts-edit.php:136
966
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
967
  msgstr ""
968
 
969
+ #: dashboard/publisher/adverts-edit.php:136
970
  msgid ""
971
  "Place the cursor in your AdCode where you want to add any of these tags and "
972
  "click to add it."
973
  msgstr ""
974
 
975
+ #: dashboard/publisher/adverts-edit.php:141
976
  msgid "Preview"
977
  msgstr "Преглед"
978
 
979
+ #: dashboard/publisher/adverts-edit.php:144
980
  msgid ""
981
  "Note: While this preview is an accurate one, it might look different then it "
982
  "does on the website."
984
  "Забележка: Въпреки, че предварителния преглед е точен, рекламата може да "
985
  "изглежда по-различно, когато се показва на страницата Ви."
986
 
987
+ #: dashboard/publisher/adverts-edit.php:145
988
  msgid ""
989
  "This is because of CSS differences. Your themes CSS file is not active here!"
990
  msgstr ""
991
  "Това се дължи на разлики в CSS. CSS файла на вашата тема не е активен тук!"
992
 
993
+ #: dashboard/publisher/adverts-edit.php:150
994
  msgid "Banner asset"
995
  msgstr ""
996
 
997
+ #: dashboard/publisher/adverts-edit.php:153
998
  msgid "WordPress media:"
999
  msgstr ""
1000
 
1001
+ #: dashboard/publisher/adverts-edit.php:153
1002
  msgid "Select Banner"
1003
  msgstr "Избор на банер"
1004
 
1005
+ #: dashboard/publisher/adverts-edit.php:155
1006
  msgid "- OR -"
1007
  msgstr "- ИЛИ -"
1008
 
1009
+ #: dashboard/publisher/adverts-edit.php:157
1010
  msgid "Banner folder:"
1011
  msgstr "Папка на банера:"
1012
 
1013
+ #: dashboard/publisher/adverts-edit.php:158
1014
  msgid "No image selected"
1015
  msgstr "Не е избрана картинка"
1016
 
1017
+ #: dashboard/publisher/adverts-edit.php:162
1018
  msgid "Use %asset% in the adcode instead of the file path."
1019
  msgstr ""
1020
 
1021
+ #: dashboard/publisher/adverts-edit.php:162
1022
  msgid ""
1023
  "Use either the text field or the dropdown. If the textfield has content that "
1024
  "field has priority."
1026
  "Използвайте падащото меню или текстовото поле. Ако текстовото поле е "
1027
  "попълнено, то ще бъде с преоритет."
1028
 
1029
+ #: dashboard/publisher/adverts-edit.php:167
1030
  #: dashboard/settings/statistics.php:17
1031
  msgid "Statistics"
1032
  msgstr "Статистики"
1033
 
1034
+ #: dashboard/publisher/adverts-edit.php:169
1035
  msgid "Enable click and impression tracking for this advert."
1036
  msgstr ""
1037
 
1038
+ #: dashboard/publisher/adverts-edit.php:170
1039
  msgid ""
1040
  "Note: Clicktracking does not work for Javascript adverts such as those "
1041
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1042
  "always supported."
1043
  msgstr ""
1044
 
1045
+ #: dashboard/publisher/adverts-edit.php:180
1046
  msgid "Yes, this ad will be used"
1047
  msgstr "Да, тази реклама ще се използва"
1048
 
1049
+ #: dashboard/publisher/adverts-edit.php:181
1050
  msgid "No, do not show this ad anywhere"
1051
  msgstr "Не, не показвай тази реклама никъде"
1052
 
1053
+ #: dashboard/publisher/adverts-edit.php:188
1054
+ #: dashboard/publisher/adverts-main.php:105
1055
  #: dashboard/publisher/groups-edit.php:71
1056
  #: dashboard/publisher/groups-main.php:89
1057
  msgid "Get more features with AdRotate Pro."
1058
  msgstr "Получете по-голяма функционалност с AdRotate Pro."
1059
 
1060
+ #: dashboard/publisher/adverts-edit.php:188
1061
+ #: dashboard/publisher/adverts-main.php:105
1062
  #: dashboard/publisher/groups-edit.php:71
1063
  #: dashboard/publisher/groups-main.php:89
1064
  msgid "More information"
1065
  msgstr "Повече информация"
1066
 
1067
+ #: dashboard/publisher/adverts-edit.php:191
1068
+ #: dashboard/publisher/adverts-edit.php:291
1069
+ #: dashboard/publisher/adverts-edit.php:447
1070
+ #: dashboard/publisher/adverts-edit.php:488
1071
  msgid "Save Advert"
1072
  msgstr "Запиши рекламата"
1073
 
1074
+ #: dashboard/publisher/adverts-edit.php:192
1075
+ #: dashboard/publisher/adverts-edit.php:292
1076
+ #: dashboard/publisher/adverts-edit.php:448
1077
+ #: dashboard/publisher/adverts-edit.php:489
1078
  #: dashboard/publisher/groups-edit.php:150
1079
  #: dashboard/publisher/groups-edit.php:299
1080
  #: dashboard/publisher/groups-edit.php:391
1081
  msgid "Cancel"
1082
  msgstr "Отказ"
1083
 
1084
+ #: dashboard/publisher/adverts-edit.php:195
1085
+ #: dashboard/publisher/adverts-edit.php:430
1086
  #: dashboard/publisher/groups-edit.php:132
1087
  #: dashboard/publisher/groups-edit.php:281
1088
  msgid "Usage"
1089
  msgstr "Употреба"
1090
 
1091
+ #: dashboard/publisher/adverts-edit.php:199
1092
+ #: dashboard/publisher/adverts-edit.php:434
1093
  #: dashboard/publisher/groups-edit.php:136
1094
  #: dashboard/publisher/groups-edit.php:205
1095
  #: dashboard/publisher/groups-edit.php:245
1097
  msgid "Widget"
1098
  msgstr ""
1099
 
1100
+ #: dashboard/publisher/adverts-edit.php:200
1101
+ #: dashboard/publisher/adverts-edit.php:435
1102
  msgid ""
1103
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1104
  "and select the advert or the group the advert is in."
1105
  msgstr ""
1106
 
1107
+ #: dashboard/publisher/adverts-edit.php:203
1108
+ #: dashboard/publisher/adverts-edit.php:438
1109
  #: dashboard/publisher/groups-edit.php:140
1110
  #: dashboard/publisher/groups-edit.php:289
1111
  msgid "In a post or page"
1112
  msgstr ""
1113
 
1114
+ #: dashboard/publisher/adverts-edit.php:205
1115
+ #: dashboard/publisher/adverts-edit.php:440
1116
  #: dashboard/publisher/groups-edit.php:142
1117
  #: dashboard/publisher/groups-edit.php:291
1118
  msgid "Directly in a theme"
1119
  msgstr ""
1120
 
1121
+ #: dashboard/publisher/adverts-edit.php:211
1122
  msgid "Schedule your advert"
1123
  msgstr ""
1124
 
1125
+ #: dashboard/publisher/adverts-edit.php:215
1126
  msgid "Start date (day/month/year)"
1127
  msgstr ""
1128
 
1129
+ #: dashboard/publisher/adverts-edit.php:236
1130
  msgid "End date (day/month/year)"
1131
  msgstr ""
1132
 
1133
+ #: dashboard/publisher/adverts-edit.php:259
1134
  msgid "Start time (hh:mm)"
1135
  msgstr ""
1136
 
1137
+ #: dashboard/publisher/adverts-edit.php:266
1138
  msgid "End time (hh:mm)"
1139
  msgstr ""
1140
 
1141
+ #: dashboard/publisher/adverts-edit.php:276
1142
  msgid "Maximum Clicks"
1143
  msgstr ""
1144
 
1145
+ #: dashboard/publisher/adverts-edit.php:277
1146
+ #: dashboard/publisher/adverts-edit.php:279
1147
  msgid "Leave empty or 0 to skip this."
1148
  msgstr "Въведете 0 или оставете празно, за да пропуснете тази опция."
1149
 
1150
+ #: dashboard/publisher/adverts-edit.php:278
1151
  msgid "Maximum Impressions"
1152
  msgstr ""
1153
 
1154
+ #: dashboard/publisher/adverts-edit.php:283
1155
  msgid "Important"
1156
  msgstr ""
1157
 
1158
+ #: dashboard/publisher/adverts-edit.php:284
1159
  msgid ""
1160
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1161
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1162
  "14:00 hours. 6AM is 6:00 hours."
1163
  msgstr ""
1164
 
1165
+ #: dashboard/publisher/adverts-edit.php:288
1166
  msgid ""
1167
  "Create multiple and more advanced schedules for each advert with AdRotate "
1168
  "Pro."
1169
  msgstr ""
1170
 
1171
+ #: dashboard/publisher/adverts-edit.php:288
1172
+ #: dashboard/publisher/adverts-edit.php:357
1173
+ #: dashboard/publisher/adverts-edit.php:428
1174
  #: dashboard/publisher/groups-edit.php:191
1175
  msgid "Upgrade today"
1176
  msgstr "Надградете днес"
1177
 
1178
+ #: dashboard/publisher/adverts-edit.php:295
1179
  #: dashboard/publisher/groups-edit.php:153
1180
  msgid "Advanced"
1181
  msgstr "Разширени"
1182
 
1183
+ #: dashboard/publisher/adverts-edit.php:296
1184
+ #: dashboard/publisher/adverts-edit.php:360
1185
  msgid "Available in AdRotate Pro!"
1186
  msgstr ""
1187
 
1188
+ #: dashboard/publisher/adverts-edit.php:301
1189
+ #: dashboard/publisher/groups-edit.php:331
 
1190
  msgid "Weight"
1191
  msgstr "Тежест"
1192
 
1193
+ #: dashboard/publisher/adverts-edit.php:304
1194
  msgid "Few impressions"
1195
  msgstr ""
1196
 
1197
+ #: dashboard/publisher/adverts-edit.php:309
1198
  msgid "Less than average"
1199
  msgstr "По-малко от нормалното"
1200
 
1201
+ #: dashboard/publisher/adverts-edit.php:314
1202
  msgid "Normal impressions"
1203
  msgstr ""
1204
 
1205
+ #: dashboard/publisher/adverts-edit.php:319
1206
  msgid "More than average"
1207
  msgstr "Повече от нормалното"
1208
 
1209
+ #: dashboard/publisher/adverts-edit.php:324
1210
  msgid "Many impressions"
1211
  msgstr ""
1212
 
1213
+ #: dashboard/publisher/adverts-edit.php:329
1214
  msgid "Mobile"
1215
  msgstr ""
1216
 
1217
+ #: dashboard/publisher/adverts-edit.php:331
1218
  msgid "Computers"
1219
  msgstr ""
1220
 
1221
+ #: dashboard/publisher/adverts-edit.php:334
1222
  msgid "Smartphones"
1223
  msgstr ""
1224
 
1225
+ #: dashboard/publisher/adverts-edit.php:337
1226
  msgid "Tablets"
1227
  msgstr ""
1228
 
1229
+ #: dashboard/publisher/adverts-edit.php:340
1230
  msgid ""
1231
  "Also enable mobile support in the group this advert goes in or these are "
1232
  "ignored."
1233
  msgstr ""
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:340
1236
+ msgid "Operating system detection only detects iOS/Android/Other or neither."
 
 
1237
  msgstr ""
1238
 
1239
+ #: dashboard/publisher/adverts-edit.php:344
1240
  msgid "Mobile OS"
1241
  msgstr ""
1242
 
1243
+ #: dashboard/publisher/adverts-edit.php:346
1244
  msgid "iOS"
1245
  msgstr ""
1246
 
1247
+ #: dashboard/publisher/adverts-edit.php:349
1248
  msgid "Android"
1249
  msgstr ""
1250
 
1251
+ #: dashboard/publisher/adverts-edit.php:352
1252
  msgid "Others"
1253
  msgstr ""
1254
 
1255
+ #: dashboard/publisher/adverts-edit.php:357
1256
  msgid ""
1257
  "With AdRotate Pro you can easily select which devices and mobile operating "
1258
  "systems the advert should show on!"
1259
  msgstr ""
1260
 
1261
+ #: dashboard/publisher/adverts-edit.php:360
 
 
 
 
 
 
1262
  msgid ""
1263
  "Assign the advert to a group and enable that group to use Geo Targeting."
1264
  msgstr ""
1265
 
1266
+ #: dashboard/publisher/adverts-edit.php:418
1267
  msgid "A comma separated list of items:"
1268
  msgstr ""
1269
 
1270
+ #: dashboard/publisher/adverts-edit.php:418
1271
  msgid ""
1272
  "AdRotate does not check the validity of names so make sure you spell them "
1273
  "correctly!"
1275
  "AdRotate не проверява валидността на имената, уверете се, че сте ги изписали "
1276
  "правилно!"
1277
 
1278
+ #: dashboard/publisher/adverts-edit.php:428
1279
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1280
  msgstr ""
1281
 
1282
+ #: dashboard/publisher/adverts-edit.php:452
1283
  msgid "Select Groups"
1284
  msgstr "Избор на групи"
1285
 
1286
+ #: dashboard/publisher/adverts-edit.php:457
1287
  msgid "ID - Name"
1288
  msgstr "ID - Име"
1289
 
1290
+ #: dashboard/publisher/adverts-edit.php:467
1291
  #: dashboard/publisher/groups-main.php:60
1292
  #: dashboard/settings/geotargeting.php:49
1293
  msgid "Default"
1294
  msgstr "По подразбиране"
1295
 
1296
+ #: dashboard/publisher/adverts-edit.php:468
1297
  #: dashboard/publisher/groups-main.php:61
1298
  msgid "Dynamic"
1299
  msgstr "Динамично"
1300
 
1301
+ #: dashboard/publisher/adverts-edit.php:468
1302
  #: dashboard/publisher/groups-main.php:61
1303
  msgid "second rotation"
1304
  msgstr "второ завъртане"
1305
 
1306
+ #: dashboard/publisher/adverts-edit.php:469
1307
  #: dashboard/publisher/groups-main.php:62
1308
  msgid "Block"
1309
  msgstr "Блок"
1310
 
1311
+ #: dashboard/publisher/adverts-edit.php:469
1312
  #: dashboard/publisher/groups-main.php:62
1313
  msgid "grid"
1314
  msgstr "решетка"
1315
 
1316
+ #: dashboard/publisher/adverts-edit.php:470
1317
  #: dashboard/publisher/groups-edit.php:199
1318
  #: dashboard/publisher/groups-main.php:63
1319
  msgid "Post Injection"
1320
  msgstr "Вмъкване в публикации"
1321
 
1322
+ #: dashboard/publisher/adverts-edit.php:471
1323
  msgid "Geolocation"
1324
  msgstr "Геолокация"
1325
 
1326
+ #: dashboard/publisher/adverts-edit.php:477
1327
  #: dashboard/publisher/groups-edit.php:57
1328
  #: dashboard/publisher/groups-main.php:70
1329
  msgid "Mode"
1364
  msgstr "За 7 дни"
1365
 
1366
  #: dashboard/publisher/adverts-error.php:71
1367
+ #, fuzzy
1368
+ #| msgid "Configuration errors."
1369
+ msgid "Configuration errors"
1370
  msgstr "Грешки при конфигурирането."
1371
 
1372
  #: dashboard/publisher/adverts-error.php:72
1373
+ #, fuzzy
1374
+ #| msgid "Expires soon."
1375
+ msgid "Expires soon"
1376
  msgstr "Изтича скоро."
1377
 
1378
  #: dashboard/publisher/adverts-error.php:73
1379
+ #: dashboard/settings/maintenance.php:64
1380
+ msgid "Expired"
1381
+ msgstr "Изтекло"
1382
 
1383
  #: dashboard/publisher/adverts-main.php:12
1384
  msgid "Active Adverts"
1385
  msgstr ""
1386
 
1387
  #: dashboard/publisher/adverts-main.php:24
1388
+ #, fuzzy
1389
+ #| msgid "Export to XML"
1390
+ msgid "Export to CSV"
1391
  msgstr "Експорт в XML"
1392
 
1393
+ #: dashboard/publisher/adverts-main.php:44
1394
+ #: dashboard/publisher/adverts-main.php:46
1395
  #: dashboard/publisher/groups-main.php:37
1396
  #: dashboard/publisher/groups-main.php:39
1397
  msgid "Today"
1398
  msgstr "Днес"
1399
 
1400
+ #: dashboard/publisher/adverts-main.php:100
1401
  msgid "No adverts created yet!"
1402
  msgstr ""
1403
 
1451
  msgid "Edit Group"
1452
  msgstr "Редакция на група"
1453
 
 
 
 
 
 
1454
  #: dashboard/publisher/groups-edit.php:60
1455
  msgid "Default - Show one ad at a time"
1456
  msgstr "По подразбиране - показва се само една реклама"
1727
  msgid "Choose adverts"
1728
  msgstr ""
1729
 
1730
+ #: dashboard/publisher/groups-edit.php:330
1731
  msgid "Visible until"
1732
  msgstr "Да се вижда до"
1733
 
1735
  msgid "No adverts created!"
1736
  msgstr ""
1737
 
1738
+ #: dashboard/publisher/groups-edit.php:384
1739
+ msgid "Configuration errors."
1740
+ msgstr "Грешки при конфигурирането."
1741
+
1742
+ #: dashboard/publisher/groups-edit.php:385
1743
+ msgid "Expires soon."
1744
+ msgstr "Изтича скоро."
1745
+
1746
+ #: dashboard/publisher/groups-edit.php:386
1747
+ msgid "Has expired."
1748
+ msgstr "Изтекла."
1749
+
1750
  #: dashboard/publisher/groups-main.php:12
1751
  msgid "Manage Groups"
1752
  msgstr "Управление на групи"
1768
  msgstr "Това действие е необратимо!"
1769
 
1770
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1771
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
 
1772
  msgid "OK to continue, CANCEL to stop."
1773
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1774
 
1835
  msgstr ""
1836
 
1837
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1838
+ #: dashboard/settings/maintenance.php:116 dashboard/settings/misc.php:43
1839
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1840
+ #: dashboard/settings/statistics.php:73
1841
  msgid "Update Options"
1842
  msgstr "Опции за обновяване"
1843
 
1933
  msgstr "Папка с банери"
1934
 
1935
  #: dashboard/settings/general.php:50
1936
+ #, fuzzy
1937
+ #| msgid "Set a location where your banner images will be stored."
1938
+ msgid "Set a folder where your banner images will be stored."
1939
  msgstr ""
1940
  "Задайте местоположение, където да се записват вашите картинки за банери."
1941
 
1942
  #: dashboard/settings/general.php:53
1943
+ msgid "Folder name"
1944
+ msgstr ""
1945
 
1946
  #: dashboard/settings/general.php:55
1947
+ #, fuzzy
1948
+ #| msgid "(Default: wp-content/banners/)."
1949
+ msgid "(Default: banners)."
1950
  msgstr "(По подразбиране: wp-content/banners/)."
1951
 
1952
  #: dashboard/settings/general.php:56
2089
  msgid "Password/License Key"
2090
  msgstr ""
2091
 
 
 
 
 
2092
  #: dashboard/settings/maintenance.php:17
2093
  msgid ""
2094
  "Use these functions when you notice your database is slow, unresponsive and "
2127
  "Overhead данните са боклук, акумулиран в резултат на множеството промени, "
2128
  "които правите. Те могар да варират от 0 до хиляди KB."
2129
 
2130
+ #: dashboard/settings/maintenance.php:28
2131
+ #, fuzzy
2132
+ #| msgid "Clean-up Database"
2133
+ msgid "Clean-up Database and Files"
2134
+ msgstr "Почистване на базата данни"
2135
+
2136
+ #: dashboard/settings/maintenance.php:30
2137
  msgid "Clean-up Database"
2138
  msgstr "Почистване на базата данни"
2139
 
2140
  #: dashboard/settings/maintenance.php:30
2141
+ #, fuzzy
2142
+ #| msgid ""
2143
+ #| "You are about to clean up your database. This may delete expired "
2144
+ #| "schedules and older statistics."
2145
  msgid ""
2146
+ "You are about to clean up your database. This may delete expired schedules, "
2147
+ "older statistics and try to delete export files"
2148
  msgstr ""
2149
  "На път сте да почистите базата с данни. Това може да изтрие истекли графици "
2150
  "и стари статистики."
2153
  msgid "Are you sure you want to continue?"
2154
  msgstr "Сигурни ли сте, че искате да продължите?"
2155
 
2156
+ #: dashboard/settings/maintenance.php:30
2157
+ msgid "THIS ACTION CAN NOT BE UNDONE!"
 
2158
  msgstr ""
 
 
2159
 
2160
  #: dashboard/settings/maintenance.php:31
2161
+ #, fuzzy
2162
+ #| msgid "Delete stats older than 356 days (Optional)."
2163
+ msgid "Delete stats older than 356 days."
2164
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
2165
 
2166
  #: dashboard/settings/maintenance.php:32
2167
+ msgid "Delete leftover export files."
2168
  msgstr ""
2169
 
2170
  #: dashboard/settings/maintenance.php:33
2174
  msgstr ""
2175
 
2176
  #: dashboard/settings/maintenance.php:33
2177
+ #, fuzzy
2178
+ #| msgid ""
2179
+ #| "Additionally you can clean up old statistics. This will improve the speed "
2180
+ #| "of your site."
2181
  msgid ""
2182
+ "Additionally you can delete statistics and/or unused export files. This will "
2183
+ "improve the speed of your site."
2184
  msgstr ""
2185
+ "Също така можете да изчистите остарелите статистики. Това ще подобри "
2186
+ "скоростта на сайта Ви."
2187
 
2188
  #: dashboard/settings/maintenance.php:37
2189
  msgid "Re-evaluate Ads"
2197
  msgid "You are about to check all ads for errors."
2198
  msgstr "На път сте да проверите всички реклами за грешки."
2199
 
2200
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
2201
+ msgid "This might take a while and may slow down your site during this action!"
2202
+ msgstr ""
2203
+ "Това действие ще отнеме време и може да забави сайта ви по време на "
2204
+ "изпълнението му!"
2205
+
2206
  #: dashboard/settings/maintenance.php:40
2207
  msgid ""
2208
  "This will apply all evaluation rules to all ads to see if any error slipped "
2249
  msgstr ""
2250
 
2251
  #: dashboard/settings/maintenance.php:54
2252
+ #, fuzzy
2253
+ #| msgid "Track clicks and impressions."
2254
+ msgid "Disable timers for clicks and impressions."
2255
+ msgstr "Проследяване на кликове и импресии."
 
 
2256
 
2257
  #: dashboard/settings/maintenance.php:55
2258
  msgid "Temporarily disable encryption on the redirect url."
2274
  msgid "Error"
2275
  msgstr "Грешка"
2276
 
 
 
 
 
2277
  #: dashboard/settings/maintenance.php:64
2278
  msgid "Expires Soon"
2279
  msgstr "Изтича скоро"
2286
  msgid "Banners/assets Folder"
2287
  msgstr ""
2288
 
2289
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2290
  msgid "Exists and appears writable"
2291
  msgstr ""
2292
 
2293
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2294
  msgid "Not writable or does not exist"
2295
  msgstr ""
2296
 
2297
+ #: dashboard/settings/maintenance.php:76
2298
  msgid "Reports Folder"
2299
  msgstr ""
2300
 
2301
+ #: dashboard/settings/maintenance.php:85
2302
  msgid "Advert evaluation"
2303
  msgstr ""
2304
 
2305
+ #: dashboard/settings/maintenance.php:86
2306
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2307
  msgstr ""
2308
 
2309
+ #: dashboard/settings/maintenance.php:87
2310
+ #, fuzzy
2311
+ msgid "Clean Trackerdata"
2312
+ msgstr "Изчистване на Trackerdata при следващо стартиране:"
2313
+
2314
+ #: dashboard/settings/maintenance.php:88
2315
+ msgid "Not scheduled!"
2316
+ msgstr "Не е планирано!"
2317
+
2318
+ #: dashboard/settings/maintenance.php:91
2319
+ msgid "Background tasks"
2320
+ msgstr ""
2321
+
2322
+ #: dashboard/settings/maintenance.php:93
2323
+ msgid "Reset background tasks"
2324
  msgstr ""
2325
 
2326
+ #: dashboard/settings/maintenance.php:98
2327
  msgid "Internal Versions"
2328
  msgstr ""
2329
 
2330
+ #: dashboard/settings/maintenance.php:99
2331
  msgid ""
2332
  "Unless you experience database issues or a warning shows below, these "
2333
  "numbers are not really relevant for troubleshooting. Support may ask for "
2334
  "them to verify your database status."
2335
  msgstr ""
2336
 
2337
+ #: dashboard/settings/maintenance.php:102
2338
  msgid "AdRotate version"
2339
  msgstr ""
2340
 
2341
+ #: dashboard/settings/maintenance.php:103
2342
+ #: dashboard/settings/maintenance.php:105
2343
  msgid "Current:"
2344
  msgstr ""
2345
 
2346
+ #: dashboard/settings/maintenance.php:103
2347
+ #: dashboard/settings/maintenance.php:105
2348
  msgid "Should be:"
2349
  msgstr ""
2350
 
2351
+ #: dashboard/settings/maintenance.php:103
2352
+ #: dashboard/settings/maintenance.php:105
2353
  msgid "Previous:"
2354
  msgstr ""
2355
 
2356
+ #: dashboard/settings/maintenance.php:104
2357
  msgid "Database version"
2358
  msgstr ""
2359
 
2360
+ #: dashboard/settings/maintenance.php:108
2361
+ msgid "Manual upgrade"
2362
+ msgstr ""
2363
+
2364
+ #: dashboard/settings/maintenance.php:110
2365
  msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2366
  msgstr ""
2367
 
2368
+ #: dashboard/settings/maintenance.php:110
2369
  msgid "Make sure you have a database backup!"
2370
  msgstr ""
2371
 
2372
+ #: dashboard/settings/maintenance.php:110
2373
+ #, fuzzy
2374
+ #| msgid "Ad updated"
2375
+ msgid "Run updater"
2376
+ msgstr "Рекламата е обновена"
2377
 
2378
  #: dashboard/settings/misc.php:16
2379
  msgid "Miscellaneous"
2449
  "на AdRotate. Ако използвате PHP кода, трябва да го поставите в изключващ код "
2450
  "сами."
2451
 
 
 
 
 
2452
  #: dashboard/settings/notifications.php:19
2453
  msgid "Set up who gets notifications if ads need your attention."
2454
  msgstr "Изберете кой да получава известие, ако реклама се нуждае от внимание."
2586
  "separated. This field may not be empty!"
2587
  msgstr ""
2588
 
 
 
 
 
2589
  #: dashboard/settings/notifications.php:75
2590
  msgid ""
2591
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2641
  msgid "and get your API token"
2642
  msgstr ""
2643
 
 
 
 
 
2644
  #: dashboard/settings/roles.php:18
2645
  msgid "Who has access to what?"
2646
  msgstr "Кой до какво има достъп?"
2786
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
2787
  "(24 часа)."
2788
 
2789
+ #~ msgid "Empty database records removed"
2790
+ #~ msgstr "Празните записи в базата данни са премахнати"
 
2791
 
2792
+ #~ msgid "For one WordPress installation."
2793
+ #~ msgstr "За една инсталация на WordPress."
2794
+
2795
+ #~ msgid "For two WordPress installations."
2796
+ #~ msgstr "За две Wordpress инсталации."
2797
+
2798
+ #~ msgid " For up to five WordPress installations."
2799
+ #~ msgstr " За до 5 Wordpress инсталации."
2800
+
2801
+ #~ msgid "Location"
2802
+ #~ msgstr "Местоположение"
2803
+
2804
+ #~ msgid ""
2805
+ #~ "Disable timers for clicks and impressions and enable a alert window for "
2806
+ #~ "clicktracking."
2807
+ #~ msgstr ""
2808
+ #~ "Изключване на брояча за кликове и импресии и активиране на напомнящ "
2809
+ #~ "прозорец за проследяване на кликове."
2810
 
2811
  #~ msgid "Help AdRotate Grow"
2812
  #~ msgstr "Помогнете за развитието на AdRotate"
2972
  #~ msgid "Ad evaluation next run:"
2973
  #~ msgstr "Оценка на рекламата:"
2974
 
 
 
 
 
 
 
 
2975
  #~ msgid "Set up who gets notification emails."
2976
  #~ msgstr "Задайте кой да получава известия по email."
2977
 
3181
  #~ msgid "Ad created"
3182
  #~ msgstr "Рекламата е създадена"
3183
 
 
 
 
3184
  #~ msgid ""
3185
  #~ "The ad was saved but has an issue which might prevent it from working "
3186
  #~ "properly. Review the yellow marked ad."
3284
  #~ "Ако създадете реклама или група, която не може да се запише, използвайте "
3285
  #~ "този бутон, за да изтриете празните полета."
3286
 
 
 
 
 
 
 
 
3287
  #~ msgid ""
3288
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3289
  #~ "becomes unusable in any way or by any means in whichever way I will not "
3550
  #~ msgid "Enable stats"
3551
  #~ msgstr "Включване на статистиката"
3552
 
 
 
 
3553
  #~ msgid ""
3554
  #~ "Disabling this also disables click and impression limits on schedules."
3555
  #~ msgstr ""
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: 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,122 +14,124 @@ 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.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
 
128
- #: adrotate-output.php:575
129
  msgid "Oh no! Something went wrong!"
130
  msgstr "Παρουσιάστηκε κάποιο σφάλμα."
131
 
132
- #: adrotate-output.php:576
133
  msgid ""
134
  "WordPress was unable to verify the authenticity of the url you have clicked. "
135
  "Verify if the url used is valid or log in via your browser."
@@ -138,7 +140,7 @@ msgstr ""
138
  "που πατήσατε. Επιβεβαιώστε ότι η διεύθυνση είναι έγκυρη ή εισέλθετε μέσω του "
139
  "browser σας."
140
 
141
- #: adrotate-output.php:577
142
  msgid ""
143
  "If you have received the url you want to visit via email, you are being "
144
  "tricked!"
@@ -146,11 +148,11 @@ msgstr ""
146
  "Αν έχετε λάβει τη διεύθυνση που θέλετε να επισκεφτείτε μέσω email, σας "
147
  "ξεγέλασαν!"
148
 
149
- #: adrotate-output.php:578
150
  msgid "Contact support if the issue persists:"
151
  msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
152
 
153
- #: adrotate-output.php:593
154
  msgid ""
155
  "Error, Ad is not available at this time due to schedule/geolocation "
156
  "restrictions or does not exist!"
@@ -158,7 +160,7 @@ msgstr ""
158
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
159
  "χρονικών περιορισμών ή επειδή απλώς δεν υπάρχει!"
160
 
161
- #: adrotate-output.php:595
162
  msgid ""
163
  "Error, Ad is not available at this time due to schedule/geolocation "
164
  "restrictions!"
@@ -166,7 +168,7 @@ msgstr ""
166
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
167
  "χρονικών περιορισμών."
168
 
169
- #: adrotate-output.php:602 adrotate-output.php:604
170
  msgid ""
171
  "Either there are no banners, they are disabled or none qualified for this "
172
  "location!"
@@ -174,20 +176,20 @@ msgstr ""
174
  "Ή δεν υπάρχουν διαφημιστικά γραφικά ή είναι απενεργοποιημένα ή κανένα δεν "
175
  "πληρεί τις προϋποθέσεις της τοποθεσίας!"
176
 
177
- #: adrotate-output.php:610
178
  msgid "Error, no Ad ID set! Check your syntax!"
179
  msgstr ""
180
  "Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
181
 
182
- #: adrotate-output.php:616
183
  msgid "Error, no group ID set! Check your syntax!"
184
  msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
185
 
186
- #: adrotate-output.php:621
187
  msgid "Error, group does not exist! Check your syntax!"
188
  msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
189
 
190
- #: adrotate-output.php:627
191
  msgid ""
192
  "There was an error locating the database tables for AdRotate. Please "
193
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -196,231 +198,231 @@ msgstr ""
196
  "Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
197
  "προσθέτων!!"
198
 
199
- #: adrotate-output.php:627
200
  msgid "If this does not solve the issue please seek support at"
201
  msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
202
 
203
- #: adrotate-output.php:633
204
  msgid "An unknown error occured."
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,61 +468,100 @@ msgstr "Κωδ:"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
524
  #: dashboard/adrotatepro.php:20
525
  #, fuzzy
526
  msgid "Satisfy your advertisers"
@@ -571,15 +612,21 @@ msgid ""
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, "
@@ -588,11 +635,11 @@ msgid ""
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 "
@@ -600,11 +647,11 @@ msgid ""
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,145 +659,126 @@ msgid ""
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
 
703
- #: dashboard/info.php:24
704
  msgid "Currently"
705
  msgstr "Τρέχουσα Κατάσταση"
706
 
707
- #: dashboard/info.php:30
708
  msgid "Your setup"
709
  msgstr "Η εγκατάστασή σας"
710
 
711
- #: dashboard/info.php:31
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 "
753
- "plugins!"
754
  msgstr ""
755
 
756
  #: dashboard/publisher/adverts-disabled.php:15
@@ -765,7 +793,7 @@ 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
 
@@ -796,7 +824,7 @@ 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
801
  #, fuzzy
802
  msgid "Start / End"
@@ -807,32 +835,33 @@ msgstr ""
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"
814
- msgstr "Τίτλος"
 
 
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 "Εμφανίζονται"
822
 
823
- #: dashboard/publisher/adverts-disabled.php:39
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
831
  msgid "Clicks"
832
  msgstr "Clicks"
833
 
834
- #: dashboard/publisher/adverts-disabled.php:40
835
- #: dashboard/publisher/adverts-main.php:48
836
  #: dashboard/publisher/adverts-report.php:39
837
  #: dashboard/publisher/adverts-report.php:58
838
  #: dashboard/publisher/groups-report.php:40
@@ -840,54 +869,47 @@ msgstr "Clicks"
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,80 +917,95 @@ msgstr ""
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,41 +1013,41 @@ msgstr ""
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,72 +1055,72 @@ msgstr ""
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
1050
  msgid "Get more features with AdRotate Pro."
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
@@ -1091,227 +1128,218 @@ msgstr "Χρήση"
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,17 +1347,17 @@ msgstr ""
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,19 +1398,21 @@ msgid "For 7 days"
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"
@@ -1390,17 +1420,17 @@ msgstr ""
1390
 
1391
  #: dashboard/publisher/adverts-main.php:24
1392
  #, fuzzy
1393
- msgid "Export to XML"
1394
  msgstr "Επιλογές εξαγωγής"
1395
 
1396
- #: dashboard/publisher/adverts-main.php:45
1397
- #: dashboard/publisher/adverts-main.php:47
1398
  #: dashboard/publisher/groups-main.php:37
1399
  #: dashboard/publisher/groups-main.php:39
1400
  msgid "Today"
1401
  msgstr "Σήμερα"
1402
 
1403
- #: dashboard/publisher/adverts-main.php:102
1404
  msgid "No adverts created yet!"
1405
  msgstr ""
1406
 
@@ -1454,11 +1484,6 @@ msgstr "Νέα Ομάδα"
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 "Προεπιλογή - Εμφάνισε μία διαφήμιση την φορά"
@@ -1751,7 +1776,7 @@ msgstr ""
1751
  msgid "Choose adverts"
1752
  msgstr ""
1753
 
1754
- #: dashboard/publisher/groups-edit.php:335
1755
  msgid "Visible until"
1756
  msgstr "Ορατό μέχρι"
1757
 
@@ -1759,6 +1784,18 @@ msgstr "Ορατό μέχρι"
1759
  msgid "No adverts created!"
1760
  msgstr ""
1761
 
 
 
 
 
 
 
 
 
 
 
 
 
1762
  #: dashboard/publisher/groups-main.php:12
1763
  msgid "Manage Groups"
1764
  msgstr "Διαχείριση Ομάδων"
@@ -1780,8 +1817,7 @@ msgid "This action can not be undone!"
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,9 +1883,9 @@ msgid ""
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
 
@@ -1947,19 +1983,18 @@ msgstr "Φάκελος Διαφημιστικών Πλαισίων (Μπάνερ
1947
 
1948
  #: dashboard/settings/general.php:50
1949
  #, fuzzy
1950
- msgid "Set a location where your banner images will be stored."
1951
  msgstr ""
1952
  "Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
1953
  "(Προεπιλογή: /wp-content/banners/)."
1954
 
1955
  #: dashboard/settings/general.php:53
1956
- #, fuzzy
1957
- msgid "Location"
1958
- msgstr "Γεωγραφική Τοποθεσία"
1959
 
1960
  #: dashboard/settings/general.php:55
1961
  #, fuzzy
1962
- msgid "(Default: wp-content/banners/)."
1963
  msgstr ""
1964
  "Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
1965
  "(Προεπιλογή: /wp-content/banners/)."
@@ -2107,10 +2142,6 @@ msgstr ""
2107
  msgid "Password/License Key"
2108
  msgstr ""
2109
 
2110
- #: dashboard/settings/maintenance.php:16
2111
- msgid "Maintenance"
2112
- msgstr "Συντήρηση"
2113
-
2114
  #: dashboard/settings/maintenance.php:17
2115
  msgid ""
2116
  "Use these functions when you notice your database is slow, unresponsive and "
@@ -2150,14 +2181,24 @@ msgstr ""
2150
  "τις πολλές αλλαγές που έχετε κάνει στη βάση. Μπορεί να είναι από τίποτε "
2151
  "μέχρι εκατοντάδες kilobytes δεδομένων."
2152
 
2153
- #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
 
 
 
 
 
 
2154
  msgid "Clean-up Database"
2155
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
2156
 
2157
  #: dashboard/settings/maintenance.php:30
 
 
 
 
2158
  msgid ""
2159
- "You are about to clean up your database. This may delete expired schedules "
2160
- "and older statistics."
2161
  msgstr ""
2162
  "Πρόκειται να καθαρίσετε τη βάση δεδομένων. Αυτή η ενέργεια θα διαγράψει "
2163
  "ληγμένα προγράμαμτα και παλαιότερες στατιστικές."
@@ -2166,17 +2207,18 @@ msgstr ""
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
 
2174
  #: dashboard/settings/maintenance.php:31
2175
- msgid "Delete stats older than 356 days (Optional)."
 
 
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
@@ -2186,10 +2228,16 @@ msgid ""
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
@@ -2205,6 +2253,10 @@ msgstr ""
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 "
@@ -2250,10 +2302,9 @@ 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."
@@ -2276,10 +2327,6 @@ msgstr "Φυσιολογική"
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 "Λήγει Σύντομα"
@@ -2292,74 +2339,95 @@ msgstr ""
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"
@@ -2437,10 +2505,6 @@ msgstr ""
2437
  "μονάδες AdRotate. Αν χρησιμοποιείτε κάποιο PHP Snippet πρέπει να περιλάβετε "
2438
  "μόνοι σας τον κώδικά σας στον κώδικα εξαίρεσης. "
2439
 
2440
- #: dashboard/settings/notifications.php:18
2441
- msgid "Notifications"
2442
- msgstr "Ειδοποιήσεις"
2443
-
2444
  #: dashboard/settings/notifications.php:19
2445
  msgid "Set up who gets notifications if ads need your attention."
2446
  msgstr ""
@@ -2574,10 +2638,6 @@ msgid ""
2574
  "separated. This field may not be empty!"
2575
  msgstr ""
2576
 
2577
- #: dashboard/settings/notifications.php:72
2578
- msgid "Advertisers"
2579
- msgstr "Διαφημιζόμενοι"
2580
-
2581
  #: dashboard/settings/notifications.php:75
2582
  msgid ""
2583
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
@@ -2633,10 +2693,6 @@ msgstr ""
2633
  msgid "and get your API token"
2634
  msgstr ""
2635
 
2636
- #: dashboard/settings/roles.php:17
2637
- msgid "Roles"
2638
- msgstr ""
2639
-
2640
  #: dashboard/settings/roles.php:18
2641
  msgid "Who has access to what?"
2642
  msgstr ""
@@ -2789,15 +2845,18 @@ 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"
@@ -2922,12 +2981,6 @@ msgstr ""
2922
  #~ msgid "Ad evaluation next run:"
2923
  #~ msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
2924
 
2925
- #~ msgid "Not scheduled!"
2926
- #~ msgstr "Δεν έχει προγραμματιστεί!"
2927
-
2928
- #~ msgid "Clean Trackerdata next run:"
2929
- #~ msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
2930
-
2931
  #~ msgid ""
2932
  #~ "A comma separated list of email addresses. Maximum of 5 addresses. Keep "
2933
  #~ "this list to a minimum!"
@@ -3100,9 +3153,6 @@ msgstr ""
3100
  #~ msgid "Ad created"
3101
  #~ msgstr "Η διαφήμιση δημιουργήθηκε"
3102
 
3103
- #~ msgid "Ad updated"
3104
- #~ msgstr "Η διαφήμιση ανανεώθηκε"
3105
-
3106
  #~ msgid ""
3107
  #~ "The ad was saved but has an issue which might prevent it from working "
3108
  #~ "properly. Review the yellow marked ad."
@@ -3196,13 +3246,6 @@ msgstr ""
3196
  #~ "Αν κάνατε μια διαφήμιση ή μια ομάδα που δεν αποθηκεύεται, χρησιμοποιείστε "
3197
  #~ "αυτό το κουμπί για να σβήσετε αυτές τις κενές εγγραφές. "
3198
 
3199
- #~ msgid ""
3200
- #~ "Additionally you can clean up old statistics. This will improve the speed "
3201
- #~ "of your site."
3202
- #~ msgstr ""
3203
- #~ "Επιπλέον μπορείτε να διαγράψετε παλιά στατιστικά. Αυτό θα βελτιώσει την "
3204
- #~ "ταχύτητα της ιστοσελίδας σας."
3205
-
3206
  #~ msgid ""
3207
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3208
  #~ "becomes unusable in any way or by any means in whichever way I will not "
@@ -3387,9 +3430,6 @@ msgstr ""
3387
  #~ msgid "Enable stats"
3388
  #~ msgstr "Στατιστικά"
3389
 
3390
- #~ msgid "Track clicks and impressions."
3391
- #~ msgstr "Παρακολουθήστε τα κλικ (CPC) και τις εμφανίσεις (CPM)"
3392
-
3393
  #, fuzzy
3394
  #~ msgid ""
3395
  #~ "Disabling this also disables click and impression limits on schedules."
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-19 15:30+0800\n"
6
+ "PO-Revision-Date: 2017-06-19 15:30+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 2.0.1\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: adrotate-functions.php:722
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
+ #: adrotate-functions.php:725
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
+ #: adrotate-functions.php:768
30
  msgid "Ad saved"
31
  msgstr ""
32
 
33
+ #: adrotate-functions.php:772
34
  msgid "Group saved"
35
  msgstr ""
36
 
37
+ #: adrotate-functions.php:776
38
  msgid "Ad(s) deleted"
39
  msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
40
 
41
+ #: adrotate-functions.php:780
42
  msgid "Group deleted"
43
  msgstr "Η Ομάδα διαγράφηκε"
44
 
45
+ #: adrotate-functions.php:784
46
  msgid "Ad(s) statistics reset"
47
  msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
48
 
49
+ #: adrotate-functions.php:788
50
  msgid "Ad(s) renewed"
51
  msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
52
 
53
+ #: adrotate-functions.php:792
54
  msgid "Ad(s) deactivated"
55
  msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
56
 
57
+ #: adrotate-functions.php:796
58
  msgid "Ad(s) activated"
59
  msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
60
 
61
+ #: adrotate-functions.php:800
62
  msgid "Group including it's Ads deleted"
63
  msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
64
 
65
+ #: adrotate-functions.php:804
66
  #, fuzzy
67
  msgid "Export created"
68
  msgstr "Επιλογές εξαγωγής"
69
 
70
+ #: adrotate-functions.php:809
71
  msgid "Settings saved"
72
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
73
 
74
+ #: adrotate-functions.php:813
75
  msgid "Database optimized"
76
  msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
77
 
78
+ #: adrotate-functions.php:817
79
  msgid "Database repaired"
80
  msgstr "Η βάση δεδομένων επιδιορθώθηκε"
81
 
82
+ #: adrotate-functions.php:821
83
  msgid "Ads evaluated and statuses have been corrected where required"
84
  msgstr ""
85
  "Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
86
  "χρειάστηκε"
87
 
88
+ #: adrotate-functions.php:825
89
+ #, fuzzy
90
+ #| msgid "Clean-up Database"
91
+ msgid "Cleanup complete"
92
+ msgstr "Εκκαθάριση Βάσης Δεδομένων"
93
 
94
+ #: adrotate-functions.php:830
95
  msgid "Action prohibited"
96
  msgstr "Η ενέργεια απαγορεύεται"
97
 
98
+ #: adrotate-functions.php:834
99
  msgid ""
100
  "The ad was saved but has an issue which might prevent it from working "
101
  "properly. Review the colored ad."
102
  msgstr ""
103
 
104
+ #: adrotate-functions.php:838
105
  msgid "No data found in selected time period"
106
  msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
107
 
108
+ #: adrotate-functions.php:842
109
  msgid "Database can only be optimized or cleaned once every hour"
110
  msgstr ""
111
  "Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
112
  "ώρα"
113
 
114
+ #: adrotate-functions.php:846
115
  msgid "Form can not be (partially) empty!"
116
  msgstr ""
117
 
118
+ #: adrotate-functions.php:850
119
  msgid "No ads found."
120
  msgstr ""
121
 
122
+ #: adrotate-functions.php:854
123
  msgid "Unexpected error"
124
  msgstr ""
125
 
126
+ #: adrotate-manage-publisher.php:665
127
  msgid "AdRotate Advertiser"
128
  msgstr ""
129
 
130
+ #: adrotate-output.php:551
131
  msgid "Oh no! Something went wrong!"
132
  msgstr "Παρουσιάστηκε κάποιο σφάλμα."
133
 
134
+ #: adrotate-output.php:552
135
  msgid ""
136
  "WordPress was unable to verify the authenticity of the url you have clicked. "
137
  "Verify if the url used is valid or log in via your browser."
140
  "που πατήσατε. Επιβεβαιώστε ότι η διεύθυνση είναι έγκυρη ή εισέλθετε μέσω του "
141
  "browser σας."
142
 
143
+ #: adrotate-output.php:553
144
  msgid ""
145
  "If you have received the url you want to visit via email, you are being "
146
  "tricked!"
148
  "Αν έχετε λάβει τη διεύθυνση που θέλετε να επισκεφτείτε μέσω email, σας "
149
  "ξεγέλασαν!"
150
 
151
+ #: adrotate-output.php:554
152
  msgid "Contact support if the issue persists:"
153
  msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
154
 
155
+ #: adrotate-output.php:569
156
  msgid ""
157
  "Error, Ad is not available at this time due to schedule/geolocation "
158
  "restrictions or does not exist!"
160
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
161
  "χρονικών περιορισμών ή επειδή απλώς δεν υπάρχει!"
162
 
163
+ #: adrotate-output.php:571
164
  msgid ""
165
  "Error, Ad is not available at this time due to schedule/geolocation "
166
  "restrictions!"
168
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
169
  "χρονικών περιορισμών."
170
 
171
+ #: adrotate-output.php:578 adrotate-output.php:580
172
  msgid ""
173
  "Either there are no banners, they are disabled or none qualified for this "
174
  "location!"
176
  "Ή δεν υπάρχουν διαφημιστικά γραφικά ή είναι απενεργοποιημένα ή κανένα δεν "
177
  "πληρεί τις προϋποθέσεις της τοποθεσίας!"
178
 
179
+ #: adrotate-output.php:586
180
  msgid "Error, no Ad ID set! Check your syntax!"
181
  msgstr ""
182
  "Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
183
 
184
+ #: adrotate-output.php:592
185
  msgid "Error, no group ID set! Check your syntax!"
186
  msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
187
 
188
+ #: adrotate-output.php:597
189
  msgid "Error, group does not exist! Check your syntax!"
190
  msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
191
 
192
+ #: adrotate-output.php:603
193
  msgid ""
194
  "There was an error locating the database tables for AdRotate. Please "
195
  "deactivate and re-activate AdRotate from the plugin page!!"
198
  "Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
199
  "προσθέτων!!"
200
 
201
+ #: adrotate-output.php:603
202
  msgid "If this does not solve the issue please seek support at"
203
  msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
204
 
205
+ #: adrotate-output.php:609
206
  msgid "An unknown error occured."
207
  msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
208
 
209
+ #: adrotate-output.php:628 adrotate-output.php:631 adrotate-output.php:635
210
  msgid "Check adverts"
211
  msgstr ""
212
 
213
+ #: adrotate-output.php:640
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:643
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:648
226
  msgid "Your AdRotate Banner folder is not writable or does not exist."
227
  msgstr ""
228
 
229
+ #: adrotate-output.php:688 dashboard/adrotatepro.php:87
230
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
231
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
232
+ #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
233
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:97 dashboard/info.php:98
234
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:104
235
+ #: dashboard/info.php:105 dashboard/info.php:106 dashboard/info.php:107
236
  #: dashboard/settings/geotargeting.php:35
237
  #, fuzzy
238
  msgid "Buy now"
239
  msgstr "Λάβετε μέτρα τώρα"
240
 
241
+ #: adrotate-output.php:689
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:689
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:689
254
  msgid "Thank you for your purchase!"
255
  msgstr ""
256
 
257
+ #: adrotate-output.php:752
258
  msgid ""
259
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
260
  "menu. If you need help getting started take a look at the"
261
  msgstr ""
262
 
263
+ #: adrotate-output.php:752
264
  msgid "manuals"
265
  msgstr "εγχειρίδια"
266
 
267
+ #: adrotate-output.php:752 adrotate-output.php:822
268
  msgid "and"
269
  msgstr ""
270
 
271
+ #: adrotate-output.php:752
272
  msgid "forums"
273
  msgstr ""
274
 
275
+ #: adrotate-output.php:785
276
  #, fuzzy
277
  msgid "Useful Links"
278
  msgstr "Χρήσιμοι σύνδεσμοι"
279
 
280
+ #: adrotate-output.php:786
281
  msgid "Useful links to learn more about AdRotate"
282
  msgstr ""
283
 
284
+ #: adrotate-output.php:788
285
  msgid "AdRotate website"
286
  msgstr ""
287
 
288
+ #: adrotate-output.php:789
289
  #, fuzzy
290
  msgid "Getting Started With AdRotate"
291
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
292
 
293
+ #: adrotate-output.php:790
294
  #, fuzzy
295
  msgid "AdRotate manuals"
296
  msgstr "Πληροφορίες του AdRotate"
297
 
298
+ #: adrotate-output.php:791
299
  #, fuzzy
300
  msgid "AdRotate Support Forum"
301
  msgstr "Κατάστημα του AdRotate"
302
 
303
+ #: adrotate-output.php:814 dashboard/info.php:49
304
  msgid "Support AdRotate"
305
  msgstr "Υποστηρίξτε το AdRotate"
306
 
307
+ #: adrotate-output.php:815
308
  msgid "Check out my website"
309
  msgstr ""
310
 
311
+ #: adrotate-output.php:822
312
  msgid ""
313
  "Many users only think to review AdRotate when something goes wrong while "
314
  "thousands of people happily use AdRotate."
315
  msgstr ""
316
 
317
+ #: adrotate-output.php:822
318
  msgid "If you find AdRotate useful please leave your"
319
  msgstr ""
320
 
321
+ #: adrotate-output.php:822
322
  msgid "rating"
323
  msgstr ""
324
 
325
+ #: adrotate-output.php:822
326
  #, fuzzy
327
  msgid "review"
328
  msgstr "Αξιολογήστε και σχολιάστε"
329
 
330
+ #: adrotate-output.php:822
331
  msgid "on WordPress.org to help AdRotate grow in a positive way"
332
  msgstr ""
333
 
334
+ #: adrotate-output.php:848 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:848
340
  #, fuzzy
341
  msgid "More information..."
342
  msgstr "Περισσότερες πληροφορίες"
343
 
344
+ #: adrotate-output.php:849
345
  msgid "This feature is available in AdRotate Pro"
346
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
347
 
348
+ #: adrotate-output.php:849
349
  #, fuzzy
350
  msgid "Learn more"
351
  msgstr "Μάθετε περισσότερα σχετικά"
352
 
353
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:220
354
+ #: dashboard/publisher/adverts-edit.php:241
355
  msgid "January"
356
  msgstr "Ιανουάριος"
357
 
358
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:221
359
+ #: dashboard/publisher/adverts-edit.php:242
360
  msgid "February"
361
  msgstr "Φεβρουάριος"
362
 
363
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:222
364
+ #: dashboard/publisher/adverts-edit.php:243
365
  msgid "March"
366
  msgstr "Μάρτιος"
367
 
368
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:223
369
+ #: dashboard/publisher/adverts-edit.php:244
370
  msgid "April"
371
  msgstr "Απρίλιος"
372
 
373
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:224
374
+ #: dashboard/publisher/adverts-edit.php:245
375
  msgid "May"
376
  msgstr "Μάιος"
377
 
378
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:225
379
+ #: dashboard/publisher/adverts-edit.php:246
380
  msgid "June"
381
  msgstr "Ιούνιος"
382
 
383
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:226
384
+ #: dashboard/publisher/adverts-edit.php:247
385
  msgid "July"
386
  msgstr "Ιούλιος"
387
 
388
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:227
389
+ #: dashboard/publisher/adverts-edit.php:248
390
  msgid "August"
391
  msgstr "Αύγουστος"
392
 
393
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:228
394
+ #: dashboard/publisher/adverts-edit.php:249
395
  msgid "September"
396
  msgstr "Σεπτέμβριος"
397
 
398
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:229
399
+ #: dashboard/publisher/adverts-edit.php:250
400
  msgid "October"
401
  msgstr "Οκτώβριος"
402
 
403
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:230
404
+ #: dashboard/publisher/adverts-edit.php:251
405
  msgid "November"
406
  msgstr "Νοέμβριος"
407
 
408
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:231
409
+ #: dashboard/publisher/adverts-edit.php:252
410
  msgid "December"
411
  msgstr "Δεκέμβριος"
412
 
413
+ #: adrotate-statistics.php:143
414
  msgid "Previous"
415
  msgstr "Προηγούμενο"
416
 
417
+ #: adrotate-statistics.php:145
418
  msgid "This month"
419
  msgstr "Αυτό το μήνα"
420
 
421
+ #: adrotate-statistics.php:146
422
  msgid "Next"
423
  msgstr "Επόμενο"
424
 
425
+ #: adrotate-statistics.php:232
426
  msgid "No data to show!"
427
  msgstr "Δεν υπάρχουν δεδομένα."
428
 
468
  msgid "Fill in the ID of the type you want to display!"
469
  msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
470
 
471
+ #: adrotate.php:103
472
  msgid "General Info"
473
  msgstr "Γενικές Πληροφορίες"
474
 
475
+ #: adrotate.php:104
476
  msgid "AdRotate Pro"
477
  msgstr "AdRotate Pro"
478
 
479
+ #: adrotate.php:105 dashboard/info.php:40
480
+ #: dashboard/publisher/adverts-edit.php:458
481
  #: dashboard/publisher/groups-main.php:34
482
  msgid "Adverts"
483
  msgstr "Διαφημίσεις"
484
 
485
+ #: adrotate.php:106 dashboard/info.php:44
486
  msgid "Groups"
487
  msgstr "Ομάδες"
488
 
489
+ #: adrotate.php:107
490
  msgid "Settings"
491
  msgstr "Ρυθμίσεις"
492
 
493
+ #: adrotate.php:125
494
  msgid "AdRotate Info"
495
  msgstr "Πληροφορίες του AdRotate"
496
 
497
+ #: adrotate.php:143
498
  #, fuzzy
499
  msgid "AdRotate Professional"
500
  msgstr "AdRotate Pro"
501
 
502
+ #: adrotate.php:183
503
  msgid "Advert Management"
504
  msgstr ""
505
 
506
+ #: adrotate.php:241 adrotate.php:308
507
  msgid "Manage"
508
  msgstr "Διαχείριση"
509
 
510
+ #: adrotate.php:242 adrotate.php:309
511
  msgid "Add New"
512
  msgstr "Προσθήκη Νέας"
513
 
514
+ #: adrotate.php:302
515
  msgid "Group Management"
516
  msgstr "Διαχείριση Ομάδας"
517
 
518
+ #: adrotate.php:311
519
  msgid "Report"
520
  msgstr "Αναφορά"
521
 
522
+ #: adrotate.php:356
523
  msgid "AdRotate Settings"
524
  msgstr "Ρυθμίσεις AdRotate"
525
 
526
+ #: adrotate.php:361
527
+ #, fuzzy
528
+ #| msgid "General Info"
529
+ msgid "General"
530
+ msgstr "Γενικές Πληροφορίες"
531
+
532
+ #: adrotate.php:362 dashboard/settings/notifications.php:18
533
+ msgid "Notifications"
534
+ msgstr "Ειδοποιήσεις"
535
+
536
+ #: adrotate.php:363 dashboard/publisher/adverts-disabled.php:69
537
+ #: dashboard/publisher/adverts-error.php:63
538
+ #: dashboard/publisher/adverts-main.php:81
539
+ #: dashboard/publisher/groups-main.php:70
540
+ msgid "Stats"
541
+ msgstr "Στατιστικά"
542
+
543
+ #: adrotate.php:364 dashboard/publisher/adverts-edit.php:359
544
+ #: dashboard/publisher/groups-edit.php:180
545
+ #: dashboard/settings/advertisers.php:38
546
+ msgid "Geo Targeting"
547
+ msgstr "Γεωγραφική Στόχευση"
548
+
549
+ #: adrotate.php:365 dashboard/settings/notifications.php:72
550
+ msgid "Advertisers"
551
+ msgstr "Διαφημιζόμενοι"
552
+
553
+ #: adrotate.php:366 dashboard/settings/roles.php:17
554
+ msgid "Roles"
555
+ msgstr ""
556
+
557
+ #: adrotate.php:367
558
+ msgid "Misc"
559
+ msgstr ""
560
+
561
+ #: adrotate.php:368 dashboard/settings/maintenance.php:16
562
+ msgid "Maintenance"
563
+ msgstr "Συντήρηση"
564
+
565
  #: dashboard/adrotatepro.php:20
566
  #, fuzzy
567
  msgid "Satisfy your advertisers"
612
  "forum. Get a solution (usually) within one business day."
613
  msgstr ""
614
 
615
+ #: dashboard/adrotatepro.php:48
616
  msgid "AdRotate is brought to you by"
617
  msgstr "Το AdRotate έρχεται από την "
618
 
619
+ #: dashboard/adrotatepro.php:51
620
+ msgid ""
621
+ "I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner "
622
+ "to find out more about me and what I am doing!"
623
+ msgstr ""
624
+
625
+ #: dashboard/adrotatepro.php:62
626
  msgid "Schedule all campaigns with ease"
627
  msgstr ""
628
 
629
+ #: dashboard/adrotatepro.php:65
630
  msgid ""
631
  "Schedule your adverts and set up advertising campaigns based on dates you or "
632
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
635
  "schedules for adverts."
636
  msgstr ""
637
 
638
+ #: dashboard/adrotatepro.php:69
639
  msgid "Avoid adblockers"
640
  msgstr ""
641
 
642
+ #: dashboard/adrotatepro.php:72
643
  msgid ""
644
  "Try and avoid adblockers so your adverts get the exposure you want them to "
645
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
647
  "adverts smartly so these features reach their full potential!"
648
  msgstr ""
649
 
650
+ #: dashboard/adrotatepro.php:76
651
  msgid "Stay up-to-date with notifications"
652
  msgstr ""
653
 
654
+ #: dashboard/adrotatepro.php:79
655
  msgid ""
656
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
657
  "adverts expire or need your attention. Additionally, send push notifications "
659
  "or when advertisers create new adverts. Never miss an expiration date again."
660
  msgstr ""
661
 
662
+ #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
663
+ #: dashboard/info.php:93
664
  #, fuzzy
665
  msgid "Buy AdRotate Professional"
666
  msgstr "AdRotate Pro"
667
 
668
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
669
  msgid "Single License"
670
  msgstr ""
671
 
672
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
673
+ msgid "One WordPress installation."
674
  msgstr ""
675
 
676
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
677
+ #: dashboard/info.php:98 dashboard/info.php:105
678
  msgid "Duo License"
679
  msgstr ""
680
 
681
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:98
682
+ msgid "Two WordPress installations."
683
  msgstr ""
684
 
685
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
686
+ #: dashboard/info.php:99 dashboard/info.php:106
687
  msgid "Multi License"
688
  msgstr ""
689
 
690
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:99
691
+ msgid "Up to five WordPress installations."
692
  msgstr ""
693
 
694
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
695
+ #: dashboard/info.php:100 dashboard/info.php:107
696
  #, fuzzy
697
  msgid "Developer License"
698
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
699
 
700
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:100
701
  msgid "Unlimited WordPress installations and/or networks."
702
  msgstr ""
703
 
704
+ #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
705
+ #: dashboard/info.php:101 dashboard/info.php:109
706
  msgid "Compare licenses"
707
  msgstr ""
708
 
709
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
710
  msgid "Not sure which license is for you? Compare them..."
711
  msgstr ""
712
 
713
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
714
  msgid "All Licenses"
715
  msgstr ""
716
 
717
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
718
  msgid "Lifetime License"
719
  msgstr ""
720
 
721
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
722
  msgid "Single installation."
723
  msgstr ""
724
 
725
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:105
726
  msgid "Up to 2 installations."
727
  msgstr ""
728
 
729
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:106
730
  msgid "Up to 10 installations."
731
  msgstr ""
732
 
733
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:107
734
  msgid "Up to 25 installations or multisite networks."
735
  msgstr ""
736
 
737
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:108
738
  msgid ""
739
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
740
  msgstr ""
741
 
742
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
743
  msgid "Not sure which license is for you?"
744
  msgstr ""
745
 
746
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
747
  msgid "Compare Licenses"
748
  msgstr ""
749
 
750
+ #: dashboard/info.php:27
751
  msgid "Currently"
752
  msgstr "Τρέχουσα Κατάσταση"
753
 
754
+ #: dashboard/info.php:33
755
  msgid "Your setup"
756
  msgstr "Η εγκατάστασή σας"
757
 
758
+ #: dashboard/info.php:34
759
  msgid "Adverts that need you"
760
  msgstr "Διαφημίσεις που χρειάζονται την προσοχή σας"
761
 
762
+ #: dashboard/info.php:41
763
  msgid "(Almost) Expired"
764
  msgstr "(Σχεδόν) Έληξαν"
765
 
766
+ #: dashboard/info.php:45
767
  msgid "Have errors"
768
  msgstr "Έχουν σφάλματα"
769
 
770
+ #: dashboard/info.php:50
771
  msgid ""
772
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
773
  "for updates about me and my plugins. Thank you!"
774
  msgstr ""
775
 
776
+ #: dashboard/info.php:74
777
+ msgid "Arnan de Gans News & Updates"
 
 
 
 
 
 
 
 
778
  msgstr ""
779
 
780
+ #: dashboard/info.php:114
781
+ msgid "Join the Media.net advertising network"
 
 
 
 
 
 
 
 
 
 
 
782
  msgstr ""
783
 
784
  #: dashboard/publisher/adverts-disabled.php:15
793
  msgstr "Μαζικές Ενέργειες"
794
 
795
  #: dashboard/publisher/adverts-disabled.php:21
796
+ #: dashboard/publisher/adverts-edit.php:176
797
  msgid "Activate"
798
  msgstr "Ενεργοποίηση"
799
 
824
  msgstr "Κωδ."
825
 
826
  #: dashboard/publisher/adverts-disabled.php:36
827
+ #: dashboard/publisher/adverts-error.php:41
828
  #: dashboard/publisher/adverts-main.php:40
829
  #, fuzzy
830
  msgid "Start / End"
835
  "πρωί."
836
 
837
  #: dashboard/publisher/adverts-disabled.php:37
838
+ #: dashboard/publisher/adverts-error.php:40
 
839
  #: dashboard/publisher/adverts-main.php:41
840
+ #: dashboard/publisher/groups-edit.php:51
841
+ #: dashboard/publisher/groups-main.php:33
842
+ msgid "Name"
843
+ msgstr "Όνομα"
844
 
845
+ #: dashboard/publisher/adverts-disabled.php:39
846
+ #: dashboard/publisher/adverts-main.php:43
847
+ #: dashboard/publisher/groups-edit.php:333
848
  #: dashboard/publisher/groups-main.php:36
849
  msgid "Shown"
850
  msgstr "Εμφανίζονται"
851
 
852
+ #: dashboard/publisher/adverts-disabled.php:40
853
+ #: dashboard/publisher/adverts-main.php:45
854
  #: dashboard/publisher/adverts-report.php:36
855
  #: dashboard/publisher/adverts-report.php:57
856
+ #: dashboard/publisher/groups-edit.php:334
857
  #: dashboard/publisher/groups-main.php:38
858
  #: dashboard/publisher/groups-report.php:37
859
  #: dashboard/publisher/groups-report.php:58
860
  msgid "Clicks"
861
  msgstr "Clicks"
862
 
863
+ #: dashboard/publisher/adverts-disabled.php:41
864
+ #: dashboard/publisher/adverts-main.php:47
865
  #: dashboard/publisher/adverts-report.php:39
866
  #: dashboard/publisher/adverts-report.php:58
867
  #: dashboard/publisher/groups-report.php:40
869
  msgid "CTR"
870
  msgstr "CTR"
871
 
872
+ #: dashboard/publisher/adverts-disabled.php:69
873
+ #: dashboard/publisher/adverts-error.php:63
874
+ #: dashboard/publisher/adverts-main.php:81
875
  #: dashboard/publisher/groups-main.php:70
876
  msgid "Edit"
877
  msgstr "Επεξεργασία"
878
 
879
+ #: dashboard/publisher/adverts-disabled.php:69
880
+ #: dashboard/publisher/adverts-error.php:63
881
+ #: dashboard/publisher/adverts-main.php:81
 
 
 
 
 
 
 
882
  #, fuzzy
883
  msgid "Groups:"
884
  msgstr "Ομάδες"
885
 
886
+ #: dashboard/publisher/adverts-edit.php:48
887
  msgid "The AdCode cannot be empty!"
888
  msgstr "Ο AdCode δεν μπορεί να είναι κενός!"
889
 
890
+ #: dashboard/publisher/adverts-edit.php:51
891
  msgid ""
892
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
893
  "use!"
894
  msgstr ""
895
 
896
+ #: dashboard/publisher/adverts-edit.php:54
897
  msgid ""
898
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
899
  "use!"
900
  msgstr ""
901
 
902
+ #: dashboard/publisher/adverts-edit.php:57
903
  msgid ""
904
  "There is a problem saving the image. Please reset your image and re-save the "
905
  "ad!"
906
  msgstr ""
907
 
908
+ #: dashboard/publisher/adverts-edit.php:60
909
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
910
  msgstr ""
911
 
912
+ #: dashboard/publisher/adverts-edit.php:65
913
  msgid ""
914
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
915
  "the ad!"
917
  "Το AdRotate δεν μπορεί να βρει κάποιο σφάλμα, αλλά η διαφήμιση είναι "
918
  "σημειωμένη σαν λανθασμένη. Προσπαθήστε να αποθηκεύσετε πάλι τη διαφήμιση!"
919
 
920
+ #: dashboard/publisher/adverts-edit.php:68
921
  msgid "This ad is expired and currently not shown on your website!"
922
  msgstr ""
923
  "Αυτή η διαφήμιση έχει λήξει και για την ώρα δεν εμφανίζεται στην ιστοσελίδα "
924
  "σας!"
925
 
926
+ #: dashboard/publisher/adverts-edit.php:71
927
  msgid "The ad will expire in less than 2 days!"
928
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 2 ημέρες!"
929
 
930
+ #: dashboard/publisher/adverts-edit.php:74
931
  msgid "This ad will expire in less than 7 days!"
932
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 7 ημέρες!"
933
 
934
+ #: dashboard/publisher/adverts-edit.php:77
935
  msgid "This ad has been disabled and does not rotate on your site!"
936
  msgstr ""
937
  "Η διαφήμιση έχει απενεργοποιηθεί και δεν προβάλεται στην ιστοσελίδα σας!"
938
 
939
+ #: dashboard/publisher/adverts-edit.php:81
940
+ msgid ""
941
+ "This advert uses the obsolete Responsive feature. Please use the more "
942
+ "reliable Mobile feature! Saving the advert will disable the responsive "
943
+ "option silently."
944
+ msgstr ""
945
+
946
+ #: dashboard/publisher/adverts-edit.php:106
947
  msgid "New Advert"
948
  msgstr "Νέα Διαφήμιση"
949
 
950
+ #: dashboard/publisher/adverts-edit.php:108
951
  msgid "Edit Advert"
952
  msgstr "Επεξεργασία Διαφήμισης"
953
 
954
+ #: dashboard/publisher/adverts-edit.php:114
955
+ msgid "Title"
956
+ msgstr "Τίτλος"
957
+
958
+ #: dashboard/publisher/adverts-edit.php:120
959
  msgid "AdCode"
960
  msgstr ""
961
 
962
+ #: dashboard/publisher/adverts-edit.php:125
963
  msgid "Basic Examples:"
964
  msgstr "Βασικά παραδείγματα:"
965
 
966
+ #: dashboard/publisher/adverts-edit.php:129
967
+ msgid "Get better adverts from Media.net"
968
+ msgstr ""
969
+
970
+ #: dashboard/publisher/adverts-edit.php:134
971
  msgid "Useful tags"
972
  msgstr ""
973
 
974
+ #: dashboard/publisher/adverts-edit.php:136
975
  msgid "Insert the advert ID Number."
976
  msgstr ""
977
 
978
+ #: dashboard/publisher/adverts-edit.php:136
979
  msgid "Required when selecting a asset below."
980
  msgstr ""
981
 
982
+ #: dashboard/publisher/adverts-edit.php:136
983
  msgid "Insert the advert name."
984
  msgstr ""
985
 
986
+ #: dashboard/publisher/adverts-edit.php:136
987
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
988
  msgstr ""
989
 
990
+ #: dashboard/publisher/adverts-edit.php:136
991
  msgid "Add inside the <a> tag to open advert in a new window."
992
  msgstr ""
993
 
994
+ #: dashboard/publisher/adverts-edit.php:136
995
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
996
  msgstr ""
997
 
998
+ #: dashboard/publisher/adverts-edit.php:136
999
  msgid ""
1000
  "Place the cursor in your AdCode where you want to add any of these tags and "
1001
  "click to add it."
1002
  msgstr ""
1003
 
1004
+ #: dashboard/publisher/adverts-edit.php:141
1005
  msgid "Preview"
1006
  msgstr "Προεπισκόπηση"
1007
 
1008
+ #: dashboard/publisher/adverts-edit.php:144
1009
  msgid ""
1010
  "Note: While this preview is an accurate one, it might look different then it "
1011
  "does on the website."
1013
  "Σημείωση: Όσο αυτή η προεπισκόπηση εκτελείται, μπορεί να φαίνεται "
1014
  "διαφορετική από ό, τι στην ιστοσελίδα."
1015
 
1016
+ #: dashboard/publisher/adverts-edit.php:145
1017
  msgid ""
1018
  "This is because of CSS differences. Your themes CSS file is not active here!"
1019
  msgstr ""
1020
  "Αυτό είναι λόγω των διαφορών CSS. Το αρχείο θεμάτων CSS δεν είναι ενεργό εδώ!"
1021
 
1022
+ #: dashboard/publisher/adverts-edit.php:150
1023
  msgid "Banner asset"
1024
  msgstr ""
1025
 
1026
+ #: dashboard/publisher/adverts-edit.php:153
1027
  msgid "WordPress media:"
1028
  msgstr ""
1029
 
1030
+ #: dashboard/publisher/adverts-edit.php:153
1031
  msgid "Select Banner"
1032
  msgstr "Επιλέξτε Banner"
1033
 
1034
+ #: dashboard/publisher/adverts-edit.php:155
1035
  msgid "- OR -"
1036
  msgstr "- Ή -"
1037
 
1038
+ #: dashboard/publisher/adverts-edit.php:157
1039
  msgid "Banner folder:"
1040
  msgstr "Φάκελος Banner:"
1041
 
1042
+ #: dashboard/publisher/adverts-edit.php:158
1043
  msgid "No image selected"
1044
  msgstr "Καμία επιλεγμένη εικόνα"
1045
 
1046
+ #: dashboard/publisher/adverts-edit.php:162
1047
  msgid "Use %asset% in the adcode instead of the file path."
1048
  msgstr ""
1049
 
1050
+ #: dashboard/publisher/adverts-edit.php:162
1051
  msgid ""
1052
  "Use either the text field or the dropdown. If the textfield has content that "
1053
  "field has priority."
1055
  "Χρησιμοποιήστε είτε το πεδίο κειμένου είτε το μενού επιλογών. Αν το πεδίο "
1056
  "κειμένου έχει περιεχόμενο αυτό το πεδίο έχει προτεραιότητα."
1057
 
1058
+ #: dashboard/publisher/adverts-edit.php:167
1059
  #: dashboard/settings/statistics.php:17
1060
  msgid "Statistics"
1061
  msgstr "Στατιστικά"
1062
 
1063
+ #: dashboard/publisher/adverts-edit.php:169
1064
  msgid "Enable click and impression tracking for this advert."
1065
  msgstr ""
1066
 
1067
+ #: dashboard/publisher/adverts-edit.php:170
1068
  msgid ""
1069
  "Note: Clicktracking does not work for Javascript adverts such as those "
1070
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1071
  "always supported."
1072
  msgstr ""
1073
 
1074
+ #: dashboard/publisher/adverts-edit.php:180
1075
  msgid "Yes, this ad will be used"
1076
  msgstr "Ναι, θα χρησιμοποιηθεί αυτή η διαφήμιση"
1077
 
1078
+ #: dashboard/publisher/adverts-edit.php:181
1079
  msgid "No, do not show this ad anywhere"
1080
  msgstr "Όχι, να μην εμφανίσεις αυτή τη διαφήμιση πουθενά "
1081
 
1082
+ #: dashboard/publisher/adverts-edit.php:188
1083
+ #: dashboard/publisher/adverts-main.php:105
1084
  #: dashboard/publisher/groups-edit.php:71
1085
  #: dashboard/publisher/groups-main.php:89
1086
  #, fuzzy
1087
  msgid "Get more features with AdRotate Pro."
1088
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1089
 
1090
+ #: dashboard/publisher/adverts-edit.php:188
1091
+ #: dashboard/publisher/adverts-main.php:105
1092
  #: dashboard/publisher/groups-edit.php:71
1093
  #: dashboard/publisher/groups-main.php:89
1094
  #, fuzzy
1095
  msgid "More information"
1096
  msgstr "Περισσότερες πληροφορίες"
1097
 
1098
+ #: dashboard/publisher/adverts-edit.php:191
1099
+ #: dashboard/publisher/adverts-edit.php:291
1100
+ #: dashboard/publisher/adverts-edit.php:447
1101
+ #: dashboard/publisher/adverts-edit.php:488
1102
  msgid "Save Advert"
1103
  msgstr "Αποθήκευση Διαφήμισης"
1104
 
1105
+ #: dashboard/publisher/adverts-edit.php:192
1106
+ #: dashboard/publisher/adverts-edit.php:292
1107
+ #: dashboard/publisher/adverts-edit.php:448
1108
+ #: dashboard/publisher/adverts-edit.php:489
1109
  #: dashboard/publisher/groups-edit.php:150
1110
  #: dashboard/publisher/groups-edit.php:299
1111
  #: dashboard/publisher/groups-edit.php:391
1112
  msgid "Cancel"
1113
  msgstr "Ακύρωση"
1114
 
1115
+ #: dashboard/publisher/adverts-edit.php:195
1116
+ #: dashboard/publisher/adverts-edit.php:430
1117
  #: dashboard/publisher/groups-edit.php:132
1118
  #: dashboard/publisher/groups-edit.php:281
1119
  msgid "Usage"
1120
  msgstr "Χρήση"
1121
 
1122
+ #: dashboard/publisher/adverts-edit.php:199
1123
+ #: dashboard/publisher/adverts-edit.php:434
1124
  #: dashboard/publisher/groups-edit.php:136
1125
  #: dashboard/publisher/groups-edit.php:205
1126
  #: dashboard/publisher/groups-edit.php:245
1128
  msgid "Widget"
1129
  msgstr ""
1130
 
1131
+ #: dashboard/publisher/adverts-edit.php:200
1132
+ #: dashboard/publisher/adverts-edit.php:435
1133
  msgid ""
1134
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1135
  "and select the advert or the group the advert is in."
1136
  msgstr ""
1137
 
1138
+ #: dashboard/publisher/adverts-edit.php:203
1139
+ #: dashboard/publisher/adverts-edit.php:438
1140
  #: dashboard/publisher/groups-edit.php:140
1141
  #: dashboard/publisher/groups-edit.php:289
1142
  msgid "In a post or page"
1143
  msgstr ""
1144
 
1145
+ #: dashboard/publisher/adverts-edit.php:205
1146
+ #: dashboard/publisher/adverts-edit.php:440
1147
  #: dashboard/publisher/groups-edit.php:142
1148
  #: dashboard/publisher/groups-edit.php:291
1149
  msgid "Directly in a theme"
1150
  msgstr ""
1151
 
1152
+ #: dashboard/publisher/adverts-edit.php:211
1153
  msgid "Schedule your advert"
1154
  msgstr ""
1155
 
1156
+ #: dashboard/publisher/adverts-edit.php:215
1157
  msgid "Start date (day/month/year)"
1158
  msgstr ""
1159
 
1160
+ #: dashboard/publisher/adverts-edit.php:236
1161
  msgid "End date (day/month/year)"
1162
  msgstr ""
1163
 
1164
+ #: dashboard/publisher/adverts-edit.php:259
1165
  msgid "Start time (hh:mm)"
1166
  msgstr ""
1167
 
1168
+ #: dashboard/publisher/adverts-edit.php:266
1169
  msgid "End time (hh:mm)"
1170
  msgstr ""
1171
 
1172
+ #: dashboard/publisher/adverts-edit.php:276
1173
  msgid "Maximum Clicks"
1174
  msgstr ""
1175
 
1176
+ #: dashboard/publisher/adverts-edit.php:277
1177
+ #: dashboard/publisher/adverts-edit.php:279
1178
  msgid "Leave empty or 0 to skip this."
1179
  msgstr "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό."
1180
 
1181
+ #: dashboard/publisher/adverts-edit.php:278
1182
  msgid "Maximum Impressions"
1183
  msgstr ""
1184
 
1185
+ #: dashboard/publisher/adverts-edit.php:283
1186
  msgid "Important"
1187
  msgstr ""
1188
 
1189
+ #: dashboard/publisher/adverts-edit.php:284
1190
  msgid ""
1191
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1192
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1193
  "14:00 hours. 6AM is 6:00 hours."
1194
  msgstr ""
1195
 
1196
+ #: dashboard/publisher/adverts-edit.php:288
1197
  msgid ""
1198
  "Create multiple and more advanced schedules for each advert with AdRotate "
1199
  "Pro."
1200
  msgstr ""
1201
 
1202
+ #: dashboard/publisher/adverts-edit.php:288
1203
+ #: dashboard/publisher/adverts-edit.php:357
1204
+ #: dashboard/publisher/adverts-edit.php:428
1205
  #: dashboard/publisher/groups-edit.php:191
1206
  #, fuzzy
1207
  msgid "Upgrade today"
1208
  msgstr "Σήμερα"
1209
 
1210
+ #: dashboard/publisher/adverts-edit.php:295
1211
  #: dashboard/publisher/groups-edit.php:153
1212
  msgid "Advanced"
1213
  msgstr "Προχωρημένος"
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:296
1216
+ #: dashboard/publisher/adverts-edit.php:360
1217
  msgid "Available in AdRotate Pro!"
1218
  msgstr ""
1219
 
1220
+ #: dashboard/publisher/adverts-edit.php:301
1221
+ #: dashboard/publisher/groups-edit.php:331
 
1222
  msgid "Weight"
1223
  msgstr "Βαρύτητα"
1224
 
1225
+ #: dashboard/publisher/adverts-edit.php:304
1226
  msgid "Few impressions"
1227
  msgstr ""
1228
 
1229
+ #: dashboard/publisher/adverts-edit.php:309
1230
  msgid "Less than average"
1231
  msgstr "Λιγότερο από το μέσο όρο"
1232
 
1233
+ #: dashboard/publisher/adverts-edit.php:314
1234
  msgid "Normal impressions"
1235
  msgstr ""
1236
 
1237
+ #: dashboard/publisher/adverts-edit.php:319
1238
  msgid "More than average"
1239
  msgstr "Περισσότερο από μέσο"
1240
 
1241
+ #: dashboard/publisher/adverts-edit.php:324
1242
  msgid "Many impressions"
1243
  msgstr ""
1244
 
1245
+ #: dashboard/publisher/adverts-edit.php:329
1246
  msgid "Mobile"
1247
  msgstr ""
1248
 
1249
+ #: dashboard/publisher/adverts-edit.php:331
1250
  msgid "Computers"
1251
  msgstr ""
1252
 
1253
+ #: dashboard/publisher/adverts-edit.php:334
1254
  msgid "Smartphones"
1255
  msgstr ""
1256
 
1257
+ #: dashboard/publisher/adverts-edit.php:337
1258
  msgid "Tablets"
1259
  msgstr ""
1260
 
1261
+ #: dashboard/publisher/adverts-edit.php:340
1262
  msgid ""
1263
  "Also enable mobile support in the group this advert goes in or these are "
1264
  "ignored."
1265
  msgstr ""
1266
 
1267
+ #: dashboard/publisher/adverts-edit.php:340
1268
+ msgid "Operating system detection only detects iOS/Android/Other or neither."
 
 
1269
  msgstr ""
1270
 
1271
+ #: dashboard/publisher/adverts-edit.php:344
1272
  msgid "Mobile OS"
1273
  msgstr ""
1274
 
1275
+ #: dashboard/publisher/adverts-edit.php:346
1276
  msgid "iOS"
1277
  msgstr ""
1278
 
1279
+ #: dashboard/publisher/adverts-edit.php:349
1280
  msgid "Android"
1281
  msgstr ""
1282
 
1283
+ #: dashboard/publisher/adverts-edit.php:352
1284
  msgid "Others"
1285
  msgstr ""
1286
 
1287
+ #: dashboard/publisher/adverts-edit.php:357
1288
  msgid ""
1289
  "With AdRotate Pro you can easily select which devices and mobile operating "
1290
  "systems the advert should show on!"
1291
  msgstr ""
1292
 
1293
+ #: dashboard/publisher/adverts-edit.php:360
 
 
 
 
 
 
1294
  msgid ""
1295
  "Assign the advert to a group and enable that group to use Geo Targeting."
1296
  msgstr ""
1297
 
1298
+ #: dashboard/publisher/adverts-edit.php:418
1299
  msgid "A comma separated list of items:"
1300
  msgstr ""
1301
 
1302
+ #: dashboard/publisher/adverts-edit.php:418
1303
  msgid ""
1304
  "AdRotate does not check the validity of names so make sure you spell them "
1305
  "correctly!"
1306
  msgstr ""
1307
 
1308
+ #: dashboard/publisher/adverts-edit.php:428
1309
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1310
  msgstr ""
1311
 
1312
+ #: dashboard/publisher/adverts-edit.php:452
1313
  msgid "Select Groups"
1314
  msgstr "Επιλέξτε Ομάδες"
1315
 
1316
+ #: dashboard/publisher/adverts-edit.php:457
1317
  msgid "ID - Name"
1318
  msgstr "ID - Όνομα"
1319
 
1320
+ #: dashboard/publisher/adverts-edit.php:467
1321
  #: dashboard/publisher/groups-main.php:60
1322
  #: dashboard/settings/geotargeting.php:49
1323
  msgid "Default"
1324
  msgstr "Προεπιλογή"
1325
 
1326
+ #: dashboard/publisher/adverts-edit.php:468
1327
  #: dashboard/publisher/groups-main.php:61
1328
  msgid "Dynamic"
1329
  msgstr "Δυναμική"
1330
 
1331
+ #: dashboard/publisher/adverts-edit.php:468
1332
  #: dashboard/publisher/groups-main.php:61
1333
  #, fuzzy
1334
  msgid "second rotation"
1335
  msgstr "Γεωγραφική Τοποθεσία"
1336
 
1337
+ #: dashboard/publisher/adverts-edit.php:469
1338
  #: dashboard/publisher/groups-main.php:62
1339
  msgid "Block"
1340
  msgstr "Απαγόρευση"
1341
 
1342
+ #: dashboard/publisher/adverts-edit.php:469
1343
  #: dashboard/publisher/groups-main.php:62
1344
  #, fuzzy
1345
  msgid "grid"
1347
  "Κάντε ένα πλέγμα για τις διαφημίσεις σας. Συμπλήρωση 3 και 2 κάνει ένα "
1348
  "πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
1349
 
1350
+ #: dashboard/publisher/adverts-edit.php:470
1351
  #: dashboard/publisher/groups-edit.php:199
1352
  #: dashboard/publisher/groups-main.php:63
1353
  msgid "Post Injection"
1354
  msgstr "Εμβολιασμός Δημοσίευσης"
1355
 
1356
+ #: dashboard/publisher/adverts-edit.php:471
1357
  msgid "Geolocation"
1358
  msgstr "Γεωγραφική τοποθεσία"
1359
 
1360
+ #: dashboard/publisher/adverts-edit.php:477
1361
  #: dashboard/publisher/groups-edit.php:57
1362
  #: dashboard/publisher/groups-main.php:70
1363
  msgid "Mode"
1398
  msgstr "Για 7 ημέρες"
1399
 
1400
  #: dashboard/publisher/adverts-error.php:71
1401
+ #, fuzzy
1402
+ #| msgid "Configuration errors."
1403
+ msgid "Configuration errors"
1404
  msgstr "Σφάλματα Διαμόρφωσης."
1405
 
1406
  #: dashboard/publisher/adverts-error.php:72
1407
+ #, fuzzy
1408
+ #| msgid "Expires soon."
1409
+ msgid "Expires soon"
1410
  msgstr "Λήγει σύντομα."
1411
 
1412
  #: dashboard/publisher/adverts-error.php:73
1413
+ #: dashboard/settings/maintenance.php:64
1414
+ msgid "Expired"
1415
+ msgstr "Έληξε"
1416
 
1417
  #: dashboard/publisher/adverts-main.php:12
1418
  msgid "Active Adverts"
1420
 
1421
  #: dashboard/publisher/adverts-main.php:24
1422
  #, fuzzy
1423
+ msgid "Export to CSV"
1424
  msgstr "Επιλογές εξαγωγής"
1425
 
1426
+ #: dashboard/publisher/adverts-main.php:44
1427
+ #: dashboard/publisher/adverts-main.php:46
1428
  #: dashboard/publisher/groups-main.php:37
1429
  #: dashboard/publisher/groups-main.php:39
1430
  msgid "Today"
1431
  msgstr "Σήμερα"
1432
 
1433
+ #: dashboard/publisher/adverts-main.php:100
1434
  msgid "No adverts created yet!"
1435
  msgstr ""
1436
 
1484
  msgid "Edit Group"
1485
  msgstr "Επεξεργασία Ομάδας"
1486
 
 
 
 
 
 
1487
  #: dashboard/publisher/groups-edit.php:60
1488
  msgid "Default - Show one ad at a time"
1489
  msgstr "Προεπιλογή - Εμφάνισε μία διαφήμιση την φορά"
1776
  msgid "Choose adverts"
1777
  msgstr ""
1778
 
1779
+ #: dashboard/publisher/groups-edit.php:330
1780
  msgid "Visible until"
1781
  msgstr "Ορατό μέχρι"
1782
 
1784
  msgid "No adverts created!"
1785
  msgstr ""
1786
 
1787
+ #: dashboard/publisher/groups-edit.php:384
1788
+ msgid "Configuration errors."
1789
+ msgstr "Σφάλματα Διαμόρφωσης."
1790
+
1791
+ #: dashboard/publisher/groups-edit.php:385
1792
+ msgid "Expires soon."
1793
+ msgstr "Λήγει σύντομα."
1794
+
1795
+ #: dashboard/publisher/groups-edit.php:386
1796
+ msgid "Has expired."
1797
+ msgstr "Έχει λήξει."
1798
+
1799
  #: dashboard/publisher/groups-main.php:12
1800
  msgid "Manage Groups"
1801
  msgstr "Διαχείριση Ομάδων"
1817
  msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί!"
1818
 
1819
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1820
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
 
1821
  msgid "OK to continue, CANCEL to stop."
1822
  msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
1823
 
1883
  msgstr ""
1884
 
1885
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1886
+ #: dashboard/settings/maintenance.php:116 dashboard/settings/misc.php:43
1887
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1888
+ #: dashboard/settings/statistics.php:73
1889
  msgid "Update Options"
1890
  msgstr "Επιλογές Ανανέωσης"
1891
 
1983
 
1984
  #: dashboard/settings/general.php:50
1985
  #, fuzzy
1986
+ msgid "Set a folder where your banner images will be stored."
1987
  msgstr ""
1988
  "Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
1989
  "(Προεπιλογή: /wp-content/banners/)."
1990
 
1991
  #: dashboard/settings/general.php:53
1992
+ msgid "Folder name"
1993
+ msgstr ""
 
1994
 
1995
  #: dashboard/settings/general.php:55
1996
  #, fuzzy
1997
+ msgid "(Default: banners)."
1998
  msgstr ""
1999
  "Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
2000
  "(Προεπιλογή: /wp-content/banners/)."
2142
  msgid "Password/License Key"
2143
  msgstr ""
2144
 
 
 
 
 
2145
  #: dashboard/settings/maintenance.php:17
2146
  msgid ""
2147
  "Use these functions when you notice your database is slow, unresponsive and "
2181
  "τις πολλές αλλαγές που έχετε κάνει στη βάση. Μπορεί να είναι από τίποτε "
2182
  "μέχρι εκατοντάδες kilobytes δεδομένων."
2183
 
2184
+ #: dashboard/settings/maintenance.php:28
2185
+ #, fuzzy
2186
+ #| msgid "Clean-up Database"
2187
+ msgid "Clean-up Database and Files"
2188
+ msgstr "Εκκαθάριση Βάσης Δεδομένων"
2189
+
2190
+ #: dashboard/settings/maintenance.php:30
2191
  msgid "Clean-up Database"
2192
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
2193
 
2194
  #: dashboard/settings/maintenance.php:30
2195
+ #, fuzzy
2196
+ #| msgid ""
2197
+ #| "You are about to clean up your database. This may delete expired "
2198
+ #| "schedules and older statistics."
2199
  msgid ""
2200
+ "You are about to clean up your database. This may delete expired schedules, "
2201
+ "older statistics and try to delete export files"
2202
  msgstr ""
2203
  "Πρόκειται να καθαρίσετε τη βάση δεδομένων. Αυτή η ενέργεια θα διαγράψει "
2204
  "ληγμένα προγράμαμτα και παλαιότερες στατιστικές."
2207
  msgid "Are you sure you want to continue?"
2208
  msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
2209
 
2210
+ #: dashboard/settings/maintenance.php:30
2211
+ msgid "THIS ACTION CAN NOT BE UNDONE!"
 
2212
  msgstr ""
2213
 
2214
  #: dashboard/settings/maintenance.php:31
2215
+ #, fuzzy
2216
+ #| msgid "Delete stats older than 356 days (Optional)."
2217
+ msgid "Delete stats older than 356 days."
2218
  msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
2219
 
2220
  #: dashboard/settings/maintenance.php:32
2221
+ msgid "Delete leftover export files."
2222
  msgstr ""
2223
 
2224
  #: dashboard/settings/maintenance.php:33
2228
  msgstr ""
2229
 
2230
  #: dashboard/settings/maintenance.php:33
2231
+ #, fuzzy
2232
+ #| msgid ""
2233
+ #| "Additionally you can clean up old statistics. This will improve the speed "
2234
+ #| "of your site."
2235
  msgid ""
2236
+ "Additionally you can delete statistics and/or unused export files. This will "
2237
+ "improve the speed of your site."
2238
  msgstr ""
2239
+ "Επιπλέον μπορείτε να διαγράψετε παλιά στατιστικά. Αυτό θα βελτιώσει την "
2240
+ "ταχύτητα της ιστοσελίδας σας."
2241
 
2242
  #: dashboard/settings/maintenance.php:37
2243
  #, fuzzy
2253
  msgid "You are about to check all ads for errors."
2254
  msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
2255
 
2256
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
2257
+ msgid "This might take a while and may slow down your site during this action!"
2258
+ msgstr ""
2259
+
2260
  #: dashboard/settings/maintenance.php:40
2261
  msgid ""
2262
  "This will apply all evaluation rules to all ads to see if any error slipped "
2302
 
2303
  #: dashboard/settings/maintenance.php:54
2304
  #, fuzzy
2305
+ #| msgid "Track clicks and impressions."
2306
+ msgid "Disable timers for clicks and impressions."
2307
+ msgstr "Παρακολουθήστε τα κλικ (CPC) και τις εμφανίσεις (CPM)"
 
2308
 
2309
  #: dashboard/settings/maintenance.php:55
2310
  msgid "Temporarily disable encryption on the redirect url."
2327
  msgid "Error"
2328
  msgstr "Σφάλμα"
2329
 
 
 
 
 
2330
  #: dashboard/settings/maintenance.php:64
2331
  msgid "Expires Soon"
2332
  msgstr "Λήγει Σύντομα"
2339
  msgid "Banners/assets Folder"
2340
  msgstr ""
2341
 
2342
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2343
  msgid "Exists and appears writable"
2344
  msgstr ""
2345
 
2346
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2347
  msgid "Not writable or does not exist"
2348
  msgstr ""
2349
 
2350
+ #: dashboard/settings/maintenance.php:76
2351
  msgid "Reports Folder"
2352
  msgstr ""
2353
 
2354
+ #: dashboard/settings/maintenance.php:85
2355
  msgid "Advert evaluation"
2356
  msgstr ""
2357
 
2358
+ #: dashboard/settings/maintenance.php:86
2359
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2360
  msgstr ""
2361
 
2362
+ #: dashboard/settings/maintenance.php:87
2363
+ #, fuzzy
2364
+ #| msgid "Clean Trackerdata next run:"
2365
+ msgid "Clean Trackerdata"
2366
+ msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
2367
+
2368
+ #: dashboard/settings/maintenance.php:88
2369
+ msgid "Not scheduled!"
2370
+ msgstr "Δεν έχει προγραμματιστεί!"
2371
+
2372
+ #: dashboard/settings/maintenance.php:91
2373
+ msgid "Background tasks"
2374
  msgstr ""
2375
 
2376
+ #: dashboard/settings/maintenance.php:93
2377
+ msgid "Reset background tasks"
2378
+ msgstr ""
2379
+
2380
+ #: dashboard/settings/maintenance.php:98
2381
  msgid "Internal Versions"
2382
  msgstr ""
2383
 
2384
+ #: dashboard/settings/maintenance.php:99
2385
  msgid ""
2386
  "Unless you experience database issues or a warning shows below, these "
2387
  "numbers are not really relevant for troubleshooting. Support may ask for "
2388
  "them to verify your database status."
2389
  msgstr ""
2390
 
2391
+ #: dashboard/settings/maintenance.php:102
2392
  msgid "AdRotate version"
2393
  msgstr ""
2394
 
2395
+ #: dashboard/settings/maintenance.php:103
2396
+ #: dashboard/settings/maintenance.php:105
2397
  msgid "Current:"
2398
  msgstr ""
2399
 
2400
+ #: dashboard/settings/maintenance.php:103
2401
+ #: dashboard/settings/maintenance.php:105
2402
  msgid "Should be:"
2403
  msgstr ""
2404
 
2405
+ #: dashboard/settings/maintenance.php:103
2406
+ #: dashboard/settings/maintenance.php:105
2407
  msgid "Previous:"
2408
  msgstr ""
2409
 
2410
+ #: dashboard/settings/maintenance.php:104
2411
  msgid "Database version"
2412
  msgstr ""
2413
 
2414
+ #: dashboard/settings/maintenance.php:108
2415
+ msgid "Manual upgrade"
2416
+ msgstr ""
2417
+
2418
+ #: dashboard/settings/maintenance.php:110
2419
  msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2420
  msgstr ""
2421
 
2422
+ #: dashboard/settings/maintenance.php:110
2423
  msgid "Make sure you have a database backup!"
2424
  msgstr ""
2425
 
2426
+ #: dashboard/settings/maintenance.php:110
2427
+ #, fuzzy
2428
+ #| msgid "Ad updated"
2429
+ msgid "Run updater"
2430
+ msgstr "Η διαφήμιση ανανεώθηκε"
2431
 
2432
  #: dashboard/settings/misc.php:16
2433
  msgid "Miscellaneous"
2505
  "μονάδες AdRotate. Αν χρησιμοποιείτε κάποιο PHP Snippet πρέπει να περιλάβετε "
2506
  "μόνοι σας τον κώδικά σας στον κώδικα εξαίρεσης. "
2507
 
 
 
 
 
2508
  #: dashboard/settings/notifications.php:19
2509
  msgid "Set up who gets notifications if ads need your attention."
2510
  msgstr ""
2638
  "separated. This field may not be empty!"
2639
  msgstr ""
2640
 
 
 
 
 
2641
  #: dashboard/settings/notifications.php:75
2642
  msgid ""
2643
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2693
  msgid "and get your API token"
2694
  msgstr ""
2695
 
 
 
 
 
2696
  #: dashboard/settings/roles.php:18
2697
  msgid "Who has access to what?"
2698
  msgstr ""
2845
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
2846
  "ώρα)."
2847
 
2848
+ #~ msgid "Empty database records removed"
2849
+ #~ msgstr "Τα κενά πεδία της βάσης δεδομένων απομακρύνθηκαν"
 
2850
 
2851
+ #, fuzzy
2852
+ #~ msgid "Location"
2853
+ #~ msgstr "Γεωγραφική Τοποθεσία"
2854
+
2855
+ #, fuzzy
2856
+ #~ msgid ""
2857
+ #~ "Disable timers for clicks and impressions and enable a alert window for "
2858
+ #~ "clicktracking."
2859
+ #~ msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
2860
 
2861
  #, fuzzy
2862
  #~ msgid "Help AdRotate Grow"
2981
  #~ msgid "Ad evaluation next run:"
2982
  #~ msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
2983
 
 
 
 
 
 
 
2984
  #~ msgid ""
2985
  #~ "A comma separated list of email addresses. Maximum of 5 addresses. Keep "
2986
  #~ "this list to a minimum!"
3153
  #~ msgid "Ad created"
3154
  #~ msgstr "Η διαφήμιση δημιουργήθηκε"
3155
 
 
 
 
3156
  #~ msgid ""
3157
  #~ "The ad was saved but has an issue which might prevent it from working "
3158
  #~ "properly. Review the yellow marked ad."
3246
  #~ "Αν κάνατε μια διαφήμιση ή μια ομάδα που δεν αποθηκεύεται, χρησιμοποιείστε "
3247
  #~ "αυτό το κουμπί για να σβήσετε αυτές τις κενές εγγραφές. "
3248
 
 
 
 
 
 
 
 
3249
  #~ msgid ""
3250
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3251
  #~ "becomes unusable in any way or by any means in whichever way I will not "
3430
  #~ msgid "Enable stats"
3431
  #~ msgstr "Στατιστικά"
3432
 
 
 
 
3433
  #, fuzzy
3434
  #~ msgid ""
3435
  #~ "Disabling this also disables click and impression limits on schedules."
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: 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,385 +13,385 @@ 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.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
 
122
- #: adrotate-output.php:575
123
  msgid "Oh no! Something went wrong!"
124
  msgstr ""
125
 
126
- #: adrotate-output.php:576
127
  msgid ""
128
  "WordPress was unable to verify the authenticity of the url you have clicked. "
129
  "Verify if the url used is valid or log in via your browser."
130
  msgstr ""
131
 
132
- #: adrotate-output.php:577
133
  msgid ""
134
  "If you have received the url you want to visit via email, you are being "
135
  "tricked!"
136
  msgstr ""
137
 
138
- #: adrotate-output.php:578
139
  msgid "Contact support if the issue persists:"
140
  msgstr ""
141
 
142
- #: adrotate-output.php:593
143
  msgid ""
144
  "Error, Ad is not available at this time due to schedule/geolocation "
145
  "restrictions or does not exist!"
146
  msgstr ""
147
 
148
- #: adrotate-output.php:595
149
  msgid ""
150
  "Error, Ad is not available at this time due to schedule/geolocation "
151
  "restrictions!"
152
  msgstr ""
153
 
154
- #: adrotate-output.php:602 adrotate-output.php:604
155
  msgid ""
156
  "Either there are no banners, they are disabled or none qualified for this "
157
  "location!"
158
  msgstr ""
159
 
160
- #: adrotate-output.php:610
161
  msgid "Error, no Ad ID set! Check your syntax!"
162
  msgstr ""
163
 
164
- #: adrotate-output.php:616
165
  msgid "Error, no group ID set! Check your syntax!"
166
  msgstr ""
167
 
168
- #: adrotate-output.php:621
169
  msgid "Error, group does not exist! Check your syntax!"
170
  msgstr ""
171
 
172
- #: adrotate-output.php:627
173
  msgid ""
174
  "There was an error locating the database tables for AdRotate. Please "
175
  "deactivate and re-activate AdRotate from the plugin page!!"
176
  msgstr ""
177
 
178
- #: adrotate-output.php:627
179
  msgid "If this does not solve the issue please seek support at"
180
  msgstr ""
181
 
182
- #: adrotate-output.php:633
183
  msgid "An unknown error occured."
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,60 +435,97 @@ msgstr ""
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
492
  #: dashboard/adrotatepro.php:20
493
  msgid "Satisfy your advertisers"
494
  msgstr ""
@@ -538,15 +575,21 @@ msgid ""
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, "
@@ -555,11 +598,11 @@ msgid ""
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 "
@@ -567,11 +610,11 @@ msgid ""
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,143 +622,124 @@ msgid ""
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
 
668
- #: dashboard/info.php:24
669
  msgid "Currently"
670
  msgstr ""
671
 
672
- #: dashboard/info.php:30
673
  msgid "Your setup"
674
  msgstr ""
675
 
676
- #: dashboard/info.php:31
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 "
718
- "plugins!"
719
  msgstr ""
720
 
721
  #: dashboard/publisher/adverts-disabled.php:15
@@ -730,7 +754,7 @@ 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
 
@@ -761,38 +785,39 @@ 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
766
  msgid "Start / End"
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"
 
 
774
  msgstr ""
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 ""
782
 
783
- #: dashboard/publisher/adverts-disabled.php:39
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
791
  msgid "Clicks"
792
  msgstr ""
793
 
794
- #: dashboard/publisher/adverts-disabled.php:40
795
- #: dashboard/publisher/adverts-main.php:48
796
  #: dashboard/publisher/adverts-report.php:39
797
  #: dashboard/publisher/adverts-report.php:58
798
  #: dashboard/publisher/groups-report.php:40
@@ -800,237 +825,245 @@ msgstr ""
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
@@ -1038,241 +1071,232 @@ msgstr ""
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,18 +1337,16 @@ msgid "For 7 days"
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
@@ -1332,17 +1354,17 @@ msgid "Active Adverts"
1332
  msgstr ""
1333
 
1334
  #: dashboard/publisher/adverts-main.php:24
1335
- msgid "Export to XML"
1336
  msgstr ""
1337
 
1338
- #: dashboard/publisher/adverts-main.php:45
1339
- #: dashboard/publisher/adverts-main.php:47
1340
  #: dashboard/publisher/groups-main.php:37
1341
  #: dashboard/publisher/groups-main.php:39
1342
  msgid "Today"
1343
  msgstr ""
1344
 
1345
- #: dashboard/publisher/adverts-main.php:102
1346
  msgid "No adverts created yet!"
1347
  msgstr ""
1348
 
@@ -1394,11 +1416,6 @@ msgstr ""
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 ""
@@ -1670,7 +1687,7 @@ msgstr ""
1670
  msgid "Choose adverts"
1671
  msgstr ""
1672
 
1673
- #: dashboard/publisher/groups-edit.php:335
1674
  msgid "Visible until"
1675
  msgstr ""
1676
 
@@ -1678,6 +1695,18 @@ msgstr ""
1678
  msgid "No adverts created!"
1679
  msgstr ""
1680
 
 
 
 
 
 
 
 
 
 
 
 
 
1681
  #: dashboard/publisher/groups-main.php:12
1682
  msgid "Manage Groups"
1683
  msgstr ""
@@ -1699,8 +1728,7 @@ msgid "This action can not be undone!"
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,9 +1793,9 @@ msgid ""
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
 
@@ -1863,15 +1891,15 @@ msgid "Banner Folder"
1863
  msgstr ""
1864
 
1865
  #: dashboard/settings/general.php:50
1866
- msgid "Set a location where your banner images will be stored."
1867
  msgstr ""
1868
 
1869
  #: dashboard/settings/general.php:53
1870
- msgid "Location"
1871
  msgstr ""
1872
 
1873
  #: dashboard/settings/general.php:55
1874
- msgid "(Default: wp-content/banners/)."
1875
  msgstr ""
1876
 
1877
  #: dashboard/settings/general.php:56
@@ -2010,10 +2038,6 @@ msgstr ""
2010
  msgid "Password/License Key"
2011
  msgstr ""
2012
 
2013
- #: dashboard/settings/maintenance.php:16
2014
- msgid "Maintenance"
2015
- msgstr ""
2016
-
2017
  #: dashboard/settings/maintenance.php:17
2018
  msgid ""
2019
  "Use these functions when you notice your database is slow, unresponsive and "
@@ -2048,31 +2072,34 @@ msgid ""
2048
  "made. This can vary from nothing to hundreds of KiB of data."
2049
  msgstr ""
2050
 
2051
- #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
 
 
 
 
2052
  msgid "Clean-up Database"
2053
  msgstr ""
2054
 
2055
  #: dashboard/settings/maintenance.php:30
2056
  msgid ""
2057
- "You are about to clean up your database. This may delete expired schedules "
2058
- "and older statistics."
2059
  msgstr ""
2060
 
2061
  #: dashboard/settings/maintenance.php:30
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
 
2070
  #: dashboard/settings/maintenance.php:31
2071
- msgid "Delete stats older than 356 days (Optional)."
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
@@ -2082,10 +2109,13 @@ msgid ""
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"
@@ -2099,6 +2129,10 @@ msgstr ""
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 "
@@ -2143,10 +2177,9 @@ 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."
@@ -2168,10 +2201,6 @@ msgstr ""
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 ""
@@ -2184,74 +2213,93 @@ msgstr ""
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"
@@ -2317,10 +2365,6 @@ msgid ""
2317
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2318
  msgstr ""
2319
 
2320
- #: dashboard/settings/notifications.php:18
2321
- msgid "Notifications"
2322
- msgstr ""
2323
-
2324
  #: dashboard/settings/notifications.php:19
2325
  msgid "Set up who gets notifications if ads need your attention."
2326
  msgstr ""
@@ -2451,10 +2495,6 @@ msgid ""
2451
  "separated. This field may not be empty!"
2452
  msgstr ""
2453
 
2454
- #: dashboard/settings/notifications.php:72
2455
- msgid "Advertisers"
2456
- msgstr ""
2457
-
2458
  #: dashboard/settings/notifications.php:75
2459
  msgid ""
2460
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
@@ -2508,10 +2548,6 @@ msgstr ""
2508
  msgid "and get your API token"
2509
  msgstr ""
2510
 
2511
- #: dashboard/settings/roles.php:17
2512
- msgid "Roles"
2513
- msgstr ""
2514
-
2515
  #: dashboard/settings/roles.php:18
2516
  msgid "Who has access to what?"
2517
  msgstr ""
@@ -2655,16 +2691,6 @@ msgid ""
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 "
@@ -2739,10 +2765,6 @@ msgstr ""
2739
  #~ msgid "Ad created"
2740
  #~ msgstr "Publicité créée"
2741
 
2742
- #, fuzzy
2743
- #~ msgid "Ad updated"
2744
- #~ msgstr "Publicité mise à jour"
2745
-
2746
  #, fuzzy
2747
  #~ msgid ""
2748
  #~ "The ad was saved but has an issue which might prevent it from working "
@@ -2857,14 +2879,6 @@ msgstr ""
2857
  #~ "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
2858
  #~ "registres vides."
2859
 
2860
- #, fuzzy
2861
- #~ msgid ""
2862
- #~ "Additionally you can clean up old statistics. This will improve the speed "
2863
- #~ "of your site."
2864
- #~ msgstr ""
2865
- #~ "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
2866
- #~ "d'améliorer la vitesse de votre site."
2867
-
2868
  #, fuzzy
2869
  #~ msgid ""
2870
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
@@ -3179,10 +3193,6 @@ msgstr ""
3179
  #~ msgid "Enable stats"
3180
  #~ msgstr "Statistiques activés"
3181
 
3182
- #, fuzzy
3183
- #~ msgid "Track clicks and impressions."
3184
- #~ msgstr "Suivi des clicks et des impressions."
3185
-
3186
  #, fuzzy
3187
  #~ msgid ""
3188
  #~ "Activate AdRotate on unlimited WordPress installations and/or networks."
@@ -3296,10 +3306,6 @@ msgstr ""
3296
  #~ msgid "Target your audience with Geo Location in AdRotate Pro"
3297
  #~ msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
3298
 
3299
- #, fuzzy
3300
- #~ msgid "Schedule"
3301
- #~ msgstr "Planning"
3302
-
3303
  #, fuzzy
3304
  #~ msgid "From when to when is the advert visible?"
3305
  #~ msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-19 15:30+0800\n"
6
+ "PO-Revision-Date: 2017-06-19 15:30+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 2.0.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:722
21
  msgid "No files found"
22
  msgstr ""
23
 
24
+ #: adrotate-functions.php:725
25
  msgid "Folder not found or not accessible"
26
  msgstr ""
27
 
28
+ #: adrotate-functions.php:768
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:772
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:776
37
  msgid "Ad(s) deleted"
38
  msgstr ""
39
 
40
+ #: adrotate-functions.php:780
41
  msgid "Group deleted"
42
  msgstr ""
43
 
44
+ #: adrotate-functions.php:784
45
  msgid "Ad(s) statistics reset"
46
  msgstr ""
47
 
48
+ #: adrotate-functions.php:788
49
  msgid "Ad(s) renewed"
50
  msgstr ""
51
 
52
+ #: adrotate-functions.php:792
53
  msgid "Ad(s) deactivated"
54
  msgstr ""
55
 
56
+ #: adrotate-functions.php:796
57
  msgid "Ad(s) activated"
58
  msgstr ""
59
 
60
+ #: adrotate-functions.php:800
61
  msgid "Group including it's Ads deleted"
62
  msgstr ""
63
 
64
+ #: adrotate-functions.php:804
65
  msgid "Export created"
66
  msgstr ""
67
 
68
+ #: adrotate-functions.php:809
69
  msgid "Settings saved"
70
  msgstr ""
71
 
72
+ #: adrotate-functions.php:813
73
  msgid "Database optimized"
74
  msgstr ""
75
 
76
+ #: adrotate-functions.php:817
77
  msgid "Database repaired"
78
  msgstr ""
79
 
80
+ #: adrotate-functions.php:821
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr ""
83
 
84
+ #: adrotate-functions.php:825
85
+ msgid "Cleanup complete"
86
  msgstr ""
87
 
88
+ #: adrotate-functions.php:830
89
  msgid "Action prohibited"
90
  msgstr ""
91
 
92
+ #: adrotate-functions.php:834
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:838
99
  msgid "No data found in selected time period"
100
  msgstr ""
101
 
102
+ #: adrotate-functions.php:842
103
  msgid "Database can only be optimized or cleaned once every hour"
104
  msgstr ""
105
 
106
+ #: adrotate-functions.php:846
107
  msgid "Form can not be (partially) empty!"
108
  msgstr ""
109
 
110
+ #: adrotate-functions.php:850
111
  msgid "No ads found."
112
  msgstr ""
113
 
114
+ #: adrotate-functions.php:854
115
  msgid "Unexpected error"
116
  msgstr ""
117
 
118
+ #: adrotate-manage-publisher.php:665
119
  msgid "AdRotate Advertiser"
120
  msgstr ""
121
 
122
+ #: adrotate-output.php:551
123
  msgid "Oh no! Something went wrong!"
124
  msgstr ""
125
 
126
+ #: adrotate-output.php:552
127
  msgid ""
128
  "WordPress was unable to verify the authenticity of the url you have clicked. "
129
  "Verify if the url used is valid or log in via your browser."
130
  msgstr ""
131
 
132
+ #: adrotate-output.php:553
133
  msgid ""
134
  "If you have received the url you want to visit via email, you are being "
135
  "tricked!"
136
  msgstr ""
137
 
138
+ #: adrotate-output.php:554
139
  msgid "Contact support if the issue persists:"
140
  msgstr ""
141
 
142
+ #: adrotate-output.php:569
143
  msgid ""
144
  "Error, Ad is not available at this time due to schedule/geolocation "
145
  "restrictions or does not exist!"
146
  msgstr ""
147
 
148
+ #: adrotate-output.php:571
149
  msgid ""
150
  "Error, Ad is not available at this time due to schedule/geolocation "
151
  "restrictions!"
152
  msgstr ""
153
 
154
+ #: adrotate-output.php:578 adrotate-output.php:580
155
  msgid ""
156
  "Either there are no banners, they are disabled or none qualified for this "
157
  "location!"
158
  msgstr ""
159
 
160
+ #: adrotate-output.php:586
161
  msgid "Error, no Ad ID set! Check your syntax!"
162
  msgstr ""
163
 
164
+ #: adrotate-output.php:592
165
  msgid "Error, no group ID set! Check your syntax!"
166
  msgstr ""
167
 
168
+ #: adrotate-output.php:597
169
  msgid "Error, group does not exist! Check your syntax!"
170
  msgstr ""
171
 
172
+ #: adrotate-output.php:603
173
  msgid ""
174
  "There was an error locating the database tables for AdRotate. Please "
175
  "deactivate and re-activate AdRotate from the plugin page!!"
176
  msgstr ""
177
 
178
+ #: adrotate-output.php:603
179
  msgid "If this does not solve the issue please seek support at"
180
  msgstr ""
181
 
182
+ #: adrotate-output.php:609
183
  msgid "An unknown error occured."
184
  msgstr ""
185
 
186
+ #: adrotate-output.php:628 adrotate-output.php:631 adrotate-output.php:635
187
  msgid "Check adverts"
188
  msgstr ""
189
 
190
+ #: adrotate-output.php:640
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:643
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:648
203
  msgid "Your AdRotate Banner folder is not writable or does not exist."
204
  msgstr ""
205
 
206
+ #: adrotate-output.php:688 dashboard/adrotatepro.php:87
207
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
208
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
209
+ #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
210
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:97 dashboard/info.php:98
211
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:104
212
+ #: dashboard/info.php:105 dashboard/info.php:106 dashboard/info.php:107
213
  #: dashboard/settings/geotargeting.php:35
214
  msgid "Buy now"
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:689
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:689
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:689
230
  msgid "Thank you for your purchase!"
231
  msgstr ""
232
 
233
+ #: adrotate-output.php:752
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:752
240
  msgid "manuals"
241
  msgstr ""
242
 
243
+ #: adrotate-output.php:752 adrotate-output.php:822
244
  msgid "and"
245
  msgstr ""
246
 
247
+ #: adrotate-output.php:752
248
  msgid "forums"
249
  msgstr ""
250
 
251
+ #: adrotate-output.php:785
252
  msgid "Useful Links"
253
  msgstr ""
254
 
255
+ #: adrotate-output.php:786
256
  msgid "Useful links to learn more about AdRotate"
257
  msgstr ""
258
 
259
+ #: adrotate-output.php:788
260
  msgid "AdRotate website"
261
  msgstr ""
262
 
263
+ #: adrotate-output.php:789
264
  msgid "Getting Started With AdRotate"
265
  msgstr ""
266
 
267
+ #: adrotate-output.php:790
268
  msgid "AdRotate manuals"
269
  msgstr ""
270
 
271
+ #: adrotate-output.php:791
272
  msgid "AdRotate Support Forum"
273
  msgstr ""
274
 
275
+ #: adrotate-output.php:814 dashboard/info.php:49
276
  msgid "Support AdRotate"
277
  msgstr ""
278
 
279
+ #: adrotate-output.php:815
280
  msgid "Check out my website"
281
  msgstr ""
282
 
283
+ #: adrotate-output.php:822
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:822
290
  msgid "If you find AdRotate useful please leave your"
291
  msgstr ""
292
 
293
+ #: adrotate-output.php:822
294
  msgid "rating"
295
  msgstr ""
296
 
297
+ #: adrotate-output.php:822
298
  msgid "review"
299
  msgstr ""
300
 
301
+ #: adrotate-output.php:822
302
  msgid "on WordPress.org to help AdRotate grow in a positive way"
303
  msgstr ""
304
 
305
+ #: adrotate-output.php:848 dashboard/settings/notifications.php:50
306
  #: dashboard/settings/notifications.php:80
307
  msgid "Available in AdRotate Pro"
308
  msgstr ""
309
 
310
+ #: adrotate-output.php:848
311
  msgid "More information..."
312
  msgstr ""
313
 
314
+ #: adrotate-output.php:849
315
  msgid "This feature is available in AdRotate Pro"
316
  msgstr ""
317
 
318
+ #: adrotate-output.php:849
319
  msgid "Learn more"
320
  msgstr ""
321
 
322
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:220
323
+ #: dashboard/publisher/adverts-edit.php:241
324
  msgid "January"
325
  msgstr ""
326
 
327
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:221
328
+ #: dashboard/publisher/adverts-edit.php:242
329
  msgid "February"
330
  msgstr ""
331
 
332
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:222
333
+ #: dashboard/publisher/adverts-edit.php:243
334
  msgid "March"
335
  msgstr ""
336
 
337
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:223
338
+ #: dashboard/publisher/adverts-edit.php:244
339
  msgid "April"
340
  msgstr ""
341
 
342
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:224
343
+ #: dashboard/publisher/adverts-edit.php:245
344
  msgid "May"
345
  msgstr ""
346
 
347
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:225
348
+ #: dashboard/publisher/adverts-edit.php:246
349
  msgid "June"
350
  msgstr ""
351
 
352
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:226
353
+ #: dashboard/publisher/adverts-edit.php:247
354
  msgid "July"
355
  msgstr ""
356
 
357
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:227
358
+ #: dashboard/publisher/adverts-edit.php:248
359
  msgid "August"
360
  msgstr ""
361
 
362
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:228
363
+ #: dashboard/publisher/adverts-edit.php:249
364
  msgid "September"
365
  msgstr ""
366
 
367
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:229
368
+ #: dashboard/publisher/adverts-edit.php:250
369
  msgid "October"
370
  msgstr ""
371
 
372
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:230
373
+ #: dashboard/publisher/adverts-edit.php:251
374
  msgid "November"
375
  msgstr ""
376
 
377
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:231
378
+ #: dashboard/publisher/adverts-edit.php:252
379
  msgid "December"
380
  msgstr ""
381
 
382
+ #: adrotate-statistics.php:143
383
  msgid "Previous"
384
  msgstr ""
385
 
386
+ #: adrotate-statistics.php:145
387
  msgid "This month"
388
  msgstr ""
389
 
390
+ #: adrotate-statistics.php:146
391
  msgid "Next"
392
  msgstr ""
393
 
394
+ #: adrotate-statistics.php:232
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:103
439
  msgid "General Info"
440
  msgstr ""
441
 
442
+ #: adrotate.php:104
443
  msgid "AdRotate Pro"
444
  msgstr ""
445
 
446
+ #: adrotate.php:105 dashboard/info.php:40
447
+ #: dashboard/publisher/adverts-edit.php:458
448
  #: dashboard/publisher/groups-main.php:34
449
  msgid "Adverts"
450
  msgstr ""
451
 
452
+ #: adrotate.php:106 dashboard/info.php:44
453
  msgid "Groups"
454
  msgstr ""
455
 
456
+ #: adrotate.php:107
457
  msgid "Settings"
458
  msgstr ""
459
 
460
+ #: adrotate.php:125
461
  msgid "AdRotate Info"
462
  msgstr ""
463
 
464
+ #: adrotate.php:143
465
  msgid "AdRotate Professional"
466
  msgstr ""
467
 
468
+ #: adrotate.php:183
469
  msgid "Advert Management"
470
  msgstr ""
471
 
472
+ #: adrotate.php:241 adrotate.php:308
473
  msgid "Manage"
474
  msgstr ""
475
 
476
+ #: adrotate.php:242 adrotate.php:309
477
  msgid "Add New"
478
  msgstr ""
479
 
480
+ #: adrotate.php:302
481
  msgid "Group Management"
482
  msgstr ""
483
 
484
+ #: adrotate.php:311
485
  msgid "Report"
486
  msgstr ""
487
 
488
+ #: adrotate.php:356
489
  msgid "AdRotate Settings"
490
  msgstr ""
491
 
492
+ #: adrotate.php:361
493
+ msgid "General"
494
+ msgstr ""
495
+
496
+ #: adrotate.php:362 dashboard/settings/notifications.php:18
497
+ msgid "Notifications"
498
+ msgstr ""
499
+
500
+ #: adrotate.php:363 dashboard/publisher/adverts-disabled.php:69
501
+ #: dashboard/publisher/adverts-error.php:63
502
+ #: dashboard/publisher/adverts-main.php:81
503
+ #: dashboard/publisher/groups-main.php:70
504
+ msgid "Stats"
505
+ msgstr ""
506
+
507
+ #: adrotate.php:364 dashboard/publisher/adverts-edit.php:359
508
+ #: dashboard/publisher/groups-edit.php:180
509
+ #: dashboard/settings/advertisers.php:38
510
+ msgid "Geo Targeting"
511
+ msgstr ""
512
+
513
+ #: adrotate.php:365 dashboard/settings/notifications.php:72
514
+ msgid "Advertisers"
515
+ msgstr ""
516
+
517
+ #: adrotate.php:366 dashboard/settings/roles.php:17
518
+ msgid "Roles"
519
+ msgstr ""
520
+
521
+ #: adrotate.php:367
522
+ msgid "Misc"
523
+ msgstr ""
524
+
525
+ #: adrotate.php:368 dashboard/settings/maintenance.php:16
526
+ msgid "Maintenance"
527
+ msgstr ""
528
+
529
  #: dashboard/adrotatepro.php:20
530
  msgid "Satisfy your advertisers"
531
  msgstr ""
575
  "forum. Get a solution (usually) within one business day."
576
  msgstr ""
577
 
578
+ #: dashboard/adrotatepro.php:48
579
  msgid "AdRotate is brought to you by"
580
  msgstr ""
581
 
582
+ #: dashboard/adrotatepro.php:51
583
+ msgid ""
584
+ "I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner "
585
+ "to find out more about me and what I am doing!"
586
+ msgstr ""
587
+
588
+ #: dashboard/adrotatepro.php:62
589
  msgid "Schedule all campaigns with ease"
590
  msgstr ""
591
 
592
+ #: dashboard/adrotatepro.php:65
593
  msgid ""
594
  "Schedule your adverts and set up advertising campaigns based on dates you or "
595
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
598
  "schedules for adverts."
599
  msgstr ""
600
 
601
+ #: dashboard/adrotatepro.php:69
602
  msgid "Avoid adblockers"
603
  msgstr ""
604
 
605
+ #: dashboard/adrotatepro.php:72
606
  msgid ""
607
  "Try and avoid adblockers so your adverts get the exposure you want them to "
608
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
610
  "adverts smartly so these features reach their full potential!"
611
  msgstr ""
612
 
613
+ #: dashboard/adrotatepro.php:76
614
  msgid "Stay up-to-date with notifications"
615
  msgstr ""
616
 
617
+ #: dashboard/adrotatepro.php:79
618
  msgid ""
619
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
620
  "adverts expire or need your attention. Additionally, send push notifications "
622
  "or when advertisers create new adverts. Never miss an expiration date again."
623
  msgstr ""
624
 
625
+ #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
626
+ #: dashboard/info.php:93
627
  msgid "Buy AdRotate Professional"
628
  msgstr ""
629
 
630
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
631
  msgid "Single License"
632
  msgstr ""
633
 
634
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
635
+ msgid "One WordPress installation."
636
  msgstr ""
637
 
638
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
639
+ #: dashboard/info.php:98 dashboard/info.php:105
640
  msgid "Duo License"
641
  msgstr ""
642
 
643
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:98
644
+ msgid "Two WordPress installations."
645
  msgstr ""
646
 
647
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
648
+ #: dashboard/info.php:99 dashboard/info.php:106
649
  msgid "Multi License"
650
  msgstr ""
651
 
652
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:99
653
+ msgid "Up to five WordPress installations."
654
  msgstr ""
655
 
656
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
657
+ #: dashboard/info.php:100 dashboard/info.php:107
658
  msgid "Developer License"
659
  msgstr ""
660
 
661
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:100
662
  msgid "Unlimited WordPress installations and/or networks."
663
  msgstr ""
664
 
665
+ #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
666
+ #: dashboard/info.php:101 dashboard/info.php:109
667
  msgid "Compare licenses"
668
  msgstr ""
669
 
670
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
671
  msgid "Not sure which license is for you? Compare them..."
672
  msgstr ""
673
 
674
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
675
  msgid "All Licenses"
676
  msgstr ""
677
 
678
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
679
  msgid "Lifetime License"
680
  msgstr ""
681
 
682
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
683
  msgid "Single installation."
684
  msgstr ""
685
 
686
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:105
687
  msgid "Up to 2 installations."
688
  msgstr ""
689
 
690
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:106
691
  msgid "Up to 10 installations."
692
  msgstr ""
693
 
694
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:107
695
  msgid "Up to 25 installations or multisite networks."
696
  msgstr ""
697
 
698
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:108
699
  msgid ""
700
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
701
  msgstr ""
702
 
703
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
704
  msgid "Not sure which license is for you?"
705
  msgstr ""
706
 
707
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
708
  msgid "Compare Licenses"
709
  msgstr ""
710
 
711
+ #: dashboard/info.php:27
712
  msgid "Currently"
713
  msgstr ""
714
 
715
+ #: dashboard/info.php:33
716
  msgid "Your setup"
717
  msgstr ""
718
 
719
+ #: dashboard/info.php:34
720
  msgid "Adverts that need you"
721
  msgstr ""
722
 
723
+ #: dashboard/info.php:41
724
  msgid "(Almost) Expired"
725
  msgstr ""
726
 
727
+ #: dashboard/info.php:45
728
  msgid "Have errors"
729
  msgstr ""
730
 
731
+ #: dashboard/info.php:50
732
  msgid ""
733
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
734
  "for updates about me and my plugins. Thank you!"
735
  msgstr ""
736
 
737
+ #: dashboard/info.php:74
738
+ msgid "Arnan de Gans News & Updates"
739
  msgstr ""
740
 
741
+ #: dashboard/info.php:114
742
+ msgid "Join the Media.net advertising network"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
743
  msgstr ""
744
 
745
  #: dashboard/publisher/adverts-disabled.php:15
754
  msgstr ""
755
 
756
  #: dashboard/publisher/adverts-disabled.php:21
757
+ #: dashboard/publisher/adverts-edit.php:176
758
  msgid "Activate"
759
  msgstr ""
760
 
785
  msgstr ""
786
 
787
  #: dashboard/publisher/adverts-disabled.php:36
788
+ #: dashboard/publisher/adverts-error.php:41
789
  #: dashboard/publisher/adverts-main.php:40
790
  msgid "Start / End"
791
  msgstr ""
792
 
793
  #: dashboard/publisher/adverts-disabled.php:37
794
+ #: dashboard/publisher/adverts-error.php:40
 
795
  #: dashboard/publisher/adverts-main.php:41
796
+ #: dashboard/publisher/groups-edit.php:51
797
+ #: dashboard/publisher/groups-main.php:33
798
+ msgid "Name"
799
  msgstr ""
800
 
801
+ #: dashboard/publisher/adverts-disabled.php:39
802
+ #: dashboard/publisher/adverts-main.php:43
803
+ #: dashboard/publisher/groups-edit.php:333
804
  #: dashboard/publisher/groups-main.php:36
805
  msgid "Shown"
806
  msgstr ""
807
 
808
+ #: dashboard/publisher/adverts-disabled.php:40
809
+ #: dashboard/publisher/adverts-main.php:45
810
  #: dashboard/publisher/adverts-report.php:36
811
  #: dashboard/publisher/adverts-report.php:57
812
+ #: dashboard/publisher/groups-edit.php:334
813
  #: dashboard/publisher/groups-main.php:38
814
  #: dashboard/publisher/groups-report.php:37
815
  #: dashboard/publisher/groups-report.php:58
816
  msgid "Clicks"
817
  msgstr ""
818
 
819
+ #: dashboard/publisher/adverts-disabled.php:41
820
+ #: dashboard/publisher/adverts-main.php:47
821
  #: dashboard/publisher/adverts-report.php:39
822
  #: dashboard/publisher/adverts-report.php:58
823
  #: dashboard/publisher/groups-report.php:40
825
  msgid "CTR"
826
  msgstr ""
827
 
828
+ #: dashboard/publisher/adverts-disabled.php:69
829
+ #: dashboard/publisher/adverts-error.php:63
830
+ #: dashboard/publisher/adverts-main.php:81
831
  #: dashboard/publisher/groups-main.php:70
832
  msgid "Edit"
833
  msgstr ""
834
 
835
+ #: dashboard/publisher/adverts-disabled.php:69
836
+ #: dashboard/publisher/adverts-error.php:63
837
+ #: dashboard/publisher/adverts-main.php:81
 
 
 
 
 
 
 
838
  msgid "Groups:"
839
  msgstr ""
840
 
841
+ #: dashboard/publisher/adverts-edit.php:48
842
  msgid "The AdCode cannot be empty!"
843
  msgstr ""
844
 
845
+ #: dashboard/publisher/adverts-edit.php:51
846
  msgid ""
847
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
848
  "use!"
849
  msgstr ""
850
 
851
+ #: dashboard/publisher/adverts-edit.php:54
852
  msgid ""
853
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
854
  "use!"
855
  msgstr ""
856
 
857
+ #: dashboard/publisher/adverts-edit.php:57
858
  msgid ""
859
  "There is a problem saving the image. Please reset your image and re-save the "
860
  "ad!"
861
  msgstr ""
862
 
863
+ #: dashboard/publisher/adverts-edit.php:60
864
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
865
  msgstr ""
866
 
867
+ #: dashboard/publisher/adverts-edit.php:65
868
  msgid ""
869
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
870
  "the ad!"
871
  msgstr ""
872
 
873
+ #: dashboard/publisher/adverts-edit.php:68
874
  msgid "This ad is expired and currently not shown on your website!"
875
  msgstr ""
876
 
877
+ #: dashboard/publisher/adverts-edit.php:71
878
  msgid "The ad will expire in less than 2 days!"
879
  msgstr ""
880
 
881
+ #: dashboard/publisher/adverts-edit.php:74
882
  msgid "This ad will expire in less than 7 days!"
883
  msgstr ""
884
 
885
+ #: dashboard/publisher/adverts-edit.php:77
886
  msgid "This ad has been disabled and does not rotate on your site!"
887
  msgstr ""
888
 
889
+ #: dashboard/publisher/adverts-edit.php:81
890
+ msgid ""
891
+ "This advert uses the obsolete Responsive feature. Please use the more "
892
+ "reliable Mobile feature! Saving the advert will disable the responsive "
893
+ "option silently."
894
+ msgstr ""
895
+
896
+ #: dashboard/publisher/adverts-edit.php:106
897
  msgid "New Advert"
898
  msgstr ""
899
 
900
+ #: dashboard/publisher/adverts-edit.php:108
901
  msgid "Edit Advert"
902
  msgstr ""
903
 
904
+ #: dashboard/publisher/adverts-edit.php:114
905
+ msgid "Title"
906
  msgstr ""
907
 
908
  #: dashboard/publisher/adverts-edit.php:120
909
+ msgid "AdCode"
910
+ msgstr ""
911
+
912
+ #: dashboard/publisher/adverts-edit.php:125
913
  msgid "Basic Examples:"
914
  msgstr ""
915
 
916
+ #: dashboard/publisher/adverts-edit.php:129
917
+ msgid "Get better adverts from Media.net"
918
+ msgstr ""
919
+
920
+ #: dashboard/publisher/adverts-edit.php:134
921
  msgid "Useful tags"
922
  msgstr ""
923
 
924
+ #: dashboard/publisher/adverts-edit.php:136
925
  msgid "Insert the advert ID Number."
926
  msgstr ""
927
 
928
+ #: dashboard/publisher/adverts-edit.php:136
929
  msgid "Required when selecting a asset below."
930
  msgstr ""
931
 
932
+ #: dashboard/publisher/adverts-edit.php:136
933
  msgid "Insert the advert name."
934
  msgstr ""
935
 
936
+ #: dashboard/publisher/adverts-edit.php:136
937
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
938
  msgstr ""
939
 
940
+ #: dashboard/publisher/adverts-edit.php:136
941
  msgid "Add inside the <a> tag to open advert in a new window."
942
  msgstr ""
943
 
944
+ #: dashboard/publisher/adverts-edit.php:136
945
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
946
  msgstr ""
947
 
948
+ #: dashboard/publisher/adverts-edit.php:136
949
  msgid ""
950
  "Place the cursor in your AdCode where you want to add any of these tags and "
951
  "click to add it."
952
  msgstr ""
953
 
954
+ #: dashboard/publisher/adverts-edit.php:141
955
  msgid "Preview"
956
  msgstr ""
957
 
958
+ #: dashboard/publisher/adverts-edit.php:144
959
  msgid ""
960
  "Note: While this preview is an accurate one, it might look different then it "
961
  "does on the website."
962
  msgstr ""
963
 
964
+ #: dashboard/publisher/adverts-edit.php:145
965
  msgid ""
966
  "This is because of CSS differences. Your themes CSS file is not active here!"
967
  msgstr ""
968
 
969
+ #: dashboard/publisher/adverts-edit.php:150
970
  msgid "Banner asset"
971
  msgstr ""
972
 
973
+ #: dashboard/publisher/adverts-edit.php:153
974
  msgid "WordPress media:"
975
  msgstr ""
976
 
977
+ #: dashboard/publisher/adverts-edit.php:153
978
  msgid "Select Banner"
979
  msgstr ""
980
 
981
+ #: dashboard/publisher/adverts-edit.php:155
982
  msgid "- OR -"
983
  msgstr ""
984
 
985
+ #: dashboard/publisher/adverts-edit.php:157
986
  msgid "Banner folder:"
987
  msgstr ""
988
 
989
+ #: dashboard/publisher/adverts-edit.php:158
990
  msgid "No image selected"
991
  msgstr ""
992
 
993
+ #: dashboard/publisher/adverts-edit.php:162
994
  msgid "Use %asset% in the adcode instead of the file path."
995
  msgstr ""
996
 
997
+ #: dashboard/publisher/adverts-edit.php:162
998
  msgid ""
999
  "Use either the text field or the dropdown. If the textfield has content that "
1000
  "field has priority."
1001
  msgstr ""
1002
 
1003
+ #: dashboard/publisher/adverts-edit.php:167
1004
  #: dashboard/settings/statistics.php:17
1005
  msgid "Statistics"
1006
  msgstr ""
1007
 
1008
+ #: dashboard/publisher/adverts-edit.php:169
1009
  msgid "Enable click and impression tracking for this advert."
1010
  msgstr ""
1011
 
1012
+ #: dashboard/publisher/adverts-edit.php:170
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:180
1020
  msgid "Yes, this ad will be used"
1021
  msgstr ""
1022
 
1023
+ #: dashboard/publisher/adverts-edit.php:181
1024
  msgid "No, do not show this ad anywhere"
1025
  msgstr ""
1026
 
1027
+ #: dashboard/publisher/adverts-edit.php:188
1028
+ #: dashboard/publisher/adverts-main.php:105
1029
  #: dashboard/publisher/groups-edit.php:71
1030
  #: dashboard/publisher/groups-main.php:89
1031
  msgid "Get more features with AdRotate Pro."
1032
  msgstr ""
1033
 
1034
+ #: dashboard/publisher/adverts-edit.php:188
1035
+ #: dashboard/publisher/adverts-main.php:105
1036
  #: dashboard/publisher/groups-edit.php:71
1037
  #: dashboard/publisher/groups-main.php:89
1038
  msgid "More information"
1039
  msgstr ""
1040
 
1041
+ #: dashboard/publisher/adverts-edit.php:191
1042
+ #: dashboard/publisher/adverts-edit.php:291
1043
+ #: dashboard/publisher/adverts-edit.php:447
1044
+ #: dashboard/publisher/adverts-edit.php:488
1045
  msgid "Save Advert"
1046
  msgstr ""
1047
 
1048
+ #: dashboard/publisher/adverts-edit.php:192
1049
+ #: dashboard/publisher/adverts-edit.php:292
1050
+ #: dashboard/publisher/adverts-edit.php:448
1051
+ #: dashboard/publisher/adverts-edit.php:489
1052
  #: dashboard/publisher/groups-edit.php:150
1053
  #: dashboard/publisher/groups-edit.php:299
1054
  #: dashboard/publisher/groups-edit.php:391
1055
  msgid "Cancel"
1056
  msgstr ""
1057
 
1058
+ #: dashboard/publisher/adverts-edit.php:195
1059
+ #: dashboard/publisher/adverts-edit.php:430
1060
  #: dashboard/publisher/groups-edit.php:132
1061
  #: dashboard/publisher/groups-edit.php:281
1062
  msgid "Usage"
1063
  msgstr ""
1064
 
1065
+ #: dashboard/publisher/adverts-edit.php:199
1066
+ #: dashboard/publisher/adverts-edit.php:434
1067
  #: dashboard/publisher/groups-edit.php:136
1068
  #: dashboard/publisher/groups-edit.php:205
1069
  #: dashboard/publisher/groups-edit.php:245
1071
  msgid "Widget"
1072
  msgstr ""
1073
 
1074
+ #: dashboard/publisher/adverts-edit.php:200
1075
+ #: dashboard/publisher/adverts-edit.php:435
1076
  msgid ""
1077
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1078
  "and select the advert or the group the advert is in."
1079
  msgstr ""
1080
 
1081
+ #: dashboard/publisher/adverts-edit.php:203
1082
+ #: dashboard/publisher/adverts-edit.php:438
1083
  #: dashboard/publisher/groups-edit.php:140
1084
  #: dashboard/publisher/groups-edit.php:289
1085
  msgid "In a post or page"
1086
  msgstr ""
1087
 
1088
+ #: dashboard/publisher/adverts-edit.php:205
1089
+ #: dashboard/publisher/adverts-edit.php:440
1090
  #: dashboard/publisher/groups-edit.php:142
1091
  #: dashboard/publisher/groups-edit.php:291
1092
  msgid "Directly in a theme"
1093
  msgstr ""
1094
 
1095
+ #: dashboard/publisher/adverts-edit.php:211
1096
  msgid "Schedule your advert"
1097
  msgstr ""
1098
 
1099
+ #: dashboard/publisher/adverts-edit.php:215
1100
  msgid "Start date (day/month/year)"
1101
  msgstr ""
1102
 
1103
+ #: dashboard/publisher/adverts-edit.php:236
1104
  msgid "End date (day/month/year)"
1105
  msgstr ""
1106
 
1107
+ #: dashboard/publisher/adverts-edit.php:259
1108
  msgid "Start time (hh:mm)"
1109
  msgstr ""
1110
 
1111
+ #: dashboard/publisher/adverts-edit.php:266
1112
  msgid "End time (hh:mm)"
1113
  msgstr ""
1114
 
1115
+ #: dashboard/publisher/adverts-edit.php:276
1116
  msgid "Maximum Clicks"
1117
  msgstr ""
1118
 
1119
+ #: dashboard/publisher/adverts-edit.php:277
1120
+ #: dashboard/publisher/adverts-edit.php:279
1121
  msgid "Leave empty or 0 to skip this."
1122
  msgstr ""
1123
 
1124
+ #: dashboard/publisher/adverts-edit.php:278
1125
  msgid "Maximum Impressions"
1126
  msgstr ""
1127
 
1128
+ #: dashboard/publisher/adverts-edit.php:283
1129
  msgid "Important"
1130
  msgstr ""
1131
 
1132
+ #: dashboard/publisher/adverts-edit.php:284
1133
  msgid ""
1134
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1135
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1136
  "14:00 hours. 6AM is 6:00 hours."
1137
  msgstr ""
1138
 
1139
+ #: dashboard/publisher/adverts-edit.php:288
1140
  msgid ""
1141
  "Create multiple and more advanced schedules for each advert with AdRotate "
1142
  "Pro."
1143
  msgstr ""
1144
 
1145
+ #: dashboard/publisher/adverts-edit.php:288
1146
+ #: dashboard/publisher/adverts-edit.php:357
1147
+ #: dashboard/publisher/adverts-edit.php:428
1148
  #: dashboard/publisher/groups-edit.php:191
1149
  msgid "Upgrade today"
1150
  msgstr ""
1151
 
1152
+ #: dashboard/publisher/adverts-edit.php:295
1153
  #: dashboard/publisher/groups-edit.php:153
1154
  msgid "Advanced"
1155
  msgstr ""
1156
 
1157
+ #: dashboard/publisher/adverts-edit.php:296
1158
+ #: dashboard/publisher/adverts-edit.php:360
1159
  msgid "Available in AdRotate Pro!"
1160
  msgstr ""
1161
 
1162
+ #: dashboard/publisher/adverts-edit.php:301
1163
+ #: dashboard/publisher/groups-edit.php:331
 
1164
  msgid "Weight"
1165
  msgstr ""
1166
 
1167
+ #: dashboard/publisher/adverts-edit.php:304
1168
  msgid "Few impressions"
1169
  msgstr ""
1170
 
1171
+ #: dashboard/publisher/adverts-edit.php:309
1172
  msgid "Less than average"
1173
  msgstr ""
1174
 
1175
+ #: dashboard/publisher/adverts-edit.php:314
1176
  msgid "Normal impressions"
1177
  msgstr ""
1178
 
1179
+ #: dashboard/publisher/adverts-edit.php:319
1180
  #, fuzzy
1181
  msgid "More than average"
1182
  msgstr "Plus d'informations..."
1183
 
1184
+ #: dashboard/publisher/adverts-edit.php:324
1185
  msgid "Many impressions"
1186
  msgstr ""
1187
 
1188
+ #: dashboard/publisher/adverts-edit.php:329
1189
  msgid "Mobile"
1190
  msgstr ""
1191
 
1192
+ #: dashboard/publisher/adverts-edit.php:331
1193
  msgid "Computers"
1194
  msgstr ""
1195
 
1196
+ #: dashboard/publisher/adverts-edit.php:334
1197
  msgid "Smartphones"
1198
  msgstr ""
1199
 
1200
+ #: dashboard/publisher/adverts-edit.php:337
1201
  msgid "Tablets"
1202
  msgstr ""
1203
 
1204
+ #: dashboard/publisher/adverts-edit.php:340
1205
  msgid ""
1206
  "Also enable mobile support in the group this advert goes in or these are "
1207
  "ignored."
1208
  msgstr ""
1209
 
1210
+ #: dashboard/publisher/adverts-edit.php:340
1211
+ msgid "Operating system detection only detects iOS/Android/Other or neither."
 
 
1212
  msgstr ""
1213
 
1214
+ #: dashboard/publisher/adverts-edit.php:344
1215
  msgid "Mobile OS"
1216
  msgstr ""
1217
 
1218
+ #: dashboard/publisher/adverts-edit.php:346
1219
  msgid "iOS"
1220
  msgstr ""
1221
 
1222
+ #: dashboard/publisher/adverts-edit.php:349
1223
  msgid "Android"
1224
  msgstr ""
1225
 
1226
+ #: dashboard/publisher/adverts-edit.php:352
1227
  msgid "Others"
1228
  msgstr ""
1229
 
1230
+ #: dashboard/publisher/adverts-edit.php:357
1231
  msgid ""
1232
  "With AdRotate Pro you can easily select which devices and mobile operating "
1233
  "systems the advert should show on!"
1234
  msgstr ""
1235
 
1236
+ #: dashboard/publisher/adverts-edit.php:360
 
 
 
 
 
 
1237
  msgid ""
1238
  "Assign the advert to a group and enable that group to use Geo Targeting."
1239
  msgstr ""
1240
 
1241
+ #: dashboard/publisher/adverts-edit.php:418
1242
  msgid "A comma separated list of items:"
1243
  msgstr ""
1244
 
1245
+ #: dashboard/publisher/adverts-edit.php:418
1246
  msgid ""
1247
  "AdRotate does not check the validity of names so make sure you spell them "
1248
  "correctly!"
1249
  msgstr ""
1250
 
1251
+ #: dashboard/publisher/adverts-edit.php:428
1252
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1253
  msgstr ""
1254
 
1255
+ #: dashboard/publisher/adverts-edit.php:452
1256
  msgid "Select Groups"
1257
  msgstr ""
1258
 
1259
+ #: dashboard/publisher/adverts-edit.php:457
1260
  msgid "ID - Name"
1261
  msgstr ""
1262
 
1263
+ #: dashboard/publisher/adverts-edit.php:467
1264
  #: dashboard/publisher/groups-main.php:60
1265
  #: dashboard/settings/geotargeting.php:49
1266
  msgid "Default"
1267
  msgstr ""
1268
 
1269
+ #: dashboard/publisher/adverts-edit.php:468
1270
  #: dashboard/publisher/groups-main.php:61
1271
  msgid "Dynamic"
1272
  msgstr ""
1273
 
1274
+ #: dashboard/publisher/adverts-edit.php:468
1275
  #: dashboard/publisher/groups-main.php:61
1276
  msgid "second rotation"
1277
  msgstr ""
1278
 
1279
+ #: dashboard/publisher/adverts-edit.php:469
1280
  #: dashboard/publisher/groups-main.php:62
1281
  msgid "Block"
1282
  msgstr ""
1283
 
1284
+ #: dashboard/publisher/adverts-edit.php:469
1285
  #: dashboard/publisher/groups-main.php:62
1286
  msgid "grid"
1287
  msgstr ""
1288
 
1289
+ #: dashboard/publisher/adverts-edit.php:470
1290
  #: dashboard/publisher/groups-edit.php:199
1291
  #: dashboard/publisher/groups-main.php:63
1292
  msgid "Post Injection"
1293
  msgstr ""
1294
 
1295
+ #: dashboard/publisher/adverts-edit.php:471
1296
  msgid "Geolocation"
1297
  msgstr ""
1298
 
1299
+ #: dashboard/publisher/adverts-edit.php:477
1300
  #: dashboard/publisher/groups-edit.php:57
1301
  #: dashboard/publisher/groups-main.php:70
1302
  msgid "Mode"
1337
  msgstr ""
1338
 
1339
  #: dashboard/publisher/adverts-error.php:71
1340
+ msgid "Configuration errors"
 
1341
  msgstr ""
1342
 
1343
  #: dashboard/publisher/adverts-error.php:72
1344
+ msgid "Expires soon"
 
1345
  msgstr ""
1346
 
1347
  #: dashboard/publisher/adverts-error.php:73
1348
+ #: dashboard/settings/maintenance.php:64
1349
+ msgid "Expired"
1350
  msgstr ""
1351
 
1352
  #: dashboard/publisher/adverts-main.php:12
1354
  msgstr ""
1355
 
1356
  #: dashboard/publisher/adverts-main.php:24
1357
+ msgid "Export to CSV"
1358
  msgstr ""
1359
 
1360
+ #: dashboard/publisher/adverts-main.php:44
1361
+ #: dashboard/publisher/adverts-main.php:46
1362
  #: dashboard/publisher/groups-main.php:37
1363
  #: dashboard/publisher/groups-main.php:39
1364
  msgid "Today"
1365
  msgstr ""
1366
 
1367
+ #: dashboard/publisher/adverts-main.php:100
1368
  msgid "No adverts created yet!"
1369
  msgstr ""
1370
 
1416
  msgid "Edit Group"
1417
  msgstr ""
1418
 
 
 
 
 
 
1419
  #: dashboard/publisher/groups-edit.php:60
1420
  msgid "Default - Show one ad at a time"
1421
  msgstr ""
1687
  msgid "Choose adverts"
1688
  msgstr ""
1689
 
1690
+ #: dashboard/publisher/groups-edit.php:330
1691
  msgid "Visible until"
1692
  msgstr ""
1693
 
1695
  msgid "No adverts created!"
1696
  msgstr ""
1697
 
1698
+ #: dashboard/publisher/groups-edit.php:384
1699
+ msgid "Configuration errors."
1700
+ msgstr ""
1701
+
1702
+ #: dashboard/publisher/groups-edit.php:385
1703
+ msgid "Expires soon."
1704
+ msgstr ""
1705
+
1706
+ #: dashboard/publisher/groups-edit.php:386
1707
+ msgid "Has expired."
1708
+ msgstr ""
1709
+
1710
  #: dashboard/publisher/groups-main.php:12
1711
  msgid "Manage Groups"
1712
  msgstr ""
1728
  msgstr ""
1729
 
1730
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1731
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
 
1732
  msgid "OK to continue, CANCEL to stop."
1733
  msgstr ""
1734
 
1793
  msgstr ""
1794
 
1795
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1796
+ #: dashboard/settings/maintenance.php:116 dashboard/settings/misc.php:43
1797
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1798
+ #: dashboard/settings/statistics.php:73
1799
  msgid "Update Options"
1800
  msgstr ""
1801
 
1891
  msgstr ""
1892
 
1893
  #: dashboard/settings/general.php:50
1894
+ msgid "Set a folder where your banner images will be stored."
1895
  msgstr ""
1896
 
1897
  #: dashboard/settings/general.php:53
1898
+ msgid "Folder name"
1899
  msgstr ""
1900
 
1901
  #: dashboard/settings/general.php:55
1902
+ msgid "(Default: banners)."
1903
  msgstr ""
1904
 
1905
  #: dashboard/settings/general.php:56
2038
  msgid "Password/License Key"
2039
  msgstr ""
2040
 
 
 
 
 
2041
  #: dashboard/settings/maintenance.php:17
2042
  msgid ""
2043
  "Use these functions when you notice your database is slow, unresponsive and "
2072
  "made. This can vary from nothing to hundreds of KiB of data."
2073
  msgstr ""
2074
 
2075
+ #: dashboard/settings/maintenance.php:28
2076
+ msgid "Clean-up Database and Files"
2077
+ msgstr ""
2078
+
2079
+ #: dashboard/settings/maintenance.php:30
2080
  msgid "Clean-up Database"
2081
  msgstr ""
2082
 
2083
  #: dashboard/settings/maintenance.php:30
2084
  msgid ""
2085
+ "You are about to clean up your database. This may delete expired schedules, "
2086
+ "older statistics and try to delete export files"
2087
  msgstr ""
2088
 
2089
  #: dashboard/settings/maintenance.php:30
2090
  msgid "Are you sure you want to continue?"
2091
  msgstr ""
2092
 
2093
+ #: dashboard/settings/maintenance.php:30
2094
+ msgid "THIS ACTION CAN NOT BE UNDONE!"
 
2095
  msgstr ""
2096
 
2097
  #: dashboard/settings/maintenance.php:31
2098
+ msgid "Delete stats older than 356 days."
2099
  msgstr ""
2100
 
2101
  #: dashboard/settings/maintenance.php:32
2102
+ msgid "Delete leftover export files."
2103
  msgstr ""
2104
 
2105
  #: dashboard/settings/maintenance.php:33
2109
  msgstr ""
2110
 
2111
  #: dashboard/settings/maintenance.php:33
2112
+ #, fuzzy
2113
  msgid ""
2114
+ "Additionally you can delete statistics and/or unused export files. This will "
2115
+ "improve the speed of your site."
2116
  msgstr ""
2117
+ "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
2118
+ "d'améliorer la vitesse de votre site."
2119
 
2120
  #: dashboard/settings/maintenance.php:37
2121
  msgid "Re-evaluate Ads"
2129
  msgid "You are about to check all ads for errors."
2130
  msgstr ""
2131
 
2132
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
2133
+ msgid "This might take a while and may slow down your site during this action!"
2134
+ msgstr ""
2135
+
2136
  #: dashboard/settings/maintenance.php:40
2137
  msgid ""
2138
  "This will apply all evaluation rules to all ads to see if any error slipped "
2177
  msgstr ""
2178
 
2179
  #: dashboard/settings/maintenance.php:54
2180
+ #, fuzzy
2181
+ msgid "Disable timers for clicks and impressions."
2182
+ msgstr "Suivi des clicks et des impressions."
 
2183
 
2184
  #: dashboard/settings/maintenance.php:55
2185
  msgid "Temporarily disable encryption on the redirect url."
2201
  msgid "Error"
2202
  msgstr ""
2203
 
 
 
 
 
2204
  #: dashboard/settings/maintenance.php:64
2205
  msgid "Expires Soon"
2206
  msgstr ""
2213
  msgid "Banners/assets Folder"
2214
  msgstr ""
2215
 
2216
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2217
  msgid "Exists and appears writable"
2218
  msgstr ""
2219
 
2220
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2221
  msgid "Not writable or does not exist"
2222
  msgstr ""
2223
 
2224
+ #: dashboard/settings/maintenance.php:76
2225
  msgid "Reports Folder"
2226
  msgstr ""
2227
 
2228
+ #: dashboard/settings/maintenance.php:85
2229
  msgid "Advert evaluation"
2230
  msgstr ""
2231
 
2232
+ #: dashboard/settings/maintenance.php:86
2233
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2234
  msgstr ""
2235
 
2236
+ #: dashboard/settings/maintenance.php:87
2237
+ msgid "Clean Trackerdata"
2238
  msgstr ""
2239
 
2240
+ #: dashboard/settings/maintenance.php:88
2241
+ #, fuzzy
2242
+ msgid "Not scheduled!"
2243
+ msgstr "Planning"
2244
+
2245
+ #: dashboard/settings/maintenance.php:91
2246
+ msgid "Background tasks"
2247
+ msgstr ""
2248
+
2249
+ #: dashboard/settings/maintenance.php:93
2250
+ msgid "Reset background tasks"
2251
+ msgstr ""
2252
+
2253
+ #: dashboard/settings/maintenance.php:98
2254
  msgid "Internal Versions"
2255
  msgstr ""
2256
 
2257
+ #: dashboard/settings/maintenance.php:99
2258
  msgid ""
2259
  "Unless you experience database issues or a warning shows below, these "
2260
  "numbers are not really relevant for troubleshooting. Support may ask for "
2261
  "them to verify your database status."
2262
  msgstr ""
2263
 
2264
+ #: dashboard/settings/maintenance.php:102
2265
  msgid "AdRotate version"
2266
  msgstr ""
2267
 
2268
+ #: dashboard/settings/maintenance.php:103
2269
+ #: dashboard/settings/maintenance.php:105
2270
  msgid "Current:"
2271
  msgstr ""
2272
 
2273
+ #: dashboard/settings/maintenance.php:103
2274
+ #: dashboard/settings/maintenance.php:105
2275
  msgid "Should be:"
2276
  msgstr ""
2277
 
2278
+ #: dashboard/settings/maintenance.php:103
2279
+ #: dashboard/settings/maintenance.php:105
2280
  msgid "Previous:"
2281
  msgstr ""
2282
 
2283
+ #: dashboard/settings/maintenance.php:104
2284
  msgid "Database version"
2285
  msgstr ""
2286
 
2287
+ #: dashboard/settings/maintenance.php:108
2288
+ msgid "Manual upgrade"
2289
+ msgstr ""
2290
+
2291
+ #: dashboard/settings/maintenance.php:110
2292
  msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2293
  msgstr ""
2294
 
2295
+ #: dashboard/settings/maintenance.php:110
2296
  msgid "Make sure you have a database backup!"
2297
  msgstr ""
2298
 
2299
+ #: dashboard/settings/maintenance.php:110
2300
+ #, fuzzy
2301
+ msgid "Run updater"
2302
+ msgstr "Publicité mise à jour"
 
2303
 
2304
  #: dashboard/settings/misc.php:16
2305
  msgid "Miscellaneous"
2365
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2366
  msgstr ""
2367
 
 
 
 
 
2368
  #: dashboard/settings/notifications.php:19
2369
  msgid "Set up who gets notifications if ads need your attention."
2370
  msgstr ""
2495
  "separated. This field may not be empty!"
2496
  msgstr ""
2497
 
 
 
 
 
2498
  #: dashboard/settings/notifications.php:75
2499
  msgid ""
2500
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2548
  msgid "and get your API token"
2549
  msgstr ""
2550
 
 
 
 
 
2551
  #: dashboard/settings/roles.php:18
2552
  msgid "Who has access to what?"
2553
  msgstr ""
2691
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2692
  msgstr ""
2693
 
 
 
 
 
 
 
 
 
 
 
2694
  #, fuzzy
2695
  #~ msgid ""
2696
  #~ "Upload your images to the banner folder and make sure the filename is in "
2765
  #~ msgid "Ad created"
2766
  #~ msgstr "Publicité créée"
2767
 
 
 
 
 
2768
  #, fuzzy
2769
  #~ msgid ""
2770
  #~ "The ad was saved but has an issue which might prevent it from working "
2879
  #~ "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
2880
  #~ "registres vides."
2881
 
 
 
 
 
 
 
 
 
2882
  #, fuzzy
2883
  #~ msgid ""
2884
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3193
  #~ msgid "Enable stats"
3194
  #~ msgstr "Statistiques activés"
3195
 
 
 
 
 
3196
  #, fuzzy
3197
  #~ msgid ""
3198
  #~ "Activate AdRotate on unlimited WordPress installations and/or networks."
3306
  #~ msgid "Target your audience with Geo Location in AdRotate Pro"
3307
  #~ msgstr "Ciblez votre audience avec la géolocation dans AdRotate Pro"
3308
 
 
 
 
 
3309
  #, fuzzy
3310
  #~ msgid "From when to when is the advert visible?"
3311
  #~ msgstr ""
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: 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,118 +13,120 @@ 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.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
 
123
- #: adrotate-output.php:575
124
  msgid "Oh no! Something went wrong!"
125
  msgstr "¡Oh, no! Algo salió mal!"
126
 
127
- #: adrotate-output.php:576
128
  msgid ""
129
  "WordPress was unable to verify the authenticity of the url you have clicked. "
130
  "Verify if the url used is valid or log in via your browser."
@@ -132,7 +134,7 @@ msgstr ""
132
  "WordPress no pudo verificar la autenticidad de la url que ha hecho clic. "
133
  "Verificar si la url utilizada es válida o acceder a través del navegador."
134
 
135
- #: adrotate-output.php:577
136
  msgid ""
137
  "If you have received the url you want to visit via email, you are being "
138
  "tricked!"
@@ -140,11 +142,11 @@ msgstr ""
140
  "Si usted ha recibido la url que desea visitar a través del correo "
141
  "electrónico, es posible que le esten engañando!"
142
 
143
- #: adrotate-output.php:578
144
  msgid "Contact support if the issue persists:"
145
  msgstr "Si el problema persiste, contacte con el soporte:"
146
 
147
- #: adrotate-output.php:593
148
  msgid ""
149
  "Error, Ad is not available at this time due to schedule/geolocation "
150
  "restrictions or does not exist!"
@@ -152,7 +154,7 @@ msgstr ""
152
  "ERROR: El anuncio no está disponible en este momento debido a las "
153
  "restricciones de programa, de geolocalización o no existe!"
154
 
155
- #: adrotate-output.php:595
156
  msgid ""
157
  "Error, Ad is not available at this time due to schedule/geolocation "
158
  "restrictions!"
@@ -160,7 +162,7 @@ msgstr ""
160
  "ERROR: El anuncio no está disponible en este momento debido a las "
161
  "restricciones restricciones de programa o geolocalización!"
162
 
163
- #: adrotate-output.php:602 adrotate-output.php:604
164
  msgid ""
165
  "Either there are no banners, they are disabled or none qualified for this "
166
  "location!"
@@ -168,19 +170,19 @@ msgstr ""
168
  "O bien no hay banners, estan desactivados o no estan programados para esta "
169
  "ubicación!"
170
 
171
- #: adrotate-output.php:610
172
  msgid "Error, no Ad ID set! Check your syntax!"
173
  msgstr "ERROR: No se ha asignado el ID del anuncio! Compruebe la sintaxis!"
174
 
175
- #: adrotate-output.php:616
176
  msgid "Error, no group ID set! Check your syntax!"
177
  msgstr "ERROR: No se ha asignado el ID del grupo! Compruebe la sintaxis!"
178
 
179
- #: adrotate-output.php:621
180
  msgid "Error, group does not exist! Check your syntax!"
181
  msgstr "ERROR: el grupo no existe! Compruebe la sintaxis!"
182
 
183
- #: adrotate-output.php:627
184
  msgid ""
185
  "There was an error locating the database tables for AdRotate. Please "
186
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -188,229 +190,229 @@ msgstr ""
188
  "Hubo un error al ubicar las tablas de la base de AdRotate. Por favor, "
189
  "desactivar y volver a activar el plugin AdRotate de la página!"
190
 
191
- #: adrotate-output.php:627
192
  msgid "If this does not solve the issue please seek support at"
193
  msgstr "Si esto no resuelve el problema por favor busque apoyo en"
194
 
195
- #: adrotate-output.php:633
196
  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
  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,60 +457,99 @@ msgstr "ID:"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
512
  #: dashboard/adrotatepro.php:20
513
  msgid "Satisfy your advertisers"
514
  msgstr "Satisfacer a sus anunciantes"
@@ -562,15 +603,21 @@ msgid ""
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, "
@@ -579,11 +626,11 @@ msgid ""
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 "
@@ -591,11 +638,11 @@ msgid ""
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,143 +650,124 @@ msgid ""
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
 
692
- #: dashboard/info.php:24
693
  msgid "Currently"
694
  msgstr "En la actualidad"
695
 
696
- #: dashboard/info.php:30
697
  msgid "Your setup"
698
  msgstr "Su configuración"
699
 
700
- #: dashboard/info.php:31
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 "
742
- "plugins!"
743
  msgstr ""
744
 
745
  #: dashboard/publisher/adverts-disabled.php:15
@@ -754,7 +782,7 @@ 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
 
@@ -785,38 +813,39 @@ 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
790
  msgid "Start / End"
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"
798
- msgstr "Título"
 
 
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"
806
 
807
- #: dashboard/publisher/adverts-disabled.php:39
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
815
  msgid "Clicks"
816
  msgstr "Clics"
817
 
818
- #: dashboard/publisher/adverts-disabled.php:40
819
- #: dashboard/publisher/adverts-main.php:48
820
  #: dashboard/publisher/adverts-report.php:39
821
  #: dashboard/publisher/adverts-report.php:58
822
  #: dashboard/publisher/groups-report.php:40
@@ -824,54 +853,47 @@ msgstr "Clics"
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,77 +901,92 @@ msgstr ""
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,42 +994,42 @@ msgstr ""
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,72 +1037,72 @@ msgstr ""
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
1032
  msgid "Get more features with AdRotate Pro."
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
@@ -1073,187 +1110,178 @@ msgstr "Utilización"
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,55 +1290,55 @@ msgstr ""
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,19 +1379,21 @@ msgid "For 7 days"
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"
@@ -1371,17 +1401,17 @@ msgstr ""
1371
 
1372
  #: dashboard/publisher/adverts-main.php:24
1373
  #, fuzzy
1374
- msgid "Export to XML"
1375
  msgstr "Exportar"
1376
 
1377
- #: dashboard/publisher/adverts-main.php:45
1378
- #: dashboard/publisher/adverts-main.php:47
1379
  #: dashboard/publisher/groups-main.php:37
1380
  #: dashboard/publisher/groups-main.php:39
1381
  msgid "Today"
1382
  msgstr "Hoy"
1383
 
1384
- #: dashboard/publisher/adverts-main.php:102
1385
  msgid "No adverts created yet!"
1386
  msgstr ""
1387
 
@@ -1435,11 +1465,6 @@ msgstr "Nuevo Grupo"
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"
@@ -1721,7 +1746,7 @@ msgstr ""
1721
  msgid "Choose adverts"
1722
  msgstr ""
1723
 
1724
- #: dashboard/publisher/groups-edit.php:335
1725
  msgid "Visible until"
1726
  msgstr "Visible hasta"
1727
 
@@ -1729,6 +1754,18 @@ msgstr "Visible hasta"
1729
  msgid "No adverts created!"
1730
  msgstr ""
1731
 
 
 
 
 
 
 
 
 
 
 
 
 
1732
  #: dashboard/publisher/groups-main.php:12
1733
  msgid "Manage Groups"
1734
  msgstr "Gestionar Grupos"
@@ -1750,8 +1787,7 @@ msgid "This action can not be undone!"
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,9 +1854,9 @@ msgid ""
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
 
@@ -1916,15 +1952,19 @@ msgid "Banner Folder"
1916
  msgstr "Carpeta de los Banners"
1917
 
1918
  #: dashboard/settings/general.php:50
1919
- msgid "Set a location where your banner images will be stored."
 
 
1920
  msgstr "Establezca un lugar donde se almacenarán las imágenes de banner."
1921
 
1922
  #: dashboard/settings/general.php:53
1923
- msgid "Location"
1924
- msgstr "Localización"
1925
 
1926
  #: dashboard/settings/general.php:55
1927
- msgid "(Default: wp-content/banners/)."
 
 
1928
  msgstr "(Predeterminado: wp-content/banners/)."
1929
 
1930
  #: dashboard/settings/general.php:56
@@ -2069,10 +2109,6 @@ msgstr ""
2069
  msgid "Password/License Key"
2070
  msgstr ""
2071
 
2072
- #: dashboard/settings/maintenance.php:16
2073
- msgid "Maintenance"
2074
- msgstr "Mantenimiento"
2075
-
2076
  #: dashboard/settings/maintenance.php:17
2077
  msgid ""
2078
  "Use these functions when you notice your database is slow, unresponsive and "
@@ -2112,14 +2148,24 @@ msgstr ""
2112
  "cambios que haya realizado. Esto puede variar de cero a cientos de Kb de "
2113
  "datos."
2114
 
2115
- #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
 
 
 
 
 
 
2116
  msgid "Clean-up Database"
2117
  msgstr "Limpieza de la Base de Datos"
2118
 
2119
  #: dashboard/settings/maintenance.php:30
 
 
 
 
2120
  msgid ""
2121
- "You are about to clean up your database. This may delete expired schedules "
2122
- "and older statistics."
2123
  msgstr ""
2124
  "Vas a limpiar tu base de datos. Esto puede eliminar programas vencidos y las "
2125
  "estadísticas más antigüas."
@@ -2128,18 +2174,18 @@ msgstr ""
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!"
2136
 
2137
  #: dashboard/settings/maintenance.php:31
2138
- msgid "Delete stats older than 356 days (Optional)."
 
 
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
@@ -2149,10 +2195,16 @@ msgid ""
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"
@@ -2166,6 +2218,11 @@ msgstr "Reevaluar todos los Anuncios"
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 "
@@ -2212,12 +2269,10 @@ 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."
2218
- msgstr ""
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."
@@ -2239,10 +2294,6 @@ msgstr "Normal"
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"
@@ -2255,74 +2306,95 @@ msgstr ""
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"
@@ -2399,10 +2471,6 @@ msgstr ""
2399
  "el Widget AdRotate. Si utiliza un fragmento PHP necesita envolver dentro del "
2400
  "código PHP la exclusión a ti mismo."
2401
 
2402
- #: dashboard/settings/notifications.php:18
2403
- msgid "Notifications"
2404
- msgstr "Notificaciones"
2405
-
2406
  #: dashboard/settings/notifications.php:19
2407
  msgid "Set up who gets notifications if ads need your attention."
2408
  msgstr ""
@@ -2541,10 +2609,6 @@ msgid ""
2541
  "separated. This field may not be empty!"
2542
  msgstr ""
2543
 
2544
- #: dashboard/settings/notifications.php:72
2545
- msgid "Advertisers"
2546
- msgstr "Anunciantes"
2547
-
2548
  #: dashboard/settings/notifications.php:75
2549
  msgid ""
2550
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
@@ -2600,10 +2664,6 @@ msgstr ""
2600
  msgid "and get your API token"
2601
  msgstr ""
2602
 
2603
- #: dashboard/settings/roles.php:17
2604
- msgid "Roles"
2605
- msgstr ""
2606
-
2607
  #: dashboard/settings/roles.php:18
2608
  msgid "Who has access to what?"
2609
  msgstr "¿Quién tiene acceso a qué?"
@@ -2753,15 +2813,27 @@ msgid ""
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"
@@ -2927,12 +2999,6 @@ msgstr ""
2927
  #~ msgid "Ad evaluation next run:"
2928
  #~ msgstr "Evaluación de Anuncios en la siguiente ejecución:"
2929
 
2930
- #~ msgid "Not scheduled!"
2931
- #~ msgstr "No Programada!"
2932
-
2933
- #~ msgid "Clean Trackerdata next run:"
2934
- #~ msgstr "Ultima ejecución de la limpieza de la base de datos:"
2935
-
2936
  #~ msgid "Set up who gets notification emails."
2937
  #~ msgstr "Establecer lo que se recibe en los mensajes de notificación."
2938
 
@@ -3139,9 +3205,6 @@ msgstr ""
3139
  #~ msgid "Ad created"
3140
  #~ msgstr "Anuncio creado"
3141
 
3142
- #~ msgid "Ad updated"
3143
- #~ msgstr "Anuncio actualizado"
3144
-
3145
  #~ msgid ""
3146
  #~ "The ad was saved but has an issue which might prevent it from working "
3147
  #~ "properly. Review the yellow marked ad."
@@ -3251,13 +3314,6 @@ msgstr ""
3251
  #~ "Si comienza a crear un anuncio o grupo pero no lo guarda cuando lo hace, "
3252
  #~ "utilize este botón para borrar esos registros vacíos."
3253
 
3254
- #~ msgid ""
3255
- #~ "Additionally you can clean up old statistics. This will improve the speed "
3256
- #~ "of your site."
3257
- #~ msgstr ""
3258
- #~ "Adicionalmente puede limpiar las estadísticas antiguas. Esto mejorará la "
3259
- #~ "velocidad de su sitio."
3260
-
3261
  #~ msgid ""
3262
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3263
  #~ "becomes unusable in any way or by any means in whichever way I will not "
@@ -3526,9 +3582,6 @@ msgstr ""
3526
  #~ msgid "Enable stats"
3527
  #~ msgstr "Habilitar las estadísticas"
3528
 
3529
- #~ msgid "Track clicks and impressions."
3530
- #~ msgstr "Seguimiento de clics e impresiones."
3531
-
3532
  #, fuzzy
3533
  #~ msgid ""
3534
  #~ "Disabling this also disables click and impression limits on schedules."
2
  msgstr ""
3
  "Project-Id-Version: AdRotate v 3.10.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-19 15:30+0800\n"
6
+ "PO-Revision-Date: 2017-06-19 15:30+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 2.0.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:722
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
+ #: adrotate-functions.php:725
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
+ #: adrotate-functions.php:768
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:772
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:776
37
  msgid "Ad(s) deleted"
38
  msgstr "Anuncio(s) eliminado"
39
 
40
+ #: adrotate-functions.php:780
41
  msgid "Group deleted"
42
  msgstr "Grupo borrado"
43
 
44
+ #: adrotate-functions.php:784
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Estadisticas del Anuncio(s) restablecidas"
47
 
48
+ #: adrotate-functions.php:788
49
  msgid "Ad(s) renewed"
50
  msgstr "Anuncio(s) renovado"
51
 
52
+ #: adrotate-functions.php:792
53
  msgid "Ad(s) deactivated"
54
  msgstr "Anuncio(s) desactivado"
55
 
56
+ #: adrotate-functions.php:796
57
  msgid "Ad(s) activated"
58
  msgstr "Anuncio(s) activado"
59
 
60
+ #: adrotate-functions.php:800
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupo incluyendo sus anuncios eliminados"
63
 
64
+ #: adrotate-functions.php:804
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Exportación Creada"
68
 
69
+ #: adrotate-functions.php:809
70
  msgid "Settings saved"
71
  msgstr "Ajustes guardados"
72
 
73
+ #: adrotate-functions.php:813
74
  msgid "Database optimized"
75
  msgstr "Base de Datos optimizada"
76
 
77
+ #: adrotate-functions.php:817
78
  msgid "Database repaired"
79
  msgstr "Base de Datos reparada"
80
 
81
+ #: adrotate-functions.php:821
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:825
86
+ #, fuzzy
87
+ #| msgid "Clean-up Database"
88
+ msgid "Cleanup complete"
89
+ msgstr "Limpieza de la Base de Datos"
90
 
91
+ #: adrotate-functions.php:830
92
  msgid "Action prohibited"
93
  msgstr "Acción prohibida"
94
 
95
+ #: adrotate-functions.php:834
96
  msgid ""
97
  "The ad was saved but has an issue which might prevent it from working "
98
  "properly. Review the colored ad."
99
  msgstr ""
100
 
101
+ #: adrotate-functions.php:838
102
  msgid "No data found in selected time period"
103
  msgstr "No se han encontrado datos en el período de tiempo seleccionado"
104
 
105
+ #: adrotate-functions.php:842
106
  msgid "Database can only be optimized or cleaned once every hour"
107
  msgstr "La Base de datos sólo se puede optimizar o limpiar una vez cada hora"
108
 
109
+ #: adrotate-functions.php:846
110
  msgid "Form can not be (partially) empty!"
111
  msgstr ""
112
 
113
+ #: adrotate-functions.php:850
114
  msgid "No ads found."
115
  msgstr ""
116
 
117
+ #: adrotate-functions.php:854
118
  msgid "Unexpected error"
119
  msgstr ""
120
 
121
+ #: adrotate-manage-publisher.php:665
122
  msgid "AdRotate Advertiser"
123
  msgstr ""
124
 
125
+ #: adrotate-output.php:551
126
  msgid "Oh no! Something went wrong!"
127
  msgstr "¡Oh, no! Algo salió mal!"
128
 
129
+ #: adrotate-output.php:552
130
  msgid ""
131
  "WordPress was unable to verify the authenticity of the url you have clicked. "
132
  "Verify if the url used is valid or log in via your browser."
134
  "WordPress no pudo verificar la autenticidad de la url que ha hecho clic. "
135
  "Verificar si la url utilizada es válida o acceder a través del navegador."
136
 
137
+ #: adrotate-output.php:553
138
  msgid ""
139
  "If you have received the url you want to visit via email, you are being "
140
  "tricked!"
142
  "Si usted ha recibido la url que desea visitar a través del correo "
143
  "electrónico, es posible que le esten engañando!"
144
 
145
+ #: adrotate-output.php:554
146
  msgid "Contact support if the issue persists:"
147
  msgstr "Si el problema persiste, contacte con el soporte:"
148
 
149
+ #: adrotate-output.php:569
150
  msgid ""
151
  "Error, Ad is not available at this time due to schedule/geolocation "
152
  "restrictions or does not exist!"
154
  "ERROR: El anuncio no está disponible en este momento debido a las "
155
  "restricciones de programa, de geolocalización o no existe!"
156
 
157
+ #: adrotate-output.php:571
158
  msgid ""
159
  "Error, Ad is not available at this time due to schedule/geolocation "
160
  "restrictions!"
162
  "ERROR: El anuncio no está disponible en este momento debido a las "
163
  "restricciones restricciones de programa o geolocalización!"
164
 
165
+ #: adrotate-output.php:578 adrotate-output.php:580
166
  msgid ""
167
  "Either there are no banners, they are disabled or none qualified for this "
168
  "location!"
170
  "O bien no hay banners, estan desactivados o no estan programados para esta "
171
  "ubicación!"
172
 
173
+ #: adrotate-output.php:586
174
  msgid "Error, no Ad ID set! Check your syntax!"
175
  msgstr "ERROR: No se ha asignado el ID del anuncio! Compruebe la sintaxis!"
176
 
177
+ #: adrotate-output.php:592
178
  msgid "Error, no group ID set! Check your syntax!"
179
  msgstr "ERROR: No se ha asignado el ID del grupo! Compruebe la sintaxis!"
180
 
181
+ #: adrotate-output.php:597
182
  msgid "Error, group does not exist! Check your syntax!"
183
  msgstr "ERROR: el grupo no existe! Compruebe la sintaxis!"
184
 
185
+ #: adrotate-output.php:603
186
  msgid ""
187
  "There was an error locating the database tables for AdRotate. Please "
188
  "deactivate and re-activate AdRotate from the plugin page!!"
190
  "Hubo un error al ubicar las tablas de la base de AdRotate. Por favor, "
191
  "desactivar y volver a activar el plugin AdRotate de la página!"
192
 
193
+ #: adrotate-output.php:603
194
  msgid "If this does not solve the issue please seek support at"
195
  msgstr "Si esto no resuelve el problema por favor busque apoyo en"
196
 
197
+ #: adrotate-output.php:609
198
  msgid "An unknown error occured."
199
  msgstr "Ha ocurrido un error desconocido."
200
 
201
+ #: adrotate-output.php:628 adrotate-output.php:631 adrotate-output.php:635
202
  msgid "Check adverts"
203
  msgstr ""
204
 
205
+ #: adrotate-output.php:640
206
  msgid ""
207
  "You have enable caching support but W3 Total Cache is not active on your "
208
  "site!"
209
  msgstr ""
210
 
211
+ #: adrotate-output.php:643
212
  msgid ""
213
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
214
  "not set."
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:648
218
  msgid "Your AdRotate Banner folder is not writable or does not exist."
219
  msgstr ""
220
 
221
+ #: adrotate-output.php:688 dashboard/adrotatepro.php:87
222
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
223
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
224
+ #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
225
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:97 dashboard/info.php:98
226
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:104
227
+ #: dashboard/info.php:105 dashboard/info.php:106 dashboard/info.php:107
228
  #: dashboard/settings/geotargeting.php:35
229
  #, fuzzy
230
  msgid "Buy now"
231
  msgstr "Comprar"
232
 
233
+ #: adrotate-output.php:689
234
  msgid ""
235
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
236
  "to the <strong>PRO</strong> version"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:689
240
  #, php-format
241
  msgid ""
242
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
243
  msgstr ""
244
 
245
+ #: adrotate-output.php:689
246
  msgid "Thank you for your purchase!"
247
  msgstr ""
248
 
249
+ #: adrotate-output.php:752
250
  msgid ""
251
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
252
  "menu. If you need help getting started take a look at the"
253
  msgstr ""
254
 
255
+ #: adrotate-output.php:752
256
  msgid "manuals"
257
  msgstr "manuales"
258
 
259
+ #: adrotate-output.php:752 adrotate-output.php:822
260
  msgid "and"
261
  msgstr ""
262
 
263
+ #: adrotate-output.php:752
264
  msgid "forums"
265
  msgstr ""
266
 
267
+ #: adrotate-output.php:785
268
  #, fuzzy
269
  msgid "Useful Links"
270
  msgstr "Enlaces de interés"
271
 
272
+ #: adrotate-output.php:786
273
  msgid "Useful links to learn more about AdRotate"
274
  msgstr ""
275
 
276
+ #: adrotate-output.php:788
277
  msgid "AdRotate website"
278
  msgstr ""
279
 
280
+ #: adrotate-output.php:789
281
  #, fuzzy
282
  msgid "Getting Started With AdRotate"
283
  msgstr "Obtenga más funciones con AdRotate Pro"
284
 
285
+ #: adrotate-output.php:790
286
  #, fuzzy
287
  msgid "AdRotate manuals"
288
  msgstr "Información de AdRotate"
289
 
290
+ #: adrotate-output.php:791
291
  #, fuzzy
292
  msgid "AdRotate Support Forum"
293
  msgstr "Tienda AdRotate"
294
 
295
+ #: adrotate-output.php:814 dashboard/info.php:49
296
  msgid "Support AdRotate"
297
  msgstr "Apoye a AdRotate"
298
 
299
+ #: adrotate-output.php:815
300
  msgid "Check out my website"
301
  msgstr ""
302
 
303
+ #: adrotate-output.php:822
304
  msgid ""
305
  "Many users only think to review AdRotate when something goes wrong while "
306
  "thousands of people happily use AdRotate."
307
  msgstr ""
308
 
309
+ #: adrotate-output.php:822
310
  msgid "If you find AdRotate useful please leave your"
311
  msgstr ""
312
 
313
+ #: adrotate-output.php:822
314
  msgid "rating"
315
  msgstr ""
316
 
317
+ #: adrotate-output.php:822
318
  #, fuzzy
319
  msgid "review"
320
  msgstr "Revise el anuncio aquí:"
321
 
322
+ #: adrotate-output.php:822
323
  msgid "on WordPress.org to help AdRotate grow in a positive way"
324
  msgstr ""
325
 
326
+ #: adrotate-output.php:848 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:848
332
  msgid "More information..."
333
  msgstr "Más información..."
334
 
335
+ #: adrotate-output.php:849
336
  msgid "This feature is available in AdRotate Pro"
337
  msgstr "Esta función está disponible en AdRotate Pro"
338
 
339
+ #: adrotate-output.php:849
340
  msgid "Learn more"
341
  msgstr "Aprender más"
342
 
343
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:220
344
+ #: dashboard/publisher/adverts-edit.php:241
345
  msgid "January"
346
  msgstr "Enero"
347
 
348
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:221
349
+ #: dashboard/publisher/adverts-edit.php:242
350
  msgid "February"
351
  msgstr "Febrero"
352
 
353
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:222
354
+ #: dashboard/publisher/adverts-edit.php:243
355
  msgid "March"
356
  msgstr "Marzo"
357
 
358
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:223
359
+ #: dashboard/publisher/adverts-edit.php:244
360
  msgid "April"
361
  msgstr "Abril"
362
 
363
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:224
364
+ #: dashboard/publisher/adverts-edit.php:245
365
  msgid "May"
366
  msgstr "Mayo"
367
 
368
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:225
369
+ #: dashboard/publisher/adverts-edit.php:246
370
  msgid "June"
371
  msgstr "Junio"
372
 
373
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:226
374
+ #: dashboard/publisher/adverts-edit.php:247
375
  msgid "July"
376
  msgstr "Julio"
377
 
378
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:227
379
+ #: dashboard/publisher/adverts-edit.php:248
380
  msgid "August"
381
  msgstr "Agosto"
382
 
383
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:228
384
+ #: dashboard/publisher/adverts-edit.php:249
385
  msgid "September"
386
  msgstr "Septiembre"
387
 
388
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:229
389
+ #: dashboard/publisher/adverts-edit.php:250
390
  msgid "October"
391
  msgstr "Octubre"
392
 
393
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:230
394
+ #: dashboard/publisher/adverts-edit.php:251
395
  msgid "November"
396
  msgstr "Noviembre"
397
 
398
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:231
399
+ #: dashboard/publisher/adverts-edit.php:252
400
  msgid "December"
401
  msgstr "Diciembre"
402
 
403
+ #: adrotate-statistics.php:143
404
  msgid "Previous"
405
  msgstr "Anterior"
406
 
407
+ #: adrotate-statistics.php:145
408
  msgid "This month"
409
  msgstr "Este més"
410
 
411
+ #: adrotate-statistics.php:146
412
  msgid "Next"
413
  msgstr "Siguiente"
414
 
415
+ #: adrotate-statistics.php:232
416
  msgid "No data to show!"
417
  msgstr "No hay datos para mostrar!"
418
 
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:103
461
  msgid "General Info"
462
  msgstr "Información General"
463
 
464
+ #: adrotate.php:104
465
  msgid "AdRotate Pro"
466
  msgstr "AdRotate Pro"
467
 
468
+ #: adrotate.php:105 dashboard/info.php:40
469
+ #: dashboard/publisher/adverts-edit.php:458
470
  #: dashboard/publisher/groups-main.php:34
471
  msgid "Adverts"
472
  msgstr "Anuncios"
473
 
474
+ #: adrotate.php:106 dashboard/info.php:44
475
  msgid "Groups"
476
  msgstr "Grupos"
477
 
478
+ #: adrotate.php:107
479
  msgid "Settings"
480
  msgstr "Ajustes"
481
 
482
+ #: adrotate.php:125
483
  msgid "AdRotate Info"
484
  msgstr "Información de AdRotate"
485
 
486
+ #: adrotate.php:143
487
  msgid "AdRotate Professional"
488
  msgstr "AdRotate Profesional"
489
 
490
+ #: adrotate.php:183
491
  msgid "Advert Management"
492
  msgstr ""
493
 
494
+ #: adrotate.php:241 adrotate.php:308
495
  msgid "Manage"
496
  msgstr "Gestionar"
497
 
498
+ #: adrotate.php:242 adrotate.php:309
499
  msgid "Add New"
500
  msgstr "Añadir Nuevo"
501
 
502
+ #: adrotate.php:302
503
  msgid "Group Management"
504
  msgstr "Administración de Grupos"
505
 
506
+ #: adrotate.php:311
507
  msgid "Report"
508
  msgstr "Informe"
509
 
510
+ #: adrotate.php:356
511
  msgid "AdRotate Settings"
512
  msgstr "Ajustes AdRotate"
513
 
514
+ #: adrotate.php:361
515
+ #, fuzzy
516
+ #| msgid "General Info"
517
+ msgid "General"
518
+ msgstr "Información General"
519
+
520
+ #: adrotate.php:362 dashboard/settings/notifications.php:18
521
+ msgid "Notifications"
522
+ msgstr "Notificaciones"
523
+
524
+ #: adrotate.php:363 dashboard/publisher/adverts-disabled.php:69
525
+ #: dashboard/publisher/adverts-error.php:63
526
+ #: dashboard/publisher/adverts-main.php:81
527
+ #: dashboard/publisher/groups-main.php:70
528
+ msgid "Stats"
529
+ msgstr "Estadísticas"
530
+
531
+ #: adrotate.php:364 dashboard/publisher/adverts-edit.php:359
532
+ #: dashboard/publisher/groups-edit.php:180
533
+ #: dashboard/settings/advertisers.php:38
534
+ msgid "Geo Targeting"
535
+ msgstr "Geo Targeting"
536
+
537
+ #: adrotate.php:365 dashboard/settings/notifications.php:72
538
+ msgid "Advertisers"
539
+ msgstr "Anunciantes"
540
+
541
+ #: adrotate.php:366 dashboard/settings/roles.php:17
542
+ msgid "Roles"
543
+ msgstr ""
544
+
545
+ #: adrotate.php:367
546
+ msgid "Misc"
547
+ msgstr ""
548
+
549
+ #: adrotate.php:368 dashboard/settings/maintenance.php:16
550
+ msgid "Maintenance"
551
+ msgstr "Mantenimiento"
552
+
553
  #: dashboard/adrotatepro.php:20
554
  msgid "Satisfy your advertisers"
555
  msgstr "Satisfacer a sus anunciantes"
603
  "forum. Get a solution (usually) within one business day."
604
  msgstr ""
605
 
606
+ #: dashboard/adrotatepro.php:48
607
  msgid "AdRotate is brought to you by"
608
  msgstr "AdRotate es ofrecido por"
609
 
610
+ #: dashboard/adrotatepro.php:51
611
+ msgid ""
612
+ "I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner "
613
+ "to find out more about me and what I am doing!"
614
+ msgstr ""
615
+
616
+ #: dashboard/adrotatepro.php:62
617
  msgid "Schedule all campaigns with ease"
618
  msgstr "Programe todas las campañas con facilidad"
619
 
620
+ #: dashboard/adrotatepro.php:65
621
  msgid ""
622
  "Schedule your adverts and set up advertising campaigns based on dates you or "
623
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
626
  "schedules for adverts."
627
  msgstr ""
628
 
629
+ #: dashboard/adrotatepro.php:69
630
  msgid "Avoid adblockers"
631
  msgstr ""
632
 
633
+ #: dashboard/adrotatepro.php:72
634
  msgid ""
635
  "Try and avoid adblockers so your adverts get the exposure you want them to "
636
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
638
  "adverts smartly so these features reach their full potential!"
639
  msgstr ""
640
 
641
+ #: dashboard/adrotatepro.php:76
642
  msgid "Stay up-to-date with notifications"
643
  msgstr ""
644
 
645
+ #: dashboard/adrotatepro.php:79
646
  msgid ""
647
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
648
  "adverts expire or need your attention. Additionally, send push notifications "
650
  "or when advertisers create new adverts. Never miss an expiration date again."
651
  msgstr ""
652
 
653
+ #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
654
+ #: dashboard/info.php:93
655
  msgid "Buy AdRotate Professional"
656
  msgstr "Comprar AdRotate Profesional"
657
 
658
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
659
  msgid "Single License"
660
  msgstr ""
661
 
662
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
663
+ msgid "One WordPress installation."
664
+ msgstr ""
665
 
666
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
667
+ #: dashboard/info.php:98 dashboard/info.php:105
668
  msgid "Duo License"
669
  msgstr "Duo Licencia"
670
 
671
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:98
672
+ msgid "Two WordPress installations."
673
+ msgstr ""
674
 
675
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
676
+ #: dashboard/info.php:99 dashboard/info.php:106
677
  msgid "Multi License"
678
  msgstr "Multi Licencia"
679
 
680
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:99
681
+ msgid "Up to five WordPress installations."
682
+ msgstr ""
683
 
684
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
685
+ #: dashboard/info.php:100 dashboard/info.php:107
686
  msgid "Developer License"
687
  msgstr "Developer Licencia"
688
 
689
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:100
690
  msgid "Unlimited WordPress installations and/or networks."
691
  msgstr ""
692
 
693
+ #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
694
+ #: dashboard/info.php:101 dashboard/info.php:109
695
  msgid "Compare licenses"
696
  msgstr "Comparar licencias"
697
 
698
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
699
  msgid "Not sure which license is for you? Compare them..."
700
  msgstr "No está seguro de que licencia es para usted? Comparelas..."
701
 
702
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
703
  msgid "All Licenses"
704
  msgstr "Todas las licencias"
705
 
706
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
707
  msgid "Lifetime License"
708
  msgstr ""
709
 
710
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
711
  msgid "Single installation."
712
  msgstr ""
713
 
714
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:105
715
  msgid "Up to 2 installations."
716
  msgstr ""
717
 
718
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:106
719
  msgid "Up to 10 installations."
720
  msgstr ""
721
 
722
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:107
723
  msgid "Up to 25 installations or multisite networks."
724
  msgstr ""
725
 
726
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:108
727
  msgid ""
728
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
729
  msgstr ""
730
 
731
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
732
  msgid "Not sure which license is for you?"
733
  msgstr ""
734
 
735
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
736
  msgid "Compare Licenses"
737
  msgstr ""
738
 
739
+ #: dashboard/info.php:27
740
  msgid "Currently"
741
  msgstr "En la actualidad"
742
 
743
+ #: dashboard/info.php:33
744
  msgid "Your setup"
745
  msgstr "Su configuración"
746
 
747
+ #: dashboard/info.php:34
748
  msgid "Adverts that need you"
749
  msgstr "Estos Anuncios"
750
 
751
+ #: dashboard/info.php:41
752
  msgid "(Almost) Expired"
753
  msgstr "Expirados (o casi)"
754
 
755
+ #: dashboard/info.php:45
756
  msgid "Have errors"
757
  msgstr "Tienen errores"
758
 
759
+ #: dashboard/info.php:50
760
  msgid ""
761
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
762
  "for updates about me and my plugins. Thank you!"
763
  msgstr ""
764
 
765
+ #: dashboard/info.php:74
766
+ msgid "Arnan de Gans News & Updates"
767
  msgstr ""
768
 
769
+ #: dashboard/info.php:114
770
+ msgid "Join the Media.net advertising network"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
771
  msgstr ""
772
 
773
  #: dashboard/publisher/adverts-disabled.php:15
782
  msgstr "Acciones en Lote"
783
 
784
  #: dashboard/publisher/adverts-disabled.php:21
785
+ #: dashboard/publisher/adverts-edit.php:176
786
  msgid "Activate"
787
  msgstr "Activar"
788
 
813
  msgstr "ID"
814
 
815
  #: dashboard/publisher/adverts-disabled.php:36
816
+ #: dashboard/publisher/adverts-error.php:41
817
  #: dashboard/publisher/adverts-main.php:40
818
  msgid "Start / End"
819
  msgstr "Inio / Final"
820
 
821
  #: dashboard/publisher/adverts-disabled.php:37
822
+ #: dashboard/publisher/adverts-error.php:40
 
823
  #: dashboard/publisher/adverts-main.php:41
824
+ #: dashboard/publisher/groups-edit.php:51
825
+ #: dashboard/publisher/groups-main.php:33
826
+ msgid "Name"
827
+ msgstr "Nombre"
828
 
829
+ #: dashboard/publisher/adverts-disabled.php:39
830
+ #: dashboard/publisher/adverts-main.php:43
831
+ #: dashboard/publisher/groups-edit.php:333
832
  #: dashboard/publisher/groups-main.php:36
833
  msgid "Shown"
834
  msgstr "Mostrado"
835
 
836
+ #: dashboard/publisher/adverts-disabled.php:40
837
+ #: dashboard/publisher/adverts-main.php:45
838
  #: dashboard/publisher/adverts-report.php:36
839
  #: dashboard/publisher/adverts-report.php:57
840
+ #: dashboard/publisher/groups-edit.php:334
841
  #: dashboard/publisher/groups-main.php:38
842
  #: dashboard/publisher/groups-report.php:37
843
  #: dashboard/publisher/groups-report.php:58
844
  msgid "Clicks"
845
  msgstr "Clics"
846
 
847
+ #: dashboard/publisher/adverts-disabled.php:41
848
+ #: dashboard/publisher/adverts-main.php:47
849
  #: dashboard/publisher/adverts-report.php:39
850
  #: dashboard/publisher/adverts-report.php:58
851
  #: dashboard/publisher/groups-report.php:40
853
  msgid "CTR"
854
  msgstr "CTR"
855
 
856
+ #: dashboard/publisher/adverts-disabled.php:69
857
+ #: dashboard/publisher/adverts-error.php:63
858
+ #: dashboard/publisher/adverts-main.php:81
859
  #: dashboard/publisher/groups-main.php:70
860
  msgid "Edit"
861
  msgstr "Editar"
862
 
863
+ #: dashboard/publisher/adverts-disabled.php:69
864
+ #: dashboard/publisher/adverts-error.php:63
865
+ #: dashboard/publisher/adverts-main.php:81
 
 
 
 
 
 
 
866
  #, fuzzy
867
  msgid "Groups:"
868
  msgstr "Grupos"
869
 
870
+ #: dashboard/publisher/adverts-edit.php:48
871
  msgid "The AdCode cannot be empty!"
872
  msgstr "El AdCode no puede estar vacío!"
873
 
874
+ #: dashboard/publisher/adverts-edit.php:51
875
  msgid ""
876
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
877
  "use!"
878
  msgstr ""
879
 
880
+ #: dashboard/publisher/adverts-edit.php:54
881
  msgid ""
882
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
883
  "use!"
884
  msgstr ""
885
 
886
+ #: dashboard/publisher/adverts-edit.php:57
887
  msgid ""
888
  "There is a problem saving the image. Please reset your image and re-save the "
889
  "ad!"
890
  msgstr ""
891
 
892
+ #: dashboard/publisher/adverts-edit.php:60
893
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
894
  msgstr ""
895
 
896
+ #: dashboard/publisher/adverts-edit.php:65
897
  msgid ""
898
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
899
  "the ad!"
901
  "AdRotate no encuentra ningún error, pero el anuncio está marcado como "
902
  "erróneo, intente volver a guardar la anuncio!"
903
 
904
+ #: dashboard/publisher/adverts-edit.php:68
905
  msgid "This ad is expired and currently not shown on your website!"
906
  msgstr "Este anuncio ha caducado y actualmente no se muestra en su página web!"
907
 
908
+ #: dashboard/publisher/adverts-edit.php:71
909
  msgid "The ad will expire in less than 2 days!"
910
  msgstr "El anuncio caducará en menos de 2 días!"
911
 
912
+ #: dashboard/publisher/adverts-edit.php:74
913
  msgid "This ad will expire in less than 7 days!"
914
  msgstr "El anuncio caducará en menos de 7 días!"
915
 
916
+ #: dashboard/publisher/adverts-edit.php:77
917
  msgid "This ad has been disabled and does not rotate on your site!"
918
  msgstr "Este anuncio ha sido desactivado y no rota en su página web!"
919
 
920
+ #: dashboard/publisher/adverts-edit.php:81
921
+ msgid ""
922
+ "This advert uses the obsolete Responsive feature. Please use the more "
923
+ "reliable Mobile feature! Saving the advert will disable the responsive "
924
+ "option silently."
925
+ msgstr ""
926
+
927
+ #: dashboard/publisher/adverts-edit.php:106
928
  msgid "New Advert"
929
  msgstr "Nuevo Anuncio"
930
 
931
+ #: dashboard/publisher/adverts-edit.php:108
932
  msgid "Edit Advert"
933
  msgstr "Editar Anuncio"
934
 
935
+ #: dashboard/publisher/adverts-edit.php:114
936
+ msgid "Title"
937
+ msgstr "Título"
938
+
939
+ #: dashboard/publisher/adverts-edit.php:120
940
  msgid "AdCode"
941
  msgstr ""
942
 
943
+ #: dashboard/publisher/adverts-edit.php:125
944
  msgid "Basic Examples:"
945
  msgstr "Ejemplos Básicos:"
946
 
947
+ #: dashboard/publisher/adverts-edit.php:129
948
+ msgid "Get better adverts from Media.net"
949
+ msgstr ""
950
+
951
+ #: dashboard/publisher/adverts-edit.php:134
952
  msgid "Useful tags"
953
  msgstr ""
954
 
955
+ #: dashboard/publisher/adverts-edit.php:136
956
  msgid "Insert the advert ID Number."
957
  msgstr ""
958
 
959
+ #: dashboard/publisher/adverts-edit.php:136
960
  msgid "Required when selecting a asset below."
961
  msgstr ""
962
 
963
+ #: dashboard/publisher/adverts-edit.php:136
964
  msgid "Insert the advert name."
965
  msgstr ""
966
 
967
+ #: dashboard/publisher/adverts-edit.php:136
968
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
969
  msgstr ""
970
 
971
+ #: dashboard/publisher/adverts-edit.php:136
972
  msgid "Add inside the <a> tag to open advert in a new window."
973
  msgstr ""
974
 
975
+ #: dashboard/publisher/adverts-edit.php:136
976
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
977
  msgstr ""
978
 
979
+ #: dashboard/publisher/adverts-edit.php:136
980
  msgid ""
981
  "Place the cursor in your AdCode where you want to add any of these tags and "
982
  "click to add it."
983
  msgstr ""
984
 
985
+ #: dashboard/publisher/adverts-edit.php:141
986
  msgid "Preview"
987
  msgstr "Vista previa"
988
 
989
+ #: dashboard/publisher/adverts-edit.php:144
990
  msgid ""
991
  "Note: While this preview is an accurate one, it might look different then it "
992
  "does on the website."
994
  "Nota: Mientras que la previsualización de la imagen aqui mostrada es "
995
  "precisa, en su pagina web puede tener un aspecto diferente."
996
 
997
+ #: dashboard/publisher/adverts-edit.php:145
998
  msgid ""
999
  "This is because of CSS differences. Your themes CSS file is not active here!"
1000
  msgstr ""
1001
  "Esto es debido a las diferencias de CSS. En la zona administrativa no está "
1002
  "activo el archivo CSS de las plantillas (themes)!"
1003
 
1004
+ #: dashboard/publisher/adverts-edit.php:150
1005
  msgid "Banner asset"
1006
  msgstr ""
1007
 
1008
+ #: dashboard/publisher/adverts-edit.php:153
1009
  msgid "WordPress media:"
1010
  msgstr ""
1011
 
1012
+ #: dashboard/publisher/adverts-edit.php:153
1013
  msgid "Select Banner"
1014
  msgstr "Seleccionar Banner"
1015
 
1016
+ #: dashboard/publisher/adverts-edit.php:155
1017
  msgid "- OR -"
1018
  msgstr "- O -"
1019
 
1020
+ #: dashboard/publisher/adverts-edit.php:157
1021
  msgid "Banner folder:"
1022
  msgstr "Carpeta Banner:"
1023
 
1024
+ #: dashboard/publisher/adverts-edit.php:158
1025
  msgid "No image selected"
1026
  msgstr "Ninguna imagen seleccionada"
1027
 
1028
+ #: dashboard/publisher/adverts-edit.php:162
1029
  msgid "Use %asset% in the adcode instead of the file path."
1030
  msgstr ""
1031
 
1032
+ #: dashboard/publisher/adverts-edit.php:162
1033
  msgid ""
1034
  "Use either the text field or the dropdown. If the textfield has content that "
1035
  "field has priority."
1037
  "Use el campo de texto o en el menú desplegable. Si el campo de texto tiene "
1038
  "un contenido, ese campo tiene prioridad."
1039
 
1040
+ #: dashboard/publisher/adverts-edit.php:167
1041
  #: dashboard/settings/statistics.php:17
1042
  msgid "Statistics"
1043
  msgstr "Estadísticas"
1044
 
1045
+ #: dashboard/publisher/adverts-edit.php:169
1046
  msgid "Enable click and impression tracking for this advert."
1047
  msgstr ""
1048
 
1049
+ #: dashboard/publisher/adverts-edit.php:170
1050
  msgid ""
1051
  "Note: Clicktracking does not work for Javascript adverts such as those "
1052
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1053
  "always supported."
1054
  msgstr ""
1055
 
1056
+ #: dashboard/publisher/adverts-edit.php:180
1057
  msgid "Yes, this ad will be used"
1058
  msgstr "Sí, se utilizará este anuncio"
1059
 
1060
+ #: dashboard/publisher/adverts-edit.php:181
1061
  msgid "No, do not show this ad anywhere"
1062
  msgstr "No, no mostrar este anuncio en cualquier lugar"
1063
 
1064
+ #: dashboard/publisher/adverts-edit.php:188
1065
+ #: dashboard/publisher/adverts-main.php:105
1066
  #: dashboard/publisher/groups-edit.php:71
1067
  #: dashboard/publisher/groups-main.php:89
1068
  #, fuzzy
1069
  msgid "Get more features with AdRotate Pro."
1070
  msgstr "Obtenga más funciones con AdRotate Pro"
1071
 
1072
+ #: dashboard/publisher/adverts-edit.php:188
1073
+ #: dashboard/publisher/adverts-main.php:105
1074
  #: dashboard/publisher/groups-edit.php:71
1075
  #: dashboard/publisher/groups-main.php:89
1076
  #, fuzzy
1077
  msgid "More information"
1078
  msgstr "Más información..."
1079
 
1080
+ #: dashboard/publisher/adverts-edit.php:191
1081
+ #: dashboard/publisher/adverts-edit.php:291
1082
+ #: dashboard/publisher/adverts-edit.php:447
1083
+ #: dashboard/publisher/adverts-edit.php:488
1084
  msgid "Save Advert"
1085
  msgstr "Guardar Anuncio"
1086
 
1087
+ #: dashboard/publisher/adverts-edit.php:192
1088
+ #: dashboard/publisher/adverts-edit.php:292
1089
+ #: dashboard/publisher/adverts-edit.php:448
1090
+ #: dashboard/publisher/adverts-edit.php:489
1091
  #: dashboard/publisher/groups-edit.php:150
1092
  #: dashboard/publisher/groups-edit.php:299
1093
  #: dashboard/publisher/groups-edit.php:391
1094
  msgid "Cancel"
1095
  msgstr "Cancelar"
1096
 
1097
+ #: dashboard/publisher/adverts-edit.php:195
1098
+ #: dashboard/publisher/adverts-edit.php:430
1099
  #: dashboard/publisher/groups-edit.php:132
1100
  #: dashboard/publisher/groups-edit.php:281
1101
  msgid "Usage"
1102
  msgstr "Utilización"
1103
 
1104
+ #: dashboard/publisher/adverts-edit.php:199
1105
+ #: dashboard/publisher/adverts-edit.php:434
1106
  #: dashboard/publisher/groups-edit.php:136
1107
  #: dashboard/publisher/groups-edit.php:205
1108
  #: dashboard/publisher/groups-edit.php:245
1110
  msgid "Widget"
1111
  msgstr ""
1112
 
1113
+ #: dashboard/publisher/adverts-edit.php:200
1114
+ #: dashboard/publisher/adverts-edit.php:435
1115
  msgid ""
1116
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1117
  "and select the advert or the group the advert is in."
1118
  msgstr ""
1119
 
1120
+ #: dashboard/publisher/adverts-edit.php:203
1121
+ #: dashboard/publisher/adverts-edit.php:438
1122
  #: dashboard/publisher/groups-edit.php:140
1123
  #: dashboard/publisher/groups-edit.php:289
1124
  msgid "In a post or page"
1125
  msgstr ""
1126
 
1127
+ #: dashboard/publisher/adverts-edit.php:205
1128
+ #: dashboard/publisher/adverts-edit.php:440
1129
  #: dashboard/publisher/groups-edit.php:142
1130
  #: dashboard/publisher/groups-edit.php:291
1131
  msgid "Directly in a theme"
1132
  msgstr ""
1133
 
1134
+ #: dashboard/publisher/adverts-edit.php:211
1135
  msgid "Schedule your advert"
1136
  msgstr ""
1137
 
1138
+ #: dashboard/publisher/adverts-edit.php:215
1139
  msgid "Start date (day/month/year)"
1140
  msgstr ""
1141
 
1142
+ #: dashboard/publisher/adverts-edit.php:236
1143
  msgid "End date (day/month/year)"
1144
  msgstr ""
1145
 
1146
+ #: dashboard/publisher/adverts-edit.php:259
1147
  msgid "Start time (hh:mm)"
1148
  msgstr ""
1149
 
1150
+ #: dashboard/publisher/adverts-edit.php:266
1151
  msgid "End time (hh:mm)"
1152
  msgstr ""
1153
 
1154
+ #: dashboard/publisher/adverts-edit.php:276
1155
  msgid "Maximum Clicks"
1156
  msgstr ""
1157
 
1158
+ #: dashboard/publisher/adverts-edit.php:277
1159
+ #: dashboard/publisher/adverts-edit.php:279
1160
  msgid "Leave empty or 0 to skip this."
1161
  msgstr "Dejar en blanco o 0 para omitir."
1162
 
1163
+ #: dashboard/publisher/adverts-edit.php:278
1164
  msgid "Maximum Impressions"
1165
  msgstr ""
1166
 
1167
+ #: dashboard/publisher/adverts-edit.php:283
1168
  msgid "Important"
1169
  msgstr ""
1170
 
1171
+ #: dashboard/publisher/adverts-edit.php:284
1172
  msgid ""
1173
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1174
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1175
  "14:00 hours. 6AM is 6:00 hours."
1176
  msgstr ""
1177
 
1178
+ #: dashboard/publisher/adverts-edit.php:288
1179
  msgid ""
1180
  "Create multiple and more advanced schedules for each advert with AdRotate "
1181
  "Pro."
1182
  msgstr ""
1183
 
1184
+ #: dashboard/publisher/adverts-edit.php:288
1185
+ #: dashboard/publisher/adverts-edit.php:357
1186
+ #: dashboard/publisher/adverts-edit.php:428
1187
  #: dashboard/publisher/groups-edit.php:191
1188
  #, fuzzy
1189
  msgid "Upgrade today"
1190
  msgstr "Hoy"
1191
 
1192
+ #: dashboard/publisher/adverts-edit.php:295
1193
  #: dashboard/publisher/groups-edit.php:153
1194
  msgid "Advanced"
1195
  msgstr "Avanzado"
1196
 
1197
+ #: dashboard/publisher/adverts-edit.php:296
1198
+ #: dashboard/publisher/adverts-edit.php:360
1199
  msgid "Available in AdRotate Pro!"
1200
  msgstr ""
1201
 
1202
+ #: dashboard/publisher/adverts-edit.php:301
1203
+ #: dashboard/publisher/groups-edit.php:331
 
1204
  msgid "Weight"
1205
  msgstr "Prioridad"
1206
 
1207
+ #: dashboard/publisher/adverts-edit.php:304
1208
  msgid "Few impressions"
1209
  msgstr ""
1210
 
1211
+ #: dashboard/publisher/adverts-edit.php:309
1212
  msgid "Less than average"
1213
  msgstr "Menos de la media"
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:314
1216
  msgid "Normal impressions"
1217
  msgstr ""
1218
 
1219
+ #: dashboard/publisher/adverts-edit.php:319
1220
  msgid "More than average"
1221
  msgstr "Más de la media"
1222
 
1223
+ #: dashboard/publisher/adverts-edit.php:324
1224
  msgid "Many impressions"
1225
  msgstr ""
1226
 
1227
+ #: dashboard/publisher/adverts-edit.php:329
1228
  msgid "Mobile"
1229
  msgstr ""
1230
 
1231
+ #: dashboard/publisher/adverts-edit.php:331
1232
  msgid "Computers"
1233
  msgstr ""
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:334
1236
  msgid "Smartphones"
1237
  msgstr ""
1238
 
1239
+ #: dashboard/publisher/adverts-edit.php:337
1240
  msgid "Tablets"
1241
  msgstr ""
1242
 
1243
+ #: dashboard/publisher/adverts-edit.php:340
1244
  msgid ""
1245
  "Also enable mobile support in the group this advert goes in or these are "
1246
  "ignored."
1247
  msgstr ""
1248
 
1249
+ #: dashboard/publisher/adverts-edit.php:340
1250
+ msgid "Operating system detection only detects iOS/Android/Other or neither."
 
 
1251
  msgstr ""
1252
 
1253
+ #: dashboard/publisher/adverts-edit.php:344
1254
  msgid "Mobile OS"
1255
  msgstr ""
1256
 
1257
+ #: dashboard/publisher/adverts-edit.php:346
1258
  msgid "iOS"
1259
  msgstr ""
1260
 
1261
+ #: dashboard/publisher/adverts-edit.php:349
1262
  msgid "Android"
1263
  msgstr ""
1264
 
1265
+ #: dashboard/publisher/adverts-edit.php:352
1266
  msgid "Others"
1267
  msgstr ""
1268
 
1269
+ #: dashboard/publisher/adverts-edit.php:357
1270
  msgid ""
1271
  "With AdRotate Pro you can easily select which devices and mobile operating "
1272
  "systems the advert should show on!"
1273
  msgstr ""
1274
 
1275
+ #: dashboard/publisher/adverts-edit.php:360
 
 
 
 
 
 
1276
  msgid ""
1277
  "Assign the advert to a group and enable that group to use Geo Targeting."
1278
  msgstr ""
1279
 
1280
+ #: dashboard/publisher/adverts-edit.php:418
1281
  msgid "A comma separated list of items:"
1282
  msgstr ""
1283
 
1284
+ #: dashboard/publisher/adverts-edit.php:418
1285
  #, fuzzy
1286
  msgid ""
1287
  "AdRotate does not check the validity of names so make sure you spell them "
1290
  "AdRotate no comprueba la validez de los nombres, así que asegúrate de "
1291
  "escribirlos correctamente!"
1292
 
1293
+ #: dashboard/publisher/adverts-edit.php:428
1294
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1295
  msgstr ""
1296
 
1297
+ #: dashboard/publisher/adverts-edit.php:452
1298
  msgid "Select Groups"
1299
  msgstr "Seleccione Grupos"
1300
 
1301
+ #: dashboard/publisher/adverts-edit.php:457
1302
  msgid "ID - Name"
1303
  msgstr "ID - Nombre"
1304
 
1305
+ #: dashboard/publisher/adverts-edit.php:467
1306
  #: dashboard/publisher/groups-main.php:60
1307
  #: dashboard/settings/geotargeting.php:49
1308
  msgid "Default"
1309
  msgstr "Predeterminado"
1310
 
1311
+ #: dashboard/publisher/adverts-edit.php:468
1312
  #: dashboard/publisher/groups-main.php:61
1313
  msgid "Dynamic"
1314
  msgstr "Dinámico"
1315
 
1316
+ #: dashboard/publisher/adverts-edit.php:468
1317
  #: dashboard/publisher/groups-main.php:61
1318
  msgid "second rotation"
1319
  msgstr "segundos rotación"
1320
 
1321
+ #: dashboard/publisher/adverts-edit.php:469
1322
  #: dashboard/publisher/groups-main.php:62
1323
  msgid "Block"
1324
  msgstr "Block"
1325
 
1326
+ #: dashboard/publisher/adverts-edit.php:469
1327
  #: dashboard/publisher/groups-main.php:62
1328
  msgid "grid"
1329
  msgstr "cuadrícula"
1330
 
1331
+ #: dashboard/publisher/adverts-edit.php:470
1332
  #: dashboard/publisher/groups-edit.php:199
1333
  #: dashboard/publisher/groups-main.php:63
1334
  msgid "Post Injection"
1335
  msgstr "Integrarlo después"
1336
 
1337
+ #: dashboard/publisher/adverts-edit.php:471
1338
  msgid "Geolocation"
1339
  msgstr "Geolocalización"
1340
 
1341
+ #: dashboard/publisher/adverts-edit.php:477
1342
  #: dashboard/publisher/groups-edit.php:57
1343
  #: dashboard/publisher/groups-main.php:70
1344
  msgid "Mode"
1379
  msgstr "Por 7 días"
1380
 
1381
  #: dashboard/publisher/adverts-error.php:71
1382
+ #, fuzzy
1383
+ #| msgid "Configuration errors."
1384
+ msgid "Configuration errors"
1385
  msgstr "Errores de configuración."
1386
 
1387
  #: dashboard/publisher/adverts-error.php:72
1388
+ #, fuzzy
1389
+ #| msgid "Expires soon."
1390
+ msgid "Expires soon"
1391
  msgstr "Caduca pronto."
1392
 
1393
  #: dashboard/publisher/adverts-error.php:73
1394
+ #: dashboard/settings/maintenance.php:64
1395
+ msgid "Expired"
1396
+ msgstr "Caducado"
1397
 
1398
  #: dashboard/publisher/adverts-main.php:12
1399
  msgid "Active Adverts"
1401
 
1402
  #: dashboard/publisher/adverts-main.php:24
1403
  #, fuzzy
1404
+ msgid "Export to CSV"
1405
  msgstr "Exportar"
1406
 
1407
+ #: dashboard/publisher/adverts-main.php:44
1408
+ #: dashboard/publisher/adverts-main.php:46
1409
  #: dashboard/publisher/groups-main.php:37
1410
  #: dashboard/publisher/groups-main.php:39
1411
  msgid "Today"
1412
  msgstr "Hoy"
1413
 
1414
+ #: dashboard/publisher/adverts-main.php:100
1415
  msgid "No adverts created yet!"
1416
  msgstr ""
1417
 
1465
  msgid "Edit Group"
1466
  msgstr "Editar Grupo"
1467
 
 
 
 
 
 
1468
  #: dashboard/publisher/groups-edit.php:60
1469
  msgid "Default - Show one ad at a time"
1470
  msgstr "Predeterminado - Mostrar un anuncio a la vez"
1746
  msgid "Choose adverts"
1747
  msgstr ""
1748
 
1749
+ #: dashboard/publisher/groups-edit.php:330
1750
  msgid "Visible until"
1751
  msgstr "Visible hasta"
1752
 
1754
  msgid "No adverts created!"
1755
  msgstr ""
1756
 
1757
+ #: dashboard/publisher/groups-edit.php:384
1758
+ msgid "Configuration errors."
1759
+ msgstr "Errores de configuración."
1760
+
1761
+ #: dashboard/publisher/groups-edit.php:385
1762
+ msgid "Expires soon."
1763
+ msgstr "Caduca pronto."
1764
+
1765
+ #: dashboard/publisher/groups-edit.php:386
1766
+ msgid "Has expired."
1767
+ msgstr "Ha expirado."
1768
+
1769
  #: dashboard/publisher/groups-main.php:12
1770
  msgid "Manage Groups"
1771
  msgstr "Gestionar Grupos"
1787
  msgstr "Esta acción no se puede deshacerse!"
1788
 
1789
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1790
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
 
1791
  msgid "OK to continue, CANCEL to stop."
1792
  msgstr "OK para continuar, CANCELAR para detenerlo."
1793
 
1854
  msgstr ""
1855
 
1856
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1857
+ #: dashboard/settings/maintenance.php:116 dashboard/settings/misc.php:43
1858
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1859
+ #: dashboard/settings/statistics.php:73
1860
  msgid "Update Options"
1861
  msgstr "Actualizar Opciones"
1862
 
1952
  msgstr "Carpeta de los Banners"
1953
 
1954
  #: dashboard/settings/general.php:50
1955
+ #, fuzzy
1956
+ #| msgid "Set a location where your banner images will be stored."
1957
+ msgid "Set a folder where your banner images will be stored."
1958
  msgstr "Establezca un lugar donde se almacenarán las imágenes de banner."
1959
 
1960
  #: dashboard/settings/general.php:53
1961
+ msgid "Folder name"
1962
+ msgstr ""
1963
 
1964
  #: dashboard/settings/general.php:55
1965
+ #, fuzzy
1966
+ #| msgid "(Default: wp-content/banners/)."
1967
+ msgid "(Default: banners)."
1968
  msgstr "(Predeterminado: wp-content/banners/)."
1969
 
1970
  #: dashboard/settings/general.php:56
2109
  msgid "Password/License Key"
2110
  msgstr ""
2111
 
 
 
 
 
2112
  #: dashboard/settings/maintenance.php:17
2113
  msgid ""
2114
  "Use these functions when you notice your database is slow, unresponsive and "
2148
  "cambios que haya realizado. Esto puede variar de cero a cientos de Kb de "
2149
  "datos."
2150
 
2151
+ #: dashboard/settings/maintenance.php:28
2152
+ #, fuzzy
2153
+ #| msgid "Clean-up Database"
2154
+ msgid "Clean-up Database and Files"
2155
+ msgstr "Limpieza de la Base de Datos"
2156
+
2157
+ #: dashboard/settings/maintenance.php:30
2158
  msgid "Clean-up Database"
2159
  msgstr "Limpieza de la Base de Datos"
2160
 
2161
  #: dashboard/settings/maintenance.php:30
2162
+ #, fuzzy
2163
+ #| msgid ""
2164
+ #| "You are about to clean up your database. This may delete expired "
2165
+ #| "schedules and older statistics."
2166
  msgid ""
2167
+ "You are about to clean up your database. This may delete expired schedules, "
2168
+ "older statistics and try to delete export files"
2169
  msgstr ""
2170
  "Vas a limpiar tu base de datos. Esto puede eliminar programas vencidos y las "
2171
  "estadísticas más antigüas."
2174
  msgid "Are you sure you want to continue?"
2175
  msgstr "¿Está seguro que desea continuar?"
2176
 
2177
+ #: dashboard/settings/maintenance.php:30
2178
+ msgid "THIS ACTION CAN NOT BE UNDONE!"
 
2179
  msgstr ""
 
2180
 
2181
  #: dashboard/settings/maintenance.php:31
2182
+ #, fuzzy
2183
+ #| msgid "Delete stats older than 356 days (Optional)."
2184
+ msgid "Delete stats older than 356 days."
2185
  msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
2186
 
2187
  #: dashboard/settings/maintenance.php:32
2188
+ msgid "Delete leftover export files."
2189
  msgstr ""
2190
 
2191
  #: dashboard/settings/maintenance.php:33
2195
  msgstr ""
2196
 
2197
  #: dashboard/settings/maintenance.php:33
2198
+ #, fuzzy
2199
+ #| msgid ""
2200
+ #| "Additionally you can clean up old statistics. This will improve the speed "
2201
+ #| "of your site."
2202
  msgid ""
2203
+ "Additionally you can delete statistics and/or unused export files. This will "
2204
+ "improve the speed of your site."
2205
  msgstr ""
2206
+ "Adicionalmente puede limpiar las estadísticas antiguas. Esto mejorará la "
2207
+ "velocidad de su sitio."
2208
 
2209
  #: dashboard/settings/maintenance.php:37
2210
  msgid "Re-evaluate Ads"
2218
  msgid "You are about to check all ads for errors."
2219
  msgstr "Vas a comprobar todos los anuncios para localizar errores."
2220
 
2221
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
2222
+ msgid "This might take a while and may slow down your site during this action!"
2223
+ msgstr ""
2224
+ "Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
2225
+
2226
  #: dashboard/settings/maintenance.php:40
2227
  msgid ""
2228
  "This will apply all evaluation rules to all ads to see if any error slipped "
2269
  msgstr ""
2270
 
2271
  #: dashboard/settings/maintenance.php:54
2272
+ #, fuzzy
2273
+ #| msgid "Track clicks and impressions."
2274
+ msgid "Disable timers for clicks and impressions."
2275
+ msgstr "Seguimiento de clics e impresiones."
 
 
2276
 
2277
  #: dashboard/settings/maintenance.php:55
2278
  msgid "Temporarily disable encryption on the redirect url."
2294
  msgid "Error"
2295
  msgstr "Error"
2296
 
 
 
 
 
2297
  #: dashboard/settings/maintenance.php:64
2298
  msgid "Expires Soon"
2299
  msgstr "Caduca Pronto"
2306
  msgid "Banners/assets Folder"
2307
  msgstr ""
2308
 
2309
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2310
  msgid "Exists and appears writable"
2311
  msgstr ""
2312
 
2313
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2314
  msgid "Not writable or does not exist"
2315
  msgstr ""
2316
 
2317
+ #: dashboard/settings/maintenance.php:76
2318
  msgid "Reports Folder"
2319
  msgstr ""
2320
 
2321
+ #: dashboard/settings/maintenance.php:85
2322
  msgid "Advert evaluation"
2323
  msgstr ""
2324
 
2325
+ #: dashboard/settings/maintenance.php:86
2326
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2327
  msgstr ""
2328
 
2329
+ #: dashboard/settings/maintenance.php:87
2330
+ #, fuzzy
2331
+ #| msgid "Clean Trackerdata next run:"
2332
+ msgid "Clean Trackerdata"
2333
+ msgstr "Ultima ejecución de la limpieza de la base de datos:"
2334
+
2335
+ #: dashboard/settings/maintenance.php:88
2336
+ msgid "Not scheduled!"
2337
+ msgstr "No Programada!"
2338
+
2339
+ #: dashboard/settings/maintenance.php:91
2340
+ msgid "Background tasks"
2341
+ msgstr ""
2342
+
2343
+ #: dashboard/settings/maintenance.php:93
2344
+ msgid "Reset background tasks"
2345
  msgstr ""
2346
 
2347
+ #: dashboard/settings/maintenance.php:98
2348
  msgid "Internal Versions"
2349
  msgstr ""
2350
 
2351
+ #: dashboard/settings/maintenance.php:99
2352
  msgid ""
2353
  "Unless you experience database issues or a warning shows below, these "
2354
  "numbers are not really relevant for troubleshooting. Support may ask for "
2355
  "them to verify your database status."
2356
  msgstr ""
2357
 
2358
+ #: dashboard/settings/maintenance.php:102
2359
  msgid "AdRotate version"
2360
  msgstr ""
2361
 
2362
+ #: dashboard/settings/maintenance.php:103
2363
+ #: dashboard/settings/maintenance.php:105
2364
  msgid "Current:"
2365
  msgstr ""
2366
 
2367
+ #: dashboard/settings/maintenance.php:103
2368
+ #: dashboard/settings/maintenance.php:105
2369
  msgid "Should be:"
2370
  msgstr ""
2371
 
2372
+ #: dashboard/settings/maintenance.php:103
2373
+ #: dashboard/settings/maintenance.php:105
2374
  msgid "Previous:"
2375
  msgstr ""
2376
 
2377
+ #: dashboard/settings/maintenance.php:104
2378
  msgid "Database version"
2379
  msgstr ""
2380
 
2381
+ #: dashboard/settings/maintenance.php:108
2382
+ msgid "Manual upgrade"
2383
+ msgstr ""
2384
+
2385
+ #: dashboard/settings/maintenance.php:110
2386
  msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2387
  msgstr ""
2388
 
2389
+ #: dashboard/settings/maintenance.php:110
2390
  msgid "Make sure you have a database backup!"
2391
  msgstr ""
2392
 
2393
+ #: dashboard/settings/maintenance.php:110
2394
+ #, fuzzy
2395
+ #| msgid "Ad updated"
2396
+ msgid "Run updater"
2397
+ msgstr "Anuncio actualizado"
2398
 
2399
  #: dashboard/settings/misc.php:16
2400
  msgid "Miscellaneous"
2471
  "el Widget AdRotate. Si utiliza un fragmento PHP necesita envolver dentro del "
2472
  "código PHP la exclusión a ti mismo."
2473
 
 
 
 
 
2474
  #: dashboard/settings/notifications.php:19
2475
  msgid "Set up who gets notifications if ads need your attention."
2476
  msgstr ""
2609
  "separated. This field may not be empty!"
2610
  msgstr ""
2611
 
 
 
 
 
2612
  #: dashboard/settings/notifications.php:75
2613
  msgid ""
2614
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2664
  msgid "and get your API token"
2665
  msgstr ""
2666
 
 
 
 
 
2667
  #: dashboard/settings/roles.php:18
2668
  msgid "Who has access to what?"
2669
  msgstr "¿Quién tiene acceso a qué?"
2813
  msgstr ""
2814
  "Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
2815
 
2816
+ #~ msgid "Empty database records removed"
2817
+ #~ msgstr "Se han eliminado los registros vacios de la base de datos"
 
2818
 
2819
+ #~ msgid "For one WordPress installation."
2820
+ #~ msgstr "Para una instalación de WordPress."
2821
+
2822
+ #~ msgid "For two WordPress installations."
2823
+ #~ msgstr "Para dos instalaciónes de WordPress."
2824
+
2825
+ #~ msgid " For up to five WordPress installations."
2826
+ #~ msgstr "Para un máximo de cinco instalaciones de WordPress."
2827
+
2828
+ #~ msgid "Location"
2829
+ #~ msgstr "Localización"
2830
+
2831
+ #~ msgid ""
2832
+ #~ "Disable timers for clicks and impressions and enable a alert window for "
2833
+ #~ "clicktracking."
2834
+ #~ msgstr ""
2835
+ #~ "Deshabilitar contadores de tiempo de clics e impresiones y activar una "
2836
+ #~ "ventana de alerta para el seguimiento de clics."
2837
 
2838
  #, fuzzy
2839
  #~ msgid "Help AdRotate Grow"
2999
  #~ msgid "Ad evaluation next run:"
3000
  #~ msgstr "Evaluación de Anuncios en la siguiente ejecución:"
3001
 
 
 
 
 
 
 
3002
  #~ msgid "Set up who gets notification emails."
3003
  #~ msgstr "Establecer lo que se recibe en los mensajes de notificación."
3004
 
3205
  #~ msgid "Ad created"
3206
  #~ msgstr "Anuncio creado"
3207
 
 
 
 
3208
  #~ msgid ""
3209
  #~ "The ad was saved but has an issue which might prevent it from working "
3210
  #~ "properly. Review the yellow marked ad."
3314
  #~ "Si comienza a crear un anuncio o grupo pero no lo guarda cuando lo hace, "
3315
  #~ "utilize este botón para borrar esos registros vacíos."
3316
 
 
 
 
 
 
 
 
3317
  #~ msgid ""
3318
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3319
  #~ "becomes unusable in any way or by any means in whichever way I will not "
3582
  #~ msgid "Enable stats"
3583
  #~ msgstr "Habilitar las estadísticas"
3584
 
 
 
 
3585
  #, fuzzy
3586
  #~ msgid ""
3587
  #~ "Disabling this also disables click and impression limits on schedules."
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: 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,120 +13,122 @@ 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.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
 
125
- #: adrotate-output.php:575
126
  msgid "Oh no! Something went wrong!"
127
  msgstr "Oh no! Un problème est survenu!"
128
 
129
- #: adrotate-output.php:576
130
  msgid ""
131
  "WordPress was unable to verify the authenticity of the url you have clicked. "
132
  "Verify if the url used is valid or log in via your browser."
@@ -135,17 +137,17 @@ msgstr ""
135
  "Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
136
  "votre navigateur."
137
 
138
- #: adrotate-output.php:577
139
  msgid ""
140
  "If you have received the url you want to visit via email, you are being "
141
  "tricked!"
142
  msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
143
 
144
- #: adrotate-output.php:578
145
  msgid "Contact support if the issue persists:"
146
  msgstr "Contactez le support si le soucis persiste :"
147
 
148
- #: adrotate-output.php:593
149
  msgid ""
150
  "Error, Ad is not available at this time due to schedule/geolocation "
151
  "restrictions or does not exist!"
@@ -153,7 +155,7 @@ msgstr ""
153
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
154
  "horaires/géographiques ou n'existe pas!"
155
 
156
- #: adrotate-output.php:595
157
  msgid ""
158
  "Error, Ad is not available at this time due to schedule/geolocation "
159
  "restrictions!"
@@ -161,7 +163,7 @@ msgstr ""
161
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
162
  "horaires/géographiques!"
163
 
164
- #: adrotate-output.php:602 adrotate-output.php:604
165
  msgid ""
166
  "Either there are no banners, they are disabled or none qualified for this "
167
  "location!"
@@ -169,19 +171,19 @@ msgstr ""
169
  "Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
170
  "cet endroit!"
171
 
172
- #: adrotate-output.php:610
173
  msgid "Error, no Ad ID set! Check your syntax!"
174
  msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
175
 
176
- #: adrotate-output.php:616
177
  msgid "Error, no group ID set! Check your syntax!"
178
  msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
179
 
180
- #: adrotate-output.php:621
181
  msgid "Error, group does not exist! Check your syntax!"
182
  msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
183
 
184
- #: adrotate-output.php:627
185
  msgid ""
186
  "There was an error locating the database tables for AdRotate. Please "
187
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -190,226 +192,226 @@ msgstr ""
190
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
191
  "extensions. "
192
 
193
- #: adrotate-output.php:627
194
  msgid "If this does not solve the issue please seek support at"
195
  msgstr ""
196
  "Si les instructions ne résoudent pas le soucis, veuillez contacter le "
197
  "support à"
198
 
199
- #: adrotate-output.php:633
200
  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
  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,60 +457,99 @@ msgstr "ID :"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
512
  #: dashboard/adrotatepro.php:20
513
  msgid "Satisfy your advertisers"
514
  msgstr "Comblez vos annonceurs"
@@ -563,15 +604,21 @@ msgid ""
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, "
@@ -580,11 +627,11 @@ msgid ""
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 "
@@ -592,11 +639,11 @@ msgid ""
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,144 +651,125 @@ msgid ""
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
 
694
- #: dashboard/info.php:24
695
  msgid "Currently"
696
  msgstr "Actuellement"
697
 
698
- #: dashboard/info.php:30
699
  msgid "Your setup"
700
  msgstr "Votre configuration"
701
 
702
- #: dashboard/info.php:31
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 "
744
- "plugins!"
745
  msgstr ""
746
 
747
  #: dashboard/publisher/adverts-disabled.php:15
@@ -756,7 +784,7 @@ 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
 
@@ -787,38 +815,39 @@ 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
792
  msgid "Start / End"
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"
800
- msgstr "Titre"
 
 
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é"
808
 
809
- #: dashboard/publisher/adverts-disabled.php:39
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
817
  msgid "Clicks"
818
  msgstr "Clicks"
819
 
820
- #: dashboard/publisher/adverts-disabled.php:40
821
- #: dashboard/publisher/adverts-main.php:48
822
  #: dashboard/publisher/adverts-report.php:39
823
  #: dashboard/publisher/adverts-report.php:58
824
  #: dashboard/publisher/groups-report.php:40
@@ -826,54 +855,47 @@ msgstr "Clicks"
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,78 +903,93 @@ msgstr ""
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,42 +997,42 @@ msgstr ""
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,70 +1040,70 @@ msgstr ""
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
@@ -1074,240 +1111,231 @@ msgstr "Usage"
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,36 +1376,38 @@ msgid "For 7 days"
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 ""
1368
 
1369
  #: dashboard/publisher/adverts-main.php:24
1370
- msgid "Export to XML"
1371
  msgstr ""
1372
 
1373
- #: dashboard/publisher/adverts-main.php:45
1374
- #: dashboard/publisher/adverts-main.php:47
1375
  #: dashboard/publisher/groups-main.php:37
1376
  #: dashboard/publisher/groups-main.php:39
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,11 +1461,6 @@ msgstr "Nouveau Groupe"
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 "
@@ -1714,7 +1739,7 @@ msgstr ""
1714
  msgid "Choose adverts"
1715
  msgstr ""
1716
 
1717
- #: dashboard/publisher/groups-edit.php:335
1718
  msgid "Visible until"
1719
  msgstr "Visible jusqu'à"
1720
 
@@ -1722,6 +1747,18 @@ msgstr "Visible jusqu'à"
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"
@@ -1743,8 +1780,7 @@ msgid "This action can not be undone!"
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,9 +1845,9 @@ msgid ""
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
 
@@ -1907,15 +1943,15 @@ msgid "Banner Folder"
1907
  msgstr ""
1908
 
1909
  #: dashboard/settings/general.php:50
1910
- msgid "Set a location where your banner images will be stored."
1911
  msgstr ""
1912
 
1913
  #: dashboard/settings/general.php:53
1914
- msgid "Location"
1915
  msgstr ""
1916
 
1917
  #: dashboard/settings/general.php:55
1918
- msgid "(Default: wp-content/banners/)."
1919
  msgstr ""
1920
 
1921
  #: dashboard/settings/general.php:56
@@ -2056,10 +2092,6 @@ msgstr ""
2056
  msgid "Password/License Key"
2057
  msgstr ""
2058
 
2059
- #: dashboard/settings/maintenance.php:16
2060
- msgid "Maintenance"
2061
- msgstr "Maintenance"
2062
-
2063
  #: dashboard/settings/maintenance.php:17
2064
  msgid ""
2065
  "Use these functions when you notice your database is slow, unresponsive and "
@@ -2099,14 +2131,24 @@ msgstr ""
2099
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
2100
  "KB de données."
2101
 
2102
- #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
 
 
 
 
 
 
2103
  msgid "Clean-up Database"
2104
  msgstr "Nettoyer la base de données"
2105
 
2106
  #: dashboard/settings/maintenance.php:30
 
 
 
 
2107
  msgid ""
2108
- "You are about to clean up your database. This may delete expired schedules "
2109
- "and older statistics."
2110
  msgstr ""
2111
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
2112
  "supprimer des calendriers périmés et des vieilles statistiques.."
@@ -2115,19 +2157,18 @@ msgstr ""
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 "
2123
- "interval!"
2124
 
2125
  #: dashboard/settings/maintenance.php:31
2126
- msgid "Delete stats older than 356 days (Optional)."
 
 
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
@@ -2137,10 +2178,16 @@ msgid ""
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"
@@ -2154,6 +2201,12 @@ msgstr "Re-évaluer toutes les publicités"
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 "
@@ -2201,12 +2254,10 @@ 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."
2207
- msgstr ""
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."
@@ -2228,10 +2279,6 @@ msgstr "Normal"
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"
@@ -2244,74 +2291,95 @@ msgstr ""
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"
@@ -2388,10 +2456,6 @@ msgstr ""
2388
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
2389
  "PHP dans le code d'exclusion vous-même."
2390
 
2391
- #: dashboard/settings/notifications.php:18
2392
- msgid "Notifications"
2393
- msgstr ""
2394
-
2395
  #: dashboard/settings/notifications.php:19
2396
  msgid "Set up who gets notifications if ads need your attention."
2397
  msgstr ""
@@ -2522,10 +2586,6 @@ msgid ""
2522
  "separated. This field may not be empty!"
2523
  msgstr ""
2524
 
2525
- #: dashboard/settings/notifications.php:72
2526
- msgid "Advertisers"
2527
- msgstr ""
2528
-
2529
  #: dashboard/settings/notifications.php:75
2530
  msgid ""
2531
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
@@ -2579,10 +2639,6 @@ msgstr ""
2579
  msgid "and get your API token"
2580
  msgstr ""
2581
 
2582
- #: dashboard/settings/roles.php:17
2583
- msgid "Roles"
2584
- msgstr ""
2585
-
2586
  #: dashboard/settings/roles.php:18
2587
  msgid "Who has access to what?"
2588
  msgstr "Qui a accès à quoi?"
@@ -2726,15 +2782,24 @@ msgid ""
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"
@@ -2880,12 +2945,6 @@ msgstr ""
2880
  #~ msgid "Previous database version:"
2881
  #~ msgstr "Version antérieure de la base de données :"
2882
 
2883
- #~ msgid "Not scheduled!"
2884
- #~ msgstr "Pas planifié!"
2885
-
2886
- #~ msgid "Clean Trackerdata next run:"
2887
- #~ msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
2888
-
2889
  #~ msgid "Get more features with AdRotate Pro"
2890
  #~ msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
2891
 
@@ -3031,9 +3090,6 @@ msgstr ""
3031
  #~ msgid "Ad created"
3032
  #~ msgstr "Publicité créée"
3033
 
3034
- #~ msgid "Ad updated"
3035
- #~ msgstr "Publicité mise à jour"
3036
-
3037
  #~ msgid ""
3038
  #~ "The ad was saved but has an issue which might prevent it from working "
3039
  #~ "properly. Review the yellow marked ad."
@@ -3130,13 +3186,6 @@ msgstr ""
3130
  #~ "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
3131
  #~ "registres vides."
3132
 
3133
- #~ msgid ""
3134
- #~ "Additionally you can clean up old statistics. This will improve the speed "
3135
- #~ "of your site."
3136
- #~ msgstr ""
3137
- #~ "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
3138
- #~ "d'améliorer la vitesse de votre site."
3139
-
3140
  #~ msgid ""
3141
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3142
  #~ "becomes unusable in any way or by any means in whichever way I will not "
@@ -3407,9 +3456,6 @@ msgstr ""
3407
  #~ msgid "Enable stats"
3408
  #~ msgstr "Statistiques activés"
3409
 
3410
- #~ msgid "Track clicks and impressions."
3411
- #~ msgstr "Suivi des clicks et des impressions."
3412
-
3413
  #, fuzzy
3414
  #~ msgid ""
3415
  #~ "Disabling this also disables click and impression limits on schedules."
2
  msgstr ""
3
  "Project-Id-Version: AdRotate 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-19 15:30+0800\n"
6
+ "PO-Revision-Date: 2017-06-19 15:30+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 2.0.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:722
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
+ #: adrotate-functions.php:725
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:768
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:772
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:776
37
  msgid "Ad(s) deleted"
38
  msgstr "Publicité(s) supprimée(s)"
39
 
40
+ #: adrotate-functions.php:780
41
  msgid "Group deleted"
42
  msgstr "Groupe supprimé"
43
 
44
+ #: adrotate-functions.php:784
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:788
49
  msgid "Ad(s) renewed"
50
  msgstr "publicité(s) renouvellée(s)"
51
 
52
+ #: adrotate-functions.php:792
53
  msgid "Ad(s) deactivated"
54
  msgstr "Publicité(s) désactivée(s)"
55
 
56
+ #: adrotate-functions.php:796
57
  msgid "Ad(s) activated"
58
  msgstr "Publicité(s) activée(s)"
59
 
60
+ #: adrotate-functions.php:800
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:804
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Publicité créée"
68
 
69
+ #: adrotate-functions.php:809
70
  msgid "Settings saved"
71
  msgstr "Paramètres sauvegardés"
72
 
73
+ #: adrotate-functions.php:813
74
  msgid "Database optimized"
75
  msgstr "Base de données optimisée"
76
 
77
+ #: adrotate-functions.php:817
78
  msgid "Database repaired"
79
  msgstr "Base de données réparée"
80
 
81
+ #: adrotate-functions.php:821
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:825
87
+ #, fuzzy
88
+ #| msgid "Clean-up Database"
89
+ msgid "Cleanup complete"
90
+ msgstr "Nettoyer la base de données"
91
 
92
+ #: adrotate-functions.php:830
93
  msgid "Action prohibited"
94
  msgstr "Action interdite"
95
 
96
+ #: adrotate-functions.php:834
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:838
103
  msgid "No data found in selected time period"
104
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
105
 
106
+ #: adrotate-functions.php:842
107
  msgid "Database can only be optimized or cleaned once every hour"
108
  msgstr ""
109
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
110
 
111
+ #: adrotate-functions.php:846
112
  msgid "Form can not be (partially) empty!"
113
  msgstr ""
114
 
115
+ #: adrotate-functions.php:850
116
  msgid "No ads found."
117
  msgstr ""
118
 
119
+ #: adrotate-functions.php:854
120
  msgid "Unexpected error"
121
  msgstr ""
122
 
123
+ #: adrotate-manage-publisher.php:665
124
  msgid "AdRotate Advertiser"
125
  msgstr ""
126
 
127
+ #: adrotate-output.php:551
128
  msgid "Oh no! Something went wrong!"
129
  msgstr "Oh no! Un problème est survenu!"
130
 
131
+ #: adrotate-output.php:552
132
  msgid ""
133
  "WordPress was unable to verify the authenticity of the url you have clicked. "
134
  "Verify if the url used is valid or log in via your browser."
137
  "Veuillez vérifier que le lien utilisé est bien valide, ou connectez-vous via "
138
  "votre navigateur."
139
 
140
+ #: adrotate-output.php:553
141
  msgid ""
142
  "If you have received the url you want to visit via email, you are being "
143
  "tricked!"
144
  msgstr "Si vous avez reçu ce lien par email, vous avez été dupés!"
145
 
146
+ #: adrotate-output.php:554
147
  msgid "Contact support if the issue persists:"
148
  msgstr "Contactez le support si le soucis persiste :"
149
 
150
+ #: adrotate-output.php:569
151
  msgid ""
152
  "Error, Ad is not available at this time due to schedule/geolocation "
153
  "restrictions or does not exist!"
155
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
156
  "horaires/géographiques ou n'existe pas!"
157
 
158
+ #: adrotate-output.php:571
159
  msgid ""
160
  "Error, Ad is not available at this time due to schedule/geolocation "
161
  "restrictions!"
163
  "Erreur, la pub n'est pas disponible en ce moment en raison de restrictions "
164
  "horaires/géographiques!"
165
 
166
+ #: adrotate-output.php:578 adrotate-output.php:580
167
  msgid ""
168
  "Either there are no banners, they are disabled or none qualified for this "
169
  "location!"
171
  "Soit il n'y a pas de bannières, ils sont desactivées ou pas qualifiées pour "
172
  "cet endroit!"
173
 
174
+ #: adrotate-output.php:586
175
  msgid "Error, no Ad ID set! Check your syntax!"
176
  msgstr "Erreur, aucun identifiant de pub n'a été mis! Vérifiez votre syntaxe."
177
 
178
+ #: adrotate-output.php:592
179
  msgid "Error, no group ID set! Check your syntax!"
180
  msgstr "Erreur: aucun ID de groupe n'est mis en place! Vérifiez votre syntaxe!"
181
 
182
+ #: adrotate-output.php:597
183
  msgid "Error, group does not exist! Check your syntax!"
184
  msgstr "Erreur, le groupe n'existe pas! Vérifiez votre syntaxe!"
185
 
186
+ #: adrotate-output.php:603
187
  msgid ""
188
  "There was an error locating the database tables for AdRotate. Please "
189
  "deactivate and re-activate AdRotate from the plugin page!!"
192
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
193
  "extensions. "
194
 
195
+ #: adrotate-output.php:603
196
  msgid "If this does not solve the issue please seek support at"
197
  msgstr ""
198
  "Si les instructions ne résoudent pas le soucis, veuillez contacter le "
199
  "support à"
200
 
201
+ #: adrotate-output.php:609
202
  msgid "An unknown error occured."
203
  msgstr "Une erreur inconnue s'est produite."
204
 
205
+ #: adrotate-output.php:628 adrotate-output.php:631 adrotate-output.php:635
206
  msgid "Check adverts"
207
  msgstr ""
208
 
209
+ #: adrotate-output.php:640
210
  msgid ""
211
  "You have enable caching support but W3 Total Cache is not active on your "
212
  "site!"
213
  msgstr ""
214
 
215
+ #: adrotate-output.php:643
216
  msgid ""
217
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
218
  "not set."
219
  msgstr ""
220
 
221
+ #: adrotate-output.php:648
222
  msgid "Your AdRotate Banner folder is not writable or does not exist."
223
  msgstr ""
224
 
225
+ #: adrotate-output.php:688 dashboard/adrotatepro.php:87
226
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
227
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
228
+ #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
229
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:97 dashboard/info.php:98
230
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:104
231
+ #: dashboard/info.php:105 dashboard/info.php:106 dashboard/info.php:107
232
  #: dashboard/settings/geotargeting.php:35
233
  msgid "Buy now"
234
  msgstr ""
235
 
236
+ #: adrotate-output.php:689
237
  msgid ""
238
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
239
  "to the <strong>PRO</strong> version"
240
  msgstr ""
241
 
242
+ #: adrotate-output.php:689
243
  #, php-format
244
  msgid ""
245
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
246
  msgstr ""
247
 
248
+ #: adrotate-output.php:689
249
  msgid "Thank you for your purchase!"
250
  msgstr ""
251
 
252
+ #: adrotate-output.php:752
253
  msgid ""
254
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
255
  "menu. If you need help getting started take a look at the"
256
  msgstr ""
257
 
258
+ #: adrotate-output.php:752
259
  msgid "manuals"
260
  msgstr "manuels"
261
 
262
+ #: adrotate-output.php:752 adrotate-output.php:822
263
  msgid "and"
264
  msgstr ""
265
 
266
+ #: adrotate-output.php:752
267
  msgid "forums"
268
  msgstr ""
269
 
270
+ #: adrotate-output.php:785
271
  msgid "Useful Links"
272
  msgstr ""
273
 
274
+ #: adrotate-output.php:786
275
  msgid "Useful links to learn more about AdRotate"
276
  msgstr ""
277
 
278
+ #: adrotate-output.php:788
279
  msgid "AdRotate website"
280
  msgstr ""
281
 
282
+ #: adrotate-output.php:789
283
  msgid "Getting Started With AdRotate"
284
  msgstr ""
285
 
286
+ #: adrotate-output.php:790
287
  msgid "AdRotate manuals"
288
  msgstr ""
289
 
290
+ #: adrotate-output.php:791
291
  msgid "AdRotate Support Forum"
292
  msgstr ""
293
 
294
+ #: adrotate-output.php:814 dashboard/info.php:49
295
  msgid "Support AdRotate"
296
  msgstr "Soutenez AdRotate"
297
 
298
+ #: adrotate-output.php:815
299
  msgid "Check out my website"
300
  msgstr ""
301
 
302
+ #: adrotate-output.php:822
303
  msgid ""
304
  "Many users only think to review AdRotate when something goes wrong while "
305
  "thousands of people happily use AdRotate."
306
  msgstr ""
307
 
308
+ #: adrotate-output.php:822
309
  msgid "If you find AdRotate useful please leave your"
310
  msgstr ""
311
 
312
+ #: adrotate-output.php:822
313
  msgid "rating"
314
  msgstr ""
315
 
316
+ #: adrotate-output.php:822
317
  #, fuzzy
318
  msgid "review"
319
  msgstr "En avant-première"
320
 
321
+ #: adrotate-output.php:822
322
  msgid "on WordPress.org to help AdRotate grow in a positive way"
323
  msgstr ""
324
 
325
+ #: adrotate-output.php:848 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:848
331
  msgid "More information..."
332
  msgstr "Plus d'informations..."
333
 
334
+ #: adrotate-output.php:849
335
  msgid "This feature is available in AdRotate Pro"
336
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
337
 
338
+ #: adrotate-output.php:849
339
  msgid "Learn more"
340
  msgstr "En savoir plus"
341
 
342
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:220
343
+ #: dashboard/publisher/adverts-edit.php:241
344
  msgid "January"
345
  msgstr "Janvier"
346
 
347
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:221
348
+ #: dashboard/publisher/adverts-edit.php:242
349
  msgid "February"
350
  msgstr "Février"
351
 
352
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:222
353
+ #: dashboard/publisher/adverts-edit.php:243
354
  msgid "March"
355
  msgstr "Mars"
356
 
357
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:223
358
+ #: dashboard/publisher/adverts-edit.php:244
359
  msgid "April"
360
  msgstr "Avril"
361
 
362
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:224
363
+ #: dashboard/publisher/adverts-edit.php:245
364
  msgid "May"
365
  msgstr "Mai"
366
 
367
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:225
368
+ #: dashboard/publisher/adverts-edit.php:246
369
  msgid "June"
370
  msgstr "Juin"
371
 
372
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:226
373
+ #: dashboard/publisher/adverts-edit.php:247
374
  msgid "July"
375
  msgstr "Juillet"
376
 
377
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:227
378
+ #: dashboard/publisher/adverts-edit.php:248
379
  msgid "August"
380
  msgstr "Août"
381
 
382
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:228
383
+ #: dashboard/publisher/adverts-edit.php:249
384
  msgid "September"
385
  msgstr "Septembre"
386
 
387
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:229
388
+ #: dashboard/publisher/adverts-edit.php:250
389
  msgid "October"
390
  msgstr "Octobre"
391
 
392
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:230
393
+ #: dashboard/publisher/adverts-edit.php:251
394
  msgid "November"
395
  msgstr "Novembre"
396
 
397
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:231
398
+ #: dashboard/publisher/adverts-edit.php:252
399
  msgid "December"
400
  msgstr "Décembre"
401
 
402
+ #: adrotate-statistics.php:143
403
  msgid "Previous"
404
  msgstr "Précédent"
405
 
406
+ #: adrotate-statistics.php:145
407
  msgid "This month"
408
  msgstr "Ce mois-ci"
409
 
410
+ #: adrotate-statistics.php:146
411
  msgid "Next"
412
  msgstr "Prochain"
413
 
414
+ #: adrotate-statistics.php:232
415
  msgid "No data to show!"
416
  msgstr "Aucune donnée à montrer!"
417
 
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:103
461
  msgid "General Info"
462
  msgstr "Informations générales"
463
 
464
+ #: adrotate.php:104
465
  msgid "AdRotate Pro"
466
  msgstr "AdRotate Pro"
467
 
468
+ #: adrotate.php:105 dashboard/info.php:40
469
+ #: dashboard/publisher/adverts-edit.php:458
470
  #: dashboard/publisher/groups-main.php:34
471
  msgid "Adverts"
472
  msgstr "Publicités"
473
 
474
+ #: adrotate.php:106 dashboard/info.php:44
475
  msgid "Groups"
476
  msgstr "Groupes"
477
 
478
+ #: adrotate.php:107
479
  msgid "Settings"
480
  msgstr "Paramètres"
481
 
482
+ #: adrotate.php:125
483
  msgid "AdRotate Info"
484
  msgstr "Informations sur Adrotate"
485
 
486
+ #: adrotate.php:143
487
  msgid "AdRotate Professional"
488
  msgstr "AdRotate professionel"
489
 
490
+ #: adrotate.php:183
491
  msgid "Advert Management"
492
  msgstr ""
493
 
494
+ #: adrotate.php:241 adrotate.php:308
495
  msgid "Manage"
496
  msgstr "Gérer"
497
 
498
+ #: adrotate.php:242 adrotate.php:309
499
  msgid "Add New"
500
  msgstr "Ajouter"
501
 
502
+ #: adrotate.php:302
503
  msgid "Group Management"
504
  msgstr "Gérer les groupes"
505
 
506
+ #: adrotate.php:311
507
  msgid "Report"
508
  msgstr "Rapport"
509
 
510
+ #: adrotate.php:356
511
  msgid "AdRotate Settings"
512
  msgstr "Paramètres de AdRotate"
513
 
514
+ #: adrotate.php:361
515
+ #, fuzzy
516
+ #| msgid "General Info"
517
+ msgid "General"
518
+ msgstr "Informations générales"
519
+
520
+ #: adrotate.php:362 dashboard/settings/notifications.php:18
521
+ msgid "Notifications"
522
+ msgstr ""
523
+
524
+ #: adrotate.php:363 dashboard/publisher/adverts-disabled.php:69
525
+ #: dashboard/publisher/adverts-error.php:63
526
+ #: dashboard/publisher/adverts-main.php:81
527
+ #: dashboard/publisher/groups-main.php:70
528
+ msgid "Stats"
529
+ msgstr "Statistiques"
530
+
531
+ #: adrotate.php:364 dashboard/publisher/adverts-edit.php:359
532
+ #: dashboard/publisher/groups-edit.php:180
533
+ #: dashboard/settings/advertisers.php:38
534
+ msgid "Geo Targeting"
535
+ msgstr ""
536
+
537
+ #: adrotate.php:365 dashboard/settings/notifications.php:72
538
+ msgid "Advertisers"
539
+ msgstr ""
540
+
541
+ #: adrotate.php:366 dashboard/settings/roles.php:17
542
+ msgid "Roles"
543
+ msgstr ""
544
+
545
+ #: adrotate.php:367
546
+ msgid "Misc"
547
+ msgstr ""
548
+
549
+ #: adrotate.php:368 dashboard/settings/maintenance.php:16
550
+ msgid "Maintenance"
551
+ msgstr "Maintenance"
552
+
553
  #: dashboard/adrotatepro.php:20
554
  msgid "Satisfy your advertisers"
555
  msgstr "Comblez vos annonceurs"
604
  "forum. Get a solution (usually) within one business day."
605
  msgstr ""
606
 
607
+ #: dashboard/adrotatepro.php:48
608
  msgid "AdRotate is brought to you by"
609
  msgstr "AdRotate est offert par"
610
 
611
+ #: dashboard/adrotatepro.php:51
612
+ msgid ""
613
+ "I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner "
614
+ "to find out more about me and what I am doing!"
615
+ msgstr ""
616
+
617
+ #: dashboard/adrotatepro.php:62
618
  msgid "Schedule all campaigns with ease"
619
  msgstr "Planifier toutes vos campagnes en toute simplicité"
620
 
621
+ #: dashboard/adrotatepro.php:65
622
  msgid ""
623
  "Schedule your adverts and set up advertising campaigns based on dates you or "
624
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
627
  "schedules for adverts."
628
  msgstr ""
629
 
630
+ #: dashboard/adrotatepro.php:69
631
  msgid "Avoid adblockers"
632
  msgstr ""
633
 
634
+ #: dashboard/adrotatepro.php:72
635
  msgid ""
636
  "Try and avoid adblockers so your adverts get the exposure you want them to "
637
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
639
  "adverts smartly so these features reach their full potential!"
640
  msgstr ""
641
 
642
+ #: dashboard/adrotatepro.php:76
643
  msgid "Stay up-to-date with notifications"
644
  msgstr ""
645
 
646
+ #: dashboard/adrotatepro.php:79
647
  msgid ""
648
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
649
  "adverts expire or need your attention. Additionally, send push notifications "
651
  "or when advertisers create new adverts. Never miss an expiration date again."
652
  msgstr ""
653
 
654
+ #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
655
+ #: dashboard/info.php:93
656
  msgid "Buy AdRotate Professional"
657
  msgstr "Achetez AdRotate Professionel"
658
 
659
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
660
  msgid "Single License"
661
  msgstr ""
662
 
663
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
664
+ msgid "One WordPress installation."
665
+ msgstr ""
666
 
667
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
668
+ #: dashboard/info.php:98 dashboard/info.php:105
669
  msgid "Duo License"
670
  msgstr "Licence Duo"
671
 
672
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:98
673
+ msgid "Two WordPress installations."
674
+ msgstr ""
675
 
676
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
677
+ #: dashboard/info.php:99 dashboard/info.php:106
678
  msgid "Multi License"
679
  msgstr "Licence Multiple"
680
 
681
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:99
682
+ msgid "Up to five WordPress installations."
683
+ msgstr ""
684
 
685
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
686
+ #: dashboard/info.php:100 dashboard/info.php:107
687
  msgid "Developer License"
688
  msgstr "Licence de Developpeur"
689
 
690
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:100
691
  msgid "Unlimited WordPress installations and/or networks."
692
  msgstr ""
693
 
694
+ #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
695
+ #: dashboard/info.php:101 dashboard/info.php:109
696
  msgid "Compare licenses"
697
  msgstr "Comparer les licences"
698
 
699
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
700
  msgid "Not sure which license is for you? Compare them..."
701
  msgstr ""
702
  "Comparez les licences pour savoir laquelle est celle dont vous avez besoin..."
703
 
704
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
705
  msgid "All Licenses"
706
  msgstr "Toutes les licences"
707
 
708
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
709
  msgid "Lifetime License"
710
  msgstr ""
711
 
712
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
713
  msgid "Single installation."
714
  msgstr ""
715
 
716
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:105
717
  msgid "Up to 2 installations."
718
  msgstr ""
719
 
720
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:106
721
  msgid "Up to 10 installations."
722
  msgstr ""
723
 
724
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:107
725
  msgid "Up to 25 installations or multisite networks."
726
  msgstr ""
727
 
728
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:108
729
  msgid ""
730
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
731
  msgstr ""
732
 
733
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
734
  msgid "Not sure which license is for you?"
735
  msgstr ""
736
 
737
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
738
  msgid "Compare Licenses"
739
  msgstr ""
740
 
741
+ #: dashboard/info.php:27
742
  msgid "Currently"
743
  msgstr "Actuellement"
744
 
745
+ #: dashboard/info.php:33
746
  msgid "Your setup"
747
  msgstr "Votre configuration"
748
 
749
+ #: dashboard/info.php:34
750
  msgid "Adverts that need you"
751
  msgstr "Publicités qui ont besoin de votre attention"
752
 
753
+ #: dashboard/info.php:41
754
  msgid "(Almost) Expired"
755
  msgstr "(presque) expiré"
756
 
757
+ #: dashboard/info.php:45
758
  msgid "Have errors"
759
  msgstr "Il y a des erreurs"
760
 
761
+ #: dashboard/info.php:50
762
  msgid ""
763
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
764
  "for updates about me and my plugins. Thank you!"
765
  msgstr ""
766
 
767
+ #: dashboard/info.php:74
768
+ msgid "Arnan de Gans News & Updates"
 
 
 
 
 
 
 
 
769
  msgstr ""
770
 
771
+ #: dashboard/info.php:114
772
+ msgid "Join the Media.net advertising network"
 
 
 
 
 
 
 
 
 
 
 
773
  msgstr ""
774
 
775
  #: dashboard/publisher/adverts-disabled.php:15
784
  msgstr "Actions en vrac"
785
 
786
  #: dashboard/publisher/adverts-disabled.php:21
787
+ #: dashboard/publisher/adverts-edit.php:176
788
  msgid "Activate"
789
  msgstr "Activer"
790
 
815
  msgstr "ID"
816
 
817
  #: dashboard/publisher/adverts-disabled.php:36
818
+ #: dashboard/publisher/adverts-error.php:41
819
  #: dashboard/publisher/adverts-main.php:40
820
  msgid "Start / End"
821
  msgstr "Début / Fin"
822
 
823
  #: dashboard/publisher/adverts-disabled.php:37
824
+ #: dashboard/publisher/adverts-error.php:40
 
825
  #: dashboard/publisher/adverts-main.php:41
826
+ #: dashboard/publisher/groups-edit.php:51
827
+ #: dashboard/publisher/groups-main.php:33
828
+ msgid "Name"
829
+ msgstr "Nom"
830
 
831
+ #: dashboard/publisher/adverts-disabled.php:39
832
+ #: dashboard/publisher/adverts-main.php:43
833
+ #: dashboard/publisher/groups-edit.php:333
834
  #: dashboard/publisher/groups-main.php:36
835
  msgid "Shown"
836
  msgstr "Montré"
837
 
838
+ #: dashboard/publisher/adverts-disabled.php:40
839
+ #: dashboard/publisher/adverts-main.php:45
840
  #: dashboard/publisher/adverts-report.php:36
841
  #: dashboard/publisher/adverts-report.php:57
842
+ #: dashboard/publisher/groups-edit.php:334
843
  #: dashboard/publisher/groups-main.php:38
844
  #: dashboard/publisher/groups-report.php:37
845
  #: dashboard/publisher/groups-report.php:58
846
  msgid "Clicks"
847
  msgstr "Clicks"
848
 
849
+ #: dashboard/publisher/adverts-disabled.php:41
850
+ #: dashboard/publisher/adverts-main.php:47
851
  #: dashboard/publisher/adverts-report.php:39
852
  #: dashboard/publisher/adverts-report.php:58
853
  #: dashboard/publisher/groups-report.php:40
855
  msgid "CTR"
856
  msgstr "CTR"
857
 
858
+ #: dashboard/publisher/adverts-disabled.php:69
859
+ #: dashboard/publisher/adverts-error.php:63
860
+ #: dashboard/publisher/adverts-main.php:81
861
  #: dashboard/publisher/groups-main.php:70
862
  msgid "Edit"
863
  msgstr "Modifier"
864
 
865
+ #: dashboard/publisher/adverts-disabled.php:69
866
+ #: dashboard/publisher/adverts-error.php:63
867
+ #: dashboard/publisher/adverts-main.php:81
 
 
 
 
 
 
 
868
  #, fuzzy
869
  msgid "Groups:"
870
  msgstr "Groupes"
871
 
872
+ #: dashboard/publisher/adverts-edit.php:48
873
  msgid "The AdCode cannot be empty!"
874
  msgstr "Le code de la publicité ne peut être vide!"
875
 
876
+ #: dashboard/publisher/adverts-edit.php:51
877
  msgid ""
878
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
879
  "use!"
880
  msgstr ""
881
 
882
+ #: dashboard/publisher/adverts-edit.php:54
883
  msgid ""
884
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
885
  "use!"
886
  msgstr ""
887
 
888
+ #: dashboard/publisher/adverts-edit.php:57
889
  msgid ""
890
  "There is a problem saving the image. Please reset your image and re-save the "
891
  "ad!"
892
  msgstr ""
893
 
894
+ #: dashboard/publisher/adverts-edit.php:60
895
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
896
  msgstr ""
897
 
898
+ #: dashboard/publisher/adverts-edit.php:65
899
  msgid ""
900
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
901
  "the ad!"
903
  "AdRotate ne peut pas trouver une erreur, mais l'annonce est marquée erronée, "
904
  "essayez d'enregistrer votre publicité à nouveau!"
905
 
906
+ #: dashboard/publisher/adverts-edit.php:68
907
  msgid "This ad is expired and currently not shown on your website!"
908
  msgstr ""
909
  "Cette publicité est expirée et ne figure actuellement pas sur votre site!"
910
 
911
+ #: dashboard/publisher/adverts-edit.php:71
912
  msgid "The ad will expire in less than 2 days!"
913
  msgstr "Cette publicité va expirer dans moins de 2 jours!"
914
 
915
+ #: dashboard/publisher/adverts-edit.php:74
916
  msgid "This ad will expire in less than 7 days!"
917
  msgstr "Cette publicité va expirer dans moins de 7 jours!"
918
 
919
+ #: dashboard/publisher/adverts-edit.php:77
920
  msgid "This ad has been disabled and does not rotate on your site!"
921
  msgstr "Cette publicité à été désactivée et ne tourne plus sur votre site!"
922
 
923
+ #: dashboard/publisher/adverts-edit.php:81
924
+ msgid ""
925
+ "This advert uses the obsolete Responsive feature. Please use the more "
926
+ "reliable Mobile feature! Saving the advert will disable the responsive "
927
+ "option silently."
928
+ msgstr ""
929
+
930
+ #: dashboard/publisher/adverts-edit.php:106
931
  msgid "New Advert"
932
  msgstr "Nouvelle pub"
933
 
934
+ #: dashboard/publisher/adverts-edit.php:108
935
  msgid "Edit Advert"
936
  msgstr "Modifier la pub"
937
 
938
+ #: dashboard/publisher/adverts-edit.php:114
939
+ msgid "Title"
940
+ msgstr "Titre"
941
+
942
+ #: dashboard/publisher/adverts-edit.php:120
943
  msgid "AdCode"
944
  msgstr ""
945
 
946
+ #: dashboard/publisher/adverts-edit.php:125
947
  msgid "Basic Examples:"
948
  msgstr "Exemples de base :"
949
 
950
+ #: dashboard/publisher/adverts-edit.php:129
951
+ msgid "Get better adverts from Media.net"
952
+ msgstr ""
953
+
954
+ #: dashboard/publisher/adverts-edit.php:134
955
  msgid "Useful tags"
956
  msgstr ""
957
 
958
+ #: dashboard/publisher/adverts-edit.php:136
959
  msgid "Insert the advert ID Number."
960
  msgstr ""
961
 
962
+ #: dashboard/publisher/adverts-edit.php:136
963
  msgid "Required when selecting a asset below."
964
  msgstr ""
965
 
966
+ #: dashboard/publisher/adverts-edit.php:136
967
  msgid "Insert the advert name."
968
  msgstr ""
969
 
970
+ #: dashboard/publisher/adverts-edit.php:136
971
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
972
  msgstr ""
973
 
974
+ #: dashboard/publisher/adverts-edit.php:136
975
  msgid "Add inside the <a> tag to open advert in a new window."
976
  msgstr ""
977
 
978
+ #: dashboard/publisher/adverts-edit.php:136
979
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
980
  msgstr ""
981
 
982
+ #: dashboard/publisher/adverts-edit.php:136
983
  msgid ""
984
  "Place the cursor in your AdCode where you want to add any of these tags and "
985
  "click to add it."
986
  msgstr ""
987
 
988
+ #: dashboard/publisher/adverts-edit.php:141
989
  msgid "Preview"
990
  msgstr "En avant-première"
991
 
992
+ #: dashboard/publisher/adverts-edit.php:144
993
  msgid ""
994
  "Note: While this preview is an accurate one, it might look different then it "
995
  "does on the website."
997
  "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
998
  "différente sur le site."
999
 
1000
+ #: dashboard/publisher/adverts-edit.php:145
1001
  msgid ""
1002
  "This is because of CSS differences. Your themes CSS file is not active here!"
1003
  msgstr ""
1004
  "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1005
  "pas actif ici!"
1006
 
1007
+ #: dashboard/publisher/adverts-edit.php:150
1008
  msgid "Banner asset"
1009
  msgstr ""
1010
 
1011
+ #: dashboard/publisher/adverts-edit.php:153
1012
  msgid "WordPress media:"
1013
  msgstr ""
1014
 
1015
+ #: dashboard/publisher/adverts-edit.php:153
1016
  msgid "Select Banner"
1017
  msgstr "Choisir l'image"
1018
 
1019
+ #: dashboard/publisher/adverts-edit.php:155
1020
  msgid "- OR -"
1021
  msgstr "- OU -"
1022
 
1023
+ #: dashboard/publisher/adverts-edit.php:157
1024
  msgid "Banner folder:"
1025
  msgstr "Dossier de bannières :"
1026
 
1027
+ #: dashboard/publisher/adverts-edit.php:158
1028
  msgid "No image selected"
1029
  msgstr "Aucune image sélectionnée"
1030
 
1031
+ #: dashboard/publisher/adverts-edit.php:162
1032
  msgid "Use %asset% in the adcode instead of the file path."
1033
  msgstr ""
1034
 
1035
+ #: dashboard/publisher/adverts-edit.php:162
1036
  msgid ""
1037
  "Use either the text field or the dropdown. If the textfield has content that "
1038
  "field has priority."
1040
  "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1041
  "valeur, ce champ a la priorité."
1042
 
1043
+ #: dashboard/publisher/adverts-edit.php:167
1044
  #: dashboard/settings/statistics.php:17
1045
  msgid "Statistics"
1046
  msgstr "Statistiques"
1047
 
1048
+ #: dashboard/publisher/adverts-edit.php:169
1049
  msgid "Enable click and impression tracking for this advert."
1050
  msgstr ""
1051
 
1052
+ #: dashboard/publisher/adverts-edit.php:170
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:180
1060
  msgid "Yes, this ad will be used"
1061
  msgstr "Oui, cette publicité sera utilisée"
1062
 
1063
+ #: dashboard/publisher/adverts-edit.php:181
1064
  msgid "No, do not show this ad anywhere"
1065
  msgstr "Non, cette publicité ne sera pas utilisée"
1066
 
1067
+ #: dashboard/publisher/adverts-edit.php:188
1068
+ #: dashboard/publisher/adverts-main.php:105
1069
  #: dashboard/publisher/groups-edit.php:71
1070
  #: dashboard/publisher/groups-main.php:89
1071
  msgid "Get more features with AdRotate Pro."
1072
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
1073
 
1074
+ #: dashboard/publisher/adverts-edit.php:188
1075
+ #: dashboard/publisher/adverts-main.php:105
1076
  #: dashboard/publisher/groups-edit.php:71
1077
  #: dashboard/publisher/groups-main.php:89
1078
  msgid "More information"
1079
  msgstr "Plus d'information"
1080
 
1081
+ #: dashboard/publisher/adverts-edit.php:191
1082
+ #: dashboard/publisher/adverts-edit.php:291
1083
+ #: dashboard/publisher/adverts-edit.php:447
1084
+ #: dashboard/publisher/adverts-edit.php:488
1085
  msgid "Save Advert"
1086
  msgstr "Sauvegarder la pub"
1087
 
1088
+ #: dashboard/publisher/adverts-edit.php:192
1089
+ #: dashboard/publisher/adverts-edit.php:292
1090
+ #: dashboard/publisher/adverts-edit.php:448
1091
+ #: dashboard/publisher/adverts-edit.php:489
1092
  #: dashboard/publisher/groups-edit.php:150
1093
  #: dashboard/publisher/groups-edit.php:299
1094
  #: dashboard/publisher/groups-edit.php:391
1095
  msgid "Cancel"
1096
  msgstr "Annuller"
1097
 
1098
+ #: dashboard/publisher/adverts-edit.php:195
1099
+ #: dashboard/publisher/adverts-edit.php:430
1100
  #: dashboard/publisher/groups-edit.php:132
1101
  #: dashboard/publisher/groups-edit.php:281
1102
  msgid "Usage"
1103
  msgstr "Usage"
1104
 
1105
+ #: dashboard/publisher/adverts-edit.php:199
1106
+ #: dashboard/publisher/adverts-edit.php:434
1107
  #: dashboard/publisher/groups-edit.php:136
1108
  #: dashboard/publisher/groups-edit.php:205
1109
  #: dashboard/publisher/groups-edit.php:245
1111
  msgid "Widget"
1112
  msgstr ""
1113
 
1114
+ #: dashboard/publisher/adverts-edit.php:200
1115
+ #: dashboard/publisher/adverts-edit.php:435
1116
  msgid ""
1117
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1118
  "and select the advert or the group the advert is in."
1119
  msgstr ""
1120
 
1121
+ #: dashboard/publisher/adverts-edit.php:203
1122
+ #: dashboard/publisher/adverts-edit.php:438
1123
  #: dashboard/publisher/groups-edit.php:140
1124
  #: dashboard/publisher/groups-edit.php:289
1125
  msgid "In a post or page"
1126
  msgstr ""
1127
 
1128
+ #: dashboard/publisher/adverts-edit.php:205
1129
+ #: dashboard/publisher/adverts-edit.php:440
1130
  #: dashboard/publisher/groups-edit.php:142
1131
  #: dashboard/publisher/groups-edit.php:291
1132
  msgid "Directly in a theme"
1133
  msgstr ""
1134
 
1135
+ #: dashboard/publisher/adverts-edit.php:211
1136
  msgid "Schedule your advert"
1137
  msgstr ""
1138
 
1139
+ #: dashboard/publisher/adverts-edit.php:215
1140
  msgid "Start date (day/month/year)"
1141
  msgstr ""
1142
 
1143
+ #: dashboard/publisher/adverts-edit.php:236
1144
  msgid "End date (day/month/year)"
1145
  msgstr ""
1146
 
1147
+ #: dashboard/publisher/adverts-edit.php:259
1148
  msgid "Start time (hh:mm)"
1149
  msgstr ""
1150
 
1151
+ #: dashboard/publisher/adverts-edit.php:266
1152
  msgid "End time (hh:mm)"
1153
  msgstr ""
1154
 
1155
+ #: dashboard/publisher/adverts-edit.php:276
1156
  msgid "Maximum Clicks"
1157
  msgstr ""
1158
 
1159
+ #: dashboard/publisher/adverts-edit.php:277
1160
+ #: dashboard/publisher/adverts-edit.php:279
1161
  msgid "Leave empty or 0 to skip this."
1162
  msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1163
 
1164
+ #: dashboard/publisher/adverts-edit.php:278
1165
  msgid "Maximum Impressions"
1166
  msgstr ""
1167
 
1168
+ #: dashboard/publisher/adverts-edit.php:283
1169
  msgid "Important"
1170
  msgstr ""
1171
 
1172
+ #: dashboard/publisher/adverts-edit.php:284
1173
  msgid ""
1174
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1175
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1176
  "14:00 hours. 6AM is 6:00 hours."
1177
  msgstr ""
1178
 
1179
+ #: dashboard/publisher/adverts-edit.php:288
1180
  msgid ""
1181
  "Create multiple and more advanced schedules for each advert with AdRotate "
1182
  "Pro."
1183
  msgstr ""
1184
 
1185
+ #: dashboard/publisher/adverts-edit.php:288
1186
+ #: dashboard/publisher/adverts-edit.php:357
1187
+ #: dashboard/publisher/adverts-edit.php:428
1188
  #: dashboard/publisher/groups-edit.php:191
1189
  msgid "Upgrade today"
1190
  msgstr "Mettre à jour aujourd'hui"
1191
 
1192
+ #: dashboard/publisher/adverts-edit.php:295
1193
  #: dashboard/publisher/groups-edit.php:153
1194
  msgid "Advanced"
1195
  msgstr "Avancé"
1196
 
1197
+ #: dashboard/publisher/adverts-edit.php:296
1198
+ #: dashboard/publisher/adverts-edit.php:360
1199
  msgid "Available in AdRotate Pro!"
1200
  msgstr ""
1201
 
1202
+ #: dashboard/publisher/adverts-edit.php:301
1203
+ #: dashboard/publisher/groups-edit.php:331
 
1204
  msgid "Weight"
1205
  msgstr "Importance"
1206
 
1207
+ #: dashboard/publisher/adverts-edit.php:304
1208
  msgid "Few impressions"
1209
  msgstr ""
1210
 
1211
+ #: dashboard/publisher/adverts-edit.php:309
1212
  msgid "Less than average"
1213
  msgstr ""
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:314
1216
  msgid "Normal impressions"
1217
  msgstr ""
1218
 
1219
+ #: dashboard/publisher/adverts-edit.php:319
1220
  msgid "More than average"
1221
  msgstr ""
1222
 
1223
+ #: dashboard/publisher/adverts-edit.php:324
1224
  msgid "Many impressions"
1225
  msgstr ""
1226
 
1227
+ #: dashboard/publisher/adverts-edit.php:329
1228
  msgid "Mobile"
1229
  msgstr ""
1230
 
1231
+ #: dashboard/publisher/adverts-edit.php:331
1232
  msgid "Computers"
1233
  msgstr ""
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:334
1236
  msgid "Smartphones"
1237
  msgstr ""
1238
 
1239
+ #: dashboard/publisher/adverts-edit.php:337
1240
  msgid "Tablets"
1241
  msgstr ""
1242
 
1243
+ #: dashboard/publisher/adverts-edit.php:340
1244
  msgid ""
1245
  "Also enable mobile support in the group this advert goes in or these are "
1246
  "ignored."
1247
  msgstr ""
1248
 
1249
+ #: dashboard/publisher/adverts-edit.php:340
1250
+ msgid "Operating system detection only detects iOS/Android/Other or neither."
 
 
1251
  msgstr ""
1252
 
1253
+ #: dashboard/publisher/adverts-edit.php:344
1254
  msgid "Mobile OS"
1255
  msgstr ""
1256
 
1257
+ #: dashboard/publisher/adverts-edit.php:346
1258
  msgid "iOS"
1259
  msgstr ""
1260
 
1261
+ #: dashboard/publisher/adverts-edit.php:349
1262
  msgid "Android"
1263
  msgstr ""
1264
 
1265
+ #: dashboard/publisher/adverts-edit.php:352
1266
  msgid "Others"
1267
  msgstr ""
1268
 
1269
+ #: dashboard/publisher/adverts-edit.php:357
1270
  msgid ""
1271
  "With AdRotate Pro you can easily select which devices and mobile operating "
1272
  "systems the advert should show on!"
1273
  msgstr ""
1274
 
1275
+ #: dashboard/publisher/adverts-edit.php:360
 
 
 
 
 
 
1276
  msgid ""
1277
  "Assign the advert to a group and enable that group to use Geo Targeting."
1278
  msgstr ""
1279
 
1280
+ #: dashboard/publisher/adverts-edit.php:418
1281
  msgid "A comma separated list of items:"
1282
  msgstr ""
1283
 
1284
+ #: dashboard/publisher/adverts-edit.php:418
1285
  msgid ""
1286
  "AdRotate does not check the validity of names so make sure you spell them "
1287
  "correctly!"
1288
  msgstr ""
1289
 
1290
+ #: dashboard/publisher/adverts-edit.php:428
1291
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1292
  msgstr ""
1293
 
1294
+ #: dashboard/publisher/adverts-edit.php:452
1295
  msgid "Select Groups"
1296
  msgstr "Choisir groupes"
1297
 
1298
+ #: dashboard/publisher/adverts-edit.php:457
1299
  msgid "ID - Name"
1300
  msgstr "ID - Nom"
1301
 
1302
+ #: dashboard/publisher/adverts-edit.php:467
1303
  #: dashboard/publisher/groups-main.php:60
1304
  #: dashboard/settings/geotargeting.php:49
1305
  msgid "Default"
1306
  msgstr "Par défaut"
1307
 
1308
+ #: dashboard/publisher/adverts-edit.php:468
1309
  #: dashboard/publisher/groups-main.php:61
1310
  msgid "Dynamic"
1311
  msgstr "Dynamique"
1312
 
1313
+ #: dashboard/publisher/adverts-edit.php:468
1314
  #: dashboard/publisher/groups-main.php:61
1315
  msgid "second rotation"
1316
  msgstr "deuxième rotation"
1317
 
1318
+ #: dashboard/publisher/adverts-edit.php:469
1319
  #: dashboard/publisher/groups-main.php:62
1320
  msgid "Block"
1321
  msgstr "Bloc"
1322
 
1323
+ #: dashboard/publisher/adverts-edit.php:469
1324
  #: dashboard/publisher/groups-main.php:62
1325
  msgid "grid"
1326
  msgstr "grille"
1327
 
1328
+ #: dashboard/publisher/adverts-edit.php:470
1329
  #: dashboard/publisher/groups-edit.php:199
1330
  #: dashboard/publisher/groups-main.php:63
1331
  msgid "Post Injection"
1332
  msgstr "Injection dans l'article"
1333
 
1334
+ #: dashboard/publisher/adverts-edit.php:471
1335
  msgid "Geolocation"
1336
  msgstr "Géolocalisation"
1337
 
1338
+ #: dashboard/publisher/adverts-edit.php:477
1339
  #: dashboard/publisher/groups-edit.php:57
1340
  #: dashboard/publisher/groups-main.php:70
1341
  msgid "Mode"
1376
  msgstr "Pour 7 jours"
1377
 
1378
  #: dashboard/publisher/adverts-error.php:71
1379
+ #, fuzzy
1380
+ #| msgid "Configuration errors."
1381
+ msgid "Configuration errors"
1382
  msgstr "Erreurs de configuration."
1383
 
1384
  #: dashboard/publisher/adverts-error.php:72
1385
+ #, fuzzy
1386
+ #| msgid "Expires soon."
1387
+ msgid "Expires soon"
1388
  msgstr "Expire bientôt."
1389
 
1390
  #: dashboard/publisher/adverts-error.php:73
1391
+ #: dashboard/settings/maintenance.php:64
1392
+ msgid "Expired"
1393
+ msgstr "Expiré"
1394
 
1395
  #: dashboard/publisher/adverts-main.php:12
1396
  msgid "Active Adverts"
1397
  msgstr ""
1398
 
1399
  #: dashboard/publisher/adverts-main.php:24
1400
+ msgid "Export to CSV"
1401
  msgstr ""
1402
 
1403
+ #: dashboard/publisher/adverts-main.php:44
1404
+ #: dashboard/publisher/adverts-main.php:46
1405
  #: dashboard/publisher/groups-main.php:37
1406
  #: dashboard/publisher/groups-main.php:39
1407
  msgid "Today"
1408
  msgstr "Aujourd'hui"
1409
 
1410
+ #: dashboard/publisher/adverts-main.php:100
1411
  msgid "No adverts created yet!"
1412
  msgstr ""
1413
 
1461
  msgid "Edit Group"
1462
  msgstr "Modifier Groupe"
1463
 
 
 
 
 
 
1464
  #: dashboard/publisher/groups-edit.php:60
1465
  msgid "Default - Show one ad at a time"
1466
  msgstr "Par defaut - Montrer une pub "
1739
  msgid "Choose adverts"
1740
  msgstr ""
1741
 
1742
+ #: dashboard/publisher/groups-edit.php:330
1743
  msgid "Visible until"
1744
  msgstr "Visible jusqu'à"
1745
 
1747
  msgid "No adverts created!"
1748
  msgstr ""
1749
 
1750
+ #: dashboard/publisher/groups-edit.php:384
1751
+ msgid "Configuration errors."
1752
+ msgstr "Erreurs de configuration."
1753
+
1754
+ #: dashboard/publisher/groups-edit.php:385
1755
+ msgid "Expires soon."
1756
+ msgstr "Expire bientôt."
1757
+
1758
+ #: dashboard/publisher/groups-edit.php:386
1759
+ msgid "Has expired."
1760
+ msgstr "A expiré."
1761
+
1762
  #: dashboard/publisher/groups-main.php:12
1763
  msgid "Manage Groups"
1764
  msgstr "Gérer les groupes"
1780
  msgstr "Ceci ne peux pas être défait!"
1781
 
1782
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1783
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
 
1784
  msgid "OK to continue, CANCEL to stop."
1785
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1786
 
1845
  msgstr ""
1846
 
1847
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1848
+ #: dashboard/settings/maintenance.php:116 dashboard/settings/misc.php:43
1849
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1850
+ #: dashboard/settings/statistics.php:73
1851
  msgid "Update Options"
1852
  msgstr "Mettre à jour les options"
1853
 
1943
  msgstr ""
1944
 
1945
  #: dashboard/settings/general.php:50
1946
+ msgid "Set a folder where your banner images will be stored."
1947
  msgstr ""
1948
 
1949
  #: dashboard/settings/general.php:53
1950
+ msgid "Folder name"
1951
  msgstr ""
1952
 
1953
  #: dashboard/settings/general.php:55
1954
+ msgid "(Default: banners)."
1955
  msgstr ""
1956
 
1957
  #: dashboard/settings/general.php:56
2092
  msgid "Password/License Key"
2093
  msgstr ""
2094
 
 
 
 
 
2095
  #: dashboard/settings/maintenance.php:17
2096
  msgid ""
2097
  "Use these functions when you notice your database is slow, unresponsive and "
2131
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
2132
  "KB de données."
2133
 
2134
+ #: dashboard/settings/maintenance.php:28
2135
+ #, fuzzy
2136
+ #| msgid "Clean-up Database"
2137
+ msgid "Clean-up Database and Files"
2138
+ msgstr "Nettoyer la base de données"
2139
+
2140
+ #: dashboard/settings/maintenance.php:30
2141
  msgid "Clean-up Database"
2142
  msgstr "Nettoyer la base de données"
2143
 
2144
  #: dashboard/settings/maintenance.php:30
2145
+ #, fuzzy
2146
+ #| msgid ""
2147
+ #| "You are about to clean up your database. This may delete expired "
2148
+ #| "schedules and older statistics."
2149
  msgid ""
2150
+ "You are about to clean up your database. This may delete expired schedules, "
2151
+ "older statistics and try to delete export files"
2152
  msgstr ""
2153
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
2154
  "supprimer des calendriers périmés et des vieilles statistiques.."
2157
  msgid "Are you sure you want to continue?"
2158
  msgstr "Etes-vous certains de vouloir continuer?"
2159
 
2160
+ #: dashboard/settings/maintenance.php:30
2161
+ msgid "THIS ACTION CAN NOT BE UNDONE!"
 
2162
  msgstr ""
 
 
2163
 
2164
  #: dashboard/settings/maintenance.php:31
2165
+ #, fuzzy
2166
+ #| msgid "Delete stats older than 356 days (Optional)."
2167
+ msgid "Delete stats older than 356 days."
2168
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
2169
 
2170
  #: dashboard/settings/maintenance.php:32
2171
+ msgid "Delete leftover export files."
2172
  msgstr ""
2173
 
2174
  #: dashboard/settings/maintenance.php:33
2178
  msgstr ""
2179
 
2180
  #: dashboard/settings/maintenance.php:33
2181
+ #, fuzzy
2182
+ #| msgid ""
2183
+ #| "Additionally you can clean up old statistics. This will improve the speed "
2184
+ #| "of your site."
2185
  msgid ""
2186
+ "Additionally you can delete statistics and/or unused export files. This will "
2187
+ "improve the speed of your site."
2188
  msgstr ""
2189
+ "En outre, vous pouvez nettoyer les anciennes statistiques. Cela permettre "
2190
+ "d'améliorer la vitesse de votre site."
2191
 
2192
  #: dashboard/settings/maintenance.php:37
2193
  msgid "Re-evaluate Ads"
2201
  msgid "You are about to check all ads for errors."
2202
  msgstr "Vous allez véifier l'état de toutes les publicités."
2203
 
2204
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
2205
+ msgid "This might take a while and may slow down your site during this action!"
2206
+ msgstr ""
2207
+ "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
2208
+ "interval!"
2209
+
2210
  #: dashboard/settings/maintenance.php:40
2211
  msgid ""
2212
  "This will apply all evaluation rules to all ads to see if any error slipped "
2254
  msgstr ""
2255
 
2256
  #: dashboard/settings/maintenance.php:54
2257
+ #, fuzzy
2258
+ #| msgid "Track clicks and impressions."
2259
+ msgid "Disable timers for clicks and impressions."
2260
+ msgstr "Suivi des clicks et des impressions."
 
 
2261
 
2262
  #: dashboard/settings/maintenance.php:55
2263
  msgid "Temporarily disable encryption on the redirect url."
2279
  msgid "Error"
2280
  msgstr "Erreur"
2281
 
 
 
 
 
2282
  #: dashboard/settings/maintenance.php:64
2283
  msgid "Expires Soon"
2284
  msgstr "Expire bientôt"
2291
  msgid "Banners/assets Folder"
2292
  msgstr ""
2293
 
2294
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2295
  msgid "Exists and appears writable"
2296
  msgstr ""
2297
 
2298
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2299
  msgid "Not writable or does not exist"
2300
  msgstr ""
2301
 
2302
+ #: dashboard/settings/maintenance.php:76
2303
  msgid "Reports Folder"
2304
  msgstr ""
2305
 
2306
+ #: dashboard/settings/maintenance.php:85
2307
  msgid "Advert evaluation"
2308
  msgstr ""
2309
 
2310
+ #: dashboard/settings/maintenance.php:86
2311
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2312
  msgstr ""
2313
 
2314
+ #: dashboard/settings/maintenance.php:87
2315
+ #, fuzzy
2316
+ #| msgid "Clean Trackerdata next run:"
2317
+ msgid "Clean Trackerdata"
2318
+ msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
2319
+
2320
+ #: dashboard/settings/maintenance.php:88
2321
+ msgid "Not scheduled!"
2322
+ msgstr "Pas planifié!"
2323
+
2324
+ #: dashboard/settings/maintenance.php:91
2325
+ msgid "Background tasks"
2326
+ msgstr ""
2327
+
2328
+ #: dashboard/settings/maintenance.php:93
2329
+ msgid "Reset background tasks"
2330
  msgstr ""
2331
 
2332
+ #: dashboard/settings/maintenance.php:98
2333
  msgid "Internal Versions"
2334
  msgstr ""
2335
 
2336
+ #: dashboard/settings/maintenance.php:99
2337
  msgid ""
2338
  "Unless you experience database issues or a warning shows below, these "
2339
  "numbers are not really relevant for troubleshooting. Support may ask for "
2340
  "them to verify your database status."
2341
  msgstr ""
2342
 
2343
+ #: dashboard/settings/maintenance.php:102
2344
  msgid "AdRotate version"
2345
  msgstr ""
2346
 
2347
+ #: dashboard/settings/maintenance.php:103
2348
+ #: dashboard/settings/maintenance.php:105
2349
  msgid "Current:"
2350
  msgstr ""
2351
 
2352
+ #: dashboard/settings/maintenance.php:103
2353
+ #: dashboard/settings/maintenance.php:105
2354
  msgid "Should be:"
2355
  msgstr ""
2356
 
2357
+ #: dashboard/settings/maintenance.php:103
2358
+ #: dashboard/settings/maintenance.php:105
2359
  msgid "Previous:"
2360
  msgstr ""
2361
 
2362
+ #: dashboard/settings/maintenance.php:104
2363
  msgid "Database version"
2364
  msgstr ""
2365
 
2366
+ #: dashboard/settings/maintenance.php:108
2367
+ msgid "Manual upgrade"
2368
+ msgstr ""
2369
+
2370
+ #: dashboard/settings/maintenance.php:110
2371
  msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2372
  msgstr ""
2373
 
2374
+ #: dashboard/settings/maintenance.php:110
2375
  msgid "Make sure you have a database backup!"
2376
  msgstr ""
2377
 
2378
+ #: dashboard/settings/maintenance.php:110
2379
+ #, fuzzy
2380
+ #| msgid "Ad updated"
2381
+ msgid "Run updater"
2382
+ msgstr "Publicité mise à jour"
2383
 
2384
  #: dashboard/settings/misc.php:16
2385
  msgid "Miscellaneous"
2456
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
2457
  "PHP dans le code d'exclusion vous-même."
2458
 
 
 
 
 
2459
  #: dashboard/settings/notifications.php:19
2460
  msgid "Set up who gets notifications if ads need your attention."
2461
  msgstr ""
2586
  "separated. This field may not be empty!"
2587
  msgstr ""
2588
 
 
 
 
 
2589
  #: dashboard/settings/notifications.php:75
2590
  msgid ""
2591
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2639
  msgid "and get your API token"
2640
  msgstr ""
2641
 
 
 
 
 
2642
  #: dashboard/settings/roles.php:18
2643
  msgid "Who has access to what?"
2644
  msgstr "Qui a accès à quoi?"
2782
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2783
  msgstr ""
2784
 
2785
+ #~ msgid "Empty database records removed"
2786
+ #~ msgstr "Les registres vides de la base de données ont été supprimés"
 
2787
 
2788
+ #~ msgid "For one WordPress installation."
2789
+ #~ msgstr "Pour une installation Wordpress."
2790
+
2791
+ #~ msgid "For two WordPress installations."
2792
+ #~ msgstr "Pour deux installations Wordpress."
2793
+
2794
+ #~ msgid " For up to five WordPress installations."
2795
+ #~ msgstr "Pour un max de cinq installation Wordpress."
2796
+
2797
+ #~ msgid ""
2798
+ #~ "Disable timers for clicks and impressions and enable a alert window for "
2799
+ #~ "clicktracking."
2800
+ #~ msgstr ""
2801
+ #~ "Désactivez les minuteurs pour les clicks et les impressions et activez "
2802
+ #~ "une fenêtre d'alerte pour le suivi des clicks."
2803
 
2804
  #, fuzzy
2805
  #~ msgid "Help AdRotate Grow"
2945
  #~ msgid "Previous database version:"
2946
  #~ msgstr "Version antérieure de la base de données :"
2947
 
 
 
 
 
 
 
2948
  #~ msgid "Get more features with AdRotate Pro"
2949
  #~ msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
2950
 
3090
  #~ msgid "Ad created"
3091
  #~ msgstr "Publicité créée"
3092
 
 
 
 
3093
  #~ msgid ""
3094
  #~ "The ad was saved but has an issue which might prevent it from working "
3095
  #~ "properly. Review the yellow marked ad."
3186
  #~ "sauvegardé quand vous le créez, cliquez sur ce bouton opur effacer ces "
3187
  #~ "registres vides."
3188
 
 
 
 
 
 
 
 
3189
  #~ msgid ""
3190
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3191
  #~ "becomes unusable in any way or by any means in whichever way I will not "
3456
  #~ msgid "Enable stats"
3457
  #~ msgstr "Statistiques activés"
3458
 
 
 
 
3459
  #, fuzzy
3460
  #~ msgid ""
3461
  #~ "Disabling this also disables click and impression limits on schedules."
language/adrotate-id_ID.mo CHANGED
Binary file
language/adrotate-id_ID.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: 2017-04-14 08:31+0800\n"
6
- "PO-Revision-Date: 2017-04-14 08:31+0800\n"
7
  "Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
8
  "Language-Team: ChameleonJohn.com <jordan.silaen@chameleonjohn.com>\n"
9
  "Language: id_ID\n"
@@ -13,7 +13,7 @@ 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.11\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
@@ -25,71 +25,73 @@ msgstr "Tidak ada file yang ditemukan"
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder tidak ditemukan atau tidak dapat diakses"
27
 
28
- #: adrotate-functions.php:774
29
  msgid "Ad saved"
30
  msgstr "iklan tersimpan"
31
 
32
- #: adrotate-functions.php:778
33
  msgid "Group saved"
34
  msgstr "kelompok disimpan"
35
 
36
- #: adrotate-functions.php:782
37
  msgid "Ad(s) deleted"
38
  msgstr "Iklan (s) dihapus"
39
 
40
- #: adrotate-functions.php:786
41
  msgid "Group deleted"
42
  msgstr "kelompok dihapus"
43
 
44
- #: adrotate-functions.php:790
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Iklan (s) statistik ulang"
47
 
48
- #: adrotate-functions.php:794
49
  msgid "Ad(s) renewed"
50
  msgstr "Iklan (s) baru"
51
 
52
- #: adrotate-functions.php:798
53
  msgid "Ad(s) deactivated"
54
  msgstr "Iklan (s) dinonaktifkan"
55
 
56
- #: adrotate-functions.php:802
57
  msgid "Ad(s) activated"
58
  msgstr "Iklan (s) diaktifkan"
59
 
60
- #: adrotate-functions.php:806
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Kelompok termasuk itu iklan dihapus"
63
 
64
- #: adrotate-functions.php:810
65
  msgid "Export created"
66
  msgstr "ekspor dibuat"
67
 
68
- #: adrotate-functions.php:815
69
  msgid "Settings saved"
70
  msgstr "pengaturan disimpan"
71
 
72
- #: adrotate-functions.php:819
73
  msgid "Database optimized"
74
  msgstr "database dioptimalkan"
75
 
76
- #: adrotate-functions.php:823
77
  msgid "Database repaired"
78
  msgstr "database diperbaiki"
79
 
80
- #: adrotate-functions.php:827
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr "Iklan dievaluasi dan status telah diperbaiki di mana diperlukan"
83
 
84
- #: adrotate-functions.php:831
85
- msgid "Empty database records removed"
86
- msgstr "catatan database kosong dihapus"
 
 
87
 
88
- #: adrotate-functions.php:836
89
  msgid "Action prohibited"
90
  msgstr "aksi dilarang"
91
 
92
- #: adrotate-functions.php:840
93
  msgid ""
94
  "The ad was saved but has an issue which might prevent it from working "
95
  "properly. Review the colored ad."
@@ -97,27 +99,27 @@ msgstr ""
97
  "iklan itu disimpan tapi memiliki masalah yang mungkin mencegah dari bekerja "
98
  "dengan baik. Tinjau iklan berwarna."
99
 
100
- #: adrotate-functions.php:844
101
  msgid "No data found in selected time period"
102
  msgstr "Tidak ada data pada periode waktu yang dipilih"
103
 
104
- #: adrotate-functions.php:848
105
  msgid "Database can only be optimized or cleaned once every hour"
106
  msgstr "Database hanya dapat dioptimalkan atau dibersihkan sekali setiap jam"
107
 
108
- #: adrotate-functions.php:852
109
  msgid "Form can not be (partially) empty!"
110
  msgstr "Form tidak bisa (sebagian) kosong!"
111
 
112
- #: adrotate-functions.php:856
113
  msgid "No ads found."
114
  msgstr "Tidak ada iklan yang ditemukan."
115
 
116
- #: adrotate-functions.php:860
117
  msgid "Unexpected error"
118
  msgstr "Kesalahan tak terduga"
119
 
120
- #: adrotate-manage-publisher.php:668
121
  msgid "AdRotate Advertiser"
122
  msgstr "AdRotate Pengiklan"
123
 
@@ -226,9 +228,9 @@ msgstr "Anda folder AdRotate Banner tidak dapat ditulis atau tidak ada."
226
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
227
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
228
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
229
- #: dashboard/adrotatepro.php:102 dashboard/info.php:64 dashboard/info.php:65
230
- #: dashboard/info.php:66 dashboard/info.php:67 dashboard/info.php:71
231
- #: dashboard/info.php:72 dashboard/info.php:73 dashboard/info.php:74
232
  #: dashboard/settings/geotargeting.php:35
233
  msgid "Buy now"
234
  msgstr "Beli sekarang"
@@ -297,7 +299,7 @@ msgstr "manual AdRotate"
297
  msgid "AdRotate Support Forum"
298
  msgstr "Forum Dukungan AdRotate"
299
 
300
- #: adrotate-output.php:814 dashboard/info.php:46
301
  msgid "Support AdRotate"
302
  msgstr "Dukungan AdRotate"
303
 
@@ -348,63 +350,63 @@ msgstr "Fitur ini tersedia dalam AdRotate Pro"
348
  msgid "Learn more"
349
  msgstr "Belajarlah lagi"
350
 
351
- #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:242
352
- #: dashboard/publisher/adverts-edit.php:263
353
  msgid "January"
354
  msgstr "Januari"
355
 
356
- #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:243
357
- #: dashboard/publisher/adverts-edit.php:264
358
  msgid "February"
359
  msgstr "Februari"
360
 
361
- #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:244
362
- #: dashboard/publisher/adverts-edit.php:265
363
  msgid "March"
364
  msgstr "Maret"
365
 
366
- #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:245
367
- #: dashboard/publisher/adverts-edit.php:266
368
  msgid "April"
369
  msgstr "April"
370
 
371
- #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:246
372
- #: dashboard/publisher/adverts-edit.php:267
373
  msgid "May"
374
  msgstr "Mungkin"
375
 
376
- #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:247
377
- #: dashboard/publisher/adverts-edit.php:268
378
  msgid "June"
379
  msgstr "Juni"
380
 
381
- #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:248
382
- #: dashboard/publisher/adverts-edit.php:269
383
  msgid "July"
384
  msgstr "Juli"
385
 
386
- #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:249
387
- #: dashboard/publisher/adverts-edit.php:270
388
  msgid "August"
389
  msgstr "Agustus"
390
 
391
- #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:250
392
- #: dashboard/publisher/adverts-edit.php:271
393
  msgid "September"
394
  msgstr "September"
395
 
396
- #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:251
397
- #: dashboard/publisher/adverts-edit.php:272
398
  msgid "October"
399
  msgstr "Oktober"
400
 
401
- #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:252
402
- #: dashboard/publisher/adverts-edit.php:273
403
  msgid "November"
404
  msgstr "November"
405
 
406
- #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:253
407
- #: dashboard/publisher/adverts-edit.php:274
408
  msgid "December"
409
  msgstr "Desember"
410
 
@@ -466,60 +468,99 @@ msgstr "ID:"
466
  msgid "Fill in the ID of the type you want to display!"
467
  msgstr "Isi ID dari jenis yang ingin ditampilkan!"
468
 
469
- #: adrotate.php:102
470
  msgid "General Info"
471
  msgstr "Informasi Umum"
472
 
473
- #: adrotate.php:103
474
  msgid "AdRotate Pro"
475
  msgstr "AdRotate Pro"
476
 
477
- #: adrotate.php:104 dashboard/info.php:37
478
- #: dashboard/publisher/adverts-edit.php:480
479
  #: dashboard/publisher/groups-main.php:34
480
  msgid "Adverts"
481
  msgstr "iklan"
482
 
483
- #: adrotate.php:105 dashboard/info.php:41
484
  msgid "Groups"
485
  msgstr "Grup"
486
 
487
- #: adrotate.php:106
488
  msgid "Settings"
489
  msgstr "pengaturan"
490
 
491
- #: adrotate.php:124
492
  msgid "AdRotate Info"
493
  msgstr "Info AdRotate"
494
 
495
- #: adrotate.php:142
496
  msgid "AdRotate Professional"
497
  msgstr "AdRotate profesional"
498
 
499
- #: adrotate.php:182
500
  msgid "Advert Management"
501
  msgstr "Manajemen iklan"
502
 
503
- #: adrotate.php:240 adrotate.php:307
504
  msgid "Manage"
505
  msgstr "Mengelola"
506
 
507
- #: adrotate.php:241 adrotate.php:308
508
  msgid "Add New"
509
  msgstr "Tambah baru"
510
 
511
- #: adrotate.php:301
512
  msgid "Group Management"
513
  msgstr "Manajemen grup"
514
 
515
- #: adrotate.php:310
516
  msgid "Report"
517
  msgstr "Melaporkan"
518
 
519
- #: adrotate.php:355
520
  msgid "AdRotate Settings"
521
  msgstr "Pengaturan AdRotate"
522
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
523
  #: dashboard/adrotatepro.php:20
524
  msgid "Satisfy your advertisers"
525
  msgstr "Memuaskan pengiklan"
@@ -587,7 +628,7 @@ msgstr ""
587
  "premium AdRotate mengambil prioritas di atas forum dan diperiksa lebih "
588
  "sering daripada forum. Mendapatkan solusi (biasanya) dalam satu hari kerja."
589
 
590
- #: dashboard/adrotatepro.php:48 dashboard/info.php:101
591
  msgid "AdRotate is brought to you by"
592
  msgstr "AdRotate dibawa ke anda oleh"
593
 
@@ -651,114 +692,114 @@ msgstr ""
651
  "lagi."
652
 
653
  #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
654
- #: dashboard/info.php:60
655
  msgid "Buy AdRotate Professional"
656
  msgstr "Beli AdRotate profesional"
657
 
658
- #: dashboard/adrotatepro.php:87 dashboard/info.php:64
659
  msgid "Single License"
660
  msgstr "Lisensi tunggal"
661
 
662
- #: dashboard/adrotatepro.php:87 dashboard/info.php:64
663
  msgid "One WordPress installation."
664
  msgstr "Satu instalasi WordPress."
665
 
666
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
667
- #: dashboard/info.php:65 dashboard/info.php:72
668
  msgid "Duo License"
669
  msgstr "Duo Lisensi"
670
 
671
- #: dashboard/adrotatepro.php:88 dashboard/info.php:65
672
  msgid "Two WordPress installations."
673
  msgstr "Dua instalasi WordPress."
674
 
675
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
676
- #: dashboard/info.php:66 dashboard/info.php:73
677
  msgid "Multi License"
678
  msgstr "multi License"
679
 
680
- #: dashboard/adrotatepro.php:89 dashboard/info.php:66
681
  msgid "Up to five WordPress installations."
682
  msgstr "Sampai dengan lima instalasi WordPress."
683
 
684
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
685
- #: dashboard/info.php:67 dashboard/info.php:74
686
  msgid "Developer License"
687
  msgstr "Lisensi developer"
688
 
689
- #: dashboard/adrotatepro.php:90 dashboard/info.php:67
690
  msgid "Unlimited WordPress installations and/or networks."
691
  msgstr "instalasi WordPress terbatas dan / atau jaringan."
692
 
693
  #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
694
- #: dashboard/info.php:68 dashboard/info.php:76
695
  msgid "Compare licenses"
696
  msgstr "bandingkan lisensi"
697
 
698
- #: dashboard/adrotatepro.php:91 dashboard/info.php:68
699
  msgid "Not sure which license is for you? Compare them..."
700
  msgstr "Tidak yakin yang lisensi adalah untuk Anda? Membandingkan mereka..."
701
 
702
- #: dashboard/adrotatepro.php:91 dashboard/info.php:68
703
  msgid "All Licenses"
704
  msgstr "semua Lisensi"
705
 
706
- #: dashboard/adrotatepro.php:99 dashboard/info.php:71
707
  msgid "Lifetime License"
708
  msgstr "Lifetime License"
709
 
710
- #: dashboard/adrotatepro.php:99 dashboard/info.php:71
711
  msgid "Single installation."
712
  msgstr "instalasi tunggal."
713
 
714
- #: dashboard/adrotatepro.php:100 dashboard/info.php:72
715
  msgid "Up to 2 installations."
716
  msgstr "Sampai dengan 2 instalasi."
717
 
718
- #: dashboard/adrotatepro.php:101 dashboard/info.php:73
719
  msgid "Up to 10 installations."
720
  msgstr "Sampai dengan 10 instalasi."
721
 
722
- #: dashboard/adrotatepro.php:102 dashboard/info.php:74
723
  msgid "Up to 25 installations or multisite networks."
724
  msgstr "Sampai dengan 25 instalasi atau jaringan multisite."
725
 
726
- #: dashboard/adrotatepro.php:103 dashboard/info.php:75
727
  msgid ""
728
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
729
  msgstr ""
730
  "Langganan mendapatkan akses 1 tahun untuk update, dukungan email & AdRotate "
731
  "Geo."
732
 
733
- #: dashboard/adrotatepro.php:104 dashboard/info.php:76
734
  msgid "Not sure which license is for you?"
735
  msgstr "Tidak yakin yang lisensi adalah untuk Anda?"
736
 
737
- #: dashboard/adrotatepro.php:104 dashboard/info.php:76
738
  msgid "Compare Licenses"
739
  msgstr "bandingkan Lisensi"
740
 
741
- #: dashboard/info.php:24
742
  msgid "Currently"
743
  msgstr "sekarang"
744
 
745
- #: dashboard/info.php:30
746
  msgid "Your setup"
747
  msgstr "setup Anda"
748
 
749
- #: dashboard/info.php:31
750
  msgid "Adverts that need you"
751
  msgstr "Iklan yang perlu Anda"
752
 
753
- #: dashboard/info.php:38
754
  msgid "(Almost) Expired"
755
  msgstr "(Hampir) Expired"
756
 
757
- #: dashboard/info.php:42
758
  msgid "Have errors"
759
  msgstr "memiliki kesalahan"
760
 
761
- #: dashboard/info.php:47
762
  msgid ""
763
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
764
  "for updates about me and my plugins. Thank you!"
@@ -766,23 +807,13 @@ msgstr ""
766
  "Pertimbangkan menulis review jika Anda suka AdRotate. Juga ikuti halaman "
767
  "Facebook saya untuk update tentang saya dan plugin saya. Terima kasih!"
768
 
769
- #: dashboard/info.php:51
770
- msgid "Get paid as a publisher"
771
  msgstr ""
772
 
773
- #: dashboard/info.php:87
774
- msgid "AdRotate News"
775
- msgstr "AdRotate Berita"
776
-
777
- #: dashboard/info.php:105
778
- msgid ""
779
- "I am a digital nomad in the Philippines. Click on my name to find out more "
780
- "about me and what I am doing. Thanks for your support and for using my "
781
- "plugins!"
782
  msgstr ""
783
- "Saya seorang nomaden digital di Filipina. Klik pada nama saya untuk "
784
- "mengetahui lebih lanjut tentang saya dan apa yang saya lakukan. Terima kasih "
785
- "atas dukungan Anda dan untuk menggunakan plugin saya!"
786
 
787
  #: dashboard/publisher/adverts-disabled.php:15
788
  msgid "Disabled Adverts"
@@ -796,7 +827,7 @@ msgid "Bulk Actions"
796
  msgstr "Aksi besar"
797
 
798
  #: dashboard/publisher/adverts-disabled.php:21
799
- #: dashboard/publisher/adverts-edit.php:198
800
  msgid "Activate"
801
  msgstr "Mengaktifkan"
802
 
@@ -827,22 +858,22 @@ msgid "ID"
827
  msgstr "ID"
828
 
829
  #: dashboard/publisher/adverts-disabled.php:36
830
- #: dashboard/publisher/adverts-error.php:40
831
  #: dashboard/publisher/adverts-main.php:40
 
 
 
 
 
 
832
  #: dashboard/publisher/groups-edit.php:51
833
  #: dashboard/publisher/groups-main.php:33
834
  msgid "Name"
835
  msgstr "Nama"
836
 
837
- #: dashboard/publisher/adverts-disabled.php:37
838
- #: dashboard/publisher/adverts-error.php:41
839
- #: dashboard/publisher/adverts-main.php:41
840
- msgid "Start / End"
841
- msgstr "Mulai / Akhir"
842
-
843
  #: dashboard/publisher/adverts-disabled.php:39
844
  #: dashboard/publisher/adverts-main.php:43
845
- #: dashboard/publisher/groups-edit.php:331
846
  #: dashboard/publisher/groups-main.php:36
847
  msgid "Shown"
848
  msgstr "Tampil"
@@ -851,7 +882,7 @@ msgstr "Tampil"
851
  #: dashboard/publisher/adverts-main.php:45
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,31 +898,24 @@ msgstr "klik"
867
  msgid "CTR"
868
  msgstr "CTR"
869
 
870
- #: dashboard/publisher/adverts-disabled.php:68
871
  #: dashboard/publisher/adverts-error.php:63
872
- #: dashboard/publisher/adverts-main.php:80
873
  #: dashboard/publisher/groups-main.php:70
874
  msgid "Edit"
875
  msgstr "mengedit"
876
 
877
- #: dashboard/publisher/adverts-disabled.php:68
878
- #: dashboard/publisher/adverts-error.php:63
879
- #: dashboard/publisher/adverts-main.php:80
880
- #: dashboard/publisher/groups-main.php:70
881
- msgid "Stats"
882
- msgstr "Statistik"
883
-
884
- #: dashboard/publisher/adverts-disabled.php:68
885
  #: dashboard/publisher/adverts-error.php:63
886
- #: dashboard/publisher/adverts-main.php:80
887
  msgid "Groups:"
888
  msgstr "kelompok:"
889
 
890
- #: dashboard/publisher/adverts-edit.php:66
891
  msgid "The AdCode cannot be empty!"
892
  msgstr "AdCode tersebut tidak boleh kosong!"
893
 
894
- #: dashboard/publisher/adverts-edit.php:69
895
  msgid ""
896
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
897
  "use!"
@@ -899,7 +923,7 @@ msgstr ""
899
  "Anda tidak menggunakan %a sset% (atau% gambar%) di AdCode Anda tetapi tidak "
900
  "pilih file untuk menggunakan!"
901
 
902
- #: dashboard/publisher/adverts-edit.php:72
903
  msgid ""
904
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
905
  "use!"
@@ -907,20 +931,20 @@ msgstr ""
907
  "Anda tidak menggunakan %a sset% (atau% gambar%) di AdCode Anda, tetapi tidak "
908
  "memilih file untuk menggunakan!"
909
 
910
- #: dashboard/publisher/adverts-edit.php:75
911
  msgid ""
912
  "There is a problem saving the image. Please reset your image and re-save the "
913
  "ad!"
914
  msgstr ""
915
  "Ada menyimpan gambar masalah. Harap ulang gambar Anda dan re-save iklan!"
916
 
917
- #: dashboard/publisher/adverts-edit.php:78
918
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
919
  msgstr ""
920
  "Pelacakan diaktifkan tapi tidak ada hubungan / tag yang valid ditemukan di "
921
  "adcode yang!"
922
 
923
- #: dashboard/publisher/adverts-edit.php:83
924
  msgid ""
925
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
926
  "the ad!"
@@ -928,84 +952,84 @@ msgstr ""
928
  "AdRotate tidak dapat menemukan kesalahan tetapi iklan ditandai keliru, coba "
929
  "hemat ulang iklan!"
930
 
931
- #: dashboard/publisher/adverts-edit.php:86
932
  msgid "This ad is expired and currently not shown on your website!"
933
  msgstr "Iklan ini berakhir dan saat ini tidak ditampilkan pada situs web Anda!"
934
 
935
- #: dashboard/publisher/adverts-edit.php:89
936
  msgid "The ad will expire in less than 2 days!"
937
  msgstr "Iklan akan berakhir dalam waktu kurang dari 2 hari!"
938
 
939
- #: dashboard/publisher/adverts-edit.php:92
940
  msgid "This ad will expire in less than 7 days!"
941
  msgstr "Iklan ini akan berakhir dalam waktu kurang dari 7 hari!"
942
 
943
- #: dashboard/publisher/adverts-edit.php:95
944
  msgid "This ad has been disabled and does not rotate on your site!"
945
  msgstr "Iklan ini telah dinonaktifkan dan tidak berputar di situs Anda!"
946
 
947
- #: dashboard/publisher/adverts-edit.php:99
948
  msgid ""
949
  "This advert uses the obsolete Responsive feature. Please use the more "
950
  "reliable Mobile feature! Saving the advert will disable the responsive "
951
  "option silently."
952
  msgstr ""
953
 
954
- #: dashboard/publisher/adverts-edit.php:124
955
  msgid "New Advert"
956
  msgstr "baru Advert"
957
 
958
- #: dashboard/publisher/adverts-edit.php:126
959
  msgid "Edit Advert"
960
  msgstr "mengedit Advert"
961
 
962
- #: dashboard/publisher/adverts-edit.php:132
963
  msgid "Title"
964
  msgstr "Judul"
965
 
966
- #: dashboard/publisher/adverts-edit.php:138
967
  msgid "AdCode"
968
  msgstr "AdCode"
969
 
970
- #: dashboard/publisher/adverts-edit.php:143
971
  msgid "Basic Examples:"
972
  msgstr "Contoh dasar:"
973
 
974
- #: dashboard/publisher/adverts-edit.php:147
975
- msgid "Get paid as a publisher:"
976
- msgstr "Dibayar sebagai penerbit:"
977
 
978
- #: dashboard/publisher/adverts-edit.php:156
979
  msgid "Useful tags"
980
  msgstr "tag berguna"
981
 
982
- #: dashboard/publisher/adverts-edit.php:158
983
  msgid "Insert the advert ID Number."
984
  msgstr "Masukkan iklan ID Number."
985
 
986
- #: dashboard/publisher/adverts-edit.php:158
987
  msgid "Required when selecting a asset below."
988
  msgstr "Diperlukan ketika memilih aset di bawah."
989
 
990
- #: dashboard/publisher/adverts-edit.php:158
991
  msgid "Insert the advert name."
992
  msgstr "Masukkan nama iklan."
993
 
994
- #: dashboard/publisher/adverts-edit.php:158
995
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
996
  msgstr "Masukkan benih acak. Berguna untuk DFP / DoubleClick jenis iklan."
997
 
998
- #: dashboard/publisher/adverts-edit.php:158
999
  msgid "Add inside the <a> tag to open advert in a new window."
1000
  msgstr "Menambahkan dalam tag <a> untuk membuka iklan di jendela baru."
1001
 
1002
- #: dashboard/publisher/adverts-edit.php:158
1003
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1004
  msgstr ""
1005
  "Menambahkan dalam tag <a> untuk memberitahu crawler untuk mengabaikan link "
1006
  "ini"
1007
 
1008
- #: dashboard/publisher/adverts-edit.php:158
1009
  msgid ""
1010
  "Place the cursor in your AdCode where you want to add any of these tags and "
1011
  "click to add it."
@@ -1013,11 +1037,11 @@ msgstr ""
1013
  "Tempatkan kursor di AdCode Anda di mana Anda ingin menambahkan tag ini dan "
1014
  "klik untuk menambahkannya."
1015
 
1016
- #: dashboard/publisher/adverts-edit.php:163
1017
  msgid "Preview"
1018
  msgstr "Preview"
1019
 
1020
- #: dashboard/publisher/adverts-edit.php:166
1021
  msgid ""
1022
  "Note: While this preview is an accurate one, it might look different then it "
1023
  "does on the website."
@@ -1025,41 +1049,41 @@ msgstr ""
1025
  "Catatan: Sementara pratayang ini adalah salah satu yang akurat, mungkin "
1026
  "terlihat berbeda maka tidak di website."
1027
 
1028
- #: dashboard/publisher/adverts-edit.php:167
1029
  msgid ""
1030
  "This is because of CSS differences. Your themes CSS file is not active here!"
1031
  msgstr ""
1032
  "Hal ini karena perbedaan CSS. Anda berkas tema CSS tidak aktif di sini!"
1033
 
1034
- #: dashboard/publisher/adverts-edit.php:172
1035
  msgid "Banner asset"
1036
  msgstr "aset Banner"
1037
 
1038
- #: dashboard/publisher/adverts-edit.php:175
1039
  msgid "WordPress media:"
1040
  msgstr "Media WordPress:"
1041
 
1042
- #: dashboard/publisher/adverts-edit.php:175
1043
  msgid "Select Banner"
1044
  msgstr "Pilih Banner"
1045
 
1046
- #: dashboard/publisher/adverts-edit.php:177
1047
  msgid "- OR -"
1048
  msgstr "- ATAU -"
1049
 
1050
- #: dashboard/publisher/adverts-edit.php:179
1051
  msgid "Banner folder:"
1052
  msgstr "folder Banner:"
1053
 
1054
- #: dashboard/publisher/adverts-edit.php:180
1055
  msgid "No image selected"
1056
  msgstr "Tidak ada gambar yang dipilih"
1057
 
1058
- #: dashboard/publisher/adverts-edit.php:184
1059
  msgid "Use %asset% in the adcode instead of the file path."
1060
  msgstr "Gunakan %a sset% di adcode bukan path file."
1061
 
1062
- #: dashboard/publisher/adverts-edit.php:184
1063
  msgid ""
1064
  "Use either the text field or the dropdown. If the textfield has content that "
1065
  "field has priority."
@@ -1067,16 +1091,16 @@ msgstr ""
1067
  "Gunakan baik bidang teks atau dropdown. Jika textfield memiliki konten "
1068
  "bidang yang memiliki prioritas."
1069
 
1070
- #: dashboard/publisher/adverts-edit.php:189
1071
  #: dashboard/settings/statistics.php:17
1072
  msgid "Statistics"
1073
  msgstr "statistika"
1074
 
1075
- #: dashboard/publisher/adverts-edit.php:191
1076
  msgid "Enable click and impression tracking for this advert."
1077
  msgstr "Aktifkan klik dan pelacakan kesan untuk iklan ini."
1078
 
1079
- #: dashboard/publisher/adverts-edit.php:192
1080
  msgid ""
1081
  "Note: Clicktracking does not work for Javascript adverts such as those "
1082
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
@@ -1086,54 +1110,54 @@ msgstr ""
1086
  "yang disediakan oleh Google AdSense / DFP / DoubleClick. Iklan HTML5 / Flash "
1087
  "tidak selalu didukung."
1088
 
1089
- #: dashboard/publisher/adverts-edit.php:202
1090
  msgid "Yes, this ad will be used"
1091
  msgstr "Ya, iklan ini akan digunakan"
1092
 
1093
- #: dashboard/publisher/adverts-edit.php:203
1094
  msgid "No, do not show this ad anywhere"
1095
  msgstr "Tidak, tidak menampilkan iklan ini di mana saja"
1096
 
1097
- #: dashboard/publisher/adverts-edit.php:210
1098
  #: dashboard/publisher/adverts-main.php:105
1099
  #: dashboard/publisher/groups-edit.php:71
1100
  #: dashboard/publisher/groups-main.php:89
1101
  msgid "Get more features with AdRotate Pro."
1102
  msgstr "Dapatkan lebih banyak fitur dengan AdRotate Pro."
1103
 
1104
- #: dashboard/publisher/adverts-edit.php:210
1105
  #: dashboard/publisher/adverts-main.php:105
1106
  #: dashboard/publisher/groups-edit.php:71
1107
  #: dashboard/publisher/groups-main.php:89
1108
  msgid "More information"
1109
  msgstr "informasi lebih lanjut"
1110
 
1111
- #: dashboard/publisher/adverts-edit.php:213
1112
- #: dashboard/publisher/adverts-edit.php:313
1113
- #: dashboard/publisher/adverts-edit.php:469
1114
- #: dashboard/publisher/adverts-edit.php:510
1115
  msgid "Save Advert"
1116
  msgstr "Simpan Advert"
1117
 
1118
- #: dashboard/publisher/adverts-edit.php:214
1119
- #: dashboard/publisher/adverts-edit.php:314
1120
- #: dashboard/publisher/adverts-edit.php:470
1121
- #: dashboard/publisher/adverts-edit.php:511
1122
  #: dashboard/publisher/groups-edit.php:150
1123
  #: dashboard/publisher/groups-edit.php:299
1124
  #: dashboard/publisher/groups-edit.php:391
1125
  msgid "Cancel"
1126
  msgstr "Membatalkan"
1127
 
1128
- #: dashboard/publisher/adverts-edit.php:217
1129
- #: dashboard/publisher/adverts-edit.php:452
1130
  #: dashboard/publisher/groups-edit.php:132
1131
  #: dashboard/publisher/groups-edit.php:281
1132
  msgid "Usage"
1133
  msgstr "Pemakaian"
1134
 
1135
- #: dashboard/publisher/adverts-edit.php:221
1136
- #: dashboard/publisher/adverts-edit.php:456
1137
  #: dashboard/publisher/groups-edit.php:136
1138
  #: dashboard/publisher/groups-edit.php:205
1139
  #: dashboard/publisher/groups-edit.php:245
@@ -1141,8 +1165,8 @@ msgstr "Pemakaian"
1141
  msgid "Widget"
1142
  msgstr "widget"
1143
 
1144
- #: dashboard/publisher/adverts-edit.php:222
1145
- #: dashboard/publisher/adverts-edit.php:457
1146
  msgid ""
1147
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1148
  "and select the advert or the group the advert is in."
@@ -1150,58 +1174,58 @@ msgstr ""
1150
  "Tarik widget AdRotate ke sidebar di mana Anda ingin menempatkan iklan dan "
1151
  "pilih iklan atau kelompok iklan ini di."
1152
 
1153
- #: dashboard/publisher/adverts-edit.php:225
1154
- #: dashboard/publisher/adverts-edit.php:460
1155
  #: dashboard/publisher/groups-edit.php:140
1156
  #: dashboard/publisher/groups-edit.php:289
1157
  msgid "In a post or page"
1158
  msgstr "Dalam posting atau halaman"
1159
 
1160
- #: dashboard/publisher/adverts-edit.php:227
1161
- #: dashboard/publisher/adverts-edit.php:462
1162
  #: dashboard/publisher/groups-edit.php:142
1163
  #: dashboard/publisher/groups-edit.php:291
1164
  msgid "Directly in a theme"
1165
  msgstr "Langsung di tema"
1166
 
1167
- #: dashboard/publisher/adverts-edit.php:233
1168
  msgid "Schedule your advert"
1169
  msgstr "Jadwalkan iklan Anda"
1170
 
1171
- #: dashboard/publisher/adverts-edit.php:237
1172
  msgid "Start date (day/month/year)"
1173
  msgstr "Tanggal mulai (hari / bulan / tahun)"
1174
 
1175
- #: dashboard/publisher/adverts-edit.php:258
1176
  msgid "End date (day/month/year)"
1177
  msgstr "tanggal akhir (hari / bulan / tahun)"
1178
 
1179
- #: dashboard/publisher/adverts-edit.php:281
1180
  msgid "Start time (hh:mm)"
1181
  msgstr "Waktu mulai (hh: mm)"
1182
 
1183
- #: dashboard/publisher/adverts-edit.php:288
1184
  msgid "End time (hh:mm)"
1185
  msgstr "waktu akhir (hh: mm)"
1186
 
1187
- #: dashboard/publisher/adverts-edit.php:298
1188
  msgid "Maximum Clicks"
1189
  msgstr "Klik maksimum"
1190
 
1191
- #: dashboard/publisher/adverts-edit.php:299
1192
- #: dashboard/publisher/adverts-edit.php:301
1193
  msgid "Leave empty or 0 to skip this."
1194
  msgstr "Biarkan kosong atau 0 untuk melewati ini."
1195
 
1196
- #: dashboard/publisher/adverts-edit.php:300
1197
  msgid "Maximum Impressions"
1198
  msgstr "Tayangan maksimum"
1199
 
1200
- #: dashboard/publisher/adverts-edit.php:305
1201
  msgid "Important"
1202
  msgstr "Penting"
1203
 
1204
- #: dashboard/publisher/adverts-edit.php:306
1205
  msgid ""
1206
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1207
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
@@ -1211,72 +1235,72 @@ msgstr ""
1211
  "sistem / PM ingatlah ini: Jika awal atau akhir waktu setelah makan siang, "
1212
  "tambahkan 12 jam. 14:00 adalah jam 14.00. 06:00 adalah 6:00 jam."
1213
 
1214
- #: dashboard/publisher/adverts-edit.php:310
1215
  msgid ""
1216
  "Create multiple and more advanced schedules for each advert with AdRotate "
1217
  "Pro."
1218
  msgstr ""
1219
  "Buat beberapa dan lebih maju jadwal untuk setiap iklan dengan AdRotate Pro."
1220
 
1221
- #: dashboard/publisher/adverts-edit.php:310
1222
- #: dashboard/publisher/adverts-edit.php:379
1223
- #: dashboard/publisher/adverts-edit.php:450
1224
  #: dashboard/publisher/groups-edit.php:191
1225
  msgid "Upgrade today"
1226
  msgstr "meng-upgrade hari ini"
1227
 
1228
- #: dashboard/publisher/adverts-edit.php:317
1229
  #: dashboard/publisher/groups-edit.php:153
1230
  msgid "Advanced"
1231
  msgstr "Maju"
1232
 
1233
- #: dashboard/publisher/adverts-edit.php:318
1234
- #: dashboard/publisher/adverts-edit.php:382
1235
  msgid "Available in AdRotate Pro!"
1236
  msgstr "Tersedia dalam AdRotate Pro!"
1237
 
1238
- #: dashboard/publisher/adverts-edit.php:323
1239
- #: dashboard/publisher/groups-edit.php:334
1240
  msgid "Weight"
1241
  msgstr "Berat"
1242
 
1243
- #: dashboard/publisher/adverts-edit.php:326
1244
  msgid "Few impressions"
1245
  msgstr "beberapa tayangan"
1246
 
1247
- #: dashboard/publisher/adverts-edit.php:331
1248
  msgid "Less than average"
1249
  msgstr "Kurang dari rata-rata"
1250
 
1251
- #: dashboard/publisher/adverts-edit.php:336
1252
  msgid "Normal impressions"
1253
  msgstr "tayangan yang normal"
1254
 
1255
- #: dashboard/publisher/adverts-edit.php:341
1256
  msgid "More than average"
1257
  msgstr "Lebih dari rata-rata"
1258
 
1259
- #: dashboard/publisher/adverts-edit.php:346
1260
  msgid "Many impressions"
1261
  msgstr "banyak tayangan"
1262
 
1263
- #: dashboard/publisher/adverts-edit.php:351
1264
  msgid "Mobile"
1265
  msgstr "mobil"
1266
 
1267
- #: dashboard/publisher/adverts-edit.php:353
1268
  msgid "Computers"
1269
  msgstr "komputer"
1270
 
1271
- #: dashboard/publisher/adverts-edit.php:356
1272
  msgid "Smartphones"
1273
  msgstr "smartphone"
1274
 
1275
- #: dashboard/publisher/adverts-edit.php:359
1276
  msgid "Tablets"
1277
  msgstr "tablet"
1278
 
1279
- #: dashboard/publisher/adverts-edit.php:362
1280
  msgid ""
1281
  "Also enable mobile support in the group this advert goes in or these are "
1282
  "ignored."
@@ -1284,27 +1308,27 @@ msgstr ""
1284
  "Juga memungkinkan dukungan mobile dalam kelompok iklan ini berjalan di atau "
1285
  "ini diabaikan."
1286
 
1287
- #: dashboard/publisher/adverts-edit.php:362
1288
  msgid "Operating system detection only detects iOS/Android/Other or neither."
1289
  msgstr ""
1290
 
1291
- #: dashboard/publisher/adverts-edit.php:366
1292
  msgid "Mobile OS"
1293
  msgstr "Mobile OS"
1294
 
1295
- #: dashboard/publisher/adverts-edit.php:368
1296
  msgid "iOS"
1297
  msgstr "iOS"
1298
 
1299
- #: dashboard/publisher/adverts-edit.php:371
1300
  msgid "Android"
1301
  msgstr "Android"
1302
 
1303
- #: dashboard/publisher/adverts-edit.php:374
1304
  msgid "Others"
1305
  msgstr "Lainnya"
1306
 
1307
- #: dashboard/publisher/adverts-edit.php:379
1308
  msgid ""
1309
  "With AdRotate Pro you can easily select which devices and mobile operating "
1310
  "systems the advert should show on!"
@@ -1312,24 +1336,18 @@ msgstr ""
1312
  "Dengan AdRotate Pro Anda dapat dengan mudah memilih perangkat dan sistem "
1313
  "operasi mobile iklan harus ditampilkan di!"
1314
 
1315
- #: dashboard/publisher/adverts-edit.php:381
1316
- #: dashboard/publisher/groups-edit.php:180
1317
- #: dashboard/settings/advertisers.php:38
1318
- msgid "Geo Targeting"
1319
- msgstr "Geo Penargetan"
1320
-
1321
- #: dashboard/publisher/adverts-edit.php:382
1322
  msgid ""
1323
  "Assign the advert to a group and enable that group to use Geo Targeting."
1324
  msgstr ""
1325
  "Tetapkan iklan untuk kelompok dan memungkinkan kelompok yang menggunakan Geo "
1326
  "Penargetan."
1327
 
1328
- #: dashboard/publisher/adverts-edit.php:440
1329
  msgid "A comma separated list of items:"
1330
  msgstr "Sebuah daftar dipisahkan koma item:"
1331
 
1332
- #: dashboard/publisher/adverts-edit.php:440
1333
  msgid ""
1334
  "AdRotate does not check the validity of names so make sure you spell them "
1335
  "correctly!"
@@ -1337,55 +1355,55 @@ msgstr ""
1337
  "AdRotate tidak memeriksa validitas nama jadi pastikan Anda mengejanya dengan "
1338
  "benar!"
1339
 
1340
- #: dashboard/publisher/adverts-edit.php:450
1341
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1342
  msgstr "Target audiens Anda dengan Geo Penargetan di AdRotate Pro"
1343
 
1344
- #: dashboard/publisher/adverts-edit.php:474
1345
  msgid "Select Groups"
1346
  msgstr "Pilih Grup"
1347
 
1348
- #: dashboard/publisher/adverts-edit.php:479
1349
  msgid "ID - Name"
1350
  msgstr "ID - Nama"
1351
 
1352
- #: dashboard/publisher/adverts-edit.php:489
1353
  #: dashboard/publisher/groups-main.php:60
1354
  #: dashboard/settings/geotargeting.php:49
1355
  msgid "Default"
1356
  msgstr "kegagalan"
1357
 
1358
- #: dashboard/publisher/adverts-edit.php:490
1359
  #: dashboard/publisher/groups-main.php:61
1360
  msgid "Dynamic"
1361
  msgstr "Dinamis"
1362
 
1363
- #: dashboard/publisher/adverts-edit.php:490
1364
  #: dashboard/publisher/groups-main.php:61
1365
  msgid "second rotation"
1366
  msgstr "rotasi kedua"
1367
 
1368
- #: dashboard/publisher/adverts-edit.php:491
1369
  #: dashboard/publisher/groups-main.php:62
1370
  msgid "Block"
1371
  msgstr "Blok"
1372
 
1373
- #: dashboard/publisher/adverts-edit.php:491
1374
  #: dashboard/publisher/groups-main.php:62
1375
  msgid "grid"
1376
  msgstr "kisi"
1377
 
1378
- #: dashboard/publisher/adverts-edit.php:492
1379
  #: dashboard/publisher/groups-edit.php:199
1380
  #: dashboard/publisher/groups-main.php:63
1381
  msgid "Post Injection"
1382
  msgstr "Pasang Injeksi"
1383
 
1384
- #: dashboard/publisher/adverts-edit.php:493
1385
  msgid "Geolocation"
1386
  msgstr "geolocation"
1387
 
1388
- #: dashboard/publisher/adverts-edit.php:499
1389
  #: dashboard/publisher/groups-edit.php:57
1390
  #: dashboard/publisher/groups-main.php:70
1391
  msgid "Mode"
@@ -1434,7 +1452,7 @@ msgid "Expires soon"
1434
  msgstr ""
1435
 
1436
  #: dashboard/publisher/adverts-error.php:73
1437
- #: dashboard/settings/maintenance.php:63
1438
  msgid "Expired"
1439
  msgstr "berakhir"
1440
 
@@ -1443,7 +1461,9 @@ msgid "Active Adverts"
1443
  msgstr "Iklan aktif"
1444
 
1445
  #: dashboard/publisher/adverts-main.php:24
1446
- msgid "Export to XML"
 
 
1447
  msgstr "Ekspor ke XML"
1448
 
1449
  #: dashboard/publisher/adverts-main.php:44
@@ -1794,7 +1814,7 @@ msgstr "Pilih iklan"
1794
  msgid "Choose adverts"
1795
  msgstr "Pilih iklan"
1796
 
1797
- #: dashboard/publisher/groups-edit.php:335
1798
  msgid "Visible until"
1799
  msgstr "terlihat sampai"
1800
 
@@ -1835,8 +1855,7 @@ msgid "This action can not be undone!"
1835
  msgstr "Tindakan ini tidak bisa dibatalkan!"
1836
 
1837
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1838
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
1839
- #: dashboard/settings/maintenance.php:101
1840
  msgid "OK to continue, CANCEL to stop."
1841
  msgstr "OK untuk melanjutkan, BATAL untuk berhenti."
1842
 
@@ -1910,7 +1929,7 @@ msgstr ""
1910
  "mereka melalui tab Peran."
1911
 
1912
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1913
- #: dashboard/settings/maintenance.php:107 dashboard/settings/misc.php:43
1914
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1915
  #: dashboard/settings/statistics.php:73
1916
  msgid "Update Options"
@@ -2026,15 +2045,19 @@ msgid "Banner Folder"
2026
  msgstr "Banner Folder"
2027
 
2028
  #: dashboard/settings/general.php:50
2029
- msgid "Set a location where your banner images will be stored."
 
 
2030
  msgstr "Menetapkan lokasi di mana gambar banner Anda akan disimpan."
2031
 
2032
  #: dashboard/settings/general.php:53
2033
- msgid "Location"
2034
- msgstr "tempat"
2035
 
2036
  #: dashboard/settings/general.php:55
2037
- msgid "(Default: wp-content/banners/)."
 
 
2038
  msgstr "(Default: wp-content / spanduk /)."
2039
 
2040
  #: dashboard/settings/general.php:56
@@ -2194,10 +2217,6 @@ msgstr "Username / Email"
2194
  msgid "Password/License Key"
2195
  msgstr "Password / License Key"
2196
 
2197
- #: dashboard/settings/maintenance.php:16
2198
- msgid "Maintenance"
2199
- msgstr "Pemeliharaan"
2200
-
2201
  #: dashboard/settings/maintenance.php:17
2202
  msgid ""
2203
  "Use these functions when you notice your database is slow, unresponsive and "
@@ -2239,14 +2258,24 @@ msgstr ""
2239
  "yang telah dilakukan. Hal ini dapat bervariasi dari tidak ada ratusan KiB "
2240
  "data."
2241
 
2242
- #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
 
 
 
 
 
 
2243
  msgid "Clean-up Database"
2244
  msgstr "Clean-up database"
2245
 
2246
  #: dashboard/settings/maintenance.php:30
 
 
 
 
2247
  msgid ""
2248
- "You are about to clean up your database. This may delete expired schedules "
2249
- "and older statistics."
2250
  msgstr ""
2251
  "Anda akan membersihkan database Anda. Hal ini dapat menghapus jadwal "
2252
  "kadaluarsa dan statistik yang lebih tua."
@@ -2255,18 +2284,21 @@ msgstr ""
2255
  msgid "Are you sure you want to continue?"
2256
  msgstr "Apakah anda yakin ingin melanjutkan?"
2257
 
2258
- #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
2259
- #: dashboard/settings/maintenance.php:101
2260
- msgid "This might take a while and may slow down your site during this action!"
2261
  msgstr ""
2262
- "Ini mungkin memakan waktu cukup lama dan dapat memperlambat situs Anda "
2263
- "selama aksi ini!"
2264
 
2265
  #: dashboard/settings/maintenance.php:31
2266
- msgid "Delete stats older than 356 days (Optional)."
 
 
2267
  msgstr "Hapus statistik lebih tua dari 356 hari (Opsional)."
2268
 
2269
  #: dashboard/settings/maintenance.php:32
 
 
 
 
2270
  msgid ""
2271
  "For when you create an advert, group or schedule and it does not save or "
2272
  "keep changes you make."
@@ -2274,27 +2306,37 @@ msgstr ""
2274
  "Karena ketika Anda membuat sebuah iklan, kelompok atau jadwal dan tidak "
2275
  "menyimpan atau menyimpan perubahan yang Anda lakukan."
2276
 
2277
- #: dashboard/settings/maintenance.php:32
 
 
 
 
2278
  msgid ""
2279
- "Additionally you can clean up old schedules, tracker data and/or statistics. "
2280
- "This will improve the speed of your site."
2281
  msgstr ""
2282
- "Selain itu Anda dapat membersihkan jadwal lama, Data tracker dan / atau "
2283
- "statistik. Hal ini akan meningkatkan kecepatan situs Anda."
2284
 
2285
- #: dashboard/settings/maintenance.php:36
2286
  msgid "Re-evaluate Ads"
2287
  msgstr "Re-evaluasi Iklan"
2288
 
2289
- #: dashboard/settings/maintenance.php:38
2290
  msgid "Re-evaluate all ads"
2291
  msgstr "Kembali mengevaluasi semua iklan"
2292
 
2293
- #: dashboard/settings/maintenance.php:38
2294
  msgid "You are about to check all ads for errors."
2295
  msgstr "Anda akan memeriksa semua iklan untuk kesalahan."
2296
 
2297
- #: dashboard/settings/maintenance.php:39
 
 
 
 
 
 
2298
  msgid ""
2299
  "This will apply all evaluation rules to all ads to see if any error slipped "
2300
  "in. Normally you should not need this feature."
@@ -2302,7 +2344,7 @@ msgstr ""
2302
  "Ini akan menerapkan semua aturan evaluasi untuk semua iklan untuk melihat "
2303
  "apakah kesalahan tergelincir di. Biasanya Anda tidak perlu fitur ini."
2304
 
2305
- #: dashboard/settings/maintenance.php:43
2306
  msgid ""
2307
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2308
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2325,11 +2367,11 @@ msgstr ""
2325
  "Anda mungkin berada di luar perbaikan sudah. Mengklaim itu bekerja sebelum "
2326
  "mengklik tombol-tombol ini tidak titik yang valid dalam hal apapun."
2327
 
2328
- #: dashboard/settings/maintenance.php:45
2329
  msgid "Troubleshooting"
2330
  msgstr "Penyelesaian masalah"
2331
 
2332
- #: dashboard/settings/maintenance.php:46
2333
  msgid ""
2334
  "The below options are not meant for normal use and are only there for "
2335
  "developers to review saved settings or how ads are selected. These can be "
@@ -2341,97 +2383,97 @@ msgstr ""
2341
  "dipilih. Ini dapat digunakan sebagai ukuran pemecahan masalah atas "
2342
  "permintaan tapi untuk penggunaan normal mereka HARUS dibiarkan !!"
2343
 
2344
- #: dashboard/settings/maintenance.php:49
2345
  msgid "Developer Debug"
2346
  msgstr "Debug pengembang"
2347
 
2348
- #: dashboard/settings/maintenance.php:51
2349
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2350
  msgstr ""
2351
  "Memecahkan masalah iklan dan bagaimana mereka dipilih. Terlihat pada front-"
2352
  "end."
2353
 
2354
- #: dashboard/settings/maintenance.php:52
2355
  msgid "View advert specs and (some) stats in the dashboard."
2356
  msgstr "Lihat spesifikasi iklan dan (beberapa) statistik di dashboard."
2357
 
2358
- #: dashboard/settings/maintenance.php:53
2359
  msgid "Disable timers for clicks and impressions."
2360
  msgstr ""
2361
 
2362
- #: dashboard/settings/maintenance.php:54
2363
  msgid "Temporarily disable encryption on the redirect url."
2364
  msgstr "Sementara menonaktifkan enkripsi pada url redirect."
2365
 
2366
- #: dashboard/settings/maintenance.php:59
2367
  msgid "Status and Versions"
2368
  msgstr "Status dan Versi"
2369
 
2370
- #: dashboard/settings/maintenance.php:62
2371
  msgid "Current status of adverts"
2372
  msgstr "status iklan"
2373
 
2374
- #: dashboard/settings/maintenance.php:63
2375
  msgid "Normal"
2376
  msgstr "Normal"
2377
 
2378
- #: dashboard/settings/maintenance.php:63
2379
  msgid "Error"
2380
  msgstr "Kesalahan"
2381
 
2382
- #: dashboard/settings/maintenance.php:63
2383
  msgid "Expires Soon"
2384
  msgstr "kedaluwarsa Segera"
2385
 
2386
- #: dashboard/settings/maintenance.php:63
2387
  msgid "Unknown"
2388
  msgstr "tidak diketahui"
2389
 
2390
- #: dashboard/settings/maintenance.php:66
2391
  msgid "Banners/assets Folder"
2392
  msgstr "Spanduk / aset Folder"
2393
 
2394
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2395
  msgid "Exists and appears writable"
2396
  msgstr "Ada dan muncul ditulis"
2397
 
2398
- #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2399
  msgid "Not writable or does not exist"
2400
  msgstr "Tidak dapat ditulis atau tidak ada"
2401
 
2402
- #: dashboard/settings/maintenance.php:70
2403
  msgid "Reports Folder"
2404
  msgstr "laporan Folder"
2405
 
2406
- #: dashboard/settings/maintenance.php:76
2407
  msgid "Advert evaluation"
2408
  msgstr "evaluasi iklan"
2409
 
2410
- #: dashboard/settings/maintenance.php:77
2411
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2412
  msgstr "Tidak dijadwalkan! Re-aktifkan plugin dari halaman plugin."
2413
 
2414
- #: dashboard/settings/maintenance.php:78
2415
  msgid "Clean Trackerdata"
2416
  msgstr ""
2417
 
2418
- #: dashboard/settings/maintenance.php:79
2419
  msgid "Not scheduled!"
2420
  msgstr "Не е планирано!"
2421
 
2422
- #: dashboard/settings/maintenance.php:82
2423
  msgid "Background tasks"
2424
  msgstr ""
2425
 
2426
- #: dashboard/settings/maintenance.php:84
2427
  msgid "Reset background tasks"
2428
  msgstr ""
2429
 
2430
- #: dashboard/settings/maintenance.php:89
2431
  msgid "Internal Versions"
2432
  msgstr "Versi internal"
2433
 
2434
- #: dashboard/settings/maintenance.php:90
2435
  msgid ""
2436
  "Unless you experience database issues or a warning shows below, these "
2437
  "numbers are not really relevant for troubleshooting. Support may ask for "
@@ -2441,39 +2483,42 @@ msgstr ""
2441
  "angka-angka ini tidak benar-benar relevan untuk pemecahan masalah. Dukungan "
2442
  "dapat meminta mereka untuk memverifikasi status database Anda."
2443
 
2444
- #: dashboard/settings/maintenance.php:93
2445
  msgid "AdRotate version"
2446
  msgstr "versi AdRotate"
2447
 
2448
- #: dashboard/settings/maintenance.php:94 dashboard/settings/maintenance.php:96
 
2449
  msgid "Current:"
2450
  msgstr "Arus:"
2451
 
2452
- #: dashboard/settings/maintenance.php:94 dashboard/settings/maintenance.php:96
 
2453
  msgid "Should be:"
2454
  msgstr "Seharusnya:"
2455
 
2456
- #: dashboard/settings/maintenance.php:94 dashboard/settings/maintenance.php:96
 
2457
  msgid "Previous:"
2458
  msgstr "Sebelumnya:"
2459
 
2460
- #: dashboard/settings/maintenance.php:95
2461
  msgid "Database version"
2462
  msgstr "database versi"
2463
 
2464
- #: dashboard/settings/maintenance.php:99
2465
  msgid "Manual upgrade"
2466
  msgstr ""
2467
 
2468
- #: dashboard/settings/maintenance.php:101
2469
  msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2470
  msgstr "ANDA TENTANG UNTUK MELAKUKAN UPDATE MANUAL UNTUK AdRotate."
2471
 
2472
- #: dashboard/settings/maintenance.php:101
2473
  msgid "Make sure you have a database backup!"
2474
  msgstr "Pastikan Anda memiliki backup database!"
2475
 
2476
- #: dashboard/settings/maintenance.php:101
2477
  msgid "Run updater"
2478
  msgstr ""
2479
 
@@ -2556,10 +2601,6 @@ msgstr ""
2556
  "Anda menggunakan PHP Cuplikan Anda perlu untuk membungkus PHP Anda dalam "
2557
  "kode pengecualian sendiri."
2558
 
2559
- #: dashboard/settings/notifications.php:18
2560
- msgid "Notifications"
2561
- msgstr "pemberitahuan"
2562
-
2563
  #: dashboard/settings/notifications.php:19
2564
  msgid "Set up who gets notifications if ads need your attention."
2565
  msgstr ""
@@ -2710,10 +2751,6 @@ msgstr ""
2710
  "Pesan dikirim sekali setiap 24 jam. Maksimal 5 alamat. Dipisahkan dengan "
2711
  "koma. Bidang ini mungkin tidak kosong!"
2712
 
2713
- #: dashboard/settings/notifications.php:72
2714
- msgid "Advertisers"
2715
- msgstr "pengiklan"
2716
-
2717
  #: dashboard/settings/notifications.php:75
2718
  msgid ""
2719
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
@@ -2775,10 +2812,6 @@ msgstr "Aplikasi"
2775
  msgid "and get your API token"
2776
  msgstr "dan mendapatkan token API Anda"
2777
 
2778
- #: dashboard/settings/roles.php:17
2779
- msgid "Roles"
2780
- msgstr "peran"
2781
-
2782
  #: dashboard/settings/roles.php:18
2783
  msgid "Who has access to what?"
2784
  msgstr "Yang memiliki akses ke apa?"
@@ -2939,6 +2972,34 @@ msgstr ""
2939
  "Jumlah ini mungkin tidak kosong, lebih rendah dari 60 atau melebihi 86.400 "
2940
  "(24 jam)."
2941
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2942
  #~ msgid "For one WordPress installation."
2943
  #~ msgstr "Untuk satu instalasi WordPress."
2944
 
@@ -3472,13 +3533,6 @@ msgstr ""
3472
  #~ "Ако създадете реклама или група, която не може да се запише, използвайте "
3473
  #~ "този бутон, за да изтриете празните полета."
3474
 
3475
- #~ msgid ""
3476
- #~ "Additionally you can clean up old statistics. This will improve the speed "
3477
- #~ "of your site."
3478
- #~ msgstr ""
3479
- #~ "Също така можете да изчистите остарелите статистики. Това ще подобри "
3480
- #~ "скоростта на сайта Ви."
3481
-
3482
  #~ msgid ""
3483
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3484
  #~ "becomes unusable in any way or by any means in whichever way I will not "
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-19 15:30+0800\n"
6
+ "PO-Revision-Date: 2017-06-19 15:30+0800\n"
7
  "Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
8
  "Language-Team: ChameleonJohn.com <jordan.silaen@chameleonjohn.com>\n"
9
  "Language: id_ID\n"
13
  "X-Poedit-KeywordsList: __;_e;_\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.0.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder tidak ditemukan atau tidak dapat diakses"
27
 
28
+ #: adrotate-functions.php:768
29
  msgid "Ad saved"
30
  msgstr "iklan tersimpan"
31
 
32
+ #: adrotate-functions.php:772
33
  msgid "Group saved"
34
  msgstr "kelompok disimpan"
35
 
36
+ #: adrotate-functions.php:776
37
  msgid "Ad(s) deleted"
38
  msgstr "Iklan (s) dihapus"
39
 
40
+ #: adrotate-functions.php:780
41
  msgid "Group deleted"
42
  msgstr "kelompok dihapus"
43
 
44
+ #: adrotate-functions.php:784
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Iklan (s) statistik ulang"
47
 
48
+ #: adrotate-functions.php:788
49
  msgid "Ad(s) renewed"
50
  msgstr "Iklan (s) baru"
51
 
52
+ #: adrotate-functions.php:792
53
  msgid "Ad(s) deactivated"
54
  msgstr "Iklan (s) dinonaktifkan"
55
 
56
+ #: adrotate-functions.php:796
57
  msgid "Ad(s) activated"
58
  msgstr "Iklan (s) diaktifkan"
59
 
60
+ #: adrotate-functions.php:800
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Kelompok termasuk itu iklan dihapus"
63
 
64
+ #: adrotate-functions.php:804
65
  msgid "Export created"
66
  msgstr "ekspor dibuat"
67
 
68
+ #: adrotate-functions.php:809
69
  msgid "Settings saved"
70
  msgstr "pengaturan disimpan"
71
 
72
+ #: adrotate-functions.php:813
73
  msgid "Database optimized"
74
  msgstr "database dioptimalkan"
75
 
76
+ #: adrotate-functions.php:817
77
  msgid "Database repaired"
78
  msgstr "database diperbaiki"
79
 
80
+ #: adrotate-functions.php:821
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr "Iklan dievaluasi dan status telah diperbaiki di mana diperlukan"
83
 
84
+ #: adrotate-functions.php:825
85
+ #, fuzzy
86
+ #| msgid "Clean-up Database"
87
+ msgid "Cleanup complete"
88
+ msgstr "Clean-up database"
89
 
90
+ #: adrotate-functions.php:830
91
  msgid "Action prohibited"
92
  msgstr "aksi dilarang"
93
 
94
+ #: adrotate-functions.php:834
95
  msgid ""
96
  "The ad was saved but has an issue which might prevent it from working "
97
  "properly. Review the colored ad."
99
  "iklan itu disimpan tapi memiliki masalah yang mungkin mencegah dari bekerja "
100
  "dengan baik. Tinjau iklan berwarna."
101
 
102
+ #: adrotate-functions.php:838
103
  msgid "No data found in selected time period"
104
  msgstr "Tidak ada data pada periode waktu yang dipilih"
105
 
106
+ #: adrotate-functions.php:842
107
  msgid "Database can only be optimized or cleaned once every hour"
108
  msgstr "Database hanya dapat dioptimalkan atau dibersihkan sekali setiap jam"
109
 
110
+ #: adrotate-functions.php:846
111
  msgid "Form can not be (partially) empty!"
112
  msgstr "Form tidak bisa (sebagian) kosong!"
113
 
114
+ #: adrotate-functions.php:850
115
  msgid "No ads found."
116
  msgstr "Tidak ada iklan yang ditemukan."
117
 
118
+ #: adrotate-functions.php:854
119
  msgid "Unexpected error"
120
  msgstr "Kesalahan tak terduga"
121
 
122
+ #: adrotate-manage-publisher.php:665
123
  msgid "AdRotate Advertiser"
124
  msgstr "AdRotate Pengiklan"
125
 
228
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
229
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
230
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
231
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:97 dashboard/info.php:98
232
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:104
233
+ #: dashboard/info.php:105 dashboard/info.php:106 dashboard/info.php:107
234
  #: dashboard/settings/geotargeting.php:35
235
  msgid "Buy now"
236
  msgstr "Beli sekarang"
299
  msgid "AdRotate Support Forum"
300
  msgstr "Forum Dukungan AdRotate"
301
 
302
+ #: adrotate-output.php:814 dashboard/info.php:49
303
  msgid "Support AdRotate"
304
  msgstr "Dukungan AdRotate"
305
 
350
  msgid "Learn more"
351
  msgstr "Belajarlah lagi"
352
 
353
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:220
354
+ #: dashboard/publisher/adverts-edit.php:241
355
  msgid "January"
356
  msgstr "Januari"
357
 
358
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:221
359
+ #: dashboard/publisher/adverts-edit.php:242
360
  msgid "February"
361
  msgstr "Februari"
362
 
363
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:222
364
+ #: dashboard/publisher/adverts-edit.php:243
365
  msgid "March"
366
  msgstr "Maret"
367
 
368
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:223
369
+ #: dashboard/publisher/adverts-edit.php:244
370
  msgid "April"
371
  msgstr "April"
372
 
373
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:224
374
+ #: dashboard/publisher/adverts-edit.php:245
375
  msgid "May"
376
  msgstr "Mungkin"
377
 
378
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:225
379
+ #: dashboard/publisher/adverts-edit.php:246
380
  msgid "June"
381
  msgstr "Juni"
382
 
383
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:226
384
+ #: dashboard/publisher/adverts-edit.php:247
385
  msgid "July"
386
  msgstr "Juli"
387
 
388
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:227
389
+ #: dashboard/publisher/adverts-edit.php:248
390
  msgid "August"
391
  msgstr "Agustus"
392
 
393
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:228
394
+ #: dashboard/publisher/adverts-edit.php:249
395
  msgid "September"
396
  msgstr "September"
397
 
398
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:229
399
+ #: dashboard/publisher/adverts-edit.php:250
400
  msgid "October"
401
  msgstr "Oktober"
402
 
403
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:230
404
+ #: dashboard/publisher/adverts-edit.php:251
405
  msgid "November"
406
  msgstr "November"
407
 
408
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:231
409
+ #: dashboard/publisher/adverts-edit.php:252
410
  msgid "December"
411
  msgstr "Desember"
412
 
468
  msgid "Fill in the ID of the type you want to display!"
469
  msgstr "Isi ID dari jenis yang ingin ditampilkan!"
470
 
471
+ #: adrotate.php:103
472
  msgid "General Info"
473
  msgstr "Informasi Umum"
474
 
475
+ #: adrotate.php:104
476
  msgid "AdRotate Pro"
477
  msgstr "AdRotate Pro"
478
 
479
+ #: adrotate.php:105 dashboard/info.php:40
480
+ #: dashboard/publisher/adverts-edit.php:458
481
  #: dashboard/publisher/groups-main.php:34
482
  msgid "Adverts"
483
  msgstr "iklan"
484
 
485
+ #: adrotate.php:106 dashboard/info.php:44
486
  msgid "Groups"
487
  msgstr "Grup"
488
 
489
+ #: adrotate.php:107
490
  msgid "Settings"
491
  msgstr "pengaturan"
492
 
493
+ #: adrotate.php:125
494
  msgid "AdRotate Info"
495
  msgstr "Info AdRotate"
496
 
497
+ #: adrotate.php:143
498
  msgid "AdRotate Professional"
499
  msgstr "AdRotate profesional"
500
 
501
+ #: adrotate.php:183
502
  msgid "Advert Management"
503
  msgstr "Manajemen iklan"
504
 
505
+ #: adrotate.php:241 adrotate.php:308
506
  msgid "Manage"
507
  msgstr "Mengelola"
508
 
509
+ #: adrotate.php:242 adrotate.php:309
510
  msgid "Add New"
511
  msgstr "Tambah baru"
512
 
513
+ #: adrotate.php:302
514
  msgid "Group Management"
515
  msgstr "Manajemen grup"
516
 
517
+ #: adrotate.php:311
518
  msgid "Report"
519
  msgstr "Melaporkan"
520
 
521
+ #: adrotate.php:356
522
  msgid "AdRotate Settings"
523
  msgstr "Pengaturan AdRotate"
524
 
525
+ #: adrotate.php:361
526
+ #, fuzzy
527
+ #| msgid "General Info"
528
+ msgid "General"
529
+ msgstr "Informasi Umum"
530
+
531
+ #: adrotate.php:362 dashboard/settings/notifications.php:18
532
+ msgid "Notifications"
533
+ msgstr "pemberitahuan"
534
+
535
+ #: adrotate.php:363 dashboard/publisher/adverts-disabled.php:69
536
+ #: dashboard/publisher/adverts-error.php:63
537
+ #: dashboard/publisher/adverts-main.php:81
538
+ #: dashboard/publisher/groups-main.php:70
539
+ msgid "Stats"
540
+ msgstr "Statistik"
541
+
542
+ #: adrotate.php:364 dashboard/publisher/adverts-edit.php:359
543
+ #: dashboard/publisher/groups-edit.php:180
544
+ #: dashboard/settings/advertisers.php:38
545
+ msgid "Geo Targeting"
546
+ msgstr "Geo Penargetan"
547
+
548
+ #: adrotate.php:365 dashboard/settings/notifications.php:72
549
+ msgid "Advertisers"
550
+ msgstr "pengiklan"
551
+
552
+ #: adrotate.php:366 dashboard/settings/roles.php:17
553
+ msgid "Roles"
554
+ msgstr "peran"
555
+
556
+ #: adrotate.php:367
557
+ msgid "Misc"
558
+ msgstr ""
559
+
560
+ #: adrotate.php:368 dashboard/settings/maintenance.php:16
561
+ msgid "Maintenance"
562
+ msgstr "Pemeliharaan"
563
+
564
  #: dashboard/adrotatepro.php:20
565
  msgid "Satisfy your advertisers"
566
  msgstr "Memuaskan pengiklan"
628
  "premium AdRotate mengambil prioritas di atas forum dan diperiksa lebih "
629
  "sering daripada forum. Mendapatkan solusi (biasanya) dalam satu hari kerja."
630
 
631
+ #: dashboard/adrotatepro.php:48
632
  msgid "AdRotate is brought to you by"
633
  msgstr "AdRotate dibawa ke anda oleh"
634
 
692
  "lagi."
693
 
694
  #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
695
+ #: dashboard/info.php:93
696
  msgid "Buy AdRotate Professional"
697
  msgstr "Beli AdRotate profesional"
698
 
699
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
700
  msgid "Single License"
701
  msgstr "Lisensi tunggal"
702
 
703
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
704
  msgid "One WordPress installation."
705
  msgstr "Satu instalasi WordPress."
706
 
707
  #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
708
+ #: dashboard/info.php:98 dashboard/info.php:105
709
  msgid "Duo License"
710
  msgstr "Duo Lisensi"
711
 
712
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:98
713
  msgid "Two WordPress installations."
714
  msgstr "Dua instalasi WordPress."
715
 
716
  #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
717
+ #: dashboard/info.php:99 dashboard/info.php:106
718
  msgid "Multi License"
719
  msgstr "multi License"
720
 
721
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:99
722
  msgid "Up to five WordPress installations."
723
  msgstr "Sampai dengan lima instalasi WordPress."
724
 
725
  #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
726
+ #: dashboard/info.php:100 dashboard/info.php:107
727
  msgid "Developer License"
728
  msgstr "Lisensi developer"
729
 
730
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:100
731
  msgid "Unlimited WordPress installations and/or networks."
732
  msgstr "instalasi WordPress terbatas dan / atau jaringan."
733
 
734
  #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
735
+ #: dashboard/info.php:101 dashboard/info.php:109
736
  msgid "Compare licenses"
737
  msgstr "bandingkan lisensi"
738
 
739
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
740
  msgid "Not sure which license is for you? Compare them..."
741
  msgstr "Tidak yakin yang lisensi adalah untuk Anda? Membandingkan mereka..."
742
 
743
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
744
  msgid "All Licenses"
745
  msgstr "semua Lisensi"
746
 
747
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
748
  msgid "Lifetime License"
749
  msgstr "Lifetime License"
750
 
751
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
752
  msgid "Single installation."
753
  msgstr "instalasi tunggal."
754
 
755
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:105
756
  msgid "Up to 2 installations."
757
  msgstr "Sampai dengan 2 instalasi."
758
 
759
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:106
760
  msgid "Up to 10 installations."
761
  msgstr "Sampai dengan 10 instalasi."
762
 
763
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:107
764
  msgid "Up to 25 installations or multisite networks."
765
  msgstr "Sampai dengan 25 instalasi atau jaringan multisite."
766
 
767
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:108
768
  msgid ""
769
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
770
  msgstr ""
771
  "Langganan mendapatkan akses 1 tahun untuk update, dukungan email & AdRotate "
772
  "Geo."
773
 
774
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
775
  msgid "Not sure which license is for you?"
776
  msgstr "Tidak yakin yang lisensi adalah untuk Anda?"
777
 
778
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
779
  msgid "Compare Licenses"
780
  msgstr "bandingkan Lisensi"
781
 
782
+ #: dashboard/info.php:27
783
  msgid "Currently"
784
  msgstr "sekarang"
785
 
786
+ #: dashboard/info.php:33
787
  msgid "Your setup"
788
  msgstr "setup Anda"
789
 
790
+ #: dashboard/info.php:34
791
  msgid "Adverts that need you"
792
  msgstr "Iklan yang perlu Anda"
793
 
794
+ #: dashboard/info.php:41
795
  msgid "(Almost) Expired"
796
  msgstr "(Hampir) Expired"
797
 
798
+ #: dashboard/info.php:45
799
  msgid "Have errors"
800
  msgstr "memiliki kesalahan"
801
 
802
+ #: dashboard/info.php:50
803
  msgid ""
804
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
805
  "for updates about me and my plugins. Thank you!"
807
  "Pertimbangkan menulis review jika Anda suka AdRotate. Juga ikuti halaman "
808
  "Facebook saya untuk update tentang saya dan plugin saya. Terima kasih!"
809
 
810
+ #: dashboard/info.php:74
811
+ msgid "Arnan de Gans News & Updates"
812
  msgstr ""
813
 
814
+ #: dashboard/info.php:114
815
+ msgid "Join the Media.net advertising network"
 
 
 
 
 
 
 
816
  msgstr ""
 
 
 
817
 
818
  #: dashboard/publisher/adverts-disabled.php:15
819
  msgid "Disabled Adverts"
827
  msgstr "Aksi besar"
828
 
829
  #: dashboard/publisher/adverts-disabled.php:21
830
+ #: dashboard/publisher/adverts-edit.php:176
831
  msgid "Activate"
832
  msgstr "Mengaktifkan"
833
 
858
  msgstr "ID"
859
 
860
  #: dashboard/publisher/adverts-disabled.php:36
861
+ #: dashboard/publisher/adverts-error.php:41
862
  #: dashboard/publisher/adverts-main.php:40
863
+ msgid "Start / End"
864
+ msgstr "Mulai / Akhir"
865
+
866
+ #: dashboard/publisher/adverts-disabled.php:37
867
+ #: dashboard/publisher/adverts-error.php:40
868
+ #: dashboard/publisher/adverts-main.php:41
869
  #: dashboard/publisher/groups-edit.php:51
870
  #: dashboard/publisher/groups-main.php:33
871
  msgid "Name"
872
  msgstr "Nama"
873
 
 
 
 
 
 
 
874
  #: dashboard/publisher/adverts-disabled.php:39
875
  #: dashboard/publisher/adverts-main.php:43
876
+ #: dashboard/publisher/groups-edit.php:333
877
  #: dashboard/publisher/groups-main.php:36
878
  msgid "Shown"
879
  msgstr "Tampil"
882
  #: dashboard/publisher/adverts-main.php:45
883
  #: dashboard/publisher/adverts-report.php:36
884
  #: dashboard/publisher/adverts-report.php:57
885
+ #: dashboard/publisher/groups-edit.php:334
886
  #: dashboard/publisher/groups-main.php:38
887
  #: dashboard/publisher/groups-report.php:37
888
  #: dashboard/publisher/groups-report.php:58
898
  msgid "CTR"
899
  msgstr "CTR"
900
 
901
+ #: dashboard/publisher/adverts-disabled.php:69
902
  #: dashboard/publisher/adverts-error.php:63
903
+ #: dashboard/publisher/adverts-main.php:81
904
  #: dashboard/publisher/groups-main.php:70
905
  msgid "Edit"
906
  msgstr "mengedit"
907
 
908
+ #: dashboard/publisher/adverts-disabled.php:69
 
 
 
 
 
 
 
909
  #: dashboard/publisher/adverts-error.php:63
910
+ #: dashboard/publisher/adverts-main.php:81
911
  msgid "Groups:"
912
  msgstr "kelompok:"
913
 
914
+ #: dashboard/publisher/adverts-edit.php:48
915
  msgid "The AdCode cannot be empty!"
916
  msgstr "AdCode tersebut tidak boleh kosong!"
917
 
918
+ #: dashboard/publisher/adverts-edit.php:51
919
  msgid ""
920
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
921
  "use!"
923
  "Anda tidak menggunakan %a sset% (atau% gambar%) di AdCode Anda tetapi tidak "
924
  "pilih file untuk menggunakan!"
925
 
926
+ #: dashboard/publisher/adverts-edit.php:54
927
  msgid ""
928
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
929
  "use!"
931
  "Anda tidak menggunakan %a sset% (atau% gambar%) di AdCode Anda, tetapi tidak "
932
  "memilih file untuk menggunakan!"
933
 
934
+ #: dashboard/publisher/adverts-edit.php:57
935
  msgid ""
936
  "There is a problem saving the image. Please reset your image and re-save the "
937
  "ad!"
938
  msgstr ""
939
  "Ada menyimpan gambar masalah. Harap ulang gambar Anda dan re-save iklan!"
940
 
941
+ #: dashboard/publisher/adverts-edit.php:60
942
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
943
  msgstr ""
944
  "Pelacakan diaktifkan tapi tidak ada hubungan / tag yang valid ditemukan di "
945
  "adcode yang!"
946
 
947
+ #: dashboard/publisher/adverts-edit.php:65
948
  msgid ""
949
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
950
  "the ad!"
952
  "AdRotate tidak dapat menemukan kesalahan tetapi iklan ditandai keliru, coba "
953
  "hemat ulang iklan!"
954
 
955
+ #: dashboard/publisher/adverts-edit.php:68
956
  msgid "This ad is expired and currently not shown on your website!"
957
  msgstr "Iklan ini berakhir dan saat ini tidak ditampilkan pada situs web Anda!"
958
 
959
+ #: dashboard/publisher/adverts-edit.php:71
960
  msgid "The ad will expire in less than 2 days!"
961
  msgstr "Iklan akan berakhir dalam waktu kurang dari 2 hari!"
962
 
963
+ #: dashboard/publisher/adverts-edit.php:74
964
  msgid "This ad will expire in less than 7 days!"
965
  msgstr "Iklan ini akan berakhir dalam waktu kurang dari 7 hari!"
966
 
967
+ #: dashboard/publisher/adverts-edit.php:77
968
  msgid "This ad has been disabled and does not rotate on your site!"
969
  msgstr "Iklan ini telah dinonaktifkan dan tidak berputar di situs Anda!"
970
 
971
+ #: dashboard/publisher/adverts-edit.php:81
972
  msgid ""
973
  "This advert uses the obsolete Responsive feature. Please use the more "
974
  "reliable Mobile feature! Saving the advert will disable the responsive "
975
  "option silently."
976
  msgstr ""
977
 
978
+ #: dashboard/publisher/adverts-edit.php:106
979
  msgid "New Advert"
980
  msgstr "baru Advert"
981
 
982
+ #: dashboard/publisher/adverts-edit.php:108
983
  msgid "Edit Advert"
984
  msgstr "mengedit Advert"
985
 
986
+ #: dashboard/publisher/adverts-edit.php:114
987
  msgid "Title"
988
  msgstr "Judul"
989
 
990
+ #: dashboard/publisher/adverts-edit.php:120
991
  msgid "AdCode"
992
  msgstr "AdCode"
993
 
994
+ #: dashboard/publisher/adverts-edit.php:125
995
  msgid "Basic Examples:"
996
  msgstr "Contoh dasar:"
997
 
998
+ #: dashboard/publisher/adverts-edit.php:129
999
+ msgid "Get better adverts from Media.net"
1000
+ msgstr ""
1001
 
1002
+ #: dashboard/publisher/adverts-edit.php:134
1003
  msgid "Useful tags"
1004
  msgstr "tag berguna"
1005
 
1006
+ #: dashboard/publisher/adverts-edit.php:136
1007
  msgid "Insert the advert ID Number."
1008
  msgstr "Masukkan iklan ID Number."
1009
 
1010
+ #: dashboard/publisher/adverts-edit.php:136
1011
  msgid "Required when selecting a asset below."
1012
  msgstr "Diperlukan ketika memilih aset di bawah."
1013
 
1014
+ #: dashboard/publisher/adverts-edit.php:136
1015
  msgid "Insert the advert name."
1016
  msgstr "Masukkan nama iklan."
1017
 
1018
+ #: dashboard/publisher/adverts-edit.php:136
1019
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1020
  msgstr "Masukkan benih acak. Berguna untuk DFP / DoubleClick jenis iklan."
1021
 
1022
+ #: dashboard/publisher/adverts-edit.php:136
1023
  msgid "Add inside the <a> tag to open advert in a new window."
1024
  msgstr "Menambahkan dalam tag <a> untuk membuka iklan di jendela baru."
1025
 
1026
+ #: dashboard/publisher/adverts-edit.php:136
1027
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1028
  msgstr ""
1029
  "Menambahkan dalam tag <a> untuk memberitahu crawler untuk mengabaikan link "
1030
  "ini"
1031
 
1032
+ #: dashboard/publisher/adverts-edit.php:136
1033
  msgid ""
1034
  "Place the cursor in your AdCode where you want to add any of these tags and "
1035
  "click to add it."
1037
  "Tempatkan kursor di AdCode Anda di mana Anda ingin menambahkan tag ini dan "
1038
  "klik untuk menambahkannya."
1039
 
1040
+ #: dashboard/publisher/adverts-edit.php:141
1041
  msgid "Preview"
1042
  msgstr "Preview"
1043
 
1044
+ #: dashboard/publisher/adverts-edit.php:144
1045
  msgid ""
1046
  "Note: While this preview is an accurate one, it might look different then it "
1047
  "does on the website."
1049
  "Catatan: Sementara pratayang ini adalah salah satu yang akurat, mungkin "
1050
  "terlihat berbeda maka tidak di website."
1051
 
1052
+ #: dashboard/publisher/adverts-edit.php:145
1053
  msgid ""
1054
  "This is because of CSS differences. Your themes CSS file is not active here!"
1055
  msgstr ""
1056
  "Hal ini karena perbedaan CSS. Anda berkas tema CSS tidak aktif di sini!"
1057
 
1058
+ #: dashboard/publisher/adverts-edit.php:150
1059
  msgid "Banner asset"
1060
  msgstr "aset Banner"
1061
 
1062
+ #: dashboard/publisher/adverts-edit.php:153
1063
  msgid "WordPress media:"
1064
  msgstr "Media WordPress:"
1065
 
1066
+ #: dashboard/publisher/adverts-edit.php:153
1067
  msgid "Select Banner"
1068
  msgstr "Pilih Banner"
1069
 
1070
+ #: dashboard/publisher/adverts-edit.php:155
1071
  msgid "- OR -"
1072
  msgstr "- ATAU -"
1073
 
1074
+ #: dashboard/publisher/adverts-edit.php:157
1075
  msgid "Banner folder:"
1076
  msgstr "folder Banner:"
1077
 
1078
+ #: dashboard/publisher/adverts-edit.php:158
1079
  msgid "No image selected"
1080
  msgstr "Tidak ada gambar yang dipilih"
1081
 
1082
+ #: dashboard/publisher/adverts-edit.php:162
1083
  msgid "Use %asset% in the adcode instead of the file path."
1084
  msgstr "Gunakan %a sset% di adcode bukan path file."
1085
 
1086
+ #: dashboard/publisher/adverts-edit.php:162
1087
  msgid ""
1088
  "Use either the text field or the dropdown. If the textfield has content that "
1089
  "field has priority."
1091
  "Gunakan baik bidang teks atau dropdown. Jika textfield memiliki konten "
1092
  "bidang yang memiliki prioritas."
1093
 
1094
+ #: dashboard/publisher/adverts-edit.php:167
1095
  #: dashboard/settings/statistics.php:17
1096
  msgid "Statistics"
1097
  msgstr "statistika"
1098
 
1099
+ #: dashboard/publisher/adverts-edit.php:169
1100
  msgid "Enable click and impression tracking for this advert."
1101
  msgstr "Aktifkan klik dan pelacakan kesan untuk iklan ini."
1102
 
1103
+ #: dashboard/publisher/adverts-edit.php:170
1104
  msgid ""
1105
  "Note: Clicktracking does not work for Javascript adverts such as those "
1106
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1110
  "yang disediakan oleh Google AdSense / DFP / DoubleClick. Iklan HTML5 / Flash "
1111
  "tidak selalu didukung."
1112
 
1113
+ #: dashboard/publisher/adverts-edit.php:180
1114
  msgid "Yes, this ad will be used"
1115
  msgstr "Ya, iklan ini akan digunakan"
1116
 
1117
+ #: dashboard/publisher/adverts-edit.php:181
1118
  msgid "No, do not show this ad anywhere"
1119
  msgstr "Tidak, tidak menampilkan iklan ini di mana saja"
1120
 
1121
+ #: dashboard/publisher/adverts-edit.php:188
1122
  #: dashboard/publisher/adverts-main.php:105
1123
  #: dashboard/publisher/groups-edit.php:71
1124
  #: dashboard/publisher/groups-main.php:89
1125
  msgid "Get more features with AdRotate Pro."
1126
  msgstr "Dapatkan lebih banyak fitur dengan AdRotate Pro."
1127
 
1128
+ #: dashboard/publisher/adverts-edit.php:188
1129
  #: dashboard/publisher/adverts-main.php:105
1130
  #: dashboard/publisher/groups-edit.php:71
1131
  #: dashboard/publisher/groups-main.php:89
1132
  msgid "More information"
1133
  msgstr "informasi lebih lanjut"
1134
 
1135
+ #: dashboard/publisher/adverts-edit.php:191
1136
+ #: dashboard/publisher/adverts-edit.php:291
1137
+ #: dashboard/publisher/adverts-edit.php:447
1138
+ #: dashboard/publisher/adverts-edit.php:488
1139
  msgid "Save Advert"
1140
  msgstr "Simpan Advert"
1141
 
1142
+ #: dashboard/publisher/adverts-edit.php:192
1143
+ #: dashboard/publisher/adverts-edit.php:292
1144
+ #: dashboard/publisher/adverts-edit.php:448
1145
+ #: dashboard/publisher/adverts-edit.php:489
1146
  #: dashboard/publisher/groups-edit.php:150
1147
  #: dashboard/publisher/groups-edit.php:299
1148
  #: dashboard/publisher/groups-edit.php:391
1149
  msgid "Cancel"
1150
  msgstr "Membatalkan"
1151
 
1152
+ #: dashboard/publisher/adverts-edit.php:195
1153
+ #: dashboard/publisher/adverts-edit.php:430
1154
  #: dashboard/publisher/groups-edit.php:132
1155
  #: dashboard/publisher/groups-edit.php:281
1156
  msgid "Usage"
1157
  msgstr "Pemakaian"
1158
 
1159
+ #: dashboard/publisher/adverts-edit.php:199
1160
+ #: dashboard/publisher/adverts-edit.php:434
1161
  #: dashboard/publisher/groups-edit.php:136
1162
  #: dashboard/publisher/groups-edit.php:205
1163
  #: dashboard/publisher/groups-edit.php:245
1165
  msgid "Widget"
1166
  msgstr "widget"
1167
 
1168
+ #: dashboard/publisher/adverts-edit.php:200
1169
+ #: dashboard/publisher/adverts-edit.php:435
1170
  msgid ""
1171
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1172
  "and select the advert or the group the advert is in."
1174
  "Tarik widget AdRotate ke sidebar di mana Anda ingin menempatkan iklan dan "
1175
  "pilih iklan atau kelompok iklan ini di."
1176
 
1177
+ #: dashboard/publisher/adverts-edit.php:203
1178
+ #: dashboard/publisher/adverts-edit.php:438
1179
  #: dashboard/publisher/groups-edit.php:140
1180
  #: dashboard/publisher/groups-edit.php:289
1181
  msgid "In a post or page"
1182
  msgstr "Dalam posting atau halaman"
1183
 
1184
+ #: dashboard/publisher/adverts-edit.php:205
1185
+ #: dashboard/publisher/adverts-edit.php:440
1186
  #: dashboard/publisher/groups-edit.php:142
1187
  #: dashboard/publisher/groups-edit.php:291
1188
  msgid "Directly in a theme"
1189
  msgstr "Langsung di tema"
1190
 
1191
+ #: dashboard/publisher/adverts-edit.php:211
1192
  msgid "Schedule your advert"
1193
  msgstr "Jadwalkan iklan Anda"
1194
 
1195
+ #: dashboard/publisher/adverts-edit.php:215
1196
  msgid "Start date (day/month/year)"
1197
  msgstr "Tanggal mulai (hari / bulan / tahun)"
1198
 
1199
+ #: dashboard/publisher/adverts-edit.php:236
1200
  msgid "End date (day/month/year)"
1201
  msgstr "tanggal akhir (hari / bulan / tahun)"
1202
 
1203
+ #: dashboard/publisher/adverts-edit.php:259
1204
  msgid "Start time (hh:mm)"
1205
  msgstr "Waktu mulai (hh: mm)"
1206
 
1207
+ #: dashboard/publisher/adverts-edit.php:266
1208
  msgid "End time (hh:mm)"
1209
  msgstr "waktu akhir (hh: mm)"
1210
 
1211
+ #: dashboard/publisher/adverts-edit.php:276
1212
  msgid "Maximum Clicks"
1213
  msgstr "Klik maksimum"
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:277
1216
+ #: dashboard/publisher/adverts-edit.php:279
1217
  msgid "Leave empty or 0 to skip this."
1218
  msgstr "Biarkan kosong atau 0 untuk melewati ini."
1219
 
1220
+ #: dashboard/publisher/adverts-edit.php:278
1221
  msgid "Maximum Impressions"
1222
  msgstr "Tayangan maksimum"
1223
 
1224
+ #: dashboard/publisher/adverts-edit.php:283
1225
  msgid "Important"
1226
  msgstr "Penting"
1227
 
1228
+ #: dashboard/publisher/adverts-edit.php:284
1229
  msgid ""
1230
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1231
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1235
  "sistem / PM ingatlah ini: Jika awal atau akhir waktu setelah makan siang, "
1236
  "tambahkan 12 jam. 14:00 adalah jam 14.00. 06:00 adalah 6:00 jam."
1237
 
1238
+ #: dashboard/publisher/adverts-edit.php:288
1239
  msgid ""
1240
  "Create multiple and more advanced schedules for each advert with AdRotate "
1241
  "Pro."
1242
  msgstr ""
1243
  "Buat beberapa dan lebih maju jadwal untuk setiap iklan dengan AdRotate Pro."
1244
 
1245
+ #: dashboard/publisher/adverts-edit.php:288
1246
+ #: dashboard/publisher/adverts-edit.php:357
1247
+ #: dashboard/publisher/adverts-edit.php:428
1248
  #: dashboard/publisher/groups-edit.php:191
1249
  msgid "Upgrade today"
1250
  msgstr "meng-upgrade hari ini"
1251
 
1252
+ #: dashboard/publisher/adverts-edit.php:295
1253
  #: dashboard/publisher/groups-edit.php:153
1254
  msgid "Advanced"
1255
  msgstr "Maju"
1256
 
1257
+ #: dashboard/publisher/adverts-edit.php:296
1258
+ #: dashboard/publisher/adverts-edit.php:360
1259
  msgid "Available in AdRotate Pro!"
1260
  msgstr "Tersedia dalam AdRotate Pro!"
1261
 
1262
+ #: dashboard/publisher/adverts-edit.php:301
1263
+ #: dashboard/publisher/groups-edit.php:331
1264
  msgid "Weight"
1265
  msgstr "Berat"
1266
 
1267
+ #: dashboard/publisher/adverts-edit.php:304
1268
  msgid "Few impressions"
1269
  msgstr "beberapa tayangan"
1270
 
1271
+ #: dashboard/publisher/adverts-edit.php:309
1272
  msgid "Less than average"
1273
  msgstr "Kurang dari rata-rata"
1274
 
1275
+ #: dashboard/publisher/adverts-edit.php:314
1276
  msgid "Normal impressions"
1277
  msgstr "tayangan yang normal"
1278
 
1279
+ #: dashboard/publisher/adverts-edit.php:319
1280
  msgid "More than average"
1281
  msgstr "Lebih dari rata-rata"
1282
 
1283
+ #: dashboard/publisher/adverts-edit.php:324
1284
  msgid "Many impressions"
1285
  msgstr "banyak tayangan"
1286
 
1287
+ #: dashboard/publisher/adverts-edit.php:329
1288
  msgid "Mobile"
1289
  msgstr "mobil"
1290
 
1291
+ #: dashboard/publisher/adverts-edit.php:331
1292
  msgid "Computers"
1293
  msgstr "komputer"
1294
 
1295
+ #: dashboard/publisher/adverts-edit.php:334
1296
  msgid "Smartphones"
1297
  msgstr "smartphone"
1298
 
1299
+ #: dashboard/publisher/adverts-edit.php:337
1300
  msgid "Tablets"
1301
  msgstr "tablet"
1302
 
1303
+ #: dashboard/publisher/adverts-edit.php:340
1304
  msgid ""
1305
  "Also enable mobile support in the group this advert goes in or these are "
1306
  "ignored."
1308
  "Juga memungkinkan dukungan mobile dalam kelompok iklan ini berjalan di atau "
1309
  "ini diabaikan."
1310
 
1311
+ #: dashboard/publisher/adverts-edit.php:340
1312
  msgid "Operating system detection only detects iOS/Android/Other or neither."
1313
  msgstr ""
1314
 
1315
+ #: dashboard/publisher/adverts-edit.php:344
1316
  msgid "Mobile OS"
1317
  msgstr "Mobile OS"
1318
 
1319
+ #: dashboard/publisher/adverts-edit.php:346
1320
  msgid "iOS"
1321
  msgstr "iOS"
1322
 
1323
+ #: dashboard/publisher/adverts-edit.php:349
1324
  msgid "Android"
1325
  msgstr "Android"
1326
 
1327
+ #: dashboard/publisher/adverts-edit.php:352
1328
  msgid "Others"
1329
  msgstr "Lainnya"
1330
 
1331
+ #: dashboard/publisher/adverts-edit.php:357
1332
  msgid ""
1333
  "With AdRotate Pro you can easily select which devices and mobile operating "
1334
  "systems the advert should show on!"
1336
  "Dengan AdRotate Pro Anda dapat dengan mudah memilih perangkat dan sistem "
1337
  "operasi mobile iklan harus ditampilkan di!"
1338
 
1339
+ #: dashboard/publisher/adverts-edit.php:360
 
 
 
 
 
 
1340
  msgid ""
1341
  "Assign the advert to a group and enable that group to use Geo Targeting."
1342
  msgstr ""
1343
  "Tetapkan iklan untuk kelompok dan memungkinkan kelompok yang menggunakan Geo "
1344
  "Penargetan."
1345
 
1346
+ #: dashboard/publisher/adverts-edit.php:418
1347
  msgid "A comma separated list of items:"
1348
  msgstr "Sebuah daftar dipisahkan koma item:"
1349
 
1350
+ #: dashboard/publisher/adverts-edit.php:418
1351
  msgid ""
1352
  "AdRotate does not check the validity of names so make sure you spell them "
1353
  "correctly!"
1355
  "AdRotate tidak memeriksa validitas nama jadi pastikan Anda mengejanya dengan "
1356
  "benar!"
1357
 
1358
+ #: dashboard/publisher/adverts-edit.php:428
1359
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1360
  msgstr "Target audiens Anda dengan Geo Penargetan di AdRotate Pro"
1361
 
1362
+ #: dashboard/publisher/adverts-edit.php:452
1363
  msgid "Select Groups"
1364
  msgstr "Pilih Grup"
1365
 
1366
+ #: dashboard/publisher/adverts-edit.php:457
1367
  msgid "ID - Name"
1368
  msgstr "ID - Nama"
1369
 
1370
+ #: dashboard/publisher/adverts-edit.php:467
1371
  #: dashboard/publisher/groups-main.php:60
1372
  #: dashboard/settings/geotargeting.php:49
1373
  msgid "Default"
1374
  msgstr "kegagalan"
1375
 
1376
+ #: dashboard/publisher/adverts-edit.php:468
1377
  #: dashboard/publisher/groups-main.php:61
1378
  msgid "Dynamic"
1379
  msgstr "Dinamis"
1380
 
1381
+ #: dashboard/publisher/adverts-edit.php:468
1382
  #: dashboard/publisher/groups-main.php:61
1383
  msgid "second rotation"
1384
  msgstr "rotasi kedua"
1385
 
1386
+ #: dashboard/publisher/adverts-edit.php:469
1387
  #: dashboard/publisher/groups-main.php:62
1388
  msgid "Block"
1389
  msgstr "Blok"
1390
 
1391
+ #: dashboard/publisher/adverts-edit.php:469
1392
  #: dashboard/publisher/groups-main.php:62
1393
  msgid "grid"
1394
  msgstr "kisi"
1395
 
1396
+ #: dashboard/publisher/adverts-edit.php:470
1397
  #: dashboard/publisher/groups-edit.php:199
1398
  #: dashboard/publisher/groups-main.php:63
1399
  msgid "Post Injection"
1400
  msgstr "Pasang Injeksi"
1401
 
1402
+ #: dashboard/publisher/adverts-edit.php:471
1403
  msgid "Geolocation"
1404
  msgstr "geolocation"
1405
 
1406
+ #: dashboard/publisher/adverts-edit.php:477
1407
  #: dashboard/publisher/groups-edit.php:57
1408
  #: dashboard/publisher/groups-main.php:70
1409
  msgid "Mode"
1452
  msgstr ""
1453
 
1454
  #: dashboard/publisher/adverts-error.php:73
1455
+ #: dashboard/settings/maintenance.php:64
1456
  msgid "Expired"
1457
  msgstr "berakhir"
1458
 
1461
  msgstr "Iklan aktif"
1462
 
1463
  #: dashboard/publisher/adverts-main.php:24
1464
+ #, fuzzy
1465
+ #| msgid "Export to XML"
1466
+ msgid "Export to CSV"
1467
  msgstr "Ekspor ke XML"
1468
 
1469
  #: dashboard/publisher/adverts-main.php:44
1814
  msgid "Choose adverts"
1815
  msgstr "Pilih iklan"
1816
 
1817
+ #: dashboard/publisher/groups-edit.php:330
1818
  msgid "Visible until"
1819
  msgstr "terlihat sampai"
1820
 
1855
  msgstr "Tindakan ini tidak bisa dibatalkan!"
1856
 
1857
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1858
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
 
1859
  msgid "OK to continue, CANCEL to stop."
1860
  msgstr "OK untuk melanjutkan, BATAL untuk berhenti."
1861
 
1929
  "mereka melalui tab Peran."
1930
 
1931
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1932
+ #: dashboard/settings/maintenance.php:116 dashboard/settings/misc.php:43
1933
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1934
  #: dashboard/settings/statistics.php:73
1935
  msgid "Update Options"
2045
  msgstr "Banner Folder"
2046
 
2047
  #: dashboard/settings/general.php:50
2048
+ #, fuzzy
2049
+ #| msgid "Set a location where your banner images will be stored."
2050
+ msgid "Set a folder where your banner images will be stored."
2051
  msgstr "Menetapkan lokasi di mana gambar banner Anda akan disimpan."
2052
 
2053
  #: dashboard/settings/general.php:53
2054
+ msgid "Folder name"
2055
+ msgstr ""
2056
 
2057
  #: dashboard/settings/general.php:55
2058
+ #, fuzzy
2059
+ #| msgid "(Default: wp-content/banners/)."
2060
+ msgid "(Default: banners)."
2061
  msgstr "(Default: wp-content / spanduk /)."
2062
 
2063
  #: dashboard/settings/general.php:56
2217
  msgid "Password/License Key"
2218
  msgstr "Password / License Key"
2219
 
 
 
 
 
2220
  #: dashboard/settings/maintenance.php:17
2221
  msgid ""
2222
  "Use these functions when you notice your database is slow, unresponsive and "
2258
  "yang telah dilakukan. Hal ini dapat bervariasi dari tidak ada ratusan KiB "
2259
  "data."
2260
 
2261
+ #: dashboard/settings/maintenance.php:28
2262
+ #, fuzzy
2263
+ #| msgid "Clean-up Database"
2264
+ msgid "Clean-up Database and Files"
2265
+ msgstr "Clean-up database"
2266
+
2267
+ #: dashboard/settings/maintenance.php:30
2268
  msgid "Clean-up Database"
2269
  msgstr "Clean-up database"
2270
 
2271
  #: dashboard/settings/maintenance.php:30
2272
+ #, fuzzy
2273
+ #| msgid ""
2274
+ #| "You are about to clean up your database. This may delete expired "
2275
+ #| "schedules and older statistics."
2276
  msgid ""
2277
+ "You are about to clean up your database. This may delete expired schedules, "
2278
+ "older statistics and try to delete export files"
2279
  msgstr ""
2280
  "Anda akan membersihkan database Anda. Hal ini dapat menghapus jadwal "
2281
  "kadaluarsa dan statistik yang lebih tua."
2284
  msgid "Are you sure you want to continue?"
2285
  msgstr "Apakah anda yakin ingin melanjutkan?"
2286
 
2287
+ #: dashboard/settings/maintenance.php:30
2288
+ msgid "THIS ACTION CAN NOT BE UNDONE!"
 
2289
  msgstr ""
 
 
2290
 
2291
  #: dashboard/settings/maintenance.php:31
2292
+ #, fuzzy
2293
+ #| msgid "Delete stats older than 356 days (Optional)."
2294
+ msgid "Delete stats older than 356 days."
2295
  msgstr "Hapus statistik lebih tua dari 356 hari (Opsional)."
2296
 
2297
  #: dashboard/settings/maintenance.php:32
2298
+ msgid "Delete leftover export files."
2299
+ msgstr ""
2300
+
2301
+ #: dashboard/settings/maintenance.php:33
2302
  msgid ""
2303
  "For when you create an advert, group or schedule and it does not save or "
2304
  "keep changes you make."
2306
  "Karena ketika Anda membuat sebuah iklan, kelompok atau jadwal dan tidak "
2307
  "menyimpan atau menyimpan perubahan yang Anda lakukan."
2308
 
2309
+ #: dashboard/settings/maintenance.php:33
2310
+ #, fuzzy
2311
+ #| msgid ""
2312
+ #| "Additionally you can clean up old statistics. This will improve the speed "
2313
+ #| "of your site."
2314
  msgid ""
2315
+ "Additionally you can delete statistics and/or unused export files. This will "
2316
+ "improve the speed of your site."
2317
  msgstr ""
2318
+ "Също така можете да изчистите остарелите статистики. Това ще подобри "
2319
+ "скоростта на сайта Ви."
2320
 
2321
+ #: dashboard/settings/maintenance.php:37
2322
  msgid "Re-evaluate Ads"
2323
  msgstr "Re-evaluasi Iklan"
2324
 
2325
+ #: dashboard/settings/maintenance.php:39
2326
  msgid "Re-evaluate all ads"
2327
  msgstr "Kembali mengevaluasi semua iklan"
2328
 
2329
+ #: dashboard/settings/maintenance.php:39
2330
  msgid "You are about to check all ads for errors."
2331
  msgstr "Anda akan memeriksa semua iklan untuk kesalahan."
2332
 
2333
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
2334
+ msgid "This might take a while and may slow down your site during this action!"
2335
+ msgstr ""
2336
+ "Ini mungkin memakan waktu cukup lama dan dapat memperlambat situs Anda "
2337
+ "selama aksi ini!"
2338
+
2339
+ #: dashboard/settings/maintenance.php:40
2340
  msgid ""
2341
  "This will apply all evaluation rules to all ads to see if any error slipped "
2342
  "in. Normally you should not need this feature."
2344
  "Ini akan menerapkan semua aturan evaluasi untuk semua iklan untuk melihat "
2345
  "apakah kesalahan tergelincir di. Biasanya Anda tidak perlu fitur ini."
2346
 
2347
+ #: dashboard/settings/maintenance.php:44
2348
  msgid ""
2349
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2350
  "database. They only apply to your ads/groups and stats. Not to other "
2367
  "Anda mungkin berada di luar perbaikan sudah. Mengklaim itu bekerja sebelum "
2368
  "mengklik tombol-tombol ini tidak titik yang valid dalam hal apapun."
2369
 
2370
+ #: dashboard/settings/maintenance.php:46
2371
  msgid "Troubleshooting"
2372
  msgstr "Penyelesaian masalah"
2373
 
2374
+ #: dashboard/settings/maintenance.php:47
2375
  msgid ""
2376
  "The below options are not meant for normal use and are only there for "
2377
  "developers to review saved settings or how ads are selected. These can be "
2383
  "dipilih. Ini dapat digunakan sebagai ukuran pemecahan masalah atas "
2384
  "permintaan tapi untuk penggunaan normal mereka HARUS dibiarkan !!"
2385
 
2386
+ #: dashboard/settings/maintenance.php:50
2387
  msgid "Developer Debug"
2388
  msgstr "Debug pengembang"
2389
 
2390
+ #: dashboard/settings/maintenance.php:52
2391
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2392
  msgstr ""
2393
  "Memecahkan masalah iklan dan bagaimana mereka dipilih. Terlihat pada front-"
2394
  "end."
2395
 
2396
+ #: dashboard/settings/maintenance.php:53
2397
  msgid "View advert specs and (some) stats in the dashboard."
2398
  msgstr "Lihat spesifikasi iklan dan (beberapa) statistik di dashboard."
2399
 
2400
+ #: dashboard/settings/maintenance.php:54
2401
  msgid "Disable timers for clicks and impressions."
2402
  msgstr ""
2403
 
2404
+ #: dashboard/settings/maintenance.php:55
2405
  msgid "Temporarily disable encryption on the redirect url."
2406
  msgstr "Sementara menonaktifkan enkripsi pada url redirect."
2407
 
2408
+ #: dashboard/settings/maintenance.php:60
2409
  msgid "Status and Versions"
2410
  msgstr "Status dan Versi"
2411
 
2412
+ #: dashboard/settings/maintenance.php:63
2413
  msgid "Current status of adverts"
2414
  msgstr "status iklan"
2415
 
2416
+ #: dashboard/settings/maintenance.php:64
2417
  msgid "Normal"
2418
  msgstr "Normal"
2419
 
2420
+ #: dashboard/settings/maintenance.php:64
2421
  msgid "Error"
2422
  msgstr "Kesalahan"
2423
 
2424
+ #: dashboard/settings/maintenance.php:64
2425
  msgid "Expires Soon"
2426
  msgstr "kedaluwarsa Segera"
2427
 
2428
+ #: dashboard/settings/maintenance.php:64
2429
  msgid "Unknown"
2430
  msgstr "tidak diketahui"
2431
 
2432
+ #: dashboard/settings/maintenance.php:67
2433
  msgid "Banners/assets Folder"
2434
  msgstr "Spanduk / aset Folder"
2435
 
2436
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2437
  msgid "Exists and appears writable"
2438
  msgstr "Ada dan muncul ditulis"
2439
 
2440
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2441
  msgid "Not writable or does not exist"
2442
  msgstr "Tidak dapat ditulis atau tidak ada"
2443
 
2444
+ #: dashboard/settings/maintenance.php:76
2445
  msgid "Reports Folder"
2446
  msgstr "laporan Folder"
2447
 
2448
+ #: dashboard/settings/maintenance.php:85
2449
  msgid "Advert evaluation"
2450
  msgstr "evaluasi iklan"
2451
 
2452
+ #: dashboard/settings/maintenance.php:86
2453
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2454
  msgstr "Tidak dijadwalkan! Re-aktifkan plugin dari halaman plugin."
2455
 
2456
+ #: dashboard/settings/maintenance.php:87
2457
  msgid "Clean Trackerdata"
2458
  msgstr ""
2459
 
2460
+ #: dashboard/settings/maintenance.php:88
2461
  msgid "Not scheduled!"
2462
  msgstr "Не е планирано!"
2463
 
2464
+ #: dashboard/settings/maintenance.php:91
2465
  msgid "Background tasks"
2466
  msgstr ""
2467
 
2468
+ #: dashboard/settings/maintenance.php:93
2469
  msgid "Reset background tasks"
2470
  msgstr ""
2471
 
2472
+ #: dashboard/settings/maintenance.php:98
2473
  msgid "Internal Versions"
2474
  msgstr "Versi internal"
2475
 
2476
+ #: dashboard/settings/maintenance.php:99
2477
  msgid ""
2478
  "Unless you experience database issues or a warning shows below, these "
2479
  "numbers are not really relevant for troubleshooting. Support may ask for "
2483
  "angka-angka ini tidak benar-benar relevan untuk pemecahan masalah. Dukungan "
2484
  "dapat meminta mereka untuk memverifikasi status database Anda."
2485
 
2486
+ #: dashboard/settings/maintenance.php:102
2487
  msgid "AdRotate version"
2488
  msgstr "versi AdRotate"
2489
 
2490
+ #: dashboard/settings/maintenance.php:103
2491
+ #: dashboard/settings/maintenance.php:105
2492
  msgid "Current:"
2493
  msgstr "Arus:"
2494
 
2495
+ #: dashboard/settings/maintenance.php:103
2496
+ #: dashboard/settings/maintenance.php:105
2497
  msgid "Should be:"
2498
  msgstr "Seharusnya:"
2499
 
2500
+ #: dashboard/settings/maintenance.php:103
2501
+ #: dashboard/settings/maintenance.php:105
2502
  msgid "Previous:"
2503
  msgstr "Sebelumnya:"
2504
 
2505
+ #: dashboard/settings/maintenance.php:104
2506
  msgid "Database version"
2507
  msgstr "database versi"
2508
 
2509
+ #: dashboard/settings/maintenance.php:108
2510
  msgid "Manual upgrade"
2511
  msgstr ""
2512
 
2513
+ #: dashboard/settings/maintenance.php:110
2514
  msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2515
  msgstr "ANDA TENTANG UNTUK MELAKUKAN UPDATE MANUAL UNTUK AdRotate."
2516
 
2517
+ #: dashboard/settings/maintenance.php:110
2518
  msgid "Make sure you have a database backup!"
2519
  msgstr "Pastikan Anda memiliki backup database!"
2520
 
2521
+ #: dashboard/settings/maintenance.php:110
2522
  msgid "Run updater"
2523
  msgstr ""
2524
 
2601
  "Anda menggunakan PHP Cuplikan Anda perlu untuk membungkus PHP Anda dalam "
2602
  "kode pengecualian sendiri."
2603
 
 
 
 
 
2604
  #: dashboard/settings/notifications.php:19
2605
  msgid "Set up who gets notifications if ads need your attention."
2606
  msgstr ""
2751
  "Pesan dikirim sekali setiap 24 jam. Maksimal 5 alamat. Dipisahkan dengan "
2752
  "koma. Bidang ini mungkin tidak kosong!"
2753
 
 
 
 
 
2754
  #: dashboard/settings/notifications.php:75
2755
  msgid ""
2756
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2812
  msgid "and get your API token"
2813
  msgstr "dan mendapatkan token API Anda"
2814
 
 
 
 
 
2815
  #: dashboard/settings/roles.php:18
2816
  msgid "Who has access to what?"
2817
  msgstr "Yang memiliki akses ke apa?"
2972
  "Jumlah ini mungkin tidak kosong, lebih rendah dari 60 atau melebihi 86.400 "
2973
  "(24 jam)."
2974
 
2975
+ #~ msgid "Empty database records removed"
2976
+ #~ msgstr "catatan database kosong dihapus"
2977
+
2978
+ #~ msgid ""
2979
+ #~ "Additionally you can clean up old schedules, tracker data and/or "
2980
+ #~ "statistics. This will improve the speed of your site."
2981
+ #~ msgstr ""
2982
+ #~ "Selain itu Anda dapat membersihkan jadwal lama, Data tracker dan / atau "
2983
+ #~ "statistik. Hal ini akan meningkatkan kecepatan situs Anda."
2984
+
2985
+ #~ msgid "AdRotate News"
2986
+ #~ msgstr "AdRotate Berita"
2987
+
2988
+ #~ msgid ""
2989
+ #~ "I am a digital nomad in the Philippines. Click on my name to find out "
2990
+ #~ "more about me and what I am doing. Thanks for your support and for using "
2991
+ #~ "my plugins!"
2992
+ #~ msgstr ""
2993
+ #~ "Saya seorang nomaden digital di Filipina. Klik pada nama saya untuk "
2994
+ #~ "mengetahui lebih lanjut tentang saya dan apa yang saya lakukan. Terima "
2995
+ #~ "kasih atas dukungan Anda dan untuk menggunakan plugin saya!"
2996
+
2997
+ #~ msgid "Get paid as a publisher:"
2998
+ #~ msgstr "Dibayar sebagai penerbit:"
2999
+
3000
+ #~ msgid "Location"
3001
+ #~ msgstr "tempat"
3002
+
3003
  #~ msgid "For one WordPress installation."
3004
  #~ msgstr "Untuk satu instalasi WordPress."
3005
 
3533
  #~ "Ако създадете реклама или група, която не може да се запише, използвайте "
3534
  #~ "този бутон, за да изтриете празните полета."
3535
 
 
 
 
 
 
 
 
3536
  #~ msgid ""
3537
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3538
  #~ "becomes unusable in any way or by any means in whichever way I will not "
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: 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,118 +13,120 @@ 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.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
 
123
- #: adrotate-output.php:575
124
  msgid "Oh no! Something went wrong!"
125
  msgstr ""
126
 
127
- #: adrotate-output.php:576
128
  #, fuzzy
129
  msgid ""
130
  "WordPress was unable to verify the authenticity of the url you have clicked. "
@@ -134,28 +136,28 @@ msgstr ""
134
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
135
  "さい。英語ですが。"
136
 
137
- #: adrotate-output.php:577
138
  #, fuzzy
139
  msgid ""
140
  "If you have received the url you want to visit via email, you are being "
141
  "tricked!"
142
  msgstr "このウィジェットに使いたい物を選んで下さい。"
143
 
144
- #: adrotate-output.php:578
145
  #, fuzzy
146
  msgid "Contact support if the issue persists:"
147
  msgstr ""
148
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
149
  "さい。"
150
 
151
- #: adrotate-output.php:593
152
  #, fuzzy
153
  msgid ""
154
  "Error, Ad is not available at this time due to schedule/geolocation "
155
  "restrictions or does not exist!"
156
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
157
 
158
- #: adrotate-output.php:595
159
  #, fuzzy
160
  msgid ""
161
  "Error, Ad is not available at this time due to schedule/geolocation "
@@ -164,30 +166,30 @@ msgstr ""
164
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
165
  "を再度保存してください!"
166
 
167
- #: adrotate-output.php:602 adrotate-output.php:604
168
  msgid ""
169
  "Either there are no banners, they are disabled or none qualified for this "
170
  "location!"
171
  msgstr "バナーがないか、利用不可か適応されていません。"
172
 
173
- #: adrotate-output.php:610
174
  #, fuzzy
175
  msgid "Error, no Ad ID set! Check your syntax!"
176
  msgstr "広告 - 広告IDを使ってください。"
177
 
178
- #: adrotate-output.php:616
179
  #, fuzzy
180
  msgid "Error, no group ID set! Check your syntax!"
181
  msgstr "広告グループ - グループIDを使ってください。"
182
 
183
- #: adrotate-output.php:621
184
  #, fuzzy
185
  msgid "Error, group does not exist! Check your syntax!"
186
  msgstr ""
187
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
188
  "クスをオンにします。"
189
 
190
- #: adrotate-output.php:627
191
  msgid ""
192
  "There was an error locating the database tables for AdRotate. Please "
193
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -195,240 +197,240 @@ msgstr ""
195
  "AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
196
  "して、再登録して下さい。"
197
 
198
- #: adrotate-output.php:627
199
  msgid "If this does not solve the issue please seek support at"
200
  msgstr ""
201
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
202
  "さい。"
203
 
204
- #: adrotate-output.php:633
205
  msgid "An unknown error occured."
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,65 +477,105 @@ msgstr "広告ブロック - ブロックIDを使ってください。"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
537
  #: dashboard/adrotatepro.php:20
538
  #, fuzzy
539
  msgid "Satisfy your advertisers"
@@ -584,16 +626,22 @@ msgid ""
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, "
@@ -602,11 +650,11 @@ msgid ""
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 "
@@ -614,11 +662,11 @@ msgid ""
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,106 +674,106 @@ msgid ""
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
 
718
- #: dashboard/info.php:24
719
  #, fuzzy
720
  msgid "Currently"
721
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
722
 
723
- #: dashboard/info.php:30
724
  #, fuzzy
725
  msgid "Your setup"
726
  msgstr "データベースのバックアップを取りましたか?"
727
 
728
- #: dashboard/info.php:31
729
  #, fuzzy
730
  msgid "Adverts that need you"
731
  msgstr ""
@@ -733,47 +781,28 @@ msgstr ""
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 "
776
- "plugins!"
777
  msgstr ""
778
 
779
  #: dashboard/publisher/adverts-disabled.php:15
@@ -788,7 +817,7 @@ 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
 
@@ -820,39 +849,40 @@ 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
825
  msgid "Start / End"
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"
833
- msgstr "タイトル"
 
 
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"
841
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
842
 
843
- #: dashboard/publisher/adverts-disabled.php:39
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
851
  msgid "Clicks"
852
  msgstr "クリック"
853
 
854
- #: dashboard/publisher/adverts-disabled.php:40
855
- #: dashboard/publisher/adverts-main.php:48
856
  #: dashboard/publisher/adverts-report.php:39
857
  #: dashboard/publisher/adverts-report.php:58
858
  #: dashboard/publisher/groups-report.php:40
@@ -860,55 +890,47 @@ msgstr "クリック"
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,79 +938,94 @@ msgstr ""
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,43 +1033,43 @@ msgstr ""
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,33 +1077,33 @@ msgstr ""
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
@@ -1075,41 +1112,41 @@ msgstr ""
1075
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
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
@@ -1117,231 +1154,222 @@ msgstr "利用タグ"
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,18 +1377,18 @@ msgstr ""
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,21 +1430,19 @@ msgid "For 7 days"
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
@@ -1425,17 +1451,17 @@ msgstr ""
1425
 
1426
  #: dashboard/publisher/adverts-main.php:24
1427
  #, fuzzy
1428
- msgid "Export to XML"
1429
  msgstr "エクスポートオプション"
1430
 
1431
- #: dashboard/publisher/adverts-main.php:45
1432
- #: dashboard/publisher/adverts-main.php:47
1433
  #: dashboard/publisher/groups-main.php:37
1434
  #: dashboard/publisher/groups-main.php:39
1435
  msgid "Today"
1436
  msgstr "本日"
1437
 
1438
- #: dashboard/publisher/adverts-main.php:102
1439
  msgid "No adverts created yet!"
1440
  msgstr ""
1441
 
@@ -1492,11 +1518,6 @@ msgstr "新規追加"
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"
@@ -1792,7 +1813,7 @@ msgstr ""
1792
  msgid "Choose adverts"
1793
  msgstr ""
1794
 
1795
- #: dashboard/publisher/groups-edit.php:335
1796
  msgid "Visible until"
1797
  msgstr "掲載期限"
1798
 
@@ -1800,6 +1821,21 @@ msgstr "掲載期限"
1800
  msgid "No adverts created!"
1801
  msgstr ""
1802
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1803
  #: dashboard/publisher/groups-main.php:12
1804
  msgid "Manage Groups"
1805
  msgstr "グループの管理"
@@ -1821,8 +1857,7 @@ msgid "This action can not be undone!"
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,9 +1929,9 @@ msgid ""
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
 
@@ -1994,17 +2029,17 @@ msgstr "画像バナー"
1994
 
1995
  #: dashboard/settings/general.php:50
1996
  #, fuzzy
1997
- msgid "Set a location where your banner images will be stored."
1998
  msgstr "バナーがないか、利用不可か適応されていません。"
1999
 
2000
  #: dashboard/settings/general.php:53
2001
- #, fuzzy
2002
- msgid "Location"
2003
- msgstr "バナーがないか、利用不可か適応されていません。"
2004
 
2005
  #: dashboard/settings/general.php:55
2006
- msgid "(Default: wp-content/banners/)."
2007
- msgstr ""
 
2008
 
2009
  #: dashboard/settings/general.php:56
2010
  #, fuzzy
@@ -2149,10 +2184,6 @@ msgstr ""
2149
  msgid "Password/License Key"
2150
  msgstr ""
2151
 
2152
- #: dashboard/settings/maintenance.php:16
2153
- msgid "Maintenance"
2154
- msgstr "メンテナンス"
2155
-
2156
  #: dashboard/settings/maintenance.php:17
2157
  msgid ""
2158
  "Use these functions when you notice your database is slow, unresponsive and "
@@ -2190,15 +2221,21 @@ msgid ""
2190
  "made. This can vary from nothing to hundreds of KiB of data."
2191
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
2192
 
2193
- #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
 
 
 
 
 
 
2194
  msgid "Clean-up Database"
2195
  msgstr "データベースのクリーンアップ"
2196
 
2197
  #: dashboard/settings/maintenance.php:30
2198
  #, fuzzy
2199
  msgid ""
2200
- "You are about to clean up your database. This may delete expired schedules "
2201
- "and older statistics."
2202
  msgstr "データベースのクリーンアップ"
2203
 
2204
  #: dashboard/settings/maintenance.php:30
@@ -2206,21 +2243,17 @@ msgstr "データベースのクリーンアップ"
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 ""
2214
- "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2215
- "可能性があります。"
2216
 
2217
  #: dashboard/settings/maintenance.php:31
2218
  #, fuzzy
2219
- msgid "Delete stats older than 356 days (Optional)."
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
@@ -2230,10 +2263,11 @@ msgid ""
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"
@@ -2247,6 +2281,13 @@ msgstr "すべての広告の再評価"
2247
  msgid "You are about to check all ads for errors."
2248
  msgstr "すべての広告のエラーをチェックしようとしています。"
2249
 
 
 
 
 
 
 
 
2250
  #: dashboard/settings/maintenance.php:40
2251
  #, fuzzy
2252
  msgid ""
@@ -2293,10 +2334,8 @@ 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
@@ -2324,11 +2363,6 @@ msgstr "平均的表示(50%程度)"
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"
@@ -2342,74 +2376,97 @@ msgstr ""
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"
@@ -2488,10 +2545,6 @@ msgid ""
2488
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2489
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2490
 
2491
- #: dashboard/settings/notifications.php:18
2492
- msgid "Notifications"
2493
- msgstr "通知先"
2494
-
2495
  #: dashboard/settings/notifications.php:19
2496
  #, fuzzy
2497
  msgid "Set up who gets notifications if ads need your attention."
@@ -2627,11 +2680,6 @@ msgid ""
2627
  "separated. This field may not be empty!"
2628
  msgstr ""
2629
 
2630
- #: dashboard/settings/notifications.php:72
2631
- #, fuzzy
2632
- msgid "Advertisers"
2633
- msgstr "広告主から提出された広告を承認する権限"
2634
-
2635
  #: dashboard/settings/notifications.php:75
2636
  msgid ""
2637
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
@@ -2687,10 +2735,6 @@ msgstr ""
2687
  msgid "and get your API token"
2688
  msgstr ""
2689
 
2690
- #: dashboard/settings/roles.php:17
2691
- msgid "Roles"
2692
- msgstr ""
2693
-
2694
  #: dashboard/settings/roles.php:18
2695
  msgid "Who has access to what?"
2696
  msgstr ""
@@ -2841,15 +2885,18 @@ msgid ""
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"
@@ -2975,14 +3022,6 @@ msgstr ""
2975
  #~ msgid "Ad evaluation next run:"
2976
  #~ msgstr "通知先"
2977
 
2978
- #, fuzzy
2979
- #~ msgid "Not scheduled!"
2980
- #~ msgstr "掲載期間"
2981
-
2982
- #, fuzzy
2983
- #~ msgid "Clean Trackerdata next run:"
2984
- #~ msgstr "データベースのクリーンアップ"
2985
-
2986
  #, fuzzy
2987
  #~ msgid "Set up who gets notification emails."
2988
  #~ msgstr "すぐに注意を必要とする広告"
@@ -3171,9 +3210,6 @@ msgstr ""
3171
  #~ msgid "Ad created"
3172
  #~ msgstr "広告作成"
3173
 
3174
- #~ msgid "Ad updated"
3175
- #~ msgstr "広告更新"
3176
-
3177
  #~ msgid ""
3178
  #~ "The ad was saved but has an issue which might prevent it from working "
3179
  #~ "properly. Review the yellow marked ad."
@@ -3271,12 +3307,6 @@ msgstr ""
3271
  #~ "button to delete those empty records."
3272
  #~ msgstr "グループを削除しようとしています。"
3273
 
3274
- #, fuzzy
3275
- #~ msgid ""
3276
- #~ "Additionally you can clean up old statistics. This will improve the speed "
3277
- #~ "of your site."
3278
- #~ msgstr "データベースのクリーンアップ"
3279
-
3280
  #, fuzzy
3281
  #~ msgid ""
3282
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
@@ -3446,10 +3476,6 @@ msgstr ""
3446
  #~ msgid "Enable stats"
3447
  #~ msgstr "統計リセット"
3448
 
3449
- #, fuzzy
3450
- #~ msgid "Track clicks and impressions."
3451
- #~ msgstr "クリック"
3452
-
3453
  #, fuzzy
3454
  #~ msgid ""
3455
  #~ "Disabling this also disables click and impression limits on schedules."
@@ -4552,9 +4578,6 @@ msgstr ""
4552
  #~ "ん。その為、常にデータベースのバックアップをお願いいたします。警告に注意し"
4553
  #~ "て、バックアップをまず取るようにしてください。"
4554
 
4555
- #~ msgid "Manual Upgrade"
4556
- #~ msgstr "手動更新"
4557
-
4558
  #~ msgid "Upgrade Database and Migrate Data"
4559
  #~ msgstr "データベースと移行データのアップグレード"
4560
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-19 15:30+0800\n"
6
+ "PO-Revision-Date: 2017-06-19 15:30+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 2.0.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:722
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
+ #: adrotate-functions.php:725
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
+ #: adrotate-functions.php:768
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
+ #: adrotate-functions.php:772
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
+ #: adrotate-functions.php:776
36
  msgid "Ad(s) deleted"
37
  msgstr "広告削除"
38
 
39
+ #: adrotate-functions.php:780
40
  msgid "Group deleted"
41
  msgstr "グループの削除"
42
 
43
+ #: adrotate-functions.php:784
44
  msgid "Ad(s) statistics reset"
45
  msgstr "広告の統計情報初期化"
46
 
47
+ #: adrotate-functions.php:788
48
  msgid "Ad(s) renewed"
49
  msgstr "広告の更新"
50
 
51
+ #: adrotate-functions.php:792
52
  msgid "Ad(s) deactivated"
53
  msgstr "広告の利用停止"
54
 
55
+ #: adrotate-functions.php:796
56
  msgid "Ad(s) activated"
57
  msgstr "広告の利用可能化"
58
 
59
+ #: adrotate-functions.php:800
60
  msgid "Group including it's Ads deleted"
61
  msgstr "削除された広告がグループに含まれています。"
62
 
63
+ #: adrotate-functions.php:804
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "エクスポートオプション"
67
 
68
+ #: adrotate-functions.php:809
69
  msgid "Settings saved"
70
  msgstr "設定を保存します。"
71
 
72
+ #: adrotate-functions.php:813
73
  msgid "Database optimized"
74
  msgstr "データベースの最適化"
75
 
76
+ #: adrotate-functions.php:817
77
  msgid "Database repaired"
78
  msgstr "データベースの修復"
79
 
80
+ #: adrotate-functions.php:821
81
  #, fuzzy
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr "広告"
84
 
85
+ #: adrotate-functions.php:825
86
+ #, fuzzy
87
+ #| msgid "Clean-up Database"
88
+ msgid "Cleanup complete"
89
+ msgstr "データベースのクリーンアップ"
90
 
91
+ #: adrotate-functions.php:830
92
  msgid "Action prohibited"
93
  msgstr "今の操作は禁止されました。"
94
 
95
+ #: adrotate-functions.php:834
96
  msgid ""
97
  "The ad was saved but has an issue which might prevent it from working "
98
  "properly. Review the colored ad."
99
  msgstr ""
100
 
101
+ #: adrotate-functions.php:838
102
  msgid "No data found in selected time period"
103
  msgstr "選ばれた期間が見つかりません。"
104
 
105
+ #: adrotate-functions.php:842
106
  msgid "Database can only be optimized or cleaned once every hour"
107
  msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
108
 
109
+ #: adrotate-functions.php:846
110
  msgid "Form can not be (partially) empty!"
111
  msgstr ""
112
 
113
+ #: adrotate-functions.php:850
114
  msgid "No ads found."
115
  msgstr ""
116
 
117
+ #: adrotate-functions.php:854
118
  msgid "Unexpected error"
119
  msgstr ""
120
 
121
+ #: adrotate-manage-publisher.php:665
122
  msgid "AdRotate Advertiser"
123
  msgstr ""
124
 
125
+ #: adrotate-output.php:551
126
  msgid "Oh no! Something went wrong!"
127
  msgstr ""
128
 
129
+ #: adrotate-output.php:552
130
  #, fuzzy
131
  msgid ""
132
  "WordPress was unable to verify the authenticity of the url you have clicked. "
136
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
137
  "さい。英語ですが。"
138
 
139
+ #: adrotate-output.php:553
140
  #, fuzzy
141
  msgid ""
142
  "If you have received the url you want to visit via email, you are being "
143
  "tricked!"
144
  msgstr "このウィジェットに使いたい物を選んで下さい。"
145
 
146
+ #: adrotate-output.php:554
147
  #, fuzzy
148
  msgid "Contact support if the issue persists:"
149
  msgstr ""
150
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
151
  "さい。"
152
 
153
+ #: adrotate-output.php:569
154
  #, fuzzy
155
  msgid ""
156
  "Error, Ad is not available at this time due to schedule/geolocation "
157
  "restrictions or does not exist!"
158
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
159
 
160
+ #: adrotate-output.php:571
161
  #, fuzzy
162
  msgid ""
163
  "Error, Ad is not available at this time due to schedule/geolocation "
166
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
167
  "を再度保存してください!"
168
 
169
+ #: adrotate-output.php:578 adrotate-output.php:580
170
  msgid ""
171
  "Either there are no banners, they are disabled or none qualified for this "
172
  "location!"
173
  msgstr "バナーがないか、利用不可か適応されていません。"
174
 
175
+ #: adrotate-output.php:586
176
  #, fuzzy
177
  msgid "Error, no Ad ID set! Check your syntax!"
178
  msgstr "広告 - 広告IDを使ってください。"
179
 
180
+ #: adrotate-output.php:592
181
  #, fuzzy
182
  msgid "Error, no group ID set! Check your syntax!"
183
  msgstr "広告グループ - グループIDを使ってください。"
184
 
185
+ #: adrotate-output.php:597
186
  #, fuzzy
187
  msgid "Error, group does not exist! Check your syntax!"
188
  msgstr ""
189
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
190
  "クスをオンにします。"
191
 
192
+ #: adrotate-output.php:603
193
  msgid ""
194
  "There was an error locating the database tables for AdRotate. Please "
195
  "deactivate and re-activate AdRotate from the plugin page!!"
197
  "AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
198
  "して、再登録して下さい。"
199
 
200
+ #: adrotate-output.php:603
201
  msgid "If this does not solve the issue please seek support at"
202
  msgstr ""
203
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
204
  "さい。"
205
 
206
+ #: adrotate-output.php:609
207
  msgid "An unknown error occured."
208
  msgstr "理解できないエラーが起こっています。"
209
 
210
+ #: adrotate-output.php:628 adrotate-output.php:631 adrotate-output.php:635
211
  msgid "Check adverts"
212
  msgstr ""
213
 
214
+ #: adrotate-output.php:640
215
  msgid ""
216
  "You have enable caching support but W3 Total Cache is not active on your "
217
  "site!"
218
  msgstr ""
219
 
220
+ #: adrotate-output.php:643
221
  msgid ""
222
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
223
  "not set."
224
  msgstr ""
225
 
226
+ #: adrotate-output.php:648
227
  msgid "Your AdRotate Banner folder is not writable or does not exist."
228
  msgstr ""
229
 
230
+ #: adrotate-output.php:688 dashboard/adrotatepro.php:87
231
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
232
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
233
+ #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
234
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:97 dashboard/info.php:98
235
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:104
236
+ #: dashboard/info.php:105 dashboard/info.php:106 dashboard/info.php:107
237
  #: dashboard/settings/geotargeting.php:35
238
  #, fuzzy
239
  msgid "Buy now"
240
  msgstr "継続する場合は対応して下さい。"
241
 
242
+ #: adrotate-output.php:689
243
  msgid ""
244
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
245
  "to the <strong>PRO</strong> version"
246
  msgstr ""
247
 
248
+ #: adrotate-output.php:689
249
  #, php-format
250
  msgid ""
251
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
252
  msgstr ""
253
 
254
+ #: adrotate-output.php:689
255
  msgid "Thank you for your purchase!"
256
  msgstr ""
257
 
258
+ #: adrotate-output.php:752
259
  msgid ""
260
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
261
  "menu. If you need help getting started take a look at the"
262
  msgstr ""
263
 
264
+ #: adrotate-output.php:752
265
  msgid "manuals"
266
  msgstr "マニュアル(英語サイト)"
267
 
268
+ #: adrotate-output.php:752 adrotate-output.php:822
269
  msgid "and"
270
  msgstr ""
271
 
272
+ #: adrotate-output.php:752
273
  #, fuzzy
274
  msgid "forums"
275
  msgstr "フォーラム"
276
 
277
+ #: adrotate-output.php:785
278
  #, fuzzy
279
  msgid "Useful Links"
280
  msgstr "役に立つ情報"
281
 
282
+ #: adrotate-output.php:786
283
  msgid "Useful links to learn more about AdRotate"
284
  msgstr ""
285
 
286
+ #: adrotate-output.php:788
287
  msgid "AdRotate website"
288
  msgstr ""
289
 
290
+ #: adrotate-output.php:789
291
  #, fuzzy
292
  msgid "Getting Started With AdRotate"
293
  msgstr ""
294
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
295
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
296
 
297
+ #: adrotate-output.php:790
298
  #, fuzzy
299
  msgid "AdRotate manuals"
300
  msgstr "AdRotate Blog"
301
 
302
+ #: adrotate-output.php:791
303
  #, fuzzy
304
  msgid "AdRotate Support Forum"
305
  msgstr "AdRotate Blog"
306
 
307
+ #: adrotate-output.php:814 dashboard/info.php:49
308
  #, fuzzy
309
  msgid "Support AdRotate"
310
  msgstr "AdRotate Blog"
311
 
312
+ #: adrotate-output.php:815
313
  msgid "Check out my website"
314
  msgstr ""
315
 
316
+ #: adrotate-output.php:822
317
  msgid ""
318
  "Many users only think to review AdRotate when something goes wrong while "
319
  "thousands of people happily use AdRotate."
320
  msgstr ""
321
 
322
+ #: adrotate-output.php:822
323
  msgid "If you find AdRotate useful please leave your"
324
  msgstr ""
325
 
326
+ #: adrotate-output.php:822
327
  msgid "rating"
328
  msgstr ""
329
 
330
+ #: adrotate-output.php:822
331
  #, fuzzy
332
  msgid "review"
333
  msgstr "全般レポートを見れる権限"
334
 
335
+ #: adrotate-output.php:822
336
  msgid "on WordPress.org to help AdRotate grow in a positive way"
337
  msgstr ""
338
 
339
+ #: adrotate-output.php:848 dashboard/settings/notifications.php:50
340
  #: dashboard/settings/notifications.php:80
341
  #, fuzzy
342
  msgid "Available in AdRotate Pro"
343
  msgstr "AdRotate Blog"
344
 
345
+ #: adrotate-output.php:848
346
  #, fuzzy
347
  msgid "More information..."
348
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
349
 
350
+ #: adrotate-output.php:849
351
  #, fuzzy
352
  msgid "This feature is available in AdRotate Pro"
353
  msgstr "この機能は使いません。"
354
 
355
+ #: adrotate-output.php:849
356
  #, fuzzy
357
  msgid "Learn more"
358
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
359
 
360
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:220
361
+ #: dashboard/publisher/adverts-edit.php:241
362
  msgid "January"
363
  msgstr "1月"
364
 
365
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:221
366
+ #: dashboard/publisher/adverts-edit.php:242
367
  msgid "February"
368
  msgstr "2月"
369
 
370
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:222
371
+ #: dashboard/publisher/adverts-edit.php:243
372
  msgid "March"
373
  msgstr "3月"
374
 
375
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:223
376
+ #: dashboard/publisher/adverts-edit.php:244
377
  msgid "April"
378
  msgstr "4月"
379
 
380
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:224
381
+ #: dashboard/publisher/adverts-edit.php:245
382
  msgid "May"
383
  msgstr "5月"
384
 
385
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:225
386
+ #: dashboard/publisher/adverts-edit.php:246
387
  msgid "June"
388
  msgstr "6月"
389
 
390
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:226
391
+ #: dashboard/publisher/adverts-edit.php:247
392
  msgid "July"
393
  msgstr "7月"
394
 
395
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:227
396
+ #: dashboard/publisher/adverts-edit.php:248
397
  msgid "August"
398
  msgstr "8月"
399
 
400
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:228
401
+ #: dashboard/publisher/adverts-edit.php:249
402
  msgid "September"
403
  msgstr "9月"
404
 
405
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:229
406
+ #: dashboard/publisher/adverts-edit.php:250
407
  msgid "October"
408
  msgstr "10月"
409
 
410
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:230
411
+ #: dashboard/publisher/adverts-edit.php:251
412
  msgid "November"
413
  msgstr "11月"
414
 
415
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:231
416
+ #: dashboard/publisher/adverts-edit.php:252
417
  msgid "December"
418
  msgstr "12月"
419
 
420
+ #: adrotate-statistics.php:143
421
  #, fuzzy
422
  msgid "Previous"
423
  msgstr "プレビュー"
424
 
425
+ #: adrotate-statistics.php:145
426
  msgid "This month"
427
  msgstr ""
428
 
429
+ #: adrotate-statistics.php:146
430
  msgid "Next"
431
  msgstr ""
432
 
433
+ #: adrotate-statistics.php:232
434
  msgid "No data to show!"
435
  msgstr "表示できるデータがありません。"
436
 
477
  msgid "Fill in the ID of the type you want to display!"
478
  msgstr "表示したいタイプのIDを入力してください!"
479
 
480
+ #: adrotate.php:103
481
  #, fuzzy
482
  msgid "General Info"
483
  msgstr "一般設定"
484
 
485
+ #: adrotate.php:104
486
  #, fuzzy
487
  msgid "AdRotate Pro"
488
  msgstr "AdRotate Blog"
489
 
490
+ #: adrotate.php:105 dashboard/info.php:40
491
+ #: dashboard/publisher/adverts-edit.php:458
492
  #: dashboard/publisher/groups-main.php:34
493
  #, fuzzy
494
  msgid "Adverts"
495
  msgstr "新しい広告の承認"
496
 
497
+ #: adrotate.php:106 dashboard/info.php:44
498
  msgid "Groups"
499
  msgstr "グループ"
500
 
501
+ #: adrotate.php:107
502
  msgid "Settings"
503
  msgstr "設定"
504
 
505
+ #: adrotate.php:125
506
  #, fuzzy
507
  msgid "AdRotate Info"
508
  msgstr "AdRotate Blog"
509
 
510
+ #: adrotate.php:143
511
  #, fuzzy
512
  msgid "AdRotate Professional"
513
  msgstr "AdRotate Blog"
514
 
515
+ #: adrotate.php:183
516
  msgid "Advert Management"
517
  msgstr ""
518
 
519
+ #: adrotate.php:241 adrotate.php:308
520
  msgid "Manage"
521
  msgstr "管理"
522
 
523
+ #: adrotate.php:242 adrotate.php:309
524
  msgid "Add New"
525
  msgstr "新規追加"
526
 
527
+ #: adrotate.php:302
528
  msgid "Group Management"
529
  msgstr "グループの管理"
530
 
531
+ #: adrotate.php:311
532
  msgid "Report"
533
  msgstr "レポート"
534
 
535
+ #: adrotate.php:356
536
  msgid "AdRotate Settings"
537
  msgstr "AdRotate 設定"
538
 
539
+ #: adrotate.php:361
540
+ #, fuzzy
541
+ msgid "General"
542
+ msgstr "一般設定"
543
+
544
+ #: adrotate.php:362 dashboard/settings/notifications.php:18
545
+ msgid "Notifications"
546
+ msgstr "通知先"
547
+
548
+ #: adrotate.php:363 dashboard/publisher/adverts-disabled.php:69
549
+ #: dashboard/publisher/adverts-error.php:63
550
+ #: dashboard/publisher/adverts-main.php:81
551
+ #: dashboard/publisher/groups-main.php:70
552
+ #, fuzzy
553
+ msgid "Stats"
554
+ msgstr "統計リセット"
555
+
556
+ #: adrotate.php:364 dashboard/publisher/adverts-edit.php:359
557
+ #: dashboard/publisher/groups-edit.php:180
558
+ #: dashboard/settings/advertisers.php:38
559
+ msgid "Geo Targeting"
560
+ msgstr ""
561
+
562
+ #: adrotate.php:365 dashboard/settings/notifications.php:72
563
+ #, fuzzy
564
+ msgid "Advertisers"
565
+ msgstr "広告主から提出された広告を承認する権限"
566
+
567
+ #: adrotate.php:366 dashboard/settings/roles.php:17
568
+ msgid "Roles"
569
+ msgstr ""
570
+
571
+ #: adrotate.php:367
572
+ msgid "Misc"
573
+ msgstr ""
574
+
575
+ #: adrotate.php:368 dashboard/settings/maintenance.php:16
576
+ msgid "Maintenance"
577
+ msgstr "メンテナンス"
578
+
579
  #: dashboard/adrotatepro.php:20
580
  #, fuzzy
581
  msgid "Satisfy your advertisers"
626
  "forum. Get a solution (usually) within one business day."
627
  msgstr ""
628
 
629
+ #: dashboard/adrotatepro.php:48
630
  #, fuzzy
631
  msgid "AdRotate is brought to you by"
632
  msgstr "サービス紹介"
633
 
634
+ #: dashboard/adrotatepro.php:51
635
+ msgid ""
636
+ "I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner "
637
+ "to find out more about me and what I am doing!"
638
+ msgstr ""
639
+
640
+ #: dashboard/adrotatepro.php:62
641
  msgid "Schedule all campaigns with ease"
642
  msgstr ""
643
 
644
+ #: dashboard/adrotatepro.php:65
645
  msgid ""
646
  "Schedule your adverts and set up advertising campaigns based on dates you or "
647
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
650
  "schedules for adverts."
651
  msgstr ""
652
 
653
+ #: dashboard/adrotatepro.php:69
654
  msgid "Avoid adblockers"
655
  msgstr ""
656
 
657
+ #: dashboard/adrotatepro.php:72
658
  msgid ""
659
  "Try and avoid adblockers so your adverts get the exposure you want them to "
660
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
662
  "adverts smartly so these features reach their full potential!"
663
  msgstr ""
664
 
665
+ #: dashboard/adrotatepro.php:76
666
  msgid "Stay up-to-date with notifications"
667
  msgstr ""
668
 
669
+ #: dashboard/adrotatepro.php:79
670
  msgid ""
671
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
672
  "adverts expire or need your attention. Additionally, send push notifications "
674
  "or when advertisers create new adverts. Never miss an expiration date again."
675
  msgstr ""
676
 
677
+ #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
678
+ #: dashboard/info.php:93
679
  #, fuzzy
680
  msgid "Buy AdRotate Professional"
681
  msgstr "AdRotate Blog"
682
 
683
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
684
  msgid "Single License"
685
  msgstr ""
686
 
687
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
688
+ msgid "One WordPress installation."
689
  msgstr ""
690
 
691
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
692
+ #: dashboard/info.php:98 dashboard/info.php:105
693
  msgid "Duo License"
694
  msgstr ""
695
 
696
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:98
697
+ msgid "Two WordPress installations."
698
  msgstr ""
699
 
700
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
701
+ #: dashboard/info.php:99 dashboard/info.php:106
702
  msgid "Multi License"
703
  msgstr ""
704
 
705
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:99
706
+ msgid "Up to five WordPress installations."
707
  msgstr ""
708
 
709
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
710
+ #: dashboard/info.php:100 dashboard/info.php:107
711
  #, fuzzy
712
  msgid "Developer License"
713
  msgstr "開発者向けデバッグ"
714
 
715
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:100
716
  msgid "Unlimited WordPress installations and/or networks."
717
  msgstr ""
718
 
719
+ #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
720
+ #: dashboard/info.php:101 dashboard/info.php:109
721
  msgid "Compare licenses"
722
  msgstr ""
723
 
724
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
725
  msgid "Not sure which license is for you? Compare them..."
726
  msgstr ""
727
 
728
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
729
  #, fuzzy
730
  msgid "All Licenses"
731
  msgstr "すべての広告の再評価"
732
 
733
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
734
  msgid "Lifetime License"
735
  msgstr ""
736
 
737
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
738
  msgid "Single installation."
739
  msgstr ""
740
 
741
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:105
742
  msgid "Up to 2 installations."
743
  msgstr ""
744
 
745
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:106
746
  msgid "Up to 10 installations."
747
  msgstr ""
748
 
749
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:107
750
  msgid "Up to 25 installations or multisite networks."
751
  msgstr ""
752
 
753
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:108
754
  msgid ""
755
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
756
  msgstr ""
757
 
758
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
759
  msgid "Not sure which license is for you?"
760
  msgstr ""
761
 
762
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
763
  msgid "Compare Licenses"
764
  msgstr ""
765
 
766
+ #: dashboard/info.php:27
767
  #, fuzzy
768
  msgid "Currently"
769
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
770
 
771
+ #: dashboard/info.php:33
772
  #, fuzzy
773
  msgid "Your setup"
774
  msgstr "データベースのバックアップを取りましたか?"
775
 
776
+ #: dashboard/info.php:34
777
  #, fuzzy
778
  msgid "Adverts that need you"
779
  msgstr ""
781
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
782
  "さい。英語ですが。"
783
 
784
+ #: dashboard/info.php:41
785
  #, fuzzy
786
  msgid "(Almost) Expired"
787
  msgstr "個の広告が期限切れです。"
788
 
789
+ #: dashboard/info.php:45
790
  #, fuzzy
791
  msgid "Have errors"
792
  msgstr "個の広告が設定エラーになっています。"
793
 
794
+ #: dashboard/info.php:50
795
  msgid ""
796
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
797
  "for updates about me and my plugins. Thank you!"
798
  msgstr ""
799
 
800
+ #: dashboard/info.php:74
801
+ msgid "Arnan de Gans News & Updates"
 
 
 
 
 
 
 
 
 
 
 
 
802
  msgstr ""
803
 
804
+ #: dashboard/info.php:114
805
+ msgid "Join the Media.net advertising network"
 
 
 
 
 
 
 
806
  msgstr ""
807
 
808
  #: dashboard/publisher/adverts-disabled.php:15
817
  msgstr "一括操作"
818
 
819
  #: dashboard/publisher/adverts-disabled.php:21
820
+ #: dashboard/publisher/adverts-edit.php:176
821
  msgid "Activate"
822
  msgstr "利用可能"
823
 
849
  msgstr "広告ブロック - ブロックIDを使ってください。"
850
 
851
  #: dashboard/publisher/adverts-disabled.php:36
852
+ #: dashboard/publisher/adverts-error.php:41
853
  #: dashboard/publisher/adverts-main.php:40
854
  msgid "Start / End"
855
  msgstr ""
856
 
857
  #: dashboard/publisher/adverts-disabled.php:37
858
+ #: dashboard/publisher/adverts-error.php:40
 
859
  #: dashboard/publisher/adverts-main.php:41
860
+ #: dashboard/publisher/groups-edit.php:51
861
+ #: dashboard/publisher/groups-main.php:33
862
+ msgid "Name"
863
+ msgstr "名前"
864
 
865
+ #: dashboard/publisher/adverts-disabled.php:39
866
+ #: dashboard/publisher/adverts-main.php:43
867
+ #: dashboard/publisher/groups-edit.php:333
868
  #: dashboard/publisher/groups-main.php:36
869
  #, fuzzy
870
  msgid "Shown"
871
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
872
 
873
+ #: dashboard/publisher/adverts-disabled.php:40
874
+ #: dashboard/publisher/adverts-main.php:45
875
  #: dashboard/publisher/adverts-report.php:36
876
  #: dashboard/publisher/adverts-report.php:57
877
+ #: dashboard/publisher/groups-edit.php:334
878
  #: dashboard/publisher/groups-main.php:38
879
  #: dashboard/publisher/groups-report.php:37
880
  #: dashboard/publisher/groups-report.php:58
881
  msgid "Clicks"
882
  msgstr "クリック"
883
 
884
+ #: dashboard/publisher/adverts-disabled.php:41
885
+ #: dashboard/publisher/adverts-main.php:47
886
  #: dashboard/publisher/adverts-report.php:39
887
  #: dashboard/publisher/adverts-report.php:58
888
  #: dashboard/publisher/groups-report.php:40
890
  msgid "CTR"
891
  msgstr ""
892
 
893
+ #: dashboard/publisher/adverts-disabled.php:69
894
+ #: dashboard/publisher/adverts-error.php:63
895
+ #: dashboard/publisher/adverts-main.php:81
896
  #: dashboard/publisher/groups-main.php:70
897
  msgid "Edit"
898
  msgstr "編集"
899
 
900
+ #: dashboard/publisher/adverts-disabled.php:69
901
+ #: dashboard/publisher/adverts-error.php:63
902
+ #: dashboard/publisher/adverts-main.php:81
 
 
 
 
 
 
 
 
903
  #, fuzzy
904
  msgid "Groups:"
905
  msgstr "グループ"
906
 
907
+ #: dashboard/publisher/adverts-edit.php:48
908
  msgid "The AdCode cannot be empty!"
909
  msgstr "AdCodeを空にすることはできません!"
910
 
911
+ #: dashboard/publisher/adverts-edit.php:51
912
  msgid ""
913
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
914
  "use!"
915
  msgstr ""
916
 
917
+ #: dashboard/publisher/adverts-edit.php:54
918
  msgid ""
919
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
920
  "use!"
921
  msgstr ""
922
 
923
+ #: dashboard/publisher/adverts-edit.php:57
924
  msgid ""
925
  "There is a problem saving the image. Please reset your image and re-save the "
926
  "ad!"
927
  msgstr ""
928
 
929
+ #: dashboard/publisher/adverts-edit.php:60
930
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
931
  msgstr ""
932
 
933
+ #: dashboard/publisher/adverts-edit.php:65
934
  msgid ""
935
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
936
  "the ad!"
938
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
939
  "を再度保存してください!"
940
 
941
+ #: dashboard/publisher/adverts-edit.php:68
942
  msgid "This ad is expired and currently not shown on your website!"
943
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
944
 
945
+ #: dashboard/publisher/adverts-edit.php:71
946
  msgid "The ad will expire in less than 2 days!"
947
  msgstr "この広告は期限が2日間ありません。"
948
 
949
+ #: dashboard/publisher/adverts-edit.php:74
950
  msgid "This ad will expire in less than 7 days!"
951
  msgstr "この広告は期限が7日間ありません。"
952
 
953
+ #: dashboard/publisher/adverts-edit.php:77
954
  msgid "This ad has been disabled and does not rotate on your site!"
955
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
956
 
957
+ #: dashboard/publisher/adverts-edit.php:81
958
+ msgid ""
959
+ "This advert uses the obsolete Responsive feature. Please use the more "
960
+ "reliable Mobile feature! Saving the advert will disable the responsive "
961
+ "option silently."
962
+ msgstr ""
963
+
964
+ #: dashboard/publisher/adverts-edit.php:106
965
  #, fuzzy
966
  msgid "New Advert"
967
  msgstr "新規追加"
968
 
969
+ #: dashboard/publisher/adverts-edit.php:108
970
  #, fuzzy
971
  msgid "Edit Advert"
972
  msgstr "編集"
973
 
974
+ #: dashboard/publisher/adverts-edit.php:114
975
+ msgid "Title"
976
+ msgstr "タイトル"
977
+
978
+ #: dashboard/publisher/adverts-edit.php:120
979
  msgid "AdCode"
980
  msgstr ""
981
 
982
+ #: dashboard/publisher/adverts-edit.php:125
983
  msgid "Basic Examples:"
984
  msgstr "設定例:"
985
 
986
+ #: dashboard/publisher/adverts-edit.php:129
987
+ msgid "Get better adverts from Media.net"
988
+ msgstr ""
989
+
990
+ #: dashboard/publisher/adverts-edit.php:134
991
  msgid "Useful tags"
992
  msgstr ""
993
 
994
+ #: dashboard/publisher/adverts-edit.php:136
995
  msgid "Insert the advert ID Number."
996
  msgstr ""
997
 
998
+ #: dashboard/publisher/adverts-edit.php:136
999
  msgid "Required when selecting a asset below."
1000
  msgstr ""
1001
 
1002
+ #: dashboard/publisher/adverts-edit.php:136
1003
  msgid "Insert the advert name."
1004
  msgstr ""
1005
 
1006
+ #: dashboard/publisher/adverts-edit.php:136
1007
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1008
  msgstr ""
1009
 
1010
+ #: dashboard/publisher/adverts-edit.php:136
1011
  msgid "Add inside the <a> tag to open advert in a new window."
1012
  msgstr ""
1013
 
1014
+ #: dashboard/publisher/adverts-edit.php:136
1015
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1016
  msgstr ""
1017
 
1018
+ #: dashboard/publisher/adverts-edit.php:136
1019
  msgid ""
1020
  "Place the cursor in your AdCode where you want to add any of these tags and "
1021
  "click to add it."
1022
  msgstr ""
1023
 
1024
+ #: dashboard/publisher/adverts-edit.php:141
1025
  msgid "Preview"
1026
  msgstr "プレビュー"
1027
 
1028
+ #: dashboard/publisher/adverts-edit.php:144
1029
  msgid ""
1030
  "Note: While this preview is an accurate one, it might look different then it "
1031
  "does on the website."
1033
  "注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
1034
  "場合があります。"
1035
 
1036
+ #: dashboard/publisher/adverts-edit.php:145
1037
  msgid ""
1038
  "This is because of CSS differences. Your themes CSS file is not active here!"
1039
  msgstr ""
1040
  "主な原因としてはCSSの設定がここでは反映されないからです。表示にCSSを利用され"
1041
  "ている場合は実ページでご確認下さい。"
1042
 
1043
+ #: dashboard/publisher/adverts-edit.php:150
1044
  msgid "Banner asset"
1045
  msgstr ""
1046
 
1047
+ #: dashboard/publisher/adverts-edit.php:153
1048
  msgid "WordPress media:"
1049
  msgstr ""
1050
 
1051
+ #: dashboard/publisher/adverts-edit.php:153
1052
  #, fuzzy
1053
  msgid "Select Banner"
1054
  msgstr "バナー画像"
1055
 
1056
+ #: dashboard/publisher/adverts-edit.php:155
1057
  msgid "- OR -"
1058
  msgstr "- もしくは -"
1059
 
1060
+ #: dashboard/publisher/adverts-edit.php:157
1061
  msgid "Banner folder:"
1062
  msgstr "画像バナー"
1063
 
1064
+ #: dashboard/publisher/adverts-edit.php:158
1065
  msgid "No image selected"
1066
  msgstr "画像は設定されていません。"
1067
 
1068
+ #: dashboard/publisher/adverts-edit.php:162
1069
  msgid "Use %asset% in the adcode instead of the file path."
1070
  msgstr ""
1071
 
1072
+ #: dashboard/publisher/adverts-edit.php:162
1073
  msgid ""
1074
  "Use either the text field or the dropdown. If the textfield has content that "
1075
  "field has priority."
1077
  "上記の画像リンクかドロップダウンかを利用します。画像リンクが入力されている場"
1078
  "合はそちらが優先されます。"
1079
 
1080
+ #: dashboard/publisher/adverts-edit.php:167
1081
  #: dashboard/settings/statistics.php:17
1082
  msgid "Statistics"
1083
  msgstr "統計"
1084
 
1085
+ #: dashboard/publisher/adverts-edit.php:169
1086
  msgid "Enable click and impression tracking for this advert."
1087
  msgstr ""
1088
 
1089
+ #: dashboard/publisher/adverts-edit.php:170
1090
  msgid ""
1091
  "Note: Clicktracking does not work for Javascript adverts such as those "
1092
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1093
  "always supported."
1094
  msgstr ""
1095
 
1096
+ #: dashboard/publisher/adverts-edit.php:180
1097
  msgid "Yes, this ad will be used"
1098
  msgstr "この広告を掲載されるように設定する"
1099
 
1100
+ #: dashboard/publisher/adverts-edit.php:181
1101
  #, fuzzy
1102
  msgid "No, do not show this ad anywhere"
1103
  msgstr "表示できるデータがありません。"
1104
 
1105
+ #: dashboard/publisher/adverts-edit.php:188
1106
+ #: dashboard/publisher/adverts-main.php:105
1107
  #: dashboard/publisher/groups-edit.php:71
1108
  #: dashboard/publisher/groups-main.php:89
1109
  #, fuzzy
1112
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1113
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1114
 
1115
+ #: dashboard/publisher/adverts-edit.php:188
1116
+ #: dashboard/publisher/adverts-main.php:105
1117
  #: dashboard/publisher/groups-edit.php:71
1118
  #: dashboard/publisher/groups-main.php:89
1119
  #, fuzzy
1120
  msgid "More information"
1121
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
1122
 
1123
+ #: dashboard/publisher/adverts-edit.php:191
1124
+ #: dashboard/publisher/adverts-edit.php:291
1125
+ #: dashboard/publisher/adverts-edit.php:447
1126
+ #: dashboard/publisher/adverts-edit.php:488
1127
  #, fuzzy
1128
  msgid "Save Advert"
1129
  msgstr "保存"
1130
 
1131
+ #: dashboard/publisher/adverts-edit.php:192
1132
+ #: dashboard/publisher/adverts-edit.php:292
1133
+ #: dashboard/publisher/adverts-edit.php:448
1134
+ #: dashboard/publisher/adverts-edit.php:489
1135
  #: dashboard/publisher/groups-edit.php:150
1136
  #: dashboard/publisher/groups-edit.php:299
1137
  #: dashboard/publisher/groups-edit.php:391
1138
  msgid "Cancel"
1139
  msgstr "キャンセル"
1140
 
1141
+ #: dashboard/publisher/adverts-edit.php:195
1142
+ #: dashboard/publisher/adverts-edit.php:430
1143
  #: dashboard/publisher/groups-edit.php:132
1144
  #: dashboard/publisher/groups-edit.php:281
1145
  msgid "Usage"
1146
  msgstr "利用タグ"
1147
 
1148
+ #: dashboard/publisher/adverts-edit.php:199
1149
+ #: dashboard/publisher/adverts-edit.php:434
1150
  #: dashboard/publisher/groups-edit.php:136
1151
  #: dashboard/publisher/groups-edit.php:205
1152
  #: dashboard/publisher/groups-edit.php:245
1154
  msgid "Widget"
1155
  msgstr ""
1156
 
1157
+ #: dashboard/publisher/adverts-edit.php:200
1158
+ #: dashboard/publisher/adverts-edit.php:435
1159
  msgid ""
1160
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1161
  "and select the advert or the group the advert is in."
1162
  msgstr ""
1163
 
1164
+ #: dashboard/publisher/adverts-edit.php:203
1165
+ #: dashboard/publisher/adverts-edit.php:438
1166
  #: dashboard/publisher/groups-edit.php:140
1167
  #: dashboard/publisher/groups-edit.php:289
1168
  msgid "In a post or page"
1169
  msgstr ""
1170
 
1171
+ #: dashboard/publisher/adverts-edit.php:205
1172
+ #: dashboard/publisher/adverts-edit.php:440
1173
  #: dashboard/publisher/groups-edit.php:142
1174
  #: dashboard/publisher/groups-edit.php:291
1175
  msgid "Directly in a theme"
1176
  msgstr ""
1177
 
1178
+ #: dashboard/publisher/adverts-edit.php:211
1179
  msgid "Schedule your advert"
1180
  msgstr ""
1181
 
1182
+ #: dashboard/publisher/adverts-edit.php:215
1183
  msgid "Start date (day/month/year)"
1184
  msgstr ""
1185
 
1186
+ #: dashboard/publisher/adverts-edit.php:236
1187
  msgid "End date (day/month/year)"
1188
  msgstr ""
1189
 
1190
+ #: dashboard/publisher/adverts-edit.php:259
1191
  msgid "Start time (hh:mm)"
1192
  msgstr ""
1193
 
1194
+ #: dashboard/publisher/adverts-edit.php:266
1195
  msgid "End time (hh:mm)"
1196
  msgstr ""
1197
 
1198
+ #: dashboard/publisher/adverts-edit.php:276
1199
  msgid "Maximum Clicks"
1200
  msgstr ""
1201
 
1202
+ #: dashboard/publisher/adverts-edit.php:277
1203
+ #: dashboard/publisher/adverts-edit.php:279
1204
  msgid "Leave empty or 0 to skip this."
1205
  msgstr "※この機能を利用しない場合は、空白か0を設定して下さい。"
1206
 
1207
+ #: dashboard/publisher/adverts-edit.php:278
1208
  msgid "Maximum Impressions"
1209
  msgstr ""
1210
 
1211
+ #: dashboard/publisher/adverts-edit.php:283
1212
  msgid "Important"
1213
  msgstr ""
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:284
1216
  msgid ""
1217
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1218
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1219
  "14:00 hours. 6AM is 6:00 hours."
1220
  msgstr ""
1221
 
1222
+ #: dashboard/publisher/adverts-edit.php:288
1223
  msgid ""
1224
  "Create multiple and more advanced schedules for each advert with AdRotate "
1225
  "Pro."
1226
  msgstr ""
1227
 
1228
+ #: dashboard/publisher/adverts-edit.php:288
1229
+ #: dashboard/publisher/adverts-edit.php:357
1230
+ #: dashboard/publisher/adverts-edit.php:428
1231
  #: dashboard/publisher/groups-edit.php:191
1232
  #, fuzzy
1233
  msgid "Upgrade today"
1234
  msgstr "本日"
1235
 
1236
+ #: dashboard/publisher/adverts-edit.php:295
1237
  #: dashboard/publisher/groups-edit.php:153
1238
  #, fuzzy
1239
  msgid "Advanced"
1240
  msgstr "設定例(高度):"
1241
 
1242
+ #: dashboard/publisher/adverts-edit.php:296
1243
+ #: dashboard/publisher/adverts-edit.php:360
1244
  msgid "Available in AdRotate Pro!"
1245
  msgstr ""
1246
 
1247
+ #: dashboard/publisher/adverts-edit.php:301
1248
+ #: dashboard/publisher/groups-edit.php:331
 
1249
  msgid "Weight"
1250
  msgstr "表示頻度"
1251
 
1252
+ #: dashboard/publisher/adverts-edit.php:304
1253
  msgid "Few impressions"
1254
  msgstr ""
1255
 
1256
+ #: dashboard/publisher/adverts-edit.php:309
1257
  msgid "Less than average"
1258
  msgstr "標準より少し少ない表示(40%程度)"
1259
 
1260
+ #: dashboard/publisher/adverts-edit.php:314
1261
  msgid "Normal impressions"
1262
  msgstr ""
1263
 
1264
+ #: dashboard/publisher/adverts-edit.php:319
1265
  msgid "More than average"
1266
  msgstr "平均よりも多めの表示(70%程度)"
1267
 
1268
+ #: dashboard/publisher/adverts-edit.php:324
1269
  msgid "Many impressions"
1270
  msgstr ""
1271
 
1272
+ #: dashboard/publisher/adverts-edit.php:329
1273
  msgid "Mobile"
1274
  msgstr ""
1275
 
1276
+ #: dashboard/publisher/adverts-edit.php:331
1277
  msgid "Computers"
1278
  msgstr ""
1279
 
1280
+ #: dashboard/publisher/adverts-edit.php:334
1281
  msgid "Smartphones"
1282
  msgstr ""
1283
 
1284
+ #: dashboard/publisher/adverts-edit.php:337
1285
  msgid "Tablets"
1286
  msgstr ""
1287
 
1288
+ #: dashboard/publisher/adverts-edit.php:340
1289
  msgid ""
1290
  "Also enable mobile support in the group this advert goes in or these are "
1291
  "ignored."
1292
  msgstr ""
1293
 
1294
+ #: dashboard/publisher/adverts-edit.php:340
1295
+ msgid "Operating system detection only detects iOS/Android/Other or neither."
 
 
1296
  msgstr ""
1297
 
1298
+ #: dashboard/publisher/adverts-edit.php:344
1299
  msgid "Mobile OS"
1300
  msgstr ""
1301
 
1302
+ #: dashboard/publisher/adverts-edit.php:346
1303
  msgid "iOS"
1304
  msgstr ""
1305
 
1306
+ #: dashboard/publisher/adverts-edit.php:349
1307
  msgid "Android"
1308
  msgstr ""
1309
 
1310
+ #: dashboard/publisher/adverts-edit.php:352
1311
  msgid "Others"
1312
  msgstr ""
1313
 
1314
+ #: dashboard/publisher/adverts-edit.php:357
1315
  msgid ""
1316
  "With AdRotate Pro you can easily select which devices and mobile operating "
1317
  "systems the advert should show on!"
1318
  msgstr ""
1319
 
1320
+ #: dashboard/publisher/adverts-edit.php:360
 
 
 
 
 
 
1321
  msgid ""
1322
  "Assign the advert to a group and enable that group to use Geo Targeting."
1323
  msgstr ""
1324
 
1325
+ #: dashboard/publisher/adverts-edit.php:418
1326
  msgid "A comma separated list of items:"
1327
  msgstr ""
1328
 
1329
+ #: dashboard/publisher/adverts-edit.php:418
1330
  msgid ""
1331
  "AdRotate does not check the validity of names so make sure you spell them "
1332
  "correctly!"
1333
  msgstr ""
1334
 
1335
+ #: dashboard/publisher/adverts-edit.php:428
1336
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1337
  msgstr ""
1338
 
1339
+ #: dashboard/publisher/adverts-edit.php:452
1340
  msgid "Select Groups"
1341
  msgstr "グループを選択"
1342
 
1343
+ #: dashboard/publisher/adverts-edit.php:457
1344
  #, fuzzy
1345
  msgid "ID - Name"
1346
  msgstr "名前"
1347
 
1348
+ #: dashboard/publisher/adverts-edit.php:467
1349
  #: dashboard/publisher/groups-main.php:60
1350
  #: dashboard/settings/geotargeting.php:49
1351
  #, fuzzy
1352
  msgid "Default"
1353
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
1354
 
1355
+ #: dashboard/publisher/adverts-edit.php:468
1356
  #: dashboard/publisher/groups-main.php:61
1357
  msgid "Dynamic"
1358
  msgstr ""
1359
 
1360
+ #: dashboard/publisher/adverts-edit.php:468
1361
  #: dashboard/publisher/groups-main.php:61
1362
  #, fuzzy
1363
  msgid "second rotation"
1364
  msgstr "バナーがないか、利用不可か適応されていません。"
1365
 
1366
+ #: dashboard/publisher/adverts-edit.php:469
1367
  #: dashboard/publisher/groups-main.php:62
1368
  #, fuzzy
1369
  msgid "Block"
1370
  msgstr "ブロック管理"
1371
 
1372
+ #: dashboard/publisher/adverts-edit.php:469
1373
  #: dashboard/publisher/groups-main.php:62
1374
  #, fuzzy
1375
  msgid "grid"
1377
  "広告に表組みを指定します。2と2を入力すると2行2列になります。(初期設定は2行2"
1378
  "列です。)"
1379
 
1380
+ #: dashboard/publisher/adverts-edit.php:470
1381
  #: dashboard/publisher/groups-edit.php:199
1382
  #: dashboard/publisher/groups-main.php:63
1383
  #, fuzzy
1384
  msgid "Post Injection"
1385
  msgstr "投稿及びページ内掲載する場合:"
1386
 
1387
+ #: dashboard/publisher/adverts-edit.php:471
1388
  msgid "Geolocation"
1389
  msgstr ""
1390
 
1391
+ #: dashboard/publisher/adverts-edit.php:477
1392
  #: dashboard/publisher/groups-edit.php:57
1393
  #: dashboard/publisher/groups-main.php:70
1394
  #, fuzzy
1430
  msgstr "1週間(7日)"
1431
 
1432
  #: dashboard/publisher/adverts-error.php:71
 
1433
  #, fuzzy
1434
+ msgid "Configuration errors"
1435
  msgstr "個の広告が設定エラーになっています。"
1436
 
1437
  #: dashboard/publisher/adverts-error.php:72
 
1438
  #, fuzzy
1439
+ msgid "Expires soon"
1440
  msgstr "これは出来る限り早く修正して下さい。"
1441
 
1442
  #: dashboard/publisher/adverts-error.php:73
1443
+ #: dashboard/settings/maintenance.php:64
1444
  #, fuzzy
1445
+ msgid "Expired"
1446
  msgstr "個の広告が期限切れです。"
1447
 
1448
  #: dashboard/publisher/adverts-main.php:12
1451
 
1452
  #: dashboard/publisher/adverts-main.php:24
1453
  #, fuzzy
1454
+ msgid "Export to CSV"
1455
  msgstr "エクスポートオプション"
1456
 
1457
+ #: dashboard/publisher/adverts-main.php:44
1458
+ #: dashboard/publisher/adverts-main.php:46
1459
  #: dashboard/publisher/groups-main.php:37
1460
  #: dashboard/publisher/groups-main.php:39
1461
  msgid "Today"
1462
  msgstr "本日"
1463
 
1464
+ #: dashboard/publisher/adverts-main.php:100
1465
  msgid "No adverts created yet!"
1466
  msgstr ""
1467
 
1518
  msgid "Edit Group"
1519
  msgstr "グループ編集"
1520
 
 
 
 
 
 
1521
  #: dashboard/publisher/groups-edit.php:60
1522
  #, fuzzy
1523
  msgid "Default - Show one ad at a time"
1813
  msgid "Choose adverts"
1814
  msgstr ""
1815
 
1816
+ #: dashboard/publisher/groups-edit.php:330
1817
  msgid "Visible until"
1818
  msgstr "掲載期限"
1819
 
1821
  msgid "No adverts created!"
1822
  msgstr ""
1823
 
1824
+ #: dashboard/publisher/groups-edit.php:384
1825
+ #, fuzzy
1826
+ msgid "Configuration errors."
1827
+ msgstr "個の広告が設定エラーになっています。"
1828
+
1829
+ #: dashboard/publisher/groups-edit.php:385
1830
+ #, fuzzy
1831
+ msgid "Expires soon."
1832
+ msgstr "これは出来る限り早く修正して下さい。"
1833
+
1834
+ #: dashboard/publisher/groups-edit.php:386
1835
+ #, fuzzy
1836
+ msgid "Has expired."
1837
+ msgstr "個の広告が期限切れです。"
1838
+
1839
  #: dashboard/publisher/groups-main.php:12
1840
  msgid "Manage Groups"
1841
  msgstr "グループの管理"
1857
  msgstr "この処理は復旧できません。注意して下さい。"
1858
 
1859
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1860
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
 
1861
  msgid "OK to continue, CANCEL to stop."
1862
  msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
1863
 
1929
  msgstr ""
1930
 
1931
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1932
+ #: dashboard/settings/maintenance.php:116 dashboard/settings/misc.php:43
1933
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1934
+ #: dashboard/settings/statistics.php:73
1935
  msgid "Update Options"
1936
  msgstr "設定の更新"
1937
 
2029
 
2030
  #: dashboard/settings/general.php:50
2031
  #, fuzzy
2032
+ msgid "Set a folder where your banner images will be stored."
2033
  msgstr "バナーがないか、利用不可か適応されていません。"
2034
 
2035
  #: dashboard/settings/general.php:53
2036
+ msgid "Folder name"
2037
+ msgstr ""
 
2038
 
2039
  #: dashboard/settings/general.php:55
2040
+ #, fuzzy
2041
+ msgid "(Default: banners)."
2042
+ msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2043
 
2044
  #: dashboard/settings/general.php:56
2045
  #, fuzzy
2184
  msgid "Password/License Key"
2185
  msgstr ""
2186
 
 
 
 
 
2187
  #: dashboard/settings/maintenance.php:17
2188
  msgid ""
2189
  "Use these functions when you notice your database is slow, unresponsive and "
2221
  "made. This can vary from nothing to hundreds of KiB of data."
2222
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
2223
 
2224
+ #: dashboard/settings/maintenance.php:28
2225
+ #, fuzzy
2226
+ #| msgid "Clean-up Database"
2227
+ msgid "Clean-up Database and Files"
2228
+ msgstr "データベースのクリーンアップ"
2229
+
2230
+ #: dashboard/settings/maintenance.php:30
2231
  msgid "Clean-up Database"
2232
  msgstr "データベースのクリーンアップ"
2233
 
2234
  #: dashboard/settings/maintenance.php:30
2235
  #, fuzzy
2236
  msgid ""
2237
+ "You are about to clean up your database. This may delete expired schedules, "
2238
+ "older statistics and try to delete export files"
2239
  msgstr "データベースのクリーンアップ"
2240
 
2241
  #: dashboard/settings/maintenance.php:30
2243
  msgid "Are you sure you want to continue?"
2244
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2245
 
2246
+ #: dashboard/settings/maintenance.php:30
2247
+ msgid "THIS ACTION CAN NOT BE UNDONE!"
 
 
2248
  msgstr ""
 
 
2249
 
2250
  #: dashboard/settings/maintenance.php:31
2251
  #, fuzzy
2252
+ msgid "Delete stats older than 356 days."
2253
  msgstr "広告の削除やリセットする権限"
2254
 
2255
  #: dashboard/settings/maintenance.php:32
2256
+ msgid "Delete leftover export files."
2257
  msgstr ""
2258
 
2259
  #: dashboard/settings/maintenance.php:33
2263
  msgstr ""
2264
 
2265
  #: dashboard/settings/maintenance.php:33
2266
+ #, fuzzy
2267
  msgid ""
2268
+ "Additionally you can delete statistics and/or unused export files. This will "
2269
+ "improve the speed of your site."
2270
+ msgstr "データベースのクリーンアップ"
2271
 
2272
  #: dashboard/settings/maintenance.php:37
2273
  msgid "Re-evaluate Ads"
2281
  msgid "You are about to check all ads for errors."
2282
  msgstr "すべての広告のエラーをチェックしようとしています。"
2283
 
2284
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
2285
+ #, fuzzy
2286
+ msgid "This might take a while and may slow down your site during this action!"
2287
+ msgstr ""
2288
+ "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2289
+ "可能性があります。"
2290
+
2291
  #: dashboard/settings/maintenance.php:40
2292
  #, fuzzy
2293
  msgid ""
2334
 
2335
  #: dashboard/settings/maintenance.php:54
2336
  #, fuzzy
2337
+ msgid "Disable timers for clicks and impressions."
2338
+ msgstr "クリック"
 
 
2339
 
2340
  #: dashboard/settings/maintenance.php:55
2341
  #, fuzzy
2363
  msgid "Error"
2364
  msgstr "理解できないエラーが起こっています。"
2365
 
 
 
 
 
 
2366
  #: dashboard/settings/maintenance.php:64
2367
  #, fuzzy
2368
  msgid "Expires Soon"
2376
  msgid "Banners/assets Folder"
2377
  msgstr ""
2378
 
2379
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2380
  msgid "Exists and appears writable"
2381
  msgstr ""
2382
 
2383
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2384
  msgid "Not writable or does not exist"
2385
  msgstr ""
2386
 
2387
+ #: dashboard/settings/maintenance.php:76
2388
  msgid "Reports Folder"
2389
  msgstr ""
2390
 
2391
+ #: dashboard/settings/maintenance.php:85
2392
  msgid "Advert evaluation"
2393
  msgstr ""
2394
 
2395
+ #: dashboard/settings/maintenance.php:86
2396
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2397
  msgstr ""
2398
 
2399
+ #: dashboard/settings/maintenance.php:87
2400
+ #, fuzzy
2401
+ msgid "Clean Trackerdata"
2402
+ msgstr "データベースのクリーンアップ"
2403
+
2404
+ #: dashboard/settings/maintenance.php:88
2405
+ #, fuzzy
2406
+ msgid "Not scheduled!"
2407
+ msgstr "掲載期間"
2408
+
2409
+ #: dashboard/settings/maintenance.php:91
2410
+ msgid "Background tasks"
2411
  msgstr ""
2412
 
2413
+ #: dashboard/settings/maintenance.php:93
2414
+ msgid "Reset background tasks"
2415
+ msgstr ""
2416
+
2417
+ #: dashboard/settings/maintenance.php:98
2418
  msgid "Internal Versions"
2419
  msgstr ""
2420
 
2421
+ #: dashboard/settings/maintenance.php:99
2422
  msgid ""
2423
  "Unless you experience database issues or a warning shows below, these "
2424
  "numbers are not really relevant for troubleshooting. Support may ask for "
2425
  "them to verify your database status."
2426
  msgstr ""
2427
 
2428
+ #: dashboard/settings/maintenance.php:102
2429
  msgid "AdRotate version"
2430
  msgstr ""
2431
 
2432
+ #: dashboard/settings/maintenance.php:103
2433
+ #: dashboard/settings/maintenance.php:105
2434
  msgid "Current:"
2435
  msgstr ""
2436
 
2437
+ #: dashboard/settings/maintenance.php:103
2438
+ #: dashboard/settings/maintenance.php:105
2439
  msgid "Should be:"
2440
  msgstr ""
2441
 
2442
+ #: dashboard/settings/maintenance.php:103
2443
+ #: dashboard/settings/maintenance.php:105
2444
  msgid "Previous:"
2445
  msgstr ""
2446
 
2447
+ #: dashboard/settings/maintenance.php:104
2448
  msgid "Database version"
2449
  msgstr ""
2450
 
2451
+ #: dashboard/settings/maintenance.php:108
2452
+ #, fuzzy
2453
+ #| msgid "Manual Upgrade"
2454
+ msgid "Manual upgrade"
2455
+ msgstr "手動更新"
2456
+
2457
+ #: dashboard/settings/maintenance.php:110
2458
  msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2459
  msgstr ""
2460
 
2461
+ #: dashboard/settings/maintenance.php:110
2462
  msgid "Make sure you have a database backup!"
2463
  msgstr ""
2464
 
2465
+ #: dashboard/settings/maintenance.php:110
2466
+ #, fuzzy
2467
+ #| msgid "Ad updated"
2468
+ msgid "Run updater"
2469
+ msgstr "広告更新"
2470
 
2471
  #: dashboard/settings/misc.php:16
2472
  msgid "Miscellaneous"
2545
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2546
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2547
 
 
 
 
 
2548
  #: dashboard/settings/notifications.php:19
2549
  #, fuzzy
2550
  msgid "Set up who gets notifications if ads need your attention."
2680
  "separated. This field may not be empty!"
2681
  msgstr ""
2682
 
 
 
 
 
 
2683
  #: dashboard/settings/notifications.php:75
2684
  msgid ""
2685
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2735
  msgid "and get your API token"
2736
  msgstr ""
2737
 
 
 
 
 
2738
  #: dashboard/settings/roles.php:18
2739
  msgid "Who has access to what?"
2740
  msgstr ""
2885
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2886
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
2887
 
2888
+ #~ msgid "Empty database records removed"
2889
+ #~ msgstr "空のデータベースは削除されました。"
 
2890
 
2891
+ #, fuzzy
2892
+ #~ msgid "Location"
2893
+ #~ msgstr "バナーがないか、利用不可か適応されていません。"
2894
+
2895
+ #, fuzzy
2896
+ #~ msgid ""
2897
+ #~ "Disable timers for clicks and impressions and enable a alert window for "
2898
+ #~ "clicktracking."
2899
+ #~ msgstr "テキストリンク(クリック数調査付):"
2900
 
2901
  #, fuzzy
2902
  #~ msgid "Help AdRotate Grow"
3022
  #~ msgid "Ad evaluation next run:"
3023
  #~ msgstr "通知先"
3024
 
 
 
 
 
 
 
 
 
3025
  #, fuzzy
3026
  #~ msgid "Set up who gets notification emails."
3027
  #~ msgstr "すぐに注意を必要とする広告"
3210
  #~ msgid "Ad created"
3211
  #~ msgstr "広告作成"
3212
 
 
 
 
3213
  #~ msgid ""
3214
  #~ "The ad was saved but has an issue which might prevent it from working "
3215
  #~ "properly. Review the yellow marked ad."
3307
  #~ "button to delete those empty records."
3308
  #~ msgstr "グループを削除しようとしています。"
3309
 
 
 
 
 
 
 
3310
  #, fuzzy
3311
  #~ msgid ""
3312
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3476
  #~ msgid "Enable stats"
3477
  #~ msgstr "統計リセット"
3478
 
 
 
 
 
3479
  #, fuzzy
3480
  #~ msgid ""
3481
  #~ "Disabling this also disables click and impression limits on schedules."
4578
  #~ "ん。その為、常にデータベースのバックアップをお願いいたします。警告に注意し"
4579
  #~ "て、バックアップをまず取るようにしてください。"
4580
 
 
 
 
4581
  #~ msgid "Upgrade Database and Migrate Data"
4582
  #~ msgstr "データベースと移行データのアップグレード"
4583
 
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: 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,119 +15,121 @@ 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.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
 
126
- #: adrotate-output.php:575
127
  msgid "Oh no! Something went wrong!"
128
  msgstr "Uwaga ! Coś poszło nie tak !"
129
 
130
- #: adrotate-output.php:576
131
  msgid ""
132
  "WordPress was unable to verify the authenticity of the url you have clicked. "
133
  "Verify if the url used is valid or log in via your browser."
@@ -135,7 +137,7 @@ msgstr ""
135
  "Wordpress nie mógł sprawdzić poprawności odnośnika który \"kliknełeś\". "
136
  "Sprawdz czy odnośnik jest prawidłowy albo sprawdz go w przeglądarce. "
137
 
138
- #: adrotate-output.php:577
139
  msgid ""
140
  "If you have received the url you want to visit via email, you are being "
141
  "tricked!"
@@ -143,11 +145,11 @@ msgstr ""
143
  "Jeśli otrzymałeś wiadomość email z odnośnikiem który chciałeś odwiedzić, "
144
  "zostałeś oszukany. "
145
 
146
- #: adrotate-output.php:578
147
  msgid "Contact support if the issue persists:"
148
  msgstr "Skontaktować się z pomocą, jeśli problem nadal występuje:"
149
 
150
- #: adrotate-output.php:593
151
  msgid ""
152
  "Error, Ad is not available at this time due to schedule/geolocation "
153
  "restrictions or does not exist!"
@@ -155,7 +157,7 @@ msgstr ""
155
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
156
  "harmonogramie lub geolokalizacji lub może nie istnieć."
157
 
158
- #: adrotate-output.php:595
159
  msgid ""
160
  "Error, Ad is not available at this time due to schedule/geolocation "
161
  "restrictions!"
@@ -163,7 +165,7 @@ msgstr ""
163
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
164
  "harmonogramie lub geolokalizacji."
165
 
166
- #: adrotate-output.php:602 adrotate-output.php:604
167
  msgid ""
168
  "Either there are no banners, they are disabled or none qualified for this "
169
  "location!"
@@ -171,19 +173,19 @@ msgstr ""
171
  "Prawdopodobnie nie ma reklam albo ich wyświetlanie jest niedozwolone dla tej "
172
  "lokalizacji!"
173
 
174
- #: adrotate-output.php:610
175
  msgid "Error, no Ad ID set! Check your syntax!"
176
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
177
 
178
- #: adrotate-output.php:616
179
  msgid "Error, no group ID set! Check your syntax!"
180
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
181
 
182
- #: adrotate-output.php:621
183
  msgid "Error, group does not exist! Check your syntax!"
184
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod !"
185
 
186
- #: adrotate-output.php:627
187
  msgid ""
188
  "There was an error locating the database tables for AdRotate. Please "
189
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -191,16 +193,16 @@ msgstr ""
191
  "Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz a potem włącz "
192
  "AdRote na panelu wtyczek."
193
 
194
- #: adrotate-output.php:627
195
  msgid "If this does not solve the issue please seek support at"
196
  msgstr ""
197
  "Jeśli to nie naprawy powstałego problemu prosimy zajrzeć na strone wsparcia"
198
 
199
- #: adrotate-output.php:633
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!"
@@ -208,11 +210,11 @@ msgstr[0] ""
208
  msgstr[1] ""
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,7 +222,7 @@ msgstr[0] ""
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,232 +230,232 @@ msgstr[0] ""
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,60 +499,99 @@ msgstr "ID:"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
554
  #: dashboard/adrotatepro.php:20
555
  msgid "Satisfy your advertisers"
556
  msgstr "Zadowalaj swoich reklamodawców"
@@ -605,15 +646,21 @@ msgid ""
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, "
@@ -622,11 +669,11 @@ msgid ""
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 "
@@ -634,11 +681,11 @@ msgid ""
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,143 +693,124 @@ msgid ""
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
 
735
- #: dashboard/info.php:24
736
  msgid "Currently"
737
  msgstr "Bieżace"
738
 
739
- #: dashboard/info.php:30
740
  msgid "Your setup"
741
  msgstr "Twoje ustawienia"
742
 
743
- #: dashboard/info.php:31
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 "
785
- "plugins!"
786
  msgstr ""
787
 
788
  #: dashboard/publisher/adverts-disabled.php:15
@@ -797,7 +825,7 @@ 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
 
@@ -828,38 +856,39 @@ 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
833
  msgid "Start / End"
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"
841
- msgstr "tytuł"
 
 
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"
849
 
850
- #: dashboard/publisher/adverts-disabled.php:39
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
858
  msgid "Clicks"
859
  msgstr "Kliknięcia"
860
 
861
- #: dashboard/publisher/adverts-disabled.php:40
862
- #: dashboard/publisher/adverts-main.php:48
863
  #: dashboard/publisher/adverts-report.php:39
864
  #: dashboard/publisher/adverts-report.php:58
865
  #: dashboard/publisher/groups-report.php:40
@@ -867,54 +896,47 @@ msgstr "Kliknięcia"
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,77 +944,92 @@ msgstr ""
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,42 +1037,42 @@ msgstr ""
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,72 +1080,72 @@ msgstr ""
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
1075
  msgid "Get more features with AdRotate Pro."
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
@@ -1116,241 +1153,232 @@ msgstr "Użycie"
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,19 +1419,21 @@ msgid "For 7 days"
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"
@@ -1411,17 +1441,17 @@ msgstr ""
1411
 
1412
  #: dashboard/publisher/adverts-main.php:24
1413
  #, fuzzy
1414
- msgid "Export to XML"
1415
  msgstr "Eksportuj ustawienia"
1416
 
1417
- #: dashboard/publisher/adverts-main.php:45
1418
- #: dashboard/publisher/adverts-main.php:47
1419
  #: dashboard/publisher/groups-main.php:37
1420
  #: dashboard/publisher/groups-main.php:39
1421
  msgid "Today"
1422
  msgstr "Dziś"
1423
 
1424
- #: dashboard/publisher/adverts-main.php:102
1425
  msgid "No adverts created yet!"
1426
  msgstr ""
1427
 
@@ -1475,11 +1505,6 @@ msgstr "Nowa grupa"
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"
@@ -1764,7 +1789,7 @@ msgstr ""
1764
  msgid "Choose adverts"
1765
  msgstr ""
1766
 
1767
- #: dashboard/publisher/groups-edit.php:335
1768
  msgid "Visible until"
1769
  msgstr "Widoczne do"
1770
 
@@ -1772,6 +1797,18 @@ msgstr "Widoczne do"
1772
  msgid "No adverts created!"
1773
  msgstr ""
1774
 
 
 
 
 
 
 
 
 
 
 
 
 
1775
  #: dashboard/publisher/groups-main.php:12
1776
  msgid "Manage Groups"
1777
  msgstr "Zarządzaj grupami"
@@ -1793,8 +1830,7 @@ msgid "This action can not be undone!"
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,9 +1897,9 @@ msgid ""
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
 
@@ -1959,15 +1995,19 @@ msgid "Banner Folder"
1959
  msgstr "Folder banerów"
1960
 
1961
  #: dashboard/settings/general.php:50
1962
- msgid "Set a location where your banner images will be stored."
 
 
1963
  msgstr "Wskaż lokalizację gdzie przechowywane będą obrazy reklam."
1964
 
1965
  #: dashboard/settings/general.php:53
1966
- msgid "Location"
1967
- msgstr "Lokalizacja"
1968
 
1969
  #: dashboard/settings/general.php:55
1970
- msgid "(Default: wp-content/banners/)."
 
 
1971
  msgstr "(Domyślnie: wp-content/banners/)."
1972
 
1973
  #: dashboard/settings/general.php:56
@@ -2110,10 +2150,6 @@ msgstr ""
2110
  msgid "Password/License Key"
2111
  msgstr ""
2112
 
2113
- #: dashboard/settings/maintenance.php:16
2114
- msgid "Maintenance"
2115
- msgstr "Ostrzeżenie"
2116
-
2117
  #: dashboard/settings/maintenance.php:17
2118
  msgid ""
2119
  "Use these functions when you notice your database is slow, unresponsive and "
@@ -2153,14 +2189,24 @@ msgstr ""
2153
  "dokonujesz. Może to skutkować wzrostem przechowywanych danych od kilku "
2154
  "kilobajtow do kilku GB."
2155
 
2156
- #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
 
 
 
 
 
 
2157
  msgid "Clean-up Database"
2158
  msgstr "Wyczyść bazę danych"
2159
 
2160
  #: dashboard/settings/maintenance.php:30
 
 
 
 
2161
  msgid ""
2162
- "You are about to clean up your database. This may delete expired schedules "
2163
- "and older statistics."
2164
  msgstr ""
2165
  "Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
2166
  "harmonogramów i starych statystyk."
@@ -2169,17 +2215,18 @@ msgstr ""
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
 
2177
  #: dashboard/settings/maintenance.php:31
2178
- msgid "Delete stats older than 356 days (Optional)."
 
 
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
@@ -2189,10 +2236,16 @@ msgid ""
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"
@@ -2206,6 +2259,10 @@ msgstr "Oszacuj ponownie wszystkie reklamy."
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 "
@@ -2253,12 +2310,10 @@ 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."
2259
- msgstr ""
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."
@@ -2280,10 +2335,6 @@ msgstr "Normalny"
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"
@@ -2296,74 +2347,95 @@ msgstr ""
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"
@@ -2445,10 +2517,6 @@ msgstr ""
2445
  "AdRotate. Jeśli używasz kodu PHP musisz sam wprowadzić poprwany kod do "
2446
  "strony."
2447
 
2448
- #: dashboard/settings/notifications.php:18
2449
- msgid "Notifications"
2450
- msgstr "Powiadomienie"
2451
-
2452
  #: dashboard/settings/notifications.php:19
2453
  msgid "Set up who gets notifications if ads need your attention."
2454
  msgstr "Ustal kto dostaje powiadomienia gdy reklamy wymagają interwencji."
@@ -2588,10 +2656,6 @@ msgid ""
2588
  "separated. This field may not be empty!"
2589
  msgstr ""
2590
 
2591
- #: dashboard/settings/notifications.php:72
2592
- msgid "Advertisers"
2593
- msgstr "Reklamodawcy"
2594
-
2595
  #: dashboard/settings/notifications.php:75
2596
  msgid ""
2597
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
@@ -2647,10 +2711,6 @@ msgstr ""
2647
  msgid "and get your API token"
2648
  msgstr ""
2649
 
2650
- #: dashboard/settings/roles.php:17
2651
- msgid "Roles"
2652
- msgstr ""
2653
-
2654
  #: dashboard/settings/roles.php:18
2655
  msgid "Who has access to what?"
2656
  msgstr "Kto ma dostęp i do czego?"
@@ -2799,15 +2859,27 @@ msgid ""
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"
@@ -2947,12 +3019,6 @@ msgstr ""
2947
  #~ msgid "Ad evaluation next run:"
2948
  #~ msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
2949
 
2950
- #~ msgid "Not scheduled!"
2951
- #~ msgstr "Nie ustalono harmnogramu!"
2952
-
2953
- #~ msgid "Clean Trackerdata next run:"
2954
- #~ msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
2955
-
2956
  #~ msgid "Set up who gets notification emails."
2957
  #~ msgstr "Ustal kto otrzymuje powiadomienia na email."
2958
 
@@ -3148,9 +3214,6 @@ msgstr ""
3148
  #~ msgid "Ad created"
3149
  #~ msgstr "Reklama utworzona"
3150
 
3151
- #~ msgid "Ad updated"
3152
- #~ msgstr "Reklamy zaktualizowana"
3153
-
3154
  #~ msgid ""
3155
  #~ "The ad was saved but has an issue which might prevent it from working "
3156
  #~ "properly. Review the yellow marked ad."
@@ -3250,13 +3313,6 @@ msgstr ""
3250
  #~ "Jeśli tworzyłeś reklamę lub grupę reklam i nie zapisały się one poprawnie "
3251
  #~ "po ich utworzeniu, użyj przycisku \"usuń\" by usunąć puste rekordy."
3252
 
3253
- #~ msgid ""
3254
- #~ "Additionally you can clean up old statistics. This will improve the speed "
3255
- #~ "of your site."
3256
- #~ msgstr ""
3257
- #~ "Dodatkowo możęsz usunąć stare statystyki to poprawi szybkość działania "
3258
- #~ "strony."
3259
-
3260
  #~ msgid ""
3261
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3262
  #~ "becomes unusable in any way or by any means in whichever way I will not "
@@ -3510,9 +3566,6 @@ msgstr ""
3510
  #~ msgid "Enable stats"
3511
  #~ msgstr "Włącz statystyki"
3512
 
3513
- #~ msgid "Track clicks and impressions."
3514
- #~ msgstr "Śledź kliknięcia i wyświetlenia."
3515
-
3516
  #, fuzzy
3517
  #~ msgid ""
3518
  #~ "Disabling this also disables click and impression limits on schedules."
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-19 15:30+0800\n"
6
+ "PO-Revision-Date: 2017-06-19 15:30+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 2.0.1\n"
19
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
20
  "|| n%100>=20) ? 1 : 2);\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
+ #: adrotate-functions.php:722
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
+ #: adrotate-functions.php:725
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
+ #: adrotate-functions.php:768
32
  msgid "Ad saved"
33
  msgstr ""
34
 
35
+ #: adrotate-functions.php:772
36
  msgid "Group saved"
37
  msgstr ""
38
 
39
+ #: adrotate-functions.php:776
40
  msgid "Ad(s) deleted"
41
  msgstr "Reklama usunięta"
42
 
43
+ #: adrotate-functions.php:780
44
  msgid "Group deleted"
45
  msgstr "Grupa usunięta"
46
 
47
+ #: adrotate-functions.php:784
48
  msgid "Ad(s) statistics reset"
49
  msgstr "Resetuj statystyki reklamy"
50
 
51
+ #: adrotate-functions.php:788
52
  msgid "Ad(s) renewed"
53
  msgstr "Odnów reklamę"
54
 
55
+ #: adrotate-functions.php:792
56
  msgid "Ad(s) deactivated"
57
  msgstr "Reklama wyłączona"
58
 
59
+ #: adrotate-functions.php:796
60
  msgid "Ad(s) activated"
61
  msgstr "Reklama włączona"
62
 
63
+ #: adrotate-functions.php:800
64
  msgid "Group including it's Ads deleted"
65
  msgstr "Grupa wraz z reklamami usunięta"
66
 
67
+ #: adrotate-functions.php:804
68
  #, fuzzy
69
  msgid "Export created"
70
  msgstr "Reklama utworzona"
71
 
72
+ #: adrotate-functions.php:809
73
  msgid "Settings saved"
74
  msgstr "Ustawienia zapisane"
75
 
76
+ #: adrotate-functions.php:813
77
  msgid "Database optimized"
78
  msgstr "Baza danych zoptymalizowana"
79
 
80
+ #: adrotate-functions.php:817
81
  msgid "Database repaired"
82
  msgstr "Baza danych naprawiona"
83
 
84
+ #: adrotate-functions.php:821
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:825
89
+ #, fuzzy
90
+ #| msgid "Clean-up Database"
91
+ msgid "Cleanup complete"
92
+ msgstr "Wyczyść bazę danych"
93
 
94
+ #: adrotate-functions.php:830
95
  msgid "Action prohibited"
96
  msgstr "Czynność zabroniona."
97
 
98
+ #: adrotate-functions.php:834
99
  msgid ""
100
  "The ad was saved but has an issue which might prevent it from working "
101
  "properly. Review the colored ad."
102
  msgstr ""
103
 
104
+ #: adrotate-functions.php:838
105
  msgid "No data found in selected time period"
106
  msgstr "Nie znaleziono żadnych wyników dla podanego przedziału czasowego."
107
 
108
+ #: adrotate-functions.php:842
109
  msgid "Database can only be optimized or cleaned once every hour"
110
  msgstr "Bazadanych może być optymalizowana i czyszczona jedynie raz na godzinę"
111
 
112
+ #: adrotate-functions.php:846
113
  msgid "Form can not be (partially) empty!"
114
  msgstr ""
115
 
116
+ #: adrotate-functions.php:850
117
  msgid "No ads found."
118
  msgstr ""
119
 
120
+ #: adrotate-functions.php:854
121
  msgid "Unexpected error"
122
  msgstr ""
123
 
124
+ #: adrotate-manage-publisher.php:665
125
  msgid "AdRotate Advertiser"
126
  msgstr ""
127
 
128
+ #: adrotate-output.php:551
129
  msgid "Oh no! Something went wrong!"
130
  msgstr "Uwaga ! Coś poszło nie tak !"
131
 
132
+ #: adrotate-output.php:552
133
  msgid ""
134
  "WordPress was unable to verify the authenticity of the url you have clicked. "
135
  "Verify if the url used is valid or log in via your browser."
137
  "Wordpress nie mógł sprawdzić poprawności odnośnika który \"kliknełeś\". "
138
  "Sprawdz czy odnośnik jest prawidłowy albo sprawdz go w przeglądarce. "
139
 
140
+ #: adrotate-output.php:553
141
  msgid ""
142
  "If you have received the url you want to visit via email, you are being "
143
  "tricked!"
145
  "Jeśli otrzymałeś wiadomość email z odnośnikiem który chciałeś odwiedzić, "
146
  "zostałeś oszukany. "
147
 
148
+ #: adrotate-output.php:554
149
  msgid "Contact support if the issue persists:"
150
  msgstr "Skontaktować się z pomocą, jeśli problem nadal występuje:"
151
 
152
+ #: adrotate-output.php:569
153
  msgid ""
154
  "Error, Ad is not available at this time due to schedule/geolocation "
155
  "restrictions or does not exist!"
157
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
158
  "harmonogramie lub geolokalizacji lub może nie istnieć."
159
 
160
+ #: adrotate-output.php:571
161
  msgid ""
162
  "Error, Ad is not available at this time due to schedule/geolocation "
163
  "restrictions!"
165
  "Błąd, Reklama jest nie dostępna w tym momecie z powodu ograniczeń w "
166
  "harmonogramie lub geolokalizacji."
167
 
168
+ #: adrotate-output.php:578 adrotate-output.php:580
169
  msgid ""
170
  "Either there are no banners, they are disabled or none qualified for this "
171
  "location!"
173
  "Prawdopodobnie nie ma reklam albo ich wyświetlanie jest niedozwolone dla tej "
174
  "lokalizacji!"
175
 
176
+ #: adrotate-output.php:586
177
  msgid "Error, no Ad ID set! Check your syntax!"
178
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
179
 
180
+ #: adrotate-output.php:592
181
  msgid "Error, no group ID set! Check your syntax!"
182
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod!"
183
 
184
+ #: adrotate-output.php:597
185
  msgid "Error, group does not exist! Check your syntax!"
186
  msgstr "Błąd, nie wybrano żadnego ID reklamy ! Sprawdz swój kod !"
187
 
188
+ #: adrotate-output.php:603
189
  msgid ""
190
  "There was an error locating the database tables for AdRotate. Please "
191
  "deactivate and re-activate AdRotate from the plugin page!!"
193
  "Wystąpił błąd dostępu do tabel AdRotate w bazie danych. Wyłącz a potem włącz "
194
  "AdRote na panelu wtyczek."
195
 
196
+ #: adrotate-output.php:603
197
  msgid "If this does not solve the issue please seek support at"
198
  msgstr ""
199
  "Jeśli to nie naprawy powstałego problemu prosimy zajrzeć na strone wsparcia"
200
 
201
+ #: adrotate-output.php:609
202
  msgid "An unknown error occured."
203
  msgstr "Pojawił się nieznany błąd."
204
 
205
+ #: adrotate-output.php:628
206
  #, php-format
207
  msgid "One advert is expired."
208
  msgid_plural "%1$s adverts expired!"
210
  msgstr[1] ""
211
  msgstr[2] ""
212
 
213
+ #: adrotate-output.php:628 adrotate-output.php:631 adrotate-output.php:635
214
  msgid "Check adverts"
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:631
218
  #, php-format
219
  msgid "One advert expires soon."
220
  msgid_plural "%1$s adverts are almost expiring!"
222
  msgstr[1] ""
223
  msgstr[2] ""
224
 
225
+ #: adrotate-output.php:635
226
  #, php-format
227
  msgid "One advert with configuration errors."
228
  msgid_plural "%1$s adverts have configuration errors!"
230
  msgstr[1] ""
231
  msgstr[2] ""
232
 
233
+ #: adrotate-output.php:640
234
  msgid ""
235
  "You have enable caching support but W3 Total Cache is not active on your "
236
  "site!"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:643
240
  msgid ""
241
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
242
  "not set."
243
  msgstr ""
244
 
245
+ #: adrotate-output.php:648
246
  msgid "Your AdRotate Banner folder is not writable or does not exist."
247
  msgstr ""
248
 
249
+ #: adrotate-output.php:667
250
  msgid "one issue that requires"
251
  msgid_plural "several issues that require"
252
  msgstr[0] ""
253
  msgstr[1] ""
254
  msgstr[2] ""
255
 
256
+ #: adrotate-output.php:688 dashboard/adrotatepro.php:87
257
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
258
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
259
+ #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
260
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:97 dashboard/info.php:98
261
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:104
262
+ #: dashboard/info.php:105 dashboard/info.php:106 dashboard/info.php:107
263
  #: dashboard/settings/geotargeting.php:35
264
  #, fuzzy
265
  msgid "Buy now"
266
  msgstr "Kup"
267
 
268
+ #: adrotate-output.php:689
269
  msgid ""
270
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
271
  "to the <strong>PRO</strong> version"
272
  msgstr ""
273
 
274
+ #: adrotate-output.php:689
275
  #, php-format
276
  msgid ""
277
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
278
  msgstr ""
279
 
280
+ #: adrotate-output.php:689
281
  msgid "Thank you for your purchase!"
282
  msgstr ""
283
 
284
+ #: adrotate-output.php:715
285
  msgid "one plugin"
286
  msgid_plural "several plugins"
287
  msgstr[0] ""
288
  msgstr[1] ""
289
  msgstr[2] ""
290
 
291
+ #: adrotate-output.php:752
292
  msgid ""
293
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
294
  "menu. If you need help getting started take a look at the"
295
  msgstr ""
296
 
297
+ #: adrotate-output.php:752
298
  msgid "manuals"
299
  msgstr "instrukcje"
300
 
301
+ #: adrotate-output.php:752 adrotate-output.php:822
302
  msgid "and"
303
  msgstr ""
304
 
305
+ #: adrotate-output.php:752
306
  msgid "forums"
307
  msgstr ""
308
 
309
+ #: adrotate-output.php:785
310
  #, fuzzy
311
  msgid "Useful Links"
312
  msgstr "Użyteczne odnośniki."
313
 
314
+ #: adrotate-output.php:786
315
  msgid "Useful links to learn more about AdRotate"
316
  msgstr ""
317
 
318
+ #: adrotate-output.php:788
319
  msgid "AdRotate website"
320
  msgstr ""
321
 
322
+ #: adrotate-output.php:789
323
  #, fuzzy
324
  msgid "Getting Started With AdRotate"
325
  msgstr "Więcej ustawień z AdRotate Pro"
326
 
327
+ #: adrotate-output.php:790
328
  #, fuzzy
329
  msgid "AdRotate manuals"
330
  msgstr "Informacja AdRotate "
331
 
332
+ #: adrotate-output.php:791
333
  #, fuzzy
334
  msgid "AdRotate Support Forum"
335
  msgstr "Sklep AdRotate"
336
 
337
+ #: adrotate-output.php:814 dashboard/info.php:49
338
  msgid "Support AdRotate"
339
  msgstr "Wesprzyj AdRotate"
340
 
341
+ #: adrotate-output.php:815
342
  msgid "Check out my website"
343
  msgstr ""
344
 
345
+ #: adrotate-output.php:822
346
  msgid ""
347
  "Many users only think to review AdRotate when something goes wrong while "
348
  "thousands of people happily use AdRotate."
349
  msgstr ""
350
 
351
+ #: adrotate-output.php:822
352
  msgid "If you find AdRotate useful please leave your"
353
  msgstr ""
354
 
355
+ #: adrotate-output.php:822
356
  msgid "rating"
357
  msgstr ""
358
 
359
+ #: adrotate-output.php:822
360
  #, fuzzy
361
  msgid "review"
362
  msgstr ""
363
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
364
 
365
+ #: adrotate-output.php:822
366
  msgid "on WordPress.org to help AdRotate grow in a positive way"
367
  msgstr ""
368
 
369
+ #: adrotate-output.php:848 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:848
375
  msgid "More information..."
376
  msgstr "Więcej informacji"
377
 
378
+ #: adrotate-output.php:849
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:849
383
  msgid "Learn more"
384
  msgstr "Dowiedź się więcej"
385
 
386
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:220
387
+ #: dashboard/publisher/adverts-edit.php:241
388
  msgid "January"
389
  msgstr "Styczeń "
390
 
391
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:221
392
+ #: dashboard/publisher/adverts-edit.php:242
393
  msgid "February"
394
  msgstr "Luty"
395
 
396
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:222
397
+ #: dashboard/publisher/adverts-edit.php:243
398
  msgid "March"
399
  msgstr "Marzec"
400
 
401
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:223
402
+ #: dashboard/publisher/adverts-edit.php:244
403
  msgid "April"
404
  msgstr "Kwiecień"
405
 
406
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:224
407
+ #: dashboard/publisher/adverts-edit.php:245
408
  msgid "May"
409
  msgstr "Maj"
410
 
411
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:225
412
+ #: dashboard/publisher/adverts-edit.php:246
413
  msgid "June"
414
  msgstr "Czerwiec"
415
 
416
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:226
417
+ #: dashboard/publisher/adverts-edit.php:247
418
  msgid "July"
419
  msgstr "Lipiec"
420
 
421
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:227
422
+ #: dashboard/publisher/adverts-edit.php:248
423
  msgid "August"
424
  msgstr "Sierpień"
425
 
426
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:228
427
+ #: dashboard/publisher/adverts-edit.php:249
428
  msgid "September"
429
  msgstr "Wrzesień"
430
 
431
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:229
432
+ #: dashboard/publisher/adverts-edit.php:250
433
  msgid "October"
434
  msgstr "Pażdziernik"
435
 
436
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:230
437
+ #: dashboard/publisher/adverts-edit.php:251
438
  msgid "November"
439
  msgstr "Listopad"
440
 
441
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:231
442
+ #: dashboard/publisher/adverts-edit.php:252
443
  msgid "December"
444
  msgstr "Grudzień"
445
 
446
+ #: adrotate-statistics.php:143
447
  msgid "Previous"
448
  msgstr "Poprzedni"
449
 
450
+ #: adrotate-statistics.php:145
451
  msgid "This month"
452
  msgstr "Obecny miesiąc"
453
 
454
+ #: adrotate-statistics.php:146
455
  msgid "Next"
456
  msgstr "Następny"
457
 
458
+ #: adrotate-statistics.php:232
459
  msgid "No data to show!"
460
  msgstr "Brak danych !"
461
 
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:103
503
  msgid "General Info"
504
  msgstr "Informacje główne"
505
 
506
+ #: adrotate.php:104
507
  msgid "AdRotate Pro"
508
  msgstr "AdRotate Pro"
509
 
510
+ #: adrotate.php:105 dashboard/info.php:40
511
+ #: dashboard/publisher/adverts-edit.php:458
512
  #: dashboard/publisher/groups-main.php:34
513
  msgid "Adverts"
514
  msgstr "Reklamy"
515
 
516
+ #: adrotate.php:106 dashboard/info.php:44
517
  msgid "Groups"
518
  msgstr "Grupy"
519
 
520
+ #: adrotate.php:107
521
  msgid "Settings"
522
  msgstr "Ustawienia"
523
 
524
+ #: adrotate.php:125
525
  msgid "AdRotate Info"
526
  msgstr "Informacja AdRotate "
527
 
528
+ #: adrotate.php:143
529
  msgid "AdRotate Professional"
530
  msgstr "AdRotate Professional"
531
 
532
+ #: adrotate.php:183
533
  msgid "Advert Management"
534
  msgstr ""
535
 
536
+ #: adrotate.php:241 adrotate.php:308
537
  msgid "Manage"
538
  msgstr "Zarządzaj"
539
 
540
+ #: adrotate.php:242 adrotate.php:309
541
  msgid "Add New"
542
  msgstr "Dodaj nową"
543
 
544
+ #: adrotate.php:302
545
  msgid "Group Management"
546
  msgstr "Zarządzanie grupą reklam"
547
 
548
+ #: adrotate.php:311
549
  msgid "Report"
550
  msgstr "Raport"
551
 
552
+ #: adrotate.php:356
553
  msgid "AdRotate Settings"
554
  msgstr "Ustawienia AdRotate"
555
 
556
+ #: adrotate.php:361
557
+ #, fuzzy
558
+ #| msgid "General Info"
559
+ msgid "General"
560
+ msgstr "Informacje główne"
561
+
562
+ #: adrotate.php:362 dashboard/settings/notifications.php:18
563
+ msgid "Notifications"
564
+ msgstr "Powiadomienie"
565
+
566
+ #: adrotate.php:363 dashboard/publisher/adverts-disabled.php:69
567
+ #: dashboard/publisher/adverts-error.php:63
568
+ #: dashboard/publisher/adverts-main.php:81
569
+ #: dashboard/publisher/groups-main.php:70
570
+ msgid "Stats"
571
+ msgstr "Statystyki"
572
+
573
+ #: adrotate.php:364 dashboard/publisher/adverts-edit.php:359
574
+ #: dashboard/publisher/groups-edit.php:180
575
+ #: dashboard/settings/advertisers.php:38
576
+ msgid "Geo Targeting"
577
+ msgstr "Geo Targeting"
578
+
579
+ #: adrotate.php:365 dashboard/settings/notifications.php:72
580
+ msgid "Advertisers"
581
+ msgstr "Reklamodawcy"
582
+
583
+ #: adrotate.php:366 dashboard/settings/roles.php:17
584
+ msgid "Roles"
585
+ msgstr ""
586
+
587
+ #: adrotate.php:367
588
+ msgid "Misc"
589
+ msgstr ""
590
+
591
+ #: adrotate.php:368 dashboard/settings/maintenance.php:16
592
+ msgid "Maintenance"
593
+ msgstr "Ostrzeżenie"
594
+
595
  #: dashboard/adrotatepro.php:20
596
  msgid "Satisfy your advertisers"
597
  msgstr "Zadowalaj swoich reklamodawców"
646
  "forum. Get a solution (usually) within one business day."
647
  msgstr ""
648
 
649
+ #: dashboard/adrotatepro.php:48
650
  msgid "AdRotate is brought to you by"
651
  msgstr "Możesz koszystać z AdRotate dzięki"
652
 
653
+ #: dashboard/adrotatepro.php:51
654
+ msgid ""
655
+ "I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner "
656
+ "to find out more about me and what I am doing!"
657
+ msgstr ""
658
+
659
+ #: dashboard/adrotatepro.php:62
660
  msgid "Schedule all campaigns with ease"
661
  msgstr "Zaplanuj z łatwością wszystkie kampanie reklamowe"
662
 
663
+ #: dashboard/adrotatepro.php:65
664
  msgid ""
665
  "Schedule your adverts and set up advertising campaigns based on dates you or "
666
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
669
  "schedules for adverts."
670
  msgstr ""
671
 
672
+ #: dashboard/adrotatepro.php:69
673
  msgid "Avoid adblockers"
674
  msgstr ""
675
 
676
+ #: dashboard/adrotatepro.php:72
677
  msgid ""
678
  "Try and avoid adblockers so your adverts get the exposure you want them to "
679
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
681
  "adverts smartly so these features reach their full potential!"
682
  msgstr ""
683
 
684
+ #: dashboard/adrotatepro.php:76
685
  msgid "Stay up-to-date with notifications"
686
  msgstr ""
687
 
688
+ #: dashboard/adrotatepro.php:79
689
  msgid ""
690
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
691
  "adverts expire or need your attention. Additionally, send push notifications "
693
  "or when advertisers create new adverts. Never miss an expiration date again."
694
  msgstr ""
695
 
696
+ #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
697
+ #: dashboard/info.php:93
698
  msgid "Buy AdRotate Professional"
699
  msgstr "Kup AdRotate Pro"
700
 
701
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
702
  msgid "Single License"
703
  msgstr ""
704
 
705
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
706
+ msgid "One WordPress installation."
707
+ msgstr ""
708
 
709
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
710
+ #: dashboard/info.php:98 dashboard/info.php:105
711
  msgid "Duo License"
712
  msgstr "Podwójna licencja"
713
 
714
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:98
715
+ msgid "Two WordPress installations."
716
+ msgstr ""
717
 
718
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
719
+ #: dashboard/info.php:99 dashboard/info.php:106
720
  msgid "Multi License"
721
  msgstr "Multi licencja"
722
 
723
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:99
724
+ msgid "Up to five WordPress installations."
725
+ msgstr ""
726
 
727
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
728
+ #: dashboard/info.php:100 dashboard/info.php:107
729
  msgid "Developer License"
730
  msgstr "Licencja Programisty"
731
 
732
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:100
733
  msgid "Unlimited WordPress installations and/or networks."
734
  msgstr ""
735
 
736
+ #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
737
+ #: dashboard/info.php:101 dashboard/info.php:109
738
  msgid "Compare licenses"
739
  msgstr "Porównaj licencje."
740
 
741
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
742
  msgid "Not sure which license is for you? Compare them..."
743
  msgstr "Nie wiesz jaka licencja jest dla Ciebie? Porównaj je..."
744
 
745
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
746
  msgid "All Licenses"
747
  msgstr "Wszystkie licencje"
748
 
749
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
750
  msgid "Lifetime License"
751
  msgstr ""
752
 
753
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
754
  msgid "Single installation."
755
  msgstr ""
756
 
757
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:105
758
  msgid "Up to 2 installations."
759
  msgstr ""
760
 
761
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:106
762
  msgid "Up to 10 installations."
763
  msgstr ""
764
 
765
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:107
766
  msgid "Up to 25 installations or multisite networks."
767
  msgstr ""
768
 
769
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:108
770
  msgid ""
771
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
772
  msgstr ""
773
 
774
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
775
  msgid "Not sure which license is for you?"
776
  msgstr ""
777
 
778
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
779
  msgid "Compare Licenses"
780
  msgstr ""
781
 
782
+ #: dashboard/info.php:27
783
  msgid "Currently"
784
  msgstr "Bieżace"
785
 
786
+ #: dashboard/info.php:33
787
  msgid "Your setup"
788
  msgstr "Twoje ustawienia"
789
 
790
+ #: dashboard/info.php:34
791
  msgid "Adverts that need you"
792
  msgstr "Reklamy wymagające uwagi"
793
 
794
+ #: dashboard/info.php:41
795
  msgid "(Almost) Expired"
796
  msgstr "(Wkrótce) wygasa "
797
 
798
+ #: dashboard/info.php:45
799
  msgid "Have errors"
800
  msgstr "Posiada błędy"
801
 
802
+ #: dashboard/info.php:50
803
  msgid ""
804
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
805
  "for updates about me and my plugins. Thank you!"
806
  msgstr ""
807
 
808
+ #: dashboard/info.php:74
809
+ msgid "Arnan de Gans News & Updates"
810
  msgstr ""
811
 
812
+ #: dashboard/info.php:114
813
+ msgid "Join the Media.net advertising network"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
814
  msgstr ""
815
 
816
  #: dashboard/publisher/adverts-disabled.php:15
825
  msgstr "Działania masowe"
826
 
827
  #: dashboard/publisher/adverts-disabled.php:21
828
+ #: dashboard/publisher/adverts-edit.php:176
829
  msgid "Activate"
830
  msgstr "Aktywuj"
831
 
856
  msgstr "ID"
857
 
858
  #: dashboard/publisher/adverts-disabled.php:36
859
+ #: dashboard/publisher/adverts-error.php:41
860
  #: dashboard/publisher/adverts-main.php:40
861
  msgid "Start / End"
862
  msgstr "Start / Koniec"
863
 
864
  #: dashboard/publisher/adverts-disabled.php:37
865
+ #: dashboard/publisher/adverts-error.php:40
 
866
  #: dashboard/publisher/adverts-main.php:41
867
+ #: dashboard/publisher/groups-edit.php:51
868
+ #: dashboard/publisher/groups-main.php:33
869
+ msgid "Name"
870
+ msgstr "Nazwa"
871
 
872
+ #: dashboard/publisher/adverts-disabled.php:39
873
+ #: dashboard/publisher/adverts-main.php:43
874
+ #: dashboard/publisher/groups-edit.php:333
875
  #: dashboard/publisher/groups-main.php:36
876
  msgid "Shown"
877
  msgstr "Wyświetlane"
878
 
879
+ #: dashboard/publisher/adverts-disabled.php:40
880
+ #: dashboard/publisher/adverts-main.php:45
881
  #: dashboard/publisher/adverts-report.php:36
882
  #: dashboard/publisher/adverts-report.php:57
883
+ #: dashboard/publisher/groups-edit.php:334
884
  #: dashboard/publisher/groups-main.php:38
885
  #: dashboard/publisher/groups-report.php:37
886
  #: dashboard/publisher/groups-report.php:58
887
  msgid "Clicks"
888
  msgstr "Kliknięcia"
889
 
890
+ #: dashboard/publisher/adverts-disabled.php:41
891
+ #: dashboard/publisher/adverts-main.php:47
892
  #: dashboard/publisher/adverts-report.php:39
893
  #: dashboard/publisher/adverts-report.php:58
894
  #: dashboard/publisher/groups-report.php:40
896
  msgid "CTR"
897
  msgstr "CTR"
898
 
899
+ #: dashboard/publisher/adverts-disabled.php:69
900
+ #: dashboard/publisher/adverts-error.php:63
901
+ #: dashboard/publisher/adverts-main.php:81
902
  #: dashboard/publisher/groups-main.php:70
903
  msgid "Edit"
904
  msgstr "Edytuj"
905
 
906
+ #: dashboard/publisher/adverts-disabled.php:69
907
+ #: dashboard/publisher/adverts-error.php:63
908
+ #: dashboard/publisher/adverts-main.php:81
 
 
 
 
 
 
 
909
  #, fuzzy
910
  msgid "Groups:"
911
  msgstr "Grupy"
912
 
913
+ #: dashboard/publisher/adverts-edit.php:48
914
  msgid "The AdCode cannot be empty!"
915
  msgstr "Kod reklamy nie może być pusty!"
916
 
917
+ #: dashboard/publisher/adverts-edit.php:51
918
  msgid ""
919
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
920
  "use!"
921
  msgstr ""
922
 
923
+ #: dashboard/publisher/adverts-edit.php:54
924
  msgid ""
925
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
926
  "use!"
927
  msgstr ""
928
 
929
+ #: dashboard/publisher/adverts-edit.php:57
930
  msgid ""
931
  "There is a problem saving the image. Please reset your image and re-save the "
932
  "ad!"
933
  msgstr ""
934
 
935
+ #: dashboard/publisher/adverts-edit.php:60
936
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
937
  msgstr ""
938
 
939
+ #: dashboard/publisher/adverts-edit.php:65
940
  msgid ""
941
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
942
  "the ad!"
944
  "AdRotate nie może znaleść błedu ale reklama jest oznaczona jako zawierajaca "
945
  "błędy. Sprobuj zapisać ją ponownie!"
946
 
947
+ #: dashboard/publisher/adverts-edit.php:68
948
  msgid "This ad is expired and currently not shown on your website!"
949
  msgstr "Ta reklama wygasła i obecnie nie jest wyświetlana na stronie!"
950
 
951
+ #: dashboard/publisher/adverts-edit.php:71
952
  msgid "The ad will expire in less than 2 days!"
953
  msgstr "Ta reklama wygaśnie za 2 dni!"
954
 
955
+ #: dashboard/publisher/adverts-edit.php:74
956
  msgid "This ad will expire in less than 7 days!"
957
  msgstr "Ta reklama wygaśnie za 7 dni!"
958
 
959
+ #: dashboard/publisher/adverts-edit.php:77
960
  msgid "This ad has been disabled and does not rotate on your site!"
961
  msgstr "Reklama został wyłączona i nie jest wyświetlana na stronie!"
962
 
963
+ #: dashboard/publisher/adverts-edit.php:81
964
+ msgid ""
965
+ "This advert uses the obsolete Responsive feature. Please use the more "
966
+ "reliable Mobile feature! Saving the advert will disable the responsive "
967
+ "option silently."
968
+ msgstr ""
969
+
970
+ #: dashboard/publisher/adverts-edit.php:106
971
  msgid "New Advert"
972
  msgstr "Nowa reklama"
973
 
974
+ #: dashboard/publisher/adverts-edit.php:108
975
  msgid "Edit Advert"
976
  msgstr "Edytuj reklamę"
977
 
978
+ #: dashboard/publisher/adverts-edit.php:114
979
+ msgid "Title"
980
+ msgstr "tytuł"
981
+
982
+ #: dashboard/publisher/adverts-edit.php:120
983
  msgid "AdCode"
984
  msgstr ""
985
 
986
+ #: dashboard/publisher/adverts-edit.php:125
987
  msgid "Basic Examples:"
988
  msgstr "Proste przykłady:"
989
 
990
+ #: dashboard/publisher/adverts-edit.php:129
991
+ msgid "Get better adverts from Media.net"
992
+ msgstr ""
993
+
994
+ #: dashboard/publisher/adverts-edit.php:134
995
  msgid "Useful tags"
996
  msgstr ""
997
 
998
+ #: dashboard/publisher/adverts-edit.php:136
999
  msgid "Insert the advert ID Number."
1000
  msgstr ""
1001
 
1002
+ #: dashboard/publisher/adverts-edit.php:136
1003
  msgid "Required when selecting a asset below."
1004
  msgstr ""
1005
 
1006
+ #: dashboard/publisher/adverts-edit.php:136
1007
  msgid "Insert the advert name."
1008
  msgstr ""
1009
 
1010
+ #: dashboard/publisher/adverts-edit.php:136
1011
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1012
  msgstr ""
1013
 
1014
+ #: dashboard/publisher/adverts-edit.php:136
1015
  msgid "Add inside the <a> tag to open advert in a new window."
1016
  msgstr ""
1017
 
1018
+ #: dashboard/publisher/adverts-edit.php:136
1019
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1020
  msgstr ""
1021
 
1022
+ #: dashboard/publisher/adverts-edit.php:136
1023
  msgid ""
1024
  "Place the cursor in your AdCode where you want to add any of these tags and "
1025
  "click to add it."
1026
  msgstr ""
1027
 
1028
+ #: dashboard/publisher/adverts-edit.php:141
1029
  msgid "Preview"
1030
  msgstr "Podgląd"
1031
 
1032
+ #: dashboard/publisher/adverts-edit.php:144
1033
  msgid ""
1034
  "Note: While this preview is an accurate one, it might look different then it "
1035
  "does on the website."
1037
  "Uwaga: Podczas podglądu reklama może wygląać inaczej, to nie na stronie "
1038
  "internetowej."
1039
 
1040
+ #: dashboard/publisher/adverts-edit.php:145
1041
  msgid ""
1042
  "This is because of CSS differences. Your themes CSS file is not active here!"
1043
  msgstr ""
1044
  "To wynika z różnic w Kaskadowych arkuszach stylu CSS. Twój szablon nie "
1045
  "działa w tym pliku!."
1046
 
1047
+ #: dashboard/publisher/adverts-edit.php:150
1048
  msgid "Banner asset"
1049
  msgstr ""
1050
 
1051
+ #: dashboard/publisher/adverts-edit.php:153
1052
  msgid "WordPress media:"
1053
  msgstr ""
1054
 
1055
+ #: dashboard/publisher/adverts-edit.php:153
1056
  msgid "Select Banner"
1057
  msgstr "Wybierz baner:"
1058
 
1059
+ #: dashboard/publisher/adverts-edit.php:155
1060
  msgid "- OR -"
1061
  msgstr "--albo-"
1062
 
1063
+ #: dashboard/publisher/adverts-edit.php:157
1064
  msgid "Banner folder:"
1065
  msgstr "Folder banerów:"
1066
 
1067
+ #: dashboard/publisher/adverts-edit.php:158
1068
  msgid "No image selected"
1069
  msgstr "Nie wybrano żadnego obrazu"
1070
 
1071
+ #: dashboard/publisher/adverts-edit.php:162
1072
  msgid "Use %asset% in the adcode instead of the file path."
1073
  msgstr ""
1074
 
1075
+ #: dashboard/publisher/adverts-edit.php:162
1076
  msgid ""
1077
  "Use either the text field or the dropdown. If the textfield has content that "
1078
  "field has priority."
1080
  "Skorzystaj z pola tekstowego lub listy rozwijanej. Jeśli pole tekstowe "
1081
  "zawiera treści, te pole ma pierwszeństwo."
1082
 
1083
+ #: dashboard/publisher/adverts-edit.php:167
1084
  #: dashboard/settings/statistics.php:17
1085
  msgid "Statistics"
1086
  msgstr "Statystyki"
1087
 
1088
+ #: dashboard/publisher/adverts-edit.php:169
1089
  msgid "Enable click and impression tracking for this advert."
1090
  msgstr ""
1091
 
1092
+ #: dashboard/publisher/adverts-edit.php:170
1093
  msgid ""
1094
  "Note: Clicktracking does not work for Javascript adverts such as those "
1095
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1096
  "always supported."
1097
  msgstr ""
1098
 
1099
+ #: dashboard/publisher/adverts-edit.php:180
1100
  msgid "Yes, this ad will be used"
1101
  msgstr "Uruchom ta reklamę"
1102
 
1103
+ #: dashboard/publisher/adverts-edit.php:181
1104
  msgid "No, do not show this ad anywhere"
1105
  msgstr "Niepokazuj tej reklamy."
1106
 
1107
+ #: dashboard/publisher/adverts-edit.php:188
1108
+ #: dashboard/publisher/adverts-main.php:105
1109
  #: dashboard/publisher/groups-edit.php:71
1110
  #: dashboard/publisher/groups-main.php:89
1111
  #, fuzzy
1112
  msgid "Get more features with AdRotate Pro."
1113
  msgstr "Więcej ustawień z AdRotate Pro"
1114
 
1115
+ #: dashboard/publisher/adverts-edit.php:188
1116
+ #: dashboard/publisher/adverts-main.php:105
1117
  #: dashboard/publisher/groups-edit.php:71
1118
  #: dashboard/publisher/groups-main.php:89
1119
  #, fuzzy
1120
  msgid "More information"
1121
  msgstr "Więcej informacji"
1122
 
1123
+ #: dashboard/publisher/adverts-edit.php:191
1124
+ #: dashboard/publisher/adverts-edit.php:291
1125
+ #: dashboard/publisher/adverts-edit.php:447
1126
+ #: dashboard/publisher/adverts-edit.php:488
1127
  msgid "Save Advert"
1128
  msgstr "Zapisz reklamę"
1129
 
1130
+ #: dashboard/publisher/adverts-edit.php:192
1131
+ #: dashboard/publisher/adverts-edit.php:292
1132
+ #: dashboard/publisher/adverts-edit.php:448
1133
+ #: dashboard/publisher/adverts-edit.php:489
1134
  #: dashboard/publisher/groups-edit.php:150
1135
  #: dashboard/publisher/groups-edit.php:299
1136
  #: dashboard/publisher/groups-edit.php:391
1137
  msgid "Cancel"
1138
  msgstr "Anuluj"
1139
 
1140
+ #: dashboard/publisher/adverts-edit.php:195
1141
+ #: dashboard/publisher/adverts-edit.php:430
1142
  #: dashboard/publisher/groups-edit.php:132
1143
  #: dashboard/publisher/groups-edit.php:281
1144
  msgid "Usage"
1145
  msgstr "Użycie"
1146
 
1147
+ #: dashboard/publisher/adverts-edit.php:199
1148
+ #: dashboard/publisher/adverts-edit.php:434
1149
  #: dashboard/publisher/groups-edit.php:136
1150
  #: dashboard/publisher/groups-edit.php:205
1151
  #: dashboard/publisher/groups-edit.php:245
1153
  msgid "Widget"
1154
  msgstr ""
1155
 
1156
+ #: dashboard/publisher/adverts-edit.php:200
1157
+ #: dashboard/publisher/adverts-edit.php:435
1158
  msgid ""
1159
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1160
  "and select the advert or the group the advert is in."
1161
  msgstr ""
1162
 
1163
+ #: dashboard/publisher/adverts-edit.php:203
1164
+ #: dashboard/publisher/adverts-edit.php:438
1165
  #: dashboard/publisher/groups-edit.php:140
1166
  #: dashboard/publisher/groups-edit.php:289
1167
  msgid "In a post or page"
1168
  msgstr ""
1169
 
1170
+ #: dashboard/publisher/adverts-edit.php:205
1171
+ #: dashboard/publisher/adverts-edit.php:440
1172
  #: dashboard/publisher/groups-edit.php:142
1173
  #: dashboard/publisher/groups-edit.php:291
1174
  msgid "Directly in a theme"
1175
  msgstr ""
1176
 
1177
+ #: dashboard/publisher/adverts-edit.php:211
1178
  msgid "Schedule your advert"
1179
  msgstr ""
1180
 
1181
+ #: dashboard/publisher/adverts-edit.php:215
1182
  msgid "Start date (day/month/year)"
1183
  msgstr ""
1184
 
1185
+ #: dashboard/publisher/adverts-edit.php:236
1186
  msgid "End date (day/month/year)"
1187
  msgstr ""
1188
 
1189
+ #: dashboard/publisher/adverts-edit.php:259
1190
  msgid "Start time (hh:mm)"
1191
  msgstr ""
1192
 
1193
+ #: dashboard/publisher/adverts-edit.php:266
1194
  msgid "End time (hh:mm)"
1195
  msgstr ""
1196
 
1197
+ #: dashboard/publisher/adverts-edit.php:276
1198
  msgid "Maximum Clicks"
1199
  msgstr ""
1200
 
1201
+ #: dashboard/publisher/adverts-edit.php:277
1202
+ #: dashboard/publisher/adverts-edit.php:279
1203
  msgid "Leave empty or 0 to skip this."
1204
  msgstr "Pozostaw puste albo wpisz 0 ."
1205
 
1206
+ #: dashboard/publisher/adverts-edit.php:278
1207
  msgid "Maximum Impressions"
1208
  msgstr ""
1209
 
1210
+ #: dashboard/publisher/adverts-edit.php:283
1211
  msgid "Important"
1212
  msgstr ""
1213
 
1214
+ #: dashboard/publisher/adverts-edit.php:284
1215
  msgid ""
1216
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1217
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1218
  "14:00 hours. 6AM is 6:00 hours."
1219
  msgstr ""
1220
 
1221
+ #: dashboard/publisher/adverts-edit.php:288
1222
  msgid ""
1223
  "Create multiple and more advanced schedules for each advert with AdRotate "
1224
  "Pro."
1225
  msgstr ""
1226
 
1227
+ #: dashboard/publisher/adverts-edit.php:288
1228
+ #: dashboard/publisher/adverts-edit.php:357
1229
+ #: dashboard/publisher/adverts-edit.php:428
1230
  #: dashboard/publisher/groups-edit.php:191
1231
  #, fuzzy
1232
  msgid "Upgrade today"
1233
  msgstr "Dziś"
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:295
1236
  #: dashboard/publisher/groups-edit.php:153
1237
  msgid "Advanced"
1238
  msgstr "Zaawansowane"
1239
 
1240
+ #: dashboard/publisher/adverts-edit.php:296
1241
+ #: dashboard/publisher/adverts-edit.php:360
1242
  msgid "Available in AdRotate Pro!"
1243
  msgstr ""
1244
 
1245
+ #: dashboard/publisher/adverts-edit.php:301
1246
+ #: dashboard/publisher/groups-edit.php:331
 
1247
  msgid "Weight"
1248
  msgstr "Waga"
1249
 
1250
+ #: dashboard/publisher/adverts-edit.php:304
1251
  msgid "Few impressions"
1252
  msgstr ""
1253
 
1254
+ #: dashboard/publisher/adverts-edit.php:309
1255
  msgid "Less than average"
1256
  msgstr "Mniej niż średnia"
1257
 
1258
+ #: dashboard/publisher/adverts-edit.php:314
1259
  msgid "Normal impressions"
1260
  msgstr ""
1261
 
1262
+ #: dashboard/publisher/adverts-edit.php:319
1263
  msgid "More than average"
1264
  msgstr "Więcej niż średnia"
1265
 
1266
+ #: dashboard/publisher/adverts-edit.php:324
1267
  msgid "Many impressions"
1268
  msgstr ""
1269
 
1270
+ #: dashboard/publisher/adverts-edit.php:329
1271
  msgid "Mobile"
1272
  msgstr ""
1273
 
1274
+ #: dashboard/publisher/adverts-edit.php:331
1275
  msgid "Computers"
1276
  msgstr ""
1277
 
1278
+ #: dashboard/publisher/adverts-edit.php:334
1279
  msgid "Smartphones"
1280
  msgstr ""
1281
 
1282
+ #: dashboard/publisher/adverts-edit.php:337
1283
  msgid "Tablets"
1284
  msgstr ""
1285
 
1286
+ #: dashboard/publisher/adverts-edit.php:340
1287
  msgid ""
1288
  "Also enable mobile support in the group this advert goes in or these are "
1289
  "ignored."
1290
  msgstr ""
1291
 
1292
+ #: dashboard/publisher/adverts-edit.php:340
1293
+ msgid "Operating system detection only detects iOS/Android/Other or neither."
 
 
1294
  msgstr ""
1295
 
1296
+ #: dashboard/publisher/adverts-edit.php:344
1297
  msgid "Mobile OS"
1298
  msgstr ""
1299
 
1300
+ #: dashboard/publisher/adverts-edit.php:346
1301
  msgid "iOS"
1302
  msgstr ""
1303
 
1304
+ #: dashboard/publisher/adverts-edit.php:349
1305
  msgid "Android"
1306
  msgstr ""
1307
 
1308
+ #: dashboard/publisher/adverts-edit.php:352
1309
  msgid "Others"
1310
  msgstr ""
1311
 
1312
+ #: dashboard/publisher/adverts-edit.php:357
1313
  msgid ""
1314
  "With AdRotate Pro you can easily select which devices and mobile operating "
1315
  "systems the advert should show on!"
1316
  msgstr ""
1317
 
1318
+ #: dashboard/publisher/adverts-edit.php:360
 
 
 
 
 
 
1319
  msgid ""
1320
  "Assign the advert to a group and enable that group to use Geo Targeting."
1321
  msgstr ""
1322
 
1323
+ #: dashboard/publisher/adverts-edit.php:418
1324
  msgid "A comma separated list of items:"
1325
  msgstr ""
1326
 
1327
+ #: dashboard/publisher/adverts-edit.php:418
1328
  msgid ""
1329
  "AdRotate does not check the validity of names so make sure you spell them "
1330
  "correctly!"
1331
  msgstr ""
1332
 
1333
+ #: dashboard/publisher/adverts-edit.php:428
1334
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1335
  msgstr ""
1336
 
1337
+ #: dashboard/publisher/adverts-edit.php:452
1338
  msgid "Select Groups"
1339
  msgstr "Wybierz grupy"
1340
 
1341
+ #: dashboard/publisher/adverts-edit.php:457
1342
  msgid "ID - Name"
1343
  msgstr "ID - Nazwa"
1344
 
1345
+ #: dashboard/publisher/adverts-edit.php:467
1346
  #: dashboard/publisher/groups-main.php:60
1347
  #: dashboard/settings/geotargeting.php:49
1348
  msgid "Default"
1349
  msgstr "Domyślny"
1350
 
1351
+ #: dashboard/publisher/adverts-edit.php:468
1352
  #: dashboard/publisher/groups-main.php:61
1353
  msgid "Dynamic"
1354
  msgstr "Dynamiczny"
1355
 
1356
+ #: dashboard/publisher/adverts-edit.php:468
1357
  #: dashboard/publisher/groups-main.php:61
1358
  msgid "second rotation"
1359
  msgstr "drugi obrót"
1360
 
1361
+ #: dashboard/publisher/adverts-edit.php:469
1362
  #: dashboard/publisher/groups-main.php:62
1363
  msgid "Block"
1364
  msgstr "Blok"
1365
 
1366
+ #: dashboard/publisher/adverts-edit.php:469
1367
  #: dashboard/publisher/groups-main.php:62
1368
  msgid "grid"
1369
  msgstr "siatka"
1370
 
1371
+ #: dashboard/publisher/adverts-edit.php:470
1372
  #: dashboard/publisher/groups-edit.php:199
1373
  #: dashboard/publisher/groups-main.php:63
1374
  msgid "Post Injection"
1375
  msgstr "Umieszczanie we wpisach"
1376
 
1377
+ #: dashboard/publisher/adverts-edit.php:471
1378
  msgid "Geolocation"
1379
  msgstr "Geolokalizacja"
1380
 
1381
+ #: dashboard/publisher/adverts-edit.php:477
1382
  #: dashboard/publisher/groups-edit.php:57
1383
  #: dashboard/publisher/groups-main.php:70
1384
  msgid "Mode"
1419
  msgstr "Na 7 dni"
1420
 
1421
  #: dashboard/publisher/adverts-error.php:71
1422
+ #, fuzzy
1423
+ #| msgid "Configuration errors."
1424
+ msgid "Configuration errors"
1425
  msgstr "Błedy konfiguracji."
1426
 
1427
  #: dashboard/publisher/adverts-error.php:72
1428
+ #, fuzzy
1429
+ #| msgid "Expires soon."
1430
+ msgid "Expires soon"
1431
  msgstr "Wygasa wkrótce."
1432
 
1433
  #: dashboard/publisher/adverts-error.php:73
1434
+ #: dashboard/settings/maintenance.php:64
1435
+ msgid "Expired"
1436
+ msgstr "Wygasa"
1437
 
1438
  #: dashboard/publisher/adverts-main.php:12
1439
  msgid "Active Adverts"
1441
 
1442
  #: dashboard/publisher/adverts-main.php:24
1443
  #, fuzzy
1444
+ msgid "Export to CSV"
1445
  msgstr "Eksportuj ustawienia"
1446
 
1447
+ #: dashboard/publisher/adverts-main.php:44
1448
+ #: dashboard/publisher/adverts-main.php:46
1449
  #: dashboard/publisher/groups-main.php:37
1450
  #: dashboard/publisher/groups-main.php:39
1451
  msgid "Today"
1452
  msgstr "Dziś"
1453
 
1454
+ #: dashboard/publisher/adverts-main.php:100
1455
  msgid "No adverts created yet!"
1456
  msgstr ""
1457
 
1505
  msgid "Edit Group"
1506
  msgstr "Edytuj grupę"
1507
 
 
 
 
 
 
1508
  #: dashboard/publisher/groups-edit.php:60
1509
  msgid "Default - Show one ad at a time"
1510
  msgstr "Domyśłne - pokazuj jedną na raz"
1789
  msgid "Choose adverts"
1790
  msgstr ""
1791
 
1792
+ #: dashboard/publisher/groups-edit.php:330
1793
  msgid "Visible until"
1794
  msgstr "Widoczne do"
1795
 
1797
  msgid "No adverts created!"
1798
  msgstr ""
1799
 
1800
+ #: dashboard/publisher/groups-edit.php:384
1801
+ msgid "Configuration errors."
1802
+ msgstr "Błedy konfiguracji."
1803
+
1804
+ #: dashboard/publisher/groups-edit.php:385
1805
+ msgid "Expires soon."
1806
+ msgstr "Wygasa wkrótce."
1807
+
1808
+ #: dashboard/publisher/groups-edit.php:386
1809
+ msgid "Has expired."
1810
+ msgstr "Wygasła."
1811
+
1812
  #: dashboard/publisher/groups-main.php:12
1813
  msgid "Manage Groups"
1814
  msgstr "Zarządzaj grupami"
1830
  msgstr "Nie można cofnąć tego ruchu!"
1831
 
1832
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1833
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
 
1834
  msgid "OK to continue, CANCEL to stop."
1835
  msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
1836
 
1897
  msgstr ""
1898
 
1899
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1900
+ #: dashboard/settings/maintenance.php:116 dashboard/settings/misc.php:43
1901
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1902
+ #: dashboard/settings/statistics.php:73
1903
  msgid "Update Options"
1904
  msgstr "Zapisz opcje"
1905
 
1995
  msgstr "Folder banerów"
1996
 
1997
  #: dashboard/settings/general.php:50
1998
+ #, fuzzy
1999
+ #| msgid "Set a location where your banner images will be stored."
2000
+ msgid "Set a folder where your banner images will be stored."
2001
  msgstr "Wskaż lokalizację gdzie przechowywane będą obrazy reklam."
2002
 
2003
  #: dashboard/settings/general.php:53
2004
+ msgid "Folder name"
2005
+ msgstr ""
2006
 
2007
  #: dashboard/settings/general.php:55
2008
+ #, fuzzy
2009
+ #| msgid "(Default: wp-content/banners/)."
2010
+ msgid "(Default: banners)."
2011
  msgstr "(Domyślnie: wp-content/banners/)."
2012
 
2013
  #: dashboard/settings/general.php:56
2150
  msgid "Password/License Key"
2151
  msgstr ""
2152
 
 
 
 
 
2153
  #: dashboard/settings/maintenance.php:17
2154
  msgid ""
2155
  "Use these functions when you notice your database is slow, unresponsive and "
2189
  "dokonujesz. Może to skutkować wzrostem przechowywanych danych od kilku "
2190
  "kilobajtow do kilku GB."
2191
 
2192
+ #: dashboard/settings/maintenance.php:28
2193
+ #, fuzzy
2194
+ #| msgid "Clean-up Database"
2195
+ msgid "Clean-up Database and Files"
2196
+ msgstr "Wyczyść bazę danych"
2197
+
2198
+ #: dashboard/settings/maintenance.php:30
2199
  msgid "Clean-up Database"
2200
  msgstr "Wyczyść bazę danych"
2201
 
2202
  #: dashboard/settings/maintenance.php:30
2203
+ #, fuzzy
2204
+ #| msgid ""
2205
+ #| "You are about to clean up your database. This may delete expired "
2206
+ #| "schedules and older statistics."
2207
  msgid ""
2208
+ "You are about to clean up your database. This may delete expired schedules, "
2209
+ "older statistics and try to delete export files"
2210
  msgstr ""
2211
  "Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
2212
  "harmonogramów i starych statystyk."
2215
  msgid "Are you sure you want to continue?"
2216
  msgstr "Czy jesteś pewien że chcesz kontynuować?"
2217
 
2218
+ #: dashboard/settings/maintenance.php:30
2219
+ msgid "THIS ACTION CAN NOT BE UNDONE!"
2220
+ msgstr ""
 
2221
 
2222
  #: dashboard/settings/maintenance.php:31
2223
+ #, fuzzy
2224
+ #| msgid "Delete stats older than 356 days (Optional)."
2225
+ msgid "Delete stats older than 356 days."
2226
  msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
2227
 
2228
  #: dashboard/settings/maintenance.php:32
2229
+ msgid "Delete leftover export files."
2230
  msgstr ""
2231
 
2232
  #: dashboard/settings/maintenance.php:33
2236
  msgstr ""
2237
 
2238
  #: dashboard/settings/maintenance.php:33
2239
+ #, fuzzy
2240
+ #| msgid ""
2241
+ #| "Additionally you can clean up old statistics. This will improve the speed "
2242
+ #| "of your site."
2243
  msgid ""
2244
+ "Additionally you can delete statistics and/or unused export files. This will "
2245
+ "improve the speed of your site."
2246
  msgstr ""
2247
+ "Dodatkowo możęsz usunąć stare statystyki to poprawi szybkość działania "
2248
+ "strony."
2249
 
2250
  #: dashboard/settings/maintenance.php:37
2251
  msgid "Re-evaluate Ads"
2259
  msgid "You are about to check all ads for errors."
2260
  msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
2261
 
2262
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
2263
+ msgid "This might take a while and may slow down your site during this action!"
2264
+ msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
2265
+
2266
  #: dashboard/settings/maintenance.php:40
2267
  msgid ""
2268
  "This will apply all evaluation rules to all ads to see if any error slipped "
2310
  msgstr ""
2311
 
2312
  #: dashboard/settings/maintenance.php:54
2313
+ #, fuzzy
2314
+ #| msgid "Track clicks and impressions."
2315
+ msgid "Disable timers for clicks and impressions."
2316
+ msgstr "Śledź kliknięcia i wyświetlenia."
 
 
2317
 
2318
  #: dashboard/settings/maintenance.php:55
2319
  msgid "Temporarily disable encryption on the redirect url."
2335
  msgid "Error"
2336
  msgstr "Błąd"
2337
 
 
 
 
 
2338
  #: dashboard/settings/maintenance.php:64
2339
  msgid "Expires Soon"
2340
  msgstr "Wygas wkrótce"
2347
  msgid "Banners/assets Folder"
2348
  msgstr ""
2349
 
2350
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2351
  msgid "Exists and appears writable"
2352
  msgstr ""
2353
 
2354
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2355
  msgid "Not writable or does not exist"
2356
  msgstr ""
2357
 
2358
+ #: dashboard/settings/maintenance.php:76
2359
  msgid "Reports Folder"
2360
  msgstr ""
2361
 
2362
+ #: dashboard/settings/maintenance.php:85
2363
  msgid "Advert evaluation"
2364
  msgstr ""
2365
 
2366
+ #: dashboard/settings/maintenance.php:86
2367
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2368
  msgstr ""
2369
 
2370
+ #: dashboard/settings/maintenance.php:87
2371
+ #, fuzzy
2372
+ #| msgid "Clean Trackerdata next run:"
2373
+ msgid "Clean Trackerdata"
2374
+ msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
2375
+
2376
+ #: dashboard/settings/maintenance.php:88
2377
+ msgid "Not scheduled!"
2378
+ msgstr "Nie ustalono harmnogramu!"
2379
+
2380
+ #: dashboard/settings/maintenance.php:91
2381
+ msgid "Background tasks"
2382
+ msgstr ""
2383
+
2384
+ #: dashboard/settings/maintenance.php:93
2385
+ msgid "Reset background tasks"
2386
  msgstr ""
2387
 
2388
+ #: dashboard/settings/maintenance.php:98
2389
  msgid "Internal Versions"
2390
  msgstr ""
2391
 
2392
+ #: dashboard/settings/maintenance.php:99
2393
  msgid ""
2394
  "Unless you experience database issues or a warning shows below, these "
2395
  "numbers are not really relevant for troubleshooting. Support may ask for "
2396
  "them to verify your database status."
2397
  msgstr ""
2398
 
2399
+ #: dashboard/settings/maintenance.php:102
2400
  msgid "AdRotate version"
2401
  msgstr ""
2402
 
2403
+ #: dashboard/settings/maintenance.php:103
2404
+ #: dashboard/settings/maintenance.php:105
2405
  msgid "Current:"
2406
  msgstr ""
2407
 
2408
+ #: dashboard/settings/maintenance.php:103
2409
+ #: dashboard/settings/maintenance.php:105
2410
  msgid "Should be:"
2411
  msgstr ""
2412
 
2413
+ #: dashboard/settings/maintenance.php:103
2414
+ #: dashboard/settings/maintenance.php:105
2415
  msgid "Previous:"
2416
  msgstr ""
2417
 
2418
+ #: dashboard/settings/maintenance.php:104
2419
  msgid "Database version"
2420
  msgstr ""
2421
 
2422
+ #: dashboard/settings/maintenance.php:108
2423
+ msgid "Manual upgrade"
2424
+ msgstr ""
2425
+
2426
+ #: dashboard/settings/maintenance.php:110
2427
  msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2428
  msgstr ""
2429
 
2430
+ #: dashboard/settings/maintenance.php:110
2431
  msgid "Make sure you have a database backup!"
2432
  msgstr ""
2433
 
2434
+ #: dashboard/settings/maintenance.php:110
2435
+ #, fuzzy
2436
+ #| msgid "Ad updated"
2437
+ msgid "Run updater"
2438
+ msgstr "Reklamy zaktualizowana"
2439
 
2440
  #: dashboard/settings/misc.php:16
2441
  msgid "Miscellaneous"
2517
  "AdRotate. Jeśli używasz kodu PHP musisz sam wprowadzić poprwany kod do "
2518
  "strony."
2519
 
 
 
 
 
2520
  #: dashboard/settings/notifications.php:19
2521
  msgid "Set up who gets notifications if ads need your attention."
2522
  msgstr "Ustal kto dostaje powiadomienia gdy reklamy wymagają interwencji."
2656
  "separated. This field may not be empty!"
2657
  msgstr ""
2658
 
 
 
 
 
2659
  #: dashboard/settings/notifications.php:75
2660
  msgid ""
2661
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2711
  msgid "and get your API token"
2712
  msgstr ""
2713
 
 
 
 
 
2714
  #: dashboard/settings/roles.php:18
2715
  msgid "Who has access to what?"
2716
  msgstr "Kto ma dostęp i do czego?"
2859
  msgstr ""
2860
  "Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
2861
 
2862
+ #~ msgid "Empty database records removed"
2863
+ #~ msgstr "Usunięto puste rekordy bazy danych"
 
2864
 
2865
+ #~ msgid "For one WordPress installation."
2866
+ #~ msgstr "dla jednej instalcji Wordpressa"
2867
+
2868
+ #~ msgid "For two WordPress installations."
2869
+ #~ msgstr "dla dwóch instalcji Wordpressa"
2870
+
2871
+ #~ msgid " For up to five WordPress installations."
2872
+ #~ msgstr "dla 5 instalacji Wordpessa."
2873
+
2874
+ #~ msgid "Location"
2875
+ #~ msgstr "Lokalizacja"
2876
+
2877
+ #~ msgid ""
2878
+ #~ "Disable timers for clicks and impressions and enable a alert window for "
2879
+ #~ "clicktracking."
2880
+ #~ msgstr ""
2881
+ #~ "Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
2882
+ #~ "śledzenia kliknięć."
2883
 
2884
  #, fuzzy
2885
  #~ msgid "Help AdRotate Grow"
3019
  #~ msgid "Ad evaluation next run:"
3020
  #~ msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
3021
 
 
 
 
 
 
 
3022
  #~ msgid "Set up who gets notification emails."
3023
  #~ msgstr "Ustal kto otrzymuje powiadomienia na email."
3024
 
3214
  #~ msgid "Ad created"
3215
  #~ msgstr "Reklama utworzona"
3216
 
 
 
 
3217
  #~ msgid ""
3218
  #~ "The ad was saved but has an issue which might prevent it from working "
3219
  #~ "properly. Review the yellow marked ad."
3313
  #~ "Jeśli tworzyłeś reklamę lub grupę reklam i nie zapisały się one poprawnie "
3314
  #~ "po ich utworzeniu, użyj przycisku \"usuń\" by usunąć puste rekordy."
3315
 
 
 
 
 
 
 
 
3316
  #~ msgid ""
3317
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3318
  #~ "becomes unusable in any way or by any means in whichever way I will not "
3566
  #~ msgid "Enable stats"
3567
  #~ msgstr "Włącz statystyki"
3568
 
 
 
 
3569
  #, fuzzy
3570
  #~ msgid ""
3571
  #~ "Disabling this also disables click and impression limits on schedules."
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: 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,117 +13,119 @@ 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.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
 
122
- #: adrotate-output.php:575
123
  msgid "Oh no! Something went wrong!"
124
  msgstr "O ne! Nešto nije kako treba!"
125
 
126
- #: adrotate-output.php:576
127
  msgid ""
128
  "WordPress was unable to verify the authenticity of the url you have clicked. "
129
  "Verify if the url used is valid or log in via your browser."
@@ -132,51 +134,51 @@ msgstr ""
132
  "kliknuli. Verifikuj ak je url korišćen kao validan ili login via vašeg "
133
  "pretraživača."
134
 
135
- #: adrotate-output.php:577
136
  msgid ""
137
  "If you have received the url you want to visit via email, you are being "
138
  "tricked!"
139
  msgstr "Ako ste primili url koji želite da posetite via email, prevaeni ste!"
140
 
141
- #: adrotate-output.php:578
142
  msgid "Contact support if the issue persists:"
143
  msgstr "Kontaktirajte podršku ako se problem nastavi:"
144
 
145
- #: adrotate-output.php:593
146
  #, fuzzy
147
  msgid ""
148
  "Error, Ad is not available at this time due to schedule/geolocation "
149
  "restrictions or does not exist!"
150
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
151
 
152
- #: adrotate-output.php:595
153
  #, fuzzy
154
  msgid ""
155
  "Error, Ad is not available at this time due to schedule/geolocation "
156
  "restrictions!"
157
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
158
 
159
- #: adrotate-output.php:602 adrotate-output.php:604
160
  msgid ""
161
  "Either there are no banners, they are disabled or none qualified for this "
162
  "location!"
163
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
164
 
165
- #: adrotate-output.php:610
166
  msgid "Error, no Ad ID set! Check your syntax!"
167
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
168
 
169
- #: adrotate-output.php:616
170
  #, fuzzy
171
  msgid "Error, no group ID set! Check your syntax!"
172
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
173
 
174
- #: adrotate-output.php:621
175
  #, fuzzy
176
  msgid "Error, group does not exist! Check your syntax!"
177
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
178
 
179
- #: adrotate-output.php:627
180
  msgid ""
181
  "There was an error locating the database tables for AdRotate. Please "
182
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -184,230 +186,230 @@ msgstr ""
184
  "Error se prikazao locirajući bazupodataka tabele za AdRotate. Molim vas "
185
  "deaktivirajte i reaktivirajte AdRotate sa plugin stranice!!"
186
 
187
- #: adrotate-output.php:627
188
  msgid "If this does not solve the issue please seek support at"
189
  msgstr "Ako ne reši problem potražite podršku na"
190
 
191
- #: adrotate-output.php:633
192
  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
  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,61 +455,101 @@ msgstr "ID:"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
511
  #: dashboard/adrotatepro.php:20
512
  #, fuzzy
513
  msgid "Satisfy your advertisers"
@@ -558,15 +600,21 @@ msgid ""
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, "
@@ -575,11 +623,11 @@ msgid ""
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 "
@@ -587,11 +635,11 @@ msgid ""
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,149 +647,127 @@ msgid ""
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
 
694
- #: dashboard/info.php:24
695
  msgid "Currently"
696
  msgstr "Trenutno"
697
 
698
- #: dashboard/info.php:30
699
  msgid "Your setup"
700
  msgstr "Vaš pristup"
701
 
702
- #: dashboard/info.php:31
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 "
744
- "plugins!"
745
  msgstr ""
746
 
747
  #: dashboard/publisher/adverts-disabled.php:15
@@ -756,7 +782,7 @@ 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
 
@@ -787,7 +813,7 @@ 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
792
  #, fuzzy
793
  msgid "Start / End"
@@ -797,33 +823,34 @@ msgstr ""
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"
804
- msgstr "Naslov"
 
 
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"
812
  msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
813
 
814
- #: dashboard/publisher/adverts-disabled.php:39
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
822
  msgid "Clicks"
823
  msgstr "Klikovi"
824
 
825
- #: dashboard/publisher/adverts-disabled.php:40
826
- #: dashboard/publisher/adverts-main.php:48
827
  #: dashboard/publisher/adverts-report.php:39
828
  #: dashboard/publisher/adverts-report.php:58
829
  #: dashboard/publisher/groups-report.php:40
@@ -831,54 +858,47 @@ msgstr "Klikovi"
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,81 +906,96 @@ msgstr ""
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,41 +1003,41 @@ msgstr ""
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,72 +1045,72 @@ msgstr ""
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
1042
  msgid "Get more features with AdRotate Pro."
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
@@ -1083,253 +1118,243 @@ msgstr "upotreba"
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,18 +1395,21 @@ msgid "For 7 days"
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
@@ -1390,17 +1418,17 @@ msgstr ""
1390
 
1391
  #: dashboard/publisher/adverts-main.php:24
1392
  #, fuzzy
1393
- msgid "Export to XML"
1394
  msgstr "Izlazne opcije za"
1395
 
1396
- #: dashboard/publisher/adverts-main.php:45
1397
- #: dashboard/publisher/adverts-main.php:47
1398
  #: dashboard/publisher/groups-main.php:37
1399
  #: dashboard/publisher/groups-main.php:39
1400
  msgid "Today"
1401
  msgstr "Danas"
1402
 
1403
- #: dashboard/publisher/adverts-main.php:102
1404
  msgid "No adverts created yet!"
1405
  msgstr ""
1406
 
@@ -1456,11 +1484,6 @@ msgstr "Dodati novi"
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"
@@ -1754,7 +1777,7 @@ msgstr ""
1754
  msgid "Choose adverts"
1755
  msgstr ""
1756
 
1757
- #: dashboard/publisher/groups-edit.php:335
1758
  msgid "Visible until"
1759
  msgstr "Vidljivo do"
1760
 
@@ -1762,6 +1785,18 @@ msgstr "Vidljivo do"
1762
  msgid "No adverts created!"
1763
  msgstr ""
1764
 
 
 
 
 
 
 
 
 
 
 
 
 
1765
  #: dashboard/publisher/groups-main.php:12
1766
  msgid "Manage Groups"
1767
  msgstr "Upravljajte grupama"
@@ -1783,8 +1818,7 @@ msgid "This action can not be undone!"
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,9 +1885,9 @@ msgid ""
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
 
@@ -1953,19 +1987,18 @@ msgstr "Baner Folder"
1953
 
1954
  #: dashboard/settings/general.php:50
1955
  #, fuzzy
1956
- msgid "Set a location where your banner images will be stored."
1957
  msgstr ""
1958
  "Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
1959
  "banners/)."
1960
 
1961
  #: dashboard/settings/general.php:53
1962
- #, fuzzy
1963
- msgid "Location"
1964
- msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
1965
 
1966
  #: dashboard/settings/general.php:55
1967
  #, fuzzy
1968
- msgid "(Default: wp-content/banners/)."
1969
  msgstr ""
1970
  "Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
1971
  "banners/)."
@@ -2113,10 +2146,6 @@ msgstr ""
2113
  msgid "Password/License Key"
2114
  msgstr ""
2115
 
2116
- #: dashboard/settings/maintenance.php:16
2117
- msgid "Maintenance"
2118
- msgstr "Održavanje"
2119
-
2120
  #: dashboard/settings/maintenance.php:17
2121
  msgid ""
2122
  "Use these functions when you notice your database is slow, unresponsive and "
@@ -2155,15 +2184,21 @@ msgstr ""
2155
  "Opšti podaci se akumulira smeća usled mnogih promena koje ste napravili . "
2156
  "Ovo može da varira od nule do nekoliko stotina KiB podataka ."
2157
 
2158
- #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
 
 
 
 
 
 
2159
  msgid "Clean-up Database"
2160
  msgstr "Čišćenje baze"
2161
 
2162
  #: dashboard/settings/maintenance.php:30
2163
  #, fuzzy
2164
  msgid ""
2165
- "You are about to clean up your database. This may delete expired schedules "
2166
- "and older statistics."
2167
  msgstr "Čišćenje baze"
2168
 
2169
  #: dashboard/settings/maintenance.php:30
@@ -2171,21 +2206,17 @@ msgstr "Čišćenje baze"
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 ""
2179
- "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
2180
- "sporo privremeno !"
2181
 
2182
  #: dashboard/settings/maintenance.php:31
2183
  #, fuzzy
2184
- msgid "Delete stats older than 356 days (Optional)."
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
@@ -2195,10 +2226,11 @@ msgid ""
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"
@@ -2212,6 +2244,13 @@ msgstr "Ponovo ocenite sve oglase"
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 "
@@ -2259,9 +2298,8 @@ 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
@@ -2291,11 +2329,6 @@ msgstr ""
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"
@@ -2309,74 +2342,95 @@ msgstr ""
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"
@@ -2458,10 +2512,6 @@ msgstr ""
2458
  "Hvatanje podrške radi samo za [kratke brojeve] i AdRotate Widget . Ako "
2459
  "koristite PHP Snippet treba da zamotate svoj PHP u isključenju svog koda."
2460
 
2461
- #: dashboard/settings/notifications.php:18
2462
- msgid "Notifications"
2463
- msgstr "Notifikacije"
2464
-
2465
  #: dashboard/settings/notifications.php:19
2466
  #, fuzzy
2467
  msgid "Set up who gets notifications if ads need your attention."
@@ -2599,10 +2649,6 @@ msgid ""
2599
  "separated. This field may not be empty!"
2600
  msgstr ""
2601
 
2602
- #: dashboard/settings/notifications.php:72
2603
- msgid "Advertisers"
2604
- msgstr "Oglašivači"
2605
-
2606
  #: dashboard/settings/notifications.php:75
2607
  msgid ""
2608
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
@@ -2658,10 +2704,6 @@ msgstr ""
2658
  msgid "and get your API token"
2659
  msgstr ""
2660
 
2661
- #: dashboard/settings/roles.php:17
2662
- msgid "Roles"
2663
- msgstr ""
2664
-
2665
  #: dashboard/settings/roles.php:18
2666
  msgid "Who has access to what?"
2667
  msgstr ""
@@ -2813,15 +2855,31 @@ msgid ""
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"
@@ -2942,12 +3000,6 @@ msgstr ""
2942
  #~ msgid "Ad evaluation next run:"
2943
  #~ msgstr "Očistite Trackerdata u sledećem pokušaju :"
2944
 
2945
- #~ msgid "Not scheduled!"
2946
- #~ msgstr "Nije planirano:"
2947
-
2948
- #~ msgid "Clean Trackerdata next run:"
2949
- #~ msgstr "Očistite Trackerdata u sledećem pokušaju :"
2950
-
2951
  #, fuzzy
2952
  #~ msgid "Set up who gets notification emails."
2953
  #~ msgstr "Oglasi koje treba neposrednu pažnju"
@@ -3129,9 +3181,6 @@ msgstr ""
3129
  #~ msgid "Ad created"
3130
  #~ msgstr "Stvaranje oglasa"
3131
 
3132
- #~ msgid "Ad updated"
3133
- #~ msgstr "Update oglasa"
3134
-
3135
  #~ msgid ""
3136
  #~ "The ad was saved but has an issue which might prevent it from working "
3137
  #~ "properly. Review the yellow marked ad."
@@ -3236,12 +3285,6 @@ msgstr ""
3236
  #~ "button to delete those empty records."
3237
  #~ msgstr "Vi ste na putu da izbrišete grupu"
3238
 
3239
- #, fuzzy
3240
- #~ msgid ""
3241
- #~ "Additionally you can clean up old statistics. This will improve the speed "
3242
- #~ "of your site."
3243
- #~ msgstr "Čišćenje baze"
3244
-
3245
  #~ msgid ""
3246
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3247
  #~ "becomes unusable in any way or by any means in whichever way I will not "
@@ -3426,9 +3469,6 @@ msgstr ""
3426
  #~ msgid "Enable stats"
3427
  #~ msgstr "Statistika"
3428
 
3429
- #~ msgid "Track clicks and impressions."
3430
- #~ msgstr "Pratite klikove i prikaze ."
3431
-
3432
  #, fuzzy
3433
  #~ msgid ""
3434
  #~ "Disabling this also disables click and impression limits on schedules."
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-19 15:30+0800\n"
6
+ "PO-Revision-Date: 2017-06-19 15:30+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 2.0.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:722
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
+ #: adrotate-functions.php:725
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
+ #: adrotate-functions.php:768
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
+ #: adrotate-functions.php:772
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
+ #: adrotate-functions.php:776
36
  msgid "Ad(s) deleted"
37
  msgstr "Izbrisani oglasu"
38
 
39
+ #: adrotate-functions.php:780
40
  msgid "Group deleted"
41
  msgstr "Izbrisana grupa"
42
 
43
+ #: adrotate-functions.php:784
44
  msgid "Ad(s) statistics reset"
45
  msgstr "Statistički resestovani oglasi"
46
 
47
+ #: adrotate-functions.php:788
48
  msgid "Ad(s) renewed"
49
  msgstr "Ponovo obnovljeni oglasi"
50
 
51
+ #: adrotate-functions.php:792
52
  msgid "Ad(s) deactivated"
53
  msgstr "Deaktivirani oglasi"
54
 
55
+ #: adrotate-functions.php:796
56
  msgid "Ad(s) activated"
57
  msgstr "Aktivirani oglasi"
58
 
59
+ #: adrotate-functions.php:800
60
  msgid "Group including it's Ads deleted"
61
  msgstr "Grupa koja podrazumeva obrisane oglase"
62
 
63
+ #: adrotate-functions.php:804
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "Izlazne opcije za"
67
 
68
+ #: adrotate-functions.php:809
69
  msgid "Settings saved"
70
  msgstr "Postavke sačuvane"
71
 
72
+ #: adrotate-functions.php:813
73
  msgid "Database optimized"
74
  msgstr "Baza podataka optimizirana"
75
 
76
+ #: adrotate-functions.php:817
77
  msgid "Database repaired"
78
  msgstr "Baza podataka popravljena"
79
 
80
+ #: adrotate-functions.php:821
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:825
85
+ #, fuzzy
86
+ #| msgid "Clean-up Database"
87
+ msgid "Cleanup complete"
88
+ msgstr "Čišćenje baze"
89
 
90
+ #: adrotate-functions.php:830
91
  msgid "Action prohibited"
92
  msgstr "Zabranjeno delo"
93
 
94
+ #: adrotate-functions.php:834
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:838
101
  msgid "No data found in selected time period"
102
  msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
103
 
104
+ #: adrotate-functions.php:842
105
  msgid "Database can only be optimized or cleaned once every hour"
106
  msgstr "Baza podataka može biti optimizovana ili čiste jednom svaki sat"
107
 
108
+ #: adrotate-functions.php:846
109
  msgid "Form can not be (partially) empty!"
110
  msgstr ""
111
 
112
+ #: adrotate-functions.php:850
113
  msgid "No ads found."
114
  msgstr ""
115
 
116
+ #: adrotate-functions.php:854
117
  msgid "Unexpected error"
118
  msgstr ""
119
 
120
+ #: adrotate-manage-publisher.php:665
121
  msgid "AdRotate Advertiser"
122
  msgstr ""
123
 
124
+ #: adrotate-output.php:551
125
  msgid "Oh no! Something went wrong!"
126
  msgstr "O ne! Nešto nije kako treba!"
127
 
128
+ #: adrotate-output.php:552
129
  msgid ""
130
  "WordPress was unable to verify the authenticity of the url you have clicked. "
131
  "Verify if the url used is valid or log in via your browser."
134
  "kliknuli. Verifikuj ak je url korišćen kao validan ili login via vašeg "
135
  "pretraživača."
136
 
137
+ #: adrotate-output.php:553
138
  msgid ""
139
  "If you have received the url you want to visit via email, you are being "
140
  "tricked!"
141
  msgstr "Ako ste primili url koji želite da posetite via email, prevaeni ste!"
142
 
143
+ #: adrotate-output.php:554
144
  msgid "Contact support if the issue persists:"
145
  msgstr "Kontaktirajte podršku ako se problem nastavi:"
146
 
147
+ #: adrotate-output.php:569
148
  #, fuzzy
149
  msgid ""
150
  "Error, Ad is not available at this time due to schedule/geolocation "
151
  "restrictions or does not exist!"
152
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
153
 
154
+ #: adrotate-output.php:571
155
  #, fuzzy
156
  msgid ""
157
  "Error, Ad is not available at this time due to schedule/geolocation "
158
  "restrictions!"
159
  msgstr "Nema vremena da se stvari urade ? Hajde da napravimo raspored !"
160
 
161
+ #: adrotate-output.php:578 adrotate-output.php:580
162
  msgid ""
163
  "Either there are no banners, they are disabled or none qualified for this "
164
  "location!"
165
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
166
 
167
+ #: adrotate-output.php:586
168
  msgid "Error, no Ad ID set! Check your syntax!"
169
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
170
 
171
+ #: adrotate-output.php:592
172
  #, fuzzy
173
  msgid "Error, no group ID set! Check your syntax!"
174
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
175
 
176
+ #: adrotate-output.php:597
177
  #, fuzzy
178
  msgid "Error, group does not exist! Check your syntax!"
179
  msgstr "Error, nema Ad ID seta! Proverite vašu syntax!"
180
 
181
+ #: adrotate-output.php:603
182
  msgid ""
183
  "There was an error locating the database tables for AdRotate. Please "
184
  "deactivate and re-activate AdRotate from the plugin page!!"
186
  "Error se prikazao locirajući bazupodataka tabele za AdRotate. Molim vas "
187
  "deaktivirajte i reaktivirajte AdRotate sa plugin stranice!!"
188
 
189
+ #: adrotate-output.php:603
190
  msgid "If this does not solve the issue please seek support at"
191
  msgstr "Ako ne reši problem potražite podršku na"
192
 
193
+ #: adrotate-output.php:609
194
  msgid "An unknown error occured."
195
  msgstr "Nepoznati error se ukazao."
196
 
197
+ #: adrotate-output.php:628 adrotate-output.php:631 adrotate-output.php:635
198
  msgid "Check adverts"
199
  msgstr ""
200
 
201
+ #: adrotate-output.php:640
202
  msgid ""
203
  "You have enable caching support but W3 Total Cache is not active on your "
204
  "site!"
205
  msgstr ""
206
 
207
+ #: adrotate-output.php:643
208
  msgid ""
209
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
210
  "not set."
211
  msgstr ""
212
 
213
+ #: adrotate-output.php:648
214
  msgid "Your AdRotate Banner folder is not writable or does not exist."
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:688 dashboard/adrotatepro.php:87
218
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
219
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
220
+ #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
221
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:97 dashboard/info.php:98
222
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:104
223
+ #: dashboard/info.php:105 dashboard/info.php:106 dashboard/info.php:107
224
  #: dashboard/settings/geotargeting.php:35
225
  #, fuzzy
226
  msgid "Buy now"
227
  msgstr "Kupite odmah"
228
 
229
+ #: adrotate-output.php:689
230
  msgid ""
231
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
232
  "to the <strong>PRO</strong> version"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:689
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:689
242
  msgid "Thank you for your purchase!"
243
  msgstr ""
244
 
245
+ #: adrotate-output.php:752
246
  msgid ""
247
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
248
  "menu. If you need help getting started take a look at the"
249
  msgstr ""
250
 
251
+ #: adrotate-output.php:752
252
  msgid "manuals"
253
  msgstr "priručnici"
254
 
255
+ #: adrotate-output.php:752 adrotate-output.php:822
256
  msgid "and"
257
  msgstr ""
258
 
259
+ #: adrotate-output.php:752
260
  msgid "forums"
261
  msgstr ""
262
 
263
+ #: adrotate-output.php:785
264
  #, fuzzy
265
  msgid "Useful Links"
266
  msgstr "Korisni linkovi"
267
 
268
+ #: adrotate-output.php:786
269
  msgid "Useful links to learn more about AdRotate"
270
  msgstr ""
271
 
272
+ #: adrotate-output.php:788
273
  msgid "AdRotate website"
274
  msgstr ""
275
 
276
+ #: adrotate-output.php:789
277
  #, fuzzy
278
  msgid "Getting Started With AdRotate"
279
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
280
 
281
+ #: adrotate-output.php:790
282
  #, fuzzy
283
  msgid "AdRotate manuals"
284
  msgstr "AdRotate informacije"
285
 
286
+ #: adrotate-output.php:791
287
  #, fuzzy
288
  msgid "AdRotate Support Forum"
289
  msgstr "AdRotate prodavnica"
290
 
291
+ #: adrotate-output.php:814 dashboard/info.php:49
292
  msgid "Support AdRotate"
293
  msgstr "AdRotate podrška"
294
 
295
+ #: adrotate-output.php:815
296
  msgid "Check out my website"
297
  msgstr ""
298
 
299
+ #: adrotate-output.php:822
300
  msgid ""
301
  "Many users only think to review AdRotate when something goes wrong while "
302
  "thousands of people happily use AdRotate."
303
  msgstr ""
304
 
305
+ #: adrotate-output.php:822
306
  msgid "If you find AdRotate useful please leave your"
307
  msgstr ""
308
 
309
+ #: adrotate-output.php:822
310
  msgid "rating"
311
  msgstr ""
312
 
313
+ #: adrotate-output.php:822
314
  #, fuzzy
315
  msgid "review"
316
  msgstr "Dajte ocenu i komentar"
317
 
318
+ #: adrotate-output.php:822
319
  msgid "on WordPress.org to help AdRotate grow in a positive way"
320
  msgstr ""
321
 
322
+ #: adrotate-output.php:848 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:848
328
  #, fuzzy
329
  msgid "More information..."
330
  msgstr "Saznajte više"
331
 
332
+ #: adrotate-output.php:849
333
  msgid "This feature is available in AdRotate Pro"
334
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
335
 
336
+ #: adrotate-output.php:849
337
  msgid "Learn more"
338
  msgstr "Saznajte više"
339
 
340
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:220
341
+ #: dashboard/publisher/adverts-edit.php:241
342
  msgid "January"
343
  msgstr "Januar"
344
 
345
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:221
346
+ #: dashboard/publisher/adverts-edit.php:242
347
  msgid "February"
348
  msgstr "Februar"
349
 
350
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:222
351
+ #: dashboard/publisher/adverts-edit.php:243
352
  msgid "March"
353
  msgstr "Mart"
354
 
355
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:223
356
+ #: dashboard/publisher/adverts-edit.php:244
357
  msgid "April"
358
  msgstr "April"
359
 
360
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:224
361
+ #: dashboard/publisher/adverts-edit.php:245
362
  msgid "May"
363
  msgstr "Maj"
364
 
365
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:225
366
+ #: dashboard/publisher/adverts-edit.php:246
367
  msgid "June"
368
  msgstr "Jun"
369
 
370
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:226
371
+ #: dashboard/publisher/adverts-edit.php:247
372
  msgid "July"
373
  msgstr "Jul"
374
 
375
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:227
376
+ #: dashboard/publisher/adverts-edit.php:248
377
  msgid "August"
378
  msgstr "Avgust"
379
 
380
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:228
381
+ #: dashboard/publisher/adverts-edit.php:249
382
  msgid "September"
383
  msgstr "Septembar"
384
 
385
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:229
386
+ #: dashboard/publisher/adverts-edit.php:250
387
  msgid "October"
388
  msgstr "Oktobar"
389
 
390
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:230
391
+ #: dashboard/publisher/adverts-edit.php:251
392
  msgid "November"
393
  msgstr "Novembar"
394
 
395
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:231
396
+ #: dashboard/publisher/adverts-edit.php:252
397
  msgid "December"
398
  msgstr "Decembar"
399
 
400
+ #: adrotate-statistics.php:143
401
  msgid "Previous"
402
  msgstr "Prethodno"
403
 
404
+ #: adrotate-statistics.php:145
405
  msgid "This month"
406
  msgstr "Ovaj mesec"
407
 
408
+ #: adrotate-statistics.php:146
409
  msgid "Next"
410
  msgstr "Sledeći"
411
 
412
+ #: adrotate-statistics.php:232
413
  msgid "No data to show!"
414
  msgstr "Nema podataka za prikaz!"
415
 
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:103
459
  msgid "General Info"
460
  msgstr "Opšte informacije"
461
 
462
+ #: adrotate.php:104
463
  msgid "AdRotate Pro"
464
  msgstr "AdRotate Pro"
465
 
466
+ #: adrotate.php:105 dashboard/info.php:40
467
+ #: dashboard/publisher/adverts-edit.php:458
468
  #: dashboard/publisher/groups-main.php:34
469
  msgid "Adverts"
470
  msgstr "Oglasi"
471
 
472
+ #: adrotate.php:106 dashboard/info.php:44
473
  msgid "Groups"
474
  msgstr "Grupe"
475
 
476
+ #: adrotate.php:107
477
  msgid "Settings"
478
  msgstr "Postavke"
479
 
480
+ #: adrotate.php:125
481
  msgid "AdRotate Info"
482
  msgstr "AdRotate informacije"
483
 
484
+ #: adrotate.php:143
485
  #, fuzzy
486
  msgid "AdRotate Professional"
487
  msgstr "AdRotate promocije"
488
 
489
+ #: adrotate.php:183
490
  msgid "Advert Management"
491
  msgstr ""
492
 
493
+ #: adrotate.php:241 adrotate.php:308
494
  msgid "Manage"
495
  msgstr "Upravljati"
496
 
497
+ #: adrotate.php:242 adrotate.php:309
498
  msgid "Add New"
499
  msgstr "Dodati novi"
500
 
501
+ #: adrotate.php:302
502
  msgid "Group Management"
503
  msgstr "Menadžment grupe"
504
 
505
+ #: adrotate.php:311
506
  msgid "Report"
507
  msgstr "Izveštaj"
508
 
509
+ #: adrotate.php:356
510
  msgid "AdRotate Settings"
511
  msgstr "AdRotate postavke"
512
 
513
+ #: adrotate.php:361
514
+ #, fuzzy
515
+ #| msgid "General Info"
516
+ msgid "General"
517
+ msgstr "Opšte informacije"
518
+
519
+ #: adrotate.php:362 dashboard/settings/notifications.php:18
520
+ msgid "Notifications"
521
+ msgstr "Notifikacije"
522
+
523
+ #: adrotate.php:363 dashboard/publisher/adverts-disabled.php:69
524
+ #: dashboard/publisher/adverts-error.php:63
525
+ #: dashboard/publisher/adverts-main.php:81
526
+ #: dashboard/publisher/groups-main.php:70
527
+ msgid "Stats"
528
+ msgstr "Statistika"
529
+
530
+ #: adrotate.php:364 dashboard/publisher/adverts-edit.php:359
531
+ #: dashboard/publisher/groups-edit.php:180
532
+ #: dashboard/settings/advertisers.php:38
533
+ #, fuzzy
534
+ msgid "Geo Targeting"
535
+ msgstr "GeoTargeting"
536
+
537
+ #: adrotate.php:365 dashboard/settings/notifications.php:72
538
+ msgid "Advertisers"
539
+ msgstr "Oglašivači"
540
+
541
+ #: adrotate.php:366 dashboard/settings/roles.php:17
542
+ msgid "Roles"
543
+ msgstr ""
544
+
545
+ #: adrotate.php:367
546
+ msgid "Misc"
547
+ msgstr ""
548
+
549
+ #: adrotate.php:368 dashboard/settings/maintenance.php:16
550
+ msgid "Maintenance"
551
+ msgstr "Održavanje"
552
+
553
  #: dashboard/adrotatepro.php:20
554
  #, fuzzy
555
  msgid "Satisfy your advertisers"
600
  "forum. Get a solution (usually) within one business day."
601
  msgstr ""
602
 
603
+ #: dashboard/adrotatepro.php:48
604
  msgid "AdRotate is brought to you by"
605
  msgstr "AdRotate vam je omogućio"
606
 
607
+ #: dashboard/adrotatepro.php:51
608
+ msgid ""
609
+ "I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner "
610
+ "to find out more about me and what I am doing!"
611
+ msgstr ""
612
+
613
+ #: dashboard/adrotatepro.php:62
614
  msgid "Schedule all campaigns with ease"
615
  msgstr ""
616
 
617
+ #: dashboard/adrotatepro.php:65
618
  msgid ""
619
  "Schedule your adverts and set up advertising campaigns based on dates you or "
620
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
623
  "schedules for adverts."
624
  msgstr ""
625
 
626
+ #: dashboard/adrotatepro.php:69
627
  msgid "Avoid adblockers"
628
  msgstr ""
629
 
630
+ #: dashboard/adrotatepro.php:72
631
  msgid ""
632
  "Try and avoid adblockers so your adverts get the exposure you want them to "
633
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
635
  "adverts smartly so these features reach their full potential!"
636
  msgstr ""
637
 
638
+ #: dashboard/adrotatepro.php:76
639
  msgid "Stay up-to-date with notifications"
640
  msgstr ""
641
 
642
+ #: dashboard/adrotatepro.php:79
643
  msgid ""
644
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
645
  "adverts expire or need your attention. Additionally, send push notifications "
647
  "or when advertisers create new adverts. Never miss an expiration date again."
648
  msgstr ""
649
 
650
+ #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
651
+ #: dashboard/info.php:93
652
  #, fuzzy
653
  msgid "Buy AdRotate Professional"
654
  msgstr "Kupite odmah"
655
 
656
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
657
  msgid "Single License"
658
  msgstr ""
659
 
660
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
661
+ msgid "One WordPress installation."
662
+ msgstr ""
 
663
 
664
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
665
+ #: dashboard/info.php:98 dashboard/info.php:105
666
  msgid "Duo License"
667
  msgstr ""
668
 
669
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:98
670
+ msgid "Two WordPress installations."
671
+ msgstr ""
 
672
 
673
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
674
+ #: dashboard/info.php:99 dashboard/info.php:106
675
  msgid "Multi License"
676
  msgstr ""
677
 
678
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:99
679
+ msgid "Up to five WordPress installations."
680
+ msgstr ""
 
681
 
682
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
683
+ #: dashboard/info.php:100 dashboard/info.php:107
684
  #, fuzzy
685
  msgid "Developer License"
686
  msgstr "Debug za programera"
687
 
688
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:100
689
  msgid "Unlimited WordPress installations and/or networks."
690
  msgstr ""
691
 
692
+ #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
693
+ #: dashboard/info.php:101 dashboard/info.php:109
694
  msgid "Compare licenses"
695
  msgstr ""
696
 
697
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
698
  msgid "Not sure which license is for you? Compare them..."
699
  msgstr ""
700
 
701
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
702
  #, fuzzy
703
  msgid "All Licenses"
704
  msgstr "Ponovo ocenite sve oglase"
705
 
706
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
707
  msgid "Lifetime License"
708
  msgstr ""
709
 
710
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
711
  msgid "Single installation."
712
  msgstr ""
713
 
714
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:105
715
  msgid "Up to 2 installations."
716
  msgstr ""
717
 
718
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:106
719
  msgid "Up to 10 installations."
720
  msgstr ""
721
 
722
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:107
723
  msgid "Up to 25 installations or multisite networks."
724
  msgstr ""
725
 
726
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:108
727
  msgid ""
728
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
729
  msgstr ""
730
 
731
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
732
  msgid "Not sure which license is for you?"
733
  msgstr ""
734
 
735
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
736
  msgid "Compare Licenses"
737
  msgstr ""
738
 
739
+ #: dashboard/info.php:27
740
  msgid "Currently"
741
  msgstr "Trenutno"
742
 
743
+ #: dashboard/info.php:33
744
  msgid "Your setup"
745
  msgstr "Vaš pristup"
746
 
747
+ #: dashboard/info.php:34
748
  msgid "Adverts that need you"
749
  msgstr "Oglasi koji su vam potrebni"
750
 
751
+ #: dashboard/info.php:41
752
  msgid "(Almost) Expired"
753
  msgstr "( Skoro ) Isteklo"
754
 
755
+ #: dashboard/info.php:45
756
  msgid "Have errors"
757
  msgstr "Ima greške"
758
 
759
+ #: dashboard/info.php:50
760
  msgid ""
761
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
762
  "for updates about me and my plugins. Thank you!"
763
  msgstr ""
764
 
765
+ #: dashboard/info.php:74
766
+ msgid "Arnan de Gans News & Updates"
767
  msgstr ""
768
 
769
+ #: dashboard/info.php:114
770
+ msgid "Join the Media.net advertising network"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
771
  msgstr ""
772
 
773
  #: dashboard/publisher/adverts-disabled.php:15
782
  msgstr "Delo bulk-ovanja"
783
 
784
  #: dashboard/publisher/adverts-disabled.php:21
785
+ #: dashboard/publisher/adverts-edit.php:176
786
  msgid "Activate"
787
  msgstr "Aktiviraj"
788
 
813
  msgstr "ID"
814
 
815
  #: dashboard/publisher/adverts-disabled.php:36
816
+ #: dashboard/publisher/adverts-error.php:41
817
  #: dashboard/publisher/adverts-main.php:40
818
  #, fuzzy
819
  msgid "Start / End"
823
  "2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
824
 
825
  #: dashboard/publisher/adverts-disabled.php:37
826
+ #: dashboard/publisher/adverts-error.php:40
 
827
  #: dashboard/publisher/adverts-main.php:41
828
+ #: dashboard/publisher/groups-edit.php:51
829
+ #: dashboard/publisher/groups-main.php:33
830
+ msgid "Name"
831
+ msgstr "Ime"
832
 
833
+ #: dashboard/publisher/adverts-disabled.php:39
834
+ #: dashboard/publisher/adverts-main.php:43
835
+ #: dashboard/publisher/groups-edit.php:333
836
  #: dashboard/publisher/groups-main.php:36
837
  #, fuzzy
838
  msgid "Shown"
839
  msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
840
 
841
+ #: dashboard/publisher/adverts-disabled.php:40
842
+ #: dashboard/publisher/adverts-main.php:45
843
  #: dashboard/publisher/adverts-report.php:36
844
  #: dashboard/publisher/adverts-report.php:57
845
+ #: dashboard/publisher/groups-edit.php:334
846
  #: dashboard/publisher/groups-main.php:38
847
  #: dashboard/publisher/groups-report.php:37
848
  #: dashboard/publisher/groups-report.php:58
849
  msgid "Clicks"
850
  msgstr "Klikovi"
851
 
852
+ #: dashboard/publisher/adverts-disabled.php:41
853
+ #: dashboard/publisher/adverts-main.php:47
854
  #: dashboard/publisher/adverts-report.php:39
855
  #: dashboard/publisher/adverts-report.php:58
856
  #: dashboard/publisher/groups-report.php:40
858
  msgid "CTR"
859
  msgstr "CTR"
860
 
861
+ #: dashboard/publisher/adverts-disabled.php:69
862
+ #: dashboard/publisher/adverts-error.php:63
863
+ #: dashboard/publisher/adverts-main.php:81
864
  #: dashboard/publisher/groups-main.php:70
865
  msgid "Edit"
866
  msgstr "Edituj"
867
 
868
+ #: dashboard/publisher/adverts-disabled.php:69
869
+ #: dashboard/publisher/adverts-error.php:63
870
+ #: dashboard/publisher/adverts-main.php:81
 
 
 
 
 
 
 
871
  #, fuzzy
872
  msgid "Groups:"
873
  msgstr "Grupe"
874
 
875
+ #: dashboard/publisher/adverts-edit.php:48
876
  msgid "The AdCode cannot be empty!"
877
  msgstr "AdCode ne može biti prazan !"
878
 
879
+ #: dashboard/publisher/adverts-edit.php:51
880
  msgid ""
881
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
882
  "use!"
883
  msgstr ""
884
 
885
+ #: dashboard/publisher/adverts-edit.php:54
886
  msgid ""
887
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
888
  "use!"
889
  msgstr ""
890
 
891
+ #: dashboard/publisher/adverts-edit.php:57
892
  msgid ""
893
  "There is a problem saving the image. Please reset your image and re-save the "
894
  "ad!"
895
  msgstr ""
896
 
897
+ #: dashboard/publisher/adverts-edit.php:60
898
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
899
  msgstr ""
900
 
901
+ #: dashboard/publisher/adverts-edit.php:65
902
  msgid ""
903
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
904
  "the ad!"
906
  "AdRotate ne može da pronađe grešku , alioglas obeležen pogrešno , pokušajte "
907
  "ponovo čuvanja oglas !"
908
 
909
+ #: dashboard/publisher/adverts-edit.php:68
910
  msgid "This ad is expired and currently not shown on your website!"
911
  msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
912
 
913
+ #: dashboard/publisher/adverts-edit.php:71
914
  msgid "The ad will expire in less than 2 days!"
915
  msgstr "Oglas ističe za manje od 2 dana !"
916
 
917
+ #: dashboard/publisher/adverts-edit.php:74
918
  msgid "This ad will expire in less than 7 days!"
919
  msgstr "Ovaj oglas će isteći za manje od 7 dana !"
920
 
921
+ #: dashboard/publisher/adverts-edit.php:77
922
  msgid "This ad has been disabled and does not rotate on your site!"
923
  msgstr "Ovaj oglas je onemogućen i ne rotira na vašem sajtu !"
924
 
925
+ #: dashboard/publisher/adverts-edit.php:81
926
+ msgid ""
927
+ "This advert uses the obsolete Responsive feature. Please use the more "
928
+ "reliable Mobile feature! Saving the advert will disable the responsive "
929
+ "option silently."
930
+ msgstr ""
931
+
932
+ #: dashboard/publisher/adverts-edit.php:106
933
  #, fuzzy
934
  msgid "New Advert"
935
  msgstr ""
936
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
937
  "Default: 6."
938
 
939
+ #: dashboard/publisher/adverts-edit.php:108
940
  #, fuzzy
941
  msgid "Edit Advert"
942
  msgstr "Edituj"
943
 
944
+ #: dashboard/publisher/adverts-edit.php:114
945
+ msgid "Title"
946
+ msgstr "Naslov"
947
+
948
+ #: dashboard/publisher/adverts-edit.php:120
949
  msgid "AdCode"
950
  msgstr ""
951
 
952
+ #: dashboard/publisher/adverts-edit.php:125
953
  msgid "Basic Examples:"
954
  msgstr "Osnovni Primeri :"
955
 
956
+ #: dashboard/publisher/adverts-edit.php:129
957
+ msgid "Get better adverts from Media.net"
958
+ msgstr ""
959
+
960
+ #: dashboard/publisher/adverts-edit.php:134
961
  msgid "Useful tags"
962
  msgstr ""
963
 
964
+ #: dashboard/publisher/adverts-edit.php:136
965
  msgid "Insert the advert ID Number."
966
  msgstr ""
967
 
968
+ #: dashboard/publisher/adverts-edit.php:136
969
  msgid "Required when selecting a asset below."
970
  msgstr ""
971
 
972
+ #: dashboard/publisher/adverts-edit.php:136
973
  msgid "Insert the advert name."
974
  msgstr ""
975
 
976
+ #: dashboard/publisher/adverts-edit.php:136
977
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
978
  msgstr ""
979
 
980
+ #: dashboard/publisher/adverts-edit.php:136
981
  msgid "Add inside the <a> tag to open advert in a new window."
982
  msgstr ""
983
 
984
+ #: dashboard/publisher/adverts-edit.php:136
985
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
986
  msgstr ""
987
 
988
+ #: dashboard/publisher/adverts-edit.php:136
989
  msgid ""
990
  "Place the cursor in your AdCode where you want to add any of these tags and "
991
  "click to add it."
992
  msgstr ""
993
 
994
+ #: dashboard/publisher/adverts-edit.php:141
995
  msgid "Preview"
996
  msgstr "Pregled"
997
 
998
+ #: dashboard/publisher/adverts-edit.php:144
999
  msgid ""
1000
  "Note: While this preview is an accurate one, it might look different then it "
1001
  "does on the website."
1003
  "Napomena : Iako je ovaj pregled jejedan tačan , to bi moglo da izgleda "
1004
  "drugačije onda to čini na sajtu ."
1005
 
1006
+ #: dashboard/publisher/adverts-edit.php:145
1007
  msgid ""
1008
  "This is because of CSS differences. Your themes CSS file is not active here!"
1009
  msgstr "To je zbog CSS razlika . Vaš teme CSS fajl nije aktivan ovde !"
1010
 
1011
+ #: dashboard/publisher/adverts-edit.php:150
1012
  msgid "Banner asset"
1013
  msgstr ""
1014
 
1015
+ #: dashboard/publisher/adverts-edit.php:153
1016
  msgid "WordPress media:"
1017
  msgstr ""
1018
 
1019
+ #: dashboard/publisher/adverts-edit.php:153
1020
  #, fuzzy
1021
  msgid "Select Banner"
1022
  msgstr "Baner Folder"
1023
 
1024
+ #: dashboard/publisher/adverts-edit.php:155
1025
  msgid "- OR -"
1026
  msgstr "- ILI -"
1027
 
1028
+ #: dashboard/publisher/adverts-edit.php:157
1029
  msgid "Banner folder:"
1030
  msgstr "Folder banera:"
1031
 
1032
+ #: dashboard/publisher/adverts-edit.php:158
1033
  msgid "No image selected"
1034
  msgstr "Nijedna slika nije izabrana"
1035
 
1036
+ #: dashboard/publisher/adverts-edit.php:162
1037
  msgid "Use %asset% in the adcode instead of the file path."
1038
  msgstr ""
1039
 
1040
+ #: dashboard/publisher/adverts-edit.php:162
1041
  msgid ""
1042
  "Use either the text field or the dropdown. If the textfield has content that "
1043
  "field has priority."
1045
  "Koristite ili polje za tekst ili dropdown. Ako polje teksta ima sadržaj koji "
1046
  "polje ima prioritet ."
1047
 
1048
+ #: dashboard/publisher/adverts-edit.php:167
1049
  #: dashboard/settings/statistics.php:17
1050
  msgid "Statistics"
1051
  msgstr "Statistike"
1052
 
1053
+ #: dashboard/publisher/adverts-edit.php:169
1054
  msgid "Enable click and impression tracking for this advert."
1055
  msgstr ""
1056
 
1057
+ #: dashboard/publisher/adverts-edit.php:170
1058
  msgid ""
1059
  "Note: Clicktracking does not work for Javascript adverts such as those "
1060
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1061
  "always supported."
1062
  msgstr ""
1063
 
1064
+ #: dashboard/publisher/adverts-edit.php:180
1065
  msgid "Yes, this ad will be used"
1066
  msgstr "Da , ovaj oglas će se koristiti"
1067
 
1068
+ #: dashboard/publisher/adverts-edit.php:181
1069
  msgid "No, do not show this ad anywhere"
1070
  msgstr "Ne , ne pokazuju nigde ovaj oglas"
1071
 
1072
+ #: dashboard/publisher/adverts-edit.php:188
1073
+ #: dashboard/publisher/adverts-main.php:105
1074
  #: dashboard/publisher/groups-edit.php:71
1075
  #: dashboard/publisher/groups-main.php:89
1076
  #, fuzzy
1077
  msgid "Get more features with AdRotate Pro."
1078
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
1079
 
1080
+ #: dashboard/publisher/adverts-edit.php:188
1081
+ #: dashboard/publisher/adverts-main.php:105
1082
  #: dashboard/publisher/groups-edit.php:71
1083
  #: dashboard/publisher/groups-main.php:89
1084
  #, fuzzy
1085
  msgid "More information"
1086
  msgstr "Saznajte više"
1087
 
1088
+ #: dashboard/publisher/adverts-edit.php:191
1089
+ #: dashboard/publisher/adverts-edit.php:291
1090
+ #: dashboard/publisher/adverts-edit.php:447
1091
+ #: dashboard/publisher/adverts-edit.php:488
1092
  msgid "Save Advert"
1093
  msgstr "Sačuvaj oglas"
1094
 
1095
+ #: dashboard/publisher/adverts-edit.php:192
1096
+ #: dashboard/publisher/adverts-edit.php:292
1097
+ #: dashboard/publisher/adverts-edit.php:448
1098
+ #: dashboard/publisher/adverts-edit.php:489
1099
  #: dashboard/publisher/groups-edit.php:150
1100
  #: dashboard/publisher/groups-edit.php:299
1101
  #: dashboard/publisher/groups-edit.php:391
1102
  msgid "Cancel"
1103
  msgstr "Ukini"
1104
 
1105
+ #: dashboard/publisher/adverts-edit.php:195
1106
+ #: dashboard/publisher/adverts-edit.php:430
1107
  #: dashboard/publisher/groups-edit.php:132
1108
  #: dashboard/publisher/groups-edit.php:281
1109
  msgid "Usage"
1110
  msgstr "upotreba"
1111
 
1112
+ #: dashboard/publisher/adverts-edit.php:199
1113
+ #: dashboard/publisher/adverts-edit.php:434
1114
  #: dashboard/publisher/groups-edit.php:136
1115
  #: dashboard/publisher/groups-edit.php:205
1116
  #: dashboard/publisher/groups-edit.php:245
1118
  msgid "Widget"
1119
  msgstr ""
1120
 
1121
+ #: dashboard/publisher/adverts-edit.php:200
1122
+ #: dashboard/publisher/adverts-edit.php:435
1123
  msgid ""
1124
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1125
  "and select the advert or the group the advert is in."
1126
  msgstr ""
1127
 
1128
+ #: dashboard/publisher/adverts-edit.php:203
1129
+ #: dashboard/publisher/adverts-edit.php:438
1130
  #: dashboard/publisher/groups-edit.php:140
1131
  #: dashboard/publisher/groups-edit.php:289
1132
  msgid "In a post or page"
1133
  msgstr ""
1134
 
1135
+ #: dashboard/publisher/adverts-edit.php:205
1136
+ #: dashboard/publisher/adverts-edit.php:440
1137
  #: dashboard/publisher/groups-edit.php:142
1138
  #: dashboard/publisher/groups-edit.php:291
1139
  msgid "Directly in a theme"
1140
  msgstr ""
1141
 
1142
+ #: dashboard/publisher/adverts-edit.php:211
1143
  msgid "Schedule your advert"
1144
  msgstr ""
1145
 
1146
+ #: dashboard/publisher/adverts-edit.php:215
1147
  msgid "Start date (day/month/year)"
1148
  msgstr ""
1149
 
1150
+ #: dashboard/publisher/adverts-edit.php:236
1151
  msgid "End date (day/month/year)"
1152
  msgstr ""
1153
 
1154
+ #: dashboard/publisher/adverts-edit.php:259
1155
  msgid "Start time (hh:mm)"
1156
  msgstr ""
1157
 
1158
+ #: dashboard/publisher/adverts-edit.php:266
1159
  msgid "End time (hh:mm)"
1160
  msgstr ""
1161
 
1162
+ #: dashboard/publisher/adverts-edit.php:276
1163
  msgid "Maximum Clicks"
1164
  msgstr ""
1165
 
1166
+ #: dashboard/publisher/adverts-edit.php:277
1167
+ #: dashboard/publisher/adverts-edit.php:279
1168
  msgid "Leave empty or 0 to skip this."
1169
  msgstr "Ostavite prazno ili 0 da preskoči ovo."
1170
 
1171
+ #: dashboard/publisher/adverts-edit.php:278
1172
  msgid "Maximum Impressions"
1173
  msgstr ""
1174
 
1175
+ #: dashboard/publisher/adverts-edit.php:283
1176
  msgid "Important"
1177
  msgstr ""
1178
 
1179
+ #: dashboard/publisher/adverts-edit.php:284
1180
  msgid ""
1181
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1182
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1183
  "14:00 hours. 6AM is 6:00 hours."
1184
  msgstr ""
1185
 
1186
+ #: dashboard/publisher/adverts-edit.php:288
1187
  msgid ""
1188
  "Create multiple and more advanced schedules for each advert with AdRotate "
1189
  "Pro."
1190
  msgstr ""
1191
 
1192
+ #: dashboard/publisher/adverts-edit.php:288
1193
+ #: dashboard/publisher/adverts-edit.php:357
1194
+ #: dashboard/publisher/adverts-edit.php:428
1195
  #: dashboard/publisher/groups-edit.php:191
1196
  #, fuzzy
1197
  msgid "Upgrade today"
1198
  msgstr "Danas"
1199
 
1200
+ #: dashboard/publisher/adverts-edit.php:295
1201
  #: dashboard/publisher/groups-edit.php:153
1202
  msgid "Advanced"
1203
  msgstr ""
1204
 
1205
+ #: dashboard/publisher/adverts-edit.php:296
1206
+ #: dashboard/publisher/adverts-edit.php:360
1207
  msgid "Available in AdRotate Pro!"
1208
  msgstr ""
1209
 
1210
+ #: dashboard/publisher/adverts-edit.php:301
1211
+ #: dashboard/publisher/groups-edit.php:331
 
1212
  msgid "Weight"
1213
  msgstr "Težina"
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:304
1216
  msgid "Few impressions"
1217
  msgstr ""
1218
 
1219
+ #: dashboard/publisher/adverts-edit.php:309
1220
  #, fuzzy
1221
  msgid "Less than average"
1222
  msgstr "Oglas ističe za manje od 2 dana !"
1223
 
1224
+ #: dashboard/publisher/adverts-edit.php:314
1225
  msgid "Normal impressions"
1226
  msgstr ""
1227
 
1228
+ #: dashboard/publisher/adverts-edit.php:319
1229
  #, fuzzy
1230
  msgid "More than average"
1231
  msgstr "Saznajte više"
1232
 
1233
+ #: dashboard/publisher/adverts-edit.php:324
1234
  msgid "Many impressions"
1235
  msgstr ""
1236
 
1237
+ #: dashboard/publisher/adverts-edit.php:329
1238
  msgid "Mobile"
1239
  msgstr ""
1240
 
1241
+ #: dashboard/publisher/adverts-edit.php:331
1242
  msgid "Computers"
1243
  msgstr ""
1244
 
1245
+ #: dashboard/publisher/adverts-edit.php:334
1246
  msgid "Smartphones"
1247
  msgstr ""
1248
 
1249
+ #: dashboard/publisher/adverts-edit.php:337
1250
  msgid "Tablets"
1251
  msgstr ""
1252
 
1253
+ #: dashboard/publisher/adverts-edit.php:340
1254
  msgid ""
1255
  "Also enable mobile support in the group this advert goes in or these are "
1256
  "ignored."
1257
  msgstr ""
1258
 
1259
+ #: dashboard/publisher/adverts-edit.php:340
1260
+ msgid "Operating system detection only detects iOS/Android/Other or neither."
 
 
1261
  msgstr ""
1262
 
1263
+ #: dashboard/publisher/adverts-edit.php:344
1264
  msgid "Mobile OS"
1265
  msgstr ""
1266
 
1267
+ #: dashboard/publisher/adverts-edit.php:346
1268
  msgid "iOS"
1269
  msgstr ""
1270
 
1271
+ #: dashboard/publisher/adverts-edit.php:349
1272
  msgid "Android"
1273
  msgstr ""
1274
 
1275
+ #: dashboard/publisher/adverts-edit.php:352
1276
  msgid "Others"
1277
  msgstr ""
1278
 
1279
+ #: dashboard/publisher/adverts-edit.php:357
1280
  msgid ""
1281
  "With AdRotate Pro you can easily select which devices and mobile operating "
1282
  "systems the advert should show on!"
1283
  msgstr ""
1284
 
1285
+ #: dashboard/publisher/adverts-edit.php:360
 
 
 
 
 
 
 
1286
  msgid ""
1287
  "Assign the advert to a group and enable that group to use Geo Targeting."
1288
  msgstr ""
1289
 
1290
+ #: dashboard/publisher/adverts-edit.php:418
1291
  msgid "A comma separated list of items:"
1292
  msgstr ""
1293
 
1294
+ #: dashboard/publisher/adverts-edit.php:418
1295
  msgid ""
1296
  "AdRotate does not check the validity of names so make sure you spell them "
1297
  "correctly!"
1298
  msgstr ""
1299
 
1300
+ #: dashboard/publisher/adverts-edit.php:428
1301
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1302
  msgstr ""
1303
 
1304
+ #: dashboard/publisher/adverts-edit.php:452
1305
  msgid "Select Groups"
1306
  msgstr "Izbor grupe"
1307
 
1308
+ #: dashboard/publisher/adverts-edit.php:457
1309
  #, fuzzy
1310
  msgid "ID - Name"
1311
  msgstr "Ime"
1312
 
1313
+ #: dashboard/publisher/adverts-edit.php:467
1314
  #: dashboard/publisher/groups-main.php:60
1315
  #: dashboard/settings/geotargeting.php:49
1316
  #, fuzzy
1317
  msgid "Default"
1318
  msgstr "Default - Prikazati po jedan oglas"
1319
 
1320
+ #: dashboard/publisher/adverts-edit.php:468
1321
  #: dashboard/publisher/groups-main.php:61
1322
  #, fuzzy
1323
  msgid "Dynamic"
1324
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
1325
 
1326
+ #: dashboard/publisher/adverts-edit.php:468
1327
  #: dashboard/publisher/groups-main.php:61
1328
  #, fuzzy
1329
  msgid "second rotation"
1330
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
1331
 
1332
+ #: dashboard/publisher/adverts-edit.php:469
1333
  #: dashboard/publisher/groups-main.php:62
1334
  #, fuzzy
1335
  msgid "Block"
1336
  msgstr "Menadžmet blokiranih"
1337
 
1338
+ #: dashboard/publisher/adverts-edit.php:469
1339
  #: dashboard/publisher/groups-main.php:62
1340
  #, fuzzy
1341
  msgid "grid"
1342
  msgstr ""
1343
  "Napravite mrežu za oglase. Popunjavanje 2 i 2 čini 2x2 mrežu. (Default: 2/2)"
1344
 
1345
+ #: dashboard/publisher/adverts-edit.php:470
1346
  #: dashboard/publisher/groups-edit.php:199
1347
  #: dashboard/publisher/groups-main.php:63
1348
  #, fuzzy
1349
  msgid "Post Injection"
1350
  msgstr "U post ili stranicu:"
1351
 
1352
+ #: dashboard/publisher/adverts-edit.php:471
1353
  #, fuzzy
1354
  msgid "Geolocation"
1355
  msgstr "GeoLocation"
1356
 
1357
+ #: dashboard/publisher/adverts-edit.php:477
1358
  #: dashboard/publisher/groups-edit.php:57
1359
  #: dashboard/publisher/groups-main.php:70
1360
  msgid "Mode"
1395
  msgstr "Za 7 dana"
1396
 
1397
  #: dashboard/publisher/adverts-error.php:71
1398
+ #, fuzzy
1399
+ #| msgid "Configuration errors."
1400
+ msgid "Configuration errors"
1401
  msgstr "Konfiguracione greške."
1402
 
1403
  #: dashboard/publisher/adverts-error.php:72
1404
+ #, fuzzy
1405
+ #| msgid "Expires soon."
1406
+ msgid "Expires soon"
1407
  msgstr "Ističe uskoro."
1408
 
1409
  #: dashboard/publisher/adverts-error.php:73
1410
+ #: dashboard/settings/maintenance.php:64
1411
+ #, fuzzy
1412
+ msgid "Expired"
1413
  msgstr "Isteklo je."
1414
 
1415
  #: dashboard/publisher/adverts-main.php:12
1418
 
1419
  #: dashboard/publisher/adverts-main.php:24
1420
  #, fuzzy
1421
+ msgid "Export to CSV"
1422
  msgstr "Izlazne opcije za"
1423
 
1424
+ #: dashboard/publisher/adverts-main.php:44
1425
+ #: dashboard/publisher/adverts-main.php:46
1426
  #: dashboard/publisher/groups-main.php:37
1427
  #: dashboard/publisher/groups-main.php:39
1428
  msgid "Today"
1429
  msgstr "Danas"
1430
 
1431
+ #: dashboard/publisher/adverts-main.php:100
1432
  msgid "No adverts created yet!"
1433
  msgstr ""
1434
 
1484
  msgid "Edit Group"
1485
  msgstr "Edituj grupu"
1486
 
 
 
 
 
 
1487
  #: dashboard/publisher/groups-edit.php:60
1488
  msgid "Default - Show one ad at a time"
1489
  msgstr "Default - Prikazati po jedan oglas"
1777
  msgid "Choose adverts"
1778
  msgstr ""
1779
 
1780
+ #: dashboard/publisher/groups-edit.php:330
1781
  msgid "Visible until"
1782
  msgstr "Vidljivo do"
1783
 
1785
  msgid "No adverts created!"
1786
  msgstr ""
1787
 
1788
+ #: dashboard/publisher/groups-edit.php:384
1789
+ msgid "Configuration errors."
1790
+ msgstr "Konfiguracione greške."
1791
+
1792
+ #: dashboard/publisher/groups-edit.php:385
1793
+ msgid "Expires soon."
1794
+ msgstr "Ističe uskoro."
1795
+
1796
+ #: dashboard/publisher/groups-edit.php:386
1797
+ msgid "Has expired."
1798
+ msgstr "Isteklo je."
1799
+
1800
  #: dashboard/publisher/groups-main.php:12
1801
  msgid "Manage Groups"
1802
  msgstr "Upravljajte grupama"
1818
  msgstr "Ovo delo se ne može povratiti!"
1819
 
1820
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1821
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
 
1822
  msgid "OK to continue, CANCEL to stop."
1823
  msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
1824
 
1885
  msgstr ""
1886
 
1887
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1888
+ #: dashboard/settings/maintenance.php:116 dashboard/settings/misc.php:43
1889
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1890
+ #: dashboard/settings/statistics.php:73
1891
  msgid "Update Options"
1892
  msgstr "Update opcije"
1893
 
1987
 
1988
  #: dashboard/settings/general.php:50
1989
  #, fuzzy
1990
+ msgid "Set a folder where your banner images will be stored."
1991
  msgstr ""
1992
  "Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
1993
  "banners/)."
1994
 
1995
  #: dashboard/settings/general.php:53
1996
+ msgid "Folder name"
1997
+ msgstr ""
 
1998
 
1999
  #: dashboard/settings/general.php:55
2000
  #, fuzzy
2001
+ msgid "(Default: banners)."
2002
  msgstr ""
2003
  "Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
2004
  "banners/)."
2146
  msgid "Password/License Key"
2147
  msgstr ""
2148
 
 
 
 
 
2149
  #: dashboard/settings/maintenance.php:17
2150
  msgid ""
2151
  "Use these functions when you notice your database is slow, unresponsive and "
2184
  "Opšti podaci se akumulira smeća usled mnogih promena koje ste napravili . "
2185
  "Ovo može da varira od nule do nekoliko stotina KiB podataka ."
2186
 
2187
+ #: dashboard/settings/maintenance.php:28
2188
+ #, fuzzy
2189
+ #| msgid "Clean-up Database"
2190
+ msgid "Clean-up Database and Files"
2191
+ msgstr "Čišćenje baze"
2192
+
2193
+ #: dashboard/settings/maintenance.php:30
2194
  msgid "Clean-up Database"
2195
  msgstr "Čišćenje baze"
2196
 
2197
  #: dashboard/settings/maintenance.php:30
2198
  #, fuzzy
2199
  msgid ""
2200
+ "You are about to clean up your database. This may delete expired schedules, "
2201
+ "older statistics and try to delete export files"
2202
  msgstr "Čišćenje baze"
2203
 
2204
  #: dashboard/settings/maintenance.php:30
2206
  msgid "Are you sure you want to continue?"
2207
  msgstr "Popunite ID tipa koji želite da prikažete!"
2208
 
2209
+ #: dashboard/settings/maintenance.php:30
2210
+ msgid "THIS ACTION CAN NOT BE UNDONE!"
 
 
2211
  msgstr ""
 
 
2212
 
2213
  #: dashboard/settings/maintenance.php:31
2214
  #, fuzzy
2215
+ msgid "Delete stats older than 356 days."
2216
  msgstr "Uloga obrisati oglase i resetovanje ."
2217
 
2218
  #: dashboard/settings/maintenance.php:32
2219
+ msgid "Delete leftover export files."
2220
  msgstr ""
2221
 
2222
  #: dashboard/settings/maintenance.php:33
2226
  msgstr ""
2227
 
2228
  #: dashboard/settings/maintenance.php:33
2229
+ #, fuzzy
2230
  msgid ""
2231
+ "Additionally you can delete statistics and/or unused export files. This will "
2232
+ "improve the speed of your site."
2233
+ msgstr "Čišćenje baze"
2234
 
2235
  #: dashboard/settings/maintenance.php:37
2236
  msgid "Re-evaluate Ads"
2244
  msgid "You are about to check all ads for errors."
2245
  msgstr "Vi ste o tome da proveri sve oglase za greške ."
2246
 
2247
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
2248
+ #, fuzzy
2249
+ msgid "This might take a while and may slow down your site during this action!"
2250
+ msgstr ""
2251
+ "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
2252
+ "sporo privremeno !"
2253
+
2254
  #: dashboard/settings/maintenance.php:40
2255
  msgid ""
2256
  "This will apply all evaluation rules to all ads to see if any error slipped "
2298
 
2299
  #: dashboard/settings/maintenance.php:54
2300
  #, fuzzy
2301
+ #| msgid "Track clicks and impressions."
2302
+ msgid "Disable timers for clicks and impressions."
 
2303
  msgstr "Pratite klikove i prikaze ."
2304
 
2305
  #: dashboard/settings/maintenance.php:55
2329
  msgid "Error"
2330
  msgstr "Nepoznati error se ukazao."
2331
 
 
 
 
 
 
2332
  #: dashboard/settings/maintenance.php:64
2333
  #, fuzzy
2334
  msgid "Expires Soon"
2342
  msgid "Banners/assets Folder"
2343
  msgstr ""
2344
 
2345
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2346
  msgid "Exists and appears writable"
2347
  msgstr ""
2348
 
2349
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2350
  msgid "Not writable or does not exist"
2351
  msgstr ""
2352
 
2353
+ #: dashboard/settings/maintenance.php:76
2354
  msgid "Reports Folder"
2355
  msgstr ""
2356
 
2357
+ #: dashboard/settings/maintenance.php:85
2358
  msgid "Advert evaluation"
2359
  msgstr ""
2360
 
2361
+ #: dashboard/settings/maintenance.php:86
2362
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2363
  msgstr ""
2364
 
2365
+ #: dashboard/settings/maintenance.php:87
2366
+ #, fuzzy
2367
+ #| msgid "Clean Trackerdata next run:"
2368
+ msgid "Clean Trackerdata"
2369
+ msgstr "Očistite Trackerdata u sledećem pokušaju :"
2370
+
2371
+ #: dashboard/settings/maintenance.php:88
2372
+ msgid "Not scheduled!"
2373
+ msgstr "Nije planirano:"
2374
+
2375
+ #: dashboard/settings/maintenance.php:91
2376
+ msgid "Background tasks"
2377
  msgstr ""
2378
 
2379
+ #: dashboard/settings/maintenance.php:93
2380
+ msgid "Reset background tasks"
2381
+ msgstr ""
2382
+
2383
+ #: dashboard/settings/maintenance.php:98
2384
  msgid "Internal Versions"
2385
  msgstr ""
2386
 
2387
+ #: dashboard/settings/maintenance.php:99
2388
  msgid ""
2389
  "Unless you experience database issues or a warning shows below, these "
2390
  "numbers are not really relevant for troubleshooting. Support may ask for "
2391
  "them to verify your database status."
2392
  msgstr ""
2393
 
2394
+ #: dashboard/settings/maintenance.php:102
2395
  msgid "AdRotate version"
2396
  msgstr ""
2397
 
2398
+ #: dashboard/settings/maintenance.php:103
2399
+ #: dashboard/settings/maintenance.php:105
2400
  msgid "Current:"
2401
  msgstr ""
2402
 
2403
+ #: dashboard/settings/maintenance.php:103
2404
+ #: dashboard/settings/maintenance.php:105
2405
  msgid "Should be:"
2406
  msgstr ""
2407
 
2408
+ #: dashboard/settings/maintenance.php:103
2409
+ #: dashboard/settings/maintenance.php:105
2410
  msgid "Previous:"
2411
  msgstr ""
2412
 
2413
+ #: dashboard/settings/maintenance.php:104
2414
  msgid "Database version"
2415
  msgstr ""
2416
 
2417
+ #: dashboard/settings/maintenance.php:108
2418
+ msgid "Manual upgrade"
2419
+ msgstr ""
2420
+
2421
+ #: dashboard/settings/maintenance.php:110
2422
  msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2423
  msgstr ""
2424
 
2425
+ #: dashboard/settings/maintenance.php:110
2426
  msgid "Make sure you have a database backup!"
2427
  msgstr ""
2428
 
2429
+ #: dashboard/settings/maintenance.php:110
2430
+ #, fuzzy
2431
+ #| msgid "Ad updated"
2432
+ msgid "Run updater"
2433
+ msgstr "Update oglasa"
2434
 
2435
  #: dashboard/settings/misc.php:16
2436
  msgid "Miscellaneous"
2512
  "Hvatanje podrške radi samo za [kratke brojeve] i AdRotate Widget . Ako "
2513
  "koristite PHP Snippet treba da zamotate svoj PHP u isključenju svog koda."
2514
 
 
 
 
 
2515
  #: dashboard/settings/notifications.php:19
2516
  #, fuzzy
2517
  msgid "Set up who gets notifications if ads need your attention."
2649
  "separated. This field may not be empty!"
2650
  msgstr ""
2651
 
 
 
 
 
2652
  #: dashboard/settings/notifications.php:75
2653
  msgid ""
2654
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2704
  msgid "and get your API token"
2705
  msgstr ""
2706
 
 
 
 
 
2707
  #: dashboard/settings/roles.php:18
2708
  msgid "Who has access to what?"
2709
  msgstr ""
2855
  msgstr ""
2856
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
2857
 
2858
+ #~ msgid "Empty database records removed"
2859
+ #~ msgstr "Prazni zapisi baze podataka uklanjaju"
 
2860
 
2861
+ #, fuzzy
2862
+ #~ msgid "For one WordPress installation."
2863
+ #~ msgstr "Instalacije"
2864
+
2865
+ #, fuzzy
2866
+ #~ msgid "For two WordPress installations."
2867
+ #~ msgstr "Instalacije"
2868
+
2869
+ #, fuzzy
2870
+ #~ msgid " For up to five WordPress installations."
2871
+ #~ msgstr "Instalacije"
2872
+
2873
+ #, fuzzy
2874
+ #~ msgid "Location"
2875
+ #~ msgstr ""
2876
+ #~ "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
2877
+
2878
+ #, fuzzy
2879
+ #~ msgid ""
2880
+ #~ "Disable timers for clicks and impressions and enable a alert window for "
2881
+ #~ "clicktracking."
2882
+ #~ msgstr "Pratite klikove i prikaze ."
2883
 
2884
  #, fuzzy
2885
  #~ msgid "Help AdRotate Grow"
3000
  #~ msgid "Ad evaluation next run:"
3001
  #~ msgstr "Očistite Trackerdata u sledećem pokušaju :"
3002
 
 
 
 
 
 
 
3003
  #, fuzzy
3004
  #~ msgid "Set up who gets notification emails."
3005
  #~ msgstr "Oglasi koje treba neposrednu pažnju"
3181
  #~ msgid "Ad created"
3182
  #~ msgstr "Stvaranje oglasa"
3183
 
 
 
 
3184
  #~ msgid ""
3185
  #~ "The ad was saved but has an issue which might prevent it from working "
3186
  #~ "properly. Review the yellow marked ad."
3285
  #~ "button to delete those empty records."
3286
  #~ msgstr "Vi ste na putu da izbrišete grupu"
3287
 
 
 
 
 
 
 
3288
  #~ msgid ""
3289
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3290
  #~ "becomes unusable in any way or by any means in whichever way I will not "
3469
  #~ msgid "Enable stats"
3470
  #~ msgstr "Statistika"
3471
 
 
 
 
3472
  #, fuzzy
3473
  #~ msgid ""
3474
  #~ "Disabling this also disables click and impression limits on schedules."
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: 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,118 +13,120 @@ 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.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
 
123
- #: adrotate-output.php:575
124
  msgid "Oh no! Something went wrong!"
125
  msgstr "Åh nej! Något gick fel!"
126
 
127
- #: adrotate-output.php:576
128
  msgid ""
129
  "WordPress was unable to verify the authenticity of the url you have clicked. "
130
  "Verify if the url used is valid or log in via your browser."
@@ -133,18 +135,18 @@ msgstr ""
133
  "klickat. Kontrollera att webbadressen som används är giltigt eller logga in "
134
  "via webbläsaren."
135
 
136
- #: adrotate-output.php:577
137
  msgid ""
138
  "If you have received the url you want to visit via email, you are being "
139
  "tricked!"
140
  msgstr ""
141
  "Om du har fått webbadressen du vill besöka via e-post, är du bli lurad!"
142
 
143
- #: adrotate-output.php:578
144
  msgid "Contact support if the issue persists:"
145
  msgstr "Kontakta support om problemet kvarstår:"
146
 
147
- #: adrotate-output.php:593
148
  msgid ""
149
  "Error, Ad is not available at this time due to schedule/geolocation "
150
  "restrictions or does not exist!"
@@ -152,7 +154,7 @@ msgstr ""
152
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
153
  "geolokalisering restriktioner eller finns inte!"
154
 
155
- #: adrotate-output.php:595
156
  msgid ""
157
  "Error, Ad is not available at this time due to schedule/geolocation "
158
  "restrictions!"
@@ -160,7 +162,7 @@ msgstr ""
160
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
161
  "geolokalisering begränsningar!"
162
 
163
- #: adrotate-output.php:602 adrotate-output.php:604
164
  msgid ""
165
  "Either there are no banners, they are disabled or none qualified for this "
166
  "location!"
@@ -168,19 +170,19 @@ msgstr ""
168
  "Antingen finns det inga banderoller, de har inaktiverats eller inga "
169
  "kvalificerade för den här platsen!"
170
 
171
- #: adrotate-output.php:610
172
  msgid "Error, no Ad ID set! Check your syntax!"
173
  msgstr "Fel, ingen annons ID set! Kontrollera din syntax!"
174
 
175
- #: adrotate-output.php:616
176
  msgid "Error, no group ID set! Check your syntax!"
177
  msgstr "Fel, ingen grupp-ID satt! Kontrollera din syntax!"
178
 
179
- #: adrotate-output.php:621
180
  msgid "Error, group does not exist! Check your syntax!"
181
  msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
182
 
183
- #: adrotate-output.php:627
184
  msgid ""
185
  "There was an error locating the database tables for AdRotate. Please "
186
  "deactivate and re-activate AdRotate from the plugin page!!"
@@ -188,231 +190,231 @@ msgstr ""
188
  "Det uppstod ett fel lokalisera databastabeller för AdRotate. Vänligen "
189
  "avaktivera och återaktivera AdRotate från plugin sidan!"
190
 
191
- #: adrotate-output.php:627
192
  msgid "If this does not solve the issue please seek support at"
193
  msgstr "Om detta inte löser problemet vänligen söka stöd hos"
194
 
195
- #: adrotate-output.php:633
196
  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
  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,61 +459,100 @@ msgstr "ID:"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
515
  #: dashboard/adrotatepro.php:20
516
  #, fuzzy
517
  msgid "Satisfy your advertisers"
@@ -562,15 +603,21 @@ msgid ""
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, "
@@ -579,11 +626,11 @@ msgid ""
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 "
@@ -591,11 +638,11 @@ msgid ""
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,150 +650,128 @@ msgid ""
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
 
699
- #: dashboard/info.php:24
700
  msgid "Currently"
701
  msgstr "För närvarande"
702
 
703
- #: dashboard/info.php:30
704
  msgid "Your setup"
705
  msgstr "Din installation"
706
 
707
- #: dashboard/info.php:31
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 "
749
- "plugins!"
750
  msgstr ""
751
 
752
  #: dashboard/publisher/adverts-disabled.php:15
@@ -761,7 +786,7 @@ 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
 
@@ -792,7 +817,7 @@ 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
797
  #, fuzzy
798
  msgid "Start / End"
@@ -802,32 +827,33 @@ msgstr ""
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"
809
- msgstr "Titel"
 
 
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"
817
 
818
- #: dashboard/publisher/adverts-disabled.php:39
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
826
  msgid "Clicks"
827
  msgstr "Klick"
828
 
829
- #: dashboard/publisher/adverts-disabled.php:40
830
- #: dashboard/publisher/adverts-main.php:48
831
  #: dashboard/publisher/adverts-report.php:39
832
  #: dashboard/publisher/adverts-report.php:58
833
  #: dashboard/publisher/groups-report.php:40
@@ -835,54 +861,47 @@ msgstr "Klick"
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,78 +909,93 @@ msgstr ""
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,41 +1003,41 @@ msgstr ""
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,72 +1045,72 @@ msgstr ""
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
1043
  msgid "Get more features with AdRotate Pro."
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
@@ -1084,187 +1118,178 @@ msgstr "Användning"
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,41 +1298,41 @@ msgstr ""
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,17 +1340,17 @@ msgstr ""
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,19 +1391,21 @@ msgid "For 7 days"
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"
@@ -1386,17 +1413,17 @@ msgstr ""
1386
 
1387
  #: dashboard/publisher/adverts-main.php:24
1388
  #, fuzzy
1389
- msgid "Export to XML"
1390
  msgstr "Exportera"
1391
 
1392
- #: dashboard/publisher/adverts-main.php:45
1393
- #: dashboard/publisher/adverts-main.php:47
1394
  #: dashboard/publisher/groups-main.php:37
1395
  #: dashboard/publisher/groups-main.php:39
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,11 +1477,6 @@ msgstr "Ny grupp"
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"
@@ -1740,7 +1762,7 @@ msgstr ""
1740
  msgid "Choose adverts"
1741
  msgstr ""
1742
 
1743
- #: dashboard/publisher/groups-edit.php:335
1744
  msgid "Visible until"
1745
  msgstr "Synlig tills"
1746
 
@@ -1748,6 +1770,18 @@ msgstr "Synlig tills"
1748
  msgid "No adverts created!"
1749
  msgstr ""
1750
 
 
 
 
 
 
 
 
 
 
 
 
 
1751
  #: dashboard/publisher/groups-main.php:12
1752
  msgid "Manage Groups"
1753
  msgstr "Hantera Grupper"
@@ -1769,8 +1803,7 @@ msgid "This action can not be undone!"
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,9 +1869,9 @@ msgid ""
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
 
@@ -1938,19 +1971,18 @@ msgstr "Banner Folder"
1938
 
1939
  #: dashboard/settings/general.php:50
1940
  #, fuzzy
1941
- msgid "Set a location where your banner images will be stored."
1942
  msgstr ""
1943
  "Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
1944
  "banners /)."
1945
 
1946
  #: dashboard/settings/general.php:53
1947
- #, fuzzy
1948
- msgid "Location"
1949
- msgstr "Geo Location"
1950
 
1951
  #: dashboard/settings/general.php:55
1952
  #, fuzzy
1953
- msgid "(Default: wp-content/banners/)."
1954
  msgstr ""
1955
  "Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
1956
  "banners /)."
@@ -2097,10 +2129,6 @@ msgstr ""
2097
  msgid "Password/License Key"
2098
  msgstr ""
2099
 
2100
- #: dashboard/settings/maintenance.php:16
2101
- msgid "Maintenance"
2102
- msgstr "Underhåll"
2103
-
2104
  #: dashboard/settings/maintenance.php:17
2105
  msgid ""
2106
  "Use these functions when you notice your database is slow, unresponsive and "
@@ -2139,14 +2167,24 @@ msgstr ""
2139
  "Övervaknings uppgifter samlas skräp till följd av många ändringar du har "
2140
  "gjort. Denna kan variera från ingenting till hundratals KiB of data."
2141
 
2142
- #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
 
 
 
 
 
 
2143
  msgid "Clean-up Database"
2144
  msgstr "Städa upp Databas"
2145
 
2146
  #: dashboard/settings/maintenance.php:30
 
 
 
 
2147
  msgid ""
2148
- "You are about to clean up your database. This may delete expired schedules "
2149
- "and older statistics."
2150
  msgstr ""
2151
  "Du håller på att städa upp din databas. Detta kan ta bort utgångna scheman "
2152
  "och äldre statistik."
@@ -2155,20 +2193,18 @@ msgstr ""
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 ""
2163
- "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
2164
- "tillfälligt!"
2165
 
2166
  #: dashboard/settings/maintenance.php:31
2167
- msgid "Delete stats older than 356 days (Optional)."
 
 
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
@@ -2178,10 +2214,16 @@ msgid ""
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
@@ -2198,6 +2240,13 @@ msgstr "Omvärdera alla annonser"
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 ""
@@ -2246,10 +2295,9 @@ 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."
@@ -2271,10 +2319,6 @@ msgstr "Normal"
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"
@@ -2287,74 +2331,95 @@ msgstr ""
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"
@@ -2430,10 +2495,6 @@ msgstr ""
2430
  "Caching stöd fungerar bara för [shortcodes] och AdRotate Widget. Om du "
2431
  "använder ett PHP Snippet måste du svepa din PHP i utanförskap koden själv."
2432
 
2433
- #: dashboard/settings/notifications.php:18
2434
- msgid "Notifications"
2435
- msgstr "Meddelanden"
2436
-
2437
  #: dashboard/settings/notifications.php:19
2438
  #, fuzzy
2439
  msgid "Set up who gets notifications if ads need your attention."
@@ -2571,10 +2632,6 @@ msgid ""
2571
  "separated. This field may not be empty!"
2572
  msgstr ""
2573
 
2574
- #: dashboard/settings/notifications.php:72
2575
- msgid "Advertisers"
2576
- msgstr "Annonsörer"
2577
-
2578
  #: dashboard/settings/notifications.php:75
2579
  msgid ""
2580
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
@@ -2630,10 +2687,6 @@ msgstr ""
2630
  msgid "and get your API token"
2631
  msgstr ""
2632
 
2633
- #: dashboard/settings/roles.php:17
2634
- msgid "Roles"
2635
- msgstr ""
2636
-
2637
  #: dashboard/settings/roles.php:18
2638
  msgid "Who has access to what?"
2639
  msgstr ""
@@ -2785,15 +2838,30 @@ msgid ""
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"
@@ -2922,12 +2990,6 @@ msgstr ""
2922
  #~ msgid "Ad evaluation next run:"
2923
  #~ msgstr "Annons Meddelanden nästa körning:"
2924
 
2925
- #~ msgid "Not scheduled!"
2926
- #~ msgstr "Inte planerat!"
2927
-
2928
- #~ msgid "Clean Trackerdata next run:"
2929
- #~ msgstr "Rensa Trackerdata nästa körning:"
2930
-
2931
  #, fuzzy
2932
  #~ msgid "Set up who gets notification emails."
2933
  #~ msgstr "Annonser som behöver uppmärksammas"
@@ -3103,9 +3165,6 @@ msgstr ""
3103
  #~ msgid "Ad created"
3104
  #~ msgstr "Annons skapad"
3105
 
3106
- #~ msgid "Ad updated"
3107
- #~ msgstr "Annons uppdaterad"
3108
-
3109
  #~ msgid ""
3110
  #~ "The ad was saved but has an issue which might prevent it from working "
3111
  #~ "properly. Review the yellow marked ad."
@@ -3206,13 +3265,6 @@ msgstr ""
3206
  #~ "Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
3207
  #~ "den här knappen för att ta bort de tomma poster."
3208
 
3209
- #~ msgid ""
3210
- #~ "Additionally you can clean up old statistics. This will improve the speed "
3211
- #~ "of your site."
3212
- #~ msgstr ""
3213
- #~ "Ytterligare kan du rensa upp gammal statistik. Detta kommer att förbättra "
3214
- #~ "hastigheten på din webbplats."
3215
-
3216
  #~ msgid ""
3217
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3218
  #~ "becomes unusable in any way or by any means in whichever way I will not "
@@ -3398,9 +3450,6 @@ msgstr ""
3398
  #~ msgid "Enable stats"
3399
  #~ msgstr "Statistik"
3400
 
3401
- #~ msgid "Track clicks and impressions."
3402
- #~ msgstr "Spåra klick och visningar."
3403
-
3404
  #, fuzzy
3405
  #~ msgid ""
3406
  #~ "Disabling this also disables click and impression limits on schedules."
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-19 15:30+0800\n"
6
+ "PO-Revision-Date: 2017-06-19 15:30+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 2.0.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:722
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
+ #: adrotate-functions.php:725
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
+ #: adrotate-functions.php:768
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:772
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:776
37
  msgid "Ad(s) deleted"
38
  msgstr "Annons(er) raderas"
39
 
40
+ #: adrotate-functions.php:780
41
  msgid "Group deleted"
42
  msgstr "Grupp raderad"
43
 
44
+ #: adrotate-functions.php:784
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Annons(er) statistik återställning"
47
 
48
+ #: adrotate-functions.php:788
49
  msgid "Ad(s) renewed"
50
  msgstr "Annons(er) förnyas"
51
 
52
+ #: adrotate-functions.php:792
53
  msgid "Ad(s) deactivated"
54
  msgstr "Annons(er) avaktiveras"
55
 
56
+ #: adrotate-functions.php:796
57
  msgid "Ad(s) activated"
58
  msgstr "Annons(er) aktiveras"
59
 
60
+ #: adrotate-functions.php:800
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupp inklusive dess annonser raderade"
63
 
64
+ #: adrotate-functions.php:804
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "export skapad"
68
 
69
+ #: adrotate-functions.php:809
70
  msgid "Settings saved"
71
  msgstr "Inställningar sparas"
72
 
73
+ #: adrotate-functions.php:813
74
  msgid "Database optimized"
75
  msgstr "Databas optimerad"
76
 
77
+ #: adrotate-functions.php:817
78
  msgid "Database repaired"
79
  msgstr "Databas reparation"
80
 
81
+ #: adrotate-functions.php:821
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:825
86
+ #, fuzzy
87
+ #| msgid "Clean-up Database"
88
+ msgid "Cleanup complete"
89
+ msgstr "Städa upp Databas"
90
 
91
+ #: adrotate-functions.php:830
92
  msgid "Action prohibited"
93
  msgstr "Åtgärden förbjuden"
94
 
95
+ #: adrotate-functions.php:834
96
  msgid ""
97
  "The ad was saved but has an issue which might prevent it from working "
98
  "properly. Review the colored ad."
99
  msgstr ""
100
 
101
+ #: adrotate-functions.php:838
102
  msgid "No data found in selected time period"
103
  msgstr "Inga data finns i vald tidsperiod"
104
 
105
+ #: adrotate-functions.php:842
106
  msgid "Database can only be optimized or cleaned once every hour"
107
  msgstr "Databas kan endast optimeras eller rengöras en gång i timmen"
108
 
109
+ #: adrotate-functions.php:846
110
  msgid "Form can not be (partially) empty!"
111
  msgstr ""
112
 
113
+ #: adrotate-functions.php:850
114
  msgid "No ads found."
115
  msgstr ""
116
 
117
+ #: adrotate-functions.php:854
118
  msgid "Unexpected error"
119
  msgstr ""
120
 
121
+ #: adrotate-manage-publisher.php:665
122
  msgid "AdRotate Advertiser"
123
  msgstr ""
124
 
125
+ #: adrotate-output.php:551
126
  msgid "Oh no! Something went wrong!"
127
  msgstr "Åh nej! Något gick fel!"
128
 
129
+ #: adrotate-output.php:552
130
  msgid ""
131
  "WordPress was unable to verify the authenticity of the url you have clicked. "
132
  "Verify if the url used is valid or log in via your browser."
135
  "klickat. Kontrollera att webbadressen som används är giltigt eller logga in "
136
  "via webbläsaren."
137
 
138
+ #: adrotate-output.php:553
139
  msgid ""
140
  "If you have received the url you want to visit via email, you are being "
141
  "tricked!"
142
  msgstr ""
143
  "Om du har fått webbadressen du vill besöka via e-post, är du bli lurad!"
144
 
145
+ #: adrotate-output.php:554
146
  msgid "Contact support if the issue persists:"
147
  msgstr "Kontakta support om problemet kvarstår:"
148
 
149
+ #: adrotate-output.php:569
150
  msgid ""
151
  "Error, Ad is not available at this time due to schedule/geolocation "
152
  "restrictions or does not exist!"
154
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
155
  "geolokalisering restriktioner eller finns inte!"
156
 
157
+ #: adrotate-output.php:571
158
  msgid ""
159
  "Error, Ad is not available at this time due to schedule/geolocation "
160
  "restrictions!"
162
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
163
  "geolokalisering begränsningar!"
164
 
165
+ #: adrotate-output.php:578 adrotate-output.php:580
166
  msgid ""
167
  "Either there are no banners, they are disabled or none qualified for this "
168
  "location!"
170
  "Antingen finns det inga banderoller, de har inaktiverats eller inga "
171
  "kvalificerade för den här platsen!"
172
 
173
+ #: adrotate-output.php:586
174
  msgid "Error, no Ad ID set! Check your syntax!"
175
  msgstr "Fel, ingen annons ID set! Kontrollera din syntax!"
176
 
177
+ #: adrotate-output.php:592
178
  msgid "Error, no group ID set! Check your syntax!"
179
  msgstr "Fel, ingen grupp-ID satt! Kontrollera din syntax!"
180
 
181
+ #: adrotate-output.php:597
182
  msgid "Error, group does not exist! Check your syntax!"
183
  msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
184
 
185
+ #: adrotate-output.php:603
186
  msgid ""
187
  "There was an error locating the database tables for AdRotate. Please "
188
  "deactivate and re-activate AdRotate from the plugin page!!"
190
  "Det uppstod ett fel lokalisera databastabeller för AdRotate. Vänligen "
191
  "avaktivera och återaktivera AdRotate från plugin sidan!"
192
 
193
+ #: adrotate-output.php:603
194
  msgid "If this does not solve the issue please seek support at"
195
  msgstr "Om detta inte löser problemet vänligen söka stöd hos"
196
 
197
+ #: adrotate-output.php:609
198
  msgid "An unknown error occured."
199
  msgstr "Ett okänt fel uppstod."
200
 
201
+ #: adrotate-output.php:628 adrotate-output.php:631 adrotate-output.php:635
202
  msgid "Check adverts"
203
  msgstr ""
204
 
205
+ #: adrotate-output.php:640
206
  msgid ""
207
  "You have enable caching support but W3 Total Cache is not active on your "
208
  "site!"
209
  msgstr ""
210
 
211
+ #: adrotate-output.php:643
212
  msgid ""
213
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
214
  "not set."
215
  msgstr ""
216
 
217
+ #: adrotate-output.php:648
218
  msgid "Your AdRotate Banner folder is not writable or does not exist."
219
  msgstr ""
220
 
221
+ #: adrotate-output.php:688 dashboard/adrotatepro.php:87
222
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:89
223
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:99
224
+ #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
225
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:97 dashboard/info.php:98
226
+ #: dashboard/info.php:99 dashboard/info.php:100 dashboard/info.php:104
227
+ #: dashboard/info.php:105 dashboard/info.php:106 dashboard/info.php:107
228
  #: dashboard/settings/geotargeting.php:35
229
  #, fuzzy
230
  msgid "Buy now"
231
  msgstr "Köp nu"
232
 
233
+ #: adrotate-output.php:689
234
  msgid ""
235
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
236
  "to the <strong>PRO</strong> version"
237
  msgstr ""
238
 
239
+ #: adrotate-output.php:689
240
  #, php-format
241
  msgid ""
242
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
243
  msgstr ""
244
 
245
+ #: adrotate-output.php:689
246
  msgid "Thank you for your purchase!"
247
  msgstr ""
248
 
249
+ #: adrotate-output.php:752
250
  msgid ""
251
  "Thank you for choosing AdRotate. Everything related to AdRotate is in this "
252
  "menu. If you need help getting started take a look at the"
253
  msgstr ""
254
 
255
+ #: adrotate-output.php:752
256
  msgid "manuals"
257
  msgstr "manual"
258
 
259
+ #: adrotate-output.php:752 adrotate-output.php:822
260
  msgid "and"
261
  msgstr ""
262
 
263
+ #: adrotate-output.php:752
264
  msgid "forums"
265
  msgstr ""
266
 
267
+ #: adrotate-output.php:785
268
  #, fuzzy
269
  msgid "Useful Links"
270
  msgstr "Nyttiga länkar"
271
 
272
+ #: adrotate-output.php:786
273
  msgid "Useful links to learn more about AdRotate"
274
  msgstr ""
275
 
276
+ #: adrotate-output.php:788
277
  msgid "AdRotate website"
278
  msgstr ""
279
 
280
+ #: adrotate-output.php:789
281
  #, fuzzy
282
  msgid "Getting Started With AdRotate"
283
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
284
 
285
+ #: adrotate-output.php:790
286
  #, fuzzy
287
  msgid "AdRotate manuals"
288
  msgstr "AdRotate Information"
289
 
290
+ #: adrotate-output.php:791
291
  #, fuzzy
292
  msgid "AdRotate Support Forum"
293
  msgstr "AdRotate butik"
294
 
295
+ #: adrotate-output.php:814 dashboard/info.php:49
296
  msgid "Support AdRotate"
297
  msgstr "Support AdRotate"
298
 
299
+ #: adrotate-output.php:815
300
  msgid "Check out my website"
301
  msgstr ""
302
 
303
+ #: adrotate-output.php:822
304
  msgid ""
305
  "Many users only think to review AdRotate when something goes wrong while "
306
  "thousands of people happily use AdRotate."
307
  msgstr ""
308
 
309
+ #: adrotate-output.php:822
310
  msgid "If you find AdRotate useful please leave your"
311
  msgstr ""
312
 
313
+ #: adrotate-output.php:822
314
  msgid "rating"
315
  msgstr ""
316
 
317
+ #: adrotate-output.php:822
318
  #, fuzzy
319
  msgid "review"
320
  msgstr "Betygsätt och omdöme"
321
 
322
+ #: adrotate-output.php:822
323
  msgid "on WordPress.org to help AdRotate grow in a positive way"
324
  msgstr ""
325
 
326
+ #: adrotate-output.php:848 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:848
332
  #, fuzzy
333
  msgid "More information..."
334
  msgstr "Mer info"
335
 
336
+ #: adrotate-output.php:849
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:849
341
  #, fuzzy
342
  msgid "Learn more"
343
  msgstr "Läs mer om"
344
 
345
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:220
346
+ #: dashboard/publisher/adverts-edit.php:241
347
  msgid "January"
348
  msgstr "Januari"
349
 
350
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:221
351
+ #: dashboard/publisher/adverts-edit.php:242
352
  msgid "February"
353
  msgstr "Februari"
354
 
355
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:222
356
+ #: dashboard/publisher/adverts-edit.php:243
357
  msgid "March"
358
  msgstr "Mars"
359
 
360
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:223
361
+ #: dashboard/publisher/adverts-edit.php:244
362
  msgid "April"
363
  msgstr "April"
364
 
365
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:224
366
+ #: dashboard/publisher/adverts-edit.php:245
367
  msgid "May"
368
  msgstr "Maj"
369
 
370
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:225
371
+ #: dashboard/publisher/adverts-edit.php:246
372
  msgid "June"
373
  msgstr "Juni"
374
 
375
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:226
376
+ #: dashboard/publisher/adverts-edit.php:247
377
  msgid "July"
378
  msgstr "Juli"
379
 
380
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:227
381
+ #: dashboard/publisher/adverts-edit.php:248
382
  msgid "August"
383
  msgstr "Augusti"
384
 
385
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:228
386
+ #: dashboard/publisher/adverts-edit.php:249
387
  msgid "September"
388
  msgstr "September"
389
 
390
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:229
391
+ #: dashboard/publisher/adverts-edit.php:250
392
  msgid "October"
393
  msgstr "Oktober"
394
 
395
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:230
396
+ #: dashboard/publisher/adverts-edit.php:251
397
  msgid "November"
398
  msgstr "November"
399
 
400
+ #: adrotate-statistics.php:138 dashboard/publisher/adverts-edit.php:231
401
+ #: dashboard/publisher/adverts-edit.php:252
402
  msgid "December"
403
  msgstr "December"
404
 
405
+ #: adrotate-statistics.php:143
406
  msgid "Previous"
407
  msgstr "Föregående"
408
 
409
+ #: adrotate-statistics.php:145
410
  msgid "This month"
411
  msgstr "Den här månaden"
412
 
413
+ #: adrotate-statistics.php:146
414
  msgid "Next"
415
  msgstr "Nästa"
416
 
417
+ #: adrotate-statistics.php:232
418
  msgid "No data to show!"
419
  msgstr "Inga data att visa!"
420
 
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:103
463
  msgid "General Info"
464
  msgstr "Allmän info"
465
 
466
+ #: adrotate.php:104
467
  msgid "AdRotate Pro"
468
  msgstr "AdRotate Pro"
469
 
470
+ #: adrotate.php:105 dashboard/info.php:40
471
+ #: dashboard/publisher/adverts-edit.php:458
472
  #: dashboard/publisher/groups-main.php:34
473
  msgid "Adverts"
474
  msgstr "Annonser"
475
 
476
+ #: adrotate.php:106 dashboard/info.php:44
477
  msgid "Groups"
478
  msgstr "Grupper"
479
 
480
+ #: adrotate.php:107
481
  msgid "Settings"
482
  msgstr "Inställningar"
483
 
484
+ #: adrotate.php:125
485
  msgid "AdRotate Info"
486
  msgstr "AdRotate Information"
487
 
488
+ #: adrotate.php:143
489
  #, fuzzy
490
  msgid "AdRotate Professional"
491
  msgstr "AdRotate"
492
 
493
+ #: adrotate.php:183
494
  msgid "Advert Management"
495
  msgstr ""
496
 
497
+ #: adrotate.php:241 adrotate.php:308
498
  msgid "Manage"
499
  msgstr "Hantera"
500
 
501
+ #: adrotate.php:242 adrotate.php:309
502
  msgid "Add New"
503
  msgstr "Lägg till ny"
504
 
505
+ #: adrotate.php:302
506
  msgid "Group Management"
507
  msgstr "Grupp Hantering"
508
 
509
+ #: adrotate.php:311
510
  msgid "Report"
511
  msgstr "Rapport"
512
 
513
+ #: adrotate.php:356
514
  msgid "AdRotate Settings"
515
  msgstr "AdRotate Inställningar"
516
 
517
+ #: adrotate.php:361
518
+ #, fuzzy
519
+ #| msgid "General Info"
520
+ msgid "General"
521
+ msgstr "Allmän info"
522
+
523
+ #: adrotate.php:362 dashboard/settings/notifications.php:18
524
+ msgid "Notifications"
525
+ msgstr "Meddelanden"
526
+
527
+ #: adrotate.php:363 dashboard/publisher/adverts-disabled.php:69
528
+ #: dashboard/publisher/adverts-error.php:63
529
+ #: dashboard/publisher/adverts-main.php:81
530
+ #: dashboard/publisher/groups-main.php:70
531
+ msgid "Stats"
532
+ msgstr "Statistik"
533
+
534
+ #: adrotate.php:364 dashboard/publisher/adverts-edit.php:359
535
+ #: dashboard/publisher/groups-edit.php:180
536
+ #: dashboard/settings/advertisers.php:38
537
+ msgid "Geo Targeting"
538
+ msgstr "Geo Targeting"
539
+
540
+ #: adrotate.php:365 dashboard/settings/notifications.php:72
541
+ msgid "Advertisers"
542
+ msgstr "Annonsörer"
543
+
544
+ #: adrotate.php:366 dashboard/settings/roles.php:17
545
+ msgid "Roles"
546
+ msgstr ""
547
+
548
+ #: adrotate.php:367
549
+ msgid "Misc"
550
+ msgstr ""
551
+
552
+ #: adrotate.php:368 dashboard/settings/maintenance.php:16
553
+ msgid "Maintenance"
554
+ msgstr "Underhåll"
555
+
556
  #: dashboard/adrotatepro.php:20
557
  #, fuzzy
558
  msgid "Satisfy your advertisers"
603
  "forum. Get a solution (usually) within one business day."
604
  msgstr ""
605
 
606
+ #: dashboard/adrotatepro.php:48
607
  msgid "AdRotate is brought to you by"
608
  msgstr "AdRotate kommer till dig genom"
609
 
610
+ #: dashboard/adrotatepro.php:51
611
+ msgid ""
612
+ "I am Arnan de Gans, a digital nomad in the Philippines. Click on the banner "
613
+ "to find out more about me and what I am doing!"
614
+ msgstr ""
615
+
616
+ #: dashboard/adrotatepro.php:62
617
  msgid "Schedule all campaigns with ease"
618
  msgstr ""
619
 
620
+ #: dashboard/adrotatepro.php:65
621
  msgid ""
622
  "Schedule your adverts and set up advertising campaigns based on dates you or "
623
  "your advertisers specify without hassle. Seasonal adverts, weekly adverts, "
626
  "schedules for adverts."
627
  msgstr ""
628
 
629
+ #: dashboard/adrotatepro.php:69
630
  msgid "Avoid adblockers"
631
  msgstr ""
632
 
633
+ #: dashboard/adrotatepro.php:72
634
  msgid ""
635
  "Try and avoid adblockers so your adverts get the exposure you want them to "
636
  "have. AdRotate Pro offers some advanced tools to deceive adblockers so your "
638
  "adverts smartly so these features reach their full potential!"
639
  msgstr ""
640
 
641
+ #: dashboard/adrotatepro.php:76
642
  msgid "Stay up-to-date with notifications"
643
  msgstr ""
644
 
645
+ #: dashboard/adrotatepro.php:79
646
  msgid ""
647
  "Stay in touch with Email notifications. Have AdRotate send you an alert when "
648
  "adverts expire or need your attention. Additionally, send push notifications "
650
  "or when advertisers create new adverts. Never miss an expiration date again."
651
  msgstr ""
652
 
653
+ #: dashboard/adrotatepro.php:83 dashboard/adrotatepro.php:95
654
+ #: dashboard/info.php:93
655
  #, fuzzy
656
  msgid "Buy AdRotate Professional"
657
  msgstr "Köp nu"
658
 
659
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
660
  msgid "Single License"
661
  msgstr ""
662
 
663
+ #: dashboard/adrotatepro.php:87 dashboard/info.php:97
664
+ msgid "One WordPress installation."
665
+ msgstr ""
 
666
 
667
+ #: dashboard/adrotatepro.php:88 dashboard/adrotatepro.php:100
668
+ #: dashboard/info.php:98 dashboard/info.php:105
669
  #, fuzzy
670
  msgid "Duo License"
671
  msgstr "AdRotate Licens"
672
 
673
+ #: dashboard/adrotatepro.php:88 dashboard/info.php:98
674
+ msgid "Two WordPress installations."
675
+ msgstr ""
 
676
 
677
+ #: dashboard/adrotatepro.php:89 dashboard/adrotatepro.php:101
678
+ #: dashboard/info.php:99 dashboard/info.php:106
679
  #, fuzzy
680
  msgid "Multi License"
681
  msgstr "AdRotate Licens"
682
 
683
+ #: dashboard/adrotatepro.php:89 dashboard/info.php:99
684
+ msgid "Up to five WordPress installations."
685
+ msgstr ""
 
686
 
687
+ #: dashboard/adrotatepro.php:90 dashboard/adrotatepro.php:102
688
+ #: dashboard/info.php:100 dashboard/info.php:107
689
  #, fuzzy
690
  msgid "Developer License"
691
  msgstr "Utvecklar Debug"
692
 
693
+ #: dashboard/adrotatepro.php:90 dashboard/info.php:100
694
  msgid "Unlimited WordPress installations and/or networks."
695
  msgstr ""
696
 
697
+ #: dashboard/adrotatepro.php:91 dashboard/adrotatepro.php:104
698
+ #: dashboard/info.php:101 dashboard/info.php:109
699
  msgid "Compare licenses"
700
  msgstr ""
701
 
702
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
703
  msgid "Not sure which license is for you? Compare them..."
704
  msgstr ""
705
 
706
+ #: dashboard/adrotatepro.php:91 dashboard/info.php:101
707
  msgid "All Licenses"
708
  msgstr ""
709
 
710
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
711
  msgid "Lifetime License"
712
  msgstr ""
713
 
714
+ #: dashboard/adrotatepro.php:99 dashboard/info.php:104
715
  msgid "Single installation."
716
  msgstr ""
717
 
718
+ #: dashboard/adrotatepro.php:100 dashboard/info.php:105
719
  msgid "Up to 2 installations."
720
  msgstr ""
721
 
722
+ #: dashboard/adrotatepro.php:101 dashboard/info.php:106
723
  msgid "Up to 10 installations."
724
  msgstr ""
725
 
726
+ #: dashboard/adrotatepro.php:102 dashboard/info.php:107
727
  msgid "Up to 25 installations or multisite networks."
728
  msgstr ""
729
 
730
+ #: dashboard/adrotatepro.php:103 dashboard/info.php:108
731
  msgid ""
732
  "Subscriptions get 1 year access to updates, email support & AdRotate Geo."
733
  msgstr ""
734
 
735
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
736
  msgid "Not sure which license is for you?"
737
  msgstr ""
738
 
739
+ #: dashboard/adrotatepro.php:104 dashboard/info.php:109
740
  msgid "Compare Licenses"
741
  msgstr ""
742
 
743
+ #: dashboard/info.php:27
744
  msgid "Currently"
745
  msgstr "För närvarande"
746
 
747
+ #: dashboard/info.php:33
748
  msgid "Your setup"
749
  msgstr "Din installation"
750
 
751
+ #: dashboard/info.php:34
752
  msgid "Adverts that need you"
753
  msgstr "Annonser som behöver dig"
754
 
755
+ #: dashboard/info.php:41
756
  msgid "(Almost) Expired"
757
  msgstr "(Nästan) Expired"
758
 
759
+ #: dashboard/info.php:45
760
  msgid "Have errors"
761
  msgstr "Har fel"
762
 
763
+ #: dashboard/info.php:50
764
  msgid ""
765
  "Consider writing a review if you like AdRotate. Also follow my Facebook page "
766
  "for updates about me and my plugins. Thank you!"
767
  msgstr ""
768
 
769
+ #: dashboard/info.php:74
770
+ msgid "Arnan de Gans News & Updates"
771
  msgstr ""
772
 
773
+ #: dashboard/info.php:114
774
+ msgid "Join the Media.net advertising network"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
775
  msgstr ""
776
 
777
  #: dashboard/publisher/adverts-disabled.php:15
786
  msgstr "Massåtgärder"
787
 
788
  #: dashboard/publisher/adverts-disabled.php:21
789
+ #: dashboard/publisher/adverts-edit.php:176
790
  msgid "Activate"
791
  msgstr "Aktivera"
792
 
817
  msgstr "ID"
818
 
819
  #: dashboard/publisher/adverts-disabled.php:36
820
+ #: dashboard/publisher/adverts-error.php:41
821
  #: dashboard/publisher/adverts-main.php:40
822
  #, fuzzy
823
  msgid "Start / End"
827
  "timmar. 14:00 är 14:00. 06:00 är 6:00 timmar."
828
 
829
  #: dashboard/publisher/adverts-disabled.php:37
830
+ #: dashboard/publisher/adverts-error.php:40
 
831
  #: dashboard/publisher/adverts-main.php:41
832
+ #: dashboard/publisher/groups-edit.php:51
833
+ #: dashboard/publisher/groups-main.php:33
834
+ msgid "Name"
835
+ msgstr "Namn"
836
 
837
+ #: dashboard/publisher/adverts-disabled.php:39
838
+ #: dashboard/publisher/adverts-main.php:43
839
+ #: dashboard/publisher/groups-edit.php:333
840
  #: dashboard/publisher/groups-main.php:36
841
  msgid "Shown"
842
  msgstr "Visa"
843
 
844
+ #: dashboard/publisher/adverts-disabled.php:40
845
+ #: dashboard/publisher/adverts-main.php:45
846
  #: dashboard/publisher/adverts-report.php:36
847
  #: dashboard/publisher/adverts-report.php:57
848
+ #: dashboard/publisher/groups-edit.php:334
849
  #: dashboard/publisher/groups-main.php:38
850
  #: dashboard/publisher/groups-report.php:37
851
  #: dashboard/publisher/groups-report.php:58
852
  msgid "Clicks"
853
  msgstr "Klick"
854
 
855
+ #: dashboard/publisher/adverts-disabled.php:41
856
+ #: dashboard/publisher/adverts-main.php:47
857
  #: dashboard/publisher/adverts-report.php:39
858
  #: dashboard/publisher/adverts-report.php:58
859
  #: dashboard/publisher/groups-report.php:40
861
  msgid "CTR"
862
  msgstr "CTR"
863
 
864
+ #: dashboard/publisher/adverts-disabled.php:69
865
+ #: dashboard/publisher/adverts-error.php:63
866
+ #: dashboard/publisher/adverts-main.php:81
867
  #: dashboard/publisher/groups-main.php:70
868
  msgid "Edit"
869
  msgstr "Ändra"
870
 
871
+ #: dashboard/publisher/adverts-disabled.php:69
872
+ #: dashboard/publisher/adverts-error.php:63
873
+ #: dashboard/publisher/adverts-main.php:81
 
 
 
 
 
 
 
874
  #, fuzzy
875
  msgid "Groups:"
876
  msgstr "Grupper"
877
 
878
+ #: dashboard/publisher/adverts-edit.php:48
879
  msgid "The AdCode cannot be empty!"
880
  msgstr "Den AdCode kan inte vara tomt!"
881
 
882
+ #: dashboard/publisher/adverts-edit.php:51
883
  msgid ""
884
  "You did not use %asset% (or %image%) in your AdCode but did select a file to "
885
  "use!"
886
  msgstr ""
887
 
888
+ #: dashboard/publisher/adverts-edit.php:54
889
  msgid ""
890
  "You did use %asset% (or %image%) in your AdCode but did not select a file to "
891
  "use!"
892
  msgstr ""
893
 
894
+ #: dashboard/publisher/adverts-edit.php:57
895
  msgid ""
896
  "There is a problem saving the image. Please reset your image and re-save the "
897
  "ad!"
898
  msgstr ""
899
 
900
+ #: dashboard/publisher/adverts-edit.php:60
901
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
902
  msgstr ""
903
 
904
+ #: dashboard/publisher/adverts-edit.php:65
905
  msgid ""
906
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
907
  "the ad!"
909
  "AdRotate kan inte hitta något fel, men annonsen är märkt felaktiga, försök "
910
  "åter spara annonsen!"
911
 
912
+ #: dashboard/publisher/adverts-edit.php:68
913
  msgid "This ad is expired and currently not shown on your website!"
914
  msgstr ""
915
  "Den här annonsen har gått ut och för tillfället inte visas på din webbplats!"
916
 
917
+ #: dashboard/publisher/adverts-edit.php:71
918
  msgid "The ad will expire in less than 2 days!"
919
  msgstr "Annonsen går ut om mindre än 2 dagar!"
920
 
921
+ #: dashboard/publisher/adverts-edit.php:74
922
  msgid "This ad will expire in less than 7 days!"
923
  msgstr "Annonsen går ut om mindre än 7 dagar!"
924
 
925
+ #: dashboard/publisher/adverts-edit.php:77
926
  msgid "This ad has been disabled and does not rotate on your site!"
927
  msgstr "Den här annonsen har inaktiverats och inte roterar på din webbplats!"
928
 
929
+ #: dashboard/publisher/adverts-edit.php:81
930
+ msgid ""
931
+ "This advert uses the obsolete Responsive feature. Please use the more "
932
+ "reliable Mobile feature! Saving the advert will disable the responsive "
933
+ "option silently."
934
+ msgstr ""
935
+
936
+ #: dashboard/publisher/adverts-edit.php:106
937
  msgid "New Advert"
938
  msgstr "Ny annons"
939
 
940
+ #: dashboard/publisher/adverts-edit.php:108
941
  msgid "Edit Advert"
942
  msgstr "Redigera annons"
943
 
944
+ #: dashboard/publisher/adverts-edit.php:114
945
+ msgid "Title"
946
+ msgstr "Titel"
947
+
948
+ #: dashboard/publisher/adverts-edit.php:120
949
  msgid "AdCode"
950
  msgstr ""
951
 
952
+ #: dashboard/publisher/adverts-edit.php:125
953
  msgid "Basic Examples:"
954
  msgstr "Grundläggande Exempel:"
955
 
956
+ #: dashboard/publisher/adverts-edit.php:129
957
+ msgid "Get better adverts from Media.net"
958
+ msgstr ""
959
+
960
+ #: dashboard/publisher/adverts-edit.php:134
961
  msgid "Useful tags"
962
  msgstr ""
963
 
964
+ #: dashboard/publisher/adverts-edit.php:136
965
  msgid "Insert the advert ID Number."
966
  msgstr ""
967
 
968
+ #: dashboard/publisher/adverts-edit.php:136
969
  msgid "Required when selecting a asset below."
970
  msgstr ""
971
 
972
+ #: dashboard/publisher/adverts-edit.php:136
973
  msgid "Insert the advert name."
974
  msgstr ""
975
 
976
+ #: dashboard/publisher/adverts-edit.php:136
977
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
978
  msgstr ""
979
 
980
+ #: dashboard/publisher/adverts-edit.php:136
981
  msgid "Add inside the <a> tag to open advert in a new window."
982
  msgstr ""
983
 
984
+ #: dashboard/publisher/adverts-edit.php:136
985
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
986
  msgstr ""
987
 
988
+ #: dashboard/publisher/adverts-edit.php:136
989
  msgid ""
990
  "Place the cursor in your AdCode where you want to add any of these tags and "
991
  "click to add it."
992
  msgstr ""
993
 
994
+ #: dashboard/publisher/adverts-edit.php:141
995
  msgid "Preview"
996
  msgstr "Förhandsgranska"
997
 
998
+ #: dashboard/publisher/adverts-edit.php:144
999
  msgid ""
1000
  "Note: While this preview is an accurate one, it might look different then it "
1001
  "does on the website."
1003
  "OBS: Även förhandsvisningen är en riktig en, kan det se annorlunda ut då den "
1004
  "gör på webbplatsen."
1005
 
1006
+ #: dashboard/publisher/adverts-edit.php:145
1007
  msgid ""
1008
  "This is because of CSS differences. Your themes CSS file is not active here!"
1009
  msgstr ""
1010
  "Detta är på grund av CSS skillnader. Ditt teman CSS-fil är inte aktiv här!"
1011
 
1012
+ #: dashboard/publisher/adverts-edit.php:150
1013
  msgid "Banner asset"
1014
  msgstr ""
1015
 
1016
+ #: dashboard/publisher/adverts-edit.php:153
1017
  msgid "WordPress media:"
1018
  msgstr ""
1019
 
1020
+ #: dashboard/publisher/adverts-edit.php:153
1021
  msgid "Select Banner"
1022
  msgstr "Välj Banner"
1023
 
1024
+ #: dashboard/publisher/adverts-edit.php:155
1025
  msgid "- OR -"
1026
  msgstr "- ELLER -"
1027
 
1028
+ #: dashboard/publisher/adverts-edit.php:157
1029
  msgid "Banner folder:"
1030
  msgstr "Banner folder:"
1031
 
1032
+ #: dashboard/publisher/adverts-edit.php:158
1033
  msgid "No image selected"
1034
  msgstr "Ingen bild vald"
1035
 
1036
+ #: dashboard/publisher/adverts-edit.php:162
1037
  msgid "Use %asset% in the adcode instead of the file path."
1038
  msgstr ""
1039
 
1040
+ #: dashboard/publisher/adverts-edit.php:162
1041
  msgid ""
1042
  "Use either the text field or the dropdown. If the textfield has content that "
1043
  "field has priority."
1045
  "Använd antingen textfältet eller listrutan. Om textfältet har innehåll som "
1046
  "området har företräde."
1047
 
1048
+ #: dashboard/publisher/adverts-edit.php:167
1049
  #: dashboard/settings/statistics.php:17
1050
  msgid "Statistics"
1051
  msgstr "Statistik"
1052
 
1053
+ #: dashboard/publisher/adverts-edit.php:169
1054
  msgid "Enable click and impression tracking for this advert."
1055
  msgstr ""
1056
 
1057
+ #: dashboard/publisher/adverts-edit.php:170
1058
  msgid ""
1059
  "Note: Clicktracking does not work for Javascript adverts such as those "
1060
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1061
  "always supported."
1062
  msgstr ""
1063
 
1064
+ #: dashboard/publisher/adverts-edit.php:180
1065
  msgid "Yes, this ad will be used"
1066
  msgstr "Ja, kommer denna annons att användas"
1067
 
1068
+ #: dashboard/publisher/adverts-edit.php:181
1069
  msgid "No, do not show this ad anywhere"
1070
  msgstr "Nej, inte visa denna annons någonstans"
1071
 
1072
+ #: dashboard/publisher/adverts-edit.php:188
1073
+ #: dashboard/publisher/adverts-main.php:105
1074
  #: dashboard/publisher/groups-edit.php:71
1075
  #: dashboard/publisher/groups-main.php:89
1076
  #, fuzzy
1077
  msgid "Get more features with AdRotate Pro."
1078
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1079
 
1080
+ #: dashboard/publisher/adverts-edit.php:188
1081
+ #: dashboard/publisher/adverts-main.php:105
1082
  #: dashboard/publisher/groups-edit.php:71
1083
  #: dashboard/publisher/groups-main.php:89
1084
  #, fuzzy
1085
  msgid "More information"
1086
  msgstr "Mer info"
1087
 
1088
+ #: dashboard/publisher/adverts-edit.php:191
1089
+ #: dashboard/publisher/adverts-edit.php:291
1090
+ #: dashboard/publisher/adverts-edit.php:447
1091
+ #: dashboard/publisher/adverts-edit.php:488
1092
  msgid "Save Advert"
1093
  msgstr "Spara annons"
1094
 
1095
+ #: dashboard/publisher/adverts-edit.php:192
1096
+ #: dashboard/publisher/adverts-edit.php:292
1097
+ #: dashboard/publisher/adverts-edit.php:448
1098
+ #: dashboard/publisher/adverts-edit.php:489
1099
  #: dashboard/publisher/groups-edit.php:150
1100
  #: dashboard/publisher/groups-edit.php:299
1101
  #: dashboard/publisher/groups-edit.php:391
1102
  msgid "Cancel"
1103
  msgstr "Avbryt"
1104
 
1105
+ #: dashboard/publisher/adverts-edit.php:195
1106
+ #: dashboard/publisher/adverts-edit.php:430
1107
  #: dashboard/publisher/groups-edit.php:132
1108
  #: dashboard/publisher/groups-edit.php:281
1109
  msgid "Usage"
1110
  msgstr "Användning"
1111
 
1112
+ #: dashboard/publisher/adverts-edit.php:199
1113
+ #: dashboard/publisher/adverts-edit.php:434
1114
  #: dashboard/publisher/groups-edit.php:136
1115
  #: dashboard/publisher/groups-edit.php:205
1116
  #: dashboard/publisher/groups-edit.php:245
1118
  msgid "Widget"
1119
  msgstr ""
1120
 
1121
+ #: dashboard/publisher/adverts-edit.php:200
1122
+ #: dashboard/publisher/adverts-edit.php:435
1123
  msgid ""
1124
  "Drag the AdRotate widget to the sidebar where you want to place the advert "
1125
  "and select the advert or the group the advert is in."
1126
  msgstr ""
1127
 
1128
+ #: dashboard/publisher/adverts-edit.php:203
1129
+ #: dashboard/publisher/adverts-edit.php:438
1130
  #: dashboard/publisher/groups-edit.php:140
1131
  #: dashboard/publisher/groups-edit.php:289
1132
  msgid "In a post or page"
1133
  msgstr ""
1134
 
1135
+ #: dashboard/publisher/adverts-edit.php:205
1136
+ #: dashboard/publisher/adverts-edit.php:440
1137
  #: dashboard/publisher/groups-edit.php:142
1138
  #: dashboard/publisher/groups-edit.php:291
1139
  msgid "Directly in a theme"
1140
  msgstr ""
1141
 
1142
+ #: dashboard/publisher/adverts-edit.php:211
1143
  msgid "Schedule your advert"
1144
  msgstr ""
1145
 
1146
+ #: dashboard/publisher/adverts-edit.php:215
1147
  msgid "Start date (day/month/year)"
1148
  msgstr ""
1149
 
1150
+ #: dashboard/publisher/adverts-edit.php:236
1151
  msgid "End date (day/month/year)"
1152
  msgstr ""
1153
 
1154
+ #: dashboard/publisher/adverts-edit.php:259
1155
  msgid "Start time (hh:mm)"
1156
  msgstr ""
1157
 
1158
+ #: dashboard/publisher/adverts-edit.php:266
1159
  msgid "End time (hh:mm)"
1160
  msgstr ""
1161
 
1162
+ #: dashboard/publisher/adverts-edit.php:276
1163
  msgid "Maximum Clicks"
1164
  msgstr ""
1165
 
1166
+ #: dashboard/publisher/adverts-edit.php:277
1167
+ #: dashboard/publisher/adverts-edit.php:279
1168
  msgid "Leave empty or 0 to skip this."
1169
  msgstr "Lämna tomt eller 0 för att hoppa över detta."
1170
 
1171
+ #: dashboard/publisher/adverts-edit.php:278
1172
  msgid "Maximum Impressions"
1173
  msgstr ""
1174
 
1175
+ #: dashboard/publisher/adverts-edit.php:283
1176
  msgid "Important"
1177
  msgstr ""
1178
 
1179
+ #: dashboard/publisher/adverts-edit.php:284
1180
  msgid ""
1181
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1182
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1183
  "14:00 hours. 6AM is 6:00 hours."
1184
  msgstr ""
1185
 
1186
+ #: dashboard/publisher/adverts-edit.php:288
1187
  msgid ""
1188
  "Create multiple and more advanced schedules for each advert with AdRotate "
1189
  "Pro."
1190
  msgstr ""
1191
 
1192
+ #: dashboard/publisher/adverts-edit.php:288
1193
+ #: dashboard/publisher/adverts-edit.php:357
1194
+ #: dashboard/publisher/adverts-edit.php:428
1195
  #: dashboard/publisher/groups-edit.php:191
1196
  #, fuzzy
1197
  msgid "Upgrade today"
1198
  msgstr "i dag"
1199
 
1200
+ #: dashboard/publisher/adverts-edit.php:295
1201
  #: dashboard/publisher/groups-edit.php:153
1202
  msgid "Advanced"
1203
  msgstr "Utökad"
1204
 
1205
+ #: dashboard/publisher/adverts-edit.php:296
1206
+ #: dashboard/publisher/adverts-edit.php:360
1207
  msgid "Available in AdRotate Pro!"
1208
  msgstr ""
1209
 
1210
+ #: dashboard/publisher/adverts-edit.php:301
1211
+ #: dashboard/publisher/groups-edit.php:331
 
1212
  msgid "Weight"
1213
  msgstr "Vikt"
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:304
1216
  msgid "Few impressions"
1217
  msgstr ""
1218
 
1219
+ #: dashboard/publisher/adverts-edit.php:309
1220
  msgid "Less than average"
1221
  msgstr "Mindre än genomsnittet"
1222
 
1223
+ #: dashboard/publisher/adverts-edit.php:314
1224
  msgid "Normal impressions"
1225
  msgstr ""
1226
 
1227
+ #: dashboard/publisher/adverts-edit.php:319
1228
  msgid "More than average"
1229
  msgstr "Mer än genomsnittet"
1230
 
1231
+ #: dashboard/publisher/adverts-edit.php:324
1232
  msgid "Many impressions"
1233
  msgstr ""
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:329
1236
  msgid "Mobile"
1237
  msgstr ""
1238
 
1239
+ #: dashboard/publisher/adverts-edit.php:331
1240
  msgid "Computers"
1241
  msgstr ""
1242
 
1243
+ #: dashboard/publisher/adverts-edit.php:334
1244
  msgid "Smartphones"
1245
  msgstr ""
1246
 
1247
+ #: dashboard/publisher/adverts-edit.php:337
1248
  msgid "Tablets"
1249
  msgstr ""
1250
 
1251
+ #: dashboard/publisher/adverts-edit.php:340
1252
  msgid ""
1253
  "Also enable mobile support in the group this advert goes in or these are "
1254
  "ignored."
1255
  msgstr ""
1256
 
1257
+ #: dashboard/publisher/adverts-edit.php:340
1258
+ msgid "Operating system detection only detects iOS/Android/Other or neither."
 
 
1259
  msgstr ""
1260
 
1261
+ #: dashboard/publisher/adverts-edit.php:344
1262
  msgid "Mobile OS"
1263
  msgstr ""
1264
 
1265
+ #: dashboard/publisher/adverts-edit.php:346
1266
  msgid "iOS"
1267
  msgstr ""
1268
 
1269
+ #: dashboard/publisher/adverts-edit.php:349
1270
  msgid "Android"
1271
  msgstr ""
1272
 
1273
+ #: dashboard/publisher/adverts-edit.php:352
1274
  msgid "Others"
1275
  msgstr ""
1276
 
1277
+ #: dashboard/publisher/adverts-edit.php:357
1278
  msgid ""
1279
  "With AdRotate Pro you can easily select which devices and mobile operating "
1280
  "systems the advert should show on!"
1281
  msgstr ""
1282
 
1283
+ #: dashboard/publisher/adverts-edit.php:360
 
 
 
 
 
 
1284
  msgid ""
1285
  "Assign the advert to a group and enable that group to use Geo Targeting."
1286
  msgstr ""
1287
 
1288
+ #: dashboard/publisher/adverts-edit.php:418
1289
  msgid "A comma separated list of items:"
1290
  msgstr ""
1291
 
1292
+ #: dashboard/publisher/adverts-edit.php:418
1293
  #, fuzzy
1294
  msgid ""
1295
  "AdRotate does not check the validity of names so make sure you spell them "
1298
  "AdRotate kan inte kontrollera giltigheten av namn så se till att stava dem "
1299
  "rätt!"
1300
 
1301
+ #: dashboard/publisher/adverts-edit.php:428
1302
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1303
  msgstr ""
1304
 
1305
+ #: dashboard/publisher/adverts-edit.php:452
1306
  msgid "Select Groups"
1307
  msgstr "Välj Grupper"
1308
 
1309
+ #: dashboard/publisher/adverts-edit.php:457
1310
  msgid "ID - Name"
1311
  msgstr "ID - Namn"
1312
 
1313
+ #: dashboard/publisher/adverts-edit.php:467
1314
  #: dashboard/publisher/groups-main.php:60
1315
  #: dashboard/settings/geotargeting.php:49
1316
  msgid "Default"
1317
  msgstr "Default"
1318
 
1319
+ #: dashboard/publisher/adverts-edit.php:468
1320
  #: dashboard/publisher/groups-main.php:61
1321
  msgid "Dynamic"
1322
  msgstr "Dynamic"
1323
 
1324
+ #: dashboard/publisher/adverts-edit.php:468
1325
  #: dashboard/publisher/groups-main.php:61
1326
  #, fuzzy
1327
  msgid "second rotation"
1328
  msgstr "Geo Location"
1329
 
1330
+ #: dashboard/publisher/adverts-edit.php:469
1331
  #: dashboard/publisher/groups-main.php:62
1332
  msgid "Block"
1333
  msgstr "Block"
1334
 
1335
+ #: dashboard/publisher/adverts-edit.php:469
1336
  #: dashboard/publisher/groups-main.php:62
1337
  #, fuzzy
1338
  msgid "grid"
1340
  "Gör ett rutnät för dina annonser. Fylla i 2 och 2 gör ett 2x2 rutnät. "
1341
  "(Standard: 2/2)"
1342
 
1343
+ #: dashboard/publisher/adverts-edit.php:470
1344
  #: dashboard/publisher/groups-edit.php:199
1345
  #: dashboard/publisher/groups-main.php:63
1346
  msgid "Post Injection"
1347
  msgstr "Post injektion"
1348
 
1349
+ #: dashboard/publisher/adverts-edit.php:471
1350
  msgid "Geolocation"
1351
  msgstr "Geolocation"
1352
 
1353
+ #: dashboard/publisher/adverts-edit.php:477
1354
  #: dashboard/publisher/groups-edit.php:57
1355
  #: dashboard/publisher/groups-main.php:70
1356
  msgid "Mode"
1391
  msgstr "För 7 dagar"
1392
 
1393
  #: dashboard/publisher/adverts-error.php:71
1394
+ #, fuzzy
1395
+ #| msgid "Configuration errors."
1396
+ msgid "Configuration errors"
1397
  msgstr "Konfigurations fel."
1398
 
1399
  #: dashboard/publisher/adverts-error.php:72
1400
+ #, fuzzy
1401
+ #| msgid "Expires soon."
1402
+ msgid "Expires soon"
1403
  msgstr "Utgår inom kort."
1404
 
1405
  #: dashboard/publisher/adverts-error.php:73
1406
+ #: dashboard/settings/maintenance.php:64
1407
+ msgid "Expired"
1408
+ msgstr "Utgånget"
1409
 
1410
  #: dashboard/publisher/adverts-main.php:12
1411
  msgid "Active Adverts"
1413
 
1414
  #: dashboard/publisher/adverts-main.php:24
1415
  #, fuzzy
1416
+ msgid "Export to CSV"
1417
  msgstr "Exportera"
1418
 
1419
+ #: dashboard/publisher/adverts-main.php:44
1420
+ #: dashboard/publisher/adverts-main.php:46
1421
  #: dashboard/publisher/groups-main.php:37
1422
  #: dashboard/publisher/groups-main.php:39
1423
  msgid "Today"
1424
  msgstr "i dag"
1425
 
1426
+ #: dashboard/publisher/adverts-main.php:100
1427
  msgid "No adverts created yet!"
1428
  msgstr ""
1429
 
1477
  msgid "Edit Group"
1478
  msgstr "Redigera grupp"
1479
 
 
 
 
 
 
1480
  #: dashboard/publisher/groups-edit.php:60
1481
  msgid "Default - Show one ad at a time"
1482
  msgstr "Standard - Visa en annons i taget"
1762
  msgid "Choose adverts"
1763
  msgstr ""
1764
 
1765
+ #: dashboard/publisher/groups-edit.php:330
1766
  msgid "Visible until"
1767
  msgstr "Synlig tills"
1768
 
1770
  msgid "No adverts created!"
1771
  msgstr ""
1772
 
1773
+ #: dashboard/publisher/groups-edit.php:384
1774
+ msgid "Configuration errors."
1775
+ msgstr "Konfigurations fel."
1776
+
1777
+ #: dashboard/publisher/groups-edit.php:385
1778
+ msgid "Expires soon."
1779
+ msgstr "Utgår inom kort."
1780
+
1781
+ #: dashboard/publisher/groups-edit.php:386
1782
+ msgid "Has expired."
1783
+ msgstr "Har gått ut."
1784
+
1785
  #: dashboard/publisher/groups-main.php:12
1786
  msgid "Manage Groups"
1787
  msgstr "Hantera Grupper"
1803
  msgstr "Denna åtgärd kan inte ångras!"
1804
 
1805
  #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1806
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
 
1807
  msgid "OK to continue, CANCEL to stop."
1808
  msgstr "OK för att fortsätta, CANCEL för att avbryta."
1809
 
1869
  msgstr ""
1870
 
1871
  #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1872
+ #: dashboard/settings/maintenance.php:116 dashboard/settings/misc.php:43
1873
  #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1874
+ #: dashboard/settings/statistics.php:73
1875
  msgid "Update Options"
1876
  msgstr "Update Options"
1877
 
1971
 
1972
  #: dashboard/settings/general.php:50
1973
  #, fuzzy
1974
+ msgid "Set a folder where your banner images will be stored."
1975
  msgstr ""
1976
  "Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
1977
  "banners /)."
1978
 
1979
  #: dashboard/settings/general.php:53
1980
+ msgid "Folder name"
1981
+ msgstr ""
 
1982
 
1983
  #: dashboard/settings/general.php:55
1984
  #, fuzzy
1985
+ msgid "(Default: banners)."
1986
  msgstr ""
1987
  "Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
1988
  "banners /)."
2129
  msgid "Password/License Key"
2130
  msgstr ""
2131
 
 
 
 
 
2132
  #: dashboard/settings/maintenance.php:17
2133
  msgid ""
2134
  "Use these functions when you notice your database is slow, unresponsive and "
2167
  "Övervaknings uppgifter samlas skräp till följd av många ändringar du har "
2168
  "gjort. Denna kan variera från ingenting till hundratals KiB of data."
2169
 
2170
+ #: dashboard/settings/maintenance.php:28
2171
+ #, fuzzy
2172
+ #| msgid "Clean-up Database"
2173
+ msgid "Clean-up Database and Files"
2174
+ msgstr "Städa upp Databas"
2175
+
2176
+ #: dashboard/settings/maintenance.php:30
2177
  msgid "Clean-up Database"
2178
  msgstr "Städa upp Databas"
2179
 
2180
  #: dashboard/settings/maintenance.php:30
2181
+ #, fuzzy
2182
+ #| msgid ""
2183
+ #| "You are about to clean up your database. This may delete expired "
2184
+ #| "schedules and older statistics."
2185
  msgid ""
2186
+ "You are about to clean up your database. This may delete expired schedules, "
2187
+ "older statistics and try to delete export files"
2188
  msgstr ""
2189
  "Du håller på att städa upp din databas. Detta kan ta bort utgångna scheman "
2190
  "och äldre statistik."
2193
  msgid "Are you sure you want to continue?"
2194
  msgstr "Är du säker på att du vill fortsätta?"
2195
 
2196
+ #: dashboard/settings/maintenance.php:30
2197
+ msgid "THIS ACTION CAN NOT BE UNDONE!"
 
 
2198
  msgstr ""
 
 
2199
 
2200
  #: dashboard/settings/maintenance.php:31
2201
+ #, fuzzy
2202
+ #| msgid "Delete stats older than 356 days (Optional)."
2203
+ msgid "Delete stats older than 356 days."
2204
  msgstr "Radera statistik äldre än 356 dagar (tillval)."
2205
 
2206
  #: dashboard/settings/maintenance.php:32
2207
+ msgid "Delete leftover export files."
2208
  msgstr ""
2209
 
2210
  #: dashboard/settings/maintenance.php:33
2214
  msgstr ""
2215
 
2216
  #: dashboard/settings/maintenance.php:33
2217
+ #, fuzzy
2218
+ #| msgid ""
2219
+ #| "Additionally you can clean up old statistics. This will improve the speed "
2220
+ #| "of your site."
2221
  msgid ""
2222
+ "Additionally you can delete statistics and/or unused export files. This will "
2223
+ "improve the speed of your site."
2224
  msgstr ""
2225
+ "Ytterligare kan du rensa upp gammal statistik. Detta kommer att förbättra "
2226
+ "hastigheten på din webbplats."
2227
 
2228
  #: dashboard/settings/maintenance.php:37
2229
  #, fuzzy
2240
  msgid "You are about to check all ads for errors."
2241
  msgstr "Du håller på att kolla alla annonser för fel."
2242
 
2243
+ #: dashboard/settings/maintenance.php:39 dashboard/settings/maintenance.php:110
2244
+ #, fuzzy
2245
+ msgid "This might take a while and may slow down your site during this action!"
2246
+ msgstr ""
2247
+ "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
2248
+ "tillfälligt!"
2249
+
2250
  #: dashboard/settings/maintenance.php:40
2251
  #, fuzzy
2252
  msgid ""
2295
 
2296
  #: dashboard/settings/maintenance.php:54
2297
  #, fuzzy
2298
+ #| msgid "Track clicks and impressions."
2299
+ msgid "Disable timers for clicks and impressions."
2300
+ msgstr "Spåra klick och visningar."
 
2301
 
2302
  #: dashboard/settings/maintenance.php:55
2303
  msgid "Temporarily disable encryption on the redirect url."
2319
  msgid "Error"
2320
  msgstr "Error"
2321
 
 
 
 
 
2322
  #: dashboard/settings/maintenance.php:64
2323
  msgid "Expires Soon"
2324
  msgstr "Utgår snart"
2331
  msgid "Banners/assets Folder"
2332
  msgstr ""
2333
 
2334
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2335
  msgid "Exists and appears writable"
2336
  msgstr ""
2337
 
2338
+ #: dashboard/settings/maintenance.php:71 dashboard/settings/maintenance.php:80
2339
  msgid "Not writable or does not exist"
2340
  msgstr ""
2341
 
2342
+ #: dashboard/settings/maintenance.php:76
2343
  msgid "Reports Folder"
2344
  msgstr ""
2345
 
2346
+ #: dashboard/settings/maintenance.php:85
2347
  msgid "Advert evaluation"
2348
  msgstr ""
2349
 
2350
+ #: dashboard/settings/maintenance.php:86
2351
  msgid "Not scheduled! Re-activate the plugin from the plugins page."
2352
  msgstr ""
2353
 
2354
+ #: dashboard/settings/maintenance.php:87
2355
+ #, fuzzy
2356
+ #| msgid "Clean Trackerdata next run:"
2357
+ msgid "Clean Trackerdata"
2358
+ msgstr "Rensa Trackerdata nästa körning:"
2359
+
2360
+ #: dashboard/settings/maintenance.php:88
2361
+ msgid "Not scheduled!"
2362
+ msgstr "Inte planerat!"
2363
+
2364
+ #: dashboard/settings/maintenance.php:91
2365
+ msgid "Background tasks"
2366
  msgstr ""
2367
 
2368
+ #: dashboard/settings/maintenance.php:93
2369
+ msgid "Reset background tasks"
2370
+ msgstr ""
2371
+
2372
+ #: dashboard/settings/maintenance.php:98
2373
  msgid "Internal Versions"
2374
  msgstr ""
2375
 
2376
+ #: dashboard/settings/maintenance.php:99
2377
  msgid ""
2378
  "Unless you experience database issues or a warning shows below, these "
2379
  "numbers are not really relevant for troubleshooting. Support may ask for "
2380
  "them to verify your database status."
2381
  msgstr ""
2382
 
2383
+ #: dashboard/settings/maintenance.php:102
2384
  msgid "AdRotate version"
2385
  msgstr ""
2386
 
2387
+ #: dashboard/settings/maintenance.php:103
2388
+ #: dashboard/settings/maintenance.php:105
2389
  msgid "Current:"
2390
  msgstr ""
2391
 
2392
+ #: dashboard/settings/maintenance.php:103
2393
+ #: dashboard/settings/maintenance.php:105
2394
  msgid "Should be:"
2395
  msgstr ""
2396
 
2397
+ #: dashboard/settings/maintenance.php:103
2398
+ #: dashboard/settings/maintenance.php:105
2399
  msgid "Previous:"
2400
  msgstr ""
2401
 
2402
+ #: dashboard/settings/maintenance.php:104
2403
  msgid "Database version"
2404
  msgstr ""
2405
 
2406
+ #: dashboard/settings/maintenance.php:108
2407
+ msgid "Manual upgrade"
2408
+ msgstr ""
2409
+
2410
+ #: dashboard/settings/maintenance.php:110
2411
  msgid "YOU ARE ABOUT TO DO A MANUAL UPDATE FOR ADROTATE."
2412
  msgstr ""
2413
 
2414
+ #: dashboard/settings/maintenance.php:110
2415
  msgid "Make sure you have a database backup!"
2416
  msgstr ""
2417
 
2418
+ #: dashboard/settings/maintenance.php:110
2419
+ #, fuzzy
2420
+ #| msgid "Ad updated"
2421
+ msgid "Run updater"
2422
+ msgstr "Annons uppdaterad"
2423
 
2424
  #: dashboard/settings/misc.php:16
2425
  msgid "Miscellaneous"
2495
  "Caching stöd fungerar bara för [shortcodes] och AdRotate Widget. Om du "
2496
  "använder ett PHP Snippet måste du svepa din PHP i utanförskap koden själv."
2497
 
 
 
 
 
2498
  #: dashboard/settings/notifications.php:19
2499
  #, fuzzy
2500
  msgid "Set up who gets notifications if ads need your attention."
2632
  "separated. This field may not be empty!"
2633
  msgstr ""
2634
 
 
 
 
 
2635
  #: dashboard/settings/notifications.php:75
2636
  msgid ""
2637
  "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2687
  msgid "and get your API token"
2688
  msgstr ""
2689
 
 
 
 
 
2690
  #: dashboard/settings/roles.php:18
2691
  msgid "Who has access to what?"
2692
  msgstr ""
2838
  msgstr ""
2839
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
2840
 
2841
+ #~ msgid "Empty database records removed"
2842
+ #~ msgstr "Tomma databasposter tas bort"
 
2843
 
2844
+ #, fuzzy
2845
+ #~ msgid "For one WordPress installation."
2846
+ #~ msgstr "Installation"
2847
+
2848
+ #, fuzzy
2849
+ #~ msgid "For two WordPress installations."
2850
+ #~ msgstr "Installation"
2851
+
2852
+ #, fuzzy
2853
+ #~ msgid " For up to five WordPress installations."
2854
+ #~ msgstr "Installation"
2855
+
2856
+ #, fuzzy
2857
+ #~ msgid "Location"
2858
+ #~ msgstr "Geo Location"
2859
+
2860
+ #, fuzzy
2861
+ #~ msgid ""
2862
+ #~ "Disable timers for clicks and impressions and enable a alert window for "
2863
+ #~ "clicktracking."
2864
+ #~ msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
2865
 
2866
  #, fuzzy
2867
  #~ msgid "Help AdRotate Grow"
2990
  #~ msgid "Ad evaluation next run:"
2991
  #~ msgstr "Annons Meddelanden nästa körning:"
2992
 
 
 
 
 
 
 
2993
  #, fuzzy
2994
  #~ msgid "Set up who gets notification emails."
2995
  #~ msgstr "Annonser som behöver uppmärksammas"
3165
  #~ msgid "Ad created"
3166
  #~ msgstr "Annons skapad"
3167
 
 
 
 
3168
  #~ msgid ""
3169
  #~ "The ad was saved but has an issue which might prevent it from working "
3170
  #~ "properly. Review the yellow marked ad."
3265
  #~ "Om du gjorde en annons eller grupp som inte sparar när du gör det använda "
3266
  #~ "den här knappen för att ta bort de tomma poster."
3267
 
 
 
 
 
 
 
 
3268
  #~ msgid ""
3269
  #~ "DISCLAIMER: If for any reason your data is lost, damaged or otherwise "
3270
  #~ "becomes unusable in any way or by any means in whichever way I will not "
3450
  #~ msgid "Enable stats"
3451
  #~ msgstr "Statistik"
3452
 
 
 
 
3453
  #, fuzzy
3454
  #~ msgid ""
3455
  #~ "Disabling this also disables click and impression limits on schedules."
readme.txt CHANGED
@@ -1,41 +1,48 @@
1
- === AdRotate ===
2
  Contributors: adegans
3
  Donate link: http://www.arnan.me/donate/?utm_campaign=donations&utm_medium=readme&utm_source=adrotate-free
4
- Tags: advertising, banners, monetise, advert, banner, advertise, adrotator, adsense, geotargeting, banner manager, advert manager, statistics
5
  Requires at least: 3.8
6
  Tested up to: 4.8
7
- Stable tag: 4.3
8
  License: GPLv3
9
-
10
- The popular choice for monetizing your website with adverts while keeping things simple. Start making money today!
11
 
12
  == Description ==
13
 
14
- Thinking of making some money with your website? Try AdRotate. With AdRotate you can easily place advertising banners pretty much anywhere on your site while managing almost everything from the easy to use dashboard. No fussing with your themes code if you don't want to.
15
- Create your own adverts with basic HTML/Javascript code or use adverts from your favorite Ad Server such as Media.net, DFP, AdSense, Chitika, Doubleclick, JuiceAds and many similar services.
 
 
 
 
 
 
 
16
 
17
- Manage your advertising campaigns with ease, right in your dashboard. Check up on how many impressions adverts have. Monitor ad groups and see which are most effective. Make the most of advertising with the many features AdRotate has to offer. AdRotate looks and feels similar to the WordPress dashboard you already know, so you're already familiar with AdRotate before you've even started. Familiarize yourself with the many useful features and you'll be up and running very quickly.
 
 
18
 
19
- AdRotate is also available as a premium plugin. Get even more features and access to AdRotate Geo and email support!
20
- Geo Targeting, Avoid adblockers, Mobile adverts, Media management and much more! Check out the extras of [AdRotate Pro](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=readme&utm_source=adrotate-free)!
 
21
 
22
- > <strong>Premium Support</strong><br>
23
- > I do not always provide active support for the AdRotate Free plugin on the WordPress.org forums. Personal, one-on-one support via email is available to people who bought [AdRotate Pro](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=premium_support&utm_medium=readme&utm_source=adrotate-free) only.
24
- > Also know that AdRotate Pro has a lot of extra features that make managing campaigns even easier. Features like Geo Targeting, Adblocker disguise, Advertisers and Scheduling your campaigns! These valuable tools will be worth your investment if you're serious about advertising!
25
- >
26
- > <strong>Help getting started</strong><br>
27
- > If you need some help installing AdRotate or you want someone to handle the initial setup. Take a look at these [services](https://ajdg.solutions/pricing/?utm_campaign=installation_services&utm_medium=readme&utm_source=adrotate-free).
28
- >
29
- > <strong>Support and Bug Reports</strong><br>
30
- > All support questions can be posted on my support [Support Forums](https://ajdg.solutions/forums/?utm_campaign=forums&utm_medium=readme&utm_source=adrotate-free).<br>
31
- > Please post bug reports for AdRotate Pro on [the support forum for bug reports](https://ajdg.solutions/forums/forum/adrotate-for-wordpress/bug-reports/).<br>
32
 
33
- **Some Features**
 
 
34
 
35
- * Works with Media.net, Google AdSense, DFP and most other referrer/ad servers
36
- * Easy management of ads and groups of ads
37
- * Automated Javascript cycles of ads with Dynamic Groups
38
- * Have your advertisers add/edit/manage their own ads
 
 
 
 
39
  * Geo Targeting for adverts
40
  * Accept Paypal payments from the dashboard when selling adverts
41
  * Mobile adverts (differentiate tablets from phones)
@@ -43,8 +50,9 @@ Geo Targeting, Avoid adblockers, Mobile adverts, Media management and much more!
43
  * Get push notifications right on your iOS or Android device about adverts and important events
44
  * Get email notifications when your ads need you
45
  * Any size advertisement, including 125x125, 468x60, 729x90, 160x600
46
- * Easy to use stats so you can follow how each advert is performing
47
- * Responsive adverts
 
48
  * Daily, monthly and yearly stats
49
  * Couple adverts to users for personalized stats
50
  * Advertisers can easily contact you from their dashboard
@@ -53,7 +61,7 @@ Geo Targeting, Avoid adblockers, Mobile adverts, Media management and much more!
53
  * Preview banners on edit
54
  * Advanced time schedules and restrictions you control
55
  * Free use of AdRotate Geo, AJdG Solutions' exclusive Geo Targeting service
56
- * Exports of statistics
57
  * Multiple groups per banner location
58
  * Unlimited widgets
59
  * Show multiple ads at once in a grid, column or row
@@ -61,28 +69,21 @@ Geo Targeting, Avoid adblockers, Mobile adverts, Media management and much more!
61
  * Dashboard notifications when ads are about to expire or need attention
62
  * Use shortcodes, widgets or PHP to put ads on your site
63
 
64
- NOTE: Certain features are exclusive to AdRotate PRO. Learn more about [AdRotate Pro](https://ajdg.solutions/products/adrotate-for-wordpress/features/?utm_campaign=features&utm_medium=readme&utm_source=adrotate-free).
65
 
66
  **AdRotate Switch**
67
 
68
- Looking to switch from another plugin to AdRotate or AdRotate Pro? Check out [AdRotate Switch](https://wordpress.org/plugins/adrotate-switch/) and see if your current advertising plugin is compatible for migrating your data!
 
 
69
 
70
- NOTE: Unsolicited offers, parnterships, job offers, promotional emails or product offers to "enhance" my business or products through this site or any means are not appreciated and will most likely be ignored.
71
 
72
  == Installation ==
73
 
74
  Installing the plugin is as easy as clicking "Install Now" from your dashboards plugin page.
75
- For more detailed instructions check out the [installation guide](https://ajdg.solutions/manuals/adrotate-manuals/installing-adrotate-on-your-website/?utm_campaign=setup-manual&utm_medium=readme&utm_source=adrotate-free).
76
-
77
- **AdRotate Switch**
78
 
79
- Looking to switch from another plugin to AdRotate or AdRotate Pro? Check out [AdRotate Switch](https://wordpress.org/plugins/adrotate-switch/) and see if your current advertising plugin is compatible for migrating your data!
80
-
81
- **Useful links**
82
-
83
- * [Usage guides](https://ajdg.solutions/manuals/adrotate-manuals/?utm_campaign=adrotate-manual&utm_medium=readme&utm_source=adrotate-free) - Every popular feature explained
84
- * [Support Forum](https://ajdg.solutions/forums/?utm_campaign=forums&utm_medium=readme&utm_source=adrotate-free) - Ask your questions here
85
- * [Plugin page](https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=readme&utm_source=adrotate-free) - Features, possibilities and AdRotate Pro
86
 
87
  == Frequently Asked Questions ==
88
 
@@ -95,29 +96,45 @@ You can also post your questions on the [forum](https://ajdg.solutions/forums/?u
95
 
96
  == Changelog ==
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
- = 4.3 FREE =
101
- * [fix] Improved PHP7 compatibility
102
- * [fix] Sortable columns now properly assigned
 
103
  * [change] Dashboard tweaks
 
 
 
 
 
104
 
105
  = 4.7 PRO =
 
 
 
 
 
 
 
106
  * [fix] Improved PHP7 compatibility
107
  * [fix] Sortable columns now properly assigned
108
- * [change] Dashboard tweaks
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
 
112
- NOTE: Unsolicited offers, parnterships, job offers, promotional emails or product offers to "enhance" my business or products through this site or any means are not appreciated and will most likely be ignored.
113
 
114
  == Upgrade Notice ==
115
 
116
- * [fix] Improved PHP7 compatibility
117
- * [fix] Sortable columns now properly assigned
 
118
  * [change] Dashboard tweaks
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
 
122
  == Screenshots ==
123
 
1
+ === AdRotate Banner Manager ===
2
  Contributors: adegans
3
  Donate link: http://www.arnan.me/donate/?utm_campaign=donations&utm_medium=readme&utm_source=adrotate-free
4
+ Tags: ad, ads, adsense, advertising, doubleclick, media.net, ad rotator, ad manager, banner manager, advert manager, analytics, advertisement,
5
  Requires at least: 3.8
6
  Tested up to: 4.8
7
+ Stable tag: 4.4
8
  License: GPLv3
9
+
10
+ Monetise your website with adverts while keeping things simple. Start making money today!
11
 
12
  == Description ==
13
 
14
+ With AdRotate you can easily place advertising banners pretty much anywhere on your site while managing almost everything from the easy to use dashboard. No fussing with your themes code if you don't want to.
15
+
16
+ Using AdRotate you can easily create your own adverts with basic HTML and/or Javascript code or use adverts from your favorite Ad Server such as Media.net, DFP, AdSense, Chitika, Doubleclick, JuiceAds and many more similar ad servers.
17
+
18
+ > With AdRotate you manage your advertising campaigns and banners with ease, right in your dashboard.
19
+
20
+ In AdRotate it's easy to check up on how many impressions adverts have. Monitor ad groups and see which are most effective. Make the most of advertising with the many features AdRotate has to offer.
21
+
22
+ AdRotate looks and feels similar to the WordPress dashboard you already know, you're already familiar with AdRotate before you even start using the plugin. Familiarize yourself with the many useful features and you'll be up and running very quickly.
23
 
24
+ Want more features? Get AdRotate Professional! AdRotate Pro has even more features and gives you access to AdRotate Geo and fast personal email support!
25
+ Pro features include; Geo targeting in every country, Fine grained control with schedules, Adblock Disguise, Mobile adverts, Media/asset management and much more!
26
+ Check out the many extras on the [AdRotate Pro website](https://ajdg.solutions/plugins/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=readme&utm_source=adrotate-free)!
27
 
28
+ <strong>Getting started</strong>
29
+ You'll be running your advertising campaigns in minutes.
30
+ But if you need a hand installing AdRotate or you want someone to handle the initial setup. Take a look at these [services](https://ajdg.solutions/pricing/?utm_campaign=installation_services&utm_medium=readme&utm_source=adrotate-free).
31
 
32
+ > Getting started with AdRotate is not all that complex, but a little help or advise is never bad.
 
 
 
 
 
 
 
 
 
33
 
34
+ <strong>Support and Bug Reports</strong>
35
+ All support questions can be posted on my support [Support Forums](https://ajdg.solutions/forums/?utm_campaign=forums&utm_medium=readme&utm_source=adrotate-free).
36
+ Please post bug reports for AdRotate Pro on [the support forum for bug reports](https://ajdg.solutions/forums/forum/adrotate-for-wordpress/bug-reports/).
37
 
38
+ > I don't always check the wordpress.org forums, use my forum instead for faster replies!
39
+
40
+ **Some of AdRotates Features**
41
+
42
+ * Works with ad servers such as; Media.net, Google AdSense, DFP and most other referrer/ad servers
43
+ * Easy management of adverts and groups of ads
44
+ * Automated Javascript cycles of adverts with Dynamic Groups
45
+ * Have your advertisers add/edit/manage their own adverts
46
  * Geo Targeting for adverts
47
  * Accept Paypal payments from the dashboard when selling adverts
48
  * Mobile adverts (differentiate tablets from phones)
50
  * Get push notifications right on your iOS or Android device about adverts and important events
51
  * Get email notifications when your ads need you
52
  * Any size advertisement, including 125x125, 468x60, 729x90, 160x600
53
+ * Easy to read stats so you can follow how each advert is performing
54
+ * Compatible with plugins like Yoast SEO, W3 Total Cache, SEO Framework, bbPress, Contact form 7, All in one SEO Pack, Jetpack from Automattic, WooCommerce, Wordfence, Regenerate Thumbnails and many more...
55
+ * Compatible with responsive adverts
56
  * Daily, monthly and yearly stats
57
  * Couple adverts to users for personalized stats
58
  * Advertisers can easily contact you from their dashboard
61
  * Preview banners on edit
62
  * Advanced time schedules and restrictions you control
63
  * Free use of AdRotate Geo, AJdG Solutions' exclusive Geo Targeting service
64
+ * Export statistics
65
  * Multiple groups per banner location
66
  * Unlimited widgets
67
  * Show multiple ads at once in a grid, column or row
69
  * Dashboard notifications when ads are about to expire or need attention
70
  * Use shortcodes, widgets or PHP to put ads on your site
71
 
72
+ AdRotate and AdRotate Pro share many features. But some features are available in AdRotate Professional only. Learn more about [AdRotate Pro](https://ajdg.solutions/plugins/adrotate-for-wordpress/features/?utm_campaign=features&utm_medium=readme&utm_source=adrotate-free) on my website.
73
 
74
  **AdRotate Switch**
75
 
76
+ To make switching from other plugins more easy and straightforward I've created AdRotate Switch. Migrate compatible adverts, groups/locations and settings over in just a few clicks.
77
+
78
+ Compatible plugins include: Ad Injection, Ad King Pro, Advanced Advertising Manager, Advertising Manager, WP Bannerize, BannerMan, Max Banner Ads Pro, Simple Ads Manager, Useful Banner Manager, WP Pro Ad System, wp125, WP-Ad-Manager / Ad Minister, WP Advertize It
79
 
80
+ Check out [AdRotate Switch](https://wordpress.org/plugins/adrotate-switch/) for more information!
81
 
82
  == Installation ==
83
 
84
  Installing the plugin is as easy as clicking "Install Now" from your dashboards plugin page.
 
 
 
85
 
86
+ For more detailed instructions check out the [installation steps](https://ajdg.solutions/manuals/adrotate-manuals/installing-adrotate-on-your-website/?utm_campaign=setup-manual&utm_medium=readme&utm_source=adrotate-free) on the AdRotate website.
 
 
 
 
 
 
87
 
88
  == Frequently Asked Questions ==
89
 
96
 
97
  == Changelog ==
98
 
99
+ Be a Professional and go Pro. With [AdRotate Professional](https://ajdg.solutions/plugins/adrotate-for-wordpress/?utm_campaign=adrotate-page&utm_medium=readme&utm_source=adrotate-free)!
100
 
101
+ = 4.4 FREE =
102
+ * [new] Advert exports to CSV
103
+ * [new] Option to delete old export files in Settings > Maintenance
104
+ * [change] Banner folder must be in wp-content (or it's equivalent)
105
  * [change] Dashboard tweaks
106
+ * [change] XML exporting no longer supported
107
+ * [change] Advert exporting now requires 'ad_manage' permission
108
+ * [i18n] Settings tabs added
109
+ * [i18n] Updated Spanish by Juanjo Navarra
110
+ * [i18n] Updated all po files with new strings
111
 
112
  = 4.7 PRO =
113
+ * [new] Advert exports to CSV
114
+ * [new] Advert importing from CSV
115
+ * [new] Option to delete old export files in Settings > Maintenance
116
+ * [change] Banner folder must be in wp-content (or it's equivalent)
117
+ * [change] Dashboard tweaks
118
+ * [change] XML importing and exporting no longer supported
119
+ * [change] Advert exporting now requires 'ad_manage' permission
120
  * [fix] Improved PHP7 compatibility
121
  * [fix] Sortable columns now properly assigned
122
+ * [fix] Exporting of adverts
123
+ * [i18n] Updated all po files with new strings
 
124
 
125
+ All recent changes are available on the [AdRotate website](https://ajdg.solutions/plugins/adrotate-for-wordpress/development/?utm_campaign=development&utm_medium=readme&utm_source=adrotate-free).
126
 
127
  == Upgrade Notice ==
128
 
129
+ * [new] Advert exports to CSV
130
+ * [new] Option to delete old export files in Settings > Maintenance
131
+ * [change] Banner folder must be in wp-content (or it's equivalent)
132
  * [change] Dashboard tweaks
133
+ * [change] XML exporting no longer supported
134
+ * [change] Advert exporting now requires 'ad_manage' permission
135
+ * [i18n] Settings tabs added
136
+ * [i18n] Updated Spanish by Juanjo Navarra
137
+ * [i18n] Updated all po files with new strings
138
 
139
  == Screenshots ==
140