AdRotate Banner Manager - Version 3.15.5

Version Description

FREE = * [change] Updated database for AdRotate Pro 4.0 * [change] Dashboard tweaks * [fix] Notification settings not always saving correctly * [fix] AdRotate Logo path no longer using WP_CONTENT_URL * [fix] Redirect for using Maintenance functions * [i18n] New and updated translation strings

Download this release

Release Info

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

Code changes from version 3.15.4 to 3.15.5

adrotate-functions.php CHANGED
@@ -528,7 +528,7 @@ function adrotate_prepare_evaluate_ads($return = true) {
528
 
529
  $result = array('error' => $error, 'expired' => $expired, 'expiressoon' => $expiressoon, 'normal' => $normal, 'unknown' => $unknown);
530
  update_option('adrotate_advert_status', $result);
531
- if($return) adrotate_return('adrotate-settings', 405);
532
  }
533
 
534
  /*-------------------------------------------------------------
@@ -569,10 +569,8 @@ function adrotate_evaluate_ad($ad_id) {
569
  if(
570
  strlen($bannercode) < 1 // AdCode empty
571
  OR (!preg_match_all('/<(a|script|embed|iframe)[^>](.*?)>/i', $bannercode, $things) AND $ad->tracker == 'Y') // Clicktracking active but no valid link/tag present
572
- OR (preg_match("/%image%/i", $bannercode) AND $ad->image == '' AND $ad->imagetype == '') // Did use %image% but didn't select an image
573
- OR (!preg_match("/%image%/i", $bannercode) AND $ad->image != '' AND $ad->imagetype != '') // Didn't use %image% but selected an image
574
- OR (!preg_match("/%image%/i", $bannercode) AND $ad->responsive == 'Y') // Didn't use %image% but enabled Responsive
575
- OR (strlen($ad->image) > 0 AND !preg_match("/full/", $ad->image) AND $ad->responsive == 'Y') // Filename not correct for Responsive
576
  OR (($ad->image == '' AND $ad->imagetype != '') OR ($ad->image != '' AND $ad->imagetype == '')) // Image and Imagetype mismatch
577
  OR $schedules == 0 // No Schedules for this ad
578
  ) {
528
 
529
  $result = array('error' => $error, 'expired' => $expired, 'expiressoon' => $expiressoon, 'normal' => $normal, 'unknown' => $unknown);
530
  update_option('adrotate_advert_status', $result);
531
+ if($return) adrotate_return('adrotate-settings', 405, array('tab' => 'maintenance'));
532
  }
533
 
534
  /*-------------------------------------------------------------
569
  if(
570
  strlen($bannercode) < 1 // AdCode empty
571
  OR (!preg_match_all('/<(a|script|embed|iframe)[^>](.*?)>/i', $bannercode, $things) AND $ad->tracker == 'Y') // Clicktracking active but no valid link/tag present
572
+ OR (preg_match_all("/(%image%|%asset%)/i", $bannercode, $things) AND $ad->image == '' AND $ad->imagetype == '') // Did use %image% but didn't select an image
573
+ OR (!preg_match_all("/(%image%|%asset%)/i", $bannercode, $things) AND $ad->image != '' AND $ad->imagetype != '') // Didn't use %image% but selected an image
 
 
574
  OR (($ad->image == '' AND $ad->imagetype != '') OR ($ad->image != '' AND $ad->imagetype == '')) // Image and Imagetype mismatch
575
  OR $schedules == 0 // No Schedules for this ad
576
  ) {
adrotate-manage-publisher.php CHANGED
@@ -582,7 +582,9 @@ function adrotate_options_submit() {
582
  if(strlen($crawler) > 0) $new_crawlers[] = $crawler;
583
  }
584
  update_option('adrotate_crawlers', $new_crawlers);
 
585
 
 
586
  $notifications = get_option('adrotate_notifications');
587
 
588
  $notifications['notification_dashboard'] = (isset($_POST['adrotate_notification_dashboard'])) ? 'Y' : 'N';
@@ -594,16 +596,21 @@ function adrotate_options_submit() {
594
  // Turn options off. Available in AdRotate Pro only
595
  $notifications['notification_email'] = 'N';
596
  $notifications['notification_push'] = 'N';
597
- $notifications['notification_email_publisher'] = array();
598
  $notifications['notification_email_advertiser'] = array(get_option('admin_email'));
 
 
 
 
 
 
 
599
  $notifications['notification_push_geo'] = 'N';
600
  $notifications['notification_push_status'] = 'N';
601
  $notifications['notification_push_queue'] = 'N';
602
  $notifications['notification_push_approved'] = 'N';
603
- $notifications['notification_push_rejected'] = 'N';
604
- $notifications['notification_push_user'] = '';
605
- $notifications['notification_push_api'] = '';
606
-
607
  update_option('adrotate_notifications', $notifications);
608
  }
609
 
582
  if(strlen($crawler) > 0) $new_crawlers[] = $crawler;
583
  }
584
  update_option('adrotate_crawlers', $new_crawlers);
585
+ }
586
 
587
+ if($settings_tab == 'notifications') {
588
  $notifications = get_option('adrotate_notifications');
589
 
590
  $notifications['notification_dashboard'] = (isset($_POST['adrotate_notification_dashboard'])) ? 'Y' : 'N';
596
  // Turn options off. Available in AdRotate Pro only
597
  $notifications['notification_email'] = 'N';
598
  $notifications['notification_push'] = 'N';
599
+ $notifications['notification_email_publisher'] = array(get_option('admin_email'));
600
  $notifications['notification_email_advertiser'] = array(get_option('admin_email'));
601
+ $notifications['notification_mail_geo'] = 'N';
602
+ $notifications['notification_mail_status'] = 'N';
603
+ $notifications['notification_mail_queue'] = 'N';
604
+ $notifications['notification_mail_approved'] = 'N';
605
+ $notifications['notification_mail_rejected'] = 'N';
606
+ $notifications['notification_push_user'] = '';
607
+ $notifications['notification_push_api'] = '';
608
  $notifications['notification_push_geo'] = 'N';
609
  $notifications['notification_push_status'] = 'N';
610
  $notifications['notification_push_queue'] = 'N';
611
  $notifications['notification_push_approved'] = 'N';
612
+ $notifications['notification_push_rejected'] = 'N';
613
+
 
 
614
  update_option('adrotate_notifications', $notifications);
615
  }
616
 
adrotate-output.php CHANGED
@@ -406,7 +406,8 @@ function adrotate_ad_output($id, $group = 0, $name, $bannercode, $tracker, $imag
406
 
407
  $banner_output = str_replace('%title%', $name, $banner_output);
408
  $banner_output = str_replace('%random%', rand(100000,999999), $banner_output);
409
- $banner_output = str_replace('%image%', $image, $banner_output);
 
410
  $banner_output = str_replace('%id%', $id, $banner_output);
411
  $banner_output = do_shortcode($banner_output);
412
 
406
 
407
  $banner_output = str_replace('%title%', $name, $banner_output);
408
  $banner_output = str_replace('%random%', rand(100000,999999), $banner_output);
409
+ $banner_output = str_replace('%asset%', $image, $banner_output); // Replaces %image%
410
+ $banner_output = str_replace('%image%', $image, $banner_output); // Depreciated, remove in AdRotate 5.0
411
  $banner_output = str_replace('%id%', $id, $banner_output);
412
  $banner_output = do_shortcode($banner_output);
413
 
adrotate-setup.php CHANGED
@@ -11,10 +11,7 @@
11
 
12
  /*-------------------------------------------------------------
13
  Name: adrotate_activate
14
-
15
  Purpose: Set up AdRotate on your current blog
16
- Receive: -none-
17
- Return: -none-
18
  Since: 3.9.8
19
  -------------------------------------------------------------*/
20
  function adrotate_activate($network_wide) {
@@ -39,10 +36,7 @@ function adrotate_activate($network_wide) {
39
 
40
  /*-------------------------------------------------------------
41
  Name: adrotate_activate_setup
42
-
43
  Purpose: Creates database table if it doesnt exist
44
- Receive: -none-
45
- Return: -none-
46
  Since: 0.1
47
  -------------------------------------------------------------*/
48
  function adrotate_activate_setup() {
@@ -112,10 +106,7 @@ function adrotate_activate_setup() {
112
 
113
  /*-------------------------------------------------------------
114
  Name: adrotate_deactivate
115
-
116
  Purpose: Deactivate script
117
- Receive: -none-
118
- Return: -none-
119
  Since: 2.0
120
  -------------------------------------------------------------*/
121
  function adrotate_deactivate($network_wide) {
@@ -124,10 +115,7 @@ function adrotate_deactivate($network_wide) {
124
 
125
  /*-------------------------------------------------------------
126
  Name: adrotate_deactivate_setup
127
-
128
  Purpose: Deactivate script
129
- Receive: -none-
130
- Return: -none-
131
  Since: 2.0
132
  -------------------------------------------------------------*/
133
  function adrotate_deactivate_setup() {
@@ -153,10 +141,7 @@ function adrotate_deactivate_setup() {
153
 
154
  /*-------------------------------------------------------------
155
  Name: adrotate_uninstall
156
-
157
  Purpose: Initiate uninstallation
158
- Receive: -none-
159
- Return: -none-
160
  Since: 2.4.2
161
  -------------------------------------------------------------*/
162
  function adrotate_uninstall($network_wide) {
@@ -165,10 +150,7 @@ function adrotate_uninstall($network_wide) {
165
 
166
  /*-------------------------------------------------------------
167
  Name: adrotate_uninstall
168
-
169
  Purpose: Delete the entire AdRotate database and remove the options on uninstall
170
- Receive: -none-
171
- Return: -none-
172
  Since: 2.4.2
173
  -------------------------------------------------------------*/
174
  function adrotate_uninstall_setup() {
@@ -210,10 +192,7 @@ function adrotate_uninstall_setup() {
210
 
211
  /*-------------------------------------------------------------
212
  Name: adrotate_network_propagate
213
-
214
  Purpose: Check how many sites use AdRotate
215
- Receive: -none-
216
- Return: -none-
217
  Since: 3.9.9
218
  -------------------------------------------------------------*/
219
  function adrotate_network_propagate($pfunction, $network_wide) {
@@ -235,10 +214,7 @@ function adrotate_network_propagate($pfunction, $network_wide) {
235
 
236
  /*-------------------------------------------------------------
237
  Name: adrotate_check_config
238
-
239
  Purpose: Update the options
240
- Receive: -none-
241
- Return: -none-
242
  Since: 0.1
243
  -------------------------------------------------------------*/
244
  function adrotate_check_config() {
@@ -292,23 +268,9 @@ function adrotate_check_config() {
292
  unset($wpcontent);
293
 
294
  if(!isset($notifications['notification_dash']) OR ($notifications['notification_dash'] != 'Y' AND $notifications['notification_dash'] != 'N')) $notifications['notification_dash'] = 'Y';
295
- if(!isset($notifications['notification_email'])) $notifications['notification_email'] = 'N';
296
- if(!isset($notifications['notification_push'])) $notifications['notification_push'] = 'N';
297
 
298
  if(!isset($notifications['notification_dash_expired']) OR ($notifications['notification_dash_expired'] != 'Y' AND $notifications['notification_dash_expired'] != 'N')) $notifications['notification_dash_expired'] = 'Y';
299
  if(!isset($notifications['notification_dash_soon']) OR ($notifications['notification_dash_soon'] != 'Y' AND $notifications['notification_dash_soon'] != 'N')) $notifications['notification_dash_soon'] = 'Y';
300
-
301
- if(!isset($notifications['notification_push_geo']) OR ($notifications['notification_push_geo'] != 'Y' AND $notifications['notification_push_geo'] != 'N')) $notifications['notification_push_geo'] = 'N';
302
- if(!isset($notifications['notification_push_status']) OR ($notifications['notification_push_status'] != 'Y' AND $notifications['notification_push_status'] != 'N')) $notifications['notification_push_status'] = 'N';
303
- if(!isset($notifications['notification_push_queue']) OR ($notifications['notification_push_queue'] != 'Y' AND $notifications['notification_push_queue'] != 'N')) $notifications['notification_push_queue'] = 'N';
304
- if(!isset($notifications['notification_push_approved']) OR ($notifications['notification_push_approved'] != 'Y' AND $notifications['notification_push_approved'] != 'N')) $notifications['notification_push_approved'] = 'N';
305
- if(!isset($notifications['notification_push_rejected']) OR ($notifications['notification_push_rejected'] != 'Y' AND $notifications['notification_push_rejected'] != 'N')) $notifications['notification_push_rejected'] = 'N';
306
- if(!isset($notifications['notification_push_user'])) $notifications['notification_push_user'] = '';
307
- if(!isset($notifications['notification_push_api'])) $notifications['notification_push_api'] = '';
308
- if(!isset($notifications['notification_push_advertisers']) OR ($notifications['notification_push_advertisers'] != 'Y' AND $notifications['notification_push_advertisers'] != 'N')) $notifications['notification_push_advertisers'] = 'N';
309
-
310
- if(!isset($notifications['notification_email_publisher'])) $notifications['notification_email_publisher'] = array(get_option('admin_email'));
311
- if(!isset($notifications['notification_email_advertiser'])) $notifications['notification_email_advertiser'] = array(get_option('admin_email'));
312
  update_option('adrotate_notifications', $notifications);
313
 
314
  if(!isset($crawlers) OR count($crawlers) < 1) $crawlers = array("008", "bot", "crawler", "spider", "Accoona-AI-Agent", "alexa", "Arachmo", "B-l-i-t-z-B-O-T", "boitho.com-dc", "Cerberian Drtrs","Charlotte", "cosmos", "Covario IDS", "DataparkSearch","FindLinks", "Holmes", "htdig", "ia_archiver", "ichiro", "inktomi", "igdeSpyder", "L.webis", "Larbin", "LinkWalker", "lwp-trivial", "mabontland", "Mnogosearch", "mogimogi", "Morning Paper", "MVAClient", "NetResearchServer", "NewsGator", "NG-Search", "NutchCVS", "Nymesis", "oegp", "Orbiter", "Peew", "Pompos", "PostPost", "PycURL", "Qseero", "Radian6", "SBIder", "ScoutJet", "Scrubby", "SearchSight", "semanticdiscovery", "ShopWiki", "silk", "Snappy", "Sqworm", "StackRambler", "Teoma", "TinEye", "truwoGPS", "updated", "Vagabondo", "Vortex", "voyager", "VYU2", "webcollage", "Websquash.com", "wf84", "WomlpeFactory", "yacy", "Yahoo! Slurp", "Yahoo! Slurp China", "YahooSeeker", "YahooSeeker-Testing", "YandexImages", "Yeti", "yoogliFetchAgent", "Zao", "ZyBorg", "froogle","looksmart", "Firefly", "NationalDirectory", "Ask Jeeves", "TECNOSEEK", "InfoSeek", "Scooter", "appie", "WebBug", "Spade", "rabaz", "TechnoratiSnoop");
@@ -383,7 +345,7 @@ function adrotate_dummy_data() {
383
  // Demo ad 1
384
  $wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 468x60', 'bannercode' => '&lt;a href=\&quot;http:\/\/www.adrotateforwordpress.com\&quot;&gt;&lt;img src=\&quot;http://ajdg.solutions/assets/dummy-banners/adrotate-468x60.jpg\&quot; /&gt;&lt;/a&gt;', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'tracker' => 'N', 'desktop' => 'Y', 'mobile' => 'Y', 'tablet' => 'Y', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
385
  $ad_id = $wpdb->insert_id;
386
- $wpdb->insert("{$wpdb->prefix}adrotate_schedule", array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0, 'daystarttime' => '0000', 'daystoptime' => '0000', 'day_mon' => 'Y', 'day_tue' => 'Y', 'day_wed' => 'Y', 'day_thu' => 'Y', 'day_fri' => 'Y', 'day_sat' => 'Y', 'day_sun' => 'Y'));
387
  $schedule_id = $wpdb->insert_id;
388
  $wpdb->insert("{$wpdb->prefix}adrotate_linkmeta", array('ad' => $ad_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
389
  unset($ad_id, $schedule_id);
@@ -391,7 +353,7 @@ function adrotate_dummy_data() {
391
  // Demo ad 2
392
  $wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 200x200', 'bannercode' => '&lt;a href=\&quot;http:\/\/www.adrotateforwordpress.com\&quot;&gt;&lt;img src=\&quot;http://ajdg.solutions/assets/dummy-banners/adrotate-200x200.jpg\&quot; /&gt;&lt;/a&gt;', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'tracker' => 'N', 'desktop' => 'Y', 'mobile' => 'Y', 'tablet' => 'Y', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
393
  $ad_id = $wpdb->insert_id;
394
- $wpdb->insert("{$wpdb->prefix}adrotate_schedule", array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0, 'daystarttime' => '0000', 'daystoptime' => '0000', 'day_mon' => 'Y', 'day_tue' => 'Y', 'day_wed' => 'Y', 'day_thu' => 'Y', 'day_fri' => 'Y', 'day_sat' => 'Y', 'day_sun' => 'Y'));
395
  $schedule_id = $wpdb->insert_id;
396
  $wpdb->insert("{$wpdb->prefix}adrotate_linkmeta", array('ad' => $ad_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
397
  unset($ad_id, $schedule_id);
@@ -508,7 +470,7 @@ function adrotate_database_install() {
508
  `maxclicks` int(15) unsigned NOT NULL default '0',
509
  `maximpressions` int(15) unsigned NOT NULL default '0',
510
  `spread` char(1) NOT NULL default 'N',
511
- `dayimpressions` int(15) unsigned NOT NULL default '0',
512
  `daystarttime` char(4) NOT NULL default '0000',
513
  `daystoptime` char(4) NOT NULL default '0000',
514
  `day_mon` char(1) NOT NULL default 'Y',
@@ -669,7 +631,6 @@ function adrotate_database_upgrade() {
669
  adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'adspeed', 'int(5) NOT NULL default \'6000\' AFTER `adheight`');
670
  }
671
 
672
-
673
  // Database: 36
674
  // AdRotate: 3.8.10
675
  if($adrotate_db_version['current'] < 36) {
@@ -749,7 +710,7 @@ function adrotate_database_upgrade() {
749
  // Database: 46
750
  // AdRotate: 3.10.13
751
  if($adrotate_db_version['current'] < 46) {
752
- $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_schedule` CHANGE `hourimpressions` `dayimpressions` int(15) NOT NULL default '0';");
753
  }
754
 
755
  // Database: 47
@@ -897,15 +858,18 @@ function adrotate_database_upgrade() {
897
  }
898
  }
899
 
 
 
 
 
 
 
900
  update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
901
  }
902
 
903
  /*-------------------------------------------------------------
904
  Name: adrotate_core_upgrade
905
-
906
  Purpose: Upgrades AdRotate where required
907
- Receive: -none-
908
- Return: -none-
909
  Since: 3.5
910
  -------------------------------------------------------------*/
911
  function adrotate_core_upgrade() {
@@ -1062,10 +1026,7 @@ function adrotate_core_upgrade() {
1062
 
1063
  /*-------------------------------------------------------------
1064
  Name: adrotate_optimize_database
1065
-
1066
  Purpose: Optimizes all AdRotate tables
1067
- Receive: -none-
1068
- Return: -none-
1069
  Since: 3.4
1070
  -------------------------------------------------------------*/
1071
  function adrotate_optimize_database() {
@@ -1080,18 +1041,15 @@ function adrotate_optimize_database() {
1080
  dbDelta("OPTIMIZE TABLE `{$wpdb->prefix}adrotate`, `{$wpdb->prefix}adrotate_groups`, `{$wpdb->prefix}adrotate_linkmeta`, `{$wpdb->prefix}adrotate_stats`, `{$wpdb->prefix}adrotate_stats_archive`, `{$wpdb->prefix}adrotate_tracker`, `{$wpdb->prefix}adrotate_schedule`;");
1081
  dbDelta("REPAIR TABLE `{$wpdb->prefix}adrotate`, `{$wpdb->prefix}adrotate_groups`, `{$wpdb->prefix}adrotate_linkmeta`, `{$wpdb->prefix}adrotate_stats`, `{$wpdb->prefix}adrotate_stats_archive`, `{$wpdb->prefix}adrotate_tracker`, `{$wpdb->prefix}adrotate_schedule`;");
1082
  update_option('adrotate_db_timer', $now);
1083
- adrotate_return('adrotate-settings', 403);
1084
  } else {
1085
- adrotate_return('adrotate-settings', 504);
1086
  }
1087
  }
1088
 
1089
  /*-------------------------------------------------------------
1090
  Name: adrotate_cleanup_database
1091
-
1092
  Purpose: Clean AdRotate tables
1093
- Receive: -none-
1094
- Return: -none-
1095
  Since: 3.5
1096
  -------------------------------------------------------------*/
1097
  function adrotate_cleanup_database() {
@@ -1140,15 +1098,12 @@ function adrotate_cleanup_database() {
1140
  // Clean up stray linkmeta
1141
  $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = 0 OR `ad` = '';");
1142
 
1143
- adrotate_return('adrotate-settings', 406);
1144
  }
1145
 
1146
  /*-------------------------------------------------------------
1147
  Name: adrotate_clean_trackerdata
1148
-
1149
  Purpose: Removes old statistics
1150
- Receive: -none-
1151
- Return: -none-
1152
  Since: 2.0
1153
  -------------------------------------------------------------*/
1154
  function adrotate_clean_trackerdata() {
@@ -1163,10 +1118,7 @@ function adrotate_clean_trackerdata() {
1163
 
1164
  /*-------------------------------------------------------------
1165
  Name: adrotate_add_column
1166
-
1167
  Purpose: Check if the column exists in the table
1168
- Receive: $table_name, $column_name, $attributes
1169
- Return: Boolean
1170
  Since: 3.0.3
1171
  -------------------------------------------------------------*/
1172
  function adrotate_add_column($table_name, $column_name, $attributes) {
@@ -1187,10 +1139,7 @@ function adrotate_add_column($table_name, $column_name, $attributes) {
1187
 
1188
  /*-------------------------------------------------------------
1189
  Name: adrotate_del_column
1190
-
1191
  Purpose: Check if the column exists in the table remove if it does
1192
- Receive: $table_name, $column_name
1193
- Return: Boolean
1194
  Since: 3.8.3.3
1195
  -------------------------------------------------------------*/
1196
  function adrotate_del_column($table_name, $column_name) {
11
 
12
  /*-------------------------------------------------------------
13
  Name: adrotate_activate
 
14
  Purpose: Set up AdRotate on your current blog
 
 
15
  Since: 3.9.8
16
  -------------------------------------------------------------*/
17
  function adrotate_activate($network_wide) {
36
 
37
  /*-------------------------------------------------------------
38
  Name: adrotate_activate_setup
 
39
  Purpose: Creates database table if it doesnt exist
 
 
40
  Since: 0.1
41
  -------------------------------------------------------------*/
42
  function adrotate_activate_setup() {
106
 
107
  /*-------------------------------------------------------------
108
  Name: adrotate_deactivate
 
109
  Purpose: Deactivate script
 
 
110
  Since: 2.0
111
  -------------------------------------------------------------*/
112
  function adrotate_deactivate($network_wide) {
115
 
116
  /*-------------------------------------------------------------
117
  Name: adrotate_deactivate_setup
 
118
  Purpose: Deactivate script
 
 
119
  Since: 2.0
120
  -------------------------------------------------------------*/
121
  function adrotate_deactivate_setup() {
141
 
142
  /*-------------------------------------------------------------
143
  Name: adrotate_uninstall
 
144
  Purpose: Initiate uninstallation
 
 
145
  Since: 2.4.2
146
  -------------------------------------------------------------*/
147
  function adrotate_uninstall($network_wide) {
150
 
151
  /*-------------------------------------------------------------
152
  Name: adrotate_uninstall
 
153
  Purpose: Delete the entire AdRotate database and remove the options on uninstall
 
 
154
  Since: 2.4.2
155
  -------------------------------------------------------------*/
156
  function adrotate_uninstall_setup() {
192
 
193
  /*-------------------------------------------------------------
194
  Name: adrotate_network_propagate
 
195
  Purpose: Check how many sites use AdRotate
 
 
196
  Since: 3.9.9
197
  -------------------------------------------------------------*/
198
  function adrotate_network_propagate($pfunction, $network_wide) {
214
 
215
  /*-------------------------------------------------------------
216
  Name: adrotate_check_config
 
217
  Purpose: Update the options
 
 
218
  Since: 0.1
219
  -------------------------------------------------------------*/
220
  function adrotate_check_config() {
268
  unset($wpcontent);
269
 
270
  if(!isset($notifications['notification_dash']) OR ($notifications['notification_dash'] != 'Y' AND $notifications['notification_dash'] != 'N')) $notifications['notification_dash'] = 'Y';
 
 
271
 
272
  if(!isset($notifications['notification_dash_expired']) OR ($notifications['notification_dash_expired'] != 'Y' AND $notifications['notification_dash_expired'] != 'N')) $notifications['notification_dash_expired'] = 'Y';
273
  if(!isset($notifications['notification_dash_soon']) OR ($notifications['notification_dash_soon'] != 'Y' AND $notifications['notification_dash_soon'] != 'N')) $notifications['notification_dash_soon'] = 'Y';
 
 
 
 
 
 
 
 
 
 
 
 
274
  update_option('adrotate_notifications', $notifications);
275
 
276
  if(!isset($crawlers) OR count($crawlers) < 1) $crawlers = array("008", "bot", "crawler", "spider", "Accoona-AI-Agent", "alexa", "Arachmo", "B-l-i-t-z-B-O-T", "boitho.com-dc", "Cerberian Drtrs","Charlotte", "cosmos", "Covario IDS", "DataparkSearch","FindLinks", "Holmes", "htdig", "ia_archiver", "ichiro", "inktomi", "igdeSpyder", "L.webis", "Larbin", "LinkWalker", "lwp-trivial", "mabontland", "Mnogosearch", "mogimogi", "Morning Paper", "MVAClient", "NetResearchServer", "NewsGator", "NG-Search", "NutchCVS", "Nymesis", "oegp", "Orbiter", "Peew", "Pompos", "PostPost", "PycURL", "Qseero", "Radian6", "SBIder", "ScoutJet", "Scrubby", "SearchSight", "semanticdiscovery", "ShopWiki", "silk", "Snappy", "Sqworm", "StackRambler", "Teoma", "TinEye", "truwoGPS", "updated", "Vagabondo", "Vortex", "voyager", "VYU2", "webcollage", "Websquash.com", "wf84", "WomlpeFactory", "yacy", "Yahoo! Slurp", "Yahoo! Slurp China", "YahooSeeker", "YahooSeeker-Testing", "YandexImages", "Yeti", "yoogliFetchAgent", "Zao", "ZyBorg", "froogle","looksmart", "Firefly", "NationalDirectory", "Ask Jeeves", "TECNOSEEK", "InfoSeek", "Scooter", "appie", "WebBug", "Spade", "rabaz", "TechnoratiSnoop");
345
  // Demo ad 1
346
  $wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 468x60', 'bannercode' => '&lt;a href=\&quot;http:\/\/www.adrotateforwordpress.com\&quot;&gt;&lt;img src=\&quot;http://ajdg.solutions/assets/dummy-banners/adrotate-468x60.jpg\&quot; /&gt;&lt;/a&gt;', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'tracker' => 'N', 'desktop' => 'Y', 'mobile' => 'Y', 'tablet' => 'Y', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
347
  $ad_id = $wpdb->insert_id;
348
+ $wpdb->insert("{$wpdb->prefix}adrotate_schedule", array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'hourimpressions' => 0, 'daystarttime' => '0000', 'daystoptime' => '0000', 'day_mon' => 'Y', 'day_tue' => 'Y', 'day_wed' => 'Y', 'day_thu' => 'Y', 'day_fri' => 'Y', 'day_sat' => 'Y', 'day_sun' => 'Y'));
349
  $schedule_id = $wpdb->insert_id;
350
  $wpdb->insert("{$wpdb->prefix}adrotate_linkmeta", array('ad' => $ad_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
351
  unset($ad_id, $schedule_id);
353
  // Demo ad 2
354
  $wpdb->insert("{$wpdb->prefix}adrotate", array('title' => 'Demo ad 200x200', 'bannercode' => '&lt;a href=\&quot;http:\/\/www.adrotateforwordpress.com\&quot;&gt;&lt;img src=\&quot;http://ajdg.solutions/assets/dummy-banners/adrotate-200x200.jpg\&quot; /&gt;&lt;/a&gt;', 'thetime' => $now, 'updated' => $now, 'author' => $current_user->user_login, 'imagetype' => '', 'image' => '', 'tracker' => 'N', 'desktop' => 'Y', 'mobile' => 'Y', 'tablet' => 'Y', 'responsive' => 'N', 'type' => 'active', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
355
  $ad_id = $wpdb->insert_id;
356
+ $wpdb->insert("{$wpdb->prefix}adrotate_schedule", array('name' => 'Schedule for ad '.$ad_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'hourimpressions' => 0, 'daystarttime' => '0000', 'daystoptime' => '0000', 'day_mon' => 'Y', 'day_tue' => 'Y', 'day_wed' => 'Y', 'day_thu' => 'Y', 'day_fri' => 'Y', 'day_sat' => 'Y', 'day_sun' => 'Y'));
357
  $schedule_id = $wpdb->insert_id;
358
  $wpdb->insert("{$wpdb->prefix}adrotate_linkmeta", array('ad' => $ad_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
359
  unset($ad_id, $schedule_id);
470
  `maxclicks` int(15) unsigned NOT NULL default '0',
471
  `maximpressions` int(15) unsigned NOT NULL default '0',
472
  `spread` char(1) NOT NULL default 'N',
473
+ `hourimpressions` int(15) unsigned NOT NULL default '0',
474
  `daystarttime` char(4) NOT NULL default '0000',
475
  `daystoptime` char(4) NOT NULL default '0000',
476
  `day_mon` char(1) NOT NULL default 'Y',
631
  adrotate_add_column("{$wpdb->prefix}adrotate_groups", 'adspeed', 'int(5) NOT NULL default \'6000\' AFTER `adheight`');
632
  }
633
 
 
634
  // Database: 36
635
  // AdRotate: 3.8.10
636
  if($adrotate_db_version['current'] < 36) {
710
  // Database: 46
711
  // AdRotate: 3.10.13
712
  if($adrotate_db_version['current'] < 46) {
713
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_schedule` CHANGE `hourimpressions` `hourimpressions` int(15) NOT NULL default '0';");
714
  }
715
 
716
  // Database: 47
858
  }
859
  }
860
 
861
+ // Database: 58
862
+ // AdRotate: 3.15.5b1
863
+ if($adrotate_db_version['current'] < 58) {
864
+ $wpdb->query("ALTER TABLE `{$wpdb->prefix}adrotate_schedule` CHANGE `dayimpressions` `hourimpressions` int(15) NOT NULL default '0';");
865
+ }
866
+
867
  update_option("adrotate_db_version", array('current' => ADROTATE_DB_VERSION, 'previous' => $adrotate_db_version['current']));
868
  }
869
 
870
  /*-------------------------------------------------------------
871
  Name: adrotate_core_upgrade
 
872
  Purpose: Upgrades AdRotate where required
 
 
873
  Since: 3.5
874
  -------------------------------------------------------------*/
875
  function adrotate_core_upgrade() {
1026
 
1027
  /*-------------------------------------------------------------
1028
  Name: adrotate_optimize_database
 
1029
  Purpose: Optimizes all AdRotate tables
 
 
1030
  Since: 3.4
1031
  -------------------------------------------------------------*/
1032
  function adrotate_optimize_database() {
1041
  dbDelta("OPTIMIZE TABLE `{$wpdb->prefix}adrotate`, `{$wpdb->prefix}adrotate_groups`, `{$wpdb->prefix}adrotate_linkmeta`, `{$wpdb->prefix}adrotate_stats`, `{$wpdb->prefix}adrotate_stats_archive`, `{$wpdb->prefix}adrotate_tracker`, `{$wpdb->prefix}adrotate_schedule`;");
1042
  dbDelta("REPAIR TABLE `{$wpdb->prefix}adrotate`, `{$wpdb->prefix}adrotate_groups`, `{$wpdb->prefix}adrotate_linkmeta`, `{$wpdb->prefix}adrotate_stats`, `{$wpdb->prefix}adrotate_stats_archive`, `{$wpdb->prefix}adrotate_tracker`, `{$wpdb->prefix}adrotate_schedule`;");
1043
  update_option('adrotate_db_timer', $now);
1044
+ adrotate_return('adrotate-settings', 403, array('tab' => 'maintenance'));
1045
  } else {
1046
+ adrotate_return('adrotate-settings', 504, array('tab' => 'maintenance'));
1047
  }
1048
  }
1049
 
1050
  /*-------------------------------------------------------------
1051
  Name: adrotate_cleanup_database
 
1052
  Purpose: Clean AdRotate tables
 
 
1053
  Since: 3.5
1054
  -------------------------------------------------------------*/
1055
  function adrotate_cleanup_database() {
1098
  // Clean up stray linkmeta
1099
  $wpdb->query("DELETE FROM `{$wpdb->prefix}adrotate_linkmeta` WHERE `ad` = 0 OR `ad` = '';");
1100
 
1101
+ adrotate_return('adrotate-settings', 406, array('tab' => 'maintenance'));
1102
  }
1103
 
1104
  /*-------------------------------------------------------------
1105
  Name: adrotate_clean_trackerdata
 
1106
  Purpose: Removes old statistics
 
 
1107
  Since: 2.0
1108
  -------------------------------------------------------------*/
1109
  function adrotate_clean_trackerdata() {
1118
 
1119
  /*-------------------------------------------------------------
1120
  Name: adrotate_add_column
 
1121
  Purpose: Check if the column exists in the table
 
 
1122
  Since: 3.0.3
1123
  -------------------------------------------------------------*/
1124
  function adrotate_add_column($table_name, $column_name, $attributes) {
1139
 
1140
  /*-------------------------------------------------------------
1141
  Name: adrotate_del_column
 
1142
  Purpose: Check if the column exists in the table remove if it does
 
 
1143
  Since: 3.8.3.3
1144
  -------------------------------------------------------------*/
1145
  function adrotate_del_column($table_name, $column_name) {
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: 3.15.4
11
  License: GPLv3
12
  */
13
 
@@ -22,9 +22,9 @@ License: GPLv3
22
  ------------------------------------------------------------------------------------ */
23
 
24
  /*--- AdRotate values ---------------------------------------*/
25
- define("ADROTATE_DISPLAY", '3.15.4');
26
  define("ADROTATE_VERSION", 381);
27
- define("ADROTATE_DB_VERSION", 57);
28
  /*-----------------------------------------------------------*/
29
 
30
  /*--- Load Files --------------------------------------------*/
@@ -83,7 +83,7 @@ if(is_admin()) {
83
  if(isset($_POST['adrotate_action_submit'])) add_action('init', 'adrotate_request_action');
84
  if(isset($_POST['adrotate_disabled_action_submit'])) add_action('init', 'adrotate_request_action');
85
  if(isset($_POST['adrotate_error_action_submit'])) add_action('init', 'adrotate_request_action');
86
- if(isset($_POST['adrotate_options_submit'])) add_action('init', 'adrotate_options_submit');
87
  if(isset($_POST['adrotate_request_submit'])) add_action('init', 'adrotate_mail_message');
88
  if(isset($_POST['adrotate_db_optimize_submit'])) add_action('init', 'adrotate_optimize_database');
89
  if(isset($_POST['adrotate_db_cleanup_submit'])) add_action('init', 'adrotate_cleanup_database');
@@ -92,10 +92,7 @@ if(is_admin()) {
92
 
93
  /*-------------------------------------------------------------
94
  Name: adrotate_dashboard
95
-
96
  Purpose: Add pages to admin menus
97
- Receive: -none-
98
- Return: -none-
99
  -------------------------------------------------------------*/
100
  function adrotate_dashboard() {
101
  global $adrotate_config;
@@ -122,10 +119,7 @@ function adrotate_dashboard() {
122
 
123
  /*-------------------------------------------------------------
124
  Name: adrotate_info
125
-
126
  Purpose: Admin general info page
127
- Receive: -none-
128
- Return: -none-
129
  -------------------------------------------------------------*/
130
  function adrotate_info() {
131
  global $wpdb;
@@ -144,10 +138,7 @@ function adrotate_info() {
144
 
145
  /*-------------------------------------------------------------
146
  Name: adrotate_pro
147
-
148
  Purpose: AdRotate Pro Sales
149
- Receive: -none-
150
- Return: -none-
151
  -------------------------------------------------------------*/
152
  function adrotate_pro() {
153
  ?>
@@ -165,10 +156,7 @@ function adrotate_pro() {
165
 
166
  /*-------------------------------------------------------------
167
  Name: adrotate_manage
168
-
169
  Purpose: Admin management page
170
- Receive: -none-
171
- Return: -none-
172
  -------------------------------------------------------------*/
173
  function adrotate_manage() {
174
  global $wpdb, $userdata, $adrotate_config, $adrotate_debug;
@@ -287,10 +275,7 @@ function adrotate_manage() {
287
 
288
  /*-------------------------------------------------------------
289
  Name: adrotate_manage_group
290
-
291
  Purpose: Manage groups
292
- Receive: -none-
293
- Return: -none-
294
  -------------------------------------------------------------*/
295
  function adrotate_manage_group() {
296
  global $wpdb, $adrotate_config, $adrotate_debug;
@@ -360,10 +345,7 @@ function adrotate_manage_group() {
360
 
361
  /*-------------------------------------------------------------
362
  Name: adrotate_manage_schedules
363
-
364
  Purpose: Manage schedules for ads
365
- Receive: -none-
366
- Return: -none-
367
  -------------------------------------------------------------*/
368
  function adrotate_manage_schedules() {
369
  global $wpdb;
@@ -460,10 +442,7 @@ function adrotate_manage_schedules() {
460
 
461
  /*-------------------------------------------------------------
462
  Name: adrotate_manage_images
463
-
464
  Purpose: Manage banner images for ads
465
- Receive: -none-
466
- Return: -none-
467
  -------------------------------------------------------------*/
468
  function adrotate_manage_media() {
469
  global $adrotate_config;
@@ -523,10 +502,7 @@ function adrotate_manage_media() {
523
 
524
  /*-------------------------------------------------------------
525
  Name: adrotate_options
526
-
527
  Purpose: Admin options page
528
- Receive: -none-
529
- Return: -none-
530
  -------------------------------------------------------------*/
531
  function adrotate_options() {
532
  global $wpdb, $wp_roles;
@@ -552,68 +528,55 @@ function adrotate_options() {
552
  <a href="?page=adrotate-settings&tab=maintenance" class="nav-tab <?php echo $active_tab == 'maintenance' ? 'nav-tab-active' : ''; ?>">Maintenance</a>
553
  </h2>
554
 
555
- <form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings">
556
- <input type="hidden" name="adrotate_settings_tab" value="<?php echo $active_tab; ?>" />
 
557
 
558
- <?php wp_nonce_field('adrotate_email_test','adrotate_nonce'); ?>
559
- <?php wp_nonce_field('adrotate_settings','adrotate_nonce_settings'); ?>
560
 
561
- <?php
562
- $adrotate_config = get_option('adrotate_config');
563
- $adrotate_debug = get_option('adrotate_debug');
564
-
565
- if($active_tab == 'general') {
566
- $adrotate_crawlers = get_option('adrotate_crawlers');
567
-
568
- $crawlers = '';
569
- if(is_array($adrotate_crawlers)) {
570
- $crawlers = implode(', ', $adrotate_crawlers);
571
- }
572
-
573
- include("dashboard/settings/general.php");
574
- } elseif($active_tab == 'notifications') {
575
- $adrotate_notifications = get_option("adrotate_notifications");
576
- include("dashboard/settings/notifications.php");
577
- } elseif($active_tab == 'stats') {
578
- include("dashboard/settings/statistics.php");
579
- } elseif($active_tab == 'geo') {
580
- include("dashboard/settings/geotargeting.php");
581
- } elseif($active_tab == 'advertisers') {
582
- include("dashboard/settings/advertisers.php");
583
- } elseif($active_tab == 'roles') {
584
- include("dashboard/settings/roles.php");
585
- } elseif($active_tab == 'misc') {
586
- include("dashboard/settings/misc.php");
587
- } elseif($active_tab == 'maintenance') {
588
- $adrotate_version = get_option('adrotate_version');
589
- $adrotate_db_version = get_option('adrotate_db_version');
590
- $advert_status = get_option("adrotate_advert_status");
591
-
592
- $adevaluate = wp_next_scheduled('adrotate_evaluate_ads');
593
- $adschedule = wp_next_scheduled('adrotate_notification');
594
- $adtracker = wp_next_scheduled('adrotate_clean_trackerdata');
595
-
596
- include("dashboard/settings/maintenance.php");
597
- } elseif($active_tab == 'license') {
598
- $adrotate_is_networked = adrotate_is_networked();
599
- $adrotate_hide_license = get_option('adrotate_hide_license');
600
- if($adrotate_is_networked) {
601
- $adrotate_activate = get_site_option('adrotate_activate');
602
- } else {
603
- $adrotate_activate = get_option('adrotate_activate');
604
- }
605
-
606
- include("dashboard/settings/license.php");
607
  }
608
- ?>
609
 
610
- <?php if($active_tab != 'license') { ?>
611
- <p class="submit">
612
- <input type="submit" name="adrotate_options_submit" class="button-primary" value="<?php _e('Update Options', 'adrotate'); ?>" />
613
- </p>
614
- <?php } ?>
615
- </form>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
616
  </div>
617
  <?php
618
  }
619
- ?>
7
  Description: The popular choice for monetizing your website with adverts while keeping things simple. Start making money today!
8
  Text Domain: adrotate
9
  Domain Path: /languages/
10
+ Version: 3.15.5
11
  License: GPLv3
12
  */
13
 
22
  ------------------------------------------------------------------------------------ */
23
 
24
  /*--- AdRotate values ---------------------------------------*/
25
+ define("ADROTATE_DISPLAY", '3.15.5');
26
  define("ADROTATE_VERSION", 381);
27
+ define("ADROTATE_DB_VERSION", 58);
28
  /*-----------------------------------------------------------*/
29
 
30
  /*--- Load Files --------------------------------------------*/
83
  if(isset($_POST['adrotate_action_submit'])) add_action('init', 'adrotate_request_action');
84
  if(isset($_POST['adrotate_disabled_action_submit'])) add_action('init', 'adrotate_request_action');
85
  if(isset($_POST['adrotate_error_action_submit'])) add_action('init', 'adrotate_request_action');
86
+ if(isset($_POST['adrotate_save_options'])) add_action('init', 'adrotate_options_submit');
87
  if(isset($_POST['adrotate_request_submit'])) add_action('init', 'adrotate_mail_message');
88
  if(isset($_POST['adrotate_db_optimize_submit'])) add_action('init', 'adrotate_optimize_database');
89
  if(isset($_POST['adrotate_db_cleanup_submit'])) add_action('init', 'adrotate_cleanup_database');
92
 
93
  /*-------------------------------------------------------------
94
  Name: adrotate_dashboard
 
95
  Purpose: Add pages to admin menus
 
 
96
  -------------------------------------------------------------*/
97
  function adrotate_dashboard() {
98
  global $adrotate_config;
119
 
120
  /*-------------------------------------------------------------
121
  Name: adrotate_info
 
122
  Purpose: Admin general info page
 
 
123
  -------------------------------------------------------------*/
124
  function adrotate_info() {
125
  global $wpdb;
138
 
139
  /*-------------------------------------------------------------
140
  Name: adrotate_pro
 
141
  Purpose: AdRotate Pro Sales
 
 
142
  -------------------------------------------------------------*/
143
  function adrotate_pro() {
144
  ?>
156
 
157
  /*-------------------------------------------------------------
158
  Name: adrotate_manage
 
159
  Purpose: Admin management page
 
 
160
  -------------------------------------------------------------*/
161
  function adrotate_manage() {
162
  global $wpdb, $userdata, $adrotate_config, $adrotate_debug;
275
 
276
  /*-------------------------------------------------------------
277
  Name: adrotate_manage_group
 
278
  Purpose: Manage groups
 
 
279
  -------------------------------------------------------------*/
280
  function adrotate_manage_group() {
281
  global $wpdb, $adrotate_config, $adrotate_debug;
345
 
346
  /*-------------------------------------------------------------
347
  Name: adrotate_manage_schedules
 
348
  Purpose: Manage schedules for ads
 
 
349
  -------------------------------------------------------------*/
350
  function adrotate_manage_schedules() {
351
  global $wpdb;
442
 
443
  /*-------------------------------------------------------------
444
  Name: adrotate_manage_images
 
445
  Purpose: Manage banner images for ads
 
 
446
  -------------------------------------------------------------*/
447
  function adrotate_manage_media() {
448
  global $adrotate_config;
502
 
503
  /*-------------------------------------------------------------
504
  Name: adrotate_options
 
505
  Purpose: Admin options page
 
 
506
  -------------------------------------------------------------*/
507
  function adrotate_options() {
508
  global $wpdb, $wp_roles;
528
  <a href="?page=adrotate-settings&tab=maintenance" class="nav-tab <?php echo $active_tab == 'maintenance' ? 'nav-tab-active' : ''; ?>">Maintenance</a>
529
  </h2>
530
 
531
+ <?php
532
+ $adrotate_config = get_option('adrotate_config');
533
+ $adrotate_debug = get_option('adrotate_debug');
534
 
535
+ if($active_tab == 'general') {
536
+ $adrotate_crawlers = get_option('adrotate_crawlers');
537
 
538
+ $crawlers = '';
539
+ if(is_array($adrotate_crawlers)) {
540
+ $crawlers = implode(', ', $adrotate_crawlers);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
541
  }
 
542
 
543
+ include("dashboard/settings/general.php");
544
+ } elseif($active_tab == 'notifications') {
545
+ $adrotate_notifications = get_option("adrotate_notifications");
546
+ include("dashboard/settings/notifications.php");
547
+ } elseif($active_tab == 'stats') {
548
+ include("dashboard/settings/statistics.php");
549
+ } elseif($active_tab == 'geo') {
550
+ include("dashboard/settings/geotargeting.php");
551
+ } elseif($active_tab == 'advertisers') {
552
+ include("dashboard/settings/advertisers.php");
553
+ } elseif($active_tab == 'roles') {
554
+ include("dashboard/settings/roles.php");
555
+ } elseif($active_tab == 'misc') {
556
+ include("dashboard/settings/misc.php");
557
+ } elseif($active_tab == 'maintenance') {
558
+ $adrotate_version = get_option('adrotate_version');
559
+ $adrotate_db_version = get_option('adrotate_db_version');
560
+ $advert_status = get_option("adrotate_advert_status");
561
+
562
+ $adevaluate = wp_next_scheduled('adrotate_evaluate_ads');
563
+ $adschedule = wp_next_scheduled('adrotate_notification');
564
+ $adtracker = wp_next_scheduled('adrotate_clean_trackerdata');
565
+
566
+ include("dashboard/settings/maintenance.php");
567
+ } elseif($active_tab == 'license') {
568
+ $adrotate_is_networked = adrotate_is_networked();
569
+ $adrotate_hide_license = get_option('adrotate_hide_license');
570
+ if($adrotate_is_networked) {
571
+ $adrotate_activate = get_site_option('adrotate_activate');
572
+ } else {
573
+ $adrotate_activate = get_option('adrotate_activate');
574
+ }
575
+
576
+ include("dashboard/settings/license.php");
577
+ }
578
+ ?>
579
  </div>
580
  <?php
581
  }
582
+ ?>
dashboard/adrotatepro.php CHANGED
@@ -95,11 +95,11 @@
95
  <h3><?php _e('Buy AdRotate Professional', 'adrotate'); ?></h3>
96
  <div class="postbox-adrotate">
97
  <div class="inside">
98
- <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=compare-licenses&utm_medium=pro-page&utm_source=adrotate-free"><img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/adrotate-product.png" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
99
  <p><h4><?php _e('Single License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('For one WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&utm_campaign=buy-single&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
100
  <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&utm_campaign=buy-duo&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
101
  <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&utm_campaign=buy-multi&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
102
- <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 299.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&utm_campaign=buy-developer&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
103
  <p><h4><?php _e('Compare licenses', 'adrotate'); ?></h4> <?php _e("Not sure which license is for you? Compare them...", 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=compare-licenses&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('All Licenses', 'adrotate'); ?> &raquo;</a></p>
104
  </div>
105
  </div>
95
  <h3><?php _e('Buy AdRotate Professional', 'adrotate'); ?></h3>
96
  <div class="postbox-adrotate">
97
  <div class="inside">
98
+ <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=compare-licenses&utm_medium=pro-page&utm_source=adrotate-free"><img src="<?php echo plugins_url('/images/adrotate-product.png', dirname(__FILE__)); ?>" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" /></a>
99
  <p><h4><?php _e('Single License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('For one WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&utm_campaign=buy-single&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
100
  <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&utm_campaign=buy-duo&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
101
  <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&utm_campaign=buy-multi&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
102
+ <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 249.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&utm_campaign=buy-developer&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
103
  <p><h4><?php _e('Compare licenses', 'adrotate'); ?></h4> <?php _e("Not sure which license is for you? Compare them...", 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=compare-licenses&utm_medium=pro-page&utm_source=adrotate-free" target="_blank"><?php _e('All Licenses', 'adrotate'); ?> &raquo;</a></p>
104
  </div>
105
  </div>
dashboard/info.php CHANGED
@@ -52,7 +52,7 @@ $data = get_option("adrotate_advert_status");
52
  <tbody>
53
  <tr class="first">
54
  <td colspan="2">
55
- <center><?php _e('Consider writing a review if you like AdRotate. Also follow my Facebook page for updates about me and my plugins. Thank you!', 'adrotate-pro'); ?><br /><br />
56
  <center><a class="button-primary" href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40ajdg%2enet&item_name=AdRotate%20Donation&no_shipping=0&no_note=0&tax=0&currency_code=EUR&bn=PP%2dDonationsBF&charset=UTF%2d8&amount=10" target="_blank">Donate &euro; 10 via Paypal</a> <a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform">Write review on WordPress.org</a></center><br />
57
  <script>(function(d, s, id) {
58
  var js, fjs = d.getElementsByTagName(s)[0];
@@ -82,10 +82,10 @@ $data = get_option("adrotate_advert_status");
82
  <p><h4><?php _e('Single License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('For one WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&utm_campaign=buy-single&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
83
  <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&utm_campaign=buy-duo&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
84
  <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&utm_campaign=buy-multi&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
85
- <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 299.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&utm_campaign=buy-developer&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
86
  <p><h4><?php _e('Compare licenses', 'adrotate'); ?></h4> <?php _e("Not sure which license is for you? Compare them...", 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=compare-license&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('All Licenses', 'adrotate'); ?> &raquo;</a></p>
87
  <!--
88
- <img src="<?php echo WP_CONTENT_URL; ?>/plugins/adrotate/images/adrotate-product.png" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" />
89
  <p><h4><?php _e('Lifetime License', 'adrotate'); ?> (&euro; 59.00)</h4><?php _e('Single installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&utm_campaign=buy-single&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
90
  <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 29.00 p/year)</h4><?php _e('Up to 2 installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&utm_campaign=buy-duo&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
91
  <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00 p/year)</h4><?php _e('Up to 10 installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&utm_campaign=buy-multi&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
52
  <tbody>
53
  <tr class="first">
54
  <td colspan="2">
55
+ <center><?php _e('Consider writing a review if you like AdRotate. Also follow my Facebook page for updates about me and my plugins. Thank you!', 'adrotate'); ?><br /><br />
56
  <center><a class="button-primary" href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40ajdg%2enet&item_name=AdRotate%20Donation&no_shipping=0&no_note=0&tax=0&currency_code=EUR&bn=PP%2dDonationsBF&charset=UTF%2d8&amount=10" target="_blank">Donate &euro; 10 via Paypal</a> <a class="button" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/adrotate?rate=5#postform">Write review on WordPress.org</a></center><br />
57
  <script>(function(d, s, id) {
58
  var js, fjs = d.getElementsByTagName(s)[0];
82
  <p><h4><?php _e('Single License', 'adrotate'); ?> (&euro; 29.00)</h4><?php _e('For one WordPress installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&utm_campaign=buy-single&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
83
  <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 39.00)</h4><?php _e('For two WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&utm_campaign=buy-duo&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
84
  <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00)</h4><?php _e(' For up to five WordPress installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&utm_campaign=buy-multi&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
85
+ <p><h4><?php _e('Developer License', 'adrotate'); ?> (&euro; 249.00)</h4><?php _e('Unlimited WordPress installations and/or networks.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1130&utm_campaign=buy-developer&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
86
  <p><h4><?php _e('Compare licenses', 'adrotate'); ?></h4> <?php _e("Not sure which license is for you? Compare them...", 'adrotate'); ?> <a href="https://ajdg.solutions/products/adrotate-for-wordpress/?utm_campaign=compare-license&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('All Licenses', 'adrotate'); ?> &raquo;</a></p>
87
  <!--
88
+ <img src="<?php echo plugins_url('/images/adrotate-product.png', dirname(__FILE__)); ?>" alt="adrotate-product" width="150" height="150" align="right" style="padding: 0 0 10px 10px;" />
89
  <p><h4><?php _e('Lifetime License', 'adrotate'); ?> (&euro; 59.00)</h4><?php _e('Single installation.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1124&utm_campaign=buy-single&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
90
  <p><h4><?php _e('Duo License', 'adrotate'); ?> (&euro; 29.00 p/year)</h4><?php _e('Up to 2 installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1126&utm_campaign=buy-duo&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
91
  <p><h4><?php _e('Multi License', 'adrotate'); ?> (&euro; 99.00 p/year)</h4><?php _e('Up to 10 installations.', 'adrotate'); ?> <a href="https://ajdg.solutions/cart/?add-to-cart=1128&utm_campaign=buy-multi&utm_medium=info-page&utm_source=adrotate-free" target="_blank"><?php _e('Buy now', 'adrotate'); ?> &raquo;</a></p>
dashboard/publisher/adverts-edit.php CHANGED
@@ -15,7 +15,7 @@ if(!$ad_edit_id) {
15
  $wpdb->insert($wpdb->prefix."adrotate", array('title' => '', 'bannercode' => '', 'thetime' => $now, 'updated' => $now, 'author' => $userdata->user_login, 'imagetype' => 'dropdown', 'image' => '', 'tracker' => 'N', 'desktop' => 'Y', 'mobile' => 'Y', 'tablet' => 'Y', 'responsive' => 'N', 'type' => 'empty', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
16
  $edit_id = $wpdb->insert_id;
17
 
18
- $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$edit_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'dayimpressions' => 0, 'daystarttime' => '0000', 'daystoptime' => '0000', 'day_mon' => 'Y', 'day_tue' => 'Y', 'day_wed' => 'Y', 'day_thu' => 'Y', 'day_fri' => 'Y', 'day_sat' => 'Y', 'day_sun' => 'Y'));
19
 
20
  $schedule_id = $wpdb->insert_id;
21
  $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $edit_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
@@ -47,21 +47,15 @@ if($ad_edit_id) {
47
  if(strlen($edit_banner->bannercode) < 1 AND $edit_banner->type != 'empty')
48
  echo '<div class="error"><p>'. __('The AdCode cannot be empty!', 'adrotate').'</p></div>';
49
 
50
- if(!preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->image != '')
51
- echo '<div class="error"><p>'. __('You did not use %image% in your AdCode but did select a file to use!', 'adrotate').'</p></div>';
52
-
53
- if(preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->image == '')
54
- echo '<div class="error"><p>'. __('You did use %image% in your AdCode but did not select a file to use!', 'adrotate').'</p></div>';
55
-
56
- if(!preg_match("/%image%/i", $edit_banner->bannercode) AND $edit_banner->responsive == 'Y')
57
- echo '<div class="error"><p>'. __('You did not use %image% in your AdCode. The responsive checkbox will be ineffective.', 'adrotate').'</p></div>';
58
 
59
  if((($edit_banner->imagetype != '' AND $edit_banner->image == '') OR ($edit_banner->imagetype == '' AND $edit_banner->image != '')))
60
  echo '<div class="error"><p>'. __('There is a problem saving the image. Please reset your image and re-save the ad!', 'adrotate').'</p></div>';
61
 
62
- if(strlen($edit_banner->image) > 0 AND !preg_match("/full/", $edit_banner->image) AND $edit_banner->responsive == 'Y')
63
- echo '<div class="error"><p>'. __('Responsive is enabled but your banner image has the wrong name.', 'adrotate').'</p></div>';
64
-
65
  if(!preg_match_all('/<(a|script|embed|iframe)[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($edit_banner->bannercode, ENT_QUOTES)), $things) AND $edit_banner->tracker == 'Y')
66
  echo '<div class="error"><p>'. __("Tracking is enabled but no valid link/tag was found in the adcode!", 'adrotate').'</p></div>';
67
 
@@ -125,15 +119,15 @@ if($edit_banner->imagetype == "field") {
125
  </td>
126
  <td width="30%">
127
  <p><strong><?php _e('Basic Examples:', 'adrotate'); ?></strong></p>
128
- <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;http://www.adrotateforwordpress.com&quot;&gt;&lt;img src=&quot;%image%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="http://www.adrotateforwordpress.com"&gt;&lt;img src="%image%" /&gt;&lt;/a&gt;</a></em></p>
129
  <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;span class=&quot;ad-%id%&quot;&gt;&lt;a href=&quot;http://www.adrotateforwordpress.com&quot;&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;');return false;">&lt;span class="ad-%id%"&gt;&lt;a href="http://www.adrotateforwordpress.com"&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;</a></em></p>
130
- <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;iframe src=&quot;%image%&quot; height=&quot;250&quot; frameborder=&quot;0&quot; style=&quot;border:none;&quot;&gt;&lt;/iframe&gt;');return false;">&lt;iframe src=&quot;%image%&quot; height=&quot;250&quot; frameborder=&quot;0&quot; style=&quot;border:none;&quot;&gt;&lt;/iframe&gt;</a></em></p>
131
  </td>
132
  </tr>
133
  <tr>
134
  <th valign="top"><?php _e('Useful tags', 'adrotate'); ?></th>
135
  <td colspan="2">
136
- <p><em><a href="#" title="<?php _e('Insert the advert ID Number.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%id%');return false;">%id%</a>, <a href="#" title="<?php _e('Required when selecting a image below.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%image%');return false;">%image%</a>, <a href="#" title="<?php _e('Insert the advert name.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%title%');return false;">%title%</a>, <a href="#" title="<?php _e('Insert a random seed. Useful for DFP/DoubleClick type adverts.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%random%');return false;">%random%</a>, <a href="#" title="<?php _e('Add inside the <a> tag to open advert in a new window.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','target=&quot;_blank&quot;');return false;">target="_blank"</a>, <a href="#" title="<?php _e('Add inside the <a> tag to tell crawlers to ignore this link', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','rel=&quot;nofollow&quot;');return false;">rel="nofollow"</a></em><br /><?php _e('Place the cursor in your AdCode where you want to add any of these tags and click to add it.', 'adrotate'); ?></p>
137
  </td>
138
  </tr>
139
  <?php if($edit_banner->type != 'empty') { ?>
@@ -159,7 +153,7 @@ if($edit_banner->imagetype == "field") {
159
  <?php echo adrotate_folder_contents($image_dropdown); ?>
160
  </select><br />
161
  </label>
162
- <em><?php _e('Use %image% in the adcode instead of the file path.', 'adrotate'); ?> <?php _e('Use either the text field or the dropdown. If the textfield has content that field has priority.', 'adrotate'); ?></em>
163
  </td>
164
  </tr>
165
  <?php if($adrotate_config['stats'] > 0) { ?>
@@ -197,7 +191,7 @@ if($edit_banner->imagetype == "field") {
197
  <tbody>
198
  <tr>
199
  <th width="15%"><?php _e('Widget', 'adrotate'); ?></th>
200
- <td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Single Ad" and enter ID', 'adrotate'); ?> "<?php echo $edit_banner->id; ?>".</td>
201
  </tr>
202
  <tr>
203
  <th width="15%"><?php _e('In a post or page', 'adrotate'); ?></th>
@@ -292,29 +286,57 @@ if($edit_banner->imagetype == "field") {
292
  <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
293
  </p>
294
 
295
- <h3><?php _e('Advanced', 'adrotate'); ?></h3>
296
- <p><em><?php _e('Everything below is optional.', 'adrotate'); ?></em></p>
297
  <table class="widefat" style="margin-top: .5em">
 
298
  <tbody>
299
- <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
300
  <th width="15%" valign="top"><?php _e('Mobile', 'adrotate'); ?></th>
301
- <td colspan="3">
302
- <?php _e('Show on;', 'adrotate'); ?>&nbsp;&nbsp;<label for="adrotate_desktop"><input disabled type="checkbox" name="adrotate_desktop" checked="checked" /><?php _e('Computers', 'adrotate'); ?></label>&nbsp;&nbsp;<label for="adrotate_mobile"><input disabled type="checkbox" name="adrotate_mobile" checked="checked" /><?php _e('Smartphones', 'adrotate'); ?></label>&nbsp;&nbsp;<label for="adrotate_tablet"><input disabled type="checkbox" name="adrotate_tablet" checked="checked" /><?php _e('Tablets.', 'adrotate'); ?></label><br />
303
- <em><?php _e('Also enable mobile support in the group this advert goes in.', 'adrotate'); ?></em>
304
  </td>
305
- </tr>
306
- <tr>
307
- <th width="15%" valign="top"><?php _e('Responsive', 'adrotate'); ?></th>
308
- <td colspan="3">
309
- <label for="adrotate_responsive"><input tabindex="22" type="checkbox" name="adrotate_responsive" <?php if($edit_banner->responsive == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Enable responsive support for this advert.', 'adrotate'); ?></label><br />
310
- <em><?php _e('Upload your images to the banner folder and make sure the filename is in the following format; "imagename.full.ext".', 'adrotate'); ?></em><br />
311
- <em><?php _e('For smaller size images use ".320", ".480", ".768" or ".1024" in the filename instead of ".full" for the various viewports.', 'adrotate'); ?></em><br />
312
- <em><strong><?php _e('Note:', 'adrotate'); ?></strong> <?php _e('This feature will not be developed any further. Consider switching to the Mobile feature in AdRotate Pro as seen above!', 'adrotate'); ?></em></label>
313
  </td>
314
- </tr>
315
- <tr>
 
 
 
 
 
 
316
  <th><?php _e('Sortorder', 'adrotate'); ?></th>
317
- <td colspan="3">
318
  <label for="adrotate_sortorder"><input tabindex="23" name="adrotate_sortorder" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $edit_banner->sortorder;?>" /> <em><?php _e('For administrative purposes set a sortorder.', 'adrotate'); ?> <?php _e('Leave empty or 0 to skip this. Will default to ad id.', 'adrotate'); ?></em></label>
319
  </td>
320
  </tr>
@@ -371,7 +393,7 @@ if($edit_banner->imagetype == "field") {
371
  <tbody>
372
  <tr>
373
  <th width="15%"><?php _e('Widget', 'adrotate'); ?></th>
374
- <td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar you want it in, select "Single Ad" and enter ID', 'adrotate'); ?> "<?php echo $edit_banner->id; ?>".</td>
375
  </tr>
376
  <tr>
377
  <th width="15%"><?php _e('In a post or page', 'adrotate'); ?></th>
15
  $wpdb->insert($wpdb->prefix."adrotate", array('title' => '', 'bannercode' => '', 'thetime' => $now, 'updated' => $now, 'author' => $userdata->user_login, 'imagetype' => 'dropdown', 'image' => '', 'tracker' => 'N', 'desktop' => 'Y', 'mobile' => 'Y', 'tablet' => 'Y', 'responsive' => 'N', 'type' => 'empty', 'weight' => 6, 'sortorder' => 0, 'budget' => 0, 'crate' => 0, 'irate' => 0, 'cities' => serialize(array()), 'countries' => serialize(array())));
16
  $edit_id = $wpdb->insert_id;
17
 
18
+ $wpdb->insert($wpdb->prefix.'adrotate_schedule', array('name' => 'Schedule for ad '.$edit_id, 'starttime' => $now, 'stoptime' => $in84days, 'maxclicks' => 0, 'maximpressions' => 0, 'spread' => 'N', 'hourimpressions' => 0, 'daystarttime' => '0000', 'daystoptime' => '0000', 'day_mon' => 'Y', 'day_tue' => 'Y', 'day_wed' => 'Y', 'day_thu' => 'Y', 'day_fri' => 'Y', 'day_sat' => 'Y', 'day_sun' => 'Y'));
19
 
20
  $schedule_id = $wpdb->insert_id;
21
  $wpdb->insert($wpdb->prefix.'adrotate_linkmeta', array('ad' => $edit_id, 'group' => 0, 'user' => 0, 'schedule' => $schedule_id));
47
  if(strlen($edit_banner->bannercode) < 1 AND $edit_banner->type != 'empty')
48
  echo '<div class="error"><p>'. __('The AdCode cannot be empty!', 'adrotate').'</p></div>';
49
 
50
+ if(!preg_match("/(%image%|%asset%)/i", $edit_banner->bannercode, $things) AND $edit_banner->image != '')
51
+ echo '<div class="error"><p>'. __('You did not use %asset% (or %image%) in your AdCode but did select a file to use!', 'adrotate-pro').'</p></div>';
52
+
53
+ if(preg_match("/(%image%|%asset%)/i", $edit_banner->bannercode, $things) AND $edit_banner->image == '')
54
+ echo '<div class="error"><p>'. __('You did use %asset% (or %image%) in your AdCode but did not select a file to use!', 'adrotate-pro').'</p></div>';
 
 
 
55
 
56
  if((($edit_banner->imagetype != '' AND $edit_banner->image == '') OR ($edit_banner->imagetype == '' AND $edit_banner->image != '')))
57
  echo '<div class="error"><p>'. __('There is a problem saving the image. Please reset your image and re-save the ad!', 'adrotate').'</p></div>';
58
 
 
 
 
59
  if(!preg_match_all('/<(a|script|embed|iframe)[^>](.*?)>/i', stripslashes(htmlspecialchars_decode($edit_banner->bannercode, ENT_QUOTES)), $things) AND $edit_banner->tracker == 'Y')
60
  echo '<div class="error"><p>'. __("Tracking is enabled but no valid link/tag was found in the adcode!", 'adrotate').'</p></div>';
61
 
119
  </td>
120
  <td width="30%">
121
  <p><strong><?php _e('Basic Examples:', 'adrotate'); ?></strong></p>
122
+ <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;a href=&quot;http://www.adrotateforwordpress.com&quot;&gt;&lt;img src=&quot;%asset%&quot; /&gt;&lt;/a&gt;');return false;">&lt;a href="http://www.adrotateforwordpress.com"&gt;&lt;img src="%asset%" /&gt;&lt;/a&gt;</a></em></p>
123
  <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;span class=&quot;ad-%id%&quot;&gt;&lt;a href=&quot;http://www.adrotateforwordpress.com&quot;&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;');return false;">&lt;span class="ad-%id%"&gt;&lt;a href="http://www.adrotateforwordpress.com"&gt;Text Link Ad!&lt;/a&gt;&lt;/span&gt;</a></em></p>
124
+ <p><em><a href="#" onclick="textatcursor('adrotate_bannercode','&lt;iframe src=&quot;%asset%&quot; height=&quot;250&quot; frameborder=&quot;0&quot; style=&quot;border:none;&quot;&gt;&lt;/iframe&gt;');return false;">&lt;iframe src=&quot;%asset%&quot; height=&quot;250&quot; frameborder=&quot;0&quot; style=&quot;border:none;&quot;&gt;&lt;/iframe&gt;</a></em></p>
125
  </td>
126
  </tr>
127
  <tr>
128
  <th valign="top"><?php _e('Useful tags', 'adrotate'); ?></th>
129
  <td colspan="2">
130
+ <p><em><a href="#" title="<?php _e('Insert the advert ID Number.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%id%');return false;">%id%</a>, <a href="#" title="<?php _e('Required when selecting a asset below.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%asset%');return false;">%asset%</a>, <a href="#" title="<?php _e('Insert the advert name.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%title%');return false;">%title%</a>, <a href="#" title="<?php _e('Insert a random seed. Useful for DFP/DoubleClick type adverts.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','%random%');return false;">%random%</a>, <a href="#" title="<?php _e('Add inside the <a> tag to open advert in a new window.', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','target=&quot;_blank&quot;');return false;">target="_blank"</a>, <a href="#" title="<?php _e('Add inside the <a> tag to tell crawlers to ignore this link', 'adrotate'); ?>" onclick="textatcursor('adrotate_bannercode','rel=&quot;nofollow&quot;');return false;">rel="nofollow"</a></em><br /><?php _e('Place the cursor in your AdCode where you want to add any of these tags and click to add it.', 'adrotate'); ?></p>
131
  </td>
132
  </tr>
133
  <?php if($edit_banner->type != 'empty') { ?>
153
  <?php echo adrotate_folder_contents($image_dropdown); ?>
154
  </select><br />
155
  </label>
156
+ <em><?php _e('Use %asset% in the adcode instead of the file path.', 'adrotate'); ?> <?php _e('Use either the text field or the dropdown. If the textfield has content that field has priority.', 'adrotate'); ?></em>
157
  </td>
158
  </tr>
159
  <?php if($adrotate_config['stats'] > 0) { ?>
191
  <tbody>
192
  <tr>
193
  <th width="15%"><?php _e('Widget', 'adrotate'); ?></th>
194
+ <td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar where you want to place the advert and select the advert or the group the advert is in.', 'adrotate'); ?></td>
195
  </tr>
196
  <tr>
197
  <th width="15%"><?php _e('In a post or page', 'adrotate'); ?></th>
286
  <a href="admin.php?page=adrotate-ads&view=manage" class="button"><?php _e('Cancel', 'adrotate'); ?></a>
287
  </p>
288
 
289
+ <h2><?php _e('Advanced', 'adrotate'); ?></h2>
290
+ <p><em><?php _e('Everything below is optional.', 'adrotate'); ?> <?php _e('Available in AdRotate Pro!', 'adrotate'); ?></em></p>
291
  <table class="widefat" style="margin-top: .5em">
292
+
293
  <tbody>
294
+ <tr>
295
+ <th width="15%" valign="top"><?php _e('Weight', 'adrotate'); ?></th>
296
+ <td width="17%">
297
+ <label for="adrotate_weight">
298
+ <center><input type="radio" disabled name="adrotate_weight" value="2" /><br /><?php _e('Few impressions', 'adrotate'); ?></center>
299
+ </label>
300
+ </td>
301
+ <td width="17%">
302
+ <label for="adrotate_weight">
303
+ <center><input type="radio" disabled name="adrotate_weight" value="4" /><br /><?php _e('Less than average', 'adrotate'); ?></center>
304
+ </label>
305
+ </td>
306
+ <td width="17%">
307
+ <label for="adrotate_weight">
308
+ <center><input type="radio" disabled name="adrotate_weight" value="6" checked="1" /><br /><?php _e('Normal impressions', 'adrotate'); ?></center>
309
+ </label>
310
+ </td>
311
+ <td width="17%">
312
+ <label for="adrotate_weight">
313
+ <center><input type="radio" disabled name="adrotate_weight" value="8" /><br /><?php _e('More than average', 'adrotate'); ?></center>
314
+ </label>
315
+ </td>
316
+ <td>
317
+ <label for="adrotate_weight">
318
+ <center><input type="radio" disabled name="adrotate_weight" value="10" /><br /><?php _e('Many impressions', 'adrotate'); ?>
319
+ </label>
320
+ </td>
321
+ </tr>
322
+ <tr>
323
  <th width="15%" valign="top"><?php _e('Mobile', 'adrotate'); ?></th>
324
+ <td>
325
+ <label for="adrotate_desktop"><center><input disabled type="checkbox" name="adrotate_desktop" checked="1" /><br /><?php _e('Computers', 'adrotate'); ?></center></label>
 
326
  </td>
327
+ <td>
328
+ <label for="adrotate_mobile"><center><input disabled type="checkbox" name="adrotate_mobile" checked="1" /><br /><?php _e('Smartphones', 'adrotate'); ?></center></label>
 
 
 
 
 
 
329
  </td>
330
+ <td>
331
+ <label for="adrotate_tablet"><center><input disabled type="checkbox" name="adrotate_tablet" checked="1" /><br /><?php _e('Tablets', 'adrotate'); ?></center></label>
332
+ </td>
333
+ <td colspan="2">
334
+ <em><?php _e('Also enable mobile support in the group this advert goes in or these are ignored.', 'adrotate'); ?></em>
335
+ </td>
336
+ </tr>
337
+ <tr>
338
  <th><?php _e('Sortorder', 'adrotate'); ?></th>
339
+ <td colspan="5">
340
  <label for="adrotate_sortorder"><input tabindex="23" name="adrotate_sortorder" type="text" size="5" class="search-input" autocomplete="off" value="<?php echo $edit_banner->sortorder;?>" /> <em><?php _e('For administrative purposes set a sortorder.', 'adrotate'); ?> <?php _e('Leave empty or 0 to skip this. Will default to ad id.', 'adrotate'); ?></em></label>
341
  </td>
342
  </tr>
393
  <tbody>
394
  <tr>
395
  <th width="15%"><?php _e('Widget', 'adrotate'); ?></th>
396
+ <td colspan="3"><?php _e('Drag the AdRotate widget to the sidebar where you want to place the advert and select the advert or the group the advert is in.', 'adrotate'); ?></td>
397
  </tr>
398
  <tr>
399
  <th width="15%"><?php _e('In a post or page', 'adrotate'); ?></th>
dashboard/publisher/adverts-report.php CHANGED
@@ -53,9 +53,9 @@ if(empty($stats_graph_month['clicks'])) $stats_graph_month['clicks'] = 0;
53
  </th>
54
  </tr>
55
  <tr>
56
- <td width="33%"><div class="stats_large"><?php _e('Impressions', 'adrotate-pro'); ?><br /><div class="number_large"><?php echo $stats_graph_month['impressions']; ?></div></div></td>
57
- <td width="33%"><div class="stats_large"><?php _e('Clicks', 'adrotate-pro'); ?><br /><div class="number_large"><?php if($banner->tracker == "Y") { echo $stats_graph_month['clicks']; } else { echo '--'; } ?></div></div></td>
58
- <td width="34%"><div class="stats_large"><?php _e('CTR', 'adrotate-pro'); ?><br /><div class="number_large"><?php if($banner->tracker == "Y") { echo $ctr_graph_month.' %'; } else { echo '--'; } ?></div></div></td>
59
  </tr>
60
  </tbody>
61
 
53
  </th>
54
  </tr>
55
  <tr>
56
+ <td width="33%"><div class="stats_large"><?php _e('Impressions', 'adrotate'); ?><br /><div class="number_large"><?php echo $stats_graph_month['impressions']; ?></div></div></td>
57
+ <td width="33%"><div class="stats_large"><?php _e('Clicks', 'adrotate'); ?><br /><div class="number_large"><?php if($banner->tracker == "Y") { echo $stats_graph_month['clicks']; } else { echo '--'; } ?></div></div></td>
58
+ <td width="34%"><div class="stats_large"><?php _e('CTR', 'adrotate'); ?><br /><div class="number_large"><?php if($banner->tracker == "Y") { echo $ctr_graph_month.' %'; } else { echo '--'; } ?></div></div></td>
59
  </tr>
60
  </tbody>
61
 
dashboard/publisher/groups-edit.php CHANGED
@@ -47,10 +47,6 @@ if(!is_array($meta_array)) $meta_array = array();
47
 
48
  <table class="widefat" style="margin-top: .5em">
49
  <tbody>
50
- <tr>
51
- <th width="15%"><?php _e('ID', 'adrotate'); ?></th>
52
- <td colspan="2"><?php echo $edit_group->id; ?></td>
53
- </tr>
54
  <tr>
55
  <th width="15%"><?php _e('Name', 'adrotate'); ?></th>
56
  <td colspan="2">
47
 
48
  <table class="widefat" style="margin-top: .5em">
49
  <tbody>
 
 
 
 
50
  <tr>
51
  <th width="15%"><?php _e('Name', 'adrotate'); ?></th>
52
  <td colspan="2">
dashboard/publisher/groups-report.php CHANGED
@@ -54,9 +54,9 @@ if(empty($stats_graph_month['clicks'])) $stats_graph_month['clicks'] = 0;
54
  </th>
55
  </tr>
56
  <tr>
57
- <td width="33%"><div class="stats_large"><?php _e('Impressions', 'adrotate-pro'); ?><br /><div class="number_large"><?php echo $stats_graph_month['impressions']; ?></div></div></td>
58
- <td width="33%"><div class="stats_large"><?php _e('Clicks', 'adrotate-pro'); ?><br /><div class="number_large"><?php echo $stats_graph_month['clicks']; ?></div></div></td>
59
- <td width="34%"><div class="stats_large"><?php _e('CTR', 'adrotate-pro'); ?><br /><div class="number_large"><?php echo $ctr_graph_month; ?> %</div></div></td>
60
  </tr>
61
  </tbody>
62
 
54
  </th>
55
  </tr>
56
  <tr>
57
+ <td width="33%"><div class="stats_large"><?php _e('Impressions', 'adrotate'); ?><br /><div class="number_large"><?php echo $stats_graph_month['impressions']; ?></div></div></td>
58
+ <td width="33%"><div class="stats_large"><?php _e('Clicks', 'adrotate'); ?><br /><div class="number_large"><?php echo $stats_graph_month['clicks']; ?></div></div></td>
59
+ <td width="34%"><div class="stats_large"><?php _e('CTR', 'adrotate'); ?><br /><div class="number_large"><?php echo $ctr_graph_month; ?> %</div></div></td>
60
  </tr>
61
  </tbody>
62
 
dashboard/settings/advertisers.php CHANGED
@@ -9,32 +9,47 @@
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
- <h3><?php _e('Advertisers - Available in AdRotate Pro', 'adrotate'); ?></h3>
 
 
 
 
13
  <span class="description"><?php _e('Enable advertisers so they can review and manage their own ads.', 'adrotate'); ?></span>
14
  <table class="form-table">
15
  <tr>
16
  <th valign="top"><?php _e('Enable Advertisers', 'adrotate'); ?></th>
17
  <td>
18
- <label for="adrotate_enable_advertisers"><input type="checkbox" name="adrotate_enable_advertisers_disabled" disabled /> <?php _e('Allow adverts to be coupled to users (Advertisers).', 'adrotate'); ?></label>
19
  </td>
20
  </tr>
21
  <tr>
22
  <th valign="top"><?php _e('Edit/update adverts', 'adrotate'); ?></th>
23
  <td>
24
- <label for="adrotate_enable_editing"><input type="checkbox" name="adrotate_enable_editing_disabled" disabled /> <?php _e('Allow advertisers to add new or edit their adverts.', 'adrotate'); ?></label>
 
 
 
 
 
 
25
  </td>
26
  </tr>
27
  <tr>
28
  <th valign="top"><?php _e('Geo Targeting', 'adrotate'); ?></th>
29
  <td>
30
- <input type="checkbox" name="adrotate_enable_geo_advertisers_disabled" disabled /> <?php _e('Allow advertisers to specify where their ads will show. Geo Targeting has to be enabled, too.', 'adrotate'); ?>
31
  </td>
32
  </tr>
33
  <tr>
34
  <th valign="top"><?php _e('Advertiser role', 'adrotate'); ?></th>
35
  <td>
36
- <label for="adrotate_role"><input type="checkbox" name="adrotate_role_disabled" disabled /> <?php _e('Create a seperate user role for your advertisers.', 'adrotate'); ?></label><br />
37
  <span class="description"><?php _e('Don\'t forget to give these users access to their advertiser dashboard via the Roles tab.', 'adrotate'); ?></span>
38
  </td>
39
  </tr>
40
- </table>
 
 
 
 
 
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
+ <form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings&tab=advertisers">
13
+ <?php wp_nonce_field('adrotate_settings','adrotate_nonce_settings'); ?>
14
+ <input type="hidden" name="adrotate_settings_tab" value="<?php echo $active_tab; ?>" />
15
+
16
+ <h2><?php _e('Advertisers - Available in AdRotate Pro', 'adrotate'); ?></h2>
17
  <span class="description"><?php _e('Enable advertisers so they can review and manage their own ads.', 'adrotate'); ?></span>
18
  <table class="form-table">
19
  <tr>
20
  <th valign="top"><?php _e('Enable Advertisers', 'adrotate'); ?></th>
21
  <td>
22
+ <label for="adrotate_enable_advertisers"><input type="checkbox" name="adrotate_enable_advertisers_disabled" disabled="1" /> <?php _e('Allow adverts to be coupled to users (Advertisers).', 'adrotate'); ?></label>
23
  </td>
24
  </tr>
25
  <tr>
26
  <th valign="top"><?php _e('Edit/update adverts', 'adrotate'); ?></th>
27
  <td>
28
+ <label for="adrotate_enable_editing"><input type="checkbox" name="adrotate_enable_editing_disabled" disabled="1" /> <?php _e('Allow advertisers to add new or edit their adverts.', 'adrotate'); ?></label>
29
+ </td>
30
+ </tr>
31
+ <tr>
32
+ <th valign="top"><?php _e('Mobile adverts', 'adrotate'); ?></th>
33
+ <td>
34
+ <input type="checkbox" name="adrotate_enable_mobile_advertisers_disabled" disabled="1" /> <?php _e('Allow advertisers to specify on which devices their ads will show.', 'adrotate'); ?>
35
  </td>
36
  </tr>
37
  <tr>
38
  <th valign="top"><?php _e('Geo Targeting', 'adrotate'); ?></th>
39
  <td>
40
+ <input type="checkbox" name="adrotate_enable_geo_advertisers_disabled" disabled="1" /> <?php _e('Allow advertisers to specify where their ads will show. Geo Targeting has to be enabled, too.', 'adrotate'); ?>
41
  </td>
42
  </tr>
43
  <tr>
44
  <th valign="top"><?php _e('Advertiser role', 'adrotate'); ?></th>
45
  <td>
46
+ <label for="adrotate_role"><input type="checkbox" name="adrotate_role_disabled" disabled="1" /> <?php _e('Create a seperate user role for your advertisers.', 'adrotate'); ?></label><br />
47
  <span class="description"><?php _e('Don\'t forget to give these users access to their advertiser dashboard via the Roles tab.', 'adrotate'); ?></span>
48
  </td>
49
  </tr>
50
+ </table>
51
+
52
+ <p class="submit">
53
+ <input type="submit" name="adrotate_save_options" class="button-primary" value="<?php _e('Update Options', 'adrotate'); ?>" />
54
+ </p>
55
+ </form>
dashboard/settings/general.php CHANGED
@@ -9,7 +9,12 @@
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
- <h3><?php _e('General Settings', 'adrotate'); ?></h3>
 
 
 
 
 
13
  <span class="description"><?php _e('General settings for AdRotate.', 'adrotate'); ?> <?php _e('Some options are only available in AdRotate Pro!', 'adrotate'); ?></span>
14
  <table class="form-table">
15
  <tr>
@@ -21,7 +26,7 @@
21
  <td><label for="adrotate_live_preview"><input type="checkbox" name="adrotate_live_preview" disabled checked /><?php _e('Enable this option if you have faulty adverts that overflow their designated area while creating/editing adverts.', 'adrotate'); ?></label></td>
22
  </tr>
23
  <tr>
24
- <th valign="top"><?php _e('Disable dynamic mode', 'adrotate-pro'); ?></th>
25
  <td><label for="adrotate_mobile_dynamic_mode"><input type="checkbox" name="adrotate_mobile_dynamic_mode" <?php if($adrotate_config['mobile_dynamic_mode'] == 'Y') { ?>checked="checked" <?php } ?> /><?php _e('Enable this option to disable dynamic mode in groups for mobile devices if you notice skipping or jumpy content.', 'adrotate'); ?></label></td>
26
  </tr>
27
  <tr>
@@ -47,7 +52,7 @@
47
  <tr>
48
  <th valign="top"><?php _e('Location', 'adrotate'); ?></th>
49
  <td>
50
- <label for="adrotate_banner_folder"><?php echo site_url(); ?>/<input name="adrotate_banner_folder_disabled" type="text" class="search-input" size="30" value="wp-content/banners/" disabled /> <?php _e('(Default: wp-content/banners/).', 'adrotate'); ?><br />
51
  <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 />
52
  <?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>
53
  </td>
@@ -60,11 +65,16 @@
60
  <tr>
61
  <th valign="top"><?php _e('User-Agent Filter', 'adrotate'); ?></th>
62
  <td>
63
- <textarea name="adrotate_crawlers" cols="90" rows="15"><?php echo $crawlers; ?></textarea><br />
64
  <span class="description"><?php _e('A comma separated list of keywords. Filter out bots/crawlers/user-agents.', 'adrotate'); ?><br />
65
  <?php _e('Keep in mind that this might give false positives. The word \'fire\' also matches \'firefox\', but not vice-versa. So be careful!', 'adrotate'); ?><br />
66
  <?php _e('Only words with alphanumeric characters and [ - _ ] are allowed. All other characters are stripped out.', 'adrotate'); ?><br />
67
  <?php _e('Additionally to the list specified here, empty User-Agents are blocked as well.', 'adrotate'); ?> (<?php _e('Learn more about', 'adrotate'); ?> <a href="http://en.wikipedia.org/wiki/User_agent" title="User Agents" target="_blank"><?php _e('user-agents', 'adrotate'); ?></a>.)</span>
68
  </td>
69
  </tr>
70
- </table>
 
 
 
 
 
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
+
13
+ <form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings&tab=general">
14
+ <?php wp_nonce_field('adrotate_settings','adrotate_nonce_settings'); ?>
15
+ <input type="hidden" name="adrotate_settings_tab" value="<?php echo $active_tab; ?>" />
16
+
17
+ <h2><?php _e('General Settings', 'adrotate'); ?></h2>
18
  <span class="description"><?php _e('General settings for AdRotate.', 'adrotate'); ?> <?php _e('Some options are only available in AdRotate Pro!', 'adrotate'); ?></span>
19
  <table class="form-table">
20
  <tr>
26
  <td><label for="adrotate_live_preview"><input type="checkbox" name="adrotate_live_preview" disabled checked /><?php _e('Enable this option if you have faulty adverts that overflow their designated area while creating/editing adverts.', 'adrotate'); ?></label></td>
27
  </tr>
28
  <tr>
29
+ <th valign="top"><?php _e('Disable dynamic mode', 'adrotate'); ?></th>
30
  <td><label for="adrotate_mobile_dynamic_mode"><input type="checkbox" name="adrotate_mobile_dynamic_mode" <?php if($adrotate_config['mobile_dynamic_mode'] == 'Y') { ?>checked="checked" <?php } ?> /><?php _e('Enable this option to disable dynamic mode in groups for mobile devices if you notice skipping or jumpy content.', 'adrotate'); ?></label></td>
31
  </tr>
32
  <tr>
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>
65
  <tr>
66
  <th valign="top"><?php _e('User-Agent Filter', 'adrotate'); ?></th>
67
  <td>
68
+ <textarea name="adrotate_crawlers" cols="90" rows="10"><?php echo $crawlers; ?></textarea><br />
69
  <span class="description"><?php _e('A comma separated list of keywords. Filter out bots/crawlers/user-agents.', 'adrotate'); ?><br />
70
  <?php _e('Keep in mind that this might give false positives. The word \'fire\' also matches \'firefox\', but not vice-versa. So be careful!', 'adrotate'); ?><br />
71
  <?php _e('Only words with alphanumeric characters and [ - _ ] are allowed. All other characters are stripped out.', 'adrotate'); ?><br />
72
  <?php _e('Additionally to the list specified here, empty User-Agents are blocked as well.', 'adrotate'); ?> (<?php _e('Learn more about', 'adrotate'); ?> <a href="http://en.wikipedia.org/wiki/User_agent" title="User Agents" target="_blank"><?php _e('user-agents', 'adrotate'); ?></a>.)</span>
73
  </td>
74
  </tr>
75
+ </table>
76
+
77
+ <p class="submit">
78
+ <input type="submit" name="adrotate_save_options" class="button-primary" value="<?php _e('Update Options', 'adrotate'); ?>" />
79
+ </p>
80
+ </form>
dashboard/settings/geotargeting.php CHANGED
@@ -9,23 +9,36 @@
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
- <h3><?php _e('Geo Targeting - Available in AdRotate Pro', 'adrotate'); ?></h3>
 
 
 
 
 
13
  <span class="description"><?php _e('Target certain areas in the world for better advertising oppurtunities.', 'adrotate'); ?></span>
14
  <table class="form-table">
15
  <tr>
16
  <th valign="top"><?php _e('Which Geo Service', 'adrotate'); ?></th>
17
  <td>
18
  <select name="adrotate_enable_geo_disabled">
19
- <option value="0" disabled><?php _e('Disabled', 'adrotate'); ?></option>
20
- <option value="0" disabled>AdRotate Geo</option>
21
- <option value="0" disabled>MaxMind City (Recommended)</option>
22
- <option value="0" disabled>MaxMind Country</option>
 
23
  </select><br />
24
  <span class="description">
25
- <strong>MaxMind</strong> - <a href="https://www.maxmind.com/en/geoip2-precision-services?rId=ajdgnet" target="_blank">GeoIP2 Precision</a> - <?php _e('The most complete and accurate geo targeting you can get for only $20 USD per 50000 lookups.', 'adrotate'); ?> <a href="https://www.maxmind.com/en/geoip2-precision-city?rId=ajdgnet" target="_blank"><?php _e('Buy now', 'adrotate'); ?>.</a><br />
26
- <em><strong>Supports:</strong> Countries, States, State ISO codes, Cities and DMA codes.</em><br /><br />
27
- <strong>AdRotate Geo</strong> - <?php _e('Free lookups every day, uses GeoLite2 databases from MaxMind!', 'adrotate'); ?><br />
28
- <em><strong>Supports:</strong> Countries, Cities, DMA codes, States and State ISO codes.</em><br /><br />
 
 
 
 
 
 
 
29
  </span>
30
  </td>
31
  </tr>
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
+
13
+ <form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings&tab=geo">
14
+ <?php wp_nonce_field('adrotate_settings','adrotate_nonce_settings'); ?>
15
+ <input type="hidden" name="adrotate_settings_tab" value="<?php echo $active_tab; ?>" />
16
+
17
+ <h2><?php _e('Geo Targeting - Available in AdRotate Pro', 'adrotate'); ?></h2>
18
  <span class="description"><?php _e('Target certain areas in the world for better advertising oppurtunities.', 'adrotate'); ?></span>
19
  <table class="form-table">
20
  <tr>
21
  <th valign="top"><?php _e('Which Geo Service', 'adrotate'); ?></th>
22
  <td>
23
  <select name="adrotate_enable_geo_disabled">
24
+ <option value="0" disabled="1"><?php _e('Disabled', 'adrotate'); ?></option>
25
+ <option value="0" disabled="1">AdRotate Geo</option>
26
+ <option value="0" disabled="1">MaxMind City (Recommended)</option>
27
+ <option value="0" disabled="1">MaxMind Country</option>
28
+ <option value="0" disabled="1">CloudFlare (<?php _e('Experimental', 'adrotate'); ?>)</option>
29
  </select><br />
30
  <span class="description">
31
+ <p><strong>AdRotate Geo</strong> - <?php _e('30000 free lookups every day, uses GeoLite2 databases from MaxMind!', 'adrotate'); ?><br />
32
+ <em><strong><?php _e('Supports:', 'adrotate'); ?></strong> ipv4/ipv6, Countries, Cities, DMA codes, States and State ISO (3166-2) codes.</em><br />
33
+ <em><strong><?php _e('Scalability:', 'adrotate'); ?></strong> <?php _e('Suitable for small to medium websites.', 'adrotate'); ?></em><br /><br />
34
+
35
+ <strong>MaxMind</strong> - <a href="https://www.maxmind.com/en/geoip2-precision-services?rId=ajdgnet" target="_blank">GeoIP2 Precision</a> - <?php _e('The most accurate geo targeting you can get for only $20 USD per 50000 lookups.', 'adrotate'); ?> <a href="https://www.maxmind.com/en/geoip2-precision-city?rId=ajdgnet" target="_blank"><?php _e('Buy now', 'adrotate'); ?>.</a><br />
36
+ <em><strong><?php _e('Supports:', 'adrotate'); ?></strong> ipv4/ipv6, Countries, States, State ISO (3166-2) codes, Cities and DMA codes.</em><br />
37
+ <em><strong><?php _e('Scalability:', 'adrotate'); ?></strong> <?php _e('Suitable for any size website as long as you have lookups.', 'adrotate'); ?></em><br /><br />
38
+
39
+ <strong>CloudFlare</strong> - <a href="https://support.cloudflare.com/hc/en-us/articles/200168236-What-does-CloudFlare-IP-Geolocation-do-" target="_blank">IP Geolocation</a> - <?php _e('Basic geolocation included in every CloudFlare account.', 'adrotate'); ?><br />
40
+ <em><strong><?php _e('Supports:', 'adrotate'); ?></strong> ipv4/ipv6, Countries.</em><br />
41
+ <em><strong><?php _e('Scalability:', 'adrotate'); ?></strong> <?php _e('Suitable for any size website.', 'adrotate'); ?></em><br /><br />
42
  </span>
43
  </td>
44
  </tr>
dashboard/settings/maintenance.php CHANGED
@@ -9,7 +9,11 @@
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
- <h3><?php _e('Maintenance', 'adrotate'); ?></h3>
 
 
 
 
13
  <span class="description"><?php _e('Use these functions when you notice your database is slow, unresponsive and sluggish.', 'adrotate'); ?></span>
14
  <table class="form-table">
15
  <tr>
@@ -55,29 +59,39 @@
55
  <h3><?php _e('Status and Versions', 'adrotate'); ?></h3>
56
  <table class="form-table">
57
  <tr>
58
- <td><?php _e('Current version:', 'adrotate'); ?> <?php echo $adrotate_version['current']; ?></td>
59
- <td><?php _e('Previous version:', 'adrotate'); ?> <?php echo $adrotate_version['previous']; ?></td>
60
- </tr>
61
- <tr>
62
- <td><?php _e('Current database version:', 'adrotate'); ?> <?php echo $adrotate_db_version['current']; ?></td>
63
- <td><?php _e('Previous database version:', 'adrotate'); ?> <?php echo $adrotate_db_version['previous']; ?></td>
64
  </tr>
65
  <tr>
66
- <td valign="top"><?php _e('Current status of adverts', 'adrotate'); ?></td>
67
- <td><?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>
68
- </tr>
69
- <tr>
70
- <td><?php _e('Banners/assets Folder', 'adrotate-pro'); ?></td>
71
  <td>
72
- <?php echo (is_writable(ABSPATH.'wp-content/banners/')) ? '<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>
76
- <td><?php _e('Ad evaluation next run:', 'adrotate'); ?></td>
77
- <td><?php if(!$adevaluate) _e('Not scheduled!', 'adrotate'); else echo date_i18n(get_option('date_format')." H:i", $adevaluate); ?></td>
 
 
78
  </tr>
 
 
 
 
 
79
  <tr>
80
- <td><?php _e('Clean Trackerdata next run:', 'adrotate'); ?></td>
81
- <td><?php if(!$adtracker) _e('Not scheduled!', 'adrotate'); else echo date_i18n(get_option('date_format')." H:i", $adtracker); ?></td>
 
 
82
  </tr>
83
  </table>
 
 
 
 
 
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
+ <form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings&tab=maintenance">
13
+ <?php wp_nonce_field('adrotate_settings','adrotate_nonce_settings'); ?>
14
+ <input type="hidden" name="adrotate_settings_tab" value="<?php echo $active_tab; ?>" />
15
+
16
+ <h2><?php _e('Maintenance', 'adrotate'); ?></h2>
17
  <span class="description"><?php _e('Use these functions when you notice your database is slow, unresponsive and sluggish.', 'adrotate'); ?></span>
18
  <table class="form-table">
19
  <tr>
59
  <h3><?php _e('Status and Versions', 'adrotate'); ?></h3>
60
  <table class="form-table">
61
  <tr>
62
+ <th valign="top"><?php _e('Current status of adverts', 'adrotate'); ?></th>
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>
76
+ <th width="15%"><?php _e('Advert evaluation', 'adrotate'); ?></th>
77
+ <td><?php if(!$adevaluate) '<span style="color:#CC2900;">'._e('Not scheduled! Re-activate the plugin from the plugins page.', 'adrotate-pro').'</span>'; else echo '<span style="color:#009900;">'.date_i18n(get_option('date_format')." H:i", $adevaluate).'</span>'; ?></td>
78
+ <th width="15%"><?php _e('Trackerdata cleanup', 'adrotate'); ?></th>
79
+ <td><?php if(!$adtracker) '<span style="color:#CC2900;">'._e('Not scheduled! Re-activate the plugin from the plugins page.', 'adrotate-pro').'</span>'; else echo '<span style="color:#009900;">'.date_i18n(get_option('date_format')." H:i", $adtracker).'</span>'; ?></td>
80
  </tr>
81
+ </table>
82
+
83
+ <h2><?php _e('Internal Versions', 'adrotate'); ?></h2>
84
+ <span class="description"><?php _e('Unless you experience database issues or a warning shows below, these numbers are not really relevant for troubleshooting. Support may ask for them to verify your database status.', 'adrotate'); ?></span>
85
+ <table class="form-table">
86
  <tr>
87
+ <th width="15%" valign="top"><?php _e('AdRotate version', 'adrotate'); ?></th>
88
+ <td><?php _e('Current:', 'adrotate'); ?> <?php echo '<span style="color:#009900;">'.$adrotate_version['current'].'</span>'; ?> <?php if($adrotate_version['current'] != ADROTATE_VERSION) { echo '<span style="color:#CC2900;">'; _e('Should be:', 'adrotate'); echo ' '.ADROTATE_VERSION; echo '</span>'; } ?><br /><?php _e('Previous:', 'adrotate'); ?> <?php echo $adrotate_version['previous']; ?></td>
89
+ <th width="15%" valign="top"><?php _e('Database version', 'adrotate'); ?></th>
90
+ <td><?php _e('Current:', 'adrotate'); ?> <?php echo '<span style="color:#009900;">'.$adrotate_db_version['current'].'</span>'; ?> <?php if($adrotate_version['current'] != ADROTATE_VERSION) { echo '<span style="color:#CC2900;">'; _e('Should be:', 'adrotate'); echo ' '.ADROTATE_DB_VERSION; echo '</span>'; } ?><br /><?php _e('Previous:', 'adrotate'); ?> <?php echo $adrotate_db_version['previous']; ?></td>
91
  </tr>
92
  </table>
93
+
94
+ <p class="submit">
95
+ <input type="submit" name="adrotate_save_options" class="button-primary" value="<?php _e('Update Options', 'adrotate'); ?>" />
96
+ </p>
97
+ </form>
dashboard/settings/misc.php CHANGED
@@ -9,7 +9,11 @@
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
- <h3><?php _e('Miscellaneous', 'adrotate'); ?></h3>
 
 
 
 
13
  <table class="form-table">
14
  <tr>
15
  <th valign="top"><?php _e('Widget alignment', 'adrotate'); ?></th>
@@ -34,3 +38,8 @@
34
  <td><span class="description"><?php _e('It may take a while for the ad to start rotating. The caching plugin needs to refresh the cache. This can take up to a week if not done manually.', 'adrotate'); ?> <?php _e('Caching support only works for [shortcodes] and the AdRotate Widget. If you use a PHP Snippet you need to wrap your PHP in the exclusion code yourself.', 'adrotate'); ?></span></td>
35
  </tr>
36
  </table>
 
 
 
 
 
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
+ <form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings&tab=misc">
13
+ <?php wp_nonce_field('adrotate_settings','adrotate_nonce_settings'); ?>
14
+ <input type="hidden" name="adrotate_settings_tab" value="<?php echo $active_tab; ?>" />
15
+
16
+ <h2><?php _e('Miscellaneous', 'adrotate'); ?></h2>
17
  <table class="form-table">
18
  <tr>
19
  <th valign="top"><?php _e('Widget alignment', 'adrotate'); ?></th>
38
  <td><span class="description"><?php _e('It may take a while for the ad to start rotating. The caching plugin needs to refresh the cache. This can take up to a week if not done manually.', 'adrotate'); ?> <?php _e('Caching support only works for [shortcodes] and the AdRotate Widget. If you use a PHP Snippet you need to wrap your PHP in the exclusion code yourself.', 'adrotate'); ?></span></td>
39
  </tr>
40
  </table>
41
+
42
+ <p class="submit">
43
+ <input type="submit" name="adrotate_save_options" class="button-primary" value="<?php _e('Update Options', 'adrotate'); ?>" />
44
+ </p>
45
+ </form>
dashboard/settings/notifications.php CHANGED
@@ -9,13 +9,19 @@
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
- <h3><?php _e('Notifications', 'adrotate'); ?></h3>
 
 
 
 
 
 
13
  <span class="description"><?php _e('Set up who gets notifications if ads need your attention.', 'adrotate'); ?></span>
14
  <table class="form-table">
15
  <tr>
16
- <th valign="top"><?php _e('How to notify', 'adrotate-pro'); ?></th>
17
  <td>
18
- <input type="checkbox" name="adrotate_notification_dash" <?php if($adrotate_notifications['notification_dash'] == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Dashboard banner.', 'adrotate-pro'); ?><br />
19
  <input type="checkbox" name="adrotate_notification_email_disabled" disabled /> <?php _e('Email message.', 'adrotate'); ?><br />
20
  <input type="checkbox" name="adrotate_notification_push_disabled" disabled /> <?php _e('Push notifications to your smartphone.', 'adrotate'); ?><br />
21
  <span class="description"><?php _e('Push notifications are delivered through Pushover, a notification service for Android and iOS', 'adrotate'); ?><br /><?php _e('The Pushover App is a one time purchase for either Android and/or iOS. More information can be found on the pushover website;', 'adrotate'); ?> <a href="http://www.pushover.net" target="_blank">pushover.net</a>.</span>
@@ -24,67 +30,82 @@
24
  <tr>
25
  <th scope="row" valign="top"><?php _e('Test notification', 'adrotate'); ?></th>
26
  <td>
27
- <input type="submit" name="adrotate_notification_test_submit_disabled" class="button-secondary" value="<?php _e('Test', 'adrotate-pro'); ?>" disabled /> <?php _e('Send a test notification to enabled methods. Before you test, save the options first!', 'adrotate-pro'); ?>
28
  </td>
29
  </tr>
30
  </table>
31
 
32
- <h3><?php _e('Dashboard', 'adrotate-pro'); ?></h3>
33
- <span class="description"><?php _e('These go in a dashboard banner visible to all users with access to AdRotate on every WordPress dashboard page.', 'adrotate-pro'); ?></span>
34
  <table class="form-table">
35
  <tr>
36
- <th valign="top"><?php _e('What', 'adrotate-pro'); ?></th>
37
  <td>
38
- <input type="checkbox" name="adrotate_notification_dash_expired" <?php if($adrotate_notifications['notification_dash_expired'] == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Expired adverts.', 'adrotate-pro'); ?><br />
39
- <input type="checkbox" name="adrotate_notification_dash_soon" <?php if($adrotate_notifications['notification_dash_soon'] == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Almost expired adverts.', 'adrotate-pro'); ?>
40
  </td>
41
  </tr>
42
  </table>
43
 
44
- <h3><?php _e('Email', 'adrotate'); ?> - <?php _e('Available in AdRotate Pro', 'adrotate'); ?></h3>
45
- <span class="description"><?php _e('Set up who gets notification emails.', 'adrotate'); ?></span>
46
  <table class="form-table">
 
 
 
 
 
 
 
 
 
 
 
47
  <tr>
48
  <th valign="top"><?php _e('Publishers', 'adrotate'); ?></th>
49
  <td>
50
- <textarea name="adrotate_notification_email_publisher" cols="50" rows="2" disabled><?php echo get_option('admin_email'); ?></textarea><br />
51
- <span class="description"><?php _e('A comma separated list of email addresses. Maximum of 5 addresses. Keep this list to a minimum!', 'adrotate'); ?><br />
52
- <?php _e('Messages are sent once every 24 hours when needed. If this field is empty no email notifications will be send.', 'adrotate'); ?></span>
53
  </td>
54
  </tr>
55
  <tr>
56
  <th valign="top"><?php _e('Advertisers', 'adrotate'); ?></th>
57
  <td>
58
- <textarea name="adrotate_notification_email_advertiser" cols="50" rows="2" disabled><?php echo get_option('admin_email'); ?></textarea><br />
59
- <span class="description"><?php _e('Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. This field may not be empty!', 'adrotate'); ?></span>
60
  </td>
61
  </tr>
62
  </table>
63
 
64
- <h3><?php _e('Push', 'adrotate'); ?> - <?php _e('Available in AdRotate Pro', 'adrotate'); ?></h3>
65
  <span class="description"><?php _e('Receive information about what is happening with your AdRotate setup on your smartphone via Pushover.', 'adrotate'); ?></span>
66
  <table class="form-table">
67
  <tr>
68
  <th valign="top"><?php _e('What', 'adrotate'); ?></th>
69
  <td>
70
- <input type="checkbox" name="adrotate_notification_push_geo_disabled" disabled /> <?php _e('When you are running out of Geo Targeting Lookups.', 'adrotate'); ?><br /><br />
71
- <input type="checkbox" name="adrotate_notification_push_status_disabled" disabled /> <?php _e('Daily digest of any advert status other than normal.', 'adrotate'); ?><br />
72
- <input type="checkbox" name="adrotate_notification_push_queue_disabled" disabled /> <?php _e('Any advertiser saving an advert in your moderation queue.', 'adrotate'); ?><br />
73
- <input type="checkbox" name="adrotate_notification_push_approved_disabled" disabled /> <?php _e('A moderator approved an advert from the moderation queue.', 'adrotate'); ?><br />
74
- <input type="checkbox" name="adrotate_notification_push_rejected_disabled" disabled /> <?php _e('A moderator rejected an advert from the moderation queue.', 'adrotate'); ?><br /><span class="description"><?php _e('If you have a lot of activity with many advertisers adding/changing adverts you may get a lot of messages!', 'adrotate'); ?></span>
75
 
76
  </td>
77
  </tr>
78
  <tr>
79
  <th valign="top"><?php _e('User Key', 'adrotate'); ?></th>
80
  <td>
81
- <label for="adrotate_notification_push_user_disabled"><input name="adrotate_notification_push_user_disabled" type="text" class="search-input" size="50" value="" disabled /> <?php _e('Get your user token', 'adrotate'); ?> <a href="https://pushover.net" target="_blank"><?php _e('here', 'adrotate'); ?></a>.</label>
82
  </td>
83
  </tr>
84
  <tr>
85
  <th valign="top"><?php _e('Api Token', 'adrotate'); ?></th>
86
  <td>
87
- <label for="adrotate_notification_push_api_disabled"><input name="adrotate_notification_push_api_disabled" type="text" class="search-input" size="50" value="" disabled /> <?php _e('Create your', 'adrotate'); ?> <a href="https://pushover.net/apps/build" target="_blank"><?php _e('App', 'adrotate'); ?></a> <?php _e('and get your API token', 'adrotate'); ?> <a href="https://pushover.net/apps" target="_blank"><?php _e('here', 'adrotate'); ?></a>.</label>
88
  </td>
89
  </tr>
90
- </table>
 
 
 
 
 
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
+
13
+ <form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings&tab=notifications">
14
+ <?php wp_nonce_field('adrotate_settings','adrotate_nonce_settings'); ?>
15
+ <?php wp_nonce_field('adrotate_email_test','adrotate_nonce'); ?>
16
+ <input type="hidden" name="adrotate_settings_tab" value="<?php echo $active_tab; ?>" />
17
+
18
+ <h2><?php _e('Notifications', 'adrotate'); ?></h2>
19
  <span class="description"><?php _e('Set up who gets notifications if ads need your attention.', 'adrotate'); ?></span>
20
  <table class="form-table">
21
  <tr>
22
+ <th valign="top"><?php _e('How to notify', 'adrotate'); ?></th>
23
  <td>
24
+ <input type="checkbox" name="adrotate_notification_dash" <?php if($adrotate_notifications['notification_dash'] == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Dashboard banner.', 'adrotate'); ?><br />
25
  <input type="checkbox" name="adrotate_notification_email_disabled" disabled /> <?php _e('Email message.', 'adrotate'); ?><br />
26
  <input type="checkbox" name="adrotate_notification_push_disabled" disabled /> <?php _e('Push notifications to your smartphone.', 'adrotate'); ?><br />
27
  <span class="description"><?php _e('Push notifications are delivered through Pushover, a notification service for Android and iOS', 'adrotate'); ?><br /><?php _e('The Pushover App is a one time purchase for either Android and/or iOS. More information can be found on the pushover website;', 'adrotate'); ?> <a href="http://www.pushover.net" target="_blank">pushover.net</a>.</span>
30
  <tr>
31
  <th scope="row" valign="top"><?php _e('Test notification', 'adrotate'); ?></th>
32
  <td>
33
+ <input type="submit" name="adrotate_notification_test_submit_disabled" class="button-secondary" value="<?php _e('Test', 'adrotate'); ?>" disabled /> <?php _e('Send a test notification to enabled methods. Before you test, save the options first!', 'adrotate'); ?>
34
  </td>
35
  </tr>
36
  </table>
37
 
38
+ <h3><?php _e('Dashboard Banner', 'adrotate'); ?></h3>
39
+ <span class="description"><?php _e('These go in a dashboard banner visible to all users with access to AdRotate on every WordPress dashboard page.', 'adrotate'); ?></span>
40
  <table class="form-table">
41
  <tr>
42
+ <th valign="top"><?php _e('What', 'adrotate'); ?></th>
43
  <td>
44
+ <input type="checkbox" name="adrotate_notification_dash_expired" <?php if($adrotate_notifications['notification_dash_expired'] == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Expired adverts.', 'adrotate'); ?><br />
45
+ <input type="checkbox" name="adrotate_notification_dash_soon" <?php if($adrotate_notifications['notification_dash_soon'] == 'Y') { ?>checked="checked" <?php } ?> /> <?php _e('Almost expired adverts.', 'adrotate'); ?>
46
  </td>
47
  </tr>
48
  </table>
49
 
50
+ <h3><?php _e('Email Message', 'adrotate'); ?> - <?php _e('Available in AdRotate Pro', 'adrotate'); ?></h3>
51
+ <span class="description"><?php _e('Receive email notifications about what is happening with your AdRotate setup.', 'adrotate'); ?></span>
52
  <table class="form-table">
53
+ <tr>
54
+ <th valign="top"><?php _e('What', 'adrotate'); ?></th>
55
+ <td>
56
+ <input type="checkbox" name="adrotate_notification_mail_status" disabled="1" /> <?php _e('Daily digest of any advert status other than normal.', 'adrotate'); ?><br />
57
+ <input type="checkbox" name="adrotate_notification_mail_geo" disabled="1" /> <?php _e('When you are running out of Geo Targeting Lookups.', 'adrotate'); ?><br />
58
+ <input type="checkbox" name="adrotate_notification_mail_queue" disabled="1" /> <?php _e('Any advertiser saving an advert in your moderation queue.', 'adrotate'); ?><br />
59
+ <input type="checkbox" name="adrotate_notification_mail_approved" disabled="1" /> <?php _e('A moderator approved an advert from the moderation queue.', 'adrotate'); ?><br />
60
+ <input type="checkbox" name="adrotate_notification_mail_rejected" disabled="1" <?php _e('A moderator rejected an advert from the moderation queue.', 'adrotate'); ?><br /><span class="description"><?php _e('If you have a lot of activity with many advertisers adding/changing adverts you may get a lot of messages!', 'adrotate'); ?><br /><br /><strong><?php _e('Note:', 'adrotate'); ?></strong> <?php _e('Sending out a lot of email is sometimes seen as automated mailing and deemed spammy. This may result in automated filters such as those used in services like Google Gmail and Microsoft Hotmail/Outlook.com blocking your server. Make sure you whitelist the sending address in your email account once you start receiving notifications!', 'adrotate'); ?></span>
61
+
62
+ </td>
63
+ </tr>
64
  <tr>
65
  <th valign="top"><?php _e('Publishers', 'adrotate'); ?></th>
66
  <td>
67
+ <textarea name="adrotate_notification_email_publisher" cols="50" rows="2" disabled="1"><?php echo get_option('admin_email'); ?></textarea><br />
68
+ <span class="description"><?php _e('Messages are sent once every 24 hours. Maximum of 5 addresses. Comma separated. This field may not be empty!', 'adrotate'); ?></span>
 
69
  </td>
70
  </tr>
71
  <tr>
72
  <th valign="top"><?php _e('Advertisers', 'adrotate'); ?></th>
73
  <td>
74
+ <textarea name="adrotate_notification_email_advertiser" cols="50" rows="2" disabled="1"><?php echo get_option('admin_email'); ?></textarea><br />
75
+ <span class="description"><?php _e('Who gets email from advertisers. Maximum of 5 addresses. Comma separated. This field may not be empty!', 'adrotate'); ?></span>
76
  </td>
77
  </tr>
78
  </table>
79
 
80
+ <h3><?php _e('Push Notifications', 'adrotate'); ?> - <?php _e('Available in AdRotate Pro', 'adrotate'); ?></h3>
81
  <span class="description"><?php _e('Receive information about what is happening with your AdRotate setup on your smartphone via Pushover.', 'adrotate'); ?></span>
82
  <table class="form-table">
83
  <tr>
84
  <th valign="top"><?php _e('What', 'adrotate'); ?></th>
85
  <td>
86
+ <input type="checkbox" name="adrotate_notification_push_status" disabled="1" /> <?php _e('Daily digest of any advert status other than normal.', 'adrotate'); ?><br />
87
+ <input type="checkbox" name="adrotate_notification_push_geo" disabled="1" /> <?php _e('When you are running out of Geo Targeting Lookups.', 'adrotate'); ?><br />
88
+ <input type="checkbox" name="adrotate_notification_push_queue" disabled="1" /> <?php _e('Any advertiser saving an advert in your moderation queue.', 'adrotate'); ?><br />
89
+ <input type="checkbox" name="adrotate_notification_push_approved" disabled="1" /> <?php _e('A moderator approved an advert from the moderation queue.', 'adrotate'); ?><br />
90
+ <input type="checkbox" name="adrotate_notification_push_rejected" disabled="1" /> <?php _e('A moderator rejected an advert from the moderation queue.', 'adrotate'); ?><br /><span class="description"><?php _e('If you have a lot of activity with many advertisers adding/changing adverts you may get a lot of messages!', 'adrotate'); ?><br /><br /><strong><?php _e('Note:', 'adrotate'); ?></strong> <?php _e('Pushover has a monthly limit of 7500 messages, this should be plenty. If you run out, you will not receive push notifications until the quota is reset! Every message AdRotate sends, regardless of the number of receiving devices, counts as one message.', 'adrotate'); ?></span>
91
 
92
  </td>
93
  </tr>
94
  <tr>
95
  <th valign="top"><?php _e('User Key', 'adrotate'); ?></th>
96
  <td>
97
+ <label for="adrotate_notification_push_user"><input name="adrotate_notification_push_user" type="text" class="search-input" size="50" value="" disabled="1" /> <?php _e('Get your user token', 'adrotate'); ?> <a href="https://pushover.net" target="_blank"><?php _e('here', 'adrotate'); ?></a>.</label>
98
  </td>
99
  </tr>
100
  <tr>
101
  <th valign="top"><?php _e('Api Token', 'adrotate'); ?></th>
102
  <td>
103
+ <label for="adrotate_notification_push_api"><input name="adrotate_notification_push_api" type="text" class="search-input" size="50" value="" disabled="1" /> <?php _e('Create your', 'adrotate'); ?> <a href="https://pushover.net/apps/build" target="_blank"><?php _e('App', 'adrotate'); ?></a> <?php _e('and get your API token', 'adrotate'); ?> <a href="https://pushover.net/apps" target="_blank"><?php _e('here', 'adrotate'); ?></a>.</label>
104
  </td>
105
  </tr>
106
+ </table>
107
+
108
+ <p class="submit">
109
+ <input type="submit" name="adrotate_save_options" class="button-primary" value="<?php _e('Update Options', 'adrotate'); ?>" />
110
+ </p>
111
+ </form>
dashboard/settings/roles.php CHANGED
@@ -9,7 +9,12 @@
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
- <h3><?php _e('Roles', 'adrotate'); ?></h3>
 
 
 
 
 
13
  <span class="description"><?php _e('Who has access to what?', 'adrotate'); ?></span>
14
  <table class="form-table">
15
  <tr>
@@ -44,4 +49,9 @@
44
  </select> <?php _e('Role to delete groups.', 'adrotate'); ?></label>
45
  </td>
46
  </tr>
47
- </table>
 
 
 
 
 
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
+
13
+ <form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings&tab=roles">
14
+ <?php wp_nonce_field('adrotate_settings','adrotate_nonce_settings'); ?>
15
+ <input type="hidden" name="adrotate_settings_tab" value="<?php echo $active_tab; ?>" />
16
+
17
+ <h2><?php _e('Roles', 'adrotate'); ?></h2>
18
  <span class="description"><?php _e('Who has access to what?', 'adrotate'); ?></span>
19
  <table class="form-table">
20
  <tr>
49
  </select> <?php _e('Role to delete groups.', 'adrotate'); ?></label>
50
  </td>
51
  </tr>
52
+ </table>
53
+
54
+ <p class="submit">
55
+ <input type="submit" name="adrotate_save_options" class="button-primary" value="<?php _e('Update Options', 'adrotate'); ?>" />
56
+ </p>
57
+ </form>
dashboard/settings/statistics.php CHANGED
@@ -9,7 +9,12 @@
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
- <h3><?php _e('Statistics', 'adrotate'); ?></h3></td>
 
 
 
 
 
13
  <span class="description"><?php _e('Track statistics for your adverts.', 'adrotate'); ?> <?php _e('Some options are only available in AdRotate Pro!', 'adrotate'); ?></span>
14
  <table class="form-table">
15
  <tr>
@@ -63,3 +68,8 @@
63
  </td>
64
  </tr>
65
  </table>
 
 
 
 
 
9
  * liability that might arise from it's use.
10
  ------------------------------------------------------------------------------------ */
11
  ?>
12
+
13
+ <form name="settings" id="post" method="post" action="admin.php?page=adrotate-settings&tab=stats">
14
+ <?php wp_nonce_field('adrotate_settings','adrotate_nonce_settings'); ?>
15
+ <input type="hidden" name="adrotate_settings_tab" value="<?php echo $active_tab; ?>" />
16
+
17
+ <h2><?php _e('Statistics', 'adrotate'); ?></h2>
18
  <span class="description"><?php _e('Track statistics for your adverts.', 'adrotate'); ?> <?php _e('Some options are only available in AdRotate Pro!', 'adrotate'); ?></span>
19
  <table class="form-table">
20
  <tr>
68
  </td>
69
  </tr>
70
  </table>
71
+
72
+ <p class="submit">
73
+ <input type="submit" name="adrotate_save_options" class="button-primary" value="<?php _e('Update Options', 'adrotate'); ?>" />
74
+ </p>
75
+ </form>
language/adrotate-bg_BG.mo CHANGED
Binary file
language/adrotate-bg_BG.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-30 14:27+0800\n"
6
- "PO-Revision-Date: 2016-05-30 14:27+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"
@@ -17,113 +17,113 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:844
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
- #: adrotate-functions.php:847
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
- #: adrotate-functions.php:896
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:900
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:904
37
  msgid "Ad(s) deleted"
38
  msgstr "Успешно изтриване"
39
 
40
- #: adrotate-functions.php:908
41
  msgid "Group deleted"
42
  msgstr "Групата е изтрита"
43
 
44
- #: adrotate-functions.php:912
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Статистиката е нулирана"
47
 
48
- #: adrotate-functions.php:916
49
  msgid "Ad(s) renewed"
50
  msgstr "Успешно подновяване"
51
 
52
- #: adrotate-functions.php:920
53
  msgid "Ad(s) deactivated"
54
  msgstr "Успешно деактивиране"
55
 
56
- #: adrotate-functions.php:924
57
  msgid "Ad(s) activated"
58
  msgstr "Успешно активиране"
59
 
60
- #: adrotate-functions.php:928
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
63
 
64
- #: adrotate-functions.php:932
65
  msgid "Export created"
66
  msgstr "Експорта е завършен"
67
 
68
- #: adrotate-functions.php:937
69
  msgid "Settings saved"
70
  msgstr "Настройките са запазени"
71
 
72
- #: adrotate-functions.php:941
73
  msgid "Database optimized"
74
  msgstr "Базата данни е оптимизирана"
75
 
76
- #: adrotate-functions.php:945
77
  msgid "Database repaired"
78
  msgstr "Базата данни е поправена"
79
 
80
- #: adrotate-functions.php:949
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
83
 
84
- #: adrotate-functions.php:953
85
  msgid "Empty database records removed"
86
  msgstr "Празните записи в базата данни са премахнати"
87
 
88
- #: adrotate-functions.php:958
89
  msgid "Action prohibited"
90
  msgstr "Забранено действие"
91
 
92
- #: adrotate-functions.php:962
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:966
99
  msgid "No data found in selected time period"
100
  msgstr "Не е намерена информация за избрания период"
101
 
102
- #: adrotate-functions.php:970
103
  msgid "Database can only be optimized or cleaned once every hour"
104
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
105
 
106
- #: adrotate-functions.php:974
107
  msgid "Form can not be (partially) empty!"
108
  msgstr ""
109
 
110
- #: adrotate-functions.php:978
111
  msgid "No ads found."
112
  msgstr ""
113
 
114
- #: adrotate-functions.php:982
115
  msgid "Unexpected error"
116
  msgstr ""
117
 
118
- #: adrotate-manage-publisher.php:678
119
  msgid "AdRotate Advertiser"
120
  msgstr ""
121
 
122
- #: adrotate-output.php:574
123
  msgid "Oh no! Something went wrong!"
124
  msgstr "О не! Нещо се случи!"
125
 
126
- #: adrotate-output.php:575
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 +132,17 @@ msgstr ""
132
  "кликнал. Проверете дали адреса е валиден или се впишете посредством браузъра "
133
  "си."
134
 
135
- #: adrotate-output.php:576
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:577
142
  msgid "Contact support if the issue persists:"
143
  msgstr "Свържете се с поддръжката, ако този проблем продължави да се появява:"
144
 
145
- #: adrotate-output.php:592
146
  msgid ""
147
  "Error, Ad is not available at this time due to schedule/geolocation "
148
  "restrictions or does not exist!"
@@ -150,33 +150,33 @@ msgstr ""
150
  "Грешка, рекламата не е налична в момента, поради ограничения в графика/"
151
  "геолокацията или не съществува!"
152
 
153
- #: adrotate-output.php:594
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:601 adrotate-output.php:603
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:609
168
  msgid "Error, no Ad ID set! Check your syntax!"
169
  msgstr "Грешка, не е зададено ID на рекламата! Проверете синтаксиса!"
170
 
171
- #: adrotate-output.php:615
172
  msgid "Error, no group ID set! Check your syntax!"
173
  msgstr "Грешка, не е зададено ID на групата! Проверете синтаксиса!"
174
 
175
- #: adrotate-output.php:620
176
  msgid "Error, group does not exist! Check your syntax!"
177
  msgstr "Грешка, групата не съществува! Проверете синтаксиса!"
178
 
179
- #: adrotate-output.php:626
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,47 +184,47 @@ msgstr ""
184
  "Не могат да бъдат открити таблиците на AdRotate в базата данни. Моля, "
185
  "изключете и включете наново AdRotate от страницата с плъгините!!"
186
 
187
- #: adrotate-output.php:626
188
  msgid "If this does not solve the issue please seek support at"
189
  msgstr "Ако това не решава проблема, моля потърсете помощ на"
190
 
191
- #: adrotate-output.php:632
192
  msgid "An unknown error occured."
193
  msgstr "Възникна неизвестна грешка."
194
 
195
- #: adrotate-output.php:651 adrotate-output.php:654 adrotate-output.php:658
196
- #: adrotate-output.php:663 adrotate-output.php:666 adrotate-output.php:669
197
  msgid "Check adverts"
198
  msgstr ""
199
 
200
- #: adrotate-output.php:674
201
  msgid ""
202
  "You have enable caching support but W3 Total Cache is not active on your "
203
  "site!"
204
  msgstr ""
205
 
206
- #: adrotate-output.php:677
207
  msgid ""
208
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
209
  "not set."
210
  msgstr ""
211
 
212
- #: adrotate-output.php:682
213
  msgid "Your AdRotate Banner folder is not writable or does not exist."
214
  msgstr ""
215
 
216
- #: adrotate-output.php:722 dashboard/adrotatepro.php:99
217
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
218
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
219
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
220
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
221
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
222
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
223
- #: dashboard/settings/geotargeting.php:25
224
  msgid "Buy now"
225
  msgstr "Купи сега"
226
 
227
- #: adrotate-output.php:723
228
  msgid ""
229
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
230
  "to the <strong>PRO</strong> version"
@@ -232,67 +232,67 @@ msgstr ""
232
  "Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
233
  "до <strong>PRO</strong> версията"
234
 
235
- #: adrotate-output.php:723
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:723
242
  msgid "Thank you for your purchase!"
243
  msgstr ""
244
 
245
- #: adrotate-output.php:784
246
  msgid ""
247
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
248
  "this menu. Check out the"
249
  msgstr ""
250
 
251
- #: adrotate-output.php:784
252
  msgid "manuals"
253
  msgstr "ръководства"
254
 
255
- #: adrotate-output.php:784 adrotate-output.php:851
256
  msgid "and"
257
  msgstr "и"
258
 
259
- #: adrotate-output.php:784
260
  msgid "forums"
261
  msgstr ""
262
 
263
- #: adrotate-output.php:814
264
  msgid "Useful Links"
265
  msgstr "Полезни връзки"
266
 
267
- #: adrotate-output.php:815
268
  msgid "Useful links to learn more about AdRotate"
269
  msgstr "Полезни връзки, за да получите повече информация за AdRotate"
270
 
271
- #: adrotate-output.php:817
272
  msgid "AdRotate website"
273
  msgstr ""
274
 
275
- #: adrotate-output.php:818
276
  msgid "Getting Started With AdRotate"
277
  msgstr "Започнете от нулата с AdRotate Pro"
278
 
279
- #: adrotate-output.php:819
280
  msgid "AdRotate manuals"
281
  msgstr ""
282
 
283
- #: adrotate-output.php:820
284
  msgid "AdRotate Support Forum"
285
  msgstr "Форум за поддръжка на AdRotate"
286
 
287
- #: adrotate-output.php:843
288
  msgid "Help AdRotate Grow"
289
  msgstr "Помогнете за развитието на AdRotate"
290
 
291
- #: adrotate-output.php:844
292
  msgid "Follow Arnan on Facebook"
293
  msgstr ""
294
 
295
- #: adrotate-output.php:851
296
  msgid ""
297
  "A lot of users only think to review AdRotate when something goes wrong while "
298
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
@@ -301,96 +301,96 @@ msgstr ""
301
  "се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
302
  "това да остане незабелязано."
303
 
304
- #: adrotate-output.php:851
305
  msgid "If you find AdRotate useful please leave your honest"
306
  msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
307
 
308
- #: adrotate-output.php:851
309
  msgid "rating"
310
  msgstr "оценка"
311
 
312
- #: adrotate-output.php:851
313
  msgid "review"
314
  msgstr "мнение"
315
 
316
- #: adrotate-output.php:851
317
  msgid "on WordPress.org to help AdRotate grow in a positive way"
318
  msgstr "на WordPress.org, за да се развива AdRotate"
319
 
320
- #: adrotate-output.php:884 dashboard/settings/notifications.php:44
321
- #: dashboard/settings/notifications.php:64
322
  msgid "Available in AdRotate Pro"
323
  msgstr "Налично в AdRotate Pro"
324
 
325
- #: adrotate-output.php:884
326
  msgid "More information..."
327
  msgstr "Повече информация..."
328
 
329
- #: adrotate-output.php:885
330
  msgid "This feature is available in AdRotate Pro"
331
  msgstr "Тази функционалност е налична в AdRotate Pro"
332
 
333
- #: adrotate-output.php:885
334
  msgid "Learn more"
335
  msgstr "Повече информация"
336
 
337
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
338
- #: dashboard/publisher/adverts-edit.php:241
339
  msgid "January"
340
  msgstr "Януари"
341
 
342
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
343
- #: dashboard/publisher/adverts-edit.php:242
344
  msgid "February"
345
  msgstr "Февруари"
346
 
347
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
348
- #: dashboard/publisher/adverts-edit.php:243
349
  msgid "March"
350
  msgstr "Март"
351
 
352
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
353
- #: dashboard/publisher/adverts-edit.php:244
354
  msgid "April"
355
  msgstr "Април"
356
 
357
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
358
- #: dashboard/publisher/adverts-edit.php:245
359
  msgid "May"
360
  msgstr "Май"
361
 
362
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
363
- #: dashboard/publisher/adverts-edit.php:246
364
  msgid "June"
365
  msgstr "Юни"
366
 
367
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
368
- #: dashboard/publisher/adverts-edit.php:247
369
  msgid "July"
370
  msgstr "Юли"
371
 
372
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
373
- #: dashboard/publisher/adverts-edit.php:248
374
  msgid "August"
375
  msgstr "Август"
376
 
377
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
378
- #: dashboard/publisher/adverts-edit.php:249
379
  msgid "September"
380
  msgstr "Септември"
381
 
382
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
383
- #: dashboard/publisher/adverts-edit.php:250
384
  msgid "October"
385
  msgstr "Октомври"
386
 
387
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
388
- #: dashboard/publisher/adverts-edit.php:251
389
  msgid "November"
390
  msgstr "Ноември"
391
 
392
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
393
- #: dashboard/publisher/adverts-edit.php:252
394
  msgid "December"
395
  msgstr "Декември"
396
 
@@ -450,67 +450,67 @@ msgstr "ID:"
450
  msgid "Fill in the ID of the type you want to display!"
451
  msgstr "Попълнете ID-то на типа, който искате да се показва!"
452
 
453
- #: adrotate.php:105
454
  msgid "General Info"
455
  msgstr "Обща информация"
456
 
457
- #: adrotate.php:106
458
  msgid "AdRotate Pro"
459
  msgstr "AdRotate Pro"
460
 
461
- #: adrotate.php:107
462
  msgid "Manage Adverts"
463
  msgstr ""
464
 
465
- #: adrotate.php:108 dashboard/publisher/groups-main.php:12
466
  msgid "Manage Groups"
467
  msgstr "Управление на групи"
468
 
469
- #: adrotate.php:109 adrotate.php:387
470
  msgid "Manage Schedules"
471
  msgstr "Управление на графици"
472
 
473
- #: adrotate.php:110
474
  msgid "Manage Media"
475
  msgstr "Управление на Медия"
476
 
477
- #: adrotate.php:111
478
  msgid "Settings"
479
  msgstr "Настройки"
480
 
481
- #: adrotate.php:134
482
  msgid "AdRotate Info"
483
  msgstr "AdRotate Info"
484
 
485
- #: adrotate.php:155
486
  msgid "AdRotate Professional"
487
  msgstr "AdRotate Professional"
488
 
489
- #: adrotate.php:198
490
  msgid "Advert Management"
491
  msgstr ""
492
 
493
- #: adrotate.php:256 adrotate.php:326 adrotate.php:382
494
  msgid "Manage"
495
  msgstr "Управление"
496
 
497
- #: adrotate.php:257 adrotate.php:327 adrotate.php:383
498
  msgid "Add New"
499
  msgstr "Добавяне"
500
 
501
- #: adrotate.php:320
502
  msgid "Group Management"
503
  msgstr "Управление на групи"
504
 
505
- #: adrotate.php:329
506
  msgid "Report"
507
  msgstr "Доклад"
508
 
509
- #: adrotate.php:378
510
  msgid "Schedule Management available in AdRotate Pro"
511
  msgstr "Управление с графици е налично в AdRotate Pro"
512
 
513
- #: adrotate.php:388
514
  msgid ""
515
  "Schedule management and multiple schedules per advert is available in "
516
  "AdRotate Pro."
@@ -518,116 +518,115 @@ msgstr ""
518
  "Управлението на графици и множество графици за една реклама са налични в "
519
  "AdRotate Pro."
520
 
521
- #: adrotate.php:388 adrotate.php:475 dashboard/publisher/adverts-edit.php:188
522
  #: dashboard/publisher/adverts-main.php:114
523
- #: dashboard/publisher/groups-edit.php:75
524
  #: dashboard/publisher/groups-main.php:89
525
  msgid "More information"
526
  msgstr "Повече информация"
527
 
528
- #: adrotate.php:395 dashboard/publisher/adverts-disabled.php:20
529
  #: dashboard/publisher/adverts-error.php:19
530
  #: dashboard/publisher/adverts-main.php:20
531
  #: dashboard/publisher/groups-main.php:20
532
  msgid "Bulk Actions"
533
  msgstr "Масови действия"
534
 
535
- #: adrotate.php:396 dashboard/publisher/adverts-disabled.php:25
536
  #: dashboard/publisher/adverts-error.php:29
537
  #: dashboard/publisher/adverts-main.php:30
538
  #: dashboard/publisher/groups-main.php:24
539
  msgid "Go"
540
  msgstr "Напред"
541
 
542
- #: adrotate.php:405 dashboard/publisher/adverts-disabled.php:35
543
  #: dashboard/publisher/adverts-error.php:39
544
  #: dashboard/publisher/adverts-main.php:39
545
- #: dashboard/publisher/groups-edit.php:51
546
  #: dashboard/publisher/groups-main.php:32
547
  msgid "ID"
548
  msgstr "ID"
549
 
550
- #: adrotate.php:406
551
  msgid "Start"
552
  msgstr "Начало"
553
 
554
- #: adrotate.php:406
555
  msgid "End"
556
  msgstr "Край"
557
 
558
- #: adrotate.php:407
559
  msgid "Ads"
560
  msgstr "Реклами"
561
 
562
- #: adrotate.php:409
563
  msgid "Max Impressions"
564
  msgstr "Максимум импресии"
565
 
566
- #: adrotate.php:410
567
  msgid "Max Clicks"
568
  msgstr "Максимум кликове"
569
 
570
- #: adrotate.php:440
571
  msgid "No schedules created yet!"
572
  msgstr "Все още няма създадени графици!"
573
 
574
- #: adrotate.php:445
575
  msgid "Easily manage your schedules from here with AdRotate Pro."
576
  msgstr "Можете лесно да управлявате графиците си от тук с AdRotate Pro."
577
 
578
- #: adrotate.php:445 adrotate.php:511
579
  msgid "Upgrade today!"
580
  msgstr "Надградете днес!"
581
 
582
- #: adrotate.php:448 dashboard/publisher/adverts-error.php:72
583
- #: dashboard/publisher/groups-edit.php:387
584
  msgid "Expires soon."
585
  msgstr "Изтича скоро."
586
 
587
- #: adrotate.php:449 dashboard/publisher/adverts-error.php:73
588
- #: dashboard/publisher/groups-edit.php:388
589
  msgid "Has expired."
590
  msgstr "Изтекла."
591
 
592
- #: adrotate.php:473
593
  msgid "Media Management available in AdRotate Pro"
594
  msgstr "Управление на медия е налично в AdRotate Pro"
595
 
596
- #: adrotate.php:475
597
  msgid "Upload images to the AdRotate Pro banners folder from here."
598
  msgstr ""
599
 
600
- #: adrotate.php:475
601
  msgid ""
602
  "This is useful if you use responsive adverts with multiple images or have "
603
  "HTML5 adverts containing multiple files."
604
  msgstr ""
605
 
606
- #: adrotate.php:475
607
  msgid "Media uploading and management is available in AdRotate Pro."
608
  msgstr "Управлението и качването на медия са налични в AdRotate Pro."
609
 
610
- #: adrotate.php:477
611
  msgid "Upload new file"
612
  msgstr ""
613
 
614
- #: adrotate.php:478
615
  msgid "Accepted files:"
616
  msgstr ""
617
 
618
- #: adrotate.php:478
619
  msgid "For HTML5 ads you can also upload html and javascript files."
620
  msgstr ""
621
 
622
- #: adrotate.php:478
623
  msgid "Maximum size is 512Kb."
624
  msgstr "Максималния размер е 512Kb."
625
 
626
- #: adrotate.php:478
627
  msgid "Important:"
628
  msgstr "Важно:"
629
 
630
- #: adrotate.php:478
631
  msgid ""
632
  "Make sure your file has no spaces or special characters in the name. Replace "
633
  "spaces with a - or _."
@@ -635,13 +634,13 @@ msgstr ""
635
  "Уверете се, че файла няма интервали и специални знаци в името си. Заместете "
636
  "интервалите с - или _."
637
 
638
- #: adrotate.php:478
639
  msgid ""
640
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
641
  "file so it knows about the changed name. For example for the javascript file."
642
  msgstr ""
643
 
644
- #: adrotate.php:481
645
  msgid ""
646
  "For responsive adverts make sure the filename is in the following format; "
647
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
@@ -650,7 +649,7 @@ msgstr ""
650
  "формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени картинки "
651
  "е строго препоръчителен."
652
 
653
- #: adrotate.php:482 dashboard/publisher/adverts-edit.php:311
654
  msgid ""
655
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
656
  "filename instead of \".full\" for the various viewports."
@@ -659,12 +658,12 @@ msgstr ""
659
  "използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
660
  "файловете, вместо \".full\"."
661
 
662
- #: adrotate.php:483 dashboard/publisher/groups-edit.php:312
663
- #: dashboard/publisher/groups-edit.php:320
664
  msgid "Example:"
665
  msgstr "Пример:"
666
 
667
- #: adrotate.php:483
668
  msgid ""
669
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
670
  "for different viewports."
@@ -672,54 +671,50 @@ msgstr ""
672
  "image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
673
  "реклама в различни резолюции на екрана."
674
 
675
- #: adrotate.php:487
676
  msgid "Upload file"
677
  msgstr ""
678
 
679
- #: adrotate.php:487
680
  msgid "Click only once per file!"
681
  msgstr ""
682
 
683
- #: adrotate.php:490
684
  msgid "Available files in"
685
  msgstr ""
686
 
687
- #: adrotate.php:495 dashboard/publisher/groups-edit.php:55
688
  #: dashboard/publisher/groups-main.php:33
689
  msgid "Name"
690
  msgstr "Име"
691
 
692
- #: adrotate.php:496
693
  msgid "Actions"
694
  msgstr "Действия"
695
 
696
- #: adrotate.php:501 adrotate.php:502 adrotate.php:503 adrotate.php:504
697
- #: adrotate.php:505 adrotate.php:506 adrotate.php:507
698
  #: dashboard/publisher/adverts-disabled.php:22
699
  #: dashboard/publisher/adverts-error.php:21
700
  #: dashboard/publisher/adverts-main.php:22
701
  msgid "Delete"
702
  msgstr "Изтриване"
703
 
704
- #: adrotate.php:511
705
  msgid ""
706
  "Make sure the banner images are not in use by adverts when you delete them!"
707
  msgstr ""
708
  "Уверете се, че картинките за банери не се използват от реклами, преди да ги "
709
  "изтриете!"
710
 
711
- #: adrotate.php:511
712
  msgid "Manage your banner folder from here with AdRotate Pro."
713
  msgstr "Можете да управлявате папката с банери от тук с AdRotate Pro."
714
 
715
- #: adrotate.php:540
716
  msgid "AdRotate Settings"
717
  msgstr "AdRotate Настройки"
718
 
719
- #: adrotate.php:612
720
- msgid "Update Options"
721
- msgstr "Опции за обновяване"
722
-
723
  #: dashboard/adrotatepro.php:20
724
  msgid "Satisfy your advertisers"
725
  msgstr "Задоволете рекламодателите си"
@@ -910,7 +905,7 @@ msgstr "Вие имате"
910
  msgid "Adverts that need you"
911
  msgstr "Реклами, които изискват вниманието Ви"
912
 
913
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
914
  #: dashboard/publisher/groups-main.php:34
915
  msgid "Adverts"
916
  msgstr "Реклами"
@@ -953,7 +948,7 @@ msgid "Disabled Adverts"
953
  msgstr ""
954
 
955
  #: dashboard/publisher/adverts-disabled.php:21
956
- #: dashboard/publisher/adverts-edit.php:176
957
  msgid "Activate"
958
  msgstr "Активиране"
959
 
@@ -970,7 +965,7 @@ msgid "Start / End"
970
  msgstr "Начало / Край"
971
 
972
  #: dashboard/publisher/adverts-disabled.php:37
973
- #: dashboard/publisher/adverts-edit.php:116
974
  #: dashboard/publisher/adverts-error.php:41
975
  #: dashboard/publisher/adverts-main.php:41
976
  msgid "Title"
@@ -978,7 +973,7 @@ msgstr "Заглавие"
978
 
979
  #: dashboard/publisher/adverts-disabled.php:38
980
  #: dashboard/publisher/adverts-main.php:44
981
- #: dashboard/publisher/groups-edit.php:333
982
  #: dashboard/publisher/groups-main.php:36
983
  msgid "Shown"
984
  msgstr "Показана"
@@ -987,7 +982,7 @@ msgstr "Показана"
987
  #: dashboard/publisher/adverts-main.php:46
988
  #: dashboard/publisher/adverts-report.php:36
989
  #: dashboard/publisher/adverts-report.php:57
990
- #: dashboard/publisher/groups-edit.php:334
991
  #: dashboard/publisher/groups-main.php:38
992
  #: dashboard/publisher/groups-report.php:37
993
  #: dashboard/publisher/groups-report.php:58
@@ -1028,34 +1023,28 @@ msgid "The AdCode cannot be empty!"
1028
  msgstr "AdCode не може да бъде празен!"
1029
 
1030
  #: dashboard/publisher/adverts-edit.php:51
1031
- msgid "You did not use %image% in your AdCode but did select a file to use!"
 
 
1032
  msgstr ""
1033
 
1034
  #: dashboard/publisher/adverts-edit.php:54
1035
- msgid "You did use %image% in your AdCode but did not select a file to use!"
1036
- msgstr ""
1037
-
1038
- #: dashboard/publisher/adverts-edit.php:57
1039
  msgid ""
1040
- "You did not use %image% in your AdCode. The responsive checkbox will be "
1041
- "ineffective."
1042
  msgstr ""
1043
 
1044
- #: dashboard/publisher/adverts-edit.php:60
1045
  msgid ""
1046
  "There is a problem saving the image. Please reset your image and re-save the "
1047
  "ad!"
1048
  msgstr ""
1049
 
1050
- #: dashboard/publisher/adverts-edit.php:63
1051
- msgid "Responsive is enabled but your banner image has the wrong name."
1052
- msgstr ""
1053
-
1054
- #: dashboard/publisher/adverts-edit.php:66
1055
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1056
  msgstr ""
1057
 
1058
- #: dashboard/publisher/adverts-edit.php:71
1059
  msgid ""
1060
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1061
  "the ad!"
@@ -1063,77 +1052,77 @@ msgstr ""
1063
  "AdRotate не открива грешка, но рекламата е маркирана като грешна, моля, "
1064
  "запишете я наново!"
1065
 
1066
- #: dashboard/publisher/adverts-edit.php:74
1067
  msgid "This ad is expired and currently not shown on your website!"
1068
  msgstr "Тази реклама е изтекла и не се показва на сайта Ви!"
1069
 
1070
- #: dashboard/publisher/adverts-edit.php:77
1071
  msgid "The ad will expire in less than 2 days!"
1072
  msgstr "Тази реклама изтича след по-малко от 2 дни!"
1073
 
1074
- #: dashboard/publisher/adverts-edit.php:80
1075
  msgid "This ad will expire in less than 7 days!"
1076
  msgstr "Тази реклама изтича след по-малко от 7 дни!"
1077
 
1078
- #: dashboard/publisher/adverts-edit.php:83
1079
  msgid "This ad has been disabled and does not rotate on your site!"
1080
  msgstr "Тази реклама е деактивирана и не се показва на сайта Ви!"
1081
 
1082
- #: dashboard/publisher/adverts-edit.php:108
1083
  msgid "New Advert"
1084
  msgstr "Нова реклама"
1085
 
1086
- #: dashboard/publisher/adverts-edit.php:110
1087
  msgid "Edit Advert"
1088
  msgstr "Редакция на реклама"
1089
 
1090
- #: dashboard/publisher/adverts-edit.php:122
1091
  msgid "AdCode"
1092
  msgstr ""
1093
 
1094
- #: dashboard/publisher/adverts-edit.php:127
1095
  msgid "Basic Examples:"
1096
  msgstr "Основни примери:"
1097
 
1098
- #: dashboard/publisher/adverts-edit.php:134
1099
  msgid "Useful tags"
1100
  msgstr ""
1101
 
1102
- #: dashboard/publisher/adverts-edit.php:136
1103
  msgid "Insert the advert ID Number."
1104
  msgstr ""
1105
 
1106
- #: dashboard/publisher/adverts-edit.php:136
1107
- msgid "Required when selecting a image below."
1108
  msgstr ""
1109
 
1110
- #: dashboard/publisher/adverts-edit.php:136
1111
  msgid "Insert the advert name."
1112
  msgstr ""
1113
 
1114
- #: dashboard/publisher/adverts-edit.php:136
1115
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1116
  msgstr ""
1117
 
1118
- #: dashboard/publisher/adverts-edit.php:136
1119
  msgid "Add inside the <a> tag to open advert in a new window."
1120
  msgstr ""
1121
 
1122
- #: dashboard/publisher/adverts-edit.php:136
1123
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1124
  msgstr ""
1125
 
1126
- #: dashboard/publisher/adverts-edit.php:136
1127
  msgid ""
1128
  "Place the cursor in your AdCode where you want to add any of these tags and "
1129
  "click to add it."
1130
  msgstr ""
1131
 
1132
- #: dashboard/publisher/adverts-edit.php:141
1133
  msgid "Preview"
1134
  msgstr "Преглед"
1135
 
1136
- #: dashboard/publisher/adverts-edit.php:144
1137
  msgid ""
1138
  "Note: While this preview is an accurate one, it might look different then it "
1139
  "does on the website."
@@ -1141,41 +1130,41 @@ msgstr ""
1141
  "Забележка: Въпреки, че предварителния преглед е точен, рекламата може да "
1142
  "изглежда по-различно, когато се показва на страницата Ви."
1143
 
1144
- #: dashboard/publisher/adverts-edit.php:145
1145
  msgid ""
1146
  "This is because of CSS differences. Your themes CSS file is not active here!"
1147
  msgstr ""
1148
  "Това се дължи на разлики в CSS. CSS файла на вашата тема не е активен тук!"
1149
 
1150
- #: dashboard/publisher/adverts-edit.php:150
1151
  msgid "Banner asset"
1152
  msgstr ""
1153
 
1154
- #: dashboard/publisher/adverts-edit.php:153
1155
  msgid "WordPress media:"
1156
  msgstr ""
1157
 
1158
- #: dashboard/publisher/adverts-edit.php:153
1159
  msgid "Select Banner"
1160
  msgstr "Избор на банер"
1161
 
1162
- #: dashboard/publisher/adverts-edit.php:155
1163
  msgid "- OR -"
1164
  msgstr "- ИЛИ -"
1165
 
1166
- #: dashboard/publisher/adverts-edit.php:157
1167
  msgid "Banner folder:"
1168
  msgstr "Папка на банера:"
1169
 
1170
- #: dashboard/publisher/adverts-edit.php:158
1171
  msgid "No image selected"
1172
  msgstr "Не е избрана картинка"
1173
 
1174
- #: dashboard/publisher/adverts-edit.php:162
1175
- msgid "Use %image% in the adcode instead of the file path."
1176
  msgstr ""
1177
 
1178
- #: dashboard/publisher/adverts-edit.php:162
1179
  msgid ""
1180
  "Use either the text field or the dropdown. If the textfield has content that "
1181
  "field has priority."
@@ -1183,247 +1172,249 @@ msgstr ""
1183
  "Използвайте падащото меню или текстовото поле. Ако текстовото поле е "
1184
  "попълнено, то ще бъде с преоритет."
1185
 
1186
- #: dashboard/publisher/adverts-edit.php:167
1187
- #: dashboard/settings/statistics.php:12
1188
  msgid "Statistics"
1189
  msgstr "Статистики"
1190
 
1191
- #: dashboard/publisher/adverts-edit.php:169
1192
  msgid "Enable click and impression tracking for this advert."
1193
  msgstr ""
1194
 
1195
- #: dashboard/publisher/adverts-edit.php:170
1196
  msgid ""
1197
  "Note: Clicktracking does not work for Javascript adverts such as those "
1198
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1199
  "always supported."
1200
  msgstr ""
1201
 
1202
- #: dashboard/publisher/adverts-edit.php:180
1203
  msgid "Yes, this ad will be used"
1204
  msgstr "Да, тази реклама ще се използва"
1205
 
1206
- #: dashboard/publisher/adverts-edit.php:181
1207
  msgid "No, do not show this ad anywhere"
1208
  msgstr "Не, не показвай тази реклама никъде"
1209
 
1210
- #: dashboard/publisher/adverts-edit.php:188
1211
  #: dashboard/publisher/adverts-main.php:114
1212
- #: dashboard/publisher/groups-edit.php:75
1213
  #: dashboard/publisher/groups-main.php:89
1214
  msgid "Get more features with AdRotate Pro."
1215
  msgstr "Получете по-голяма функционалност с AdRotate Pro."
1216
 
1217
- #: dashboard/publisher/adverts-edit.php:191
1218
- #: dashboard/publisher/adverts-edit.php:291
1219
- #: dashboard/publisher/adverts-edit.php:386
1220
- #: dashboard/publisher/adverts-edit.php:427
1221
  msgid "Save Advert"
1222
  msgstr "Запиши рекламата"
1223
 
1224
- #: dashboard/publisher/adverts-edit.php:192
1225
- #: dashboard/publisher/adverts-edit.php:292
1226
- #: dashboard/publisher/adverts-edit.php:387
1227
- #: dashboard/publisher/adverts-edit.php:428
1228
- #: dashboard/publisher/groups-edit.php:154
1229
- #: dashboard/publisher/groups-edit.php:301
1230
- #: dashboard/publisher/groups-edit.php:393
1231
  msgid "Cancel"
1232
  msgstr "Отказ"
1233
 
1234
- #: dashboard/publisher/adverts-edit.php:195
1235
- #: dashboard/publisher/adverts-edit.php:369
1236
- #: dashboard/publisher/groups-edit.php:136
1237
- #: dashboard/publisher/groups-edit.php:283
1238
  msgid "Usage"
1239
  msgstr "Употреба"
1240
 
1241
- #: dashboard/publisher/adverts-edit.php:199
1242
- #: dashboard/publisher/adverts-edit.php:373
1243
- #: dashboard/publisher/groups-edit.php:140
1244
- #: dashboard/publisher/groups-edit.php:287
1245
  msgid "Widget"
1246
  msgstr ""
1247
 
1248
- #: dashboard/publisher/adverts-edit.php:200
1249
- #: dashboard/publisher/adverts-edit.php:374
1250
  msgid ""
1251
- "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1252
- "and enter ID"
1253
  msgstr ""
1254
 
1255
- #: dashboard/publisher/adverts-edit.php:203
1256
- #: dashboard/publisher/adverts-edit.php:377
1257
- #: dashboard/publisher/groups-edit.php:144
1258
- #: dashboard/publisher/groups-edit.php:291
1259
  msgid "In a post or page"
1260
  msgstr ""
1261
 
1262
- #: dashboard/publisher/adverts-edit.php:205
1263
- #: dashboard/publisher/adverts-edit.php:379
1264
- #: dashboard/publisher/groups-edit.php:146
1265
- #: dashboard/publisher/groups-edit.php:293
1266
  msgid "Directly in a theme"
1267
  msgstr ""
1268
 
1269
- #: dashboard/publisher/adverts-edit.php:211
1270
  msgid "Schedule your advert"
1271
  msgstr ""
1272
 
1273
- #: dashboard/publisher/adverts-edit.php:215
1274
  msgid "Start date (day/month/year)"
1275
  msgstr ""
1276
 
1277
- #: dashboard/publisher/adverts-edit.php:236
1278
  msgid "End date (day/month/year)"
1279
  msgstr ""
1280
 
1281
- #: dashboard/publisher/adverts-edit.php:259
1282
  msgid "Start time (hh:mm)"
1283
  msgstr ""
1284
 
1285
- #: dashboard/publisher/adverts-edit.php:266
1286
  msgid "End time (hh:mm)"
1287
  msgstr ""
1288
 
1289
- #: dashboard/publisher/adverts-edit.php:276
1290
  msgid "Maximum Clicks"
1291
  msgstr ""
1292
 
1293
- #: dashboard/publisher/adverts-edit.php:277
1294
- #: dashboard/publisher/adverts-edit.php:279
1295
  msgid "Leave empty or 0 to skip this."
1296
  msgstr "Въведете 0 или оставете празно, за да пропуснете тази опция."
1297
 
1298
- #: dashboard/publisher/adverts-edit.php:278
1299
  msgid "Maximum Impressions"
1300
  msgstr ""
1301
 
1302
- #: dashboard/publisher/adverts-edit.php:283
1303
  msgid "Important"
1304
  msgstr ""
1305
 
1306
- #: dashboard/publisher/adverts-edit.php:284
1307
  msgid ""
1308
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1309
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1310
  "14:00 hours. 6AM is 6:00 hours."
1311
  msgstr ""
1312
 
1313
- #: dashboard/publisher/adverts-edit.php:288
1314
  msgid ""
1315
  "Create multiple and more advanced schedules for each advert with AdRotate "
1316
  "Pro."
1317
  msgstr ""
1318
 
1319
- #: dashboard/publisher/adverts-edit.php:288
1320
- #: dashboard/publisher/adverts-edit.php:323
1321
- #: dashboard/publisher/adverts-edit.php:367
1322
- #: dashboard/publisher/groups-edit.php:200
1323
  msgid "Upgrade today"
1324
  msgstr "Надградете днес"
1325
 
1326
- #: dashboard/publisher/adverts-edit.php:295
1327
- #: dashboard/publisher/groups-edit.php:157
1328
  msgid "Advanced"
1329
  msgstr "Разширени"
1330
 
1331
- #: dashboard/publisher/adverts-edit.php:296
1332
  msgid "Everything below is optional."
1333
  msgstr "Всичко по-долу е по желание."
1334
 
1335
- #: dashboard/publisher/adverts-edit.php:300
1336
- msgid "Mobile"
1337
  msgstr ""
1338
 
1339
- #: dashboard/publisher/adverts-edit.php:302
1340
- msgid "Show on;"
1341
- msgstr ""
 
 
1342
 
1343
- #: dashboard/publisher/adverts-edit.php:302
1344
- msgid "Computers"
1345
  msgstr ""
1346
 
1347
- #: dashboard/publisher/adverts-edit.php:302
1348
- msgid "Smartphones"
1349
- msgstr ""
1350
 
1351
- #: dashboard/publisher/adverts-edit.php:302
1352
- msgid "Tablets."
1353
  msgstr ""
1354
 
1355
- #: dashboard/publisher/adverts-edit.php:303
1356
- msgid "Also enable mobile support in the group this advert goes in."
 
 
 
 
1357
  msgstr ""
1358
 
1359
- #: dashboard/publisher/adverts-edit.php:307
1360
- msgid "Responsive"
1361
  msgstr ""
1362
 
1363
- #: dashboard/publisher/adverts-edit.php:309
1364
- msgid "Enable responsive support for this advert."
1365
- msgstr "Активиране на responsive дизайн за тази реклама."
1366
 
1367
- #: dashboard/publisher/adverts-edit.php:310
1368
- msgid ""
1369
- "Upload your images to the banner folder and make sure the filename is in the "
1370
- "following format; \"imagename.full.ext\"."
1371
  msgstr ""
1372
 
1373
- #: dashboard/publisher/adverts-edit.php:312
1374
- #: dashboard/publisher/adverts-report.php:64
1375
- #: dashboard/publisher/groups-report.php:65
1376
- msgid "Note:"
1377
- msgstr "Забележка:"
1378
 
1379
- #: dashboard/publisher/adverts-edit.php:312
1380
  msgid ""
1381
- "This feature will not be developed any further. Consider switching to the "
1382
- "Mobile feature in AdRotate Pro as seen above!"
1383
  msgstr ""
1384
 
1385
- #: dashboard/publisher/adverts-edit.php:316
1386
- #: dashboard/publisher/groups-edit.php:194
1387
  msgid "Sortorder"
1388
  msgstr ""
1389
 
1390
- #: dashboard/publisher/adverts-edit.php:318
1391
- #: dashboard/publisher/groups-edit.php:196
1392
  msgid "For administrative purposes set a sortorder."
1393
  msgstr "За административни цели задайте критерий за сортиране."
1394
 
1395
- #: dashboard/publisher/adverts-edit.php:318
1396
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1397
  msgstr ""
1398
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
1399
  "на рекламата по подразбиране."
1400
 
1401
- #: dashboard/publisher/adverts-edit.php:323
1402
  msgid ""
1403
  "With AdRotate Pro you can easily select which devices the advert should show "
1404
  "on!"
1405
  msgstr ""
1406
 
1407
- #: dashboard/publisher/adverts-edit.php:325
1408
  msgid "Geo Targeting in AdRotate Pro"
1409
  msgstr ""
1410
 
1411
- #: dashboard/publisher/adverts-edit.php:326
1412
  msgid ""
1413
  "Assign the advert to a group and enable that group to use Geo Targeting."
1414
  msgstr ""
1415
 
1416
- #: dashboard/publisher/adverts-edit.php:330
1417
  msgid "Cities/States"
1418
  msgstr ""
1419
 
1420
- #: dashboard/publisher/adverts-edit.php:333
1421
  msgid ""
1422
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1423
  "states ISO codes are supported)"
1424
  msgstr ""
1425
 
1426
- #: dashboard/publisher/adverts-edit.php:333
1427
  msgid ""
1428
  "AdRotate does not check the validity of names so make sure you spell them "
1429
  "correctly!"
@@ -1431,68 +1422,68 @@ msgstr ""
1431
  "AdRotate не проверява валидността на имената, уверете се, че сте ги изписали "
1432
  "правилно!"
1433
 
1434
- #: dashboard/publisher/adverts-edit.php:337
1435
  msgid "Countries"
1436
  msgstr ""
1437
 
1438
- #: dashboard/publisher/adverts-edit.php:362
1439
  msgid "Select the countries you want the adverts to show in."
1440
  msgstr "Изберете страните, в които искате да се показват рекламите."
1441
 
1442
- #: dashboard/publisher/adverts-edit.php:362
1443
  msgid "Cities take priority and will be filtered first."
1444
  msgstr "Градовете са с приоритет и ще бъдат филтрирани първи."
1445
 
1446
- #: dashboard/publisher/adverts-edit.php:367
1447
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1448
  msgstr ""
1449
 
1450
- #: dashboard/publisher/adverts-edit.php:391
1451
  msgid "Select Groups"
1452
  msgstr "Избор на групи"
1453
 
1454
- #: dashboard/publisher/adverts-edit.php:396
1455
  msgid "ID - Name"
1456
  msgstr "ID - Име"
1457
 
1458
- #: dashboard/publisher/adverts-edit.php:406
1459
  #: dashboard/publisher/groups-main.php:60
1460
- #: dashboard/settings/geotargeting.php:36
1461
  msgid "Default"
1462
  msgstr "По подразбиране"
1463
 
1464
- #: dashboard/publisher/adverts-edit.php:407
1465
  #: dashboard/publisher/groups-main.php:61
1466
  msgid "Dynamic"
1467
  msgstr "Динамично"
1468
 
1469
- #: dashboard/publisher/adverts-edit.php:407
1470
  #: dashboard/publisher/groups-main.php:61
1471
  msgid "second rotation"
1472
  msgstr "второ завъртане"
1473
 
1474
- #: dashboard/publisher/adverts-edit.php:408
1475
  #: dashboard/publisher/groups-main.php:62
1476
  msgid "Block"
1477
  msgstr "Блок"
1478
 
1479
- #: dashboard/publisher/adverts-edit.php:408
1480
  #: dashboard/publisher/groups-main.php:62
1481
  msgid "grid"
1482
  msgstr "решетка"
1483
 
1484
- #: dashboard/publisher/adverts-edit.php:409
1485
- #: dashboard/publisher/groups-edit.php:202
1486
  #: dashboard/publisher/groups-main.php:63
1487
  msgid "Post Injection"
1488
  msgstr "Вмъкване в публикации"
1489
 
1490
- #: dashboard/publisher/adverts-edit.php:410
1491
  msgid "Geolocation"
1492
  msgstr "Геолокация"
1493
 
1494
- #: dashboard/publisher/adverts-edit.php:416
1495
- #: dashboard/publisher/groups-edit.php:61
1496
  #: dashboard/publisher/groups-main.php:70
1497
  msgid "Mode"
1498
  msgstr "Режим"
@@ -1532,7 +1523,7 @@ msgid "For 7 days"
1532
  msgstr "За 7 дни"
1533
 
1534
  #: dashboard/publisher/adverts-error.php:71
1535
- #: dashboard/publisher/groups-edit.php:386
1536
  msgid "Configuration errors."
1537
  msgstr "Грешки при конфигурирането."
1538
 
@@ -1544,11 +1535,6 @@ msgstr ""
1544
  msgid "Export to XML"
1545
  msgstr "Експорт в XML"
1546
 
1547
- #: dashboard/publisher/adverts-main.php:42
1548
- #: dashboard/publisher/groups-edit.php:336
1549
- msgid "Weight"
1550
- msgstr "Тежест"
1551
-
1552
  #: dashboard/publisher/adverts-main.php:45
1553
  #: dashboard/publisher/adverts-main.php:47
1554
  #: dashboard/publisher/groups-main.php:37
@@ -1586,6 +1572,13 @@ msgstr "Кликове днес"
1586
  msgid "Monthly overview of clicks and impressions"
1587
  msgstr "Месечен преглед на кликовете и импресиите"
1588
 
 
 
 
 
 
 
 
1589
  #: dashboard/publisher/adverts-report.php:64
1590
  #: dashboard/publisher/groups-report.php:65
1591
  msgid ""
@@ -1603,313 +1596,313 @@ msgstr "Нова група"
1603
  msgid "Edit Group"
1604
  msgstr "Редакция на група"
1605
 
1606
- #: dashboard/publisher/groups-edit.php:64
1607
  msgid "Default - Show one ad at a time"
1608
  msgstr "По подразбиране - показва се само една реклама"
1609
 
1610
- #: dashboard/publisher/groups-edit.php:65
1611
  msgid "Dynamic Mode - Show a different ad every few seconds"
1612
  msgstr ""
1613
  "Динамичен Режим - показва се различна реклама на определен брой секунди"
1614
 
1615
- #: dashboard/publisher/groups-edit.php:66
1616
  msgid "Block Mode - Show a block of adverts"
1617
  msgstr ""
1618
 
1619
- #: dashboard/publisher/groups-edit.php:70
1620
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1621
  msgstr ""
1622
  "Динамичен режим изисква jQuery. Можете да го включите от настройките на "
1623
  "AdRotate."
1624
 
1625
- #: dashboard/publisher/groups-edit.php:77
1626
- #: dashboard/publisher/groups-edit.php:104
1627
  msgid "Dynamic and Block Mode"
1628
  msgstr "Динамичен и блоков режим"
1629
 
1630
- #: dashboard/publisher/groups-edit.php:78
1631
  msgid "Only required if your group is in Dynamic or Block mode."
1632
  msgstr "Необходимо е само ако групата Ви е в Динамичен или Блоков режим."
1633
 
1634
- #: dashboard/publisher/groups-edit.php:82
1635
  msgid "Block size"
1636
  msgstr ""
1637
 
1638
- #: dashboard/publisher/groups-edit.php:88
1639
  msgid "rows"
1640
  msgstr "редове"
1641
 
1642
- #: dashboard/publisher/groups-edit.php:92
1643
  msgid "columns"
1644
  msgstr "колони"
1645
 
1646
- #: dashboard/publisher/groups-edit.php:95
1647
  msgid "Block Mode"
1648
  msgstr "Блоков режим"
1649
 
1650
- #: dashboard/publisher/groups-edit.php:95
1651
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1652
  msgstr ""
1653
 
1654
- #: dashboard/publisher/groups-edit.php:99
1655
  msgid "Advert size"
1656
  msgstr ""
1657
 
1658
- #: dashboard/publisher/groups-edit.php:101
1659
  msgid "pixel(s) wide"
1660
  msgstr "пиксела ширитина"
1661
 
1662
- #: dashboard/publisher/groups-edit.php:101
1663
  msgid "pixel(s) high."
1664
  msgstr "пиксела височина."
1665
 
1666
- #: dashboard/publisher/groups-edit.php:104
1667
  msgid ""
1668
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1669
  "recommended). Default: 125/125."
1670
  msgstr ""
1671
 
1672
- #: dashboard/publisher/groups-edit.php:108
1673
  msgid "Automated refresh"
1674
  msgstr "Автоматичен рефреш"
1675
 
1676
- #: dashboard/publisher/groups-edit.php:127
1677
  msgid "seconds."
1678
  msgstr "секунди."
1679
 
1680
- #: dashboard/publisher/groups-edit.php:130
1681
  msgid "Dynamic Mode"
1682
  msgstr "Динамичен режим"
1683
 
1684
- #: dashboard/publisher/groups-edit.php:130
1685
  msgid ""
1686
  "Load a new advert in this interval without reloading the page. Default: 6."
1687
  msgstr ""
1688
  "Зареждане на нова реклама през този интервал, без презареждане на "
1689
  "страницата. По подразбиране: 6."
1690
 
1691
- #: dashboard/publisher/groups-edit.php:141
1692
- #: dashboard/publisher/groups-edit.php:288
1693
  msgid ""
1694
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1695
  "Adverts\" and enter ID"
1696
  msgstr ""
1697
 
1698
- #: dashboard/publisher/groups-edit.php:153
1699
- #: dashboard/publisher/groups-edit.php:300
1700
- #: dashboard/publisher/groups-edit.php:392
1701
  msgid "Save Group"
1702
  msgstr "Запис на групата"
1703
 
1704
- #: dashboard/publisher/groups-edit.php:161
1705
  msgid "Advert Margin"
1706
  msgstr "Margin на рекламата"
1707
 
1708
- #: dashboard/publisher/groups-edit.php:163
1709
  msgid "pixel(s)"
1710
  msgstr "пиксел(а)"
1711
 
1712
- #: dashboard/publisher/groups-edit.php:166
1713
  msgid "A transparent area outside the advert in pixels. Default: 0."
1714
  msgstr "Прозрачна зона около рекламата, в пиксели. По подразбиране: 0."
1715
 
1716
- #: dashboard/publisher/groups-edit.php:166
1717
  msgid "Set to 0 to disable."
1718
  msgstr "Въведете 0 за деактивация."
1719
 
1720
- #: dashboard/publisher/groups-edit.php:166
1721
  msgid "Margins are automatically disabled for blocks where required."
1722
  msgstr ""
1723
 
1724
- #: dashboard/publisher/groups-edit.php:170
1725
  msgid "Align the group"
1726
  msgstr ""
1727
 
1728
- #: dashboard/publisher/groups-edit.php:173
1729
  msgid "None (Default)"
1730
  msgstr ""
1731
 
1732
- #: dashboard/publisher/groups-edit.php:174
1733
  msgid "Left"
1734
  msgstr ""
1735
 
1736
- #: dashboard/publisher/groups-edit.php:175
1737
  msgid "Right"
1738
  msgstr ""
1739
 
1740
- #: dashboard/publisher/groups-edit.php:176
1741
  msgid "Center"
1742
  msgstr ""
1743
 
1744
- #: dashboard/publisher/groups-edit.php:180
1745
  msgid ""
1746
  "Align the group in your post or page. Using 'center' may affect your margin "
1747
  "setting. Not every theme supports this feature."
1748
  msgstr ""
1749
 
1750
- #: dashboard/publisher/groups-edit.php:184
1751
- #: dashboard/settings/advertisers.php:28
1752
  msgid "Geo Targeting"
1753
  msgstr "Таргетиране спрямо местоположението"
1754
 
1755
- #: dashboard/publisher/groups-edit.php:185
1756
  msgid "Enable Geo Targeting for this group."
1757
  msgstr ""
1758
 
1759
- #: dashboard/publisher/groups-edit.php:186
1760
  msgid "Do not forget to tell the adverts for which areas they should show."
1761
  msgstr "Не забравяйте да кажете на рекламите в кои зони трябва да се показват."
1762
 
1763
- #: dashboard/publisher/groups-edit.php:189
1764
  msgid "Mobile support"
1765
  msgstr ""
1766
 
1767
- #: dashboard/publisher/groups-edit.php:190
1768
  msgid "Enable mobile support for this group."
1769
  msgstr ""
1770
 
1771
- #: dashboard/publisher/groups-edit.php:191
1772
  msgid "Do not forget to put at least one mobile advert in this group."
1773
  msgstr ""
1774
 
1775
- #: dashboard/publisher/groups-edit.php:196
1776
  msgid "Leave empty or 0 to skip this. Will default to group id."
1777
  msgstr ""
1778
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
1779
  "на групата."
1780
 
1781
- #: dashboard/publisher/groups-edit.php:200
1782
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1783
  msgstr ""
1784
 
1785
- #: dashboard/publisher/groups-edit.php:205
1786
  msgid "In categories?"
1787
  msgstr ""
1788
 
1789
- #: dashboard/publisher/groups-edit.php:209
1790
- #: dashboard/publisher/groups-edit.php:247
1791
- #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1792
  msgid "Disabled"
1793
  msgstr "Изключено"
1794
 
1795
- #: dashboard/publisher/groups-edit.php:210
1796
- #: dashboard/publisher/groups-edit.php:248
1797
  msgid "Before content"
1798
  msgstr "Преди съдържанието"
1799
 
1800
- #: dashboard/publisher/groups-edit.php:211
1801
- #: dashboard/publisher/groups-edit.php:249
1802
  msgid "After content"
1803
  msgstr "След съдържанието"
1804
 
1805
- #: dashboard/publisher/groups-edit.php:212
1806
- #: dashboard/publisher/groups-edit.php:250
1807
  msgid "Before and after content"
1808
  msgstr "Преди и след съдържанието"
1809
 
1810
- #: dashboard/publisher/groups-edit.php:213
1811
- #: dashboard/publisher/groups-edit.php:251
1812
  msgid "Inside the content..."
1813
  msgstr ""
1814
 
1815
- #: dashboard/publisher/groups-edit.php:219
1816
- #: dashboard/publisher/groups-edit.php:257
1817
  msgid "after the middle paragraph"
1818
  msgstr ""
1819
 
1820
- #: dashboard/publisher/groups-edit.php:220
1821
- #: dashboard/publisher/groups-edit.php:258
1822
  msgid "after the 1st paragraph"
1823
  msgstr ""
1824
 
1825
- #: dashboard/publisher/groups-edit.php:221
1826
- #: dashboard/publisher/groups-edit.php:259
1827
  msgid "after the 2nd paragraph"
1828
  msgstr ""
1829
 
1830
- #: dashboard/publisher/groups-edit.php:222
1831
- #: dashboard/publisher/groups-edit.php:260
1832
  msgid "after the 3rd paragraph"
1833
  msgstr ""
1834
 
1835
- #: dashboard/publisher/groups-edit.php:223
1836
- #: dashboard/publisher/groups-edit.php:261
1837
  msgid "after the 4th paragraph"
1838
  msgstr ""
1839
 
1840
- #: dashboard/publisher/groups-edit.php:224
1841
- #: dashboard/publisher/groups-edit.php:262
1842
  msgid "after the 5th paragraph"
1843
  msgstr ""
1844
 
1845
- #: dashboard/publisher/groups-edit.php:225
1846
- #: dashboard/publisher/groups-edit.php:263
1847
  msgid "after the 6th paragraph"
1848
  msgstr ""
1849
 
1850
- #: dashboard/publisher/groups-edit.php:226
1851
- #: dashboard/publisher/groups-edit.php:264
1852
  msgid "after the 7th paragraph"
1853
  msgstr ""
1854
 
1855
- #: dashboard/publisher/groups-edit.php:227
1856
- #: dashboard/publisher/groups-edit.php:265
1857
  msgid "after the 8th paragraph"
1858
  msgstr ""
1859
 
1860
- #: dashboard/publisher/groups-edit.php:233
1861
  msgid "Which categories?"
1862
  msgstr "Кои категории?"
1863
 
1864
- #: dashboard/publisher/groups-edit.php:238
1865
  msgid "Click the categories posts you want the adverts to show in."
1866
  msgstr "Изберете категориите, на които искате да се показват рекламите."
1867
 
1868
- #: dashboard/publisher/groups-edit.php:243
1869
  msgid "In pages?"
1870
  msgstr ""
1871
 
1872
- #: dashboard/publisher/groups-edit.php:271
1873
  msgid "Which pages?"
1874
  msgstr "Кои страници?"
1875
 
1876
- #: dashboard/publisher/groups-edit.php:276
1877
  msgid "Click the pages you want the adverts to show in."
1878
  msgstr "Изберете страниците, на които искате да се показват рекламите."
1879
 
1880
- #: dashboard/publisher/groups-edit.php:304
1881
  msgid "Wrapper code"
1882
  msgstr "Код за обвивката"
1883
 
1884
- #: dashboard/publisher/groups-edit.php:305
1885
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1886
  msgstr ""
1887
 
1888
- #: dashboard/publisher/groups-edit.php:309
1889
  msgid "Before advert"
1890
  msgstr ""
1891
 
1892
- #: dashboard/publisher/groups-edit.php:313
1893
  msgid "Options:"
1894
  msgstr "Настройки:"
1895
 
1896
- #: dashboard/publisher/groups-edit.php:317
1897
  msgid "After advert"
1898
  msgstr ""
1899
 
1900
- #: dashboard/publisher/groups-edit.php:326
1901
  msgid "Select adverts"
1902
  msgstr ""
1903
 
1904
- #: dashboard/publisher/groups-edit.php:331
1905
  msgid "Choose adverts"
1906
  msgstr ""
1907
 
1908
- #: dashboard/publisher/groups-edit.php:337
1909
  msgid "Visible until"
1910
  msgstr "Да се вижда до"
1911
 
1912
- #: dashboard/publisher/groups-edit.php:379
1913
  msgid "No adverts created!"
1914
  msgstr ""
1915
 
@@ -1929,8 +1922,8 @@ msgstr "На път сте да изтриете група"
1929
  msgid "This action can not be undone!"
1930
  msgstr "Това действие е необратимо!"
1931
 
1932
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
1933
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
1934
  msgid "OK to continue, CANCEL to stop."
1935
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1936
 
@@ -1942,157 +1935,172 @@ msgstr "Няма създадени групи!"
1942
  msgid "Statistics for group"
1943
  msgstr "Статистика за групи"
1944
 
1945
- #: dashboard/settings/advertisers.php:12
1946
  msgid "Advertisers - Available in AdRotate Pro"
1947
  msgstr ""
1948
 
1949
- #: dashboard/settings/advertisers.php:13
1950
  msgid "Enable advertisers so they can review and manage their own ads."
1951
  msgstr ""
1952
  "Активирайте страницата за рекламодатели, за да могат сами да следят и "
1953
  "управляват рекламите си."
1954
 
1955
- #: dashboard/settings/advertisers.php:16
1956
  msgid "Enable Advertisers"
1957
  msgstr "Активиране на страницата за рекламодатели"
1958
 
1959
- #: dashboard/settings/advertisers.php:18
1960
  msgid "Allow adverts to be coupled to users (Advertisers)."
1961
  msgstr "Позволи рекламите да бъдат свързвани с потребители (Рекламодатели)."
1962
 
1963
- #: dashboard/settings/advertisers.php:22
1964
  msgid "Edit/update adverts"
1965
  msgstr "Редакция/Обновяване на реклами"
1966
 
1967
- #: dashboard/settings/advertisers.php:24
1968
  msgid "Allow advertisers to add new or edit their adverts."
1969
  msgstr "Позволяване на рекламодателите да редактират или добавят реклами."
1970
 
1971
- #: dashboard/settings/advertisers.php:30
 
 
 
 
 
 
 
 
1972
  msgid ""
1973
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
1974
  "be enabled, too."
1975
  msgstr ""
1976
 
1977
- #: dashboard/settings/advertisers.php:34
1978
  msgid "Advertiser role"
1979
  msgstr "Роля на рекламодатели"
1980
 
1981
- #: dashboard/settings/advertisers.php:36
1982
  msgid "Create a seperate user role for your advertisers."
1983
  msgstr ""
1984
 
1985
- #: dashboard/settings/advertisers.php:37
1986
  msgid ""
1987
  "Don't forget to give these users access to their advertiser dashboard via "
1988
  "the Roles tab."
1989
  msgstr ""
1990
 
1991
- #: dashboard/settings/general.php:12
 
 
 
 
 
 
 
1992
  msgid "General Settings"
1993
  msgstr ""
1994
 
1995
- #: dashboard/settings/general.php:13
1996
  msgid "General settings for AdRotate."
1997
  msgstr ""
1998
 
1999
- #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2000
  msgid "Some options are only available in AdRotate Pro!"
2001
  msgstr ""
2002
 
2003
- #: dashboard/settings/general.php:16
2004
  msgid "Shortcode in widgets"
2005
  msgstr ""
2006
 
2007
- #: dashboard/settings/general.php:17
2008
  msgid ""
2009
  "Enable this option to if your theme does not support shortcodes in the "
2010
  "WordPress text widget."
2011
  msgstr ""
2012
 
2013
- #: dashboard/settings/general.php:20
2014
  msgid "Disable live preview"
2015
  msgstr ""
2016
 
2017
- #: dashboard/settings/general.php:21
2018
  msgid ""
2019
  "Enable this option if you have faulty adverts that overflow their designated "
2020
  "area while creating/editing adverts."
2021
  msgstr ""
2022
 
2023
- #: dashboard/settings/general.php:24
2024
  msgid "Disable dynamic mode"
2025
  msgstr ""
2026
 
2027
- #: dashboard/settings/general.php:25
2028
  msgid ""
2029
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2030
  "you notice skipping or jumpy content."
2031
  msgstr ""
2032
 
2033
- #: dashboard/settings/general.php:28
2034
  msgid "Load jQuery"
2035
  msgstr "Зареди jQuery"
2036
 
2037
- #: dashboard/settings/general.php:29
2038
  msgid ""
2039
  "Enable this option if your theme does not load jQuery. jQuery is required "
2040
  "for dynamic groups, statistics and some other features."
2041
  msgstr ""
2042
 
2043
- #: dashboard/settings/general.php:32
2044
  msgid "Load scripts in footer?"
2045
  msgstr ""
2046
 
2047
- #: dashboard/settings/general.php:33
2048
  msgid ""
2049
  "Enable this option if you want to load all AdRotate Javascripts in the "
2050
  "footer of your site."
2051
  msgstr ""
2052
 
2053
- #: dashboard/settings/general.php:36
2054
  msgid "Adblock disguise"
2055
  msgstr ""
2056
 
2057
- #: dashboard/settings/general.php:38
2058
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2059
  msgstr ""
2060
 
2061
- #: dashboard/settings/general.php:39
2062
  msgid ""
2063
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2064
  msgstr ""
2065
 
2066
- #: dashboard/settings/general.php:39
2067
  msgid ""
2068
  "To also apply this feature to widgets, use a text widget with a shortcode "
2069
  "instead of the AdRotate widget."
2070
  msgstr ""
2071
 
2072
- #: dashboard/settings/general.php:39
2073
  msgid ""
2074
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2075
  "feature will have little effect!"
2076
  msgstr ""
2077
 
2078
- #: dashboard/settings/general.php:44
2079
  msgid "Banner Folder"
2080
  msgstr "Папка с банери"
2081
 
2082
- #: dashboard/settings/general.php:45
2083
  msgid "Set a location where your banner images will be stored."
2084
  msgstr ""
2085
  "Задайте местоположение, където да се записват вашите картинки за банери."
2086
 
2087
- #: dashboard/settings/general.php:48
2088
  msgid "Location"
2089
  msgstr "Местоположение"
2090
 
2091
- #: dashboard/settings/general.php:50
2092
  msgid "(Default: wp-content/banners/)."
2093
  msgstr "(По подразбиране: wp-content/banners/)."
2094
 
2095
- #: dashboard/settings/general.php:51
2096
  msgid ""
2097
  "To try and trick ad blockers you could set the folder to something crazy "
2098
  "like:"
@@ -2100,7 +2108,7 @@ msgstr ""
2100
  "Опитайте да заблудите AdBlocker-ите, като използвате шантаво име за папката, "
2101
  "като например:"
2102
 
2103
- #: dashboard/settings/general.php:52
2104
  msgid ""
2105
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2106
  "will show errors when the folder is missing."
@@ -2108,121 +2116,153 @@ msgstr ""
2108
  "Папката няма да бъде създадена автоматично, ако не съществува. AdRotate ще "
2109
  "показва грешки, ако папката не съществува."
2110
 
2111
- #: dashboard/settings/general.php:57
2112
  msgid "Bot filter"
2113
  msgstr "Филтър на ботове"
2114
 
2115
- #: dashboard/settings/general.php:58
2116
  msgid "The bot filter is used for the AdRotate stats tracker."
2117
  msgstr ""
2118
 
2119
- #: dashboard/settings/general.php:61
2120
  msgid "User-Agent Filter"
2121
  msgstr "Филтър за агенти"
2122
 
2123
- #: dashboard/settings/general.php:64
2124
  msgid ""
2125
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2126
  msgstr ""
2127
 
2128
- #: dashboard/settings/general.php:65
2129
  msgid ""
2130
  "Keep in mind that this might give false positives. The word 'fire' also "
2131
  "matches 'firefox', but not vice-versa. So be careful!"
2132
  msgstr ""
2133
 
2134
- #: dashboard/settings/general.php:66
2135
  msgid ""
2136
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2137
  "characters are stripped out."
2138
  msgstr ""
2139
 
2140
- #: dashboard/settings/general.php:67
2141
  msgid ""
2142
  "Additionally to the list specified here, empty User-Agents are blocked as "
2143
  "well."
2144
  msgstr "Освен този списък, празни Агенти също ще бъдат блокирани."
2145
 
2146
- #: dashboard/settings/general.php:67
2147
  msgid "Learn more about"
2148
  msgstr "Научете повече за"
2149
 
2150
- #: dashboard/settings/general.php:67
2151
  msgid "user-agents"
2152
  msgstr "агенти"
2153
 
2154
- #: dashboard/settings/geotargeting.php:12
2155
  msgid "Geo Targeting - Available in AdRotate Pro"
2156
  msgstr ""
2157
 
2158
- #: dashboard/settings/geotargeting.php:13
2159
  msgid "Target certain areas in the world for better advertising oppurtunities."
2160
  msgstr ""
2161
 
2162
- #: dashboard/settings/geotargeting.php:16
2163
  msgid "Which Geo Service"
2164
  msgstr ""
2165
 
2166
- #: dashboard/settings/geotargeting.php:25
2167
- msgid ""
2168
- "The most complete and accurate geo targeting you can get for only $20 USD "
2169
- "per 50000 lookups."
2170
  msgstr ""
2171
 
2172
- #: dashboard/settings/geotargeting.php:27
2173
- msgid "Free lookups every day, uses GeoLite2 databases from MaxMind!"
 
 
 
 
 
 
2174
  msgstr ""
2175
 
2176
  #: dashboard/settings/geotargeting.php:33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2177
  msgid "Geo Cookie Lifespan"
2178
  msgstr ""
2179
 
2180
- #: dashboard/settings/geotargeting.php:42
2181
  msgid "Hours."
2182
  msgstr ""
2183
 
2184
- #: dashboard/settings/geotargeting.php:43
2185
  msgid ""
2186
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2187
  "cookie last? A longer period is less accurate for mobile users but may "
2188
  "reduce the usage of your lookups drastically."
2189
  msgstr ""
2190
 
2191
- #: dashboard/settings/geotargeting.php:49
2192
  msgid "MaxMind City/Country"
2193
  msgstr ""
2194
 
2195
- #: dashboard/settings/geotargeting.php:52
2196
  msgid "Username/Email"
2197
  msgstr ""
2198
 
2199
- #: dashboard/settings/geotargeting.php:56
2200
  msgid "Password/License Key"
2201
  msgstr ""
2202
 
2203
- #: dashboard/settings/maintenance.php:12
2204
  msgid "Maintenance"
2205
  msgstr "Поддръжка"
2206
 
2207
- #: dashboard/settings/maintenance.php:13
2208
  msgid ""
2209
  "Use these functions when you notice your database is slow, unresponsive and "
2210
  "sluggish."
2211
  msgstr ""
2212
 
2213
- #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2214
  msgid "Optimize Database"
2215
  msgstr "Оптимизиране на базата данни"
2216
 
2217
- #: dashboard/settings/maintenance.php:18
2218
  msgid "You are about to optimize the AdRotate database."
2219
  msgstr "На път сте да оптимизирате базата данни на AdRotate."
2220
 
2221
- #: dashboard/settings/maintenance.php:18
2222
  msgid "Did you make a backup of your database?"
2223
  msgstr "Направихте ли резервно копие на своята база данни?"
2224
 
2225
- #: dashboard/settings/maintenance.php:18
2226
  msgid ""
2227
  "This may take a moment and may cause your website to respond slow "
2228
  "temporarily!"
@@ -2230,11 +2270,11 @@ msgstr ""
2230
  "Това ще отнеме малко време и може да накара сайта Ви да работи по-бавно за "
2231
  "момент!"
2232
 
2233
- #: dashboard/settings/maintenance.php:19
2234
  msgid "Cleans up overhead data in the AdRotate tables."
2235
  msgstr "Почиста overhead данните в таблиците на AdRotate."
2236
 
2237
- #: dashboard/settings/maintenance.php:20
2238
  msgid ""
2239
  "Overhead data is accumulated garbage resulting from many changes you've "
2240
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2242,11 +2282,11 @@ msgstr ""
2242
  "Overhead данните са боклук, акумулиран в резултат на множеството промени, "
2243
  "които правите. Те могар да варират от 0 до хиляди KB."
2244
 
2245
- #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2246
  msgid "Clean-up Database"
2247
  msgstr "Почистване на базата данни"
2248
 
2249
- #: dashboard/settings/maintenance.php:26
2250
  msgid ""
2251
  "You are about to clean up your database. This may delete expired schedules "
2252
  "and older statistics."
@@ -2254,51 +2294,51 @@ msgstr ""
2254
  "На път сте да почистите базата с данни. Това може да изтрие истекли графици "
2255
  "и стари статистики."
2256
 
2257
- #: dashboard/settings/maintenance.php:26
2258
  msgid "Are you sure you want to continue?"
2259
  msgstr "Сигурни ли сте, че искате да продължите?"
2260
 
2261
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2262
  msgid "This might take a while and may slow down your site during this action!"
2263
  msgstr ""
2264
  "Това действие ще отнеме време и може да забави сайта ви по време на "
2265
  "изпълнението му!"
2266
 
2267
- #: dashboard/settings/maintenance.php:27
2268
  msgid "Delete stats older than 356 days (Optional)."
2269
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
2270
 
2271
- #: dashboard/settings/maintenance.php:28
2272
  msgid ""
2273
  "AdRotate creates empty records when you start making ads, groups or "
2274
  "schedules. In rare occasions these records are faulty."
2275
  msgstr ""
2276
 
2277
- #: dashboard/settings/maintenance.php:28
2278
  msgid ""
2279
  "If you made an ad, group or schedule that does not save when you make it use "
2280
  "this button to delete those empty records."
2281
  msgstr ""
2282
 
2283
- #: dashboard/settings/maintenance.php:28
2284
  msgid ""
2285
  "Additionally you can clean up old schedules and/or statistics. This will "
2286
  "improve the speed of your site."
2287
  msgstr ""
2288
 
2289
- #: dashboard/settings/maintenance.php:32
2290
  msgid "Re-evaluate Ads"
2291
  msgstr "Преоценка на реклами"
2292
 
2293
- #: dashboard/settings/maintenance.php:34
2294
  msgid "Re-evaluate all ads"
2295
  msgstr "Преоценка на всички реклами"
2296
 
2297
- #: dashboard/settings/maintenance.php:34
2298
  msgid "You are about to check all ads for errors."
2299
  msgstr "На път сте да проверите всички реклами за грешки."
2300
 
2301
- #: dashboard/settings/maintenance.php:35
2302
  msgid ""
2303
  "This will apply all evaluation rules to all ads to see if any error slipped "
2304
  "in. Normally you should not need this feature."
@@ -2306,7 +2346,7 @@ msgstr ""
2306
  "Това ще провери всички реклами за грешки. Попринцип не би трябвало да имате "
2307
  "нужда от тази функция."
2308
 
2309
- #: dashboard/settings/maintenance.php:39
2310
  msgid ""
2311
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2312
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2319,11 +2359,11 @@ msgid ""
2319
  "is not a valid point in any case."
2320
  msgstr ""
2321
 
2322
- #: dashboard/settings/maintenance.php:41
2323
  msgid "Troubleshooting"
2324
  msgstr "Отстраняване на проблеми"
2325
 
2326
- #: dashboard/settings/maintenance.php:42
2327
  msgid ""
2328
  "The below options are not meant for normal use and are only there for "
2329
  "developers to review saved settings or how ads are selected. These can be "
@@ -2331,19 +2371,19 @@ msgid ""
2331
  "SHOULD BE LEFT UNCHECKED!!"
2332
  msgstr ""
2333
 
2334
- #: dashboard/settings/maintenance.php:45
2335
  msgid "Developer Debug"
2336
  msgstr "Developer Debug"
2337
 
2338
- #: dashboard/settings/maintenance.php:47
2339
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2340
  msgstr ""
2341
 
2342
- #: dashboard/settings/maintenance.php:48
2343
  msgid "View advert specs and (some) stats in the dashboard."
2344
  msgstr ""
2345
 
2346
- #: dashboard/settings/maintenance.php:49
2347
  msgid ""
2348
  "Disable timers for clicks and impressions and enable a alert window for "
2349
  "clicktracking."
@@ -2351,89 +2391,106 @@ msgstr ""
2351
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
2352
  "за проследяване на кликове."
2353
 
2354
- #: dashboard/settings/maintenance.php:50
2355
  msgid "Temporarily disable encryption on the redirect url."
2356
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
2357
 
2358
- #: dashboard/settings/maintenance.php:55
2359
  msgid "Status and Versions"
2360
  msgstr ""
2361
 
2362
- #: dashboard/settings/maintenance.php:58
2363
- msgid "Current version:"
2364
- msgstr "Текуща версия:"
2365
-
2366
- #: dashboard/settings/maintenance.php:59
2367
- msgid "Previous version:"
2368
- msgstr "Предишна версия:"
2369
-
2370
  #: dashboard/settings/maintenance.php:62
2371
- msgid "Current database version:"
2372
- msgstr "Текуща верския на базата данни:"
2373
-
2374
- #: dashboard/settings/maintenance.php:63
2375
- msgid "Previous database version:"
2376
- msgstr "Предишна версия на базата данни:"
2377
-
2378
- #: dashboard/settings/maintenance.php:66
2379
  msgid "Current status of adverts"
2380
  msgstr "Настоящ статус на рекламите"
2381
 
2382
- #: dashboard/settings/maintenance.php:67
2383
  msgid "Normal"
2384
  msgstr "Нормално"
2385
 
2386
- #: dashboard/settings/maintenance.php:67
2387
  msgid "Error"
2388
  msgstr "Грешка"
2389
 
2390
- #: dashboard/settings/maintenance.php:67
2391
  msgid "Expired"
2392
  msgstr "Изтекло"
2393
 
2394
- #: dashboard/settings/maintenance.php:67
2395
  msgid "Expires Soon"
2396
  msgstr "Изтича скоро"
2397
 
2398
- #: dashboard/settings/maintenance.php:67
2399
  msgid "Unknown"
2400
  msgstr ""
2401
 
2402
- #: dashboard/settings/maintenance.php:70
2403
  msgid "Banners/assets Folder"
2404
  msgstr ""
2405
 
2406
- #: dashboard/settings/maintenance.php:72
2407
  msgid "Exists and appears writable"
2408
  msgstr ""
2409
 
2410
- #: dashboard/settings/maintenance.php:72
2411
  msgid "Not writable or does not exist"
2412
  msgstr ""
2413
 
 
 
 
 
2414
  #: dashboard/settings/maintenance.php:76
2415
- #, fuzzy
2416
- msgid "Ad evaluation next run:"
2417
- msgstr "Оценка на рекламата:"
2418
 
2419
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
2420
- msgid "Not scheduled!"
2421
- msgstr "Не е планирано!"
2422
 
2423
- #: dashboard/settings/maintenance.php:80
2424
- #, fuzzy
2425
- msgid "Clean Trackerdata next run:"
2426
- msgstr "Изчистване на Trackerdata при следващо стартиране:"
 
 
 
2427
 
2428
- #: dashboard/settings/misc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2429
  msgid "Miscellaneous"
2430
  msgstr "Разни"
2431
 
2432
- #: dashboard/settings/misc.php:15
2433
  msgid "Widget alignment"
2434
  msgstr "Подравняване на джаджата"
2435
 
2436
- #: dashboard/settings/misc.php:16
2437
  msgid ""
2438
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2439
  "not always help!)"
@@ -2441,11 +2498,11 @@ msgstr ""
2441
  "Сложете отметка, ако джаджите не са добре подравнени в страничната лента на "
2442
  "темата Ви. (Не винаги помага)"
2443
 
2444
- #: dashboard/settings/misc.php:19
2445
  msgid "Widget padding"
2446
  msgstr "Padding за джаджата"
2447
 
2448
- #: dashboard/settings/misc.php:20
2449
  msgid ""
2450
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2451
  "not always work!)"
@@ -2453,35 +2510,35 @@ msgstr ""
2453
  "Сложете отметка, за да премахнете празното пространство около рекламите в "
2454
  "джаджата. (Не винаги работи!)"
2455
 
2456
- #: dashboard/settings/misc.php:24
2457
  msgid "NOTICE:"
2458
  msgstr "ЗАБЕЛЕЖКА:"
2459
 
2460
- #: dashboard/settings/misc.php:25
2461
  msgid ""
2462
  "You have enabled W3 Total Caching support but not defined the security hash."
2463
  msgstr ""
2464
 
2465
- #: dashboard/settings/misc.php:25
2466
  msgid ""
2467
  "AdRotate has generated the following line for you to add to your wp-config."
2468
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2469
  "add this line, check out the following guide;"
2470
  msgstr ""
2471
 
2472
- #: dashboard/settings/misc.php:25
2473
  msgid "Set up W3 Total Caching"
2474
  msgstr ""
2475
 
2476
- #: dashboard/settings/misc.php:29
2477
  msgid "W3 Total Caching"
2478
  msgstr "W3 Total Caching"
2479
 
2480
- #: dashboard/settings/misc.php:30
2481
  msgid "Check this box if you use W3 Total Caching on your site."
2482
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
2483
 
2484
- #: dashboard/settings/misc.php:34
2485
  msgid ""
2486
  "It may take a while for the ad to start rotating. The caching plugin needs "
2487
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2490,7 +2547,7 @@ msgstr ""
2490
  "Кеширащото разширение трябва да обнови данните. Това може да отнеме до една "
2491
  "седмица, ако не го направите ръчно."
2492
 
2493
- #: dashboard/settings/misc.php:34
2494
  msgid ""
2495
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2496
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2499,31 +2556,31 @@ msgstr ""
2499
  "на AdRotate. Ако използвате PHP кода, трябва да го поставите в изключващ код "
2500
  "сами."
2501
 
2502
- #: dashboard/settings/notifications.php:12
2503
  msgid "Notifications"
2504
  msgstr "Известия"
2505
 
2506
- #: dashboard/settings/notifications.php:13
2507
  msgid "Set up who gets notifications if ads need your attention."
2508
  msgstr "Изберете кой да получава известие, ако реклама се нуждае от внимание."
2509
 
2510
- #: dashboard/settings/notifications.php:16
2511
  msgid "How to notify"
2512
  msgstr ""
2513
 
2514
- #: dashboard/settings/notifications.php:18
2515
  msgid "Dashboard banner."
2516
  msgstr ""
2517
 
2518
- #: dashboard/settings/notifications.php:19
2519
  msgid "Email message."
2520
  msgstr "Email съобщение."
2521
 
2522
- #: dashboard/settings/notifications.php:20
2523
  msgid "Push notifications to your smartphone."
2524
  msgstr "Push известия към вашия смартфон."
2525
 
2526
- #: dashboard/settings/notifications.php:21
2527
  msgid ""
2528
  "Push notifications are delivered through Pushover, a notification service "
2529
  "for Android and iOS"
@@ -2531,7 +2588,7 @@ msgstr ""
2531
  "Push известията се доставят чрез Pushover, услуга за известия за Android и "
2532
  "iOS"
2533
 
2534
- #: dashboard/settings/notifications.php:21
2535
  msgid ""
2536
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2537
  "information can be found on the pushover website;"
@@ -2539,117 +2596,81 @@ msgstr ""
2539
  "Приложението Pushover изисква еднократна поръчка за Android и/или iOS. "
2540
  "Повече информация можете да намерите на сайта на разработчика;"
2541
 
2542
- #: dashboard/settings/notifications.php:25
2543
  msgid "Test notification"
2544
  msgstr ""
2545
 
2546
- #: dashboard/settings/notifications.php:27
2547
  msgid "Test"
2548
  msgstr "Тест"
2549
 
2550
- #: dashboard/settings/notifications.php:27
2551
  msgid ""
2552
  "Send a test notification to enabled methods. Before you test, save the "
2553
  "options first!"
2554
  msgstr ""
2555
 
2556
- #: dashboard/settings/notifications.php:32
2557
- msgid "Dashboard"
2558
  msgstr ""
2559
 
2560
- #: dashboard/settings/notifications.php:33
2561
  msgid ""
2562
  "These go in a dashboard banner visible to all users with access to AdRotate "
2563
  "on every WordPress dashboard page."
2564
  msgstr ""
2565
 
2566
- #: dashboard/settings/notifications.php:36
2567
- #: dashboard/settings/notifications.php:68
 
2568
  msgid "What"
2569
  msgstr ""
2570
 
2571
- #: dashboard/settings/notifications.php:38
2572
  msgid "Expired adverts."
2573
  msgstr ""
2574
 
2575
- #: dashboard/settings/notifications.php:39
2576
  msgid "Almost expired adverts."
2577
  msgstr ""
2578
 
2579
- #: dashboard/settings/notifications.php:44
2580
- msgid "Email"
2581
  msgstr ""
2582
 
2583
- #: dashboard/settings/notifications.php:45
2584
- msgid "Set up who gets notification emails."
2585
- msgstr "Задайте кой да получава известия по email."
2586
-
2587
- #: dashboard/settings/notifications.php:48
2588
- msgid "Publishers"
2589
- msgstr "Издатели"
2590
-
2591
  #: dashboard/settings/notifications.php:51
2592
  msgid ""
2593
- "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2594
- "list to a minimum!"
2595
  msgstr ""
2596
- "За разделител използвайте запетая. Максимум 5 адреса. Използвайте възможно "
2597
- "най-малко адреси в този списък!"
2598
-
2599
- #: dashboard/settings/notifications.php:52
2600
- msgid ""
2601
- "Messages are sent once every 24 hours when needed. If this field is empty no "
2602
- "email notifications will be send."
2603
- msgstr ""
2604
- "Съобщенията се изпращат когато е необходимо, но не по-често от веднъж на 24 "
2605
- "часа. Ако полето е празно няма да се изпращат известия по email."
2606
 
2607
  #: dashboard/settings/notifications.php:56
2608
- msgid "Advertisers"
2609
- msgstr "Рекламодатели"
2610
-
2611
- #: dashboard/settings/notifications.php:59
2612
- msgid ""
2613
- "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2614
- "This field may not be empty!"
2615
- msgstr ""
2616
- "Кой да получава email съобщения от рекламодатели. Максимум 2 адреса, "
2617
- "разделени със запетая. Полето не може да бъде празно!"
2618
-
2619
- #: dashboard/settings/notifications.php:64
2620
- msgid "Push"
2621
- msgstr ""
2622
-
2623
- #: dashboard/settings/notifications.php:65
2624
- msgid ""
2625
- "Receive information about what is happening with your AdRotate setup on your "
2626
- "smartphone via Pushover."
2627
  msgstr ""
2628
- "Получавайте информация относно случващото се с вашата AdRotate инсталация "
2629
- "директно на смартфона си чрез Pushover."
2630
 
2631
- #: dashboard/settings/notifications.php:70
 
2632
  msgid "When you are running out of Geo Targeting Lookups."
2633
  msgstr ""
2634
 
2635
- #: dashboard/settings/notifications.php:71
2636
- msgid "Daily digest of any advert status other than normal."
2637
- msgstr ""
2638
- "Изпращане на дневен отчет с обявите, чийто статус е различен от нормален."
2639
-
2640
- #: dashboard/settings/notifications.php:72
2641
  msgid "Any advertiser saving an advert in your moderation queue."
2642
  msgstr "Всеки рекламодател, записващ реклама в опашката за одобрение."
2643
 
2644
- #: dashboard/settings/notifications.php:73
 
2645
  msgid "A moderator approved an advert from the moderation queue."
2646
  msgstr "Модератора е одобрил реклама от опашката за одобрение."
2647
 
2648
- #: dashboard/settings/notifications.php:74
 
2649
  msgid "A moderator rejected an advert from the moderation queue."
2650
  msgstr "Модератора е отхвърлил реклама от опашката за одобрение."
2651
 
2652
- #: dashboard/settings/notifications.php:74
 
2653
  msgid ""
2654
  "If you have a lot of activity with many advertisers adding/changing adverts "
2655
  "you may get a lot of messages!"
@@ -2657,184 +2678,283 @@ msgstr ""
2657
  "Ако имате множество дейности с много рекламодатели, които добавят/променят "
2658
  "реклами, то ще получавате много съобщения!"
2659
 
2660
- #: dashboard/settings/notifications.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2661
  msgid "User Key"
2662
  msgstr "Потребителски ключ"
2663
 
2664
- #: dashboard/settings/notifications.php:81
2665
  msgid "Get your user token"
2666
  msgstr ""
2667
 
2668
- #: dashboard/settings/notifications.php:81
2669
- #: dashboard/settings/notifications.php:87
2670
  msgid "here"
2671
  msgstr ""
2672
 
2673
- #: dashboard/settings/notifications.php:85
2674
  msgid "Api Token"
2675
  msgstr "Api Token"
2676
 
2677
- #: dashboard/settings/notifications.php:87
2678
  msgid "Create your"
2679
  msgstr ""
2680
 
2681
- #: dashboard/settings/notifications.php:87
2682
  msgid "App"
2683
  msgstr ""
2684
 
2685
- #: dashboard/settings/notifications.php:87
2686
  msgid "and get your API token"
2687
  msgstr ""
2688
 
2689
- #: dashboard/settings/roles.php:12
2690
  msgid "Roles"
2691
  msgstr ""
2692
 
2693
- #: dashboard/settings/roles.php:13
2694
  msgid "Who has access to what?"
2695
  msgstr "Кой до какво има достъп?"
2696
 
2697
- #: dashboard/settings/roles.php:16
2698
  msgid "Manage/Add/Edit adverts"
2699
  msgstr "Управление/Добавяне/Редакция на обяви"
2700
 
2701
- #: dashboard/settings/roles.php:20
2702
  msgid "Role to see and add/edit ads."
2703
  msgstr "Роля, позволяваща преглед, добавяне и редакция на реклами."
2704
 
2705
- #: dashboard/settings/roles.php:24
2706
  msgid "Delete/Reset adverts"
2707
  msgstr "Изтриване/Нулиране на реклами"
2708
 
2709
- #: dashboard/settings/roles.php:28
2710
  msgid "Role to delete ads and reset stats."
2711
  msgstr "Роля, позволяваща изтриване на реклами и нулиране на статистика."
2712
 
2713
- #: dashboard/settings/roles.php:32
2714
  msgid "Manage/Add/Edit groups"
2715
  msgstr "Управление/Добавяне/Редакция на групи"
2716
 
2717
- #: dashboard/settings/roles.php:36
2718
  msgid "Role to see and add/edit groups."
2719
  msgstr "Роля, позволяваща преглед, добавяне и редакция на групи."
2720
 
2721
- #: dashboard/settings/roles.php:40
2722
  msgid "Delete groups"
2723
  msgstr "Изтриване на групи"
2724
 
2725
- #: dashboard/settings/roles.php:44
2726
  msgid "Role to delete groups."
2727
  msgstr "Роля за изтриване на групи."
2728
 
2729
- #: dashboard/settings/statistics.php:13
2730
  msgid "Track statistics for your adverts."
2731
  msgstr ""
2732
 
2733
- #: dashboard/settings/statistics.php:16
2734
  msgid "How to track stats"
2735
  msgstr ""
2736
 
2737
- #: dashboard/settings/statistics.php:25
2738
  msgid "Tracks impressions and clicks internally"
2739
  msgstr ""
2740
 
2741
- #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2742
- #: dashboard/settings/statistics.php:29
2743
  msgid "manual"
2744
  msgstr ""
2745
 
2746
- #: dashboard/settings/statistics.php:26
2747
  msgid ""
2748
  "Click and Impression recording, Click and impression limits, impression "
2749
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2750
  "will only track impressions."
2751
  msgstr ""
2752
 
2753
- #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2754
  msgid "In AdRotate Pro!"
2755
  msgstr ""
2756
 
2757
- #: dashboard/settings/statistics.php:27
2758
  msgid ""
2759
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2760
  "attributes"
2761
  msgstr ""
2762
 
2763
- #: dashboard/settings/statistics.php:28
2764
  msgid ""
2765
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2766
  "Contents."
2767
  msgstr ""
2768
 
2769
- #: dashboard/settings/statistics.php:29
2770
  msgid ""
2771
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2772
  "uses onClick() and onload() in adverts"
2773
  msgstr ""
2774
 
2775
- #: dashboard/settings/statistics.php:30
2776
  msgid ""
2777
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2778
  "Banner."
2779
  msgstr ""
2780
 
2781
- #: dashboard/settings/statistics.php:36
2782
  msgid "Internal Tracker"
2783
  msgstr ""
2784
 
2785
- #: dashboard/settings/statistics.php:37
2786
  msgid ""
2787
  "The settings below are for the internal tracker and have no effect when "
2788
  "using Piwik/Google Analytics."
2789
  msgstr ""
2790
 
2791
- #: dashboard/settings/statistics.php:40
2792
  msgid "Logged in impressions"
2793
  msgstr "Импресии от вписани потребители"
2794
 
2795
- #: dashboard/settings/statistics.php:42
2796
  msgid "Track impressions from logged in users."
2797
  msgstr ""
2798
 
2799
- #: dashboard/settings/statistics.php:46
2800
  msgid "Logged in clicks"
2801
  msgstr "Кликове от вписани потребители"
2802
 
2803
- #: dashboard/settings/statistics.php:48
2804
  msgid "Track clicks from logged in users."
2805
  msgstr "Проследяване на кликове от вписани потребители."
2806
 
2807
- #: dashboard/settings/statistics.php:52
2808
  msgid "Impression timer"
2809
  msgstr ""
2810
 
2811
- #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2812
  msgid "Seconds."
2813
  msgstr "Секудни."
2814
 
2815
- #: dashboard/settings/statistics.php:55
2816
  msgid "Default: 60."
2817
  msgstr "По подразбиране: 60."
2818
 
2819
- #: dashboard/settings/statistics.php:55
2820
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2821
  msgstr ""
2822
 
2823
- #: dashboard/settings/statistics.php:59
2824
  msgid "Click timer"
2825
  msgstr ""
2826
 
2827
- #: dashboard/settings/statistics.php:62
2828
  msgid "Default: 86400."
2829
  msgstr "По подразбиране: 86400."
2830
 
2831
- #: dashboard/settings/statistics.php:62
2832
  msgid ""
2833
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2834
  msgstr ""
2835
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
2836
  "(24 часа)."
2837
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2838
  #~ msgid "Get more features with AdRotate Pro"
2839
  #~ msgstr "Получете по-голяма функционалност с AdRotate Pro"
2840
 
@@ -2879,9 +2999,6 @@ msgstr ""
2879
  #~ msgid "Email Notifications"
2880
  #~ msgstr "Email Известия"
2881
 
2882
- #~ msgid "Push Notifications"
2883
- #~ msgstr "Push известия"
2884
-
2885
  #~ msgid "active ad(s) expired."
2886
  #~ msgstr "изтекла/и активна/и реклама/и."
2887
 
@@ -2984,15 +3101,9 @@ msgstr ""
2984
  #~ msgid "Barely visible"
2985
  #~ msgstr "Почти видимо"
2986
 
2987
- #~ msgid "Less than average"
2988
- #~ msgstr "По-малко от нормалното"
2989
-
2990
  #~ msgid "Normal coverage"
2991
  #~ msgstr "Нормално покритие"
2992
 
2993
- #~ msgid "More than average"
2994
- #~ msgstr "Повече от нормалното"
2995
-
2996
  #~ msgid "Best visibility"
2997
  #~ msgstr "Най-добра видимост"
2998
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-17 23:26+0800\n"
6
+ "PO-Revision-Date: 2016-07-17 23:26+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Nedko Ivanov <cocacoli4ko@gmail.com>\n"
9
  "Language: bg_BG\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:842
21
  msgid "No files found"
22
  msgstr "Няма намерени файлове"
23
 
24
+ #: adrotate-functions.php:845
25
  msgid "Folder not found or not accessible"
26
  msgstr "Папката не е намерена или не е достъпна"
27
 
28
+ #: adrotate-functions.php:894
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:898
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:902
37
  msgid "Ad(s) deleted"
38
  msgstr "Успешно изтриване"
39
 
40
+ #: adrotate-functions.php:906
41
  msgid "Group deleted"
42
  msgstr "Групата е изтрита"
43
 
44
+ #: adrotate-functions.php:910
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Статистиката е нулирана"
47
 
48
+ #: adrotate-functions.php:914
49
  msgid "Ad(s) renewed"
50
  msgstr "Успешно подновяване"
51
 
52
+ #: adrotate-functions.php:918
53
  msgid "Ad(s) deactivated"
54
  msgstr "Успешно деактивиране"
55
 
56
+ #: adrotate-functions.php:922
57
  msgid "Ad(s) activated"
58
  msgstr "Успешно активиране"
59
 
60
+ #: adrotate-functions.php:926
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Групата и съдържащите се в нея реклами са изтрити"
63
 
64
+ #: adrotate-functions.php:930
65
  msgid "Export created"
66
  msgstr "Експорта е завършен"
67
 
68
+ #: adrotate-functions.php:935
69
  msgid "Settings saved"
70
  msgstr "Настройките са запазени"
71
 
72
+ #: adrotate-functions.php:939
73
  msgid "Database optimized"
74
  msgstr "Базата данни е оптимизирана"
75
 
76
+ #: adrotate-functions.php:943
77
  msgid "Database repaired"
78
  msgstr "Базата данни е поправена"
79
 
80
+ #: adrotate-functions.php:947
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr "Рекламите са оценени и статусите им са обновени, където е необходимо"
83
 
84
+ #: adrotate-functions.php:951
85
  msgid "Empty database records removed"
86
  msgstr "Празните записи в базата данни са премахнати"
87
 
88
+ #: adrotate-functions.php:956
89
  msgid "Action prohibited"
90
  msgstr "Забранено действие"
91
 
92
+ #: adrotate-functions.php:960
93
  msgid ""
94
  "The ad was saved but has an issue which might prevent it from working "
95
  "properly. Review the colored ad."
96
  msgstr ""
97
 
98
+ #: adrotate-functions.php:964
99
  msgid "No data found in selected time period"
100
  msgstr "Не е намерена информация за избрания период"
101
 
102
+ #: adrotate-functions.php:968
103
  msgid "Database can only be optimized or cleaned once every hour"
104
  msgstr "Базата данни може да бъде почиствана или оптимизирана веднъж на час"
105
 
106
+ #: adrotate-functions.php:972
107
  msgid "Form can not be (partially) empty!"
108
  msgstr ""
109
 
110
+ #: adrotate-functions.php:976
111
  msgid "No ads found."
112
  msgstr ""
113
 
114
+ #: adrotate-functions.php:980
115
  msgid "Unexpected error"
116
  msgstr ""
117
 
118
+ #: adrotate-manage-publisher.php:685
119
  msgid "AdRotate Advertiser"
120
  msgstr ""
121
 
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
  "кликнал. Проверете дали адреса е валиден или се впишете посредством браузъра "
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
  "Грешка, рекламата не е налична в момента, поради ограничения в графика/"
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
  "Не могат да бъдат открити таблиците на 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
+ #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
197
  msgid "Check adverts"
198
  msgstr ""
199
 
200
+ #: adrotate-output.php:675
201
  msgid ""
202
  "You have enable caching support but W3 Total Cache is not active on your "
203
  "site!"
204
  msgstr ""
205
 
206
+ #: adrotate-output.php:678
207
  msgid ""
208
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
209
  "not set."
210
  msgstr ""
211
 
212
+ #: adrotate-output.php:683
213
  msgid "Your AdRotate Banner folder is not writable or does not exist."
214
  msgstr ""
215
 
216
+ #: adrotate-output.php:723 dashboard/adrotatepro.php:99
217
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
218
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
219
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
220
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
221
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
222
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
223
+ #: dashboard/settings/geotargeting.php:35
224
  msgid "Buy now"
225
  msgstr "Купи сега"
226
 
227
+ #: adrotate-output.php:724
228
  msgid ""
229
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
230
  "to the <strong>PRO</strong> version"
232
  "Използвате <strong>AdRotate</strong> от известно време. Защо не надградите "
233
  "до <strong>PRO</strong> версията"
234
 
235
+ #: adrotate-output.php:724
236
  #, php-format
237
  msgid ""
238
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
239
  msgstr ""
240
 
241
+ #: adrotate-output.php:724
242
  msgid "Thank you for your purchase!"
243
  msgstr ""
244
 
245
+ #: adrotate-output.php:785
246
  msgid ""
247
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
248
  "this menu. Check out the"
249
  msgstr ""
250
 
251
+ #: adrotate-output.php:785
252
  msgid "manuals"
253
  msgstr "ръководства"
254
 
255
+ #: adrotate-output.php:785 adrotate-output.php:852
256
  msgid "and"
257
  msgstr "и"
258
 
259
+ #: adrotate-output.php:785
260
  msgid "forums"
261
  msgstr ""
262
 
263
+ #: adrotate-output.php:815
264
  msgid "Useful Links"
265
  msgstr "Полезни връзки"
266
 
267
+ #: adrotate-output.php:816
268
  msgid "Useful links to learn more about AdRotate"
269
  msgstr "Полезни връзки, за да получите повече информация за AdRotate"
270
 
271
+ #: adrotate-output.php:818
272
  msgid "AdRotate website"
273
  msgstr ""
274
 
275
+ #: adrotate-output.php:819
276
  msgid "Getting Started With AdRotate"
277
  msgstr "Започнете от нулата с AdRotate Pro"
278
 
279
+ #: adrotate-output.php:820
280
  msgid "AdRotate manuals"
281
  msgstr ""
282
 
283
+ #: adrotate-output.php:821
284
  msgid "AdRotate Support Forum"
285
  msgstr "Форум за поддръжка на AdRotate"
286
 
287
+ #: adrotate-output.php:844
288
  msgid "Help AdRotate Grow"
289
  msgstr "Помогнете за развитието на AdRotate"
290
 
291
+ #: adrotate-output.php:845
292
  msgid "Follow Arnan on Facebook"
293
  msgstr ""
294
 
295
+ #: adrotate-output.php:852
296
  msgid ""
297
  "A lot of users only think to review AdRotate when something goes wrong while "
298
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
301
  "се обърка, докато хиляди хора използват AdRotate безпроблемно. Не оставяйте "
302
  "това да остане незабелязано."
303
 
304
+ #: adrotate-output.php:852
305
  msgid "If you find AdRotate useful please leave your honest"
306
  msgstr "Ако намирате AdRotate за полезен, моля оставете честна"
307
 
308
+ #: adrotate-output.php:852
309
  msgid "rating"
310
  msgstr "оценка"
311
 
312
+ #: adrotate-output.php:852
313
  msgid "review"
314
  msgstr "мнение"
315
 
316
+ #: adrotate-output.php:852
317
  msgid "on WordPress.org to help AdRotate grow in a positive way"
318
  msgstr "на WordPress.org, за да се развива AdRotate"
319
 
320
+ #: adrotate-output.php:885 dashboard/settings/notifications.php:50
321
+ #: dashboard/settings/notifications.php:80
322
  msgid "Available in AdRotate Pro"
323
  msgstr "Налично в AdRotate Pro"
324
 
325
+ #: adrotate-output.php:885
326
  msgid "More information..."
327
  msgstr "Повече информация..."
328
 
329
+ #: adrotate-output.php:886
330
  msgid "This feature is available in AdRotate Pro"
331
  msgstr "Тази функционалност е налична в AdRotate Pro"
332
 
333
+ #: adrotate-output.php:886
334
  msgid "Learn more"
335
  msgstr "Повече информация"
336
 
337
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
338
+ #: dashboard/publisher/adverts-edit.php:235
339
  msgid "January"
340
  msgstr "Януари"
341
 
342
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
343
+ #: dashboard/publisher/adverts-edit.php:236
344
  msgid "February"
345
  msgstr "Февруари"
346
 
347
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
348
+ #: dashboard/publisher/adverts-edit.php:237
349
  msgid "March"
350
  msgstr "Март"
351
 
352
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
353
+ #: dashboard/publisher/adverts-edit.php:238
354
  msgid "April"
355
  msgstr "Април"
356
 
357
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
358
+ #: dashboard/publisher/adverts-edit.php:239
359
  msgid "May"
360
  msgstr "Май"
361
 
362
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
363
+ #: dashboard/publisher/adverts-edit.php:240
364
  msgid "June"
365
  msgstr "Юни"
366
 
367
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
368
+ #: dashboard/publisher/adverts-edit.php:241
369
  msgid "July"
370
  msgstr "Юли"
371
 
372
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
373
+ #: dashboard/publisher/adverts-edit.php:242
374
  msgid "August"
375
  msgstr "Август"
376
 
377
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
378
+ #: dashboard/publisher/adverts-edit.php:243
379
  msgid "September"
380
  msgstr "Септември"
381
 
382
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
383
+ #: dashboard/publisher/adverts-edit.php:244
384
  msgid "October"
385
  msgstr "Октомври"
386
 
387
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
388
+ #: dashboard/publisher/adverts-edit.php:245
389
  msgid "November"
390
  msgstr "Ноември"
391
 
392
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
393
+ #: dashboard/publisher/adverts-edit.php:246
394
  msgid "December"
395
  msgstr "Декември"
396
 
450
  msgid "Fill in the ID of the type you want to display!"
451
  msgstr "Попълнете ID-то на типа, който искате да се показва!"
452
 
453
+ #: adrotate.php:102
454
  msgid "General Info"
455
  msgstr "Обща информация"
456
 
457
+ #: adrotate.php:103
458
  msgid "AdRotate Pro"
459
  msgstr "AdRotate Pro"
460
 
461
+ #: adrotate.php:104
462
  msgid "Manage Adverts"
463
  msgstr ""
464
 
465
+ #: adrotate.php:105 dashboard/publisher/groups-main.php:12
466
  msgid "Manage Groups"
467
  msgstr "Управление на групи"
468
 
469
+ #: adrotate.php:106 adrotate.php:369
470
  msgid "Manage Schedules"
471
  msgstr "Управление на графици"
472
 
473
+ #: adrotate.php:107
474
  msgid "Manage Media"
475
  msgstr "Управление на Медия"
476
 
477
+ #: adrotate.php:108
478
  msgid "Settings"
479
  msgstr "Настройки"
480
 
481
+ #: adrotate.php:128
482
  msgid "AdRotate Info"
483
  msgstr "AdRotate Info"
484
 
485
+ #: adrotate.php:146
486
  msgid "AdRotate Professional"
487
  msgstr "AdRotate Professional"
488
 
489
+ #: adrotate.php:186
490
  msgid "Advert Management"
491
  msgstr ""
492
 
493
+ #: adrotate.php:244 adrotate.php:311 adrotate.php:364
494
  msgid "Manage"
495
  msgstr "Управление"
496
 
497
+ #: adrotate.php:245 adrotate.php:312 adrotate.php:365
498
  msgid "Add New"
499
  msgstr "Добавяне"
500
 
501
+ #: adrotate.php:305
502
  msgid "Group Management"
503
  msgstr "Управление на групи"
504
 
505
+ #: adrotate.php:314
506
  msgid "Report"
507
  msgstr "Доклад"
508
 
509
+ #: adrotate.php:360
510
  msgid "Schedule Management available in AdRotate Pro"
511
  msgstr "Управление с графици е налично в AdRotate Pro"
512
 
513
+ #: adrotate.php:370
514
  msgid ""
515
  "Schedule management and multiple schedules per advert is available in "
516
  "AdRotate Pro."
518
  "Управлението на графици и множество графици за една реклама са налични в "
519
  "AdRotate Pro."
520
 
521
+ #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
522
  #: dashboard/publisher/adverts-main.php:114
523
+ #: dashboard/publisher/groups-edit.php:71
524
  #: dashboard/publisher/groups-main.php:89
525
  msgid "More information"
526
  msgstr "Повече информация"
527
 
528
+ #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
529
  #: dashboard/publisher/adverts-error.php:19
530
  #: dashboard/publisher/adverts-main.php:20
531
  #: dashboard/publisher/groups-main.php:20
532
  msgid "Bulk Actions"
533
  msgstr "Масови действия"
534
 
535
+ #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
536
  #: dashboard/publisher/adverts-error.php:29
537
  #: dashboard/publisher/adverts-main.php:30
538
  #: dashboard/publisher/groups-main.php:24
539
  msgid "Go"
540
  msgstr "Напред"
541
 
542
+ #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
543
  #: dashboard/publisher/adverts-error.php:39
544
  #: dashboard/publisher/adverts-main.php:39
 
545
  #: dashboard/publisher/groups-main.php:32
546
  msgid "ID"
547
  msgstr "ID"
548
 
549
+ #: adrotate.php:388
550
  msgid "Start"
551
  msgstr "Начало"
552
 
553
+ #: adrotate.php:388
554
  msgid "End"
555
  msgstr "Край"
556
 
557
+ #: adrotate.php:389
558
  msgid "Ads"
559
  msgstr "Реклами"
560
 
561
+ #: adrotate.php:391
562
  msgid "Max Impressions"
563
  msgstr "Максимум импресии"
564
 
565
+ #: adrotate.php:392
566
  msgid "Max Clicks"
567
  msgstr "Максимум кликове"
568
 
569
+ #: adrotate.php:422
570
  msgid "No schedules created yet!"
571
  msgstr "Все още няма създадени графици!"
572
 
573
+ #: adrotate.php:427
574
  msgid "Easily manage your schedules from here with AdRotate Pro."
575
  msgstr "Можете лесно да управлявате графиците си от тук с AdRotate Pro."
576
 
577
+ #: adrotate.php:427 adrotate.php:490
578
  msgid "Upgrade today!"
579
  msgstr "Надградете днес!"
580
 
581
+ #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
582
+ #: dashboard/publisher/groups-edit.php:383
583
  msgid "Expires soon."
584
  msgstr "Изтича скоро."
585
 
586
+ #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
587
+ #: dashboard/publisher/groups-edit.php:384
588
  msgid "Has expired."
589
  msgstr "Изтекла."
590
 
591
+ #: adrotate.php:452
592
  msgid "Media Management available in AdRotate Pro"
593
  msgstr "Управление на медия е налично в AdRotate Pro"
594
 
595
+ #: adrotate.php:454
596
  msgid "Upload images to the AdRotate Pro banners folder from here."
597
  msgstr ""
598
 
599
+ #: adrotate.php:454
600
  msgid ""
601
  "This is useful if you use responsive adverts with multiple images or have "
602
  "HTML5 adverts containing multiple files."
603
  msgstr ""
604
 
605
+ #: adrotate.php:454
606
  msgid "Media uploading and management is available in AdRotate Pro."
607
  msgstr "Управлението и качването на медия са налични в AdRotate Pro."
608
 
609
+ #: adrotate.php:456
610
  msgid "Upload new file"
611
  msgstr ""
612
 
613
+ #: adrotate.php:457
614
  msgid "Accepted files:"
615
  msgstr ""
616
 
617
+ #: adrotate.php:457
618
  msgid "For HTML5 ads you can also upload html and javascript files."
619
  msgstr ""
620
 
621
+ #: adrotate.php:457
622
  msgid "Maximum size is 512Kb."
623
  msgstr "Максималния размер е 512Kb."
624
 
625
+ #: adrotate.php:457
626
  msgid "Important:"
627
  msgstr "Важно:"
628
 
629
+ #: adrotate.php:457
630
  msgid ""
631
  "Make sure your file has no spaces or special characters in the name. Replace "
632
  "spaces with a - or _."
634
  "Уверете се, че файла няма интервали и специални знаци в името си. Заместете "
635
  "интервалите с - или _."
636
 
637
+ #: adrotate.php:457
638
  msgid ""
639
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
640
  "file so it knows about the changed name. For example for the javascript file."
641
  msgstr ""
642
 
643
+ #: adrotate.php:460
644
  msgid ""
645
  "For responsive adverts make sure the filename is in the following format; "
646
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
649
  "формат: \"imagename.full.ext\". Пълен набор от правилно оразмерени картинки "
650
  "е строго препоръчителен."
651
 
652
+ #: adrotate.php:461
653
  msgid ""
654
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
655
  "filename instead of \".full\" for the various viewports."
658
  "използвайте \".320\", \".480\", \".768\" или \".1024\" в имената на "
659
  "файловете, вместо \".full\"."
660
 
661
+ #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
662
+ #: dashboard/publisher/groups-edit.php:316
663
  msgid "Example:"
664
  msgstr "Пример:"
665
 
666
+ #: adrotate.php:462
667
  msgid ""
668
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
669
  "for different viewports."
671
  "image.full.jpg, image.320.jpg и image.768.jpg ще се използват от една и съща "
672
  "реклама в различни резолюции на екрана."
673
 
674
+ #: adrotate.php:466
675
  msgid "Upload file"
676
  msgstr ""
677
 
678
+ #: adrotate.php:466
679
  msgid "Click only once per file!"
680
  msgstr ""
681
 
682
+ #: adrotate.php:469
683
  msgid "Available files in"
684
  msgstr ""
685
 
686
+ #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
687
  #: dashboard/publisher/groups-main.php:33
688
  msgid "Name"
689
  msgstr "Име"
690
 
691
+ #: adrotate.php:475
692
  msgid "Actions"
693
  msgstr "Действия"
694
 
695
+ #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
696
+ #: adrotate.php:484 adrotate.php:485 adrotate.php:486
697
  #: dashboard/publisher/adverts-disabled.php:22
698
  #: dashboard/publisher/adverts-error.php:21
699
  #: dashboard/publisher/adverts-main.php:22
700
  msgid "Delete"
701
  msgstr "Изтриване"
702
 
703
+ #: adrotate.php:490
704
  msgid ""
705
  "Make sure the banner images are not in use by adverts when you delete them!"
706
  msgstr ""
707
  "Уверете се, че картинките за банери не се използват от реклами, преди да ги "
708
  "изтриете!"
709
 
710
+ #: adrotate.php:490
711
  msgid "Manage your banner folder from here with AdRotate Pro."
712
  msgstr "Можете да управлявате папката с банери от тук с AdRotate Pro."
713
 
714
+ #: adrotate.php:516
715
  msgid "AdRotate Settings"
716
  msgstr "AdRotate Настройки"
717
 
 
 
 
 
718
  #: dashboard/adrotatepro.php:20
719
  msgid "Satisfy your advertisers"
720
  msgstr "Задоволете рекламодателите си"
905
  msgid "Adverts that need you"
906
  msgstr "Реклами, които изискват вниманието Ви"
907
 
908
+ #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
909
  #: dashboard/publisher/groups-main.php:34
910
  msgid "Adverts"
911
  msgstr "Реклами"
948
  msgstr ""
949
 
950
  #: dashboard/publisher/adverts-disabled.php:21
951
+ #: dashboard/publisher/adverts-edit.php:170
952
  msgid "Activate"
953
  msgstr "Активиране"
954
 
965
  msgstr "Начало / Край"
966
 
967
  #: dashboard/publisher/adverts-disabled.php:37
968
+ #: dashboard/publisher/adverts-edit.php:110
969
  #: dashboard/publisher/adverts-error.php:41
970
  #: dashboard/publisher/adverts-main.php:41
971
  msgid "Title"
973
 
974
  #: dashboard/publisher/adverts-disabled.php:38
975
  #: dashboard/publisher/adverts-main.php:44
976
+ #: dashboard/publisher/groups-edit.php:329
977
  #: dashboard/publisher/groups-main.php:36
978
  msgid "Shown"
979
  msgstr "Показана"
982
  #: dashboard/publisher/adverts-main.php:46
983
  #: dashboard/publisher/adverts-report.php:36
984
  #: dashboard/publisher/adverts-report.php:57
985
+ #: dashboard/publisher/groups-edit.php:330
986
  #: dashboard/publisher/groups-main.php:38
987
  #: dashboard/publisher/groups-report.php:37
988
  #: dashboard/publisher/groups-report.php:58
1023
  msgstr "AdCode не може да бъде празен!"
1024
 
1025
  #: dashboard/publisher/adverts-edit.php:51
1026
+ msgid ""
1027
+ "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1028
+ "use!"
1029
  msgstr ""
1030
 
1031
  #: dashboard/publisher/adverts-edit.php:54
 
 
 
 
1032
  msgid ""
1033
+ "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1034
+ "use!"
1035
  msgstr ""
1036
 
1037
+ #: dashboard/publisher/adverts-edit.php:57
1038
  msgid ""
1039
  "There is a problem saving the image. Please reset your image and re-save the "
1040
  "ad!"
1041
  msgstr ""
1042
 
1043
+ #: dashboard/publisher/adverts-edit.php:60
 
 
 
 
1044
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1045
  msgstr ""
1046
 
1047
+ #: dashboard/publisher/adverts-edit.php:65
1048
  msgid ""
1049
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1050
  "the ad!"
1052
  "AdRotate не открива грешка, но рекламата е маркирана като грешна, моля, "
1053
  "запишете я наново!"
1054
 
1055
+ #: dashboard/publisher/adverts-edit.php:68
1056
  msgid "This ad is expired and currently not shown on your website!"
1057
  msgstr "Тази реклама е изтекла и не се показва на сайта Ви!"
1058
 
1059
+ #: dashboard/publisher/adverts-edit.php:71
1060
  msgid "The ad will expire in less than 2 days!"
1061
  msgstr "Тази реклама изтича след по-малко от 2 дни!"
1062
 
1063
+ #: dashboard/publisher/adverts-edit.php:74
1064
  msgid "This ad will expire in less than 7 days!"
1065
  msgstr "Тази реклама изтича след по-малко от 7 дни!"
1066
 
1067
+ #: dashboard/publisher/adverts-edit.php:77
1068
  msgid "This ad has been disabled and does not rotate on your site!"
1069
  msgstr "Тази реклама е деактивирана и не се показва на сайта Ви!"
1070
 
1071
+ #: dashboard/publisher/adverts-edit.php:102
1072
  msgid "New Advert"
1073
  msgstr "Нова реклама"
1074
 
1075
+ #: dashboard/publisher/adverts-edit.php:104
1076
  msgid "Edit Advert"
1077
  msgstr "Редакция на реклама"
1078
 
1079
+ #: dashboard/publisher/adverts-edit.php:116
1080
  msgid "AdCode"
1081
  msgstr ""
1082
 
1083
+ #: dashboard/publisher/adverts-edit.php:121
1084
  msgid "Basic Examples:"
1085
  msgstr "Основни примери:"
1086
 
1087
+ #: dashboard/publisher/adverts-edit.php:128
1088
  msgid "Useful tags"
1089
  msgstr ""
1090
 
1091
+ #: dashboard/publisher/adverts-edit.php:130
1092
  msgid "Insert the advert ID Number."
1093
  msgstr ""
1094
 
1095
+ #: dashboard/publisher/adverts-edit.php:130
1096
+ msgid "Required when selecting a asset below."
1097
  msgstr ""
1098
 
1099
+ #: dashboard/publisher/adverts-edit.php:130
1100
  msgid "Insert the advert name."
1101
  msgstr ""
1102
 
1103
+ #: dashboard/publisher/adverts-edit.php:130
1104
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1105
  msgstr ""
1106
 
1107
+ #: dashboard/publisher/adverts-edit.php:130
1108
  msgid "Add inside the <a> tag to open advert in a new window."
1109
  msgstr ""
1110
 
1111
+ #: dashboard/publisher/adverts-edit.php:130
1112
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1113
  msgstr ""
1114
 
1115
+ #: dashboard/publisher/adverts-edit.php:130
1116
  msgid ""
1117
  "Place the cursor in your AdCode where you want to add any of these tags and "
1118
  "click to add it."
1119
  msgstr ""
1120
 
1121
+ #: dashboard/publisher/adverts-edit.php:135
1122
  msgid "Preview"
1123
  msgstr "Преглед"
1124
 
1125
+ #: dashboard/publisher/adverts-edit.php:138
1126
  msgid ""
1127
  "Note: While this preview is an accurate one, it might look different then it "
1128
  "does on the website."
1130
  "Забележка: Въпреки, че предварителния преглед е точен, рекламата може да "
1131
  "изглежда по-различно, когато се показва на страницата Ви."
1132
 
1133
+ #: dashboard/publisher/adverts-edit.php:139
1134
  msgid ""
1135
  "This is because of CSS differences. Your themes CSS file is not active here!"
1136
  msgstr ""
1137
  "Това се дължи на разлики в CSS. CSS файла на вашата тема не е активен тук!"
1138
 
1139
+ #: dashboard/publisher/adverts-edit.php:144
1140
  msgid "Banner asset"
1141
  msgstr ""
1142
 
1143
+ #: dashboard/publisher/adverts-edit.php:147
1144
  msgid "WordPress media:"
1145
  msgstr ""
1146
 
1147
+ #: dashboard/publisher/adverts-edit.php:147
1148
  msgid "Select Banner"
1149
  msgstr "Избор на банер"
1150
 
1151
+ #: dashboard/publisher/adverts-edit.php:149
1152
  msgid "- OR -"
1153
  msgstr "- ИЛИ -"
1154
 
1155
+ #: dashboard/publisher/adverts-edit.php:151
1156
  msgid "Banner folder:"
1157
  msgstr "Папка на банера:"
1158
 
1159
+ #: dashboard/publisher/adverts-edit.php:152
1160
  msgid "No image selected"
1161
  msgstr "Не е избрана картинка"
1162
 
1163
+ #: dashboard/publisher/adverts-edit.php:156
1164
+ msgid "Use %asset% in the adcode instead of the file path."
1165
  msgstr ""
1166
 
1167
+ #: dashboard/publisher/adverts-edit.php:156
1168
  msgid ""
1169
  "Use either the text field or the dropdown. If the textfield has content that "
1170
  "field has priority."
1172
  "Използвайте падащото меню или текстовото поле. Ако текстовото поле е "
1173
  "попълнено, то ще бъде с преоритет."
1174
 
1175
+ #: dashboard/publisher/adverts-edit.php:161
1176
+ #: dashboard/settings/statistics.php:17
1177
  msgid "Statistics"
1178
  msgstr "Статистики"
1179
 
1180
+ #: dashboard/publisher/adverts-edit.php:163
1181
  msgid "Enable click and impression tracking for this advert."
1182
  msgstr ""
1183
 
1184
+ #: dashboard/publisher/adverts-edit.php:164
1185
  msgid ""
1186
  "Note: Clicktracking does not work for Javascript adverts such as those "
1187
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1188
  "always supported."
1189
  msgstr ""
1190
 
1191
+ #: dashboard/publisher/adverts-edit.php:174
1192
  msgid "Yes, this ad will be used"
1193
  msgstr "Да, тази реклама ще се използва"
1194
 
1195
+ #: dashboard/publisher/adverts-edit.php:175
1196
  msgid "No, do not show this ad anywhere"
1197
  msgstr "Не, не показвай тази реклама никъде"
1198
 
1199
+ #: dashboard/publisher/adverts-edit.php:182
1200
  #: dashboard/publisher/adverts-main.php:114
1201
+ #: dashboard/publisher/groups-edit.php:71
1202
  #: dashboard/publisher/groups-main.php:89
1203
  msgid "Get more features with AdRotate Pro."
1204
  msgstr "Получете по-голяма функционалност с AdRotate Pro."
1205
 
1206
+ #: dashboard/publisher/adverts-edit.php:185
1207
+ #: dashboard/publisher/adverts-edit.php:285
1208
+ #: dashboard/publisher/adverts-edit.php:408
1209
+ #: dashboard/publisher/adverts-edit.php:449
1210
  msgid "Save Advert"
1211
  msgstr "Запиши рекламата"
1212
 
1213
+ #: dashboard/publisher/adverts-edit.php:186
1214
+ #: dashboard/publisher/adverts-edit.php:286
1215
+ #: dashboard/publisher/adverts-edit.php:409
1216
+ #: dashboard/publisher/adverts-edit.php:450
1217
+ #: dashboard/publisher/groups-edit.php:150
1218
+ #: dashboard/publisher/groups-edit.php:297
1219
+ #: dashboard/publisher/groups-edit.php:389
1220
  msgid "Cancel"
1221
  msgstr "Отказ"
1222
 
1223
+ #: dashboard/publisher/adverts-edit.php:189
1224
+ #: dashboard/publisher/adverts-edit.php:391
1225
+ #: dashboard/publisher/groups-edit.php:132
1226
+ #: dashboard/publisher/groups-edit.php:279
1227
  msgid "Usage"
1228
  msgstr "Употреба"
1229
 
1230
+ #: dashboard/publisher/adverts-edit.php:193
1231
+ #: dashboard/publisher/adverts-edit.php:395
1232
+ #: dashboard/publisher/groups-edit.php:136
1233
+ #: dashboard/publisher/groups-edit.php:283
1234
  msgid "Widget"
1235
  msgstr ""
1236
 
1237
+ #: dashboard/publisher/adverts-edit.php:194
1238
+ #: dashboard/publisher/adverts-edit.php:396
1239
  msgid ""
1240
+ "Drag the AdRotate widget to the sidebar where you want to place the advert "
1241
+ "and select the advert or the group the advert is in."
1242
  msgstr ""
1243
 
1244
+ #: dashboard/publisher/adverts-edit.php:197
1245
+ #: dashboard/publisher/adverts-edit.php:399
1246
+ #: dashboard/publisher/groups-edit.php:140
1247
+ #: dashboard/publisher/groups-edit.php:287
1248
  msgid "In a post or page"
1249
  msgstr ""
1250
 
1251
+ #: dashboard/publisher/adverts-edit.php:199
1252
+ #: dashboard/publisher/adverts-edit.php:401
1253
+ #: dashboard/publisher/groups-edit.php:142
1254
+ #: dashboard/publisher/groups-edit.php:289
1255
  msgid "Directly in a theme"
1256
  msgstr ""
1257
 
1258
+ #: dashboard/publisher/adverts-edit.php:205
1259
  msgid "Schedule your advert"
1260
  msgstr ""
1261
 
1262
+ #: dashboard/publisher/adverts-edit.php:209
1263
  msgid "Start date (day/month/year)"
1264
  msgstr ""
1265
 
1266
+ #: dashboard/publisher/adverts-edit.php:230
1267
  msgid "End date (day/month/year)"
1268
  msgstr ""
1269
 
1270
+ #: dashboard/publisher/adverts-edit.php:253
1271
  msgid "Start time (hh:mm)"
1272
  msgstr ""
1273
 
1274
+ #: dashboard/publisher/adverts-edit.php:260
1275
  msgid "End time (hh:mm)"
1276
  msgstr ""
1277
 
1278
+ #: dashboard/publisher/adverts-edit.php:270
1279
  msgid "Maximum Clicks"
1280
  msgstr ""
1281
 
1282
+ #: dashboard/publisher/adverts-edit.php:271
1283
+ #: dashboard/publisher/adverts-edit.php:273
1284
  msgid "Leave empty or 0 to skip this."
1285
  msgstr "Въведете 0 или оставете празно, за да пропуснете тази опция."
1286
 
1287
+ #: dashboard/publisher/adverts-edit.php:272
1288
  msgid "Maximum Impressions"
1289
  msgstr ""
1290
 
1291
+ #: dashboard/publisher/adverts-edit.php:277
1292
  msgid "Important"
1293
  msgstr ""
1294
 
1295
+ #: dashboard/publisher/adverts-edit.php:278
1296
  msgid ""
1297
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1298
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1299
  "14:00 hours. 6AM is 6:00 hours."
1300
  msgstr ""
1301
 
1302
+ #: dashboard/publisher/adverts-edit.php:282
1303
  msgid ""
1304
  "Create multiple and more advanced schedules for each advert with AdRotate "
1305
  "Pro."
1306
  msgstr ""
1307
 
1308
+ #: dashboard/publisher/adverts-edit.php:282
1309
+ #: dashboard/publisher/adverts-edit.php:345
1310
+ #: dashboard/publisher/adverts-edit.php:389
1311
+ #: dashboard/publisher/groups-edit.php:196
1312
  msgid "Upgrade today"
1313
  msgstr "Надградете днес"
1314
 
1315
+ #: dashboard/publisher/adverts-edit.php:289
1316
+ #: dashboard/publisher/groups-edit.php:153
1317
  msgid "Advanced"
1318
  msgstr "Разширени"
1319
 
1320
+ #: dashboard/publisher/adverts-edit.php:290
1321
  msgid "Everything below is optional."
1322
  msgstr "Всичко по-долу е по желание."
1323
 
1324
+ #: dashboard/publisher/adverts-edit.php:290
1325
+ msgid "Available in AdRotate Pro!"
1326
  msgstr ""
1327
 
1328
+ #: dashboard/publisher/adverts-edit.php:295
1329
+ #: dashboard/publisher/adverts-main.php:42
1330
+ #: dashboard/publisher/groups-edit.php:332
1331
+ msgid "Weight"
1332
+ msgstr "Тежест"
1333
 
1334
+ #: dashboard/publisher/adverts-edit.php:298
1335
+ msgid "Few impressions"
1336
  msgstr ""
1337
 
1338
+ #: dashboard/publisher/adverts-edit.php:303
1339
+ msgid "Less than average"
1340
+ msgstr "По-малко от нормалното"
1341
 
1342
+ #: dashboard/publisher/adverts-edit.php:308
1343
+ msgid "Normal impressions"
1344
  msgstr ""
1345
 
1346
+ #: dashboard/publisher/adverts-edit.php:313
1347
+ msgid "More than average"
1348
+ msgstr "Повече от нормалното"
1349
+
1350
+ #: dashboard/publisher/adverts-edit.php:318
1351
+ msgid "Many impressions"
1352
  msgstr ""
1353
 
1354
+ #: dashboard/publisher/adverts-edit.php:323
1355
+ msgid "Mobile"
1356
  msgstr ""
1357
 
1358
+ #: dashboard/publisher/adverts-edit.php:325
1359
+ msgid "Computers"
1360
+ msgstr ""
1361
 
1362
+ #: dashboard/publisher/adverts-edit.php:328
1363
+ msgid "Smartphones"
 
 
1364
  msgstr ""
1365
 
1366
+ #: dashboard/publisher/adverts-edit.php:331
1367
+ msgid "Tablets"
1368
+ msgstr ""
 
 
1369
 
1370
+ #: dashboard/publisher/adverts-edit.php:334
1371
  msgid ""
1372
+ "Also enable mobile support in the group this advert goes in or these are "
1373
+ "ignored."
1374
  msgstr ""
1375
 
1376
+ #: dashboard/publisher/adverts-edit.php:338
1377
+ #: dashboard/publisher/groups-edit.php:190
1378
  msgid "Sortorder"
1379
  msgstr ""
1380
 
1381
+ #: dashboard/publisher/adverts-edit.php:340
1382
+ #: dashboard/publisher/groups-edit.php:192
1383
  msgid "For administrative purposes set a sortorder."
1384
  msgstr "За административни цели задайте критерий за сортиране."
1385
 
1386
+ #: dashboard/publisher/adverts-edit.php:340
1387
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1388
  msgstr ""
1389
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
1390
  "на рекламата по подразбиране."
1391
 
1392
+ #: dashboard/publisher/adverts-edit.php:345
1393
  msgid ""
1394
  "With AdRotate Pro you can easily select which devices the advert should show "
1395
  "on!"
1396
  msgstr ""
1397
 
1398
+ #: dashboard/publisher/adverts-edit.php:347
1399
  msgid "Geo Targeting in AdRotate Pro"
1400
  msgstr ""
1401
 
1402
+ #: dashboard/publisher/adverts-edit.php:348
1403
  msgid ""
1404
  "Assign the advert to a group and enable that group to use Geo Targeting."
1405
  msgstr ""
1406
 
1407
+ #: dashboard/publisher/adverts-edit.php:352
1408
  msgid "Cities/States"
1409
  msgstr ""
1410
 
1411
+ #: dashboard/publisher/adverts-edit.php:355
1412
  msgid ""
1413
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1414
  "states ISO codes are supported)"
1415
  msgstr ""
1416
 
1417
+ #: dashboard/publisher/adverts-edit.php:355
1418
  msgid ""
1419
  "AdRotate does not check the validity of names so make sure you spell them "
1420
  "correctly!"
1422
  "AdRotate не проверява валидността на имената, уверете се, че сте ги изписали "
1423
  "правилно!"
1424
 
1425
+ #: dashboard/publisher/adverts-edit.php:359
1426
  msgid "Countries"
1427
  msgstr ""
1428
 
1429
+ #: dashboard/publisher/adverts-edit.php:384
1430
  msgid "Select the countries you want the adverts to show in."
1431
  msgstr "Изберете страните, в които искате да се показват рекламите."
1432
 
1433
+ #: dashboard/publisher/adverts-edit.php:384
1434
  msgid "Cities take priority and will be filtered first."
1435
  msgstr "Градовете са с приоритет и ще бъдат филтрирани първи."
1436
 
1437
+ #: dashboard/publisher/adverts-edit.php:389
1438
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1439
  msgstr ""
1440
 
1441
+ #: dashboard/publisher/adverts-edit.php:413
1442
  msgid "Select Groups"
1443
  msgstr "Избор на групи"
1444
 
1445
+ #: dashboard/publisher/adverts-edit.php:418
1446
  msgid "ID - Name"
1447
  msgstr "ID - Име"
1448
 
1449
+ #: dashboard/publisher/adverts-edit.php:428
1450
  #: dashboard/publisher/groups-main.php:60
1451
+ #: dashboard/settings/geotargeting.php:49
1452
  msgid "Default"
1453
  msgstr "По подразбиране"
1454
 
1455
+ #: dashboard/publisher/adverts-edit.php:429
1456
  #: dashboard/publisher/groups-main.php:61
1457
  msgid "Dynamic"
1458
  msgstr "Динамично"
1459
 
1460
+ #: dashboard/publisher/adverts-edit.php:429
1461
  #: dashboard/publisher/groups-main.php:61
1462
  msgid "second rotation"
1463
  msgstr "второ завъртане"
1464
 
1465
+ #: dashboard/publisher/adverts-edit.php:430
1466
  #: dashboard/publisher/groups-main.php:62
1467
  msgid "Block"
1468
  msgstr "Блок"
1469
 
1470
+ #: dashboard/publisher/adverts-edit.php:430
1471
  #: dashboard/publisher/groups-main.php:62
1472
  msgid "grid"
1473
  msgstr "решетка"
1474
 
1475
+ #: dashboard/publisher/adverts-edit.php:431
1476
+ #: dashboard/publisher/groups-edit.php:198
1477
  #: dashboard/publisher/groups-main.php:63
1478
  msgid "Post Injection"
1479
  msgstr "Вмъкване в публикации"
1480
 
1481
+ #: dashboard/publisher/adverts-edit.php:432
1482
  msgid "Geolocation"
1483
  msgstr "Геолокация"
1484
 
1485
+ #: dashboard/publisher/adverts-edit.php:438
1486
+ #: dashboard/publisher/groups-edit.php:57
1487
  #: dashboard/publisher/groups-main.php:70
1488
  msgid "Mode"
1489
  msgstr "Режим"
1523
  msgstr "За 7 дни"
1524
 
1525
  #: dashboard/publisher/adverts-error.php:71
1526
+ #: dashboard/publisher/groups-edit.php:382
1527
  msgid "Configuration errors."
1528
  msgstr "Грешки при конфигурирането."
1529
 
1535
  msgid "Export to XML"
1536
  msgstr "Експорт в XML"
1537
 
 
 
 
 
 
1538
  #: dashboard/publisher/adverts-main.php:45
1539
  #: dashboard/publisher/adverts-main.php:47
1540
  #: dashboard/publisher/groups-main.php:37
1572
  msgid "Monthly overview of clicks and impressions"
1573
  msgstr "Месечен преглед на кликовете и импресиите"
1574
 
1575
+ #: dashboard/publisher/adverts-report.php:64
1576
+ #: dashboard/publisher/groups-report.php:65
1577
+ #: dashboard/settings/notifications.php:60
1578
+ #: dashboard/settings/notifications.php:90
1579
+ msgid "Note:"
1580
+ msgstr "Забележка:"
1581
+
1582
  #: dashboard/publisher/adverts-report.php:64
1583
  #: dashboard/publisher/groups-report.php:65
1584
  msgid ""
1596
  msgid "Edit Group"
1597
  msgstr "Редакция на група"
1598
 
1599
+ #: dashboard/publisher/groups-edit.php:60
1600
  msgid "Default - Show one ad at a time"
1601
  msgstr "По подразбиране - показва се само една реклама"
1602
 
1603
+ #: dashboard/publisher/groups-edit.php:61
1604
  msgid "Dynamic Mode - Show a different ad every few seconds"
1605
  msgstr ""
1606
  "Динамичен Режим - показва се различна реклама на определен брой секунди"
1607
 
1608
+ #: dashboard/publisher/groups-edit.php:62
1609
  msgid "Block Mode - Show a block of adverts"
1610
  msgstr ""
1611
 
1612
+ #: dashboard/publisher/groups-edit.php:66
1613
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1614
  msgstr ""
1615
  "Динамичен режим изисква jQuery. Можете да го включите от настройките на "
1616
  "AdRotate."
1617
 
1618
+ #: dashboard/publisher/groups-edit.php:73
1619
+ #: dashboard/publisher/groups-edit.php:100
1620
  msgid "Dynamic and Block Mode"
1621
  msgstr "Динамичен и блоков режим"
1622
 
1623
+ #: dashboard/publisher/groups-edit.php:74
1624
  msgid "Only required if your group is in Dynamic or Block mode."
1625
  msgstr "Необходимо е само ако групата Ви е в Динамичен или Блоков режим."
1626
 
1627
+ #: dashboard/publisher/groups-edit.php:78
1628
  msgid "Block size"
1629
  msgstr ""
1630
 
1631
+ #: dashboard/publisher/groups-edit.php:84
1632
  msgid "rows"
1633
  msgstr "редове"
1634
 
1635
+ #: dashboard/publisher/groups-edit.php:88
1636
  msgid "columns"
1637
  msgstr "колони"
1638
 
1639
+ #: dashboard/publisher/groups-edit.php:91
1640
  msgid "Block Mode"
1641
  msgstr "Блоков режим"
1642
 
1643
+ #: dashboard/publisher/groups-edit.php:91
1644
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1645
  msgstr ""
1646
 
1647
+ #: dashboard/publisher/groups-edit.php:95
1648
  msgid "Advert size"
1649
  msgstr ""
1650
 
1651
+ #: dashboard/publisher/groups-edit.php:97
1652
  msgid "pixel(s) wide"
1653
  msgstr "пиксела ширитина"
1654
 
1655
+ #: dashboard/publisher/groups-edit.php:97
1656
  msgid "pixel(s) high."
1657
  msgstr "пиксела височина."
1658
 
1659
+ #: dashboard/publisher/groups-edit.php:100
1660
  msgid ""
1661
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1662
  "recommended). Default: 125/125."
1663
  msgstr ""
1664
 
1665
+ #: dashboard/publisher/groups-edit.php:104
1666
  msgid "Automated refresh"
1667
  msgstr "Автоматичен рефреш"
1668
 
1669
+ #: dashboard/publisher/groups-edit.php:123
1670
  msgid "seconds."
1671
  msgstr "секунди."
1672
 
1673
+ #: dashboard/publisher/groups-edit.php:126
1674
  msgid "Dynamic Mode"
1675
  msgstr "Динамичен режим"
1676
 
1677
+ #: dashboard/publisher/groups-edit.php:126
1678
  msgid ""
1679
  "Load a new advert in this interval without reloading the page. Default: 6."
1680
  msgstr ""
1681
  "Зареждане на нова реклама през този интервал, без презареждане на "
1682
  "страницата. По подразбиране: 6."
1683
 
1684
+ #: dashboard/publisher/groups-edit.php:137
1685
+ #: dashboard/publisher/groups-edit.php:284
1686
  msgid ""
1687
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1688
  "Adverts\" and enter ID"
1689
  msgstr ""
1690
 
1691
+ #: dashboard/publisher/groups-edit.php:149
1692
+ #: dashboard/publisher/groups-edit.php:296
1693
+ #: dashboard/publisher/groups-edit.php:388
1694
  msgid "Save Group"
1695
  msgstr "Запис на групата"
1696
 
1697
+ #: dashboard/publisher/groups-edit.php:157
1698
  msgid "Advert Margin"
1699
  msgstr "Margin на рекламата"
1700
 
1701
+ #: dashboard/publisher/groups-edit.php:159
1702
  msgid "pixel(s)"
1703
  msgstr "пиксел(а)"
1704
 
1705
+ #: dashboard/publisher/groups-edit.php:162
1706
  msgid "A transparent area outside the advert in pixels. Default: 0."
1707
  msgstr "Прозрачна зона около рекламата, в пиксели. По подразбиране: 0."
1708
 
1709
+ #: dashboard/publisher/groups-edit.php:162
1710
  msgid "Set to 0 to disable."
1711
  msgstr "Въведете 0 за деактивация."
1712
 
1713
+ #: dashboard/publisher/groups-edit.php:162
1714
  msgid "Margins are automatically disabled for blocks where required."
1715
  msgstr ""
1716
 
1717
+ #: dashboard/publisher/groups-edit.php:166
1718
  msgid "Align the group"
1719
  msgstr ""
1720
 
1721
+ #: dashboard/publisher/groups-edit.php:169
1722
  msgid "None (Default)"
1723
  msgstr ""
1724
 
1725
+ #: dashboard/publisher/groups-edit.php:170
1726
  msgid "Left"
1727
  msgstr ""
1728
 
1729
+ #: dashboard/publisher/groups-edit.php:171
1730
  msgid "Right"
1731
  msgstr ""
1732
 
1733
+ #: dashboard/publisher/groups-edit.php:172
1734
  msgid "Center"
1735
  msgstr ""
1736
 
1737
+ #: dashboard/publisher/groups-edit.php:176
1738
  msgid ""
1739
  "Align the group in your post or page. Using 'center' may affect your margin "
1740
  "setting. Not every theme supports this feature."
1741
  msgstr ""
1742
 
1743
+ #: dashboard/publisher/groups-edit.php:180
1744
+ #: dashboard/settings/advertisers.php:38
1745
  msgid "Geo Targeting"
1746
  msgstr "Таргетиране спрямо местоположението"
1747
 
1748
+ #: dashboard/publisher/groups-edit.php:181
1749
  msgid "Enable Geo Targeting for this group."
1750
  msgstr ""
1751
 
1752
+ #: dashboard/publisher/groups-edit.php:182
1753
  msgid "Do not forget to tell the adverts for which areas they should show."
1754
  msgstr "Не забравяйте да кажете на рекламите в кои зони трябва да се показват."
1755
 
1756
+ #: dashboard/publisher/groups-edit.php:185
1757
  msgid "Mobile support"
1758
  msgstr ""
1759
 
1760
+ #: dashboard/publisher/groups-edit.php:186
1761
  msgid "Enable mobile support for this group."
1762
  msgstr ""
1763
 
1764
+ #: dashboard/publisher/groups-edit.php:187
1765
  msgid "Do not forget to put at least one mobile advert in this group."
1766
  msgstr ""
1767
 
1768
+ #: dashboard/publisher/groups-edit.php:192
1769
  msgid "Leave empty or 0 to skip this. Will default to group id."
1770
  msgstr ""
1771
  "Оставете празно или въведете 0, за да пропуснете това. Ще бъде зададено ID "
1772
  "на групата."
1773
 
1774
+ #: dashboard/publisher/groups-edit.php:196
1775
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1776
  msgstr ""
1777
 
1778
+ #: dashboard/publisher/groups-edit.php:201
1779
  msgid "In categories?"
1780
  msgstr ""
1781
 
1782
+ #: dashboard/publisher/groups-edit.php:205
1783
+ #: dashboard/publisher/groups-edit.php:243
1784
+ #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1785
  msgid "Disabled"
1786
  msgstr "Изключено"
1787
 
1788
+ #: dashboard/publisher/groups-edit.php:206
1789
+ #: dashboard/publisher/groups-edit.php:244
1790
  msgid "Before content"
1791
  msgstr "Преди съдържанието"
1792
 
1793
+ #: dashboard/publisher/groups-edit.php:207
1794
+ #: dashboard/publisher/groups-edit.php:245
1795
  msgid "After content"
1796
  msgstr "След съдържанието"
1797
 
1798
+ #: dashboard/publisher/groups-edit.php:208
1799
+ #: dashboard/publisher/groups-edit.php:246
1800
  msgid "Before and after content"
1801
  msgstr "Преди и след съдържанието"
1802
 
1803
+ #: dashboard/publisher/groups-edit.php:209
1804
+ #: dashboard/publisher/groups-edit.php:247
1805
  msgid "Inside the content..."
1806
  msgstr ""
1807
 
1808
+ #: dashboard/publisher/groups-edit.php:215
1809
+ #: dashboard/publisher/groups-edit.php:253
1810
  msgid "after the middle paragraph"
1811
  msgstr ""
1812
 
1813
+ #: dashboard/publisher/groups-edit.php:216
1814
+ #: dashboard/publisher/groups-edit.php:254
1815
  msgid "after the 1st paragraph"
1816
  msgstr ""
1817
 
1818
+ #: dashboard/publisher/groups-edit.php:217
1819
+ #: dashboard/publisher/groups-edit.php:255
1820
  msgid "after the 2nd paragraph"
1821
  msgstr ""
1822
 
1823
+ #: dashboard/publisher/groups-edit.php:218
1824
+ #: dashboard/publisher/groups-edit.php:256
1825
  msgid "after the 3rd paragraph"
1826
  msgstr ""
1827
 
1828
+ #: dashboard/publisher/groups-edit.php:219
1829
+ #: dashboard/publisher/groups-edit.php:257
1830
  msgid "after the 4th paragraph"
1831
  msgstr ""
1832
 
1833
+ #: dashboard/publisher/groups-edit.php:220
1834
+ #: dashboard/publisher/groups-edit.php:258
1835
  msgid "after the 5th paragraph"
1836
  msgstr ""
1837
 
1838
+ #: dashboard/publisher/groups-edit.php:221
1839
+ #: dashboard/publisher/groups-edit.php:259
1840
  msgid "after the 6th paragraph"
1841
  msgstr ""
1842
 
1843
+ #: dashboard/publisher/groups-edit.php:222
1844
+ #: dashboard/publisher/groups-edit.php:260
1845
  msgid "after the 7th paragraph"
1846
  msgstr ""
1847
 
1848
+ #: dashboard/publisher/groups-edit.php:223
1849
+ #: dashboard/publisher/groups-edit.php:261
1850
  msgid "after the 8th paragraph"
1851
  msgstr ""
1852
 
1853
+ #: dashboard/publisher/groups-edit.php:229
1854
  msgid "Which categories?"
1855
  msgstr "Кои категории?"
1856
 
1857
+ #: dashboard/publisher/groups-edit.php:234
1858
  msgid "Click the categories posts you want the adverts to show in."
1859
  msgstr "Изберете категориите, на които искате да се показват рекламите."
1860
 
1861
+ #: dashboard/publisher/groups-edit.php:239
1862
  msgid "In pages?"
1863
  msgstr ""
1864
 
1865
+ #: dashboard/publisher/groups-edit.php:267
1866
  msgid "Which pages?"
1867
  msgstr "Кои страници?"
1868
 
1869
+ #: dashboard/publisher/groups-edit.php:272
1870
  msgid "Click the pages you want the adverts to show in."
1871
  msgstr "Изберете страниците, на които искате да се показват рекламите."
1872
 
1873
+ #: dashboard/publisher/groups-edit.php:300
1874
  msgid "Wrapper code"
1875
  msgstr "Код за обвивката"
1876
 
1877
+ #: dashboard/publisher/groups-edit.php:301
1878
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1879
  msgstr ""
1880
 
1881
+ #: dashboard/publisher/groups-edit.php:305
1882
  msgid "Before advert"
1883
  msgstr ""
1884
 
1885
+ #: dashboard/publisher/groups-edit.php:309
1886
  msgid "Options:"
1887
  msgstr "Настройки:"
1888
 
1889
+ #: dashboard/publisher/groups-edit.php:313
1890
  msgid "After advert"
1891
  msgstr ""
1892
 
1893
+ #: dashboard/publisher/groups-edit.php:322
1894
  msgid "Select adverts"
1895
  msgstr ""
1896
 
1897
+ #: dashboard/publisher/groups-edit.php:327
1898
  msgid "Choose adverts"
1899
  msgstr ""
1900
 
1901
+ #: dashboard/publisher/groups-edit.php:333
1902
  msgid "Visible until"
1903
  msgstr "Да се вижда до"
1904
 
1905
+ #: dashboard/publisher/groups-edit.php:375
1906
  msgid "No adverts created!"
1907
  msgstr ""
1908
 
1922
  msgid "This action can not be undone!"
1923
  msgstr "Това действие е необратимо!"
1924
 
1925
+ #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1926
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
1927
  msgid "OK to continue, CANCEL to stop."
1928
  msgstr "ОК, за да продължите, ОТКАЗ за стоп."
1929
 
1935
  msgid "Statistics for group"
1936
  msgstr "Статистика за групи"
1937
 
1938
+ #: dashboard/settings/advertisers.php:16
1939
  msgid "Advertisers - Available in AdRotate Pro"
1940
  msgstr ""
1941
 
1942
+ #: dashboard/settings/advertisers.php:17
1943
  msgid "Enable advertisers so they can review and manage their own ads."
1944
  msgstr ""
1945
  "Активирайте страницата за рекламодатели, за да могат сами да следят и "
1946
  "управляват рекламите си."
1947
 
1948
+ #: dashboard/settings/advertisers.php:20
1949
  msgid "Enable Advertisers"
1950
  msgstr "Активиране на страницата за рекламодатели"
1951
 
1952
+ #: dashboard/settings/advertisers.php:22
1953
  msgid "Allow adverts to be coupled to users (Advertisers)."
1954
  msgstr "Позволи рекламите да бъдат свързвани с потребители (Рекламодатели)."
1955
 
1956
+ #: dashboard/settings/advertisers.php:26
1957
  msgid "Edit/update adverts"
1958
  msgstr "Редакция/Обновяване на реклами"
1959
 
1960
+ #: dashboard/settings/advertisers.php:28
1961
  msgid "Allow advertisers to add new or edit their adverts."
1962
  msgstr "Позволяване на рекламодателите да редактират или добавят реклами."
1963
 
1964
+ #: dashboard/settings/advertisers.php:32
1965
+ msgid "Mobile adverts"
1966
+ msgstr ""
1967
+
1968
+ #: dashboard/settings/advertisers.php:34
1969
+ msgid "Allow advertisers to specify on which devices their ads will show."
1970
+ msgstr ""
1971
+
1972
+ #: dashboard/settings/advertisers.php:40
1973
  msgid ""
1974
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
1975
  "be enabled, too."
1976
  msgstr ""
1977
 
1978
+ #: dashboard/settings/advertisers.php:44
1979
  msgid "Advertiser role"
1980
  msgstr "Роля на рекламодатели"
1981
 
1982
+ #: dashboard/settings/advertisers.php:46
1983
  msgid "Create a seperate user role for your advertisers."
1984
  msgstr ""
1985
 
1986
+ #: dashboard/settings/advertisers.php:47
1987
  msgid ""
1988
  "Don't forget to give these users access to their advertiser dashboard via "
1989
  "the Roles tab."
1990
  msgstr ""
1991
 
1992
+ #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1993
+ #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
1994
+ #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1995
+ #: dashboard/settings/statistics.php:73
1996
+ msgid "Update Options"
1997
+ msgstr "Опции за обновяване"
1998
+
1999
+ #: dashboard/settings/general.php:17
2000
  msgid "General Settings"
2001
  msgstr ""
2002
 
2003
+ #: dashboard/settings/general.php:18
2004
  msgid "General settings for AdRotate."
2005
  msgstr ""
2006
 
2007
+ #: dashboard/settings/general.php:18 dashboard/settings/statistics.php:18
2008
  msgid "Some options are only available in AdRotate Pro!"
2009
  msgstr ""
2010
 
2011
+ #: dashboard/settings/general.php:21
2012
  msgid "Shortcode in widgets"
2013
  msgstr ""
2014
 
2015
+ #: dashboard/settings/general.php:22
2016
  msgid ""
2017
  "Enable this option to if your theme does not support shortcodes in the "
2018
  "WordPress text widget."
2019
  msgstr ""
2020
 
2021
+ #: dashboard/settings/general.php:25
2022
  msgid "Disable live preview"
2023
  msgstr ""
2024
 
2025
+ #: dashboard/settings/general.php:26
2026
  msgid ""
2027
  "Enable this option if you have faulty adverts that overflow their designated "
2028
  "area while creating/editing adverts."
2029
  msgstr ""
2030
 
2031
+ #: dashboard/settings/general.php:29
2032
  msgid "Disable dynamic mode"
2033
  msgstr ""
2034
 
2035
+ #: dashboard/settings/general.php:30
2036
  msgid ""
2037
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2038
  "you notice skipping or jumpy content."
2039
  msgstr ""
2040
 
2041
+ #: dashboard/settings/general.php:33
2042
  msgid "Load jQuery"
2043
  msgstr "Зареди jQuery"
2044
 
2045
+ #: dashboard/settings/general.php:34
2046
  msgid ""
2047
  "Enable this option if your theme does not load jQuery. jQuery is required "
2048
  "for dynamic groups, statistics and some other features."
2049
  msgstr ""
2050
 
2051
+ #: dashboard/settings/general.php:37
2052
  msgid "Load scripts in footer?"
2053
  msgstr ""
2054
 
2055
+ #: dashboard/settings/general.php:38
2056
  msgid ""
2057
  "Enable this option if you want to load all AdRotate Javascripts in the "
2058
  "footer of your site."
2059
  msgstr ""
2060
 
2061
+ #: dashboard/settings/general.php:41
2062
  msgid "Adblock disguise"
2063
  msgstr ""
2064
 
2065
+ #: dashboard/settings/general.php:43
2066
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2067
  msgstr ""
2068
 
2069
+ #: dashboard/settings/general.php:44
2070
  msgid ""
2071
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2072
  msgstr ""
2073
 
2074
+ #: dashboard/settings/general.php:44
2075
  msgid ""
2076
  "To also apply this feature to widgets, use a text widget with a shortcode "
2077
  "instead of the AdRotate widget."
2078
  msgstr ""
2079
 
2080
+ #: dashboard/settings/general.php:44
2081
  msgid ""
2082
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2083
  "feature will have little effect!"
2084
  msgstr ""
2085
 
2086
+ #: dashboard/settings/general.php:49
2087
  msgid "Banner Folder"
2088
  msgstr "Папка с банери"
2089
 
2090
+ #: dashboard/settings/general.php:50
2091
  msgid "Set a location where your banner images will be stored."
2092
  msgstr ""
2093
  "Задайте местоположение, където да се записват вашите картинки за банери."
2094
 
2095
+ #: dashboard/settings/general.php:53
2096
  msgid "Location"
2097
  msgstr "Местоположение"
2098
 
2099
+ #: dashboard/settings/general.php:55
2100
  msgid "(Default: wp-content/banners/)."
2101
  msgstr "(По подразбиране: wp-content/banners/)."
2102
 
2103
+ #: dashboard/settings/general.php:56
2104
  msgid ""
2105
  "To try and trick ad blockers you could set the folder to something crazy "
2106
  "like:"
2108
  "Опитайте да заблудите AdBlocker-ите, като използвате шантаво име за папката, "
2109
  "като например:"
2110
 
2111
+ #: dashboard/settings/general.php:57
2112
  msgid ""
2113
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2114
  "will show errors when the folder is missing."
2116
  "Папката няма да бъде създадена автоматично, ако не съществува. AdRotate ще "
2117
  "показва грешки, ако папката не съществува."
2118
 
2119
+ #: dashboard/settings/general.php:62
2120
  msgid "Bot filter"
2121
  msgstr "Филтър на ботове"
2122
 
2123
+ #: dashboard/settings/general.php:63
2124
  msgid "The bot filter is used for the AdRotate stats tracker."
2125
  msgstr ""
2126
 
2127
+ #: dashboard/settings/general.php:66
2128
  msgid "User-Agent Filter"
2129
  msgstr "Филтър за агенти"
2130
 
2131
+ #: dashboard/settings/general.php:69
2132
  msgid ""
2133
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2134
  msgstr ""
2135
 
2136
+ #: dashboard/settings/general.php:70
2137
  msgid ""
2138
  "Keep in mind that this might give false positives. The word 'fire' also "
2139
  "matches 'firefox', but not vice-versa. So be careful!"
2140
  msgstr ""
2141
 
2142
+ #: dashboard/settings/general.php:71
2143
  msgid ""
2144
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2145
  "characters are stripped out."
2146
  msgstr ""
2147
 
2148
+ #: dashboard/settings/general.php:72
2149
  msgid ""
2150
  "Additionally to the list specified here, empty User-Agents are blocked as "
2151
  "well."
2152
  msgstr "Освен този списък, празни Агенти също ще бъдат блокирани."
2153
 
2154
+ #: dashboard/settings/general.php:72
2155
  msgid "Learn more about"
2156
  msgstr "Научете повече за"
2157
 
2158
+ #: dashboard/settings/general.php:72
2159
  msgid "user-agents"
2160
  msgstr "агенти"
2161
 
2162
+ #: dashboard/settings/geotargeting.php:17
2163
  msgid "Geo Targeting - Available in AdRotate Pro"
2164
  msgstr ""
2165
 
2166
+ #: dashboard/settings/geotargeting.php:18
2167
  msgid "Target certain areas in the world for better advertising oppurtunities."
2168
  msgstr ""
2169
 
2170
+ #: dashboard/settings/geotargeting.php:21
2171
  msgid "Which Geo Service"
2172
  msgstr ""
2173
 
2174
+ #: dashboard/settings/geotargeting.php:28
2175
+ msgid "Experimental"
 
 
2176
  msgstr ""
2177
 
2178
+ #: dashboard/settings/geotargeting.php:31
2179
+ msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2180
+ msgstr ""
2181
+
2182
+ #: dashboard/settings/geotargeting.php:32
2183
+ #: dashboard/settings/geotargeting.php:36
2184
+ #: dashboard/settings/geotargeting.php:40
2185
+ msgid "Supports:"
2186
  msgstr ""
2187
 
2188
  #: dashboard/settings/geotargeting.php:33
2189
+ #: dashboard/settings/geotargeting.php:37
2190
+ #: dashboard/settings/geotargeting.php:41
2191
+ msgid "Scalability:"
2192
+ msgstr ""
2193
+
2194
+ #: dashboard/settings/geotargeting.php:33
2195
+ msgid "Suitable for small to medium websites."
2196
+ msgstr ""
2197
+
2198
+ #: dashboard/settings/geotargeting.php:35
2199
+ msgid ""
2200
+ "The most accurate geo targeting you can get for only $20 USD per 50000 "
2201
+ "lookups."
2202
+ msgstr ""
2203
+
2204
+ #: dashboard/settings/geotargeting.php:37
2205
+ msgid "Suitable for any size website as long as you have lookups."
2206
+ msgstr ""
2207
+
2208
+ #: dashboard/settings/geotargeting.php:39
2209
+ msgid "Basic geolocation included in every CloudFlare account."
2210
+ msgstr ""
2211
+
2212
+ #: dashboard/settings/geotargeting.php:41
2213
+ msgid "Suitable for any size website."
2214
+ msgstr ""
2215
+
2216
+ #: dashboard/settings/geotargeting.php:46
2217
  msgid "Geo Cookie Lifespan"
2218
  msgstr ""
2219
 
2220
+ #: dashboard/settings/geotargeting.php:55
2221
  msgid "Hours."
2222
  msgstr ""
2223
 
2224
+ #: dashboard/settings/geotargeting.php:56
2225
  msgid ""
2226
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2227
  "cookie last? A longer period is less accurate for mobile users but may "
2228
  "reduce the usage of your lookups drastically."
2229
  msgstr ""
2230
 
2231
+ #: dashboard/settings/geotargeting.php:62
2232
  msgid "MaxMind City/Country"
2233
  msgstr ""
2234
 
2235
+ #: dashboard/settings/geotargeting.php:65
2236
  msgid "Username/Email"
2237
  msgstr ""
2238
 
2239
+ #: dashboard/settings/geotargeting.php:69
2240
  msgid "Password/License Key"
2241
  msgstr ""
2242
 
2243
+ #: dashboard/settings/maintenance.php:16
2244
  msgid "Maintenance"
2245
  msgstr "Поддръжка"
2246
 
2247
+ #: dashboard/settings/maintenance.php:17
2248
  msgid ""
2249
  "Use these functions when you notice your database is slow, unresponsive and "
2250
  "sluggish."
2251
  msgstr ""
2252
 
2253
+ #: dashboard/settings/maintenance.php:20 dashboard/settings/maintenance.php:22
2254
  msgid "Optimize Database"
2255
  msgstr "Оптимизиране на базата данни"
2256
 
2257
+ #: dashboard/settings/maintenance.php:22
2258
  msgid "You are about to optimize the AdRotate database."
2259
  msgstr "На път сте да оптимизирате базата данни на AdRotate."
2260
 
2261
+ #: dashboard/settings/maintenance.php:22
2262
  msgid "Did you make a backup of your database?"
2263
  msgstr "Направихте ли резервно копие на своята база данни?"
2264
 
2265
+ #: dashboard/settings/maintenance.php:22
2266
  msgid ""
2267
  "This may take a moment and may cause your website to respond slow "
2268
  "temporarily!"
2270
  "Това ще отнеме малко време и може да накара сайта Ви да работи по-бавно за "
2271
  "момент!"
2272
 
2273
+ #: dashboard/settings/maintenance.php:23
2274
  msgid "Cleans up overhead data in the AdRotate tables."
2275
  msgstr "Почиста overhead данните в таблиците на AdRotate."
2276
 
2277
+ #: dashboard/settings/maintenance.php:24
2278
  msgid ""
2279
  "Overhead data is accumulated garbage resulting from many changes you've "
2280
  "made. This can vary from nothing to hundreds of KiB of data."
2282
  "Overhead данните са боклук, акумулиран в резултат на множеството промени, "
2283
  "които правите. Те могар да варират от 0 до хиляди KB."
2284
 
2285
+ #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
2286
  msgid "Clean-up Database"
2287
  msgstr "Почистване на базата данни"
2288
 
2289
+ #: dashboard/settings/maintenance.php:30
2290
  msgid ""
2291
  "You are about to clean up your database. This may delete expired schedules "
2292
  "and older statistics."
2294
  "На път сте да почистите базата с данни. Това може да изтрие истекли графици "
2295
  "и стари статистики."
2296
 
2297
+ #: dashboard/settings/maintenance.php:30
2298
  msgid "Are you sure you want to continue?"
2299
  msgstr "Сигурни ли сте, че искате да продължите?"
2300
 
2301
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
2302
  msgid "This might take a while and may slow down your site during this action!"
2303
  msgstr ""
2304
  "Това действие ще отнеме време и може да забави сайта ви по време на "
2305
  "изпълнението му!"
2306
 
2307
+ #: dashboard/settings/maintenance.php:31
2308
  msgid "Delete stats older than 356 days (Optional)."
2309
  msgstr "Изтриване на статистики по-стари от 365 дни (Не е задължително)."
2310
 
2311
+ #: dashboard/settings/maintenance.php:32
2312
  msgid ""
2313
  "AdRotate creates empty records when you start making ads, groups or "
2314
  "schedules. In rare occasions these records are faulty."
2315
  msgstr ""
2316
 
2317
+ #: dashboard/settings/maintenance.php:32
2318
  msgid ""
2319
  "If you made an ad, group or schedule that does not save when you make it use "
2320
  "this button to delete those empty records."
2321
  msgstr ""
2322
 
2323
+ #: dashboard/settings/maintenance.php:32
2324
  msgid ""
2325
  "Additionally you can clean up old schedules and/or statistics. This will "
2326
  "improve the speed of your site."
2327
  msgstr ""
2328
 
2329
+ #: dashboard/settings/maintenance.php:36
2330
  msgid "Re-evaluate Ads"
2331
  msgstr "Преоценка на реклами"
2332
 
2333
+ #: dashboard/settings/maintenance.php:38
2334
  msgid "Re-evaluate all ads"
2335
  msgstr "Преоценка на всички реклами"
2336
 
2337
+ #: dashboard/settings/maintenance.php:38
2338
  msgid "You are about to check all ads for errors."
2339
  msgstr "На път сте да проверите всички реклами за грешки."
2340
 
2341
+ #: dashboard/settings/maintenance.php:39
2342
  msgid ""
2343
  "This will apply all evaluation rules to all ads to see if any error slipped "
2344
  "in. Normally you should not need this feature."
2346
  "Това ще провери всички реклами за грешки. Попринцип не би трябвало да имате "
2347
  "нужда от тази функция."
2348
 
2349
+ #: dashboard/settings/maintenance.php:43
2350
  msgid ""
2351
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2352
  "database. They only apply to your ads/groups and stats. Not to other "
2359
  "is not a valid point in any case."
2360
  msgstr ""
2361
 
2362
+ #: dashboard/settings/maintenance.php:45
2363
  msgid "Troubleshooting"
2364
  msgstr "Отстраняване на проблеми"
2365
 
2366
+ #: dashboard/settings/maintenance.php:46
2367
  msgid ""
2368
  "The below options are not meant for normal use and are only there for "
2369
  "developers to review saved settings or how ads are selected. These can be "
2371
  "SHOULD BE LEFT UNCHECKED!!"
2372
  msgstr ""
2373
 
2374
+ #: dashboard/settings/maintenance.php:49
2375
  msgid "Developer Debug"
2376
  msgstr "Developer Debug"
2377
 
2378
+ #: dashboard/settings/maintenance.php:51
2379
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2380
  msgstr ""
2381
 
2382
+ #: dashboard/settings/maintenance.php:52
2383
  msgid "View advert specs and (some) stats in the dashboard."
2384
  msgstr ""
2385
 
2386
+ #: dashboard/settings/maintenance.php:53
2387
  msgid ""
2388
  "Disable timers for clicks and impressions and enable a alert window for "
2389
  "clicktracking."
2391
  "Изключване на брояча за кликове и импресии и активиране на напомнящ прозорец "
2392
  "за проследяване на кликове."
2393
 
2394
+ #: dashboard/settings/maintenance.php:54
2395
  msgid "Temporarily disable encryption on the redirect url."
2396
  msgstr "Временно изключване на криптирането на пренасочващоя адрес."
2397
 
2398
+ #: dashboard/settings/maintenance.php:59
2399
  msgid "Status and Versions"
2400
  msgstr ""
2401
 
 
 
 
 
 
 
 
 
2402
  #: dashboard/settings/maintenance.php:62
 
 
 
 
 
 
 
 
2403
  msgid "Current status of adverts"
2404
  msgstr "Настоящ статус на рекламите"
2405
 
2406
+ #: dashboard/settings/maintenance.php:63
2407
  msgid "Normal"
2408
  msgstr "Нормално"
2409
 
2410
+ #: dashboard/settings/maintenance.php:63
2411
  msgid "Error"
2412
  msgstr "Грешка"
2413
 
2414
+ #: dashboard/settings/maintenance.php:63
2415
  msgid "Expired"
2416
  msgstr "Изтекло"
2417
 
2418
+ #: dashboard/settings/maintenance.php:63
2419
  msgid "Expires Soon"
2420
  msgstr "Изтича скоро"
2421
 
2422
+ #: dashboard/settings/maintenance.php:63
2423
  msgid "Unknown"
2424
  msgstr ""
2425
 
2426
+ #: dashboard/settings/maintenance.php:66
2427
  msgid "Banners/assets Folder"
2428
  msgstr ""
2429
 
2430
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2431
  msgid "Exists and appears writable"
2432
  msgstr ""
2433
 
2434
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2435
  msgid "Not writable or does not exist"
2436
  msgstr ""
2437
 
2438
+ #: dashboard/settings/maintenance.php:70
2439
+ msgid "Reports Folder"
2440
+ msgstr ""
2441
+
2442
  #: dashboard/settings/maintenance.php:76
2443
+ msgid "Advert evaluation"
2444
+ msgstr ""
 
2445
 
2446
+ #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2447
+ msgid "Not scheduled! Re-activate the plugin from the plugins page."
2448
+ msgstr ""
2449
 
2450
+ #: dashboard/settings/maintenance.php:78
2451
+ msgid "Trackerdata cleanup"
2452
+ msgstr ""
2453
+
2454
+ #: dashboard/settings/maintenance.php:83
2455
+ msgid "Internal Versions"
2456
+ msgstr ""
2457
 
2458
+ #: dashboard/settings/maintenance.php:84
2459
+ msgid ""
2460
+ "Unless you experience database issues or a warning shows below, these "
2461
+ "numbers are not really relevant for troubleshooting. Support may ask for "
2462
+ "them to verify your database status."
2463
+ msgstr ""
2464
+
2465
+ #: dashboard/settings/maintenance.php:87
2466
+ msgid "AdRotate version"
2467
+ msgstr ""
2468
+
2469
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2470
+ msgid "Current:"
2471
+ msgstr ""
2472
+
2473
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2474
+ msgid "Should be:"
2475
+ msgstr ""
2476
+
2477
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2478
+ msgid "Previous:"
2479
+ msgstr ""
2480
+
2481
+ #: dashboard/settings/maintenance.php:89
2482
+ msgid "Database version"
2483
+ msgstr ""
2484
+
2485
+ #: dashboard/settings/misc.php:16
2486
  msgid "Miscellaneous"
2487
  msgstr "Разни"
2488
 
2489
+ #: dashboard/settings/misc.php:19
2490
  msgid "Widget alignment"
2491
  msgstr "Подравняване на джаджата"
2492
 
2493
+ #: dashboard/settings/misc.php:20
2494
  msgid ""
2495
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2496
  "not always help!)"
2498
  "Сложете отметка, ако джаджите не са добре подравнени в страничната лента на "
2499
  "темата Ви. (Не винаги помага)"
2500
 
2501
+ #: dashboard/settings/misc.php:23
2502
  msgid "Widget padding"
2503
  msgstr "Padding за джаджата"
2504
 
2505
+ #: dashboard/settings/misc.php:24
2506
  msgid ""
2507
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2508
  "not always work!)"
2510
  "Сложете отметка, за да премахнете празното пространство около рекламите в "
2511
  "джаджата. (Не винаги работи!)"
2512
 
2513
+ #: dashboard/settings/misc.php:28
2514
  msgid "NOTICE:"
2515
  msgstr "ЗАБЕЛЕЖКА:"
2516
 
2517
+ #: dashboard/settings/misc.php:29
2518
  msgid ""
2519
  "You have enabled W3 Total Caching support but not defined the security hash."
2520
  msgstr ""
2521
 
2522
+ #: dashboard/settings/misc.php:29
2523
  msgid ""
2524
  "AdRotate has generated the following line for you to add to your wp-config."
2525
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2526
  "add this line, check out the following guide;"
2527
  msgstr ""
2528
 
2529
+ #: dashboard/settings/misc.php:29
2530
  msgid "Set up W3 Total Caching"
2531
  msgstr ""
2532
 
2533
+ #: dashboard/settings/misc.php:33
2534
  msgid "W3 Total Caching"
2535
  msgstr "W3 Total Caching"
2536
 
2537
+ #: dashboard/settings/misc.php:34
2538
  msgid "Check this box if you use W3 Total Caching on your site."
2539
  msgstr "Сложете отметка ако използвате W3 Total Caching на сайта си."
2540
 
2541
+ #: dashboard/settings/misc.php:38
2542
  msgid ""
2543
  "It may take a while for the ad to start rotating. The caching plugin needs "
2544
  "to refresh the cache. This can take up to a week if not done manually."
2547
  "Кеширащото разширение трябва да обнови данните. Това може да отнеме до една "
2548
  "седмица, ако не го направите ръчно."
2549
 
2550
+ #: dashboard/settings/misc.php:38
2551
  msgid ""
2552
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2553
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2556
  "на AdRotate. Ако използвате PHP кода, трябва да го поставите в изключващ код "
2557
  "сами."
2558
 
2559
+ #: dashboard/settings/notifications.php:18
2560
  msgid "Notifications"
2561
  msgstr "Известия"
2562
 
2563
+ #: dashboard/settings/notifications.php:19
2564
  msgid "Set up who gets notifications if ads need your attention."
2565
  msgstr "Изберете кой да получава известие, ако реклама се нуждае от внимание."
2566
 
2567
+ #: dashboard/settings/notifications.php:22
2568
  msgid "How to notify"
2569
  msgstr ""
2570
 
2571
+ #: dashboard/settings/notifications.php:24
2572
  msgid "Dashboard banner."
2573
  msgstr ""
2574
 
2575
+ #: dashboard/settings/notifications.php:25
2576
  msgid "Email message."
2577
  msgstr "Email съобщение."
2578
 
2579
+ #: dashboard/settings/notifications.php:26
2580
  msgid "Push notifications to your smartphone."
2581
  msgstr "Push известия към вашия смартфон."
2582
 
2583
+ #: dashboard/settings/notifications.php:27
2584
  msgid ""
2585
  "Push notifications are delivered through Pushover, a notification service "
2586
  "for Android and iOS"
2588
  "Push известията се доставят чрез Pushover, услуга за известия за Android и "
2589
  "iOS"
2590
 
2591
+ #: dashboard/settings/notifications.php:27
2592
  msgid ""
2593
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2594
  "information can be found on the pushover website;"
2596
  "Приложението Pushover изисква еднократна поръчка за Android и/или iOS. "
2597
  "Повече информация можете да намерите на сайта на разработчика;"
2598
 
2599
+ #: dashboard/settings/notifications.php:31
2600
  msgid "Test notification"
2601
  msgstr ""
2602
 
2603
+ #: dashboard/settings/notifications.php:33
2604
  msgid "Test"
2605
  msgstr "Тест"
2606
 
2607
+ #: dashboard/settings/notifications.php:33
2608
  msgid ""
2609
  "Send a test notification to enabled methods. Before you test, save the "
2610
  "options first!"
2611
  msgstr ""
2612
 
2613
+ #: dashboard/settings/notifications.php:38
2614
+ msgid "Dashboard Banner"
2615
  msgstr ""
2616
 
2617
+ #: dashboard/settings/notifications.php:39
2618
  msgid ""
2619
  "These go in a dashboard banner visible to all users with access to AdRotate "
2620
  "on every WordPress dashboard page."
2621
  msgstr ""
2622
 
2623
+ #: dashboard/settings/notifications.php:42
2624
+ #: dashboard/settings/notifications.php:54
2625
+ #: dashboard/settings/notifications.php:84
2626
  msgid "What"
2627
  msgstr ""
2628
 
2629
+ #: dashboard/settings/notifications.php:44
2630
  msgid "Expired adverts."
2631
  msgstr ""
2632
 
2633
+ #: dashboard/settings/notifications.php:45
2634
  msgid "Almost expired adverts."
2635
  msgstr ""
2636
 
2637
+ #: dashboard/settings/notifications.php:50
2638
+ msgid "Email Message"
2639
  msgstr ""
2640
 
 
 
 
 
 
 
 
 
2641
  #: dashboard/settings/notifications.php:51
2642
  msgid ""
2643
+ "Receive email notifications about what is happening with your AdRotate setup."
 
2644
  msgstr ""
 
 
 
 
 
 
 
 
 
 
2645
 
2646
  #: dashboard/settings/notifications.php:56
2647
+ #: dashboard/settings/notifications.php:86
2648
+ msgid "Daily digest of any advert status other than normal."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2649
  msgstr ""
2650
+ "Изпращане на дневен отчет с обявите, чийто статус е различен от нормален."
 
2651
 
2652
+ #: dashboard/settings/notifications.php:57
2653
+ #: dashboard/settings/notifications.php:87
2654
  msgid "When you are running out of Geo Targeting Lookups."
2655
  msgstr ""
2656
 
2657
+ #: dashboard/settings/notifications.php:58
2658
+ #: dashboard/settings/notifications.php:88
 
 
 
 
2659
  msgid "Any advertiser saving an advert in your moderation queue."
2660
  msgstr "Всеки рекламодател, записващ реклама в опашката за одобрение."
2661
 
2662
+ #: dashboard/settings/notifications.php:59
2663
+ #: dashboard/settings/notifications.php:89
2664
  msgid "A moderator approved an advert from the moderation queue."
2665
  msgstr "Модератора е одобрил реклама от опашката за одобрение."
2666
 
2667
+ #: dashboard/settings/notifications.php:60
2668
+ #: dashboard/settings/notifications.php:90
2669
  msgid "A moderator rejected an advert from the moderation queue."
2670
  msgstr "Модератора е отхвърлил реклама от опашката за одобрение."
2671
 
2672
+ #: dashboard/settings/notifications.php:60
2673
+ #: dashboard/settings/notifications.php:90
2674
  msgid ""
2675
  "If you have a lot of activity with many advertisers adding/changing adverts "
2676
  "you may get a lot of messages!"
2678
  "Ако имате множество дейности с много рекламодатели, които добавят/променят "
2679
  "реклами, то ще получавате много съобщения!"
2680
 
2681
+ #: dashboard/settings/notifications.php:60
2682
+ msgid ""
2683
+ "Sending out a lot of email is sometimes seen as automated mailing and deemed "
2684
+ "spammy. This may result in automated filters such as those used in services "
2685
+ "like Google Gmail and Microsoft Hotmail/Outlook.com blocking your server. "
2686
+ "Make sure you whitelist the sending address in your email account once you "
2687
+ "start receiving notifications!"
2688
+ msgstr ""
2689
+
2690
+ #: dashboard/settings/notifications.php:65
2691
+ msgid "Publishers"
2692
+ msgstr "Издатели"
2693
+
2694
+ #: dashboard/settings/notifications.php:68
2695
+ msgid ""
2696
+ "Messages are sent once every 24 hours. Maximum of 5 addresses. Comma "
2697
+ "separated. This field may not be empty!"
2698
+ msgstr ""
2699
+
2700
+ #: dashboard/settings/notifications.php:72
2701
+ msgid "Advertisers"
2702
+ msgstr "Рекламодатели"
2703
+
2704
+ #: dashboard/settings/notifications.php:75
2705
+ msgid ""
2706
+ "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2707
+ "This field may not be empty!"
2708
+ msgstr ""
2709
+
2710
+ #: dashboard/settings/notifications.php:80
2711
+ msgid "Push Notifications"
2712
+ msgstr "Push известия"
2713
+
2714
+ #: dashboard/settings/notifications.php:81
2715
+ msgid ""
2716
+ "Receive information about what is happening with your AdRotate setup on your "
2717
+ "smartphone via Pushover."
2718
+ msgstr ""
2719
+ "Получавайте информация относно случващото се с вашата AdRotate инсталация "
2720
+ "директно на смартфона си чрез Pushover."
2721
+
2722
+ #: dashboard/settings/notifications.php:90
2723
+ msgid ""
2724
+ "Pushover has a monthly limit of 7500 messages, this should be plenty. If you "
2725
+ "run out, you will not receive push notifications until the quota is reset! "
2726
+ "Every message AdRotate sends, regardless of the number of receiving devices, "
2727
+ "counts as one message."
2728
+ msgstr ""
2729
+
2730
+ #: dashboard/settings/notifications.php:95
2731
  msgid "User Key"
2732
  msgstr "Потребителски ключ"
2733
 
2734
+ #: dashboard/settings/notifications.php:97
2735
  msgid "Get your user token"
2736
  msgstr ""
2737
 
2738
+ #: dashboard/settings/notifications.php:97
2739
+ #: dashboard/settings/notifications.php:103
2740
  msgid "here"
2741
  msgstr ""
2742
 
2743
+ #: dashboard/settings/notifications.php:101
2744
  msgid "Api Token"
2745
  msgstr "Api Token"
2746
 
2747
+ #: dashboard/settings/notifications.php:103
2748
  msgid "Create your"
2749
  msgstr ""
2750
 
2751
+ #: dashboard/settings/notifications.php:103
2752
  msgid "App"
2753
  msgstr ""
2754
 
2755
+ #: dashboard/settings/notifications.php:103
2756
  msgid "and get your API token"
2757
  msgstr ""
2758
 
2759
+ #: dashboard/settings/roles.php:17
2760
  msgid "Roles"
2761
  msgstr ""
2762
 
2763
+ #: dashboard/settings/roles.php:18
2764
  msgid "Who has access to what?"
2765
  msgstr "Кой до какво има достъп?"
2766
 
2767
+ #: dashboard/settings/roles.php:21
2768
  msgid "Manage/Add/Edit adverts"
2769
  msgstr "Управление/Добавяне/Редакция на обяви"
2770
 
2771
+ #: dashboard/settings/roles.php:25
2772
  msgid "Role to see and add/edit ads."
2773
  msgstr "Роля, позволяваща преглед, добавяне и редакция на реклами."
2774
 
2775
+ #: dashboard/settings/roles.php:29
2776
  msgid "Delete/Reset adverts"
2777
  msgstr "Изтриване/Нулиране на реклами"
2778
 
2779
+ #: dashboard/settings/roles.php:33
2780
  msgid "Role to delete ads and reset stats."
2781
  msgstr "Роля, позволяваща изтриване на реклами и нулиране на статистика."
2782
 
2783
+ #: dashboard/settings/roles.php:37
2784
  msgid "Manage/Add/Edit groups"
2785
  msgstr "Управление/Добавяне/Редакция на групи"
2786
 
2787
+ #: dashboard/settings/roles.php:41
2788
  msgid "Role to see and add/edit groups."
2789
  msgstr "Роля, позволяваща преглед, добавяне и редакция на групи."
2790
 
2791
+ #: dashboard/settings/roles.php:45
2792
  msgid "Delete groups"
2793
  msgstr "Изтриване на групи"
2794
 
2795
+ #: dashboard/settings/roles.php:49
2796
  msgid "Role to delete groups."
2797
  msgstr "Роля за изтриване на групи."
2798
 
2799
+ #: dashboard/settings/statistics.php:18
2800
  msgid "Track statistics for your adverts."
2801
  msgstr ""
2802
 
2803
+ #: dashboard/settings/statistics.php:21
2804
  msgid "How to track stats"
2805
  msgstr ""
2806
 
2807
+ #: dashboard/settings/statistics.php:30
2808
  msgid "Tracks impressions and clicks internally"
2809
  msgstr ""
2810
 
2811
+ #: dashboard/settings/statistics.php:30 dashboard/settings/statistics.php:32
2812
+ #: dashboard/settings/statistics.php:34
2813
  msgid "manual"
2814
  msgstr ""
2815
 
2816
+ #: dashboard/settings/statistics.php:31
2817
  msgid ""
2818
  "Click and Impression recording, Click and impression limits, impression "
2819
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2820
  "will only track impressions."
2821
  msgstr ""
2822
 
2823
+ #: dashboard/settings/statistics.php:32 dashboard/settings/statistics.php:34
2824
  msgid "In AdRotate Pro!"
2825
  msgstr ""
2826
 
2827
+ #: dashboard/settings/statistics.php:32
2828
  msgid ""
2829
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2830
  "attributes"
2831
  msgstr ""
2832
 
2833
+ #: dashboard/settings/statistics.php:33
2834
  msgid ""
2835
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2836
  "Contents."
2837
  msgstr ""
2838
 
2839
+ #: dashboard/settings/statistics.php:34
2840
  msgid ""
2841
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2842
  "uses onClick() and onload() in adverts"
2843
  msgstr ""
2844
 
2845
+ #: dashboard/settings/statistics.php:35
2846
  msgid ""
2847
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2848
  "Banner."
2849
  msgstr ""
2850
 
2851
+ #: dashboard/settings/statistics.php:41
2852
  msgid "Internal Tracker"
2853
  msgstr ""
2854
 
2855
+ #: dashboard/settings/statistics.php:42
2856
  msgid ""
2857
  "The settings below are for the internal tracker and have no effect when "
2858
  "using Piwik/Google Analytics."
2859
  msgstr ""
2860
 
2861
+ #: dashboard/settings/statistics.php:45
2862
  msgid "Logged in impressions"
2863
  msgstr "Импресии от вписани потребители"
2864
 
2865
+ #: dashboard/settings/statistics.php:47
2866
  msgid "Track impressions from logged in users."
2867
  msgstr ""
2868
 
2869
+ #: dashboard/settings/statistics.php:51
2870
  msgid "Logged in clicks"
2871
  msgstr "Кликове от вписани потребители"
2872
 
2873
+ #: dashboard/settings/statistics.php:53
2874
  msgid "Track clicks from logged in users."
2875
  msgstr "Проследяване на кликове от вписани потребители."
2876
 
2877
+ #: dashboard/settings/statistics.php:57
2878
  msgid "Impression timer"
2879
  msgstr ""
2880
 
2881
+ #: dashboard/settings/statistics.php:59 dashboard/settings/statistics.php:66
2882
  msgid "Seconds."
2883
  msgstr "Секудни."
2884
 
2885
+ #: dashboard/settings/statistics.php:60
2886
  msgid "Default: 60."
2887
  msgstr "По подразбиране: 60."
2888
 
2889
+ #: dashboard/settings/statistics.php:60
2890
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2891
  msgstr ""
2892
 
2893
+ #: dashboard/settings/statistics.php:64
2894
  msgid "Click timer"
2895
  msgstr ""
2896
 
2897
+ #: dashboard/settings/statistics.php:67
2898
  msgid "Default: 86400."
2899
  msgstr "По подразбиране: 86400."
2900
 
2901
+ #: dashboard/settings/statistics.php:67
2902
  msgid ""
2903
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2904
  msgstr ""
2905
  "Полето не може да остава празно, да съдържа стойност под 60 или над 86400 "
2906
  "(24 часа)."
2907
 
2908
+ #~ msgid "Enable responsive support for this advert."
2909
+ #~ msgstr "Активиране на responsive дизайн за тази реклама."
2910
+
2911
+ #~ msgid "Current version:"
2912
+ #~ msgstr "Текуща версия:"
2913
+
2914
+ #~ msgid "Previous version:"
2915
+ #~ msgstr "Предишна версия:"
2916
+
2917
+ #~ msgid "Current database version:"
2918
+ #~ msgstr "Текуща верския на базата данни:"
2919
+
2920
+ #~ msgid "Previous database version:"
2921
+ #~ msgstr "Предишна версия на базата данни:"
2922
+
2923
+ #, fuzzy
2924
+ #~ msgid "Ad evaluation next run:"
2925
+ #~ msgstr "Оценка на рекламата:"
2926
+
2927
+ #~ msgid "Not scheduled!"
2928
+ #~ msgstr "Не е планирано!"
2929
+
2930
+ #, fuzzy
2931
+ #~ msgid "Clean Trackerdata next run:"
2932
+ #~ msgstr "Изчистване на Trackerdata при следващо стартиране:"
2933
+
2934
+ #~ msgid "Set up who gets notification emails."
2935
+ #~ msgstr "Задайте кой да получава известия по email."
2936
+
2937
+ #~ msgid ""
2938
+ #~ "A comma separated list of email addresses. Maximum of 5 addresses. Keep "
2939
+ #~ "this list to a minimum!"
2940
+ #~ msgstr ""
2941
+ #~ "За разделител използвайте запетая. Максимум 5 адреса. Използвайте "
2942
+ #~ "възможно най-малко адреси в този списък!"
2943
+
2944
+ #~ msgid ""
2945
+ #~ "Messages are sent once every 24 hours when needed. If this field is empty "
2946
+ #~ "no email notifications will be send."
2947
+ #~ msgstr ""
2948
+ #~ "Съобщенията се изпращат когато е необходимо, но не по-често от веднъж на "
2949
+ #~ "24 часа. Ако полето е празно няма да се изпращат известия по email."
2950
+
2951
+ #~ msgid ""
2952
+ #~ "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2953
+ #~ "This field may not be empty!"
2954
+ #~ msgstr ""
2955
+ #~ "Кой да получава email съобщения от рекламодатели. Максимум 2 адреса, "
2956
+ #~ "разделени със запетая. Полето не може да бъде празно!"
2957
+
2958
  #~ msgid "Get more features with AdRotate Pro"
2959
  #~ msgstr "Получете по-голяма функционалност с AdRotate Pro"
2960
 
2999
  #~ msgid "Email Notifications"
3000
  #~ msgstr "Email Известия"
3001
 
 
 
 
3002
  #~ msgid "active ad(s) expired."
3003
  #~ msgstr "изтекла/и активна/и реклама/и."
3004
 
3101
  #~ msgid "Barely visible"
3102
  #~ msgstr "Почти видимо"
3103
 
 
 
 
3104
  #~ msgid "Normal coverage"
3105
  #~ msgstr "Нормално покритие"
3106
 
 
 
 
3107
  #~ msgid "Best visibility"
3108
  #~ msgstr "Най-добра видимост"
3109
 
language/adrotate-el.mo CHANGED
Binary file
language/adrotate-el.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-30 14:27+0800\n"
6
- "PO-Revision-Date: 2016-05-30 14:27+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"
@@ -18,118 +18,118 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: adrotate-functions.php:844
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
- #: adrotate-functions.php:847
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
- #: adrotate-functions.php:896
30
  msgid "Ad saved"
31
  msgstr ""
32
 
33
- #: adrotate-functions.php:900
34
  msgid "Group saved"
35
  msgstr ""
36
 
37
- #: adrotate-functions.php:904
38
  msgid "Ad(s) deleted"
39
  msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
40
 
41
- #: adrotate-functions.php:908
42
  msgid "Group deleted"
43
  msgstr "Η Ομάδα διαγράφηκε"
44
 
45
- #: adrotate-functions.php:912
46
  msgid "Ad(s) statistics reset"
47
  msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
48
 
49
- #: adrotate-functions.php:916
50
  msgid "Ad(s) renewed"
51
  msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
52
 
53
- #: adrotate-functions.php:920
54
  msgid "Ad(s) deactivated"
55
  msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
56
 
57
- #: adrotate-functions.php:924
58
  msgid "Ad(s) activated"
59
  msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
60
 
61
- #: adrotate-functions.php:928
62
  msgid "Group including it's Ads deleted"
63
  msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
64
 
65
- #: adrotate-functions.php:932
66
  #, fuzzy
67
  msgid "Export created"
68
  msgstr "Επιλογές εξαγωγής"
69
 
70
- #: adrotate-functions.php:937
71
  msgid "Settings saved"
72
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
73
 
74
- #: adrotate-functions.php:941
75
  msgid "Database optimized"
76
  msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
77
 
78
- #: adrotate-functions.php:945
79
  msgid "Database repaired"
80
  msgstr "Η βάση δεδομένων επιδιορθώθηκε"
81
 
82
- #: adrotate-functions.php:949
83
  msgid "Ads evaluated and statuses have been corrected where required"
84
  msgstr ""
85
  "Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
86
  "χρειάστηκε"
87
 
88
- #: adrotate-functions.php:953
89
  msgid "Empty database records removed"
90
  msgstr "Τα κενά πεδία της βάσης δεδομένων απομακρύνθηκαν"
91
 
92
- #: adrotate-functions.php:958
93
  msgid "Action prohibited"
94
  msgstr "Η ενέργεια απαγορεύεται"
95
 
96
- #: adrotate-functions.php:962
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:966
103
  msgid "No data found in selected time period"
104
  msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
105
 
106
- #: adrotate-functions.php:970
107
  msgid "Database can only be optimized or cleaned once every hour"
108
  msgstr ""
109
  "Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
110
  "ώρα"
111
 
112
- #: adrotate-functions.php:974
113
  msgid "Form can not be (partially) empty!"
114
  msgstr ""
115
 
116
- #: adrotate-functions.php:978
117
  msgid "No ads found."
118
  msgstr ""
119
 
120
- #: adrotate-functions.php:982
121
  msgid "Unexpected error"
122
  msgstr ""
123
 
124
- #: adrotate-manage-publisher.php:678
125
  msgid "AdRotate Advertiser"
126
  msgstr ""
127
 
128
- #: adrotate-output.php:574
129
  msgid "Oh no! Something went wrong!"
130
  msgstr "Παρουσιάστηκε κάποιο σφάλμα."
131
 
132
- #: adrotate-output.php:575
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 +138,7 @@ msgstr ""
138
  "που πατήσατε. Επιβεβαιώστε ότι η διεύθυνση είναι έγκυρη ή εισέλθετε μέσω του "
139
  "browser σας."
140
 
141
- #: adrotate-output.php:576
142
  msgid ""
143
  "If you have received the url you want to visit via email, you are being "
144
  "tricked!"
@@ -146,11 +146,11 @@ msgstr ""
146
  "Αν έχετε λάβει τη διεύθυνση που θέλετε να επισκεφτείτε μέσω email, σας "
147
  "ξεγέλασαν!"
148
 
149
- #: adrotate-output.php:577
150
  msgid "Contact support if the issue persists:"
151
  msgstr "Επικοινωνήστε με την υποστήριξη αν το πρόβλημα παραμένει:"
152
 
153
- #: adrotate-output.php:592
154
  msgid ""
155
  "Error, Ad is not available at this time due to schedule/geolocation "
156
  "restrictions or does not exist!"
@@ -158,7 +158,7 @@ msgstr ""
158
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
159
  "χρονικών περιορισμών ή επειδή απλώς δεν υπάρχει!"
160
 
161
- #: adrotate-output.php:594
162
  msgid ""
163
  "Error, Ad is not available at this time due to schedule/geolocation "
164
  "restrictions!"
@@ -166,7 +166,7 @@ msgstr ""
166
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
167
  "χρονικών περιορισμών."
168
 
169
- #: adrotate-output.php:601 adrotate-output.php:603
170
  msgid ""
171
  "Either there are no banners, they are disabled or none qualified for this "
172
  "location!"
@@ -174,20 +174,20 @@ msgstr ""
174
  "Ή δεν υπάρχουν διαφημιστικά γραφικά ή είναι απενεργοποιημένα ή κανένα δεν "
175
  "πληρεί τις προϋποθέσεις της τοποθεσίας!"
176
 
177
- #: adrotate-output.php:609
178
  msgid "Error, no Ad ID set! Check your syntax!"
179
  msgstr ""
180
  "Σφάλμα, δεν έχει οριστεί αναγνωριστικό διαφήμισης! Ελέγξτε την σύνταξη!"
181
 
182
- #: adrotate-output.php:615
183
  msgid "Error, no group ID set! Check your syntax!"
184
  msgstr "Σφάλμα, δεν έχει οριστεί αναγνωριστικό ομάδας! Ελέγξτε την σύνταξη!"
185
 
186
- #: adrotate-output.php:620
187
  msgid "Error, group does not exist! Check your syntax!"
188
  msgstr "Σφάλμα, η ομάδα δεν υπάρχει! Ελέγξτε την σύνταξη!"
189
 
190
- #: adrotate-output.php:626
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,217 +196,217 @@ msgstr ""
196
  "Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το AdRotate από τη σελίδα "
197
  "προσθέτων!!"
198
 
199
- #: adrotate-output.php:626
200
  msgid "If this does not solve the issue please seek support at"
201
  msgstr "Αν αυτό δεν λύνει το πρόβλημα παρακαλώ ζητήστε υποστήριξη στο"
202
 
203
- #: adrotate-output.php:632
204
  msgid "An unknown error occured."
205
  msgstr "Παρουσιάστηκε ένα άγνωστο σφάλμα."
206
 
207
- #: adrotate-output.php:651 adrotate-output.php:654 adrotate-output.php:658
208
- #: adrotate-output.php:663 adrotate-output.php:666 adrotate-output.php:669
209
  msgid "Check adverts"
210
  msgstr ""
211
 
212
- #: adrotate-output.php:674
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:677
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:682
225
  msgid "Your AdRotate Banner folder is not writable or does not exist."
226
  msgstr ""
227
 
228
- #: adrotate-output.php:722 dashboard/adrotatepro.php:99
229
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
230
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
231
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
232
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
233
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
234
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
235
- #: dashboard/settings/geotargeting.php:25
236
  #, fuzzy
237
  msgid "Buy now"
238
  msgstr "Λάβετε μέτρα τώρα"
239
 
240
- #: adrotate-output.php:723
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:723
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:723
253
  msgid "Thank you for your purchase!"
254
  msgstr ""
255
 
256
- #: adrotate-output.php:784
257
  msgid ""
258
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
259
  "this menu. Check out the"
260
  msgstr ""
261
 
262
- #: adrotate-output.php:784
263
  msgid "manuals"
264
  msgstr "εγχειρίδια"
265
 
266
- #: adrotate-output.php:784 adrotate-output.php:851
267
  msgid "and"
268
  msgstr ""
269
 
270
- #: adrotate-output.php:784
271
  msgid "forums"
272
  msgstr ""
273
 
274
- #: adrotate-output.php:814
275
  #, fuzzy
276
  msgid "Useful Links"
277
  msgstr "Χρήσιμοι σύνδεσμοι"
278
 
279
- #: adrotate-output.php:815
280
  msgid "Useful links to learn more about AdRotate"
281
  msgstr ""
282
 
283
- #: adrotate-output.php:817
284
  msgid "AdRotate website"
285
  msgstr ""
286
 
287
- #: adrotate-output.php:818
288
  #, fuzzy
289
  msgid "Getting Started With AdRotate"
290
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
291
 
292
- #: adrotate-output.php:819
293
  #, fuzzy
294
  msgid "AdRotate manuals"
295
  msgstr "Πληροφορίες του AdRotate"
296
 
297
- #: adrotate-output.php:820
298
  #, fuzzy
299
  msgid "AdRotate Support Forum"
300
  msgstr "Κατάστημα του AdRotate"
301
 
302
- #: adrotate-output.php:843
303
  #, fuzzy
304
  msgid "Help AdRotate Grow"
305
  msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
306
 
307
- #: adrotate-output.php:844
308
  msgid "Follow Arnan on Facebook"
309
  msgstr ""
310
 
311
- #: adrotate-output.php:851
312
  msgid ""
313
  "A lot of users only think to review AdRotate when something goes wrong while "
314
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
315
  msgstr ""
316
 
317
- #: adrotate-output.php:851
318
  msgid "If you find AdRotate useful please leave your honest"
319
  msgstr ""
320
 
321
- #: adrotate-output.php:851
322
  msgid "rating"
323
  msgstr ""
324
 
325
- #: adrotate-output.php:851
326
  #, fuzzy
327
  msgid "review"
328
  msgstr "Αξιολογήστε και σχολιάστε"
329
 
330
- #: adrotate-output.php:851
331
  msgid "on WordPress.org to help AdRotate grow in a positive way"
332
  msgstr ""
333
 
334
- #: adrotate-output.php:884 dashboard/settings/notifications.php:44
335
- #: dashboard/settings/notifications.php:64
336
  msgid "Available in AdRotate Pro"
337
  msgstr "Διαθέσιμο στο AdRotate Pro"
338
 
339
- #: adrotate-output.php:884
340
  #, fuzzy
341
  msgid "More information..."
342
  msgstr "Περισσότερες πληροφορίες"
343
 
344
- #: adrotate-output.php:885
345
  msgid "This feature is available in AdRotate Pro"
346
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
347
 
348
- #: adrotate-output.php:885
349
  #, fuzzy
350
  msgid "Learn more"
351
  msgstr "Μάθετε περισσότερα σχετικά"
352
 
353
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
354
- #: dashboard/publisher/adverts-edit.php:241
355
  msgid "January"
356
  msgstr "Ιανουάριος"
357
 
358
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
359
- #: dashboard/publisher/adverts-edit.php:242
360
  msgid "February"
361
  msgstr "Φεβρουάριος"
362
 
363
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
364
- #: dashboard/publisher/adverts-edit.php:243
365
  msgid "March"
366
  msgstr "Μάρτιος"
367
 
368
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
369
- #: dashboard/publisher/adverts-edit.php:244
370
  msgid "April"
371
  msgstr "Απρίλιος"
372
 
373
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
374
- #: dashboard/publisher/adverts-edit.php:245
375
  msgid "May"
376
  msgstr "Μάιος"
377
 
378
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
379
- #: dashboard/publisher/adverts-edit.php:246
380
  msgid "June"
381
  msgstr "Ιούνιος"
382
 
383
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
384
- #: dashboard/publisher/adverts-edit.php:247
385
  msgid "July"
386
  msgstr "Ιούλιος"
387
 
388
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
389
- #: dashboard/publisher/adverts-edit.php:248
390
  msgid "August"
391
  msgstr "Αύγουστος"
392
 
393
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
394
- #: dashboard/publisher/adverts-edit.php:249
395
  msgid "September"
396
  msgstr "Σεπτέμβριος"
397
 
398
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
399
- #: dashboard/publisher/adverts-edit.php:250
400
  msgid "October"
401
  msgstr "Οκτώβριος"
402
 
403
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
404
- #: dashboard/publisher/adverts-edit.php:251
405
  msgid "November"
406
  msgstr "Νοέμβριος"
407
 
408
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
409
- #: dashboard/publisher/adverts-edit.php:252
410
  msgid "December"
411
  msgstr "Δεκέμβριος"
412
 
@@ -468,277 +468,272 @@ msgstr "Κωδ:"
468
  msgid "Fill in the ID of the type you want to display!"
469
  msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
470
 
471
- #: adrotate.php:105
472
  msgid "General Info"
473
  msgstr "Γενικές Πληροφορίες"
474
 
475
- #: adrotate.php:106
476
  msgid "AdRotate Pro"
477
  msgstr "AdRotate Pro"
478
 
479
- #: adrotate.php:107
480
  msgid "Manage Adverts"
481
  msgstr ""
482
 
483
- #: adrotate.php:108 dashboard/publisher/groups-main.php:12
484
  msgid "Manage Groups"
485
  msgstr "Διαχείριση Ομάδων"
486
 
487
- #: adrotate.php:109 adrotate.php:387
488
  #, fuzzy
489
  msgid "Manage Schedules"
490
  msgstr "Διαχείριση"
491
 
492
- #: adrotate.php:110
493
  #, fuzzy
494
  msgid "Manage Media"
495
  msgstr "Media:"
496
 
497
- #: adrotate.php:111
498
  msgid "Settings"
499
  msgstr "Ρυθμίσεις"
500
 
501
- #: adrotate.php:134
502
  msgid "AdRotate Info"
503
  msgstr "Πληροφορίες του AdRotate"
504
 
505
- #: adrotate.php:155
506
  #, fuzzy
507
  msgid "AdRotate Professional"
508
  msgstr "AdRotate Pro"
509
 
510
- #: adrotate.php:198
511
  msgid "Advert Management"
512
  msgstr ""
513
 
514
- #: adrotate.php:256 adrotate.php:326 adrotate.php:382
515
  msgid "Manage"
516
  msgstr "Διαχείριση"
517
 
518
- #: adrotate.php:257 adrotate.php:327 adrotate.php:383
519
  msgid "Add New"
520
  msgstr "Προσθήκη Νέας"
521
 
522
- #: adrotate.php:320
523
  msgid "Group Management"
524
  msgstr "Διαχείριση Ομάδας"
525
 
526
- #: adrotate.php:329
527
  msgid "Report"
528
  msgstr "Αναφορά"
529
 
530
- #: adrotate.php:378
531
  #, fuzzy
532
  msgid "Schedule Management available in AdRotate Pro"
533
  msgstr "Διαθέσιμο στο AdRotate Pro"
534
 
535
- #: adrotate.php:388
536
  #, fuzzy
537
  msgid ""
538
  "Schedule management and multiple schedules per advert is available in "
539
  "AdRotate Pro."
540
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
541
 
542
- #: adrotate.php:388 adrotate.php:475 dashboard/publisher/adverts-edit.php:188
543
  #: dashboard/publisher/adverts-main.php:114
544
- #: dashboard/publisher/groups-edit.php:75
545
  #: dashboard/publisher/groups-main.php:89
546
  #, fuzzy
547
  msgid "More information"
548
  msgstr "Περισσότερες πληροφορίες"
549
 
550
- #: adrotate.php:395 dashboard/publisher/adverts-disabled.php:20
551
  #: dashboard/publisher/adverts-error.php:19
552
  #: dashboard/publisher/adverts-main.php:20
553
  #: dashboard/publisher/groups-main.php:20
554
  msgid "Bulk Actions"
555
  msgstr "Μαζικές Ενέργειες"
556
 
557
- #: adrotate.php:396 dashboard/publisher/adverts-disabled.php:25
558
  #: dashboard/publisher/adverts-error.php:29
559
  #: dashboard/publisher/adverts-main.php:30
560
  #: dashboard/publisher/groups-main.php:24
561
  msgid "Go"
562
  msgstr "Go"
563
 
564
- #: adrotate.php:405 dashboard/publisher/adverts-disabled.php:35
565
  #: dashboard/publisher/adverts-error.php:39
566
  #: dashboard/publisher/adverts-main.php:39
567
- #: dashboard/publisher/groups-edit.php:51
568
  #: dashboard/publisher/groups-main.php:32
569
  msgid "ID"
570
  msgstr "Κωδ."
571
 
572
- #: adrotate.php:406
573
  #, fuzzy
574
  msgid "Start"
575
  msgstr "Ώρα έναρξης (ωω: λλ):"
576
 
577
- #: adrotate.php:406
578
  #, fuzzy
579
  msgid "End"
580
  msgstr "Ώρα λήξης (ωω: λλ):"
581
 
582
- #: adrotate.php:407
583
  msgid "Ads"
584
  msgstr "Διαφημίσεις"
585
 
586
- #: adrotate.php:409
587
  msgid "Max Impressions"
588
  msgstr "Max Impressions"
589
 
590
- #: adrotate.php:410
591
  msgid "Max Clicks"
592
  msgstr "Max Clicks"
593
 
594
- #: adrotate.php:440
595
  #, fuzzy
596
  msgid "No schedules created yet!"
597
  msgstr "Κανένα πεδίο δεν έχει δημιουργηθεί ακόμα!"
598
 
599
- #: adrotate.php:445
600
  #, fuzzy
601
  msgid "Easily manage your schedules from here with AdRotate Pro."
602
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
603
 
604
- #: adrotate.php:445 adrotate.php:511
605
  #, fuzzy
606
  msgid "Upgrade today!"
607
  msgstr "Σήμερα"
608
 
609
- #: adrotate.php:448 dashboard/publisher/adverts-error.php:72
610
- #: dashboard/publisher/groups-edit.php:387
611
  msgid "Expires soon."
612
  msgstr "Λήγει σύντομα."
613
 
614
- #: adrotate.php:449 dashboard/publisher/adverts-error.php:73
615
- #: dashboard/publisher/groups-edit.php:388
616
  msgid "Has expired."
617
  msgstr "Έχει λήξει."
618
 
619
- #: adrotate.php:473
620
  #, fuzzy
621
  msgid "Media Management available in AdRotate Pro"
622
  msgstr "Διαθέσιμο στο AdRotate Pro"
623
 
624
- #: adrotate.php:475
625
  msgid "Upload images to the AdRotate Pro banners folder from here."
626
  msgstr ""
627
 
628
- #: adrotate.php:475
629
  msgid ""
630
  "This is useful if you use responsive adverts with multiple images or have "
631
  "HTML5 adverts containing multiple files."
632
  msgstr ""
633
 
634
- #: adrotate.php:475
635
  #, fuzzy
636
  msgid "Media uploading and management is available in AdRotate Pro."
637
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
638
 
639
- #: adrotate.php:477
640
  msgid "Upload new file"
641
  msgstr ""
642
 
643
- #: adrotate.php:478
644
  msgid "Accepted files:"
645
  msgstr ""
646
 
647
- #: adrotate.php:478
648
  msgid "For HTML5 ads you can also upload html and javascript files."
649
  msgstr ""
650
 
651
- #: adrotate.php:478
652
  msgid "Maximum size is 512Kb."
653
  msgstr ""
654
 
655
- #: adrotate.php:478
656
  msgid "Important:"
657
  msgstr ""
658
 
659
- #: adrotate.php:478
660
  msgid ""
661
  "Make sure your file has no spaces or special characters in the name. Replace "
662
  "spaces with a - or _."
663
  msgstr ""
664
 
665
- #: adrotate.php:478
666
  msgid ""
667
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
668
  "file so it knows about the changed name. For example for the javascript file."
669
  msgstr ""
670
 
671
- #: adrotate.php:481
672
  msgid ""
673
  "For responsive adverts make sure the filename is in the following format; "
674
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
675
  msgstr ""
676
 
677
- #: adrotate.php:482 dashboard/publisher/adverts-edit.php:311
678
  msgid ""
679
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
680
  "filename instead of \".full\" for the various viewports."
681
  msgstr ""
682
 
683
- #: adrotate.php:483 dashboard/publisher/groups-edit.php:312
684
- #: dashboard/publisher/groups-edit.php:320
685
  msgid "Example:"
686
  msgstr "Παράδειγμα:"
687
 
688
- #: adrotate.php:483
689
  msgid ""
690
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
691
  "for different viewports."
692
  msgstr ""
693
 
694
- #: adrotate.php:487
695
  msgid "Upload file"
696
  msgstr ""
697
 
698
- #: adrotate.php:487
699
  msgid "Click only once per file!"
700
  msgstr ""
701
 
702
- #: adrotate.php:490
703
  msgid "Available files in"
704
  msgstr ""
705
 
706
- #: adrotate.php:495 dashboard/publisher/groups-edit.php:55
707
  #: dashboard/publisher/groups-main.php:33
708
  msgid "Name"
709
  msgstr "Όνομα"
710
 
711
- #: adrotate.php:496
712
  #, fuzzy
713
  msgid "Actions"
714
  msgstr "Μαζικές Ενέργειες"
715
 
716
- #: adrotate.php:501 adrotate.php:502 adrotate.php:503 adrotate.php:504
717
- #: adrotate.php:505 adrotate.php:506 adrotate.php:507
718
  #: dashboard/publisher/adverts-disabled.php:22
719
  #: dashboard/publisher/adverts-error.php:21
720
  #: dashboard/publisher/adverts-main.php:22
721
  msgid "Delete"
722
  msgstr "Διαγραφή"
723
 
724
- #: adrotate.php:511
725
  msgid ""
726
  "Make sure the banner images are not in use by adverts when you delete them!"
727
  msgstr ""
728
 
729
- #: adrotate.php:511
730
  #, fuzzy
731
  msgid "Manage your banner folder from here with AdRotate Pro."
732
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
733
 
734
- #: adrotate.php:540
735
  msgid "AdRotate Settings"
736
  msgstr "Ρυθμίσεις AdRotate"
737
 
738
- #: adrotate.php:612
739
- msgid "Update Options"
740
- msgstr "Επιλογές Ανανέωσης"
741
-
742
  #: dashboard/adrotatepro.php:20
743
  #, fuzzy
744
  msgid "Satisfy your advertisers"
@@ -928,7 +923,7 @@ msgstr "Η εγκατάστασή σας"
928
  msgid "Adverts that need you"
929
  msgstr "Διαφημίσεις που χρειάζονται την προσοχή σας"
930
 
931
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
932
  #: dashboard/publisher/groups-main.php:34
933
  msgid "Adverts"
934
  msgstr "Διαφημίσεις"
@@ -971,7 +966,7 @@ msgid "Disabled Adverts"
971
  msgstr ""
972
 
973
  #: dashboard/publisher/adverts-disabled.php:21
974
- #: dashboard/publisher/adverts-edit.php:176
975
  msgid "Activate"
976
  msgstr "Ενεργοποίηση"
977
 
@@ -993,7 +988,7 @@ msgstr ""
993
  "πρωί."
994
 
995
  #: dashboard/publisher/adverts-disabled.php:37
996
- #: dashboard/publisher/adverts-edit.php:116
997
  #: dashboard/publisher/adverts-error.php:41
998
  #: dashboard/publisher/adverts-main.php:41
999
  msgid "Title"
@@ -1001,7 +996,7 @@ msgstr "Τίτλος"
1001
 
1002
  #: dashboard/publisher/adverts-disabled.php:38
1003
  #: dashboard/publisher/adverts-main.php:44
1004
- #: dashboard/publisher/groups-edit.php:333
1005
  #: dashboard/publisher/groups-main.php:36
1006
  msgid "Shown"
1007
  msgstr "Εμφανίζονται"
@@ -1010,7 +1005,7 @@ msgstr "Εμφανίζονται"
1010
  #: dashboard/publisher/adverts-main.php:46
1011
  #: dashboard/publisher/adverts-report.php:36
1012
  #: dashboard/publisher/adverts-report.php:57
1013
- #: dashboard/publisher/groups-edit.php:334
1014
  #: dashboard/publisher/groups-main.php:38
1015
  #: dashboard/publisher/groups-report.php:37
1016
  #: dashboard/publisher/groups-report.php:58
@@ -1052,34 +1047,28 @@ msgid "The AdCode cannot be empty!"
1052
  msgstr "Ο AdCode δεν μπορεί να είναι κενός!"
1053
 
1054
  #: dashboard/publisher/adverts-edit.php:51
1055
- msgid "You did not use %image% in your AdCode but did select a file to use!"
 
 
1056
  msgstr ""
1057
 
1058
  #: dashboard/publisher/adverts-edit.php:54
1059
- msgid "You did use %image% in your AdCode but did not select a file to use!"
1060
- msgstr ""
1061
-
1062
- #: dashboard/publisher/adverts-edit.php:57
1063
  msgid ""
1064
- "You did not use %image% in your AdCode. The responsive checkbox will be "
1065
- "ineffective."
1066
  msgstr ""
1067
 
1068
- #: dashboard/publisher/adverts-edit.php:60
1069
  msgid ""
1070
  "There is a problem saving the image. Please reset your image and re-save the "
1071
  "ad!"
1072
  msgstr ""
1073
 
1074
- #: dashboard/publisher/adverts-edit.php:63
1075
- msgid "Responsive is enabled but your banner image has the wrong name."
1076
- msgstr ""
1077
-
1078
- #: dashboard/publisher/adverts-edit.php:66
1079
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1080
  msgstr ""
1081
 
1082
- #: dashboard/publisher/adverts-edit.php:71
1083
  msgid ""
1084
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1085
  "the ad!"
@@ -1087,80 +1076,80 @@ msgstr ""
1087
  "Το AdRotate δεν μπορεί να βρει κάποιο σφάλμα, αλλά η διαφήμιση είναι "
1088
  "σημειωμένη σαν λανθασμένη. Προσπαθήστε να αποθηκεύσετε πάλι τη διαφήμιση!"
1089
 
1090
- #: dashboard/publisher/adverts-edit.php:74
1091
  msgid "This ad is expired and currently not shown on your website!"
1092
  msgstr ""
1093
  "Αυτή η διαφήμιση έχει λήξει και για την ώρα δεν εμφανίζεται στην ιστοσελίδα "
1094
  "σας!"
1095
 
1096
- #: dashboard/publisher/adverts-edit.php:77
1097
  msgid "The ad will expire in less than 2 days!"
1098
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 2 ημέρες!"
1099
 
1100
- #: dashboard/publisher/adverts-edit.php:80
1101
  msgid "This ad will expire in less than 7 days!"
1102
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 7 ημέρες!"
1103
 
1104
- #: dashboard/publisher/adverts-edit.php:83
1105
  msgid "This ad has been disabled and does not rotate on your site!"
1106
  msgstr ""
1107
  "Η διαφήμιση έχει απενεργοποιηθεί και δεν προβάλεται στην ιστοσελίδα σας!"
1108
 
1109
- #: dashboard/publisher/adverts-edit.php:108
1110
  msgid "New Advert"
1111
  msgstr "Νέα Διαφήμιση"
1112
 
1113
- #: dashboard/publisher/adverts-edit.php:110
1114
  msgid "Edit Advert"
1115
  msgstr "Επεξεργασία Διαφήμισης"
1116
 
1117
- #: dashboard/publisher/adverts-edit.php:122
1118
  msgid "AdCode"
1119
  msgstr ""
1120
 
1121
- #: dashboard/publisher/adverts-edit.php:127
1122
  msgid "Basic Examples:"
1123
  msgstr "Βασικά παραδείγματα:"
1124
 
1125
- #: dashboard/publisher/adverts-edit.php:134
1126
  msgid "Useful tags"
1127
  msgstr ""
1128
 
1129
- #: dashboard/publisher/adverts-edit.php:136
1130
  msgid "Insert the advert ID Number."
1131
  msgstr ""
1132
 
1133
- #: dashboard/publisher/adverts-edit.php:136
1134
- msgid "Required when selecting a image below."
1135
  msgstr ""
1136
 
1137
- #: dashboard/publisher/adverts-edit.php:136
1138
  msgid "Insert the advert name."
1139
  msgstr ""
1140
 
1141
- #: dashboard/publisher/adverts-edit.php:136
1142
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1143
  msgstr ""
1144
 
1145
- #: dashboard/publisher/adverts-edit.php:136
1146
  msgid "Add inside the <a> tag to open advert in a new window."
1147
  msgstr ""
1148
 
1149
- #: dashboard/publisher/adverts-edit.php:136
1150
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1151
  msgstr ""
1152
 
1153
- #: dashboard/publisher/adverts-edit.php:136
1154
  msgid ""
1155
  "Place the cursor in your AdCode where you want to add any of these tags and "
1156
  "click to add it."
1157
  msgstr ""
1158
 
1159
- #: dashboard/publisher/adverts-edit.php:141
1160
  msgid "Preview"
1161
  msgstr "Προεπισκόπηση"
1162
 
1163
- #: dashboard/publisher/adverts-edit.php:144
1164
  msgid ""
1165
  "Note: While this preview is an accurate one, it might look different then it "
1166
  "does on the website."
@@ -1168,41 +1157,41 @@ msgstr ""
1168
  "Σημείωση: Όσο αυτή η προεπισκόπηση εκτελείται, μπορεί να φαίνεται "
1169
  "διαφορετική από ό, τι στην ιστοσελίδα."
1170
 
1171
- #: dashboard/publisher/adverts-edit.php:145
1172
  msgid ""
1173
  "This is because of CSS differences. Your themes CSS file is not active here!"
1174
  msgstr ""
1175
  "Αυτό είναι λόγω των διαφορών CSS. Το αρχείο θεμάτων CSS δεν είναι ενεργό εδώ!"
1176
 
1177
- #: dashboard/publisher/adverts-edit.php:150
1178
  msgid "Banner asset"
1179
  msgstr ""
1180
 
1181
- #: dashboard/publisher/adverts-edit.php:153
1182
  msgid "WordPress media:"
1183
  msgstr ""
1184
 
1185
- #: dashboard/publisher/adverts-edit.php:153
1186
  msgid "Select Banner"
1187
  msgstr "Επιλέξτε Banner"
1188
 
1189
- #: dashboard/publisher/adverts-edit.php:155
1190
  msgid "- OR -"
1191
  msgstr "- Ή -"
1192
 
1193
- #: dashboard/publisher/adverts-edit.php:157
1194
  msgid "Banner folder:"
1195
  msgstr "Φάκελος Banner:"
1196
 
1197
- #: dashboard/publisher/adverts-edit.php:158
1198
  msgid "No image selected"
1199
  msgstr "Καμία επιλεγμένη εικόνα"
1200
 
1201
- #: dashboard/publisher/adverts-edit.php:162
1202
- msgid "Use %image% in the adcode instead of the file path."
1203
  msgstr ""
1204
 
1205
- #: dashboard/publisher/adverts-edit.php:162
1206
  msgid ""
1207
  "Use either the text field or the dropdown. If the textfield has content that "
1208
  "field has priority."
@@ -1210,305 +1199,306 @@ msgstr ""
1210
  "Χρησιμοποιήστε είτε το πεδίο κειμένου είτε το μενού επιλογών. Αν το πεδίο "
1211
  "κειμένου έχει περιεχόμενο αυτό το πεδίο έχει προτεραιότητα."
1212
 
1213
- #: dashboard/publisher/adverts-edit.php:167
1214
- #: dashboard/settings/statistics.php:12
1215
  msgid "Statistics"
1216
  msgstr "Στατιστικά"
1217
 
1218
- #: dashboard/publisher/adverts-edit.php:169
1219
  msgid "Enable click and impression tracking for this advert."
1220
  msgstr ""
1221
 
1222
- #: dashboard/publisher/adverts-edit.php:170
1223
  msgid ""
1224
  "Note: Clicktracking does not work for Javascript adverts such as those "
1225
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1226
  "always supported."
1227
  msgstr ""
1228
 
1229
- #: dashboard/publisher/adverts-edit.php:180
1230
  msgid "Yes, this ad will be used"
1231
  msgstr "Ναι, θα χρησιμοποιηθεί αυτή η διαφήμιση"
1232
 
1233
- #: dashboard/publisher/adverts-edit.php:181
1234
  msgid "No, do not show this ad anywhere"
1235
  msgstr "Όχι, να μην εμφανίσεις αυτή τη διαφήμιση πουθενά "
1236
 
1237
- #: dashboard/publisher/adverts-edit.php:188
1238
  #: dashboard/publisher/adverts-main.php:114
1239
- #: dashboard/publisher/groups-edit.php:75
1240
  #: dashboard/publisher/groups-main.php:89
1241
  #, fuzzy
1242
  msgid "Get more features with AdRotate Pro."
1243
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1244
 
1245
- #: dashboard/publisher/adverts-edit.php:191
1246
- #: dashboard/publisher/adverts-edit.php:291
1247
- #: dashboard/publisher/adverts-edit.php:386
1248
- #: dashboard/publisher/adverts-edit.php:427
1249
  msgid "Save Advert"
1250
  msgstr "Αποθήκευση Διαφήμισης"
1251
 
1252
- #: dashboard/publisher/adverts-edit.php:192
1253
- #: dashboard/publisher/adverts-edit.php:292
1254
- #: dashboard/publisher/adverts-edit.php:387
1255
- #: dashboard/publisher/adverts-edit.php:428
1256
- #: dashboard/publisher/groups-edit.php:154
1257
- #: dashboard/publisher/groups-edit.php:301
1258
- #: dashboard/publisher/groups-edit.php:393
1259
  msgid "Cancel"
1260
  msgstr "Ακύρωση"
1261
 
1262
- #: dashboard/publisher/adverts-edit.php:195
1263
- #: dashboard/publisher/adverts-edit.php:369
1264
- #: dashboard/publisher/groups-edit.php:136
1265
- #: dashboard/publisher/groups-edit.php:283
1266
  msgid "Usage"
1267
  msgstr "Χρήση"
1268
 
1269
- #: dashboard/publisher/adverts-edit.php:199
1270
- #: dashboard/publisher/adverts-edit.php:373
1271
- #: dashboard/publisher/groups-edit.php:140
1272
- #: dashboard/publisher/groups-edit.php:287
1273
  msgid "Widget"
1274
  msgstr ""
1275
 
1276
- #: dashboard/publisher/adverts-edit.php:200
1277
- #: dashboard/publisher/adverts-edit.php:374
1278
  msgid ""
1279
- "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1280
- "and enter ID"
1281
  msgstr ""
1282
 
1283
- #: dashboard/publisher/adverts-edit.php:203
1284
- #: dashboard/publisher/adverts-edit.php:377
1285
- #: dashboard/publisher/groups-edit.php:144
1286
- #: dashboard/publisher/groups-edit.php:291
1287
  msgid "In a post or page"
1288
  msgstr ""
1289
 
1290
- #: dashboard/publisher/adverts-edit.php:205
1291
- #: dashboard/publisher/adverts-edit.php:379
1292
- #: dashboard/publisher/groups-edit.php:146
1293
- #: dashboard/publisher/groups-edit.php:293
1294
  msgid "Directly in a theme"
1295
  msgstr ""
1296
 
1297
- #: dashboard/publisher/adverts-edit.php:211
1298
  msgid "Schedule your advert"
1299
  msgstr ""
1300
 
1301
- #: dashboard/publisher/adverts-edit.php:215
1302
  msgid "Start date (day/month/year)"
1303
  msgstr ""
1304
 
1305
- #: dashboard/publisher/adverts-edit.php:236
1306
  msgid "End date (day/month/year)"
1307
  msgstr ""
1308
 
1309
- #: dashboard/publisher/adverts-edit.php:259
1310
  msgid "Start time (hh:mm)"
1311
  msgstr ""
1312
 
1313
- #: dashboard/publisher/adverts-edit.php:266
1314
  msgid "End time (hh:mm)"
1315
  msgstr ""
1316
 
1317
- #: dashboard/publisher/adverts-edit.php:276
1318
  msgid "Maximum Clicks"
1319
  msgstr ""
1320
 
1321
- #: dashboard/publisher/adverts-edit.php:277
1322
- #: dashboard/publisher/adverts-edit.php:279
1323
  msgid "Leave empty or 0 to skip this."
1324
  msgstr "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό."
1325
 
1326
- #: dashboard/publisher/adverts-edit.php:278
1327
  msgid "Maximum Impressions"
1328
  msgstr ""
1329
 
1330
- #: dashboard/publisher/adverts-edit.php:283
1331
  msgid "Important"
1332
  msgstr ""
1333
 
1334
- #: dashboard/publisher/adverts-edit.php:284
1335
  msgid ""
1336
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1337
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1338
  "14:00 hours. 6AM is 6:00 hours."
1339
  msgstr ""
1340
 
1341
- #: dashboard/publisher/adverts-edit.php:288
1342
  msgid ""
1343
  "Create multiple and more advanced schedules for each advert with AdRotate "
1344
  "Pro."
1345
  msgstr ""
1346
 
1347
- #: dashboard/publisher/adverts-edit.php:288
1348
- #: dashboard/publisher/adverts-edit.php:323
1349
- #: dashboard/publisher/adverts-edit.php:367
1350
- #: dashboard/publisher/groups-edit.php:200
1351
  #, fuzzy
1352
  msgid "Upgrade today"
1353
  msgstr "Σήμερα"
1354
 
1355
- #: dashboard/publisher/adverts-edit.php:295
1356
- #: dashboard/publisher/groups-edit.php:157
1357
  msgid "Advanced"
1358
  msgstr "Προχωρημένος"
1359
 
1360
- #: dashboard/publisher/adverts-edit.php:296
1361
  msgid "Everything below is optional."
1362
  msgstr "Τα πάντα από κάτω είναι προαιρετικά."
1363
 
1364
- #: dashboard/publisher/adverts-edit.php:300
1365
- msgid "Mobile"
1366
  msgstr ""
1367
 
1368
- #: dashboard/publisher/adverts-edit.php:302
1369
- msgid "Show on;"
1370
- msgstr ""
 
 
1371
 
1372
- #: dashboard/publisher/adverts-edit.php:302
1373
- msgid "Computers"
1374
  msgstr ""
1375
 
1376
- #: dashboard/publisher/adverts-edit.php:302
1377
- msgid "Smartphones"
1378
- msgstr ""
1379
 
1380
- #: dashboard/publisher/adverts-edit.php:302
1381
- msgid "Tablets."
1382
  msgstr ""
1383
 
1384
- #: dashboard/publisher/adverts-edit.php:303
1385
- msgid "Also enable mobile support in the group this advert goes in."
 
 
 
 
1386
  msgstr ""
1387
 
1388
- #: dashboard/publisher/adverts-edit.php:307
1389
- msgid "Responsive"
1390
  msgstr ""
1391
 
1392
- #: dashboard/publisher/adverts-edit.php:309
1393
- #, fuzzy
1394
- msgid "Enable responsive support for this advert."
1395
- msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
1396
 
1397
- #: dashboard/publisher/adverts-edit.php:310
1398
- msgid ""
1399
- "Upload your images to the banner folder and make sure the filename is in the "
1400
- "following format; \"imagename.full.ext\"."
1401
  msgstr ""
1402
 
1403
- #: dashboard/publisher/adverts-edit.php:312
1404
- #: dashboard/publisher/adverts-report.php:64
1405
- #: dashboard/publisher/groups-report.php:65
1406
- msgid "Note:"
1407
- msgstr "Σημείωση:"
1408
 
1409
- #: dashboard/publisher/adverts-edit.php:312
1410
  msgid ""
1411
- "This feature will not be developed any further. Consider switching to the "
1412
- "Mobile feature in AdRotate Pro as seen above!"
1413
  msgstr ""
1414
 
1415
- #: dashboard/publisher/adverts-edit.php:316
1416
- #: dashboard/publisher/groups-edit.php:194
1417
  msgid "Sortorder"
1418
  msgstr ""
1419
 
1420
- #: dashboard/publisher/adverts-edit.php:318
1421
- #: dashboard/publisher/groups-edit.php:196
1422
  msgid "For administrative purposes set a sortorder."
1423
  msgstr "Για διοικητικούς σκοπούς ορίστε μια σειρά ταξινόμησης."
1424
 
1425
- #: dashboard/publisher/adverts-edit.php:318
1426
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1427
  msgstr ""
1428
  "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
1429
  "διαφήμισης."
1430
 
1431
- #: dashboard/publisher/adverts-edit.php:323
1432
  msgid ""
1433
  "With AdRotate Pro you can easily select which devices the advert should show "
1434
  "on!"
1435
  msgstr ""
1436
 
1437
- #: dashboard/publisher/adverts-edit.php:325
1438
  msgid "Geo Targeting in AdRotate Pro"
1439
  msgstr ""
1440
 
1441
- #: dashboard/publisher/adverts-edit.php:326
1442
  msgid ""
1443
  "Assign the advert to a group and enable that group to use Geo Targeting."
1444
  msgstr ""
1445
 
1446
- #: dashboard/publisher/adverts-edit.php:330
1447
  msgid "Cities/States"
1448
  msgstr ""
1449
 
1450
- #: dashboard/publisher/adverts-edit.php:333
1451
  msgid ""
1452
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1453
  "states ISO codes are supported)"
1454
  msgstr ""
1455
 
1456
- #: dashboard/publisher/adverts-edit.php:333
1457
  msgid ""
1458
  "AdRotate does not check the validity of names so make sure you spell them "
1459
  "correctly!"
1460
  msgstr ""
1461
 
1462
- #: dashboard/publisher/adverts-edit.php:337
1463
  msgid "Countries"
1464
  msgstr ""
1465
 
1466
- #: dashboard/publisher/adverts-edit.php:362
1467
  #, fuzzy
1468
  msgid "Select the countries you want the adverts to show in."
1469
  msgstr ""
1470
  "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
1471
  "εμφανίζονται"
1472
 
1473
- #: dashboard/publisher/adverts-edit.php:362
1474
  msgid "Cities take priority and will be filtered first."
1475
  msgstr ""
1476
 
1477
- #: dashboard/publisher/adverts-edit.php:367
1478
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1479
  msgstr ""
1480
 
1481
- #: dashboard/publisher/adverts-edit.php:391
1482
  msgid "Select Groups"
1483
  msgstr "Επιλέξτε Ομάδες"
1484
 
1485
- #: dashboard/publisher/adverts-edit.php:396
1486
  msgid "ID - Name"
1487
  msgstr "ID - Όνομα"
1488
 
1489
- #: dashboard/publisher/adverts-edit.php:406
1490
  #: dashboard/publisher/groups-main.php:60
1491
- #: dashboard/settings/geotargeting.php:36
1492
  msgid "Default"
1493
  msgstr "Προεπιλογή"
1494
 
1495
- #: dashboard/publisher/adverts-edit.php:407
1496
  #: dashboard/publisher/groups-main.php:61
1497
  msgid "Dynamic"
1498
  msgstr "Δυναμική"
1499
 
1500
- #: dashboard/publisher/adverts-edit.php:407
1501
  #: dashboard/publisher/groups-main.php:61
1502
  #, fuzzy
1503
  msgid "second rotation"
1504
  msgstr "Γεωγραφική Τοποθεσία"
1505
 
1506
- #: dashboard/publisher/adverts-edit.php:408
1507
  #: dashboard/publisher/groups-main.php:62
1508
  msgid "Block"
1509
  msgstr "Απαγόρευση"
1510
 
1511
- #: dashboard/publisher/adverts-edit.php:408
1512
  #: dashboard/publisher/groups-main.php:62
1513
  #, fuzzy
1514
  msgid "grid"
@@ -1516,18 +1506,18 @@ msgstr ""
1516
  "Κάντε ένα πλέγμα για τις διαφημίσεις σας. Συμπλήρωση 3 και 2 κάνει ένα "
1517
  "πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
1518
 
1519
- #: dashboard/publisher/adverts-edit.php:409
1520
- #: dashboard/publisher/groups-edit.php:202
1521
  #: dashboard/publisher/groups-main.php:63
1522
  msgid "Post Injection"
1523
  msgstr "Εμβολιασμός Δημοσίευσης"
1524
 
1525
- #: dashboard/publisher/adverts-edit.php:410
1526
  msgid "Geolocation"
1527
  msgstr "Γεωγραφική τοποθεσία"
1528
 
1529
- #: dashboard/publisher/adverts-edit.php:416
1530
- #: dashboard/publisher/groups-edit.php:61
1531
  #: dashboard/publisher/groups-main.php:70
1532
  msgid "Mode"
1533
  msgstr "Λειτουργία"
@@ -1567,7 +1557,7 @@ msgid "For 7 days"
1567
  msgstr "Για 7 ημέρες"
1568
 
1569
  #: dashboard/publisher/adverts-error.php:71
1570
- #: dashboard/publisher/groups-edit.php:386
1571
  msgid "Configuration errors."
1572
  msgstr "Σφάλματα Διαμόρφωσης."
1573
 
@@ -1580,11 +1570,6 @@ msgstr ""
1580
  msgid "Export to XML"
1581
  msgstr "Επιλογές εξαγωγής"
1582
 
1583
- #: dashboard/publisher/adverts-main.php:42
1584
- #: dashboard/publisher/groups-edit.php:336
1585
- msgid "Weight"
1586
- msgstr "Βαρύτητα"
1587
-
1588
  #: dashboard/publisher/adverts-main.php:45
1589
  #: dashboard/publisher/adverts-main.php:47
1590
  #: dashboard/publisher/groups-main.php:37
@@ -1622,6 +1607,13 @@ msgstr "Clicks σήμερα"
1622
  msgid "Monthly overview of clicks and impressions"
1623
  msgstr "Μηνιαία επισκόπηση των κλικ και των εμφανίσεων"
1624
 
 
 
 
 
 
 
 
1625
  #: dashboard/publisher/adverts-report.php:64
1626
  #: dashboard/publisher/groups-report.php:65
1627
  msgid ""
@@ -1639,20 +1631,20 @@ msgstr "Νέα Ομάδα"
1639
  msgid "Edit Group"
1640
  msgstr "Επεξεργασία Ομάδας"
1641
 
1642
- #: dashboard/publisher/groups-edit.php:64
1643
  msgid "Default - Show one ad at a time"
1644
  msgstr "Προεπιλογή - Εμφάνισε μία διαφήμιση την φορά"
1645
 
1646
- #: dashboard/publisher/groups-edit.php:65
1647
  msgid "Dynamic Mode - Show a different ad every few seconds"
1648
  msgstr ""
1649
  "Δυναμική Λειτουργία - Εμφάνισε διαφορετική διαφήμιση κάθε λίγα δευτερόλεπτα"
1650
 
1651
- #: dashboard/publisher/groups-edit.php:66
1652
  msgid "Block Mode - Show a block of adverts"
1653
  msgstr ""
1654
 
1655
- #: dashboard/publisher/groups-edit.php:70
1656
  #, fuzzy
1657
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1658
  msgstr ""
@@ -1660,310 +1652,310 @@ msgstr ""
1660
  "showoff\" να φορτωθούν. Μπορείτε να τα ενεργοποιήσετε στις Ρυθμίσεις "
1661
  "AdRotate."
1662
 
1663
- #: dashboard/publisher/groups-edit.php:77
1664
- #: dashboard/publisher/groups-edit.php:104
1665
  msgid "Dynamic and Block Mode"
1666
  msgstr "Δυναμική και Πεδίου Λειτουργία"
1667
 
1668
- #: dashboard/publisher/groups-edit.php:78
1669
  msgid "Only required if your group is in Dynamic or Block mode."
1670
  msgstr "Απαιτείται μόνο εάν η ομάδα σας είναι σε Δυναμική ή λειτουργία Πεδίου."
1671
 
1672
- #: dashboard/publisher/groups-edit.php:82
1673
  msgid "Block size"
1674
  msgstr ""
1675
 
1676
- #: dashboard/publisher/groups-edit.php:88
1677
  msgid "rows"
1678
  msgstr "γραμμές"
1679
 
1680
- #: dashboard/publisher/groups-edit.php:92
1681
  msgid "columns"
1682
  msgstr "στήλες"
1683
 
1684
- #: dashboard/publisher/groups-edit.php:95
1685
  msgid "Block Mode"
1686
  msgstr "Λειτουργία Πεδίου"
1687
 
1688
- #: dashboard/publisher/groups-edit.php:95
1689
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1690
  msgstr ""
1691
 
1692
- #: dashboard/publisher/groups-edit.php:99
1693
  msgid "Advert size"
1694
  msgstr ""
1695
 
1696
- #: dashboard/publisher/groups-edit.php:101
1697
  msgid "pixel(s) wide"
1698
  msgstr "πλάτος εικονοστοιχείου (ων) "
1699
 
1700
- #: dashboard/publisher/groups-edit.php:101
1701
  msgid "pixel(s) high."
1702
  msgstr "ύψος εικονοστοιχείου(ων)."
1703
 
1704
- #: dashboard/publisher/groups-edit.php:104
1705
  msgid ""
1706
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1707
  "recommended). Default: 125/125."
1708
  msgstr ""
1709
 
1710
- #: dashboard/publisher/groups-edit.php:108
1711
  msgid "Automated refresh"
1712
  msgstr "Αυτόματη ανανέωση"
1713
 
1714
- #: dashboard/publisher/groups-edit.php:127
1715
  msgid "seconds."
1716
  msgstr "δευτερόλεπτα."
1717
 
1718
- #: dashboard/publisher/groups-edit.php:130
1719
  msgid "Dynamic Mode"
1720
  msgstr "Δυναμική Λειτουργία"
1721
 
1722
- #: dashboard/publisher/groups-edit.php:130
1723
  msgid ""
1724
  "Load a new advert in this interval without reloading the page. Default: 6."
1725
  msgstr ""
1726
  "Τοποθετήστε μια νέα διαφήμιση σε αυτό το διάστημα, χωρίς επαναφόρτωση της "
1727
  "σελίδας. Προεπιλογή: 6."
1728
 
1729
- #: dashboard/publisher/groups-edit.php:141
1730
- #: dashboard/publisher/groups-edit.php:288
1731
  msgid ""
1732
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1733
  "Adverts\" and enter ID"
1734
  msgstr ""
1735
 
1736
- #: dashboard/publisher/groups-edit.php:153
1737
- #: dashboard/publisher/groups-edit.php:300
1738
- #: dashboard/publisher/groups-edit.php:392
1739
  #, fuzzy
1740
  msgid "Save Group"
1741
  msgstr "Αποθήκευση"
1742
 
1743
- #: dashboard/publisher/groups-edit.php:161
1744
  msgid "Advert Margin"
1745
  msgstr "Περιθώριο διαφήμισης"
1746
 
1747
- #: dashboard/publisher/groups-edit.php:163
1748
  msgid "pixel(s)"
1749
  msgstr "εικονοστοιχείο(α)"
1750
 
1751
- #: dashboard/publisher/groups-edit.php:166
1752
  #, fuzzy
1753
  msgid "A transparent area outside the advert in pixels. Default: 0."
1754
  msgstr ""
1755
  "Ένα διαφαωές περίγραμμα έξω από την διαφήμιση σε pixels. Προεπιλογή: 1."
1756
 
1757
- #: dashboard/publisher/groups-edit.php:166
1758
  #, fuzzy
1759
  msgid "Set to 0 to disable."
1760
  msgstr ""
1761
  "Προεπιλογή: 10. Βάλτε το στο 0 για να απενεργοποιήσετε τον χρονομετρητή."
1762
 
1763
- #: dashboard/publisher/groups-edit.php:166
1764
  msgid "Margins are automatically disabled for blocks where required."
1765
  msgstr ""
1766
 
1767
- #: dashboard/publisher/groups-edit.php:170
1768
  #, fuzzy
1769
  msgid "Align the group"
1770
  msgstr "Διαφημίσεις στην ομάδα"
1771
 
1772
- #: dashboard/publisher/groups-edit.php:173
1773
  #, fuzzy
1774
  msgid "None (Default)"
1775
  msgstr "Προεπιλογή"
1776
 
1777
- #: dashboard/publisher/groups-edit.php:174
1778
  msgid "Left"
1779
  msgstr ""
1780
 
1781
- #: dashboard/publisher/groups-edit.php:175
1782
  #, fuzzy
1783
  msgid "Right"
1784
  msgstr "Βαρύτητα"
1785
 
1786
- #: dashboard/publisher/groups-edit.php:176
1787
  msgid "Center"
1788
  msgstr ""
1789
 
1790
- #: dashboard/publisher/groups-edit.php:180
1791
  msgid ""
1792
  "Align the group in your post or page. Using 'center' may affect your margin "
1793
  "setting. Not every theme supports this feature."
1794
  msgstr ""
1795
 
1796
- #: dashboard/publisher/groups-edit.php:184
1797
- #: dashboard/settings/advertisers.php:28
1798
  msgid "Geo Targeting"
1799
  msgstr "Γεωγραφική Στόχευση"
1800
 
1801
- #: dashboard/publisher/groups-edit.php:185
1802
  msgid "Enable Geo Targeting for this group."
1803
  msgstr ""
1804
 
1805
- #: dashboard/publisher/groups-edit.php:186
1806
  msgid "Do not forget to tell the adverts for which areas they should show."
1807
  msgstr ""
1808
  "Μην ξεχάσετε να πείτε στις διαφημίσεις σε ποιους τομείς θα πρέπει να "
1809
  "φαίνονται."
1810
 
1811
- #: dashboard/publisher/groups-edit.php:189
1812
  msgid "Mobile support"
1813
  msgstr ""
1814
 
1815
- #: dashboard/publisher/groups-edit.php:190
1816
  msgid "Enable mobile support for this group."
1817
  msgstr ""
1818
 
1819
- #: dashboard/publisher/groups-edit.php:191
1820
  msgid "Do not forget to put at least one mobile advert in this group."
1821
  msgstr ""
1822
 
1823
- #: dashboard/publisher/groups-edit.php:196
1824
  msgid "Leave empty or 0 to skip this. Will default to group id."
1825
  msgstr ""
1826
  "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
1827
  "ομάδας."
1828
 
1829
- #: dashboard/publisher/groups-edit.php:200
1830
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1831
  msgstr ""
1832
 
1833
- #: dashboard/publisher/groups-edit.php:205
1834
  msgid "In categories?"
1835
  msgstr ""
1836
 
1837
- #: dashboard/publisher/groups-edit.php:209
1838
- #: dashboard/publisher/groups-edit.php:247
1839
- #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1840
  #, fuzzy
1841
  msgid "Disabled"
1842
  msgstr "Απενεργοποιημένες διαφημίσεις"
1843
 
1844
- #: dashboard/publisher/groups-edit.php:210
1845
- #: dashboard/publisher/groups-edit.php:248
1846
  #, fuzzy
1847
  msgid "Before content"
1848
  msgstr "Πριν από το περιεχόμενο των δημοσιεύσεων"
1849
 
1850
- #: dashboard/publisher/groups-edit.php:211
1851
- #: dashboard/publisher/groups-edit.php:249
1852
  #, fuzzy
1853
  msgid "After content"
1854
  msgstr "Πριν και μετά το περιεχόμενο"
1855
 
1856
- #: dashboard/publisher/groups-edit.php:212
1857
- #: dashboard/publisher/groups-edit.php:250
1858
  #, fuzzy
1859
  msgid "Before and after content"
1860
  msgstr "Πριν και μετά το περιεχόμενο"
1861
 
1862
- #: dashboard/publisher/groups-edit.php:213
1863
- #: dashboard/publisher/groups-edit.php:251
1864
  msgid "Inside the content..."
1865
  msgstr ""
1866
 
1867
- #: dashboard/publisher/groups-edit.php:219
1868
- #: dashboard/publisher/groups-edit.php:257
1869
  msgid "after the middle paragraph"
1870
  msgstr ""
1871
 
1872
- #: dashboard/publisher/groups-edit.php:220
1873
- #: dashboard/publisher/groups-edit.php:258
1874
  msgid "after the 1st paragraph"
1875
  msgstr ""
1876
 
1877
- #: dashboard/publisher/groups-edit.php:221
1878
- #: dashboard/publisher/groups-edit.php:259
1879
  msgid "after the 2nd paragraph"
1880
  msgstr ""
1881
 
1882
- #: dashboard/publisher/groups-edit.php:222
1883
- #: dashboard/publisher/groups-edit.php:260
1884
  msgid "after the 3rd paragraph"
1885
  msgstr ""
1886
 
1887
- #: dashboard/publisher/groups-edit.php:223
1888
- #: dashboard/publisher/groups-edit.php:261
1889
  msgid "after the 4th paragraph"
1890
  msgstr ""
1891
 
1892
- #: dashboard/publisher/groups-edit.php:224
1893
- #: dashboard/publisher/groups-edit.php:262
1894
  msgid "after the 5th paragraph"
1895
  msgstr ""
1896
 
1897
- #: dashboard/publisher/groups-edit.php:225
1898
- #: dashboard/publisher/groups-edit.php:263
1899
  msgid "after the 6th paragraph"
1900
  msgstr ""
1901
 
1902
- #: dashboard/publisher/groups-edit.php:226
1903
- #: dashboard/publisher/groups-edit.php:264
1904
  msgid "after the 7th paragraph"
1905
  msgstr ""
1906
 
1907
- #: dashboard/publisher/groups-edit.php:227
1908
- #: dashboard/publisher/groups-edit.php:265
1909
  msgid "after the 8th paragraph"
1910
  msgstr ""
1911
 
1912
- #: dashboard/publisher/groups-edit.php:233
1913
  msgid "Which categories?"
1914
  msgstr "Ποιες κατηγορίες;"
1915
 
1916
- #: dashboard/publisher/groups-edit.php:238
1917
  msgid "Click the categories posts you want the adverts to show in."
1918
  msgstr ""
1919
  "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
1920
  "εμφανίζονται"
1921
 
1922
- #: dashboard/publisher/groups-edit.php:243
1923
  msgid "In pages?"
1924
  msgstr ""
1925
 
1926
- #: dashboard/publisher/groups-edit.php:271
1927
  msgid "Which pages?"
1928
  msgstr "Ποιες σελίδες;"
1929
 
1930
- #: dashboard/publisher/groups-edit.php:276
1931
  msgid "Click the pages you want the adverts to show in."
1932
  msgstr "Κάντε κλικ στις σελίδες που θέλετε οι διαφημίσεις να εμφανίζονται"
1933
 
1934
- #: dashboard/publisher/groups-edit.php:304
1935
  msgid "Wrapper code"
1936
  msgstr "Κώδικας περιτύλιγμα"
1937
 
1938
- #: dashboard/publisher/groups-edit.php:305
1939
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1940
  msgstr ""
1941
 
1942
- #: dashboard/publisher/groups-edit.php:309
1943
  msgid "Before advert"
1944
  msgstr ""
1945
 
1946
- #: dashboard/publisher/groups-edit.php:313
1947
  msgid "Options:"
1948
  msgstr "Επιλογές:"
1949
 
1950
- #: dashboard/publisher/groups-edit.php:317
1951
  msgid "After advert"
1952
  msgstr ""
1953
 
1954
- #: dashboard/publisher/groups-edit.php:326
1955
  msgid "Select adverts"
1956
  msgstr ""
1957
 
1958
- #: dashboard/publisher/groups-edit.php:331
1959
  msgid "Choose adverts"
1960
  msgstr ""
1961
 
1962
- #: dashboard/publisher/groups-edit.php:337
1963
  msgid "Visible until"
1964
  msgstr "Ορατό μέχρι"
1965
 
1966
- #: dashboard/publisher/groups-edit.php:379
1967
  msgid "No adverts created!"
1968
  msgstr ""
1969
 
@@ -1983,8 +1975,8 @@ msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
1983
  msgid "This action can not be undone!"
1984
  msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί!"
1985
 
1986
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
1987
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
1988
  msgid "OK to continue, CANCEL to stop."
1989
  msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
1990
 
@@ -1996,163 +1988,178 @@ msgstr "Δεν έχουν δημιουργηθεί ομάδες!"
1996
  msgid "Statistics for group"
1997
  msgstr "Στατιστικά για την ομάδα"
1998
 
1999
- #: dashboard/settings/advertisers.php:12
2000
  msgid "Advertisers - Available in AdRotate Pro"
2001
  msgstr ""
2002
 
2003
- #: dashboard/settings/advertisers.php:13
2004
  msgid "Enable advertisers so they can review and manage their own ads."
2005
  msgstr ""
2006
 
2007
- #: dashboard/settings/advertisers.php:16
2008
  msgid "Enable Advertisers"
2009
  msgstr "Ενεργοποίηση Διαφημιζόμενων"
2010
 
2011
- #: dashboard/settings/advertisers.php:18
2012
  msgid "Allow adverts to be coupled to users (Advertisers)."
2013
  msgstr "Επιτρέψτε σε διαφημίσεις να συνδυαστούν με χρήστες (Διαφημιζόμενους)."
2014
 
2015
- #: dashboard/settings/advertisers.php:22
2016
  msgid "Edit/update adverts"
2017
  msgstr "Επεξεργασία/ανανέωση διαφημίσεων"
2018
 
2019
- #: dashboard/settings/advertisers.php:24
2020
  msgid "Allow advertisers to add new or edit their adverts."
2021
  msgstr ""
2022
  "Επιτρέψτε σε διαφημιζόμενους να προσθέσουν ή να επεξεργαστούν διαφημίσεις."
2023
 
2024
- #: dashboard/settings/advertisers.php:30
 
 
 
 
 
 
 
 
2025
  msgid ""
2026
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2027
  "be enabled, too."
2028
  msgstr ""
2029
 
2030
- #: dashboard/settings/advertisers.php:34
2031
  msgid "Advertiser role"
2032
  msgstr "Ρόλος Διαφημιζόμενου"
2033
 
2034
- #: dashboard/settings/advertisers.php:36
2035
  msgid "Create a seperate user role for your advertisers."
2036
  msgstr ""
2037
 
2038
- #: dashboard/settings/advertisers.php:37
2039
  msgid ""
2040
  "Don't forget to give these users access to their advertiser dashboard via "
2041
  "the Roles tab."
2042
  msgstr ""
2043
 
2044
- #: dashboard/settings/general.php:12
 
 
 
 
 
 
 
2045
  msgid "General Settings"
2046
  msgstr ""
2047
 
2048
- #: dashboard/settings/general.php:13
2049
  msgid "General settings for AdRotate."
2050
  msgstr ""
2051
 
2052
- #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2053
  msgid "Some options are only available in AdRotate Pro!"
2054
  msgstr ""
2055
 
2056
- #: dashboard/settings/general.php:16
2057
  msgid "Shortcode in widgets"
2058
  msgstr ""
2059
 
2060
- #: dashboard/settings/general.php:17
2061
  msgid ""
2062
  "Enable this option to if your theme does not support shortcodes in the "
2063
  "WordPress text widget."
2064
  msgstr ""
2065
 
2066
- #: dashboard/settings/general.php:20
2067
  msgid "Disable live preview"
2068
  msgstr ""
2069
 
2070
- #: dashboard/settings/general.php:21
2071
  msgid ""
2072
  "Enable this option if you have faulty adverts that overflow their designated "
2073
  "area while creating/editing adverts."
2074
  msgstr ""
2075
 
2076
- #: dashboard/settings/general.php:24
2077
  msgid "Disable dynamic mode"
2078
  msgstr ""
2079
 
2080
- #: dashboard/settings/general.php:25
2081
  msgid ""
2082
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2083
  "you notice skipping or jumpy content."
2084
  msgstr ""
2085
 
2086
- #: dashboard/settings/general.php:28
2087
  #, fuzzy
2088
  msgid "Load jQuery"
2089
  msgstr "Να περιληφθεί η jQuery"
2090
 
2091
- #: dashboard/settings/general.php:29
2092
  msgid ""
2093
  "Enable this option if your theme does not load jQuery. jQuery is required "
2094
  "for dynamic groups, statistics and some other features."
2095
  msgstr ""
2096
 
2097
- #: dashboard/settings/general.php:32
2098
  msgid "Load scripts in footer?"
2099
  msgstr ""
2100
 
2101
- #: dashboard/settings/general.php:33
2102
  msgid ""
2103
  "Enable this option if you want to load all AdRotate Javascripts in the "
2104
  "footer of your site."
2105
  msgstr ""
2106
 
2107
- #: dashboard/settings/general.php:36
2108
  msgid "Adblock disguise"
2109
  msgstr ""
2110
 
2111
- #: dashboard/settings/general.php:38
2112
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2113
  msgstr ""
2114
 
2115
- #: dashboard/settings/general.php:39
2116
  msgid ""
2117
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2118
  msgstr ""
2119
 
2120
- #: dashboard/settings/general.php:39
2121
  msgid ""
2122
  "To also apply this feature to widgets, use a text widget with a shortcode "
2123
  "instead of the AdRotate widget."
2124
  msgstr ""
2125
 
2126
- #: dashboard/settings/general.php:39
2127
  msgid ""
2128
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2129
  "feature will have little effect!"
2130
  msgstr ""
2131
 
2132
- #: dashboard/settings/general.php:44
2133
  msgid "Banner Folder"
2134
  msgstr "Φάκελος Διαφημιστικών Πλαισίων (Μπάνερ)"
2135
 
2136
- #: dashboard/settings/general.php:45
2137
  #, fuzzy
2138
  msgid "Set a location where your banner images will be stored."
2139
  msgstr ""
2140
  "Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
2141
  "(Προεπιλογή: /wp-content/banners/)."
2142
 
2143
- #: dashboard/settings/general.php:48
2144
  #, fuzzy
2145
  msgid "Location"
2146
  msgstr "Γεωγραφική Τοποθεσία"
2147
 
2148
- #: dashboard/settings/general.php:50
2149
  #, fuzzy
2150
  msgid "(Default: wp-content/banners/)."
2151
  msgstr ""
2152
  "Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
2153
  "(Προεπιλογή: /wp-content/banners/)."
2154
 
2155
- #: dashboard/settings/general.php:51
2156
  msgid ""
2157
  "To try and trick ad blockers you could set the folder to something crazy "
2158
  "like:"
@@ -2160,7 +2167,7 @@ msgstr ""
2160
  "Για να ξεγελάσετε το μπλοκάρισμα των διαφημίσεων, ορίστε σαν όνομα φακέλου "
2161
  "κάτι περίεργο όπως:"
2162
 
2163
- #: dashboard/settings/general.php:52
2164
  msgid ""
2165
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2166
  "will show errors when the folder is missing."
@@ -2168,37 +2175,37 @@ msgstr ""
2168
  "Αυτός ο φάκελος δεν θα δημιουργηθεί αυτόματα αν δεν υπάρχει. Το AdRotate θα "
2169
  "εμφανίσει λάθη όταν λείπει ο φάκελος."
2170
 
2171
- #: dashboard/settings/general.php:57
2172
  #, fuzzy
2173
  msgid "Bot filter"
2174
  msgstr "Φίλτρο προγράμματος περιήγησης"
2175
 
2176
- #: dashboard/settings/general.php:58
2177
  msgid "The bot filter is used for the AdRotate stats tracker."
2178
  msgstr ""
2179
 
2180
- #: dashboard/settings/general.php:61
2181
  msgid "User-Agent Filter"
2182
  msgstr "Φίλτρο προγράμματος περιήγησης"
2183
 
2184
- #: dashboard/settings/general.php:64
2185
  msgid ""
2186
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2187
  msgstr ""
2188
 
2189
- #: dashboard/settings/general.php:65
2190
  msgid ""
2191
  "Keep in mind that this might give false positives. The word 'fire' also "
2192
  "matches 'firefox', but not vice-versa. So be careful!"
2193
  msgstr ""
2194
 
2195
- #: dashboard/settings/general.php:66
2196
  msgid ""
2197
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2198
  "characters are stripped out."
2199
  msgstr ""
2200
 
2201
- #: dashboard/settings/general.php:67
2202
  msgid ""
2203
  "Additionally to the list specified here, empty User-Agents are blocked as "
2204
  "well."
@@ -2206,86 +2213,118 @@ msgstr ""
2206
  "Επιπλέον του καταλόγου που παρατίθεται εδώ, ανώνυμα λογισμικά περιήγησης "
2207
  "απορίπτονται επίσης."
2208
 
2209
- #: dashboard/settings/general.php:67
2210
  msgid "Learn more about"
2211
  msgstr "Μάθετε περισσότερα σχετικά"
2212
 
2213
- #: dashboard/settings/general.php:67
2214
  msgid "user-agents"
2215
  msgstr "πρόγραμμα περιήγησης"
2216
 
2217
- #: dashboard/settings/geotargeting.php:12
2218
  msgid "Geo Targeting - Available in AdRotate Pro"
2219
  msgstr ""
2220
 
2221
- #: dashboard/settings/geotargeting.php:13
2222
  msgid "Target certain areas in the world for better advertising oppurtunities."
2223
  msgstr ""
2224
 
2225
- #: dashboard/settings/geotargeting.php:16
2226
  msgid "Which Geo Service"
2227
  msgstr ""
2228
 
2229
- #: dashboard/settings/geotargeting.php:25
2230
- msgid ""
2231
- "The most complete and accurate geo targeting you can get for only $20 USD "
2232
- "per 50000 lookups."
2233
  msgstr ""
2234
 
2235
- #: dashboard/settings/geotargeting.php:27
2236
- msgid "Free lookups every day, uses GeoLite2 databases from MaxMind!"
 
 
 
 
 
 
2237
  msgstr ""
2238
 
2239
  #: dashboard/settings/geotargeting.php:33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2240
  msgid "Geo Cookie Lifespan"
2241
  msgstr ""
2242
 
2243
- #: dashboard/settings/geotargeting.php:42
2244
  msgid "Hours."
2245
  msgstr ""
2246
 
2247
- #: dashboard/settings/geotargeting.php:43
2248
  msgid ""
2249
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2250
  "cookie last? A longer period is less accurate for mobile users but may "
2251
  "reduce the usage of your lookups drastically."
2252
  msgstr ""
2253
 
2254
- #: dashboard/settings/geotargeting.php:49
2255
  msgid "MaxMind City/Country"
2256
  msgstr ""
2257
 
2258
- #: dashboard/settings/geotargeting.php:52
2259
  msgid "Username/Email"
2260
  msgstr ""
2261
 
2262
- #: dashboard/settings/geotargeting.php:56
2263
  msgid "Password/License Key"
2264
  msgstr ""
2265
 
2266
- #: dashboard/settings/maintenance.php:12
2267
  msgid "Maintenance"
2268
  msgstr "Συντήρηση"
2269
 
2270
- #: dashboard/settings/maintenance.php:13
2271
  msgid ""
2272
  "Use these functions when you notice your database is slow, unresponsive and "
2273
  "sluggish."
2274
  msgstr ""
2275
 
2276
- #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2277
  msgid "Optimize Database"
2278
  msgstr "Βελτιστοποίηση Βάσης Δεδομένων"
2279
 
2280
- #: dashboard/settings/maintenance.php:18
2281
  msgid "You are about to optimize the AdRotate database."
2282
  msgstr "Πρόκειται να βελτιστοποιήσετε τη βάση δεδομένων του AdRotate."
2283
 
2284
- #: dashboard/settings/maintenance.php:18
2285
  msgid "Did you make a backup of your database?"
2286
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
2287
 
2288
- #: dashboard/settings/maintenance.php:18
2289
  msgid ""
2290
  "This may take a moment and may cause your website to respond slow "
2291
  "temporarily!"
@@ -2293,11 +2332,11 @@ msgstr ""
2293
  "Αυτή η ενέργεια μπορεί να διαρκέσει λίγα λεπτά και να κάνει την ιστοσελίδα "
2294
  "σας να είναι προσωρινά αργή!"
2295
 
2296
- #: dashboard/settings/maintenance.php:19
2297
  msgid "Cleans up overhead data in the AdRotate tables."
2298
  msgstr "Καθαρίζει άχρηστα δεδομένα στους πίνακες του AdRotate."
2299
 
2300
- #: dashboard/settings/maintenance.php:20
2301
  msgid ""
2302
  "Overhead data is accumulated garbage resulting from many changes you've "
2303
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2306,11 +2345,11 @@ msgstr ""
2306
  "τις πολλές αλλαγές που έχετε κάνει στη βάση. Μπορεί να είναι από τίποτε "
2307
  "μέχρι εκατοντάδες kilobytes δεδομένων."
2308
 
2309
- #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2310
  msgid "Clean-up Database"
2311
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
2312
 
2313
- #: dashboard/settings/maintenance.php:26
2314
  msgid ""
2315
  "You are about to clean up your database. This may delete expired schedules "
2316
  "and older statistics."
@@ -2318,57 +2357,57 @@ msgstr ""
2318
  "Πρόκειται να καθαρίσετε τη βάση δεδομένων. Αυτή η ενέργεια θα διαγράψει "
2319
  "ληγμένα προγράμαμτα και παλαιότερες στατιστικές."
2320
 
2321
- #: dashboard/settings/maintenance.php:26
2322
  msgid "Are you sure you want to continue?"
2323
  msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
2324
 
2325
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2326
  msgid "This might take a while and may slow down your site during this action!"
2327
  msgstr ""
2328
 
2329
- #: dashboard/settings/maintenance.php:27
2330
  msgid "Delete stats older than 356 days (Optional)."
2331
  msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
2332
 
2333
- #: dashboard/settings/maintenance.php:28
2334
  msgid ""
2335
  "AdRotate creates empty records when you start making ads, groups or "
2336
  "schedules. In rare occasions these records are faulty."
2337
  msgstr ""
2338
 
2339
- #: dashboard/settings/maintenance.php:28
2340
  msgid ""
2341
  "If you made an ad, group or schedule that does not save when you make it use "
2342
  "this button to delete those empty records."
2343
  msgstr ""
2344
 
2345
- #: dashboard/settings/maintenance.php:28
2346
  msgid ""
2347
  "Additionally you can clean up old schedules and/or statistics. This will "
2348
  "improve the speed of your site."
2349
  msgstr ""
2350
 
2351
- #: dashboard/settings/maintenance.php:32
2352
  #, fuzzy
2353
  msgid "Re-evaluate Ads"
2354
  msgstr "Διαφημίσεις"
2355
 
2356
- #: dashboard/settings/maintenance.php:34
2357
  msgid "Re-evaluate all ads"
2358
  msgstr ""
2359
 
2360
- #: dashboard/settings/maintenance.php:34
2361
  #, fuzzy
2362
  msgid "You are about to check all ads for errors."
2363
  msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
2364
 
2365
- #: dashboard/settings/maintenance.php:35
2366
  msgid ""
2367
  "This will apply all evaluation rules to all ads to see if any error slipped "
2368
  "in. Normally you should not need this feature."
2369
  msgstr ""
2370
 
2371
- #: dashboard/settings/maintenance.php:39
2372
  msgid ""
2373
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2374
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2381,11 +2420,11 @@ msgid ""
2381
  "is not a valid point in any case."
2382
  msgstr ""
2383
 
2384
- #: dashboard/settings/maintenance.php:41
2385
  msgid "Troubleshooting"
2386
  msgstr "Αντιμετώπιση προβλημάτων"
2387
 
2388
- #: dashboard/settings/maintenance.php:42
2389
  msgid ""
2390
  "The below options are not meant for normal use and are only there for "
2391
  "developers to review saved settings or how ads are selected. These can be "
@@ -2393,108 +2432,126 @@ msgid ""
2393
  "SHOULD BE LEFT UNCHECKED!!"
2394
  msgstr ""
2395
 
2396
- #: dashboard/settings/maintenance.php:45
2397
  msgid "Developer Debug"
2398
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
2399
 
2400
- #: dashboard/settings/maintenance.php:47
2401
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2402
  msgstr ""
2403
 
2404
- #: dashboard/settings/maintenance.php:48
2405
  msgid "View advert specs and (some) stats in the dashboard."
2406
  msgstr ""
2407
 
2408
- #: dashboard/settings/maintenance.php:49
2409
  #, fuzzy
2410
  msgid ""
2411
  "Disable timers for clicks and impressions and enable a alert window for "
2412
  "clicktracking."
2413
  msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
2414
 
2415
- #: dashboard/settings/maintenance.php:50
2416
  msgid "Temporarily disable encryption on the redirect url."
2417
  msgstr ""
2418
  "Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
2419
 
2420
- #: dashboard/settings/maintenance.php:55
2421
  msgid "Status and Versions"
2422
  msgstr ""
2423
 
2424
- #: dashboard/settings/maintenance.php:58
2425
- msgid "Current version:"
2426
- msgstr "Τρέχουσα έκδοση:"
2427
-
2428
- #: dashboard/settings/maintenance.php:59
2429
- msgid "Previous version:"
2430
- msgstr "Προηγούμενη έκδοση:"
2431
-
2432
  #: dashboard/settings/maintenance.php:62
2433
- msgid "Current database version:"
2434
- msgstr "Τρέχουσα έκδοση βάσης:"
2435
-
2436
- #: dashboard/settings/maintenance.php:63
2437
- msgid "Previous database version:"
2438
- msgstr "Προηγούμενη έκδοση βάσης:"
2439
-
2440
- #: dashboard/settings/maintenance.php:66
2441
  msgid "Current status of adverts"
2442
  msgstr "Τρέχουσα κατάσταση διαφημίσεων"
2443
 
2444
- #: dashboard/settings/maintenance.php:67
2445
  msgid "Normal"
2446
  msgstr "Φυσιολογική"
2447
 
2448
- #: dashboard/settings/maintenance.php:67
2449
  msgid "Error"
2450
  msgstr "Σφάλμα"
2451
 
2452
- #: dashboard/settings/maintenance.php:67
2453
  msgid "Expired"
2454
  msgstr "Έληξε"
2455
 
2456
- #: dashboard/settings/maintenance.php:67
2457
  msgid "Expires Soon"
2458
  msgstr "Λήγει Σύντομα"
2459
 
2460
- #: dashboard/settings/maintenance.php:67
2461
  msgid "Unknown"
2462
  msgstr ""
2463
 
2464
- #: dashboard/settings/maintenance.php:70
2465
  msgid "Banners/assets Folder"
2466
  msgstr ""
2467
 
2468
- #: dashboard/settings/maintenance.php:72
2469
  msgid "Exists and appears writable"
2470
  msgstr ""
2471
 
2472
- #: dashboard/settings/maintenance.php:72
2473
  msgid "Not writable or does not exist"
2474
  msgstr ""
2475
 
 
 
 
 
2476
  #: dashboard/settings/maintenance.php:76
2477
- #, fuzzy
2478
- msgid "Ad evaluation next run:"
2479
- msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
 
 
 
 
 
 
 
 
 
 
 
2480
 
2481
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
2482
- msgid "Not scheduled!"
2483
- msgstr "Δεν έχει προγραμματιστεί!"
 
 
 
2484
 
2485
- #: dashboard/settings/maintenance.php:80
2486
- msgid "Clean Trackerdata next run:"
2487
- msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
2488
 
2489
- #: dashboard/settings/misc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2490
  msgid "Miscellaneous"
2491
  msgstr "Διάφορα"
2492
 
2493
- #: dashboard/settings/misc.php:15
2494
  msgid "Widget alignment"
2495
  msgstr "Ευθυγράμμιση μονάδας"
2496
 
2497
- #: dashboard/settings/misc.php:16
2498
  msgid ""
2499
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2500
  "not always help!)"
@@ -2502,11 +2559,11 @@ msgstr ""
2502
  "Επιλέξτε αυτό το κουτί αν οι μονάδες σας δεν ευθυγραμμίζονται με την "
2503
  "πλευρική μπάρα του θέματός σας. (Δεν βοηθά πάντα!)"
2504
 
2505
- #: dashboard/settings/misc.php:19
2506
  msgid "Widget padding"
2507
  msgstr "Κενά περιθώρια μονάδων"
2508
 
2509
- #: dashboard/settings/misc.php:20
2510
  msgid ""
2511
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2512
  "not always work!)"
@@ -2514,37 +2571,37 @@ msgstr ""
2514
  "Ενεργοποιήστε την επιλογή για να αφαιρέσετε τα κενά περιθώρια γύρω από "
2515
  "διαφημίσεις σε μονάδες. (Δεν δουλεύει πάντα!)"
2516
 
2517
- #: dashboard/settings/misc.php:24
2518
  msgid "NOTICE:"
2519
  msgstr ""
2520
 
2521
- #: dashboard/settings/misc.php:25
2522
  msgid ""
2523
  "You have enabled W3 Total Caching support but not defined the security hash."
2524
  msgstr ""
2525
 
2526
- #: dashboard/settings/misc.php:25
2527
  msgid ""
2528
  "AdRotate has generated the following line for you to add to your wp-config."
2529
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2530
  "add this line, check out the following guide;"
2531
  msgstr ""
2532
 
2533
- #: dashboard/settings/misc.php:25
2534
  msgid "Set up W3 Total Caching"
2535
  msgstr ""
2536
 
2537
- #: dashboard/settings/misc.php:29
2538
  msgid "W3 Total Caching"
2539
  msgstr "W3 Total Caching"
2540
 
2541
- #: dashboard/settings/misc.php:30
2542
  msgid "Check this box if you use W3 Total Caching on your site."
2543
  msgstr ""
2544
  "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το W3 Total Caching στην ιστοσελίδα "
2545
  "σας."
2546
 
2547
- #: dashboard/settings/misc.php:34
2548
  msgid ""
2549
  "It may take a while for the ad to start rotating. The caching plugin needs "
2550
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2553,7 +2610,7 @@ msgstr ""
2553
  "πρόσθετο caching πρέπει να ανανεώσει την προσωρινή μνήμη. Αυτό μπορεί να "
2554
  "πάρει μέχρι και μια εβδομάδα αν δεν γίνει χειροκίνητα."
2555
 
2556
- #: dashboard/settings/misc.php:34
2557
  msgid ""
2558
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2559
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2562,339 +2619,351 @@ msgstr ""
2562
  "μονάδες AdRotate. Αν χρησιμοποιείτε κάποιο PHP Snippet πρέπει να περιλάβετε "
2563
  "μόνοι σας τον κώδικά σας στον κώδικα εξαίρεσης. "
2564
 
2565
- #: dashboard/settings/notifications.php:12
2566
  msgid "Notifications"
2567
  msgstr "Ειδοποιήσεις"
2568
 
2569
- #: dashboard/settings/notifications.php:13
2570
  msgid "Set up who gets notifications if ads need your attention."
2571
  msgstr ""
2572
 
2573
- #: dashboard/settings/notifications.php:16
2574
  msgid "How to notify"
2575
  msgstr ""
2576
 
2577
- #: dashboard/settings/notifications.php:18
2578
  msgid "Dashboard banner."
2579
  msgstr ""
2580
 
2581
- #: dashboard/settings/notifications.php:19
2582
  #, fuzzy
2583
  msgid "Email message."
2584
  msgstr "Ειδοποιήσεις Email"
2585
 
2586
- #: dashboard/settings/notifications.php:20
2587
  msgid "Push notifications to your smartphone."
2588
  msgstr ""
2589
 
2590
- #: dashboard/settings/notifications.php:21
2591
  msgid ""
2592
  "Push notifications are delivered through Pushover, a notification service "
2593
  "for Android and iOS"
2594
  msgstr ""
2595
 
2596
- #: dashboard/settings/notifications.php:21
2597
  msgid ""
2598
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2599
  "information can be found on the pushover website;"
2600
  msgstr ""
2601
 
2602
- #: dashboard/settings/notifications.php:25
2603
  msgid "Test notification"
2604
  msgstr ""
2605
 
2606
- #: dashboard/settings/notifications.php:27
2607
  msgid "Test"
2608
  msgstr "Δοκιμή"
2609
 
2610
- #: dashboard/settings/notifications.php:27
2611
  msgid ""
2612
  "Send a test notification to enabled methods. Before you test, save the "
2613
  "options first!"
2614
  msgstr ""
2615
 
2616
- #: dashboard/settings/notifications.php:32
2617
- msgid "Dashboard"
2618
  msgstr ""
2619
 
2620
- #: dashboard/settings/notifications.php:33
2621
  msgid ""
2622
  "These go in a dashboard banner visible to all users with access to AdRotate "
2623
  "on every WordPress dashboard page."
2624
  msgstr ""
2625
 
2626
- #: dashboard/settings/notifications.php:36
2627
- #: dashboard/settings/notifications.php:68
 
2628
  msgid "What"
2629
  msgstr ""
2630
 
2631
- #: dashboard/settings/notifications.php:38
2632
  msgid "Expired adverts."
2633
  msgstr ""
2634
 
2635
- #: dashboard/settings/notifications.php:39
2636
  msgid "Almost expired adverts."
2637
  msgstr ""
2638
 
2639
- #: dashboard/settings/notifications.php:44
2640
- msgid "Email"
2641
  msgstr ""
2642
 
2643
- #: dashboard/settings/notifications.php:45
2644
- msgid "Set up who gets notification emails."
 
2645
  msgstr ""
2646
 
2647
- #: dashboard/settings/notifications.php:48
2648
- msgid "Publishers"
 
2649
  msgstr ""
2650
 
2651
- #: dashboard/settings/notifications.php:51
2652
- msgid ""
2653
- "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2654
- "list to a minimum!"
2655
  msgstr ""
2656
- "Ένας κατάλογος email διαχωρισμένων με κόματα. Μέγιστο όριο 5 διευθύνσεων. "
2657
- "Διατηρήστε τον στο ελάχιστο!"
2658
 
2659
- #: dashboard/settings/notifications.php:52
2660
- #, fuzzy
2661
- msgid ""
2662
- "Messages are sent once every 24 hours when needed. If this field is empty no "
2663
- "email notifications will be send."
2664
  msgstr ""
2665
- "Μηνύματα στέλνονται κάθε 24 ώρες όταν είναι ανάγκη. Αν αυτό το πεδίο είναι "
2666
- "κενό η λειτουργία θα απενεργοποιηθεί."
2667
-
2668
- #: dashboard/settings/notifications.php:56
2669
- msgid "Advertisers"
2670
- msgstr "Διαφημιζόμενοι"
2671
 
2672
  #: dashboard/settings/notifications.php:59
 
2673
  #, fuzzy
2674
- msgid ""
2675
- "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2676
- "This field may not be empty!"
2677
- msgstr ""
2678
- "Μέγιστο 2 διευθύνσεων. Διαχωρισμός με κόματα. Αυτό το πεδίο δεν μπορεί να "
2679
- "είναι κενό!"
2680
 
2681
- #: dashboard/settings/notifications.php:64
2682
- msgid "Push"
 
 
 
 
 
 
 
 
 
2683
  msgstr ""
2684
 
2685
- #: dashboard/settings/notifications.php:65
2686
  msgid ""
2687
- "Receive information about what is happening with your AdRotate setup on your "
2688
- "smartphone via Pushover."
 
 
 
2689
  msgstr ""
2690
 
2691
- #: dashboard/settings/notifications.php:70
2692
- msgid "When you are running out of Geo Targeting Lookups."
2693
  msgstr ""
2694
 
2695
- #: dashboard/settings/notifications.php:71
2696
- msgid "Daily digest of any advert status other than normal."
 
 
2697
  msgstr ""
2698
 
2699
  #: dashboard/settings/notifications.php:72
2700
- msgid "Any advertiser saving an advert in your moderation queue."
 
 
 
 
 
 
2701
  msgstr ""
2702
 
2703
- #: dashboard/settings/notifications.php:73
2704
  #, fuzzy
2705
- msgid "A moderator approved an advert from the moderation queue."
2706
- msgstr "Έγκριση/Απόρριψη διαφημίσεων στην ουρά Ελέγχου"
2707
 
2708
- #: dashboard/settings/notifications.php:74
2709
- #, fuzzy
2710
- msgid "A moderator rejected an advert from the moderation queue."
2711
- msgstr "Έγκριση/Απόρριψη διαφημίσεων στην ουρά Ελέγχου"
 
2712
 
2713
- #: dashboard/settings/notifications.php:74
2714
  msgid ""
2715
- "If you have a lot of activity with many advertisers adding/changing adverts "
2716
- "you may get a lot of messages!"
 
 
2717
  msgstr ""
2718
 
2719
- #: dashboard/settings/notifications.php:79
2720
  #, fuzzy
2721
  msgid "User Key"
2722
  msgstr "πρόγραμμα περιήγησης"
2723
 
2724
- #: dashboard/settings/notifications.php:81
2725
  msgid "Get your user token"
2726
  msgstr ""
2727
 
2728
- #: dashboard/settings/notifications.php:81
2729
- #: dashboard/settings/notifications.php:87
2730
  msgid "here"
2731
  msgstr ""
2732
 
2733
- #: dashboard/settings/notifications.php:85
2734
  msgid "Api Token"
2735
  msgstr ""
2736
 
2737
- #: dashboard/settings/notifications.php:87
2738
  msgid "Create your"
2739
  msgstr ""
2740
 
2741
- #: dashboard/settings/notifications.php:87
2742
  msgid "App"
2743
  msgstr ""
2744
 
2745
- #: dashboard/settings/notifications.php:87
2746
  msgid "and get your API token"
2747
  msgstr ""
2748
 
2749
- #: dashboard/settings/roles.php:12
2750
  msgid "Roles"
2751
  msgstr ""
2752
 
2753
- #: dashboard/settings/roles.php:13
2754
  msgid "Who has access to what?"
2755
  msgstr ""
2756
 
2757
- #: dashboard/settings/roles.php:16
2758
  msgid "Manage/Add/Edit adverts"
2759
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία διαφημίσεων"
2760
 
2761
- #: dashboard/settings/roles.php:20
2762
  msgid "Role to see and add/edit ads."
2763
  msgstr "Ρόλος για την προβολή και την προσθήκη/επεξεργασία διαφημίσεων."
2764
 
2765
- #: dashboard/settings/roles.php:24
2766
  msgid "Delete/Reset adverts"
2767
  msgstr "Διαγραφή/Επαναφορά διαφημίσεων"
2768
 
2769
- #: dashboard/settings/roles.php:28
2770
  msgid "Role to delete ads and reset stats."
2771
  msgstr "Ρόλος για τη διαγραφή διαφημίσεων και την επαναφορά στατιστικών."
2772
 
2773
- #: dashboard/settings/roles.php:32
2774
  msgid "Manage/Add/Edit groups"
2775
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία ομάδων"
2776
 
2777
- #: dashboard/settings/roles.php:36
2778
  msgid "Role to see and add/edit groups."
2779
  msgstr "Ρόλος για την προβολή και προσθήκη/επεξεργασία ομάδων."
2780
 
2781
- #: dashboard/settings/roles.php:40
2782
  msgid "Delete groups"
2783
  msgstr "Διαγραφή ομάδων"
2784
 
2785
- #: dashboard/settings/roles.php:44
2786
  msgid "Role to delete groups."
2787
  msgstr "Ρόλος για τη διαγραφή ομάδων."
2788
 
2789
- #: dashboard/settings/statistics.php:13
2790
  msgid "Track statistics for your adverts."
2791
  msgstr ""
2792
 
2793
- #: dashboard/settings/statistics.php:16
2794
  msgid "How to track stats"
2795
  msgstr ""
2796
 
2797
- #: dashboard/settings/statistics.php:25
2798
  msgid "Tracks impressions and clicks internally"
2799
  msgstr ""
2800
 
2801
- #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2802
- #: dashboard/settings/statistics.php:29
2803
  msgid "manual"
2804
  msgstr ""
2805
 
2806
- #: dashboard/settings/statistics.php:26
2807
  msgid ""
2808
  "Click and Impression recording, Click and impression limits, impression "
2809
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2810
  "will only track impressions."
2811
  msgstr ""
2812
 
2813
- #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2814
  msgid "In AdRotate Pro!"
2815
  msgstr ""
2816
 
2817
- #: dashboard/settings/statistics.php:27
2818
  msgid ""
2819
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2820
  "attributes"
2821
  msgstr ""
2822
 
2823
- #: dashboard/settings/statistics.php:28
2824
  msgid ""
2825
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2826
  "Contents."
2827
  msgstr ""
2828
 
2829
- #: dashboard/settings/statistics.php:29
2830
  msgid ""
2831
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2832
  "uses onClick() and onload() in adverts"
2833
  msgstr ""
2834
 
2835
- #: dashboard/settings/statistics.php:30
2836
  msgid ""
2837
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2838
  "Banner."
2839
  msgstr ""
2840
 
2841
- #: dashboard/settings/statistics.php:36
2842
  msgid "Internal Tracker"
2843
  msgstr ""
2844
 
2845
- #: dashboard/settings/statistics.php:37
2846
  msgid ""
2847
  "The settings below are for the internal tracker and have no effect when "
2848
  "using Piwik/Google Analytics."
2849
  msgstr ""
2850
 
2851
- #: dashboard/settings/statistics.php:40
2852
  #, fuzzy
2853
  msgid "Logged in impressions"
2854
  msgstr "Εμφανίσεις"
2855
 
2856
- #: dashboard/settings/statistics.php:42
2857
  msgid "Track impressions from logged in users."
2858
  msgstr ""
2859
 
2860
- #: dashboard/settings/statistics.php:46
2861
  msgid "Logged in clicks"
2862
  msgstr ""
2863
 
2864
- #: dashboard/settings/statistics.php:48
2865
  msgid "Track clicks from logged in users."
2866
  msgstr "Παρακολουθήστε κλικ από συνδεδεμένους χρήστες."
2867
 
2868
- #: dashboard/settings/statistics.php:52
2869
  msgid "Impression timer"
2870
  msgstr ""
2871
 
2872
- #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2873
  msgid "Seconds."
2874
  msgstr "Δευτερόλεπτα."
2875
 
2876
- #: dashboard/settings/statistics.php:55
2877
  #, fuzzy
2878
  msgid "Default: 60."
2879
  msgstr "Προεπιλογή"
2880
 
2881
- #: dashboard/settings/statistics.php:55
2882
  #, fuzzy
2883
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2884
  msgstr ""
2885
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
2886
  "ώρα)."
2887
 
2888
- #: dashboard/settings/statistics.php:59
2889
  msgid "Click timer"
2890
  msgstr ""
2891
 
2892
- #: dashboard/settings/statistics.php:62
2893
  #, fuzzy
2894
  msgid "Default: 86400."
2895
  msgstr "Προεπιλογή"
2896
 
2897
- #: dashboard/settings/statistics.php:62
2898
  #, fuzzy
2899
  msgid ""
2900
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
@@ -2902,6 +2971,55 @@ msgstr ""
2902
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
2903
  "ώρα)."
2904
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2905
  #, fuzzy
2906
  #~ msgid "Get more features with AdRotate Pro"
2907
  #~ msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
@@ -2925,10 +3043,6 @@ msgstr ""
2925
  #~ msgid "Email Notifications"
2926
  #~ msgstr "Ειδοποιήσεις Email"
2927
 
2928
- #, fuzzy
2929
- #~ msgid "Push Notifications"
2930
- #~ msgstr "Ειδοποιήσεις"
2931
-
2932
  #~ msgid "active ad(s) expired."
2933
  #~ msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
2934
 
@@ -3018,15 +3132,9 @@ msgstr ""
3018
  #~ msgid "Barely visible"
3019
  #~ msgstr "μόλις ορατό"
3020
 
3021
- #~ msgid "Less than average"
3022
- #~ msgstr "Λιγότερο από το μέσο όρο"
3023
-
3024
  #~ msgid "Normal coverage"
3025
  #~ msgstr "Κανονική κάλυψη"
3026
 
3027
- #~ msgid "More than average"
3028
- #~ msgstr "Περισσότερο από μέσο"
3029
-
3030
  #~ msgid "Best visibility"
3031
  #~ msgstr "Καλύτερη ορατότητα"
3032
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-17 23:25+0800\n"
6
+ "PO-Revision-Date: 2016-07-17 23:25+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Ioannis Valiantzas & Alex Katsaros from NetGlobe "
9
  "<info@netglobe.eu>\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: adrotate-functions.php:842
22
  msgid "No files found"
23
  msgstr "Δεν βρέθηκαν αρχεία"
24
 
25
+ #: adrotate-functions.php:845
26
  msgid "Folder not found or not accessible"
27
  msgstr "Δεν βρέθηκε ή δεν είναι προσπελάσιμος ο φάκελος"
28
 
29
+ #: adrotate-functions.php:894
30
  msgid "Ad saved"
31
  msgstr ""
32
 
33
+ #: adrotate-functions.php:898
34
  msgid "Group saved"
35
  msgstr ""
36
 
37
+ #: adrotate-functions.php:902
38
  msgid "Ad(s) deleted"
39
  msgstr "Η(Οι) διαφήμιση(εις) διαγράφηκε(αν)"
40
 
41
+ #: adrotate-functions.php:906
42
  msgid "Group deleted"
43
  msgstr "Η Ομάδα διαγράφηκε"
44
 
45
+ #: adrotate-functions.php:910
46
  msgid "Ad(s) statistics reset"
47
  msgstr "Οι στατιστικές διαφήμισης επανήλθαν"
48
 
49
+ #: adrotate-functions.php:914
50
  msgid "Ad(s) renewed"
51
  msgstr "Η(Οι) διαφήμιση(εις) ανανεώθηκε(αν)"
52
 
53
+ #: adrotate-functions.php:918
54
  msgid "Ad(s) deactivated"
55
  msgstr "Η(Οι) διαφήμιση(εις) απενεργοποιήθηκε(αν)"
56
 
57
+ #: adrotate-functions.php:922
58
  msgid "Ad(s) activated"
59
  msgstr "Η(Οι) διαφήμιση(εις) ενεργοποιήθηκε(αν)"
60
 
61
+ #: adrotate-functions.php:926
62
  msgid "Group including it's Ads deleted"
63
  msgstr "Η Ομάδα διαγράφηκε μαζί με τις διαφημίσεις της"
64
 
65
+ #: adrotate-functions.php:930
66
  #, fuzzy
67
  msgid "Export created"
68
  msgstr "Επιλογές εξαγωγής"
69
 
70
+ #: adrotate-functions.php:935
71
  msgid "Settings saved"
72
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν"
73
 
74
+ #: adrotate-functions.php:939
75
  msgid "Database optimized"
76
  msgstr "Η βάση δεδομένων βελτιστοποιήθηκε"
77
 
78
+ #: adrotate-functions.php:943
79
  msgid "Database repaired"
80
  msgstr "Η βάση δεδομένων επιδιορθώθηκε"
81
 
82
+ #: adrotate-functions.php:947
83
  msgid "Ads evaluated and statuses have been corrected where required"
84
  msgstr ""
85
  "Οι διαφημίσεις αξιολογήθηκαν και οι καταστάσεις επιδιορθώθηκαν όπου "
86
  "χρειάστηκε"
87
 
88
+ #: adrotate-functions.php:951
89
  msgid "Empty database records removed"
90
  msgstr "Τα κενά πεδία της βάσης δεδομένων απομακρύνθηκαν"
91
 
92
+ #: adrotate-functions.php:956
93
  msgid "Action prohibited"
94
  msgstr "Η ενέργεια απαγορεύεται"
95
 
96
+ #: adrotate-functions.php:960
97
  msgid ""
98
  "The ad was saved but has an issue which might prevent it from working "
99
  "properly. Review the colored ad."
100
  msgstr ""
101
 
102
+ #: adrotate-functions.php:964
103
  msgid "No data found in selected time period"
104
  msgstr "Δεν βρέθηκαν δεδομένα για την επιλεγμένη περίοδο"
105
 
106
+ #: adrotate-functions.php:968
107
  msgid "Database can only be optimized or cleaned once every hour"
108
  msgstr ""
109
  "Η βάση δεδομένων μπορεί να βελτιστοποιηθεί ή να καθαριστεί μόνο μία φορά ανά "
110
  "ώρα"
111
 
112
+ #: adrotate-functions.php:972
113
  msgid "Form can not be (partially) empty!"
114
  msgstr ""
115
 
116
+ #: adrotate-functions.php:976
117
  msgid "No ads found."
118
  msgstr ""
119
 
120
+ #: adrotate-functions.php:980
121
  msgid "Unexpected error"
122
  msgstr ""
123
 
124
+ #: adrotate-manage-publisher.php:685
125
  msgid "AdRotate Advertiser"
126
  msgstr ""
127
 
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
  "που πατήσατε. Επιβεβαιώστε ότι η διεύθυνση είναι έγκυρη ή εισέλθετε μέσω του "
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
  "Αν έχετε λάβει τη διεύθυνση που θέλετε να επισκεφτείτε μέσω 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
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
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
  "Σφάλμα, η διαφήμιση δεν είναι διαθέσιμη αυτή τη στιγμή λόγω γεωγραφικών ή "
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
  "Ή δεν υπάρχουν διαφημιστικά γραφικά ή είναι απενεργοποιημένα ή κανένα δεν "
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
  "Παρακαλώ απενεργοποιήστε και επανενεργοποιήστε το 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
+ #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
209
  msgid "Check adverts"
210
  msgstr ""
211
 
212
+ #: adrotate-output.php:675
213
  msgid ""
214
  "You have enable caching support but W3 Total Cache is not active on your "
215
  "site!"
216
  msgstr ""
217
 
218
+ #: adrotate-output.php:678
219
  msgid ""
220
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
221
  "not set."
222
  msgstr ""
223
 
224
+ #: adrotate-output.php:683
225
  msgid "Your AdRotate Banner folder is not writable or does not exist."
226
  msgstr ""
227
 
228
+ #: adrotate-output.php:723 dashboard/adrotatepro.php:99
229
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
230
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
231
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
232
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
233
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
234
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
235
+ #: dashboard/settings/geotargeting.php:35
236
  #, fuzzy
237
  msgid "Buy now"
238
  msgstr "Λάβετε μέτρα τώρα"
239
 
240
+ #: adrotate-output.php:724
241
  msgid ""
242
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
243
  "to the <strong>PRO</strong> version"
244
  msgstr ""
245
 
246
+ #: adrotate-output.php:724
247
  #, php-format
248
  msgid ""
249
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
250
  msgstr ""
251
 
252
+ #: adrotate-output.php:724
253
  msgid "Thank you for your purchase!"
254
  msgstr ""
255
 
256
+ #: adrotate-output.php:785
257
  msgid ""
258
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
259
  "this menu. Check out the"
260
  msgstr ""
261
 
262
+ #: adrotate-output.php:785
263
  msgid "manuals"
264
  msgstr "εγχειρίδια"
265
 
266
+ #: adrotate-output.php:785 adrotate-output.php:852
267
  msgid "and"
268
  msgstr ""
269
 
270
+ #: adrotate-output.php:785
271
  msgid "forums"
272
  msgstr ""
273
 
274
+ #: adrotate-output.php:815
275
  #, fuzzy
276
  msgid "Useful Links"
277
  msgstr "Χρήσιμοι σύνδεσμοι"
278
 
279
+ #: adrotate-output.php:816
280
  msgid "Useful links to learn more about AdRotate"
281
  msgstr ""
282
 
283
+ #: adrotate-output.php:818
284
  msgid "AdRotate website"
285
  msgstr ""
286
 
287
+ #: adrotate-output.php:819
288
  #, fuzzy
289
  msgid "Getting Started With AdRotate"
290
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
291
 
292
+ #: adrotate-output.php:820
293
  #, fuzzy
294
  msgid "AdRotate manuals"
295
  msgstr "Πληροφορίες του AdRotate"
296
 
297
+ #: adrotate-output.php:821
298
  #, fuzzy
299
  msgid "AdRotate Support Forum"
300
  msgstr "Κατάστημα του AdRotate"
301
 
302
+ #: adrotate-output.php:844
303
  #, fuzzy
304
  msgid "Help AdRotate Grow"
305
  msgstr "Κολήσατε με το AdRotate; Θα βοηθήσω!"
306
 
307
+ #: adrotate-output.php:845
308
  msgid "Follow Arnan on Facebook"
309
  msgstr ""
310
 
311
+ #: adrotate-output.php:852
312
  msgid ""
313
  "A lot of users only think to review AdRotate when something goes wrong while "
314
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
315
  msgstr ""
316
 
317
+ #: adrotate-output.php:852
318
  msgid "If you find AdRotate useful please leave your honest"
319
  msgstr ""
320
 
321
+ #: adrotate-output.php:852
322
  msgid "rating"
323
  msgstr ""
324
 
325
+ #: adrotate-output.php:852
326
  #, fuzzy
327
  msgid "review"
328
  msgstr "Αξιολογήστε και σχολιάστε"
329
 
330
+ #: adrotate-output.php:852
331
  msgid "on WordPress.org to help AdRotate grow in a positive way"
332
  msgstr ""
333
 
334
+ #: adrotate-output.php:885 dashboard/settings/notifications.php:50
335
+ #: dashboard/settings/notifications.php:80
336
  msgid "Available in AdRotate Pro"
337
  msgstr "Διαθέσιμο στο AdRotate Pro"
338
 
339
+ #: adrotate-output.php:885
340
  #, fuzzy
341
  msgid "More information..."
342
  msgstr "Περισσότερες πληροφορίες"
343
 
344
+ #: adrotate-output.php:886
345
  msgid "This feature is available in AdRotate Pro"
346
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
347
 
348
+ #: adrotate-output.php:886
349
  #, fuzzy
350
  msgid "Learn more"
351
  msgstr "Μάθετε περισσότερα σχετικά"
352
 
353
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
354
+ #: dashboard/publisher/adverts-edit.php:235
355
  msgid "January"
356
  msgstr "Ιανουάριος"
357
 
358
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
359
+ #: dashboard/publisher/adverts-edit.php:236
360
  msgid "February"
361
  msgstr "Φεβρουάριος"
362
 
363
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
364
+ #: dashboard/publisher/adverts-edit.php:237
365
  msgid "March"
366
  msgstr "Μάρτιος"
367
 
368
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
369
+ #: dashboard/publisher/adverts-edit.php:238
370
  msgid "April"
371
  msgstr "Απρίλιος"
372
 
373
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
374
+ #: dashboard/publisher/adverts-edit.php:239
375
  msgid "May"
376
  msgstr "Μάιος"
377
 
378
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
379
+ #: dashboard/publisher/adverts-edit.php:240
380
  msgid "June"
381
  msgstr "Ιούνιος"
382
 
383
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
384
+ #: dashboard/publisher/adverts-edit.php:241
385
  msgid "July"
386
  msgstr "Ιούλιος"
387
 
388
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
389
+ #: dashboard/publisher/adverts-edit.php:242
390
  msgid "August"
391
  msgstr "Αύγουστος"
392
 
393
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
394
+ #: dashboard/publisher/adverts-edit.php:243
395
  msgid "September"
396
  msgstr "Σεπτέμβριος"
397
 
398
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
399
+ #: dashboard/publisher/adverts-edit.php:244
400
  msgid "October"
401
  msgstr "Οκτώβριος"
402
 
403
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
404
+ #: dashboard/publisher/adverts-edit.php:245
405
  msgid "November"
406
  msgstr "Νοέμβριος"
407
 
408
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
409
+ #: dashboard/publisher/adverts-edit.php:246
410
  msgid "December"
411
  msgstr "Δεκέμβριος"
412
 
468
  msgid "Fill in the ID of the type you want to display!"
469
  msgstr "Συμπληρώστε τον Κωδικό του τύπου που θέλετε να δείξετε!"
470
 
471
+ #: adrotate.php:102
472
  msgid "General Info"
473
  msgstr "Γενικές Πληροφορίες"
474
 
475
+ #: adrotate.php:103
476
  msgid "AdRotate Pro"
477
  msgstr "AdRotate Pro"
478
 
479
+ #: adrotate.php:104
480
  msgid "Manage Adverts"
481
  msgstr ""
482
 
483
+ #: adrotate.php:105 dashboard/publisher/groups-main.php:12
484
  msgid "Manage Groups"
485
  msgstr "Διαχείριση Ομάδων"
486
 
487
+ #: adrotate.php:106 adrotate.php:369
488
  #, fuzzy
489
  msgid "Manage Schedules"
490
  msgstr "Διαχείριση"
491
 
492
+ #: adrotate.php:107
493
  #, fuzzy
494
  msgid "Manage Media"
495
  msgstr "Media:"
496
 
497
+ #: adrotate.php:108
498
  msgid "Settings"
499
  msgstr "Ρυθμίσεις"
500
 
501
+ #: adrotate.php:128
502
  msgid "AdRotate Info"
503
  msgstr "Πληροφορίες του AdRotate"
504
 
505
+ #: adrotate.php:146
506
  #, fuzzy
507
  msgid "AdRotate Professional"
508
  msgstr "AdRotate Pro"
509
 
510
+ #: adrotate.php:186
511
  msgid "Advert Management"
512
  msgstr ""
513
 
514
+ #: adrotate.php:244 adrotate.php:311 adrotate.php:364
515
  msgid "Manage"
516
  msgstr "Διαχείριση"
517
 
518
+ #: adrotate.php:245 adrotate.php:312 adrotate.php:365
519
  msgid "Add New"
520
  msgstr "Προσθήκη Νέας"
521
 
522
+ #: adrotate.php:305
523
  msgid "Group Management"
524
  msgstr "Διαχείριση Ομάδας"
525
 
526
+ #: adrotate.php:314
527
  msgid "Report"
528
  msgstr "Αναφορά"
529
 
530
+ #: adrotate.php:360
531
  #, fuzzy
532
  msgid "Schedule Management available in AdRotate Pro"
533
  msgstr "Διαθέσιμο στο AdRotate Pro"
534
 
535
+ #: adrotate.php:370
536
  #, fuzzy
537
  msgid ""
538
  "Schedule management and multiple schedules per advert is available in "
539
  "AdRotate Pro."
540
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
541
 
542
+ #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
543
  #: dashboard/publisher/adverts-main.php:114
544
+ #: dashboard/publisher/groups-edit.php:71
545
  #: dashboard/publisher/groups-main.php:89
546
  #, fuzzy
547
  msgid "More information"
548
  msgstr "Περισσότερες πληροφορίες"
549
 
550
+ #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
551
  #: dashboard/publisher/adverts-error.php:19
552
  #: dashboard/publisher/adverts-main.php:20
553
  #: dashboard/publisher/groups-main.php:20
554
  msgid "Bulk Actions"
555
  msgstr "Μαζικές Ενέργειες"
556
 
557
+ #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
558
  #: dashboard/publisher/adverts-error.php:29
559
  #: dashboard/publisher/adverts-main.php:30
560
  #: dashboard/publisher/groups-main.php:24
561
  msgid "Go"
562
  msgstr "Go"
563
 
564
+ #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
565
  #: dashboard/publisher/adverts-error.php:39
566
  #: dashboard/publisher/adverts-main.php:39
 
567
  #: dashboard/publisher/groups-main.php:32
568
  msgid "ID"
569
  msgstr "Κωδ."
570
 
571
+ #: adrotate.php:388
572
  #, fuzzy
573
  msgid "Start"
574
  msgstr "Ώρα έναρξης (ωω: λλ):"
575
 
576
+ #: adrotate.php:388
577
  #, fuzzy
578
  msgid "End"
579
  msgstr "Ώρα λήξης (ωω: λλ):"
580
 
581
+ #: adrotate.php:389
582
  msgid "Ads"
583
  msgstr "Διαφημίσεις"
584
 
585
+ #: adrotate.php:391
586
  msgid "Max Impressions"
587
  msgstr "Max Impressions"
588
 
589
+ #: adrotate.php:392
590
  msgid "Max Clicks"
591
  msgstr "Max Clicks"
592
 
593
+ #: adrotate.php:422
594
  #, fuzzy
595
  msgid "No schedules created yet!"
596
  msgstr "Κανένα πεδίο δεν έχει δημιουργηθεί ακόμα!"
597
 
598
+ #: adrotate.php:427
599
  #, fuzzy
600
  msgid "Easily manage your schedules from here with AdRotate Pro."
601
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
602
 
603
+ #: adrotate.php:427 adrotate.php:490
604
  #, fuzzy
605
  msgid "Upgrade today!"
606
  msgstr "Σήμερα"
607
 
608
+ #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
609
+ #: dashboard/publisher/groups-edit.php:383
610
  msgid "Expires soon."
611
  msgstr "Λήγει σύντομα."
612
 
613
+ #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
614
+ #: dashboard/publisher/groups-edit.php:384
615
  msgid "Has expired."
616
  msgstr "Έχει λήξει."
617
 
618
+ #: adrotate.php:452
619
  #, fuzzy
620
  msgid "Media Management available in AdRotate Pro"
621
  msgstr "Διαθέσιμο στο AdRotate Pro"
622
 
623
+ #: adrotate.php:454
624
  msgid "Upload images to the AdRotate Pro banners folder from here."
625
  msgstr ""
626
 
627
+ #: adrotate.php:454
628
  msgid ""
629
  "This is useful if you use responsive adverts with multiple images or have "
630
  "HTML5 adverts containing multiple files."
631
  msgstr ""
632
 
633
+ #: adrotate.php:454
634
  #, fuzzy
635
  msgid "Media uploading and management is available in AdRotate Pro."
636
  msgstr "Αυτό το χαρακτηριστικό είναι διαθέσιμο στο AdRotate Pro"
637
 
638
+ #: adrotate.php:456
639
  msgid "Upload new file"
640
  msgstr ""
641
 
642
+ #: adrotate.php:457
643
  msgid "Accepted files:"
644
  msgstr ""
645
 
646
+ #: adrotate.php:457
647
  msgid "For HTML5 ads you can also upload html and javascript files."
648
  msgstr ""
649
 
650
+ #: adrotate.php:457
651
  msgid "Maximum size is 512Kb."
652
  msgstr ""
653
 
654
+ #: adrotate.php:457
655
  msgid "Important:"
656
  msgstr ""
657
 
658
+ #: adrotate.php:457
659
  msgid ""
660
  "Make sure your file has no spaces or special characters in the name. Replace "
661
  "spaces with a - or _."
662
  msgstr ""
663
 
664
+ #: adrotate.php:457
665
  msgid ""
666
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
667
  "file so it knows about the changed name. For example for the javascript file."
668
  msgstr ""
669
 
670
+ #: adrotate.php:460
671
  msgid ""
672
  "For responsive adverts make sure the filename is in the following format; "
673
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
674
  msgstr ""
675
 
676
+ #: adrotate.php:461
677
  msgid ""
678
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
679
  "filename instead of \".full\" for the various viewports."
680
  msgstr ""
681
 
682
+ #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
683
+ #: dashboard/publisher/groups-edit.php:316
684
  msgid "Example:"
685
  msgstr "Παράδειγμα:"
686
 
687
+ #: adrotate.php:462
688
  msgid ""
689
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
690
  "for different viewports."
691
  msgstr ""
692
 
693
+ #: adrotate.php:466
694
  msgid "Upload file"
695
  msgstr ""
696
 
697
+ #: adrotate.php:466
698
  msgid "Click only once per file!"
699
  msgstr ""
700
 
701
+ #: adrotate.php:469
702
  msgid "Available files in"
703
  msgstr ""
704
 
705
+ #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
706
  #: dashboard/publisher/groups-main.php:33
707
  msgid "Name"
708
  msgstr "Όνομα"
709
 
710
+ #: adrotate.php:475
711
  #, fuzzy
712
  msgid "Actions"
713
  msgstr "Μαζικές Ενέργειες"
714
 
715
+ #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
716
+ #: adrotate.php:484 adrotate.php:485 adrotate.php:486
717
  #: dashboard/publisher/adverts-disabled.php:22
718
  #: dashboard/publisher/adverts-error.php:21
719
  #: dashboard/publisher/adverts-main.php:22
720
  msgid "Delete"
721
  msgstr "Διαγραφή"
722
 
723
+ #: adrotate.php:490
724
  msgid ""
725
  "Make sure the banner images are not in use by adverts when you delete them!"
726
  msgstr ""
727
 
728
+ #: adrotate.php:490
729
  #, fuzzy
730
  msgid "Manage your banner folder from here with AdRotate Pro."
731
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
732
 
733
+ #: adrotate.php:516
734
  msgid "AdRotate Settings"
735
  msgstr "Ρυθμίσεις AdRotate"
736
 
 
 
 
 
737
  #: dashboard/adrotatepro.php:20
738
  #, fuzzy
739
  msgid "Satisfy your advertisers"
923
  msgid "Adverts that need you"
924
  msgstr "Διαφημίσεις που χρειάζονται την προσοχή σας"
925
 
926
+ #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
927
  #: dashboard/publisher/groups-main.php:34
928
  msgid "Adverts"
929
  msgstr "Διαφημίσεις"
966
  msgstr ""
967
 
968
  #: dashboard/publisher/adverts-disabled.php:21
969
+ #: dashboard/publisher/adverts-edit.php:170
970
  msgid "Activate"
971
  msgstr "Ενεργοποίηση"
972
 
988
  "πρωί."
989
 
990
  #: dashboard/publisher/adverts-disabled.php:37
991
+ #: dashboard/publisher/adverts-edit.php:110
992
  #: dashboard/publisher/adverts-error.php:41
993
  #: dashboard/publisher/adverts-main.php:41
994
  msgid "Title"
996
 
997
  #: dashboard/publisher/adverts-disabled.php:38
998
  #: dashboard/publisher/adverts-main.php:44
999
+ #: dashboard/publisher/groups-edit.php:329
1000
  #: dashboard/publisher/groups-main.php:36
1001
  msgid "Shown"
1002
  msgstr "Εμφανίζονται"
1005
  #: dashboard/publisher/adverts-main.php:46
1006
  #: dashboard/publisher/adverts-report.php:36
1007
  #: dashboard/publisher/adverts-report.php:57
1008
+ #: dashboard/publisher/groups-edit.php:330
1009
  #: dashboard/publisher/groups-main.php:38
1010
  #: dashboard/publisher/groups-report.php:37
1011
  #: dashboard/publisher/groups-report.php:58
1047
  msgstr "Ο AdCode δεν μπορεί να είναι κενός!"
1048
 
1049
  #: dashboard/publisher/adverts-edit.php:51
1050
+ msgid ""
1051
+ "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1052
+ "use!"
1053
  msgstr ""
1054
 
1055
  #: dashboard/publisher/adverts-edit.php:54
 
 
 
 
1056
  msgid ""
1057
+ "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1058
+ "use!"
1059
  msgstr ""
1060
 
1061
+ #: dashboard/publisher/adverts-edit.php:57
1062
  msgid ""
1063
  "There is a problem saving the image. Please reset your image and re-save the "
1064
  "ad!"
1065
  msgstr ""
1066
 
1067
+ #: dashboard/publisher/adverts-edit.php:60
 
 
 
 
1068
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1069
  msgstr ""
1070
 
1071
+ #: dashboard/publisher/adverts-edit.php:65
1072
  msgid ""
1073
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1074
  "the ad!"
1076
  "Το AdRotate δεν μπορεί να βρει κάποιο σφάλμα, αλλά η διαφήμιση είναι "
1077
  "σημειωμένη σαν λανθασμένη. Προσπαθήστε να αποθηκεύσετε πάλι τη διαφήμιση!"
1078
 
1079
+ #: dashboard/publisher/adverts-edit.php:68
1080
  msgid "This ad is expired and currently not shown on your website!"
1081
  msgstr ""
1082
  "Αυτή η διαφήμιση έχει λήξει και για την ώρα δεν εμφανίζεται στην ιστοσελίδα "
1083
  "σας!"
1084
 
1085
+ #: dashboard/publisher/adverts-edit.php:71
1086
  msgid "The ad will expire in less than 2 days!"
1087
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 2 ημέρες!"
1088
 
1089
+ #: dashboard/publisher/adverts-edit.php:74
1090
  msgid "This ad will expire in less than 7 days!"
1091
  msgstr "Η διαφήμιση θα λήξει σε λιγότερο από 7 ημέρες!"
1092
 
1093
+ #: dashboard/publisher/adverts-edit.php:77
1094
  msgid "This ad has been disabled and does not rotate on your site!"
1095
  msgstr ""
1096
  "Η διαφήμιση έχει απενεργοποιηθεί και δεν προβάλεται στην ιστοσελίδα σας!"
1097
 
1098
+ #: dashboard/publisher/adverts-edit.php:102
1099
  msgid "New Advert"
1100
  msgstr "Νέα Διαφήμιση"
1101
 
1102
+ #: dashboard/publisher/adverts-edit.php:104
1103
  msgid "Edit Advert"
1104
  msgstr "Επεξεργασία Διαφήμισης"
1105
 
1106
+ #: dashboard/publisher/adverts-edit.php:116
1107
  msgid "AdCode"
1108
  msgstr ""
1109
 
1110
+ #: dashboard/publisher/adverts-edit.php:121
1111
  msgid "Basic Examples:"
1112
  msgstr "Βασικά παραδείγματα:"
1113
 
1114
+ #: dashboard/publisher/adverts-edit.php:128
1115
  msgid "Useful tags"
1116
  msgstr ""
1117
 
1118
+ #: dashboard/publisher/adverts-edit.php:130
1119
  msgid "Insert the advert ID Number."
1120
  msgstr ""
1121
 
1122
+ #: dashboard/publisher/adverts-edit.php:130
1123
+ msgid "Required when selecting a asset below."
1124
  msgstr ""
1125
 
1126
+ #: dashboard/publisher/adverts-edit.php:130
1127
  msgid "Insert the advert name."
1128
  msgstr ""
1129
 
1130
+ #: dashboard/publisher/adverts-edit.php:130
1131
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1132
  msgstr ""
1133
 
1134
+ #: dashboard/publisher/adverts-edit.php:130
1135
  msgid "Add inside the <a> tag to open advert in a new window."
1136
  msgstr ""
1137
 
1138
+ #: dashboard/publisher/adverts-edit.php:130
1139
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1140
  msgstr ""
1141
 
1142
+ #: dashboard/publisher/adverts-edit.php:130
1143
  msgid ""
1144
  "Place the cursor in your AdCode where you want to add any of these tags and "
1145
  "click to add it."
1146
  msgstr ""
1147
 
1148
+ #: dashboard/publisher/adverts-edit.php:135
1149
  msgid "Preview"
1150
  msgstr "Προεπισκόπηση"
1151
 
1152
+ #: dashboard/publisher/adverts-edit.php:138
1153
  msgid ""
1154
  "Note: While this preview is an accurate one, it might look different then it "
1155
  "does on the website."
1157
  "Σημείωση: Όσο αυτή η προεπισκόπηση εκτελείται, μπορεί να φαίνεται "
1158
  "διαφορετική από ό, τι στην ιστοσελίδα."
1159
 
1160
+ #: dashboard/publisher/adverts-edit.php:139
1161
  msgid ""
1162
  "This is because of CSS differences. Your themes CSS file is not active here!"
1163
  msgstr ""
1164
  "Αυτό είναι λόγω των διαφορών CSS. Το αρχείο θεμάτων CSS δεν είναι ενεργό εδώ!"
1165
 
1166
+ #: dashboard/publisher/adverts-edit.php:144
1167
  msgid "Banner asset"
1168
  msgstr ""
1169
 
1170
+ #: dashboard/publisher/adverts-edit.php:147
1171
  msgid "WordPress media:"
1172
  msgstr ""
1173
 
1174
+ #: dashboard/publisher/adverts-edit.php:147
1175
  msgid "Select Banner"
1176
  msgstr "Επιλέξτε Banner"
1177
 
1178
+ #: dashboard/publisher/adverts-edit.php:149
1179
  msgid "- OR -"
1180
  msgstr "- Ή -"
1181
 
1182
+ #: dashboard/publisher/adverts-edit.php:151
1183
  msgid "Banner folder:"
1184
  msgstr "Φάκελος Banner:"
1185
 
1186
+ #: dashboard/publisher/adverts-edit.php:152
1187
  msgid "No image selected"
1188
  msgstr "Καμία επιλεγμένη εικόνα"
1189
 
1190
+ #: dashboard/publisher/adverts-edit.php:156
1191
+ msgid "Use %asset% in the adcode instead of the file path."
1192
  msgstr ""
1193
 
1194
+ #: dashboard/publisher/adverts-edit.php:156
1195
  msgid ""
1196
  "Use either the text field or the dropdown. If the textfield has content that "
1197
  "field has priority."
1199
  "Χρησιμοποιήστε είτε το πεδίο κειμένου είτε το μενού επιλογών. Αν το πεδίο "
1200
  "κειμένου έχει περιεχόμενο αυτό το πεδίο έχει προτεραιότητα."
1201
 
1202
+ #: dashboard/publisher/adverts-edit.php:161
1203
+ #: dashboard/settings/statistics.php:17
1204
  msgid "Statistics"
1205
  msgstr "Στατιστικά"
1206
 
1207
+ #: dashboard/publisher/adverts-edit.php:163
1208
  msgid "Enable click and impression tracking for this advert."
1209
  msgstr ""
1210
 
1211
+ #: dashboard/publisher/adverts-edit.php:164
1212
  msgid ""
1213
  "Note: Clicktracking does not work for Javascript adverts such as those "
1214
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1215
  "always supported."
1216
  msgstr ""
1217
 
1218
+ #: dashboard/publisher/adverts-edit.php:174
1219
  msgid "Yes, this ad will be used"
1220
  msgstr "Ναι, θα χρησιμοποιηθεί αυτή η διαφήμιση"
1221
 
1222
+ #: dashboard/publisher/adverts-edit.php:175
1223
  msgid "No, do not show this ad anywhere"
1224
  msgstr "Όχι, να μην εμφανίσεις αυτή τη διαφήμιση πουθενά "
1225
 
1226
+ #: dashboard/publisher/adverts-edit.php:182
1227
  #: dashboard/publisher/adverts-main.php:114
1228
+ #: dashboard/publisher/groups-edit.php:71
1229
  #: dashboard/publisher/groups-main.php:89
1230
  #, fuzzy
1231
  msgid "Get more features with AdRotate Pro."
1232
  msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
1233
 
1234
+ #: dashboard/publisher/adverts-edit.php:185
1235
+ #: dashboard/publisher/adverts-edit.php:285
1236
+ #: dashboard/publisher/adverts-edit.php:408
1237
+ #: dashboard/publisher/adverts-edit.php:449
1238
  msgid "Save Advert"
1239
  msgstr "Αποθήκευση Διαφήμισης"
1240
 
1241
+ #: dashboard/publisher/adverts-edit.php:186
1242
+ #: dashboard/publisher/adverts-edit.php:286
1243
+ #: dashboard/publisher/adverts-edit.php:409
1244
+ #: dashboard/publisher/adverts-edit.php:450
1245
+ #: dashboard/publisher/groups-edit.php:150
1246
+ #: dashboard/publisher/groups-edit.php:297
1247
+ #: dashboard/publisher/groups-edit.php:389
1248
  msgid "Cancel"
1249
  msgstr "Ακύρωση"
1250
 
1251
+ #: dashboard/publisher/adverts-edit.php:189
1252
+ #: dashboard/publisher/adverts-edit.php:391
1253
+ #: dashboard/publisher/groups-edit.php:132
1254
+ #: dashboard/publisher/groups-edit.php:279
1255
  msgid "Usage"
1256
  msgstr "Χρήση"
1257
 
1258
+ #: dashboard/publisher/adverts-edit.php:193
1259
+ #: dashboard/publisher/adverts-edit.php:395
1260
+ #: dashboard/publisher/groups-edit.php:136
1261
+ #: dashboard/publisher/groups-edit.php:283
1262
  msgid "Widget"
1263
  msgstr ""
1264
 
1265
+ #: dashboard/publisher/adverts-edit.php:194
1266
+ #: dashboard/publisher/adverts-edit.php:396
1267
  msgid ""
1268
+ "Drag the AdRotate widget to the sidebar where you want to place the advert "
1269
+ "and select the advert or the group the advert is in."
1270
  msgstr ""
1271
 
1272
+ #: dashboard/publisher/adverts-edit.php:197
1273
+ #: dashboard/publisher/adverts-edit.php:399
1274
+ #: dashboard/publisher/groups-edit.php:140
1275
+ #: dashboard/publisher/groups-edit.php:287
1276
  msgid "In a post or page"
1277
  msgstr ""
1278
 
1279
+ #: dashboard/publisher/adverts-edit.php:199
1280
+ #: dashboard/publisher/adverts-edit.php:401
1281
+ #: dashboard/publisher/groups-edit.php:142
1282
+ #: dashboard/publisher/groups-edit.php:289
1283
  msgid "Directly in a theme"
1284
  msgstr ""
1285
 
1286
+ #: dashboard/publisher/adverts-edit.php:205
1287
  msgid "Schedule your advert"
1288
  msgstr ""
1289
 
1290
+ #: dashboard/publisher/adverts-edit.php:209
1291
  msgid "Start date (day/month/year)"
1292
  msgstr ""
1293
 
1294
+ #: dashboard/publisher/adverts-edit.php:230
1295
  msgid "End date (day/month/year)"
1296
  msgstr ""
1297
 
1298
+ #: dashboard/publisher/adverts-edit.php:253
1299
  msgid "Start time (hh:mm)"
1300
  msgstr ""
1301
 
1302
+ #: dashboard/publisher/adverts-edit.php:260
1303
  msgid "End time (hh:mm)"
1304
  msgstr ""
1305
 
1306
+ #: dashboard/publisher/adverts-edit.php:270
1307
  msgid "Maximum Clicks"
1308
  msgstr ""
1309
 
1310
+ #: dashboard/publisher/adverts-edit.php:271
1311
+ #: dashboard/publisher/adverts-edit.php:273
1312
  msgid "Leave empty or 0 to skip this."
1313
  msgstr "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό."
1314
 
1315
+ #: dashboard/publisher/adverts-edit.php:272
1316
  msgid "Maximum Impressions"
1317
  msgstr ""
1318
 
1319
+ #: dashboard/publisher/adverts-edit.php:277
1320
  msgid "Important"
1321
  msgstr ""
1322
 
1323
+ #: dashboard/publisher/adverts-edit.php:278
1324
  msgid ""
1325
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1326
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1327
  "14:00 hours. 6AM is 6:00 hours."
1328
  msgstr ""
1329
 
1330
+ #: dashboard/publisher/adverts-edit.php:282
1331
  msgid ""
1332
  "Create multiple and more advanced schedules for each advert with AdRotate "
1333
  "Pro."
1334
  msgstr ""
1335
 
1336
+ #: dashboard/publisher/adverts-edit.php:282
1337
+ #: dashboard/publisher/adverts-edit.php:345
1338
+ #: dashboard/publisher/adverts-edit.php:389
1339
+ #: dashboard/publisher/groups-edit.php:196
1340
  #, fuzzy
1341
  msgid "Upgrade today"
1342
  msgstr "Σήμερα"
1343
 
1344
+ #: dashboard/publisher/adverts-edit.php:289
1345
+ #: dashboard/publisher/groups-edit.php:153
1346
  msgid "Advanced"
1347
  msgstr "Προχωρημένος"
1348
 
1349
+ #: dashboard/publisher/adverts-edit.php:290
1350
  msgid "Everything below is optional."
1351
  msgstr "Τα πάντα από κάτω είναι προαιρετικά."
1352
 
1353
+ #: dashboard/publisher/adverts-edit.php:290
1354
+ msgid "Available in AdRotate Pro!"
1355
  msgstr ""
1356
 
1357
+ #: dashboard/publisher/adverts-edit.php:295
1358
+ #: dashboard/publisher/adverts-main.php:42
1359
+ #: dashboard/publisher/groups-edit.php:332
1360
+ msgid "Weight"
1361
+ msgstr "Βαρύτητα"
1362
 
1363
+ #: dashboard/publisher/adverts-edit.php:298
1364
+ msgid "Few impressions"
1365
  msgstr ""
1366
 
1367
+ #: dashboard/publisher/adverts-edit.php:303
1368
+ msgid "Less than average"
1369
+ msgstr "Λιγότερο από το μέσο όρο"
1370
 
1371
+ #: dashboard/publisher/adverts-edit.php:308
1372
+ msgid "Normal impressions"
1373
  msgstr ""
1374
 
1375
+ #: dashboard/publisher/adverts-edit.php:313
1376
+ msgid "More than average"
1377
+ msgstr "Περισσότερο από μέσο"
1378
+
1379
+ #: dashboard/publisher/adverts-edit.php:318
1380
+ msgid "Many impressions"
1381
  msgstr ""
1382
 
1383
+ #: dashboard/publisher/adverts-edit.php:323
1384
+ msgid "Mobile"
1385
  msgstr ""
1386
 
1387
+ #: dashboard/publisher/adverts-edit.php:325
1388
+ msgid "Computers"
1389
+ msgstr ""
 
1390
 
1391
+ #: dashboard/publisher/adverts-edit.php:328
1392
+ msgid "Smartphones"
 
 
1393
  msgstr ""
1394
 
1395
+ #: dashboard/publisher/adverts-edit.php:331
1396
+ msgid "Tablets"
1397
+ msgstr ""
 
 
1398
 
1399
+ #: dashboard/publisher/adverts-edit.php:334
1400
  msgid ""
1401
+ "Also enable mobile support in the group this advert goes in or these are "
1402
+ "ignored."
1403
  msgstr ""
1404
 
1405
+ #: dashboard/publisher/adverts-edit.php:338
1406
+ #: dashboard/publisher/groups-edit.php:190
1407
  msgid "Sortorder"
1408
  msgstr ""
1409
 
1410
+ #: dashboard/publisher/adverts-edit.php:340
1411
+ #: dashboard/publisher/groups-edit.php:192
1412
  msgid "For administrative purposes set a sortorder."
1413
  msgstr "Για διοικητικούς σκοπούς ορίστε μια σειρά ταξινόμησης."
1414
 
1415
+ #: dashboard/publisher/adverts-edit.php:340
1416
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1417
  msgstr ""
1418
  "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
1419
  "διαφήμισης."
1420
 
1421
+ #: dashboard/publisher/adverts-edit.php:345
1422
  msgid ""
1423
  "With AdRotate Pro you can easily select which devices the advert should show "
1424
  "on!"
1425
  msgstr ""
1426
 
1427
+ #: dashboard/publisher/adverts-edit.php:347
1428
  msgid "Geo Targeting in AdRotate Pro"
1429
  msgstr ""
1430
 
1431
+ #: dashboard/publisher/adverts-edit.php:348
1432
  msgid ""
1433
  "Assign the advert to a group and enable that group to use Geo Targeting."
1434
  msgstr ""
1435
 
1436
+ #: dashboard/publisher/adverts-edit.php:352
1437
  msgid "Cities/States"
1438
  msgstr ""
1439
 
1440
+ #: dashboard/publisher/adverts-edit.php:355
1441
  msgid ""
1442
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1443
  "states ISO codes are supported)"
1444
  msgstr ""
1445
 
1446
+ #: dashboard/publisher/adverts-edit.php:355
1447
  msgid ""
1448
  "AdRotate does not check the validity of names so make sure you spell them "
1449
  "correctly!"
1450
  msgstr ""
1451
 
1452
+ #: dashboard/publisher/adverts-edit.php:359
1453
  msgid "Countries"
1454
  msgstr ""
1455
 
1456
+ #: dashboard/publisher/adverts-edit.php:384
1457
  #, fuzzy
1458
  msgid "Select the countries you want the adverts to show in."
1459
  msgstr ""
1460
  "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
1461
  "εμφανίζονται"
1462
 
1463
+ #: dashboard/publisher/adverts-edit.php:384
1464
  msgid "Cities take priority and will be filtered first."
1465
  msgstr ""
1466
 
1467
+ #: dashboard/publisher/adverts-edit.php:389
1468
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1469
  msgstr ""
1470
 
1471
+ #: dashboard/publisher/adverts-edit.php:413
1472
  msgid "Select Groups"
1473
  msgstr "Επιλέξτε Ομάδες"
1474
 
1475
+ #: dashboard/publisher/adverts-edit.php:418
1476
  msgid "ID - Name"
1477
  msgstr "ID - Όνομα"
1478
 
1479
+ #: dashboard/publisher/adverts-edit.php:428
1480
  #: dashboard/publisher/groups-main.php:60
1481
+ #: dashboard/settings/geotargeting.php:49
1482
  msgid "Default"
1483
  msgstr "Προεπιλογή"
1484
 
1485
+ #: dashboard/publisher/adverts-edit.php:429
1486
  #: dashboard/publisher/groups-main.php:61
1487
  msgid "Dynamic"
1488
  msgstr "Δυναμική"
1489
 
1490
+ #: dashboard/publisher/adverts-edit.php:429
1491
  #: dashboard/publisher/groups-main.php:61
1492
  #, fuzzy
1493
  msgid "second rotation"
1494
  msgstr "Γεωγραφική Τοποθεσία"
1495
 
1496
+ #: dashboard/publisher/adverts-edit.php:430
1497
  #: dashboard/publisher/groups-main.php:62
1498
  msgid "Block"
1499
  msgstr "Απαγόρευση"
1500
 
1501
+ #: dashboard/publisher/adverts-edit.php:430
1502
  #: dashboard/publisher/groups-main.php:62
1503
  #, fuzzy
1504
  msgid "grid"
1506
  "Κάντε ένα πλέγμα για τις διαφημίσεις σας. Συμπλήρωση 3 και 2 κάνει ένα "
1507
  "πλέγμα με 2 στήλες που εμφανίζουν το πολύ 6 διαφημίσεις. Προεπιλογή: 2x2."
1508
 
1509
+ #: dashboard/publisher/adverts-edit.php:431
1510
+ #: dashboard/publisher/groups-edit.php:198
1511
  #: dashboard/publisher/groups-main.php:63
1512
  msgid "Post Injection"
1513
  msgstr "Εμβολιασμός Δημοσίευσης"
1514
 
1515
+ #: dashboard/publisher/adverts-edit.php:432
1516
  msgid "Geolocation"
1517
  msgstr "Γεωγραφική τοποθεσία"
1518
 
1519
+ #: dashboard/publisher/adverts-edit.php:438
1520
+ #: dashboard/publisher/groups-edit.php:57
1521
  #: dashboard/publisher/groups-main.php:70
1522
  msgid "Mode"
1523
  msgstr "Λειτουργία"
1557
  msgstr "Για 7 ημέρες"
1558
 
1559
  #: dashboard/publisher/adverts-error.php:71
1560
+ #: dashboard/publisher/groups-edit.php:382
1561
  msgid "Configuration errors."
1562
  msgstr "Σφάλματα Διαμόρφωσης."
1563
 
1570
  msgid "Export to XML"
1571
  msgstr "Επιλογές εξαγωγής"
1572
 
 
 
 
 
 
1573
  #: dashboard/publisher/adverts-main.php:45
1574
  #: dashboard/publisher/adverts-main.php:47
1575
  #: dashboard/publisher/groups-main.php:37
1607
  msgid "Monthly overview of clicks and impressions"
1608
  msgstr "Μηνιαία επισκόπηση των κλικ και των εμφανίσεων"
1609
 
1610
+ #: dashboard/publisher/adverts-report.php:64
1611
+ #: dashboard/publisher/groups-report.php:65
1612
+ #: dashboard/settings/notifications.php:60
1613
+ #: dashboard/settings/notifications.php:90
1614
+ msgid "Note:"
1615
+ msgstr "Σημείωση:"
1616
+
1617
  #: dashboard/publisher/adverts-report.php:64
1618
  #: dashboard/publisher/groups-report.php:65
1619
  msgid ""
1631
  msgid "Edit Group"
1632
  msgstr "Επεξεργασία Ομάδας"
1633
 
1634
+ #: dashboard/publisher/groups-edit.php:60
1635
  msgid "Default - Show one ad at a time"
1636
  msgstr "Προεπιλογή - Εμφάνισε μία διαφήμιση την φορά"
1637
 
1638
+ #: dashboard/publisher/groups-edit.php:61
1639
  msgid "Dynamic Mode - Show a different ad every few seconds"
1640
  msgstr ""
1641
  "Δυναμική Λειτουργία - Εμφάνισε διαφορετική διαφήμιση κάθε λίγα δευτερόλεπτα"
1642
 
1643
+ #: dashboard/publisher/groups-edit.php:62
1644
  msgid "Block Mode - Show a block of adverts"
1645
  msgstr ""
1646
 
1647
+ #: dashboard/publisher/groups-edit.php:66
1648
  #, fuzzy
1649
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1650
  msgstr ""
1652
  "showoff\" να φορτωθούν. Μπορείτε να τα ενεργοποιήσετε στις Ρυθμίσεις "
1653
  "AdRotate."
1654
 
1655
+ #: dashboard/publisher/groups-edit.php:73
1656
+ #: dashboard/publisher/groups-edit.php:100
1657
  msgid "Dynamic and Block Mode"
1658
  msgstr "Δυναμική και Πεδίου Λειτουργία"
1659
 
1660
+ #: dashboard/publisher/groups-edit.php:74
1661
  msgid "Only required if your group is in Dynamic or Block mode."
1662
  msgstr "Απαιτείται μόνο εάν η ομάδα σας είναι σε Δυναμική ή λειτουργία Πεδίου."
1663
 
1664
+ #: dashboard/publisher/groups-edit.php:78
1665
  msgid "Block size"
1666
  msgstr ""
1667
 
1668
+ #: dashboard/publisher/groups-edit.php:84
1669
  msgid "rows"
1670
  msgstr "γραμμές"
1671
 
1672
+ #: dashboard/publisher/groups-edit.php:88
1673
  msgid "columns"
1674
  msgstr "στήλες"
1675
 
1676
+ #: dashboard/publisher/groups-edit.php:91
1677
  msgid "Block Mode"
1678
  msgstr "Λειτουργία Πεδίου"
1679
 
1680
+ #: dashboard/publisher/groups-edit.php:91
1681
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1682
  msgstr ""
1683
 
1684
+ #: dashboard/publisher/groups-edit.php:95
1685
  msgid "Advert size"
1686
  msgstr ""
1687
 
1688
+ #: dashboard/publisher/groups-edit.php:97
1689
  msgid "pixel(s) wide"
1690
  msgstr "πλάτος εικονοστοιχείου (ων) "
1691
 
1692
+ #: dashboard/publisher/groups-edit.php:97
1693
  msgid "pixel(s) high."
1694
  msgstr "ύψος εικονοστοιχείου(ων)."
1695
 
1696
+ #: dashboard/publisher/groups-edit.php:100
1697
  msgid ""
1698
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1699
  "recommended). Default: 125/125."
1700
  msgstr ""
1701
 
1702
+ #: dashboard/publisher/groups-edit.php:104
1703
  msgid "Automated refresh"
1704
  msgstr "Αυτόματη ανανέωση"
1705
 
1706
+ #: dashboard/publisher/groups-edit.php:123
1707
  msgid "seconds."
1708
  msgstr "δευτερόλεπτα."
1709
 
1710
+ #: dashboard/publisher/groups-edit.php:126
1711
  msgid "Dynamic Mode"
1712
  msgstr "Δυναμική Λειτουργία"
1713
 
1714
+ #: dashboard/publisher/groups-edit.php:126
1715
  msgid ""
1716
  "Load a new advert in this interval without reloading the page. Default: 6."
1717
  msgstr ""
1718
  "Τοποθετήστε μια νέα διαφήμιση σε αυτό το διάστημα, χωρίς επαναφόρτωση της "
1719
  "σελίδας. Προεπιλογή: 6."
1720
 
1721
+ #: dashboard/publisher/groups-edit.php:137
1722
+ #: dashboard/publisher/groups-edit.php:284
1723
  msgid ""
1724
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1725
  "Adverts\" and enter ID"
1726
  msgstr ""
1727
 
1728
+ #: dashboard/publisher/groups-edit.php:149
1729
+ #: dashboard/publisher/groups-edit.php:296
1730
+ #: dashboard/publisher/groups-edit.php:388
1731
  #, fuzzy
1732
  msgid "Save Group"
1733
  msgstr "Αποθήκευση"
1734
 
1735
+ #: dashboard/publisher/groups-edit.php:157
1736
  msgid "Advert Margin"
1737
  msgstr "Περιθώριο διαφήμισης"
1738
 
1739
+ #: dashboard/publisher/groups-edit.php:159
1740
  msgid "pixel(s)"
1741
  msgstr "εικονοστοιχείο(α)"
1742
 
1743
+ #: dashboard/publisher/groups-edit.php:162
1744
  #, fuzzy
1745
  msgid "A transparent area outside the advert in pixels. Default: 0."
1746
  msgstr ""
1747
  "Ένα διαφαωές περίγραμμα έξω από την διαφήμιση σε pixels. Προεπιλογή: 1."
1748
 
1749
+ #: dashboard/publisher/groups-edit.php:162
1750
  #, fuzzy
1751
  msgid "Set to 0 to disable."
1752
  msgstr ""
1753
  "Προεπιλογή: 10. Βάλτε το στο 0 για να απενεργοποιήσετε τον χρονομετρητή."
1754
 
1755
+ #: dashboard/publisher/groups-edit.php:162
1756
  msgid "Margins are automatically disabled for blocks where required."
1757
  msgstr ""
1758
 
1759
+ #: dashboard/publisher/groups-edit.php:166
1760
  #, fuzzy
1761
  msgid "Align the group"
1762
  msgstr "Διαφημίσεις στην ομάδα"
1763
 
1764
+ #: dashboard/publisher/groups-edit.php:169
1765
  #, fuzzy
1766
  msgid "None (Default)"
1767
  msgstr "Προεπιλογή"
1768
 
1769
+ #: dashboard/publisher/groups-edit.php:170
1770
  msgid "Left"
1771
  msgstr ""
1772
 
1773
+ #: dashboard/publisher/groups-edit.php:171
1774
  #, fuzzy
1775
  msgid "Right"
1776
  msgstr "Βαρύτητα"
1777
 
1778
+ #: dashboard/publisher/groups-edit.php:172
1779
  msgid "Center"
1780
  msgstr ""
1781
 
1782
+ #: dashboard/publisher/groups-edit.php:176
1783
  msgid ""
1784
  "Align the group in your post or page. Using 'center' may affect your margin "
1785
  "setting. Not every theme supports this feature."
1786
  msgstr ""
1787
 
1788
+ #: dashboard/publisher/groups-edit.php:180
1789
+ #: dashboard/settings/advertisers.php:38
1790
  msgid "Geo Targeting"
1791
  msgstr "Γεωγραφική Στόχευση"
1792
 
1793
+ #: dashboard/publisher/groups-edit.php:181
1794
  msgid "Enable Geo Targeting for this group."
1795
  msgstr ""
1796
 
1797
+ #: dashboard/publisher/groups-edit.php:182
1798
  msgid "Do not forget to tell the adverts for which areas they should show."
1799
  msgstr ""
1800
  "Μην ξεχάσετε να πείτε στις διαφημίσεις σε ποιους τομείς θα πρέπει να "
1801
  "φαίνονται."
1802
 
1803
+ #: dashboard/publisher/groups-edit.php:185
1804
  msgid "Mobile support"
1805
  msgstr ""
1806
 
1807
+ #: dashboard/publisher/groups-edit.php:186
1808
  msgid "Enable mobile support for this group."
1809
  msgstr ""
1810
 
1811
+ #: dashboard/publisher/groups-edit.php:187
1812
  msgid "Do not forget to put at least one mobile advert in this group."
1813
  msgstr ""
1814
 
1815
+ #: dashboard/publisher/groups-edit.php:192
1816
  msgid "Leave empty or 0 to skip this. Will default to group id."
1817
  msgstr ""
1818
  "Αφήστε το κενό ή 0 για να το παρακάμψετε αυτό. Θα προκαθορίσει το id της "
1819
  "ομάδας."
1820
 
1821
+ #: dashboard/publisher/groups-edit.php:196
1822
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1823
  msgstr ""
1824
 
1825
+ #: dashboard/publisher/groups-edit.php:201
1826
  msgid "In categories?"
1827
  msgstr ""
1828
 
1829
+ #: dashboard/publisher/groups-edit.php:205
1830
+ #: dashboard/publisher/groups-edit.php:243
1831
+ #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1832
  #, fuzzy
1833
  msgid "Disabled"
1834
  msgstr "Απενεργοποιημένες διαφημίσεις"
1835
 
1836
+ #: dashboard/publisher/groups-edit.php:206
1837
+ #: dashboard/publisher/groups-edit.php:244
1838
  #, fuzzy
1839
  msgid "Before content"
1840
  msgstr "Πριν από το περιεχόμενο των δημοσιεύσεων"
1841
 
1842
+ #: dashboard/publisher/groups-edit.php:207
1843
+ #: dashboard/publisher/groups-edit.php:245
1844
  #, fuzzy
1845
  msgid "After content"
1846
  msgstr "Πριν και μετά το περιεχόμενο"
1847
 
1848
+ #: dashboard/publisher/groups-edit.php:208
1849
+ #: dashboard/publisher/groups-edit.php:246
1850
  #, fuzzy
1851
  msgid "Before and after content"
1852
  msgstr "Πριν και μετά το περιεχόμενο"
1853
 
1854
+ #: dashboard/publisher/groups-edit.php:209
1855
+ #: dashboard/publisher/groups-edit.php:247
1856
  msgid "Inside the content..."
1857
  msgstr ""
1858
 
1859
+ #: dashboard/publisher/groups-edit.php:215
1860
+ #: dashboard/publisher/groups-edit.php:253
1861
  msgid "after the middle paragraph"
1862
  msgstr ""
1863
 
1864
+ #: dashboard/publisher/groups-edit.php:216
1865
+ #: dashboard/publisher/groups-edit.php:254
1866
  msgid "after the 1st paragraph"
1867
  msgstr ""
1868
 
1869
+ #: dashboard/publisher/groups-edit.php:217
1870
+ #: dashboard/publisher/groups-edit.php:255
1871
  msgid "after the 2nd paragraph"
1872
  msgstr ""
1873
 
1874
+ #: dashboard/publisher/groups-edit.php:218
1875
+ #: dashboard/publisher/groups-edit.php:256
1876
  msgid "after the 3rd paragraph"
1877
  msgstr ""
1878
 
1879
+ #: dashboard/publisher/groups-edit.php:219
1880
+ #: dashboard/publisher/groups-edit.php:257
1881
  msgid "after the 4th paragraph"
1882
  msgstr ""
1883
 
1884
+ #: dashboard/publisher/groups-edit.php:220
1885
+ #: dashboard/publisher/groups-edit.php:258
1886
  msgid "after the 5th paragraph"
1887
  msgstr ""
1888
 
1889
+ #: dashboard/publisher/groups-edit.php:221
1890
+ #: dashboard/publisher/groups-edit.php:259
1891
  msgid "after the 6th paragraph"
1892
  msgstr ""
1893
 
1894
+ #: dashboard/publisher/groups-edit.php:222
1895
+ #: dashboard/publisher/groups-edit.php:260
1896
  msgid "after the 7th paragraph"
1897
  msgstr ""
1898
 
1899
+ #: dashboard/publisher/groups-edit.php:223
1900
+ #: dashboard/publisher/groups-edit.php:261
1901
  msgid "after the 8th paragraph"
1902
  msgstr ""
1903
 
1904
+ #: dashboard/publisher/groups-edit.php:229
1905
  msgid "Which categories?"
1906
  msgstr "Ποιες κατηγορίες;"
1907
 
1908
+ #: dashboard/publisher/groups-edit.php:234
1909
  msgid "Click the categories posts you want the adverts to show in."
1910
  msgstr ""
1911
  "Κάντε κλικ στις κατηγορίες δημοσιεύσεων όπου θέλετε οι διαφημίσεις να "
1912
  "εμφανίζονται"
1913
 
1914
+ #: dashboard/publisher/groups-edit.php:239
1915
  msgid "In pages?"
1916
  msgstr ""
1917
 
1918
+ #: dashboard/publisher/groups-edit.php:267
1919
  msgid "Which pages?"
1920
  msgstr "Ποιες σελίδες;"
1921
 
1922
+ #: dashboard/publisher/groups-edit.php:272
1923
  msgid "Click the pages you want the adverts to show in."
1924
  msgstr "Κάντε κλικ στις σελίδες που θέλετε οι διαφημίσεις να εμφανίζονται"
1925
 
1926
+ #: dashboard/publisher/groups-edit.php:300
1927
  msgid "Wrapper code"
1928
  msgstr "Κώδικας περιτύλιγμα"
1929
 
1930
+ #: dashboard/publisher/groups-edit.php:301
1931
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1932
  msgstr ""
1933
 
1934
+ #: dashboard/publisher/groups-edit.php:305
1935
  msgid "Before advert"
1936
  msgstr ""
1937
 
1938
+ #: dashboard/publisher/groups-edit.php:309
1939
  msgid "Options:"
1940
  msgstr "Επιλογές:"
1941
 
1942
+ #: dashboard/publisher/groups-edit.php:313
1943
  msgid "After advert"
1944
  msgstr ""
1945
 
1946
+ #: dashboard/publisher/groups-edit.php:322
1947
  msgid "Select adverts"
1948
  msgstr ""
1949
 
1950
+ #: dashboard/publisher/groups-edit.php:327
1951
  msgid "Choose adverts"
1952
  msgstr ""
1953
 
1954
+ #: dashboard/publisher/groups-edit.php:333
1955
  msgid "Visible until"
1956
  msgstr "Ορατό μέχρι"
1957
 
1958
+ #: dashboard/publisher/groups-edit.php:375
1959
  msgid "No adverts created!"
1960
  msgstr ""
1961
 
1975
  msgid "This action can not be undone!"
1976
  msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί!"
1977
 
1978
+ #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1979
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
1980
  msgid "OK to continue, CANCEL to stop."
1981
  msgstr "ΟΚ για να συνεχίσετε, ΑΚΥΡΩΣΗ για να σταματήσετε."
1982
 
1988
  msgid "Statistics for group"
1989
  msgstr "Στατιστικά για την ομάδα"
1990
 
1991
+ #: dashboard/settings/advertisers.php:16
1992
  msgid "Advertisers - Available in AdRotate Pro"
1993
  msgstr ""
1994
 
1995
+ #: dashboard/settings/advertisers.php:17
1996
  msgid "Enable advertisers so they can review and manage their own ads."
1997
  msgstr ""
1998
 
1999
+ #: dashboard/settings/advertisers.php:20
2000
  msgid "Enable Advertisers"
2001
  msgstr "Ενεργοποίηση Διαφημιζόμενων"
2002
 
2003
+ #: dashboard/settings/advertisers.php:22
2004
  msgid "Allow adverts to be coupled to users (Advertisers)."
2005
  msgstr "Επιτρέψτε σε διαφημίσεις να συνδυαστούν με χρήστες (Διαφημιζόμενους)."
2006
 
2007
+ #: dashboard/settings/advertisers.php:26
2008
  msgid "Edit/update adverts"
2009
  msgstr "Επεξεργασία/ανανέωση διαφημίσεων"
2010
 
2011
+ #: dashboard/settings/advertisers.php:28
2012
  msgid "Allow advertisers to add new or edit their adverts."
2013
  msgstr ""
2014
  "Επιτρέψτε σε διαφημιζόμενους να προσθέσουν ή να επεξεργαστούν διαφημίσεις."
2015
 
2016
+ #: dashboard/settings/advertisers.php:32
2017
+ msgid "Mobile adverts"
2018
+ msgstr ""
2019
+
2020
+ #: dashboard/settings/advertisers.php:34
2021
+ msgid "Allow advertisers to specify on which devices their ads will show."
2022
+ msgstr ""
2023
+
2024
+ #: dashboard/settings/advertisers.php:40
2025
  msgid ""
2026
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2027
  "be enabled, too."
2028
  msgstr ""
2029
 
2030
+ #: dashboard/settings/advertisers.php:44
2031
  msgid "Advertiser role"
2032
  msgstr "Ρόλος Διαφημιζόμενου"
2033
 
2034
+ #: dashboard/settings/advertisers.php:46
2035
  msgid "Create a seperate user role for your advertisers."
2036
  msgstr ""
2037
 
2038
+ #: dashboard/settings/advertisers.php:47
2039
  msgid ""
2040
  "Don't forget to give these users access to their advertiser dashboard via "
2041
  "the Roles tab."
2042
  msgstr ""
2043
 
2044
+ #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2045
+ #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2046
+ #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2047
+ #: dashboard/settings/statistics.php:73
2048
+ msgid "Update Options"
2049
+ msgstr "Επιλογές Ανανέωσης"
2050
+
2051
+ #: dashboard/settings/general.php:17
2052
  msgid "General Settings"
2053
  msgstr ""
2054
 
2055
+ #: dashboard/settings/general.php:18
2056
  msgid "General settings for AdRotate."
2057
  msgstr ""
2058
 
2059
+ #: dashboard/settings/general.php:18 dashboard/settings/statistics.php:18
2060
  msgid "Some options are only available in AdRotate Pro!"
2061
  msgstr ""
2062
 
2063
+ #: dashboard/settings/general.php:21
2064
  msgid "Shortcode in widgets"
2065
  msgstr ""
2066
 
2067
+ #: dashboard/settings/general.php:22
2068
  msgid ""
2069
  "Enable this option to if your theme does not support shortcodes in the "
2070
  "WordPress text widget."
2071
  msgstr ""
2072
 
2073
+ #: dashboard/settings/general.php:25
2074
  msgid "Disable live preview"
2075
  msgstr ""
2076
 
2077
+ #: dashboard/settings/general.php:26
2078
  msgid ""
2079
  "Enable this option if you have faulty adverts that overflow their designated "
2080
  "area while creating/editing adverts."
2081
  msgstr ""
2082
 
2083
+ #: dashboard/settings/general.php:29
2084
  msgid "Disable dynamic mode"
2085
  msgstr ""
2086
 
2087
+ #: dashboard/settings/general.php:30
2088
  msgid ""
2089
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2090
  "you notice skipping or jumpy content."
2091
  msgstr ""
2092
 
2093
+ #: dashboard/settings/general.php:33
2094
  #, fuzzy
2095
  msgid "Load jQuery"
2096
  msgstr "Να περιληφθεί η jQuery"
2097
 
2098
+ #: dashboard/settings/general.php:34
2099
  msgid ""
2100
  "Enable this option if your theme does not load jQuery. jQuery is required "
2101
  "for dynamic groups, statistics and some other features."
2102
  msgstr ""
2103
 
2104
+ #: dashboard/settings/general.php:37
2105
  msgid "Load scripts in footer?"
2106
  msgstr ""
2107
 
2108
+ #: dashboard/settings/general.php:38
2109
  msgid ""
2110
  "Enable this option if you want to load all AdRotate Javascripts in the "
2111
  "footer of your site."
2112
  msgstr ""
2113
 
2114
+ #: dashboard/settings/general.php:41
2115
  msgid "Adblock disguise"
2116
  msgstr ""
2117
 
2118
+ #: dashboard/settings/general.php:43
2119
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2120
  msgstr ""
2121
 
2122
+ #: dashboard/settings/general.php:44
2123
  msgid ""
2124
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2125
  msgstr ""
2126
 
2127
+ #: dashboard/settings/general.php:44
2128
  msgid ""
2129
  "To also apply this feature to widgets, use a text widget with a shortcode "
2130
  "instead of the AdRotate widget."
2131
  msgstr ""
2132
 
2133
+ #: dashboard/settings/general.php:44
2134
  msgid ""
2135
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2136
  "feature will have little effect!"
2137
  msgstr ""
2138
 
2139
+ #: dashboard/settings/general.php:49
2140
  msgid "Banner Folder"
2141
  msgstr "Φάκελος Διαφημιστικών Πλαισίων (Μπάνερ)"
2142
 
2143
+ #: dashboard/settings/general.php:50
2144
  #, fuzzy
2145
  msgid "Set a location where your banner images will be stored."
2146
  msgstr ""
2147
  "Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
2148
  "(Προεπιλογή: /wp-content/banners/)."
2149
 
2150
+ #: dashboard/settings/general.php:53
2151
  #, fuzzy
2152
  msgid "Location"
2153
  msgstr "Γεωγραφική Τοποθεσία"
2154
 
2155
+ #: dashboard/settings/general.php:55
2156
  #, fuzzy
2157
  msgid "(Default: wp-content/banners/)."
2158
  msgstr ""
2159
  "Ορίστε μια τοποθεσία στην οποία θα αποθηκεύονται τα εικαστικά των μπάνερ σας "
2160
  "(Προεπιλογή: /wp-content/banners/)."
2161
 
2162
+ #: dashboard/settings/general.php:56
2163
  msgid ""
2164
  "To try and trick ad blockers you could set the folder to something crazy "
2165
  "like:"
2167
  "Για να ξεγελάσετε το μπλοκάρισμα των διαφημίσεων, ορίστε σαν όνομα φακέλου "
2168
  "κάτι περίεργο όπως:"
2169
 
2170
+ #: dashboard/settings/general.php:57
2171
  msgid ""
2172
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2173
  "will show errors when the folder is missing."
2175
  "Αυτός ο φάκελος δεν θα δημιουργηθεί αυτόματα αν δεν υπάρχει. Το AdRotate θα "
2176
  "εμφανίσει λάθη όταν λείπει ο φάκελος."
2177
 
2178
+ #: dashboard/settings/general.php:62
2179
  #, fuzzy
2180
  msgid "Bot filter"
2181
  msgstr "Φίλτρο προγράμματος περιήγησης"
2182
 
2183
+ #: dashboard/settings/general.php:63
2184
  msgid "The bot filter is used for the AdRotate stats tracker."
2185
  msgstr ""
2186
 
2187
+ #: dashboard/settings/general.php:66
2188
  msgid "User-Agent Filter"
2189
  msgstr "Φίλτρο προγράμματος περιήγησης"
2190
 
2191
+ #: dashboard/settings/general.php:69
2192
  msgid ""
2193
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2194
  msgstr ""
2195
 
2196
+ #: dashboard/settings/general.php:70
2197
  msgid ""
2198
  "Keep in mind that this might give false positives. The word 'fire' also "
2199
  "matches 'firefox', but not vice-versa. So be careful!"
2200
  msgstr ""
2201
 
2202
+ #: dashboard/settings/general.php:71
2203
  msgid ""
2204
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2205
  "characters are stripped out."
2206
  msgstr ""
2207
 
2208
+ #: dashboard/settings/general.php:72
2209
  msgid ""
2210
  "Additionally to the list specified here, empty User-Agents are blocked as "
2211
  "well."
2213
  "Επιπλέον του καταλόγου που παρατίθεται εδώ, ανώνυμα λογισμικά περιήγησης "
2214
  "απορίπτονται επίσης."
2215
 
2216
+ #: dashboard/settings/general.php:72
2217
  msgid "Learn more about"
2218
  msgstr "Μάθετε περισσότερα σχετικά"
2219
 
2220
+ #: dashboard/settings/general.php:72
2221
  msgid "user-agents"
2222
  msgstr "πρόγραμμα περιήγησης"
2223
 
2224
+ #: dashboard/settings/geotargeting.php:17
2225
  msgid "Geo Targeting - Available in AdRotate Pro"
2226
  msgstr ""
2227
 
2228
+ #: dashboard/settings/geotargeting.php:18
2229
  msgid "Target certain areas in the world for better advertising oppurtunities."
2230
  msgstr ""
2231
 
2232
+ #: dashboard/settings/geotargeting.php:21
2233
  msgid "Which Geo Service"
2234
  msgstr ""
2235
 
2236
+ #: dashboard/settings/geotargeting.php:28
2237
+ msgid "Experimental"
 
 
2238
  msgstr ""
2239
 
2240
+ #: dashboard/settings/geotargeting.php:31
2241
+ msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2242
+ msgstr ""
2243
+
2244
+ #: dashboard/settings/geotargeting.php:32
2245
+ #: dashboard/settings/geotargeting.php:36
2246
+ #: dashboard/settings/geotargeting.php:40
2247
+ msgid "Supports:"
2248
  msgstr ""
2249
 
2250
  #: dashboard/settings/geotargeting.php:33
2251
+ #: dashboard/settings/geotargeting.php:37
2252
+ #: dashboard/settings/geotargeting.php:41
2253
+ msgid "Scalability:"
2254
+ msgstr ""
2255
+
2256
+ #: dashboard/settings/geotargeting.php:33
2257
+ msgid "Suitable for small to medium websites."
2258
+ msgstr ""
2259
+
2260
+ #: dashboard/settings/geotargeting.php:35
2261
+ msgid ""
2262
+ "The most accurate geo targeting you can get for only $20 USD per 50000 "
2263
+ "lookups."
2264
+ msgstr ""
2265
+
2266
+ #: dashboard/settings/geotargeting.php:37
2267
+ msgid "Suitable for any size website as long as you have lookups."
2268
+ msgstr ""
2269
+
2270
+ #: dashboard/settings/geotargeting.php:39
2271
+ msgid "Basic geolocation included in every CloudFlare account."
2272
+ msgstr ""
2273
+
2274
+ #: dashboard/settings/geotargeting.php:41
2275
+ msgid "Suitable for any size website."
2276
+ msgstr ""
2277
+
2278
+ #: dashboard/settings/geotargeting.php:46
2279
  msgid "Geo Cookie Lifespan"
2280
  msgstr ""
2281
 
2282
+ #: dashboard/settings/geotargeting.php:55
2283
  msgid "Hours."
2284
  msgstr ""
2285
 
2286
+ #: dashboard/settings/geotargeting.php:56
2287
  msgid ""
2288
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2289
  "cookie last? A longer period is less accurate for mobile users but may "
2290
  "reduce the usage of your lookups drastically."
2291
  msgstr ""
2292
 
2293
+ #: dashboard/settings/geotargeting.php:62
2294
  msgid "MaxMind City/Country"
2295
  msgstr ""
2296
 
2297
+ #: dashboard/settings/geotargeting.php:65
2298
  msgid "Username/Email"
2299
  msgstr ""
2300
 
2301
+ #: dashboard/settings/geotargeting.php:69
2302
  msgid "Password/License Key"
2303
  msgstr ""
2304
 
2305
+ #: dashboard/settings/maintenance.php:16
2306
  msgid "Maintenance"
2307
  msgstr "Συντήρηση"
2308
 
2309
+ #: dashboard/settings/maintenance.php:17
2310
  msgid ""
2311
  "Use these functions when you notice your database is slow, unresponsive and "
2312
  "sluggish."
2313
  msgstr ""
2314
 
2315
+ #: dashboard/settings/maintenance.php:20 dashboard/settings/maintenance.php:22
2316
  msgid "Optimize Database"
2317
  msgstr "Βελτιστοποίηση Βάσης Δεδομένων"
2318
 
2319
+ #: dashboard/settings/maintenance.php:22
2320
  msgid "You are about to optimize the AdRotate database."
2321
  msgstr "Πρόκειται να βελτιστοποιήσετε τη βάση δεδομένων του AdRotate."
2322
 
2323
+ #: dashboard/settings/maintenance.php:22
2324
  msgid "Did you make a backup of your database?"
2325
  msgstr "Πήρατε αντίγραφο ασφαλείας της βάσης δεδομένων;"
2326
 
2327
+ #: dashboard/settings/maintenance.php:22
2328
  msgid ""
2329
  "This may take a moment and may cause your website to respond slow "
2330
  "temporarily!"
2332
  "Αυτή η ενέργεια μπορεί να διαρκέσει λίγα λεπτά και να κάνει την ιστοσελίδα "
2333
  "σας να είναι προσωρινά αργή!"
2334
 
2335
+ #: dashboard/settings/maintenance.php:23
2336
  msgid "Cleans up overhead data in the AdRotate tables."
2337
  msgstr "Καθαρίζει άχρηστα δεδομένα στους πίνακες του AdRotate."
2338
 
2339
+ #: dashboard/settings/maintenance.php:24
2340
  msgid ""
2341
  "Overhead data is accumulated garbage resulting from many changes you've "
2342
  "made. This can vary from nothing to hundreds of KiB of data."
2345
  "τις πολλές αλλαγές που έχετε κάνει στη βάση. Μπορεί να είναι από τίποτε "
2346
  "μέχρι εκατοντάδες kilobytes δεδομένων."
2347
 
2348
+ #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
2349
  msgid "Clean-up Database"
2350
  msgstr "Εκκαθάριση Βάσης Δεδομένων"
2351
 
2352
+ #: dashboard/settings/maintenance.php:30
2353
  msgid ""
2354
  "You are about to clean up your database. This may delete expired schedules "
2355
  "and older statistics."
2357
  "Πρόκειται να καθαρίσετε τη βάση δεδομένων. Αυτή η ενέργεια θα διαγράψει "
2358
  "ληγμένα προγράμαμτα και παλαιότερες στατιστικές."
2359
 
2360
+ #: dashboard/settings/maintenance.php:30
2361
  msgid "Are you sure you want to continue?"
2362
  msgstr "Είστε βέβαιοι ότι θέλετε να συνεχίσετε;"
2363
 
2364
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
2365
  msgid "This might take a while and may slow down your site during this action!"
2366
  msgstr ""
2367
 
2368
+ #: dashboard/settings/maintenance.php:31
2369
  msgid "Delete stats older than 356 days (Optional)."
2370
  msgstr "Διαγράψτε στατιστικά παλαιότερα των 356 ημερών (Προαιρετικό)."
2371
 
2372
+ #: dashboard/settings/maintenance.php:32
2373
  msgid ""
2374
  "AdRotate creates empty records when you start making ads, groups or "
2375
  "schedules. In rare occasions these records are faulty."
2376
  msgstr ""
2377
 
2378
+ #: dashboard/settings/maintenance.php:32
2379
  msgid ""
2380
  "If you made an ad, group or schedule that does not save when you make it use "
2381
  "this button to delete those empty records."
2382
  msgstr ""
2383
 
2384
+ #: dashboard/settings/maintenance.php:32
2385
  msgid ""
2386
  "Additionally you can clean up old schedules and/or statistics. This will "
2387
  "improve the speed of your site."
2388
  msgstr ""
2389
 
2390
+ #: dashboard/settings/maintenance.php:36
2391
  #, fuzzy
2392
  msgid "Re-evaluate Ads"
2393
  msgstr "Διαφημίσεις"
2394
 
2395
+ #: dashboard/settings/maintenance.php:38
2396
  msgid "Re-evaluate all ads"
2397
  msgstr ""
2398
 
2399
+ #: dashboard/settings/maintenance.php:38
2400
  #, fuzzy
2401
  msgid "You are about to check all ads for errors."
2402
  msgstr "Είστε έτοιμος να διαγράψετε μια ομάδα"
2403
 
2404
+ #: dashboard/settings/maintenance.php:39
2405
  msgid ""
2406
  "This will apply all evaluation rules to all ads to see if any error slipped "
2407
  "in. Normally you should not need this feature."
2408
  msgstr ""
2409
 
2410
+ #: dashboard/settings/maintenance.php:43
2411
  msgid ""
2412
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2413
  "database. They only apply to your ads/groups and stats. Not to other "
2420
  "is not a valid point in any case."
2421
  msgstr ""
2422
 
2423
+ #: dashboard/settings/maintenance.php:45
2424
  msgid "Troubleshooting"
2425
  msgstr "Αντιμετώπιση προβλημάτων"
2426
 
2427
+ #: dashboard/settings/maintenance.php:46
2428
  msgid ""
2429
  "The below options are not meant for normal use and are only there for "
2430
  "developers to review saved settings or how ads are selected. These can be "
2432
  "SHOULD BE LEFT UNCHECKED!!"
2433
  msgstr ""
2434
 
2435
+ #: dashboard/settings/maintenance.php:49
2436
  msgid "Developer Debug"
2437
  msgstr "Αποσφαλμάτωση Προγραμματιστή"
2438
 
2439
+ #: dashboard/settings/maintenance.php:51
2440
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2441
  msgstr ""
2442
 
2443
+ #: dashboard/settings/maintenance.php:52
2444
  msgid "View advert specs and (some) stats in the dashboard."
2445
  msgstr ""
2446
 
2447
+ #: dashboard/settings/maintenance.php:53
2448
  #, fuzzy
2449
  msgid ""
2450
  "Disable timers for clicks and impressions and enable a alert window for "
2451
  "clicktracking."
2452
  msgstr "Απενεργοποίηση χρονομετρητών για κλικ και εμφανίσεις."
2453
 
2454
+ #: dashboard/settings/maintenance.php:54
2455
  msgid "Temporarily disable encryption on the redirect url."
2456
  msgstr ""
2457
  "Προσωρινή απενεργοποίηση της κρυπτογράφησης στη διεύθυνση ανακατεύθυνσης."
2458
 
2459
+ #: dashboard/settings/maintenance.php:59
2460
  msgid "Status and Versions"
2461
  msgstr ""
2462
 
 
 
 
 
 
 
 
 
2463
  #: dashboard/settings/maintenance.php:62
 
 
 
 
 
 
 
 
2464
  msgid "Current status of adverts"
2465
  msgstr "Τρέχουσα κατάσταση διαφημίσεων"
2466
 
2467
+ #: dashboard/settings/maintenance.php:63
2468
  msgid "Normal"
2469
  msgstr "Φυσιολογική"
2470
 
2471
+ #: dashboard/settings/maintenance.php:63
2472
  msgid "Error"
2473
  msgstr "Σφάλμα"
2474
 
2475
+ #: dashboard/settings/maintenance.php:63
2476
  msgid "Expired"
2477
  msgstr "Έληξε"
2478
 
2479
+ #: dashboard/settings/maintenance.php:63
2480
  msgid "Expires Soon"
2481
  msgstr "Λήγει Σύντομα"
2482
 
2483
+ #: dashboard/settings/maintenance.php:63
2484
  msgid "Unknown"
2485
  msgstr ""
2486
 
2487
+ #: dashboard/settings/maintenance.php:66
2488
  msgid "Banners/assets Folder"
2489
  msgstr ""
2490
 
2491
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2492
  msgid "Exists and appears writable"
2493
  msgstr ""
2494
 
2495
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2496
  msgid "Not writable or does not exist"
2497
  msgstr ""
2498
 
2499
+ #: dashboard/settings/maintenance.php:70
2500
+ msgid "Reports Folder"
2501
+ msgstr ""
2502
+
2503
  #: dashboard/settings/maintenance.php:76
2504
+ msgid "Advert evaluation"
2505
+ msgstr ""
2506
+
2507
+ #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2508
+ msgid "Not scheduled! Re-activate the plugin from the plugins page."
2509
+ msgstr ""
2510
+
2511
+ #: dashboard/settings/maintenance.php:78
2512
+ msgid "Trackerdata cleanup"
2513
+ msgstr ""
2514
+
2515
+ #: dashboard/settings/maintenance.php:83
2516
+ msgid "Internal Versions"
2517
+ msgstr ""
2518
 
2519
+ #: dashboard/settings/maintenance.php:84
2520
+ msgid ""
2521
+ "Unless you experience database issues or a warning shows below, these "
2522
+ "numbers are not really relevant for troubleshooting. Support may ask for "
2523
+ "them to verify your database status."
2524
+ msgstr ""
2525
 
2526
+ #: dashboard/settings/maintenance.php:87
2527
+ msgid "AdRotate version"
2528
+ msgstr ""
2529
 
2530
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2531
+ msgid "Current:"
2532
+ msgstr ""
2533
+
2534
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2535
+ msgid "Should be:"
2536
+ msgstr ""
2537
+
2538
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2539
+ msgid "Previous:"
2540
+ msgstr ""
2541
+
2542
+ #: dashboard/settings/maintenance.php:89
2543
+ msgid "Database version"
2544
+ msgstr ""
2545
+
2546
+ #: dashboard/settings/misc.php:16
2547
  msgid "Miscellaneous"
2548
  msgstr "Διάφορα"
2549
 
2550
+ #: dashboard/settings/misc.php:19
2551
  msgid "Widget alignment"
2552
  msgstr "Ευθυγράμμιση μονάδας"
2553
 
2554
+ #: dashboard/settings/misc.php:20
2555
  msgid ""
2556
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2557
  "not always help!)"
2559
  "Επιλέξτε αυτό το κουτί αν οι μονάδες σας δεν ευθυγραμμίζονται με την "
2560
  "πλευρική μπάρα του θέματός σας. (Δεν βοηθά πάντα!)"
2561
 
2562
+ #: dashboard/settings/misc.php:23
2563
  msgid "Widget padding"
2564
  msgstr "Κενά περιθώρια μονάδων"
2565
 
2566
+ #: dashboard/settings/misc.php:24
2567
  msgid ""
2568
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2569
  "not always work!)"
2571
  "Ενεργοποιήστε την επιλογή για να αφαιρέσετε τα κενά περιθώρια γύρω από "
2572
  "διαφημίσεις σε μονάδες. (Δεν δουλεύει πάντα!)"
2573
 
2574
+ #: dashboard/settings/misc.php:28
2575
  msgid "NOTICE:"
2576
  msgstr ""
2577
 
2578
+ #: dashboard/settings/misc.php:29
2579
  msgid ""
2580
  "You have enabled W3 Total Caching support but not defined the security hash."
2581
  msgstr ""
2582
 
2583
+ #: dashboard/settings/misc.php:29
2584
  msgid ""
2585
  "AdRotate has generated the following line for you to add to your wp-config."
2586
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2587
  "add this line, check out the following guide;"
2588
  msgstr ""
2589
 
2590
+ #: dashboard/settings/misc.php:29
2591
  msgid "Set up W3 Total Caching"
2592
  msgstr ""
2593
 
2594
+ #: dashboard/settings/misc.php:33
2595
  msgid "W3 Total Caching"
2596
  msgstr "W3 Total Caching"
2597
 
2598
+ #: dashboard/settings/misc.php:34
2599
  msgid "Check this box if you use W3 Total Caching on your site."
2600
  msgstr ""
2601
  "Επιλέξτε αυτό το κουτί αν χρησιμοποιείτε το W3 Total Caching στην ιστοσελίδα "
2602
  "σας."
2603
 
2604
+ #: dashboard/settings/misc.php:38
2605
  msgid ""
2606
  "It may take a while for the ad to start rotating. The caching plugin needs "
2607
  "to refresh the cache. This can take up to a week if not done manually."
2610
  "πρόσθετο caching πρέπει να ανανεώσει την προσωρινή μνήμη. Αυτό μπορεί να "
2611
  "πάρει μέχρι και μια εβδομάδα αν δεν γίνει χειροκίνητα."
2612
 
2613
+ #: dashboard/settings/misc.php:38
2614
  msgid ""
2615
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2616
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2619
  "μονάδες AdRotate. Αν χρησιμοποιείτε κάποιο PHP Snippet πρέπει να περιλάβετε "
2620
  "μόνοι σας τον κώδικά σας στον κώδικα εξαίρεσης. "
2621
 
2622
+ #: dashboard/settings/notifications.php:18
2623
  msgid "Notifications"
2624
  msgstr "Ειδοποιήσεις"
2625
 
2626
+ #: dashboard/settings/notifications.php:19
2627
  msgid "Set up who gets notifications if ads need your attention."
2628
  msgstr ""
2629
 
2630
+ #: dashboard/settings/notifications.php:22
2631
  msgid "How to notify"
2632
  msgstr ""
2633
 
2634
+ #: dashboard/settings/notifications.php:24
2635
  msgid "Dashboard banner."
2636
  msgstr ""
2637
 
2638
+ #: dashboard/settings/notifications.php:25
2639
  #, fuzzy
2640
  msgid "Email message."
2641
  msgstr "Ειδοποιήσεις Email"
2642
 
2643
+ #: dashboard/settings/notifications.php:26
2644
  msgid "Push notifications to your smartphone."
2645
  msgstr ""
2646
 
2647
+ #: dashboard/settings/notifications.php:27
2648
  msgid ""
2649
  "Push notifications are delivered through Pushover, a notification service "
2650
  "for Android and iOS"
2651
  msgstr ""
2652
 
2653
+ #: dashboard/settings/notifications.php:27
2654
  msgid ""
2655
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2656
  "information can be found on the pushover website;"
2657
  msgstr ""
2658
 
2659
+ #: dashboard/settings/notifications.php:31
2660
  msgid "Test notification"
2661
  msgstr ""
2662
 
2663
+ #: dashboard/settings/notifications.php:33
2664
  msgid "Test"
2665
  msgstr "Δοκιμή"
2666
 
2667
+ #: dashboard/settings/notifications.php:33
2668
  msgid ""
2669
  "Send a test notification to enabled methods. Before you test, save the "
2670
  "options first!"
2671
  msgstr ""
2672
 
2673
+ #: dashboard/settings/notifications.php:38
2674
+ msgid "Dashboard Banner"
2675
  msgstr ""
2676
 
2677
+ #: dashboard/settings/notifications.php:39
2678
  msgid ""
2679
  "These go in a dashboard banner visible to all users with access to AdRotate "
2680
  "on every WordPress dashboard page."
2681
  msgstr ""
2682
 
2683
+ #: dashboard/settings/notifications.php:42
2684
+ #: dashboard/settings/notifications.php:54
2685
+ #: dashboard/settings/notifications.php:84
2686
  msgid "What"
2687
  msgstr ""
2688
 
2689
+ #: dashboard/settings/notifications.php:44
2690
  msgid "Expired adverts."
2691
  msgstr ""
2692
 
2693
+ #: dashboard/settings/notifications.php:45
2694
  msgid "Almost expired adverts."
2695
  msgstr ""
2696
 
2697
+ #: dashboard/settings/notifications.php:50
2698
+ msgid "Email Message"
2699
  msgstr ""
2700
 
2701
+ #: dashboard/settings/notifications.php:51
2702
+ msgid ""
2703
+ "Receive email notifications about what is happening with your AdRotate setup."
2704
  msgstr ""
2705
 
2706
+ #: dashboard/settings/notifications.php:56
2707
+ #: dashboard/settings/notifications.php:86
2708
+ msgid "Daily digest of any advert status other than normal."
2709
  msgstr ""
2710
 
2711
+ #: dashboard/settings/notifications.php:57
2712
+ #: dashboard/settings/notifications.php:87
2713
+ msgid "When you are running out of Geo Targeting Lookups."
 
2714
  msgstr ""
 
 
2715
 
2716
+ #: dashboard/settings/notifications.php:58
2717
+ #: dashboard/settings/notifications.php:88
2718
+ msgid "Any advertiser saving an advert in your moderation queue."
 
 
2719
  msgstr ""
 
 
 
 
 
 
2720
 
2721
  #: dashboard/settings/notifications.php:59
2722
+ #: dashboard/settings/notifications.php:89
2723
  #, fuzzy
2724
+ msgid "A moderator approved an advert from the moderation queue."
2725
+ msgstr "Έγκριση/Απόρριψη διαφημίσεων στην ουρά Ελέγχου"
 
 
 
 
2726
 
2727
+ #: dashboard/settings/notifications.php:60
2728
+ #: dashboard/settings/notifications.php:90
2729
+ #, fuzzy
2730
+ msgid "A moderator rejected an advert from the moderation queue."
2731
+ msgstr "Έγκριση/Απόρριψη διαφημίσεων στην ουρά Ελέγχου"
2732
+
2733
+ #: dashboard/settings/notifications.php:60
2734
+ #: dashboard/settings/notifications.php:90
2735
+ msgid ""
2736
+ "If you have a lot of activity with many advertisers adding/changing adverts "
2737
+ "you may get a lot of messages!"
2738
  msgstr ""
2739
 
2740
+ #: dashboard/settings/notifications.php:60
2741
  msgid ""
2742
+ "Sending out a lot of email is sometimes seen as automated mailing and deemed "
2743
+ "spammy. This may result in automated filters such as those used in services "
2744
+ "like Google Gmail and Microsoft Hotmail/Outlook.com blocking your server. "
2745
+ "Make sure you whitelist the sending address in your email account once you "
2746
+ "start receiving notifications!"
2747
  msgstr ""
2748
 
2749
+ #: dashboard/settings/notifications.php:65
2750
+ msgid "Publishers"
2751
  msgstr ""
2752
 
2753
+ #: dashboard/settings/notifications.php:68
2754
+ msgid ""
2755
+ "Messages are sent once every 24 hours. Maximum of 5 addresses. Comma "
2756
+ "separated. This field may not be empty!"
2757
  msgstr ""
2758
 
2759
  #: dashboard/settings/notifications.php:72
2760
+ msgid "Advertisers"
2761
+ msgstr "Διαφημιζόμενοι"
2762
+
2763
+ #: dashboard/settings/notifications.php:75
2764
+ msgid ""
2765
+ "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2766
+ "This field may not be empty!"
2767
  msgstr ""
2768
 
2769
+ #: dashboard/settings/notifications.php:80
2770
  #, fuzzy
2771
+ msgid "Push Notifications"
2772
+ msgstr "Ειδοποιήσεις"
2773
 
2774
+ #: dashboard/settings/notifications.php:81
2775
+ msgid ""
2776
+ "Receive information about what is happening with your AdRotate setup on your "
2777
+ "smartphone via Pushover."
2778
+ msgstr ""
2779
 
2780
+ #: dashboard/settings/notifications.php:90
2781
  msgid ""
2782
+ "Pushover has a monthly limit of 7500 messages, this should be plenty. If you "
2783
+ "run out, you will not receive push notifications until the quota is reset! "
2784
+ "Every message AdRotate sends, regardless of the number of receiving devices, "
2785
+ "counts as one message."
2786
  msgstr ""
2787
 
2788
+ #: dashboard/settings/notifications.php:95
2789
  #, fuzzy
2790
  msgid "User Key"
2791
  msgstr "πρόγραμμα περιήγησης"
2792
 
2793
+ #: dashboard/settings/notifications.php:97
2794
  msgid "Get your user token"
2795
  msgstr ""
2796
 
2797
+ #: dashboard/settings/notifications.php:97
2798
+ #: dashboard/settings/notifications.php:103
2799
  msgid "here"
2800
  msgstr ""
2801
 
2802
+ #: dashboard/settings/notifications.php:101
2803
  msgid "Api Token"
2804
  msgstr ""
2805
 
2806
+ #: dashboard/settings/notifications.php:103
2807
  msgid "Create your"
2808
  msgstr ""
2809
 
2810
+ #: dashboard/settings/notifications.php:103
2811
  msgid "App"
2812
  msgstr ""
2813
 
2814
+ #: dashboard/settings/notifications.php:103
2815
  msgid "and get your API token"
2816
  msgstr ""
2817
 
2818
+ #: dashboard/settings/roles.php:17
2819
  msgid "Roles"
2820
  msgstr ""
2821
 
2822
+ #: dashboard/settings/roles.php:18
2823
  msgid "Who has access to what?"
2824
  msgstr ""
2825
 
2826
+ #: dashboard/settings/roles.php:21
2827
  msgid "Manage/Add/Edit adverts"
2828
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία διαφημίσεων"
2829
 
2830
+ #: dashboard/settings/roles.php:25
2831
  msgid "Role to see and add/edit ads."
2832
  msgstr "Ρόλος για την προβολή και την προσθήκη/επεξεργασία διαφημίσεων."
2833
 
2834
+ #: dashboard/settings/roles.php:29
2835
  msgid "Delete/Reset adverts"
2836
  msgstr "Διαγραφή/Επαναφορά διαφημίσεων"
2837
 
2838
+ #: dashboard/settings/roles.php:33
2839
  msgid "Role to delete ads and reset stats."
2840
  msgstr "Ρόλος για τη διαγραφή διαφημίσεων και την επαναφορά στατιστικών."
2841
 
2842
+ #: dashboard/settings/roles.php:37
2843
  msgid "Manage/Add/Edit groups"
2844
  msgstr "Διαχείριση/Προσθήκη/Επεξεργασία ομάδων"
2845
 
2846
+ #: dashboard/settings/roles.php:41
2847
  msgid "Role to see and add/edit groups."
2848
  msgstr "Ρόλος για την προβολή και προσθήκη/επεξεργασία ομάδων."
2849
 
2850
+ #: dashboard/settings/roles.php:45
2851
  msgid "Delete groups"
2852
  msgstr "Διαγραφή ομάδων"
2853
 
2854
+ #: dashboard/settings/roles.php:49
2855
  msgid "Role to delete groups."
2856
  msgstr "Ρόλος για τη διαγραφή ομάδων."
2857
 
2858
+ #: dashboard/settings/statistics.php:18
2859
  msgid "Track statistics for your adverts."
2860
  msgstr ""
2861
 
2862
+ #: dashboard/settings/statistics.php:21
2863
  msgid "How to track stats"
2864
  msgstr ""
2865
 
2866
+ #: dashboard/settings/statistics.php:30
2867
  msgid "Tracks impressions and clicks internally"
2868
  msgstr ""
2869
 
2870
+ #: dashboard/settings/statistics.php:30 dashboard/settings/statistics.php:32
2871
+ #: dashboard/settings/statistics.php:34
2872
  msgid "manual"
2873
  msgstr ""
2874
 
2875
+ #: dashboard/settings/statistics.php:31
2876
  msgid ""
2877
  "Click and Impression recording, Click and impression limits, impression "
2878
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2879
  "will only track impressions."
2880
  msgstr ""
2881
 
2882
+ #: dashboard/settings/statistics.php:32 dashboard/settings/statistics.php:34
2883
  msgid "In AdRotate Pro!"
2884
  msgstr ""
2885
 
2886
+ #: dashboard/settings/statistics.php:32
2887
  msgid ""
2888
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2889
  "attributes"
2890
  msgstr ""
2891
 
2892
+ #: dashboard/settings/statistics.php:33
2893
  msgid ""
2894
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2895
  "Contents."
2896
  msgstr ""
2897
 
2898
+ #: dashboard/settings/statistics.php:34
2899
  msgid ""
2900
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2901
  "uses onClick() and onload() in adverts"
2902
  msgstr ""
2903
 
2904
+ #: dashboard/settings/statistics.php:35
2905
  msgid ""
2906
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2907
  "Banner."
2908
  msgstr ""
2909
 
2910
+ #: dashboard/settings/statistics.php:41
2911
  msgid "Internal Tracker"
2912
  msgstr ""
2913
 
2914
+ #: dashboard/settings/statistics.php:42
2915
  msgid ""
2916
  "The settings below are for the internal tracker and have no effect when "
2917
  "using Piwik/Google Analytics."
2918
  msgstr ""
2919
 
2920
+ #: dashboard/settings/statistics.php:45
2921
  #, fuzzy
2922
  msgid "Logged in impressions"
2923
  msgstr "Εμφανίσεις"
2924
 
2925
+ #: dashboard/settings/statistics.php:47
2926
  msgid "Track impressions from logged in users."
2927
  msgstr ""
2928
 
2929
+ #: dashboard/settings/statistics.php:51
2930
  msgid "Logged in clicks"
2931
  msgstr ""
2932
 
2933
+ #: dashboard/settings/statistics.php:53
2934
  msgid "Track clicks from logged in users."
2935
  msgstr "Παρακολουθήστε κλικ από συνδεδεμένους χρήστες."
2936
 
2937
+ #: dashboard/settings/statistics.php:57
2938
  msgid "Impression timer"
2939
  msgstr ""
2940
 
2941
+ #: dashboard/settings/statistics.php:59 dashboard/settings/statistics.php:66
2942
  msgid "Seconds."
2943
  msgstr "Δευτερόλεπτα."
2944
 
2945
+ #: dashboard/settings/statistics.php:60
2946
  #, fuzzy
2947
  msgid "Default: 60."
2948
  msgstr "Προεπιλογή"
2949
 
2950
+ #: dashboard/settings/statistics.php:60
2951
  #, fuzzy
2952
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2953
  msgstr ""
2954
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
2955
  "ώρα)."
2956
 
2957
+ #: dashboard/settings/statistics.php:64
2958
  msgid "Click timer"
2959
  msgstr ""
2960
 
2961
+ #: dashboard/settings/statistics.php:67
2962
  #, fuzzy
2963
  msgid "Default: 86400."
2964
  msgstr "Προεπιλογή"
2965
 
2966
+ #: dashboard/settings/statistics.php:67
2967
  #, fuzzy
2968
  msgid ""
2969
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2971
  "Αυτός ο αριθμός δεν μπορεί να είναι κενός, αρνητικός ή να ξεπερνά το 3600 (1 "
2972
  "ώρα)."
2973
 
2974
+ #, fuzzy
2975
+ #~ msgid "Enable responsive support for this advert."
2976
+ #~ msgstr "Ενεργοποίηση παρακολούθησης κλικ για αυτή την διαφήμιση."
2977
+
2978
+ #~ msgid "Current version:"
2979
+ #~ msgstr "Τρέχουσα έκδοση:"
2980
+
2981
+ #~ msgid "Previous version:"
2982
+ #~ msgstr "Προηγούμενη έκδοση:"
2983
+
2984
+ #~ msgid "Current database version:"
2985
+ #~ msgstr "Τρέχουσα έκδοση βάσης:"
2986
+
2987
+ #~ msgid "Previous database version:"
2988
+ #~ msgstr "Προηγούμενη έκδοση βάσης:"
2989
+
2990
+ #, fuzzy
2991
+ #~ msgid "Ad evaluation next run:"
2992
+ #~ msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
2993
+
2994
+ #~ msgid "Not scheduled!"
2995
+ #~ msgstr "Δεν έχει προγραμματιστεί!"
2996
+
2997
+ #~ msgid "Clean Trackerdata next run:"
2998
+ #~ msgstr "Επόμενη εκκαθάριση δεδομένων εντοπιστή:"
2999
+
3000
+ #~ msgid ""
3001
+ #~ "A comma separated list of email addresses. Maximum of 5 addresses. Keep "
3002
+ #~ "this list to a minimum!"
3003
+ #~ msgstr ""
3004
+ #~ "Ένας κατάλογος email διαχωρισμένων με κόματα. Μέγιστο όριο 5 διευθύνσεων. "
3005
+ #~ "Διατηρήστε τον στο ελάχιστο!"
3006
+
3007
+ #, fuzzy
3008
+ #~ msgid ""
3009
+ #~ "Messages are sent once every 24 hours when needed. If this field is empty "
3010
+ #~ "no email notifications will be send."
3011
+ #~ msgstr ""
3012
+ #~ "Μηνύματα στέλνονται κάθε 24 ώρες όταν είναι ανάγκη. Αν αυτό το πεδίο "
3013
+ #~ "είναι κενό η λειτουργία θα απενεργοποιηθεί."
3014
+
3015
+ #, fuzzy
3016
+ #~ msgid ""
3017
+ #~ "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
3018
+ #~ "This field may not be empty!"
3019
+ #~ msgstr ""
3020
+ #~ "Μέγιστο 2 διευθύνσεων. Διαχωρισμός με κόματα. Αυτό το πεδίο δεν μπορεί να "
3021
+ #~ "είναι κενό!"
3022
+
3023
  #, fuzzy
3024
  #~ msgid "Get more features with AdRotate Pro"
3025
  #~ msgstr "Για περισσότερες δυνατότητες αποκτήστε το AdRotate Pro."
3043
  #~ msgid "Email Notifications"
3044
  #~ msgstr "Ειδοποιήσεις Email"
3045
 
 
 
 
 
3046
  #~ msgid "active ad(s) expired."
3047
  #~ msgstr "ενεργή(ές) διαφήμιση(εις) έληξε."
3048
 
3132
  #~ msgid "Barely visible"
3133
  #~ msgstr "μόλις ορατό"
3134
 
 
 
 
3135
  #~ msgid "Normal coverage"
3136
  #~ msgstr "Κανονική κάλυψη"
3137
 
 
 
 
3138
  #~ msgid "Best visibility"
3139
  #~ msgstr "Καλύτερη ορατότητα"
3140
 
language/adrotate-en_US.mo CHANGED
Binary file
language/adrotate-en_US.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-30 14:27+0800\n"
6
- "PO-Revision-Date: 2016-05-30 14:27+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"
@@ -17,366 +17,366 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:844
21
  msgid "No files found"
22
  msgstr ""
23
 
24
- #: adrotate-functions.php:847
25
  msgid "Folder not found or not accessible"
26
  msgstr ""
27
 
28
- #: adrotate-functions.php:896
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:900
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:904
37
  msgid "Ad(s) deleted"
38
  msgstr ""
39
 
40
- #: adrotate-functions.php:908
41
  msgid "Group deleted"
42
  msgstr ""
43
 
44
- #: adrotate-functions.php:912
45
  msgid "Ad(s) statistics reset"
46
  msgstr ""
47
 
48
- #: adrotate-functions.php:916
49
  msgid "Ad(s) renewed"
50
  msgstr ""
51
 
52
- #: adrotate-functions.php:920
53
  msgid "Ad(s) deactivated"
54
  msgstr ""
55
 
56
- #: adrotate-functions.php:924
57
  msgid "Ad(s) activated"
58
  msgstr ""
59
 
60
- #: adrotate-functions.php:928
61
  msgid "Group including it's Ads deleted"
62
  msgstr ""
63
 
64
- #: adrotate-functions.php:932
65
  msgid "Export created"
66
  msgstr ""
67
 
68
- #: adrotate-functions.php:937
69
  msgid "Settings saved"
70
  msgstr ""
71
 
72
- #: adrotate-functions.php:941
73
  msgid "Database optimized"
74
  msgstr ""
75
 
76
- #: adrotate-functions.php:945
77
  msgid "Database repaired"
78
  msgstr ""
79
 
80
- #: adrotate-functions.php:949
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr ""
83
 
84
- #: adrotate-functions.php:953
85
  msgid "Empty database records removed"
86
  msgstr ""
87
 
88
- #: adrotate-functions.php:958
89
  msgid "Action prohibited"
90
  msgstr ""
91
 
92
- #: adrotate-functions.php:962
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:966
99
  msgid "No data found in selected time period"
100
  msgstr ""
101
 
102
- #: adrotate-functions.php:970
103
  msgid "Database can only be optimized or cleaned once every hour"
104
  msgstr ""
105
 
106
- #: adrotate-functions.php:974
107
  msgid "Form can not be (partially) empty!"
108
  msgstr ""
109
 
110
- #: adrotate-functions.php:978
111
  msgid "No ads found."
112
  msgstr ""
113
 
114
- #: adrotate-functions.php:982
115
  msgid "Unexpected error"
116
  msgstr ""
117
 
118
- #: adrotate-manage-publisher.php:678
119
  msgid "AdRotate Advertiser"
120
  msgstr ""
121
 
122
- #: adrotate-output.php:574
123
  msgid "Oh no! Something went wrong!"
124
  msgstr ""
125
 
126
- #: adrotate-output.php:575
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:576
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:577
139
  msgid "Contact support if the issue persists:"
140
  msgstr ""
141
 
142
- #: adrotate-output.php:592
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:594
149
  msgid ""
150
  "Error, Ad is not available at this time due to schedule/geolocation "
151
  "restrictions!"
152
  msgstr ""
153
 
154
- #: adrotate-output.php:601 adrotate-output.php:603
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:609
161
  msgid "Error, no Ad ID set! Check your syntax!"
162
  msgstr ""
163
 
164
- #: adrotate-output.php:615
165
  msgid "Error, no group ID set! Check your syntax!"
166
  msgstr ""
167
 
168
- #: adrotate-output.php:620
169
  msgid "Error, group does not exist! Check your syntax!"
170
  msgstr ""
171
 
172
- #: adrotate-output.php:626
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:626
179
  msgid "If this does not solve the issue please seek support at"
180
  msgstr ""
181
 
182
- #: adrotate-output.php:632
183
  msgid "An unknown error occured."
184
  msgstr ""
185
 
186
- #: adrotate-output.php:651 adrotate-output.php:654 adrotate-output.php:658
187
- #: adrotate-output.php:663 adrotate-output.php:666 adrotate-output.php:669
188
  msgid "Check adverts"
189
  msgstr ""
190
 
191
- #: adrotate-output.php:674
192
  msgid ""
193
  "You have enable caching support but W3 Total Cache is not active on your "
194
  "site!"
195
  msgstr ""
196
 
197
- #: adrotate-output.php:677
198
  msgid ""
199
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
200
  "not set."
201
  msgstr ""
202
 
203
- #: adrotate-output.php:682
204
  msgid "Your AdRotate Banner folder is not writable or does not exist."
205
  msgstr ""
206
 
207
- #: adrotate-output.php:722 dashboard/adrotatepro.php:99
208
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
209
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
210
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
211
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
212
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
213
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
214
- #: dashboard/settings/geotargeting.php:25
215
  msgid "Buy now"
216
  msgstr ""
217
 
218
- #: adrotate-output.php:723
219
  msgid ""
220
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
221
  "to the <strong>PRO</strong> version"
222
  msgstr ""
223
 
224
- #: adrotate-output.php:723
225
  #, php-format
226
  msgid ""
227
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
228
  msgstr ""
229
 
230
- #: adrotate-output.php:723
231
  msgid "Thank you for your purchase!"
232
  msgstr ""
233
 
234
- #: adrotate-output.php:784
235
  msgid ""
236
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
237
  "this menu. Check out the"
238
  msgstr ""
239
 
240
- #: adrotate-output.php:784
241
  msgid "manuals"
242
  msgstr ""
243
 
244
- #: adrotate-output.php:784 adrotate-output.php:851
245
  msgid "and"
246
  msgstr ""
247
 
248
- #: adrotate-output.php:784
249
  msgid "forums"
250
  msgstr ""
251
 
252
- #: adrotate-output.php:814
253
  msgid "Useful Links"
254
  msgstr ""
255
 
256
- #: adrotate-output.php:815
257
  msgid "Useful links to learn more about AdRotate"
258
  msgstr ""
259
 
260
- #: adrotate-output.php:817
261
  msgid "AdRotate website"
262
  msgstr ""
263
 
264
- #: adrotate-output.php:818
265
  msgid "Getting Started With AdRotate"
266
  msgstr ""
267
 
268
- #: adrotate-output.php:819
269
  msgid "AdRotate manuals"
270
  msgstr ""
271
 
272
- #: adrotate-output.php:820
273
  msgid "AdRotate Support Forum"
274
  msgstr ""
275
 
276
- #: adrotate-output.php:843
277
  msgid "Help AdRotate Grow"
278
  msgstr ""
279
 
280
- #: adrotate-output.php:844
281
  msgid "Follow Arnan on Facebook"
282
  msgstr ""
283
 
284
- #: adrotate-output.php:851
285
  msgid ""
286
  "A lot of users only think to review AdRotate when something goes wrong while "
287
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
288
  msgstr ""
289
 
290
- #: adrotate-output.php:851
291
  msgid "If you find AdRotate useful please leave your honest"
292
  msgstr ""
293
 
294
- #: adrotate-output.php:851
295
  msgid "rating"
296
  msgstr ""
297
 
298
- #: adrotate-output.php:851
299
  msgid "review"
300
  msgstr ""
301
 
302
- #: adrotate-output.php:851
303
  msgid "on WordPress.org to help AdRotate grow in a positive way"
304
  msgstr ""
305
 
306
- #: adrotate-output.php:884 dashboard/settings/notifications.php:44
307
- #: dashboard/settings/notifications.php:64
308
  msgid "Available in AdRotate Pro"
309
  msgstr ""
310
 
311
- #: adrotate-output.php:884
312
  msgid "More information..."
313
  msgstr ""
314
 
315
- #: adrotate-output.php:885
316
  msgid "This feature is available in AdRotate Pro"
317
  msgstr ""
318
 
319
- #: adrotate-output.php:885
320
  msgid "Learn more"
321
  msgstr ""
322
 
323
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
324
- #: dashboard/publisher/adverts-edit.php:241
325
  msgid "January"
326
  msgstr ""
327
 
328
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
329
- #: dashboard/publisher/adverts-edit.php:242
330
  msgid "February"
331
  msgstr ""
332
 
333
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
334
- #: dashboard/publisher/adverts-edit.php:243
335
  msgid "March"
336
  msgstr ""
337
 
338
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
339
- #: dashboard/publisher/adverts-edit.php:244
340
  msgid "April"
341
  msgstr ""
342
 
343
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
344
- #: dashboard/publisher/adverts-edit.php:245
345
  msgid "May"
346
  msgstr ""
347
 
348
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
349
- #: dashboard/publisher/adverts-edit.php:246
350
  msgid "June"
351
  msgstr ""
352
 
353
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
354
- #: dashboard/publisher/adverts-edit.php:247
355
  msgid "July"
356
  msgstr ""
357
 
358
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
359
- #: dashboard/publisher/adverts-edit.php:248
360
  msgid "August"
361
  msgstr ""
362
 
363
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
364
- #: dashboard/publisher/adverts-edit.php:249
365
  msgid "September"
366
  msgstr ""
367
 
368
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
369
- #: dashboard/publisher/adverts-edit.php:250
370
  msgid "October"
371
  msgstr ""
372
 
373
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
374
- #: dashboard/publisher/adverts-edit.php:251
375
  msgid "November"
376
  msgstr ""
377
 
378
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
379
- #: dashboard/publisher/adverts-edit.php:252
380
  msgid "December"
381
  msgstr ""
382
 
@@ -436,262 +436,257 @@ msgstr ""
436
  msgid "Fill in the ID of the type you want to display!"
437
  msgstr ""
438
 
439
- #: adrotate.php:105
440
  msgid "General Info"
441
  msgstr ""
442
 
443
- #: adrotate.php:106
444
  msgid "AdRotate Pro"
445
  msgstr ""
446
 
447
- #: adrotate.php:107
448
  msgid "Manage Adverts"
449
  msgstr ""
450
 
451
- #: adrotate.php:108 dashboard/publisher/groups-main.php:12
452
  msgid "Manage Groups"
453
  msgstr ""
454
 
455
- #: adrotate.php:109 adrotate.php:387
456
  msgid "Manage Schedules"
457
  msgstr ""
458
 
459
- #: adrotate.php:110
460
  msgid "Manage Media"
461
  msgstr ""
462
 
463
- #: adrotate.php:111
464
  msgid "Settings"
465
  msgstr ""
466
 
467
- #: adrotate.php:134
468
  msgid "AdRotate Info"
469
  msgstr ""
470
 
471
- #: adrotate.php:155
472
  msgid "AdRotate Professional"
473
  msgstr ""
474
 
475
- #: adrotate.php:198
476
  msgid "Advert Management"
477
  msgstr ""
478
 
479
- #: adrotate.php:256 adrotate.php:326 adrotate.php:382
480
  msgid "Manage"
481
  msgstr ""
482
 
483
- #: adrotate.php:257 adrotate.php:327 adrotate.php:383
484
  msgid "Add New"
485
  msgstr ""
486
 
487
- #: adrotate.php:320
488
  msgid "Group Management"
489
  msgstr ""
490
 
491
- #: adrotate.php:329
492
  msgid "Report"
493
  msgstr ""
494
 
495
- #: adrotate.php:378
496
  msgid "Schedule Management available in AdRotate Pro"
497
  msgstr ""
498
 
499
- #: adrotate.php:388
500
  msgid ""
501
  "Schedule management and multiple schedules per advert is available in "
502
  "AdRotate Pro."
503
  msgstr ""
504
 
505
- #: adrotate.php:388 adrotate.php:475 dashboard/publisher/adverts-edit.php:188
506
  #: dashboard/publisher/adverts-main.php:114
507
- #: dashboard/publisher/groups-edit.php:75
508
  #: dashboard/publisher/groups-main.php:89
509
  msgid "More information"
510
  msgstr ""
511
 
512
- #: adrotate.php:395 dashboard/publisher/adverts-disabled.php:20
513
  #: dashboard/publisher/adverts-error.php:19
514
  #: dashboard/publisher/adverts-main.php:20
515
  #: dashboard/publisher/groups-main.php:20
516
  msgid "Bulk Actions"
517
  msgstr ""
518
 
519
- #: adrotate.php:396 dashboard/publisher/adverts-disabled.php:25
520
  #: dashboard/publisher/adverts-error.php:29
521
  #: dashboard/publisher/adverts-main.php:30
522
  #: dashboard/publisher/groups-main.php:24
523
  msgid "Go"
524
  msgstr ""
525
 
526
- #: adrotate.php:405 dashboard/publisher/adverts-disabled.php:35
527
  #: dashboard/publisher/adverts-error.php:39
528
  #: dashboard/publisher/adverts-main.php:39
529
- #: dashboard/publisher/groups-edit.php:51
530
  #: dashboard/publisher/groups-main.php:32
531
  msgid "ID"
532
  msgstr ""
533
 
534
- #: adrotate.php:406
535
  msgid "Start"
536
  msgstr ""
537
 
538
- #: adrotate.php:406
539
  msgid "End"
540
  msgstr ""
541
 
542
- #: adrotate.php:407
543
  msgid "Ads"
544
  msgstr ""
545
 
546
- #: adrotate.php:409
547
  msgid "Max Impressions"
548
  msgstr ""
549
 
550
- #: adrotate.php:410
551
  msgid "Max Clicks"
552
  msgstr ""
553
 
554
- #: adrotate.php:440
555
  msgid "No schedules created yet!"
556
  msgstr ""
557
 
558
- #: adrotate.php:445
559
  msgid "Easily manage your schedules from here with AdRotate Pro."
560
  msgstr ""
561
 
562
- #: adrotate.php:445 adrotate.php:511
563
  msgid "Upgrade today!"
564
  msgstr ""
565
 
566
- #: adrotate.php:448 dashboard/publisher/adverts-error.php:72
567
- #: dashboard/publisher/groups-edit.php:387
568
  msgid "Expires soon."
569
  msgstr ""
570
 
571
- #: adrotate.php:449 dashboard/publisher/adverts-error.php:73
572
- #: dashboard/publisher/groups-edit.php:388
573
  msgid "Has expired."
574
  msgstr ""
575
 
576
- #: adrotate.php:473
577
  msgid "Media Management available in AdRotate Pro"
578
  msgstr ""
579
 
580
- #: adrotate.php:475
581
  msgid "Upload images to the AdRotate Pro banners folder from here."
582
  msgstr ""
583
 
584
- #: adrotate.php:475
585
  msgid ""
586
  "This is useful if you use responsive adverts with multiple images or have "
587
  "HTML5 adverts containing multiple files."
588
  msgstr ""
589
 
590
- #: adrotate.php:475
591
  msgid "Media uploading and management is available in AdRotate Pro."
592
  msgstr ""
593
 
594
- #: adrotate.php:477
595
  msgid "Upload new file"
596
  msgstr ""
597
 
598
- #: adrotate.php:478
599
  msgid "Accepted files:"
600
  msgstr ""
601
 
602
- #: adrotate.php:478
603
  msgid "For HTML5 ads you can also upload html and javascript files."
604
  msgstr ""
605
 
606
- #: adrotate.php:478
607
  msgid "Maximum size is 512Kb."
608
  msgstr ""
609
 
610
- #: adrotate.php:478
611
  msgid "Important:"
612
  msgstr ""
613
 
614
- #: adrotate.php:478
615
  msgid ""
616
  "Make sure your file has no spaces or special characters in the name. Replace "
617
  "spaces with a - or _."
618
  msgstr ""
619
 
620
- #: adrotate.php:478
621
  msgid ""
622
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
623
  "file so it knows about the changed name. For example for the javascript file."
624
  msgstr ""
625
 
626
- #: adrotate.php:481
627
  msgid ""
628
  "For responsive adverts make sure the filename is in the following format; "
629
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
630
  msgstr ""
631
 
632
- #: adrotate.php:482 dashboard/publisher/adverts-edit.php:311
633
  msgid ""
634
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
635
  "filename instead of \".full\" for the various viewports."
636
  msgstr ""
637
 
638
- #: adrotate.php:483 dashboard/publisher/groups-edit.php:312
639
- #: dashboard/publisher/groups-edit.php:320
640
  msgid "Example:"
641
  msgstr ""
642
 
643
- #: adrotate.php:483
644
  msgid ""
645
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
646
  "for different viewports."
647
  msgstr ""
648
 
649
- #: adrotate.php:487
650
  msgid "Upload file"
651
  msgstr ""
652
 
653
- #: adrotate.php:487
654
  msgid "Click only once per file!"
655
  msgstr ""
656
 
657
- #: adrotate.php:490
658
  msgid "Available files in"
659
  msgstr ""
660
 
661
- #: adrotate.php:495 dashboard/publisher/groups-edit.php:55
662
  #: dashboard/publisher/groups-main.php:33
663
  msgid "Name"
664
  msgstr ""
665
 
666
- #: adrotate.php:496
667
  msgid "Actions"
668
  msgstr ""
669
 
670
- #: adrotate.php:501 adrotate.php:502 adrotate.php:503 adrotate.php:504
671
- #: adrotate.php:505 adrotate.php:506 adrotate.php:507
672
  #: dashboard/publisher/adverts-disabled.php:22
673
  #: dashboard/publisher/adverts-error.php:21
674
  #: dashboard/publisher/adverts-main.php:22
675
  msgid "Delete"
676
  msgstr ""
677
 
678
- #: adrotate.php:511
679
  msgid ""
680
  "Make sure the banner images are not in use by adverts when you delete them!"
681
  msgstr ""
682
 
683
- #: adrotate.php:511
684
  msgid "Manage your banner folder from here with AdRotate Pro."
685
  msgstr ""
686
 
687
- #: adrotate.php:540
688
  msgid "AdRotate Settings"
689
  msgstr ""
690
 
691
- #: adrotate.php:612
692
- msgid "Update Options"
693
- msgstr ""
694
-
695
  #: dashboard/adrotatepro.php:20
696
  msgid "Satisfy your advertisers"
697
  msgstr ""
@@ -878,7 +873,7 @@ msgstr ""
878
  msgid "Adverts that need you"
879
  msgstr ""
880
 
881
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
882
  #: dashboard/publisher/groups-main.php:34
883
  msgid "Adverts"
884
  msgstr ""
@@ -921,7 +916,7 @@ msgid "Disabled Adverts"
921
  msgstr ""
922
 
923
  #: dashboard/publisher/adverts-disabled.php:21
924
- #: dashboard/publisher/adverts-edit.php:176
925
  msgid "Activate"
926
  msgstr ""
927
 
@@ -938,7 +933,7 @@ msgid "Start / End"
938
  msgstr ""
939
 
940
  #: dashboard/publisher/adverts-disabled.php:37
941
- #: dashboard/publisher/adverts-edit.php:116
942
  #: dashboard/publisher/adverts-error.php:41
943
  #: dashboard/publisher/adverts-main.php:41
944
  msgid "Title"
@@ -946,7 +941,7 @@ msgstr ""
946
 
947
  #: dashboard/publisher/adverts-disabled.php:38
948
  #: dashboard/publisher/adverts-main.php:44
949
- #: dashboard/publisher/groups-edit.php:333
950
  #: dashboard/publisher/groups-main.php:36
951
  msgid "Shown"
952
  msgstr ""
@@ -955,7 +950,7 @@ msgstr ""
955
  #: dashboard/publisher/adverts-main.php:46
956
  #: dashboard/publisher/adverts-report.php:36
957
  #: dashboard/publisher/adverts-report.php:57
958
- #: dashboard/publisher/groups-edit.php:334
959
  #: dashboard/publisher/groups-main.php:38
960
  #: dashboard/publisher/groups-report.php:37
961
  #: dashboard/publisher/groups-report.php:58
@@ -996,460 +991,457 @@ msgid "The AdCode cannot be empty!"
996
  msgstr ""
997
 
998
  #: dashboard/publisher/adverts-edit.php:51
999
- msgid "You did not use %image% in your AdCode but did select a file to use!"
 
 
1000
  msgstr ""
1001
 
1002
  #: dashboard/publisher/adverts-edit.php:54
1003
- msgid "You did use %image% in your AdCode but did not select a file to use!"
1004
- msgstr ""
1005
-
1006
- #: dashboard/publisher/adverts-edit.php:57
1007
  msgid ""
1008
- "You did not use %image% in your AdCode. The responsive checkbox will be "
1009
- "ineffective."
1010
  msgstr ""
1011
 
1012
- #: dashboard/publisher/adverts-edit.php:60
1013
  msgid ""
1014
  "There is a problem saving the image. Please reset your image and re-save the "
1015
  "ad!"
1016
  msgstr ""
1017
 
1018
- #: dashboard/publisher/adverts-edit.php:63
1019
- msgid "Responsive is enabled but your banner image has the wrong name."
1020
- msgstr ""
1021
-
1022
- #: dashboard/publisher/adverts-edit.php:66
1023
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1024
  msgstr ""
1025
 
1026
- #: dashboard/publisher/adverts-edit.php:71
1027
  msgid ""
1028
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1029
  "the ad!"
1030
  msgstr ""
1031
 
1032
- #: dashboard/publisher/adverts-edit.php:74
1033
  msgid "This ad is expired and currently not shown on your website!"
1034
  msgstr ""
1035
 
1036
- #: dashboard/publisher/adverts-edit.php:77
1037
  msgid "The ad will expire in less than 2 days!"
1038
  msgstr ""
1039
 
1040
- #: dashboard/publisher/adverts-edit.php:80
1041
  msgid "This ad will expire in less than 7 days!"
1042
  msgstr ""
1043
 
1044
- #: dashboard/publisher/adverts-edit.php:83
1045
  msgid "This ad has been disabled and does not rotate on your site!"
1046
  msgstr ""
1047
 
1048
- #: dashboard/publisher/adverts-edit.php:108
1049
  msgid "New Advert"
1050
  msgstr ""
1051
 
1052
- #: dashboard/publisher/adverts-edit.php:110
1053
  msgid "Edit Advert"
1054
  msgstr ""
1055
 
1056
- #: dashboard/publisher/adverts-edit.php:122
1057
  msgid "AdCode"
1058
  msgstr ""
1059
 
1060
- #: dashboard/publisher/adverts-edit.php:127
1061
  msgid "Basic Examples:"
1062
  msgstr ""
1063
 
1064
- #: dashboard/publisher/adverts-edit.php:134
1065
  msgid "Useful tags"
1066
  msgstr ""
1067
 
1068
- #: dashboard/publisher/adverts-edit.php:136
1069
  msgid "Insert the advert ID Number."
1070
  msgstr ""
1071
 
1072
- #: dashboard/publisher/adverts-edit.php:136
1073
- msgid "Required when selecting a image below."
1074
  msgstr ""
1075
 
1076
- #: dashboard/publisher/adverts-edit.php:136
1077
  msgid "Insert the advert name."
1078
  msgstr ""
1079
 
1080
- #: dashboard/publisher/adverts-edit.php:136
1081
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1082
  msgstr ""
1083
 
1084
- #: dashboard/publisher/adverts-edit.php:136
1085
  msgid "Add inside the <a> tag to open advert in a new window."
1086
  msgstr ""
1087
 
1088
- #: dashboard/publisher/adverts-edit.php:136
1089
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1090
  msgstr ""
1091
 
1092
- #: dashboard/publisher/adverts-edit.php:136
1093
  msgid ""
1094
  "Place the cursor in your AdCode where you want to add any of these tags and "
1095
  "click to add it."
1096
  msgstr ""
1097
 
1098
- #: dashboard/publisher/adverts-edit.php:141
1099
  msgid "Preview"
1100
  msgstr ""
1101
 
1102
- #: dashboard/publisher/adverts-edit.php:144
1103
  msgid ""
1104
  "Note: While this preview is an accurate one, it might look different then it "
1105
  "does on the website."
1106
  msgstr ""
1107
 
1108
- #: dashboard/publisher/adverts-edit.php:145
1109
  msgid ""
1110
  "This is because of CSS differences. Your themes CSS file is not active here!"
1111
  msgstr ""
1112
 
1113
- #: dashboard/publisher/adverts-edit.php:150
1114
  msgid "Banner asset"
1115
  msgstr ""
1116
 
1117
- #: dashboard/publisher/adverts-edit.php:153
1118
  msgid "WordPress media:"
1119
  msgstr ""
1120
 
1121
- #: dashboard/publisher/adverts-edit.php:153
1122
  msgid "Select Banner"
1123
  msgstr ""
1124
 
1125
- #: dashboard/publisher/adverts-edit.php:155
1126
  msgid "- OR -"
1127
  msgstr ""
1128
 
1129
- #: dashboard/publisher/adverts-edit.php:157
1130
  msgid "Banner folder:"
1131
  msgstr ""
1132
 
1133
- #: dashboard/publisher/adverts-edit.php:158
1134
  msgid "No image selected"
1135
  msgstr ""
1136
 
1137
- #: dashboard/publisher/adverts-edit.php:162
1138
- msgid "Use %image% in the adcode instead of the file path."
1139
  msgstr ""
1140
 
1141
- #: dashboard/publisher/adverts-edit.php:162
1142
  msgid ""
1143
  "Use either the text field or the dropdown. If the textfield has content that "
1144
  "field has priority."
1145
  msgstr ""
1146
 
1147
- #: dashboard/publisher/adverts-edit.php:167
1148
- #: dashboard/settings/statistics.php:12
1149
  msgid "Statistics"
1150
  msgstr ""
1151
 
1152
- #: dashboard/publisher/adverts-edit.php:169
1153
  msgid "Enable click and impression tracking for this advert."
1154
  msgstr ""
1155
 
1156
- #: dashboard/publisher/adverts-edit.php:170
1157
  msgid ""
1158
  "Note: Clicktracking does not work for Javascript adverts such as those "
1159
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1160
  "always supported."
1161
  msgstr ""
1162
 
1163
- #: dashboard/publisher/adverts-edit.php:180
1164
  msgid "Yes, this ad will be used"
1165
  msgstr ""
1166
 
1167
- #: dashboard/publisher/adverts-edit.php:181
1168
  msgid "No, do not show this ad anywhere"
1169
  msgstr ""
1170
 
1171
- #: dashboard/publisher/adverts-edit.php:188
1172
  #: dashboard/publisher/adverts-main.php:114
1173
- #: dashboard/publisher/groups-edit.php:75
1174
  #: dashboard/publisher/groups-main.php:89
1175
  msgid "Get more features with AdRotate Pro."
1176
  msgstr ""
1177
 
1178
- #: dashboard/publisher/adverts-edit.php:191
1179
- #: dashboard/publisher/adverts-edit.php:291
1180
- #: dashboard/publisher/adverts-edit.php:386
1181
- #: dashboard/publisher/adverts-edit.php:427
1182
  msgid "Save Advert"
1183
  msgstr ""
1184
 
1185
- #: dashboard/publisher/adverts-edit.php:192
1186
- #: dashboard/publisher/adverts-edit.php:292
1187
- #: dashboard/publisher/adverts-edit.php:387
1188
- #: dashboard/publisher/adverts-edit.php:428
1189
- #: dashboard/publisher/groups-edit.php:154
1190
- #: dashboard/publisher/groups-edit.php:301
1191
- #: dashboard/publisher/groups-edit.php:393
1192
  msgid "Cancel"
1193
  msgstr ""
1194
 
1195
- #: dashboard/publisher/adverts-edit.php:195
1196
- #: dashboard/publisher/adverts-edit.php:369
1197
- #: dashboard/publisher/groups-edit.php:136
1198
- #: dashboard/publisher/groups-edit.php:283
1199
  msgid "Usage"
1200
  msgstr ""
1201
 
1202
- #: dashboard/publisher/adverts-edit.php:199
1203
- #: dashboard/publisher/adverts-edit.php:373
1204
- #: dashboard/publisher/groups-edit.php:140
1205
- #: dashboard/publisher/groups-edit.php:287
1206
  msgid "Widget"
1207
  msgstr ""
1208
 
1209
- #: dashboard/publisher/adverts-edit.php:200
1210
- #: dashboard/publisher/adverts-edit.php:374
1211
  msgid ""
1212
- "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1213
- "and enter ID"
1214
  msgstr ""
1215
 
1216
- #: dashboard/publisher/adverts-edit.php:203
1217
- #: dashboard/publisher/adverts-edit.php:377
1218
- #: dashboard/publisher/groups-edit.php:144
1219
- #: dashboard/publisher/groups-edit.php:291
1220
  msgid "In a post or page"
1221
  msgstr ""
1222
 
1223
- #: dashboard/publisher/adverts-edit.php:205
1224
- #: dashboard/publisher/adverts-edit.php:379
1225
- #: dashboard/publisher/groups-edit.php:146
1226
- #: dashboard/publisher/groups-edit.php:293
1227
  msgid "Directly in a theme"
1228
  msgstr ""
1229
 
1230
- #: dashboard/publisher/adverts-edit.php:211
1231
  msgid "Schedule your advert"
1232
  msgstr ""
1233
 
1234
- #: dashboard/publisher/adverts-edit.php:215
1235
  msgid "Start date (day/month/year)"
1236
  msgstr ""
1237
 
1238
- #: dashboard/publisher/adverts-edit.php:236
1239
  msgid "End date (day/month/year)"
1240
  msgstr ""
1241
 
1242
- #: dashboard/publisher/adverts-edit.php:259
1243
  msgid "Start time (hh:mm)"
1244
  msgstr ""
1245
 
1246
- #: dashboard/publisher/adverts-edit.php:266
1247
  msgid "End time (hh:mm)"
1248
  msgstr ""
1249
 
1250
- #: dashboard/publisher/adverts-edit.php:276
1251
  msgid "Maximum Clicks"
1252
  msgstr ""
1253
 
1254
- #: dashboard/publisher/adverts-edit.php:277
1255
- #: dashboard/publisher/adverts-edit.php:279
1256
  msgid "Leave empty or 0 to skip this."
1257
  msgstr ""
1258
 
1259
- #: dashboard/publisher/adverts-edit.php:278
1260
  msgid "Maximum Impressions"
1261
  msgstr ""
1262
 
1263
- #: dashboard/publisher/adverts-edit.php:283
1264
  msgid "Important"
1265
  msgstr ""
1266
 
1267
- #: dashboard/publisher/adverts-edit.php:284
1268
  msgid ""
1269
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1270
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1271
  "14:00 hours. 6AM is 6:00 hours."
1272
  msgstr ""
1273
 
1274
- #: dashboard/publisher/adverts-edit.php:288
1275
  msgid ""
1276
  "Create multiple and more advanced schedules for each advert with AdRotate "
1277
  "Pro."
1278
  msgstr ""
1279
 
1280
- #: dashboard/publisher/adverts-edit.php:288
1281
- #: dashboard/publisher/adverts-edit.php:323
1282
- #: dashboard/publisher/adverts-edit.php:367
1283
- #: dashboard/publisher/groups-edit.php:200
1284
  msgid "Upgrade today"
1285
  msgstr ""
1286
 
1287
- #: dashboard/publisher/adverts-edit.php:295
1288
- #: dashboard/publisher/groups-edit.php:157
1289
  msgid "Advanced"
1290
  msgstr ""
1291
 
1292
- #: dashboard/publisher/adverts-edit.php:296
1293
  msgid "Everything below is optional."
1294
  msgstr ""
1295
 
1296
- #: dashboard/publisher/adverts-edit.php:300
1297
- msgid "Mobile"
1298
  msgstr ""
1299
 
1300
- #: dashboard/publisher/adverts-edit.php:302
1301
- msgid "Show on;"
 
 
1302
  msgstr ""
1303
 
1304
- #: dashboard/publisher/adverts-edit.php:302
1305
- msgid "Computers"
1306
  msgstr ""
1307
 
1308
- #: dashboard/publisher/adverts-edit.php:302
1309
- msgid "Smartphones"
1310
  msgstr ""
1311
 
1312
- #: dashboard/publisher/adverts-edit.php:302
1313
- msgid "Tablets."
1314
  msgstr ""
1315
 
1316
- #: dashboard/publisher/adverts-edit.php:303
1317
- msgid "Also enable mobile support in the group this advert goes in."
 
 
 
 
 
1318
  msgstr ""
1319
 
1320
- #: dashboard/publisher/adverts-edit.php:307
1321
- msgid "Responsive"
1322
  msgstr ""
1323
 
1324
- #: dashboard/publisher/adverts-edit.php:309
1325
- msgid "Enable responsive support for this advert."
1326
  msgstr ""
1327
 
1328
- #: dashboard/publisher/adverts-edit.php:310
1329
- msgid ""
1330
- "Upload your images to the banner folder and make sure the filename is in the "
1331
- "following format; \"imagename.full.ext\"."
1332
  msgstr ""
1333
 
1334
- #: dashboard/publisher/adverts-edit.php:312
1335
- #: dashboard/publisher/adverts-report.php:64
1336
- #: dashboard/publisher/groups-report.php:65
1337
- msgid "Note:"
1338
  msgstr ""
1339
 
1340
- #: dashboard/publisher/adverts-edit.php:312
1341
  msgid ""
1342
- "This feature will not be developed any further. Consider switching to the "
1343
- "Mobile feature in AdRotate Pro as seen above!"
1344
  msgstr ""
1345
 
1346
- #: dashboard/publisher/adverts-edit.php:316
1347
- #: dashboard/publisher/groups-edit.php:194
1348
  msgid "Sortorder"
1349
  msgstr ""
1350
 
1351
- #: dashboard/publisher/adverts-edit.php:318
1352
- #: dashboard/publisher/groups-edit.php:196
1353
  msgid "For administrative purposes set a sortorder."
1354
  msgstr ""
1355
 
1356
- #: dashboard/publisher/adverts-edit.php:318
1357
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1358
  msgstr ""
1359
 
1360
- #: dashboard/publisher/adverts-edit.php:323
1361
  msgid ""
1362
  "With AdRotate Pro you can easily select which devices the advert should show "
1363
  "on!"
1364
  msgstr ""
1365
 
1366
- #: dashboard/publisher/adverts-edit.php:325
1367
  msgid "Geo Targeting in AdRotate Pro"
1368
  msgstr ""
1369
 
1370
- #: dashboard/publisher/adverts-edit.php:326
1371
  msgid ""
1372
  "Assign the advert to a group and enable that group to use Geo Targeting."
1373
  msgstr ""
1374
 
1375
- #: dashboard/publisher/adverts-edit.php:330
1376
  msgid "Cities/States"
1377
  msgstr ""
1378
 
1379
- #: dashboard/publisher/adverts-edit.php:333
1380
  msgid ""
1381
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1382
  "states ISO codes are supported)"
1383
  msgstr ""
1384
 
1385
- #: dashboard/publisher/adverts-edit.php:333
1386
  msgid ""
1387
  "AdRotate does not check the validity of names so make sure you spell them "
1388
  "correctly!"
1389
  msgstr ""
1390
 
1391
- #: dashboard/publisher/adverts-edit.php:337
1392
  msgid "Countries"
1393
  msgstr ""
1394
 
1395
- #: dashboard/publisher/adverts-edit.php:362
1396
  msgid "Select the countries you want the adverts to show in."
1397
  msgstr ""
1398
 
1399
- #: dashboard/publisher/adverts-edit.php:362
1400
  msgid "Cities take priority and will be filtered first."
1401
  msgstr ""
1402
 
1403
- #: dashboard/publisher/adverts-edit.php:367
1404
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1405
  msgstr ""
1406
 
1407
- #: dashboard/publisher/adverts-edit.php:391
1408
  msgid "Select Groups"
1409
  msgstr ""
1410
 
1411
- #: dashboard/publisher/adverts-edit.php:396
1412
  msgid "ID - Name"
1413
  msgstr ""
1414
 
1415
- #: dashboard/publisher/adverts-edit.php:406
1416
  #: dashboard/publisher/groups-main.php:60
1417
- #: dashboard/settings/geotargeting.php:36
1418
  msgid "Default"
1419
  msgstr ""
1420
 
1421
- #: dashboard/publisher/adverts-edit.php:407
1422
  #: dashboard/publisher/groups-main.php:61
1423
  msgid "Dynamic"
1424
  msgstr ""
1425
 
1426
- #: dashboard/publisher/adverts-edit.php:407
1427
  #: dashboard/publisher/groups-main.php:61
1428
  msgid "second rotation"
1429
  msgstr ""
1430
 
1431
- #: dashboard/publisher/adverts-edit.php:408
1432
  #: dashboard/publisher/groups-main.php:62
1433
  msgid "Block"
1434
  msgstr ""
1435
 
1436
- #: dashboard/publisher/adverts-edit.php:408
1437
  #: dashboard/publisher/groups-main.php:62
1438
  msgid "grid"
1439
  msgstr ""
1440
 
1441
- #: dashboard/publisher/adverts-edit.php:409
1442
- #: dashboard/publisher/groups-edit.php:202
1443
  #: dashboard/publisher/groups-main.php:63
1444
  msgid "Post Injection"
1445
  msgstr ""
1446
 
1447
- #: dashboard/publisher/adverts-edit.php:410
1448
  msgid "Geolocation"
1449
  msgstr ""
1450
 
1451
- #: dashboard/publisher/adverts-edit.php:416
1452
- #: dashboard/publisher/groups-edit.php:61
1453
  #: dashboard/publisher/groups-main.php:70
1454
  msgid "Mode"
1455
  msgstr ""
@@ -1489,7 +1481,7 @@ msgid "For 7 days"
1489
  msgstr ""
1490
 
1491
  #: dashboard/publisher/adverts-error.php:71
1492
- #: dashboard/publisher/groups-edit.php:386
1493
  msgid "Configuration errors."
1494
  msgstr ""
1495
 
@@ -1501,11 +1493,6 @@ msgstr ""
1501
  msgid "Export to XML"
1502
  msgstr ""
1503
 
1504
- #: dashboard/publisher/adverts-main.php:42
1505
- #: dashboard/publisher/groups-edit.php:336
1506
- msgid "Weight"
1507
- msgstr ""
1508
-
1509
  #: dashboard/publisher/adverts-main.php:45
1510
  #: dashboard/publisher/adverts-main.php:47
1511
  #: dashboard/publisher/groups-main.php:37
@@ -1543,6 +1530,13 @@ msgstr ""
1543
  msgid "Monthly overview of clicks and impressions"
1544
  msgstr ""
1545
 
 
 
 
 
 
 
 
1546
  #: dashboard/publisher/adverts-report.php:64
1547
  #: dashboard/publisher/groups-report.php:65
1548
  msgid ""
@@ -1558,306 +1552,306 @@ msgstr ""
1558
  msgid "Edit Group"
1559
  msgstr ""
1560
 
1561
- #: dashboard/publisher/groups-edit.php:64
1562
  msgid "Default - Show one ad at a time"
1563
  msgstr ""
1564
 
1565
- #: dashboard/publisher/groups-edit.php:65
1566
  msgid "Dynamic Mode - Show a different ad every few seconds"
1567
  msgstr ""
1568
 
1569
- #: dashboard/publisher/groups-edit.php:66
1570
  msgid "Block Mode - Show a block of adverts"
1571
  msgstr ""
1572
 
1573
- #: dashboard/publisher/groups-edit.php:70
1574
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1575
  msgstr ""
1576
 
1577
- #: dashboard/publisher/groups-edit.php:77
1578
- #: dashboard/publisher/groups-edit.php:104
1579
  msgid "Dynamic and Block Mode"
1580
  msgstr ""
1581
 
1582
- #: dashboard/publisher/groups-edit.php:78
1583
  msgid "Only required if your group is in Dynamic or Block mode."
1584
  msgstr ""
1585
 
1586
- #: dashboard/publisher/groups-edit.php:82
1587
  msgid "Block size"
1588
  msgstr ""
1589
 
1590
- #: dashboard/publisher/groups-edit.php:88
1591
  msgid "rows"
1592
  msgstr ""
1593
 
1594
- #: dashboard/publisher/groups-edit.php:92
1595
  msgid "columns"
1596
  msgstr ""
1597
 
1598
- #: dashboard/publisher/groups-edit.php:95
1599
  msgid "Block Mode"
1600
  msgstr ""
1601
 
1602
- #: dashboard/publisher/groups-edit.php:95
1603
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1604
  msgstr ""
1605
 
1606
- #: dashboard/publisher/groups-edit.php:99
1607
  msgid "Advert size"
1608
  msgstr ""
1609
 
1610
- #: dashboard/publisher/groups-edit.php:101
1611
  msgid "pixel(s) wide"
1612
  msgstr ""
1613
 
1614
- #: dashboard/publisher/groups-edit.php:101
1615
  msgid "pixel(s) high."
1616
  msgstr ""
1617
 
1618
- #: dashboard/publisher/groups-edit.php:104
1619
  msgid ""
1620
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1621
  "recommended). Default: 125/125."
1622
  msgstr ""
1623
 
1624
- #: dashboard/publisher/groups-edit.php:108
1625
  msgid "Automated refresh"
1626
  msgstr ""
1627
 
1628
- #: dashboard/publisher/groups-edit.php:127
1629
  msgid "seconds."
1630
  msgstr ""
1631
 
1632
- #: dashboard/publisher/groups-edit.php:130
1633
  msgid "Dynamic Mode"
1634
  msgstr ""
1635
 
1636
- #: dashboard/publisher/groups-edit.php:130
1637
  msgid ""
1638
  "Load a new advert in this interval without reloading the page. Default: 6."
1639
  msgstr ""
1640
 
1641
- #: dashboard/publisher/groups-edit.php:141
1642
- #: dashboard/publisher/groups-edit.php:288
1643
  msgid ""
1644
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1645
  "Adverts\" and enter ID"
1646
  msgstr ""
1647
 
1648
- #: dashboard/publisher/groups-edit.php:153
1649
- #: dashboard/publisher/groups-edit.php:300
1650
- #: dashboard/publisher/groups-edit.php:392
1651
  msgid "Save Group"
1652
  msgstr ""
1653
 
1654
- #: dashboard/publisher/groups-edit.php:161
1655
  msgid "Advert Margin"
1656
  msgstr ""
1657
 
1658
- #: dashboard/publisher/groups-edit.php:163
1659
  msgid "pixel(s)"
1660
  msgstr ""
1661
 
1662
- #: dashboard/publisher/groups-edit.php:166
1663
  msgid "A transparent area outside the advert in pixels. Default: 0."
1664
  msgstr ""
1665
 
1666
- #: dashboard/publisher/groups-edit.php:166
1667
  msgid "Set to 0 to disable."
1668
  msgstr ""
1669
 
1670
- #: dashboard/publisher/groups-edit.php:166
1671
  msgid "Margins are automatically disabled for blocks where required."
1672
  msgstr ""
1673
 
1674
- #: dashboard/publisher/groups-edit.php:170
1675
  msgid "Align the group"
1676
  msgstr ""
1677
 
1678
- #: dashboard/publisher/groups-edit.php:173
1679
  msgid "None (Default)"
1680
  msgstr ""
1681
 
1682
- #: dashboard/publisher/groups-edit.php:174
1683
  msgid "Left"
1684
  msgstr ""
1685
 
1686
- #: dashboard/publisher/groups-edit.php:175
1687
  msgid "Right"
1688
  msgstr ""
1689
 
1690
- #: dashboard/publisher/groups-edit.php:176
1691
  msgid "Center"
1692
  msgstr ""
1693
 
1694
- #: dashboard/publisher/groups-edit.php:180
1695
  msgid ""
1696
  "Align the group in your post or page. Using 'center' may affect your margin "
1697
  "setting. Not every theme supports this feature."
1698
  msgstr ""
1699
 
1700
- #: dashboard/publisher/groups-edit.php:184
1701
- #: dashboard/settings/advertisers.php:28
1702
  msgid "Geo Targeting"
1703
  msgstr ""
1704
 
1705
- #: dashboard/publisher/groups-edit.php:185
1706
  msgid "Enable Geo Targeting for this group."
1707
  msgstr ""
1708
 
1709
- #: dashboard/publisher/groups-edit.php:186
1710
  msgid "Do not forget to tell the adverts for which areas they should show."
1711
  msgstr ""
1712
 
1713
- #: dashboard/publisher/groups-edit.php:189
1714
  msgid "Mobile support"
1715
  msgstr ""
1716
 
1717
- #: dashboard/publisher/groups-edit.php:190
1718
  msgid "Enable mobile support for this group."
1719
  msgstr ""
1720
 
1721
- #: dashboard/publisher/groups-edit.php:191
1722
  msgid "Do not forget to put at least one mobile advert in this group."
1723
  msgstr ""
1724
 
1725
- #: dashboard/publisher/groups-edit.php:196
1726
  msgid "Leave empty or 0 to skip this. Will default to group id."
1727
  msgstr ""
1728
 
1729
- #: dashboard/publisher/groups-edit.php:200
1730
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1731
  msgstr ""
1732
 
1733
- #: dashboard/publisher/groups-edit.php:205
1734
  msgid "In categories?"
1735
  msgstr ""
1736
 
1737
- #: dashboard/publisher/groups-edit.php:209
1738
- #: dashboard/publisher/groups-edit.php:247
1739
- #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1740
  msgid "Disabled"
1741
  msgstr ""
1742
 
1743
- #: dashboard/publisher/groups-edit.php:210
1744
- #: dashboard/publisher/groups-edit.php:248
1745
  msgid "Before content"
1746
  msgstr ""
1747
 
1748
- #: dashboard/publisher/groups-edit.php:211
1749
- #: dashboard/publisher/groups-edit.php:249
1750
  msgid "After content"
1751
  msgstr ""
1752
 
1753
- #: dashboard/publisher/groups-edit.php:212
1754
- #: dashboard/publisher/groups-edit.php:250
1755
  msgid "Before and after content"
1756
  msgstr ""
1757
 
1758
- #: dashboard/publisher/groups-edit.php:213
1759
- #: dashboard/publisher/groups-edit.php:251
1760
  msgid "Inside the content..."
1761
  msgstr ""
1762
 
1763
- #: dashboard/publisher/groups-edit.php:219
1764
- #: dashboard/publisher/groups-edit.php:257
1765
  msgid "after the middle paragraph"
1766
  msgstr ""
1767
 
1768
- #: dashboard/publisher/groups-edit.php:220
1769
- #: dashboard/publisher/groups-edit.php:258
1770
  msgid "after the 1st paragraph"
1771
  msgstr ""
1772
 
1773
- #: dashboard/publisher/groups-edit.php:221
1774
- #: dashboard/publisher/groups-edit.php:259
1775
  msgid "after the 2nd paragraph"
1776
  msgstr ""
1777
 
1778
- #: dashboard/publisher/groups-edit.php:222
1779
- #: dashboard/publisher/groups-edit.php:260
1780
  msgid "after the 3rd paragraph"
1781
  msgstr ""
1782
 
1783
- #: dashboard/publisher/groups-edit.php:223
1784
- #: dashboard/publisher/groups-edit.php:261
1785
  msgid "after the 4th paragraph"
1786
  msgstr ""
1787
 
1788
- #: dashboard/publisher/groups-edit.php:224
1789
- #: dashboard/publisher/groups-edit.php:262
1790
  msgid "after the 5th paragraph"
1791
  msgstr ""
1792
 
1793
- #: dashboard/publisher/groups-edit.php:225
1794
- #: dashboard/publisher/groups-edit.php:263
1795
  msgid "after the 6th paragraph"
1796
  msgstr ""
1797
 
1798
- #: dashboard/publisher/groups-edit.php:226
1799
- #: dashboard/publisher/groups-edit.php:264
1800
  msgid "after the 7th paragraph"
1801
  msgstr ""
1802
 
1803
- #: dashboard/publisher/groups-edit.php:227
1804
- #: dashboard/publisher/groups-edit.php:265
1805
  msgid "after the 8th paragraph"
1806
  msgstr ""
1807
 
1808
- #: dashboard/publisher/groups-edit.php:233
1809
  msgid "Which categories?"
1810
  msgstr ""
1811
 
1812
- #: dashboard/publisher/groups-edit.php:238
1813
  msgid "Click the categories posts you want the adverts to show in."
1814
  msgstr ""
1815
 
1816
- #: dashboard/publisher/groups-edit.php:243
1817
  msgid "In pages?"
1818
  msgstr ""
1819
 
1820
- #: dashboard/publisher/groups-edit.php:271
1821
  msgid "Which pages?"
1822
  msgstr ""
1823
 
1824
- #: dashboard/publisher/groups-edit.php:276
1825
  msgid "Click the pages you want the adverts to show in."
1826
  msgstr ""
1827
 
1828
- #: dashboard/publisher/groups-edit.php:304
1829
  msgid "Wrapper code"
1830
  msgstr ""
1831
 
1832
- #: dashboard/publisher/groups-edit.php:305
1833
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1834
  msgstr ""
1835
 
1836
- #: dashboard/publisher/groups-edit.php:309
1837
  msgid "Before advert"
1838
  msgstr ""
1839
 
1840
- #: dashboard/publisher/groups-edit.php:313
1841
  msgid "Options:"
1842
  msgstr ""
1843
 
1844
- #: dashboard/publisher/groups-edit.php:317
1845
  msgid "After advert"
1846
  msgstr ""
1847
 
1848
- #: dashboard/publisher/groups-edit.php:326
1849
  msgid "Select adverts"
1850
  msgstr ""
1851
 
1852
- #: dashboard/publisher/groups-edit.php:331
1853
  msgid "Choose adverts"
1854
  msgstr ""
1855
 
1856
- #: dashboard/publisher/groups-edit.php:337
1857
  msgid "Visible until"
1858
  msgstr ""
1859
 
1860
- #: dashboard/publisher/groups-edit.php:379
1861
  msgid "No adverts created!"
1862
  msgstr ""
1863
 
@@ -1877,8 +1871,8 @@ msgstr ""
1877
  msgid "This action can not be undone!"
1878
  msgstr ""
1879
 
1880
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
1881
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
1882
  msgid "OK to continue, CANCEL to stop."
1883
  msgstr ""
1884
 
@@ -1890,354 +1884,401 @@ msgstr ""
1890
  msgid "Statistics for group"
1891
  msgstr ""
1892
 
1893
- #: dashboard/settings/advertisers.php:12
1894
  msgid "Advertisers - Available in AdRotate Pro"
1895
  msgstr ""
1896
 
1897
- #: dashboard/settings/advertisers.php:13
1898
  msgid "Enable advertisers so they can review and manage their own ads."
1899
  msgstr ""
1900
 
1901
- #: dashboard/settings/advertisers.php:16
1902
  msgid "Enable Advertisers"
1903
  msgstr ""
1904
 
1905
- #: dashboard/settings/advertisers.php:18
1906
  msgid "Allow adverts to be coupled to users (Advertisers)."
1907
  msgstr ""
1908
 
1909
- #: dashboard/settings/advertisers.php:22
1910
  msgid "Edit/update adverts"
1911
  msgstr ""
1912
 
1913
- #: dashboard/settings/advertisers.php:24
1914
  msgid "Allow advertisers to add new or edit their adverts."
1915
  msgstr ""
1916
 
1917
- #: dashboard/settings/advertisers.php:30
 
 
 
 
 
 
 
 
1918
  msgid ""
1919
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
1920
  "be enabled, too."
1921
  msgstr ""
1922
 
1923
- #: dashboard/settings/advertisers.php:34
1924
  msgid "Advertiser role"
1925
  msgstr ""
1926
 
1927
- #: dashboard/settings/advertisers.php:36
1928
  msgid "Create a seperate user role for your advertisers."
1929
  msgstr ""
1930
 
1931
- #: dashboard/settings/advertisers.php:37
1932
  msgid ""
1933
  "Don't forget to give these users access to their advertiser dashboard via "
1934
  "the Roles tab."
1935
  msgstr ""
1936
 
1937
- #: dashboard/settings/general.php:12
 
 
 
 
 
 
 
1938
  msgid "General Settings"
1939
  msgstr ""
1940
 
1941
- #: dashboard/settings/general.php:13
1942
  msgid "General settings for AdRotate."
1943
  msgstr ""
1944
 
1945
- #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
1946
  msgid "Some options are only available in AdRotate Pro!"
1947
  msgstr ""
1948
 
1949
- #: dashboard/settings/general.php:16
1950
  msgid "Shortcode in widgets"
1951
  msgstr ""
1952
 
1953
- #: dashboard/settings/general.php:17
1954
  msgid ""
1955
  "Enable this option to if your theme does not support shortcodes in the "
1956
  "WordPress text widget."
1957
  msgstr ""
1958
 
1959
- #: dashboard/settings/general.php:20
1960
  msgid "Disable live preview"
1961
  msgstr ""
1962
 
1963
- #: dashboard/settings/general.php:21
1964
  msgid ""
1965
  "Enable this option if you have faulty adverts that overflow their designated "
1966
  "area while creating/editing adverts."
1967
  msgstr ""
1968
 
1969
- #: dashboard/settings/general.php:24
1970
  msgid "Disable dynamic mode"
1971
  msgstr ""
1972
 
1973
- #: dashboard/settings/general.php:25
1974
  msgid ""
1975
  "Enable this option to disable dynamic mode in groups for mobile devices if "
1976
  "you notice skipping or jumpy content."
1977
  msgstr ""
1978
 
1979
- #: dashboard/settings/general.php:28
1980
  msgid "Load jQuery"
1981
  msgstr ""
1982
 
1983
- #: dashboard/settings/general.php:29
1984
  msgid ""
1985
  "Enable this option if your theme does not load jQuery. jQuery is required "
1986
  "for dynamic groups, statistics and some other features."
1987
  msgstr ""
1988
 
1989
- #: dashboard/settings/general.php:32
1990
  msgid "Load scripts in footer?"
1991
  msgstr ""
1992
 
1993
- #: dashboard/settings/general.php:33
1994
  msgid ""
1995
  "Enable this option if you want to load all AdRotate Javascripts in the "
1996
  "footer of your site."
1997
  msgstr ""
1998
 
1999
- #: dashboard/settings/general.php:36
2000
  msgid "Adblock disguise"
2001
  msgstr ""
2002
 
2003
- #: dashboard/settings/general.php:38
2004
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2005
  msgstr ""
2006
 
2007
- #: dashboard/settings/general.php:39
2008
  msgid ""
2009
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2010
  msgstr ""
2011
 
2012
- #: dashboard/settings/general.php:39
2013
  msgid ""
2014
  "To also apply this feature to widgets, use a text widget with a shortcode "
2015
  "instead of the AdRotate widget."
2016
  msgstr ""
2017
 
2018
- #: dashboard/settings/general.php:39
2019
  msgid ""
2020
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2021
  "feature will have little effect!"
2022
  msgstr ""
2023
 
2024
- #: dashboard/settings/general.php:44
2025
  msgid "Banner Folder"
2026
  msgstr ""
2027
 
2028
- #: dashboard/settings/general.php:45
2029
  msgid "Set a location where your banner images will be stored."
2030
  msgstr ""
2031
 
2032
- #: dashboard/settings/general.php:48
2033
  msgid "Location"
2034
  msgstr ""
2035
 
2036
- #: dashboard/settings/general.php:50
2037
  msgid "(Default: wp-content/banners/)."
2038
  msgstr ""
2039
 
2040
- #: dashboard/settings/general.php:51
2041
  msgid ""
2042
  "To try and trick ad blockers you could set the folder to something crazy "
2043
  "like:"
2044
  msgstr ""
2045
 
2046
- #: dashboard/settings/general.php:52
2047
  msgid ""
2048
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2049
  "will show errors when the folder is missing."
2050
  msgstr ""
2051
 
2052
- #: dashboard/settings/general.php:57
2053
  msgid "Bot filter"
2054
  msgstr ""
2055
 
2056
- #: dashboard/settings/general.php:58
2057
  msgid "The bot filter is used for the AdRotate stats tracker."
2058
  msgstr ""
2059
 
2060
- #: dashboard/settings/general.php:61
2061
  msgid "User-Agent Filter"
2062
  msgstr ""
2063
 
2064
- #: dashboard/settings/general.php:64
2065
  msgid ""
2066
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2067
  msgstr ""
2068
 
2069
- #: dashboard/settings/general.php:65
2070
  msgid ""
2071
  "Keep in mind that this might give false positives. The word 'fire' also "
2072
  "matches 'firefox', but not vice-versa. So be careful!"
2073
  msgstr ""
2074
 
2075
- #: dashboard/settings/general.php:66
2076
  msgid ""
2077
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2078
  "characters are stripped out."
2079
  msgstr ""
2080
 
2081
- #: dashboard/settings/general.php:67
2082
  msgid ""
2083
  "Additionally to the list specified here, empty User-Agents are blocked as "
2084
  "well."
2085
  msgstr ""
2086
 
2087
- #: dashboard/settings/general.php:67
2088
  msgid "Learn more about"
2089
  msgstr ""
2090
 
2091
- #: dashboard/settings/general.php:67
2092
  msgid "user-agents"
2093
  msgstr ""
2094
 
2095
- #: dashboard/settings/geotargeting.php:12
2096
  msgid "Geo Targeting - Available in AdRotate Pro"
2097
  msgstr ""
2098
 
2099
- #: dashboard/settings/geotargeting.php:13
2100
  msgid "Target certain areas in the world for better advertising oppurtunities."
2101
  msgstr ""
2102
 
2103
- #: dashboard/settings/geotargeting.php:16
2104
  msgid "Which Geo Service"
2105
  msgstr ""
2106
 
2107
- #: dashboard/settings/geotargeting.php:25
2108
- msgid ""
2109
- "The most complete and accurate geo targeting you can get for only $20 USD "
2110
- "per 50000 lookups."
2111
  msgstr ""
2112
 
2113
- #: dashboard/settings/geotargeting.php:27
2114
- msgid "Free lookups every day, uses GeoLite2 databases from MaxMind!"
 
 
 
 
 
 
 
 
 
 
 
 
2115
  msgstr ""
2116
 
2117
  #: dashboard/settings/geotargeting.php:33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2118
  msgid "Geo Cookie Lifespan"
2119
  msgstr ""
2120
 
2121
- #: dashboard/settings/geotargeting.php:42
2122
  msgid "Hours."
2123
  msgstr ""
2124
 
2125
- #: dashboard/settings/geotargeting.php:43
2126
  msgid ""
2127
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2128
  "cookie last? A longer period is less accurate for mobile users but may "
2129
  "reduce the usage of your lookups drastically."
2130
  msgstr ""
2131
 
2132
- #: dashboard/settings/geotargeting.php:49
2133
  msgid "MaxMind City/Country"
2134
  msgstr ""
2135
 
2136
- #: dashboard/settings/geotargeting.php:52
2137
  msgid "Username/Email"
2138
  msgstr ""
2139
 
2140
- #: dashboard/settings/geotargeting.php:56
2141
  msgid "Password/License Key"
2142
  msgstr ""
2143
 
2144
- #: dashboard/settings/maintenance.php:12
2145
  msgid "Maintenance"
2146
  msgstr ""
2147
 
2148
- #: dashboard/settings/maintenance.php:13
2149
  msgid ""
2150
  "Use these functions when you notice your database is slow, unresponsive and "
2151
  "sluggish."
2152
  msgstr ""
2153
 
2154
- #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2155
  msgid "Optimize Database"
2156
  msgstr ""
2157
 
2158
- #: dashboard/settings/maintenance.php:18
2159
  msgid "You are about to optimize the AdRotate database."
2160
  msgstr ""
2161
 
2162
- #: dashboard/settings/maintenance.php:18
2163
  msgid "Did you make a backup of your database?"
2164
  msgstr ""
2165
 
2166
- #: dashboard/settings/maintenance.php:18
2167
  msgid ""
2168
  "This may take a moment and may cause your website to respond slow "
2169
  "temporarily!"
2170
  msgstr ""
2171
 
2172
- #: dashboard/settings/maintenance.php:19
2173
  msgid "Cleans up overhead data in the AdRotate tables."
2174
  msgstr ""
2175
 
2176
- #: dashboard/settings/maintenance.php:20
2177
  msgid ""
2178
  "Overhead data is accumulated garbage resulting from many changes you've "
2179
  "made. This can vary from nothing to hundreds of KiB of data."
2180
  msgstr ""
2181
 
2182
- #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2183
  msgid "Clean-up Database"
2184
  msgstr ""
2185
 
2186
- #: dashboard/settings/maintenance.php:26
2187
  msgid ""
2188
  "You are about to clean up your database. This may delete expired schedules "
2189
  "and older statistics."
2190
  msgstr ""
2191
 
2192
- #: dashboard/settings/maintenance.php:26
2193
  msgid "Are you sure you want to continue?"
2194
  msgstr ""
2195
 
2196
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2197
  msgid "This might take a while and may slow down your site during this action!"
2198
  msgstr ""
2199
 
2200
- #: dashboard/settings/maintenance.php:27
2201
  msgid "Delete stats older than 356 days (Optional)."
2202
  msgstr ""
2203
 
2204
- #: dashboard/settings/maintenance.php:28
2205
  msgid ""
2206
  "AdRotate creates empty records when you start making ads, groups or "
2207
  "schedules. In rare occasions these records are faulty."
2208
  msgstr ""
2209
 
2210
- #: dashboard/settings/maintenance.php:28
2211
  msgid ""
2212
  "If you made an ad, group or schedule that does not save when you make it use "
2213
  "this button to delete those empty records."
2214
  msgstr ""
2215
 
2216
- #: dashboard/settings/maintenance.php:28
2217
  msgid ""
2218
  "Additionally you can clean up old schedules and/or statistics. This will "
2219
  "improve the speed of your site."
2220
  msgstr ""
2221
 
2222
- #: dashboard/settings/maintenance.php:32
2223
  msgid "Re-evaluate Ads"
2224
  msgstr ""
2225
 
2226
- #: dashboard/settings/maintenance.php:34
2227
  msgid "Re-evaluate all ads"
2228
  msgstr ""
2229
 
2230
- #: dashboard/settings/maintenance.php:34
2231
  msgid "You are about to check all ads for errors."
2232
  msgstr ""
2233
 
2234
- #: dashboard/settings/maintenance.php:35
2235
  msgid ""
2236
  "This will apply all evaluation rules to all ads to see if any error slipped "
2237
  "in. Normally you should not need this feature."
2238
  msgstr ""
2239
 
2240
- #: dashboard/settings/maintenance.php:39
2241
  msgid ""
2242
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2243
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2250,11 +2291,11 @@ msgid ""
2250
  "is not a valid point in any case."
2251
  msgstr ""
2252
 
2253
- #: dashboard/settings/maintenance.php:41
2254
  msgid "Troubleshooting"
2255
  msgstr ""
2256
 
2257
- #: dashboard/settings/maintenance.php:42
2258
  msgid ""
2259
  "The below options are not meant for normal use and are only there for "
2260
  "developers to review saved settings or how ads are selected. These can be "
@@ -2262,475 +2303,513 @@ msgid ""
2262
  "SHOULD BE LEFT UNCHECKED!!"
2263
  msgstr ""
2264
 
2265
- #: dashboard/settings/maintenance.php:45
2266
  msgid "Developer Debug"
2267
  msgstr ""
2268
 
2269
- #: dashboard/settings/maintenance.php:47
2270
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2271
  msgstr ""
2272
 
2273
- #: dashboard/settings/maintenance.php:48
2274
  msgid "View advert specs and (some) stats in the dashboard."
2275
  msgstr ""
2276
 
2277
- #: dashboard/settings/maintenance.php:49
2278
  msgid ""
2279
  "Disable timers for clicks and impressions and enable a alert window for "
2280
  "clicktracking."
2281
  msgstr ""
2282
 
2283
- #: dashboard/settings/maintenance.php:50
2284
  msgid "Temporarily disable encryption on the redirect url."
2285
  msgstr ""
2286
 
2287
- #: dashboard/settings/maintenance.php:55
2288
- msgid "Status and Versions"
2289
- msgstr ""
2290
-
2291
- #: dashboard/settings/maintenance.php:58
2292
- msgid "Current version:"
2293
- msgstr ""
2294
-
2295
  #: dashboard/settings/maintenance.php:59
2296
- msgid "Previous version:"
2297
  msgstr ""
2298
 
2299
  #: dashboard/settings/maintenance.php:62
2300
- msgid "Current database version:"
2301
- msgstr ""
2302
-
2303
- #: dashboard/settings/maintenance.php:63
2304
- msgid "Previous database version:"
2305
- msgstr ""
2306
-
2307
- #: dashboard/settings/maintenance.php:66
2308
  msgid "Current status of adverts"
2309
  msgstr ""
2310
 
2311
- #: dashboard/settings/maintenance.php:67
2312
  msgid "Normal"
2313
  msgstr ""
2314
 
2315
- #: dashboard/settings/maintenance.php:67
2316
  msgid "Error"
2317
  msgstr ""
2318
 
2319
- #: dashboard/settings/maintenance.php:67
2320
  msgid "Expired"
2321
  msgstr ""
2322
 
2323
- #: dashboard/settings/maintenance.php:67
2324
  msgid "Expires Soon"
2325
  msgstr ""
2326
 
2327
- #: dashboard/settings/maintenance.php:67
2328
  msgid "Unknown"
2329
  msgstr ""
2330
 
2331
- #: dashboard/settings/maintenance.php:70
2332
  msgid "Banners/assets Folder"
2333
  msgstr ""
2334
 
2335
- #: dashboard/settings/maintenance.php:72
2336
  msgid "Exists and appears writable"
2337
  msgstr ""
2338
 
2339
- #: dashboard/settings/maintenance.php:72
2340
  msgid "Not writable or does not exist"
2341
  msgstr ""
2342
 
 
 
 
 
2343
  #: dashboard/settings/maintenance.php:76
2344
- msgid "Ad evaluation next run:"
2345
  msgstr ""
2346
 
2347
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
2348
- msgid "Not scheduled!"
2349
  msgstr ""
2350
 
2351
- #: dashboard/settings/maintenance.php:80
2352
- msgid "Clean Trackerdata next run:"
2353
  msgstr ""
2354
 
2355
- #: dashboard/settings/misc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2356
  msgid "Miscellaneous"
2357
  msgstr ""
2358
 
2359
- #: dashboard/settings/misc.php:15
2360
  msgid "Widget alignment"
2361
  msgstr ""
2362
 
2363
- #: dashboard/settings/misc.php:16
2364
  msgid ""
2365
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2366
  "not always help!)"
2367
  msgstr ""
2368
 
2369
- #: dashboard/settings/misc.php:19
2370
  msgid "Widget padding"
2371
  msgstr ""
2372
 
2373
- #: dashboard/settings/misc.php:20
2374
  msgid ""
2375
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2376
  "not always work!)"
2377
  msgstr ""
2378
 
2379
- #: dashboard/settings/misc.php:24
2380
  msgid "NOTICE:"
2381
  msgstr ""
2382
 
2383
- #: dashboard/settings/misc.php:25
2384
  msgid ""
2385
  "You have enabled W3 Total Caching support but not defined the security hash."
2386
  msgstr ""
2387
 
2388
- #: dashboard/settings/misc.php:25
2389
  msgid ""
2390
  "AdRotate has generated the following line for you to add to your wp-config."
2391
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2392
  "add this line, check out the following guide;"
2393
  msgstr ""
2394
 
2395
- #: dashboard/settings/misc.php:25
2396
  msgid "Set up W3 Total Caching"
2397
  msgstr ""
2398
 
2399
- #: dashboard/settings/misc.php:29
2400
  msgid "W3 Total Caching"
2401
  msgstr ""
2402
 
2403
- #: dashboard/settings/misc.php:30
2404
  msgid "Check this box if you use W3 Total Caching on your site."
2405
  msgstr ""
2406
 
2407
- #: dashboard/settings/misc.php:34
2408
  msgid ""
2409
  "It may take a while for the ad to start rotating. The caching plugin needs "
2410
  "to refresh the cache. This can take up to a week if not done manually."
2411
  msgstr ""
2412
 
2413
- #: dashboard/settings/misc.php:34
2414
  msgid ""
2415
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2416
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2417
  msgstr ""
2418
 
2419
- #: dashboard/settings/notifications.php:12
2420
  msgid "Notifications"
2421
  msgstr ""
2422
 
2423
- #: dashboard/settings/notifications.php:13
2424
  msgid "Set up who gets notifications if ads need your attention."
2425
  msgstr ""
2426
 
2427
- #: dashboard/settings/notifications.php:16
2428
  msgid "How to notify"
2429
  msgstr ""
2430
 
2431
- #: dashboard/settings/notifications.php:18
2432
  msgid "Dashboard banner."
2433
  msgstr ""
2434
 
2435
- #: dashboard/settings/notifications.php:19
2436
  msgid "Email message."
2437
  msgstr ""
2438
 
2439
- #: dashboard/settings/notifications.php:20
2440
  msgid "Push notifications to your smartphone."
2441
  msgstr ""
2442
 
2443
- #: dashboard/settings/notifications.php:21
2444
  msgid ""
2445
  "Push notifications are delivered through Pushover, a notification service "
2446
  "for Android and iOS"
2447
  msgstr ""
2448
 
2449
- #: dashboard/settings/notifications.php:21
2450
  msgid ""
2451
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2452
  "information can be found on the pushover website;"
2453
  msgstr ""
2454
 
2455
- #: dashboard/settings/notifications.php:25
2456
  msgid "Test notification"
2457
  msgstr ""
2458
 
2459
- #: dashboard/settings/notifications.php:27
2460
  msgid "Test"
2461
  msgstr ""
2462
 
2463
- #: dashboard/settings/notifications.php:27
2464
  msgid ""
2465
  "Send a test notification to enabled methods. Before you test, save the "
2466
  "options first!"
2467
  msgstr ""
2468
 
2469
- #: dashboard/settings/notifications.php:32
2470
- msgid "Dashboard"
2471
  msgstr ""
2472
 
2473
- #: dashboard/settings/notifications.php:33
2474
  msgid ""
2475
  "These go in a dashboard banner visible to all users with access to AdRotate "
2476
  "on every WordPress dashboard page."
2477
  msgstr ""
2478
 
2479
- #: dashboard/settings/notifications.php:36
2480
- #: dashboard/settings/notifications.php:68
 
2481
  msgid "What"
2482
  msgstr ""
2483
 
2484
- #: dashboard/settings/notifications.php:38
2485
  msgid "Expired adverts."
2486
  msgstr ""
2487
 
2488
- #: dashboard/settings/notifications.php:39
2489
  msgid "Almost expired adverts."
2490
  msgstr ""
2491
 
2492
- #: dashboard/settings/notifications.php:44
2493
- msgid "Email"
2494
  msgstr ""
2495
 
2496
- #: dashboard/settings/notifications.php:45
2497
- msgid "Set up who gets notification emails."
 
2498
  msgstr ""
2499
 
2500
- #: dashboard/settings/notifications.php:48
2501
- msgid "Publishers"
 
2502
  msgstr ""
2503
 
2504
- #: dashboard/settings/notifications.php:51
2505
- msgid ""
2506
- "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2507
- "list to a minimum!"
2508
  msgstr ""
2509
 
2510
- #: dashboard/settings/notifications.php:52
2511
- msgid ""
2512
- "Messages are sent once every 24 hours when needed. If this field is empty no "
2513
- "email notifications will be send."
2514
  msgstr ""
2515
 
2516
- #: dashboard/settings/notifications.php:56
2517
- msgid "Advertisers"
 
2518
  msgstr ""
2519
 
2520
- #: dashboard/settings/notifications.php:59
2521
- msgid ""
2522
- "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2523
- "This field may not be empty!"
2524
  msgstr ""
2525
 
2526
- #: dashboard/settings/notifications.php:64
2527
- msgid "Push"
 
 
 
2528
  msgstr ""
2529
 
2530
- #: dashboard/settings/notifications.php:65
2531
  msgid ""
2532
- "Receive information about what is happening with your AdRotate setup on your "
2533
- "smartphone via Pushover."
 
 
 
2534
  msgstr ""
2535
 
2536
- #: dashboard/settings/notifications.php:70
2537
- msgid "When you are running out of Geo Targeting Lookups."
2538
  msgstr ""
2539
 
2540
- #: dashboard/settings/notifications.php:71
2541
- msgid "Daily digest of any advert status other than normal."
 
 
2542
  msgstr ""
2543
 
2544
  #: dashboard/settings/notifications.php:72
2545
- msgid "Any advertiser saving an advert in your moderation queue."
2546
  msgstr ""
2547
 
2548
- #: dashboard/settings/notifications.php:73
2549
- msgid "A moderator approved an advert from the moderation queue."
 
 
2550
  msgstr ""
2551
 
2552
- #: dashboard/settings/notifications.php:74
2553
- msgid "A moderator rejected an advert from the moderation queue."
2554
  msgstr ""
2555
 
2556
- #: dashboard/settings/notifications.php:74
2557
  msgid ""
2558
- "If you have a lot of activity with many advertisers adding/changing adverts "
2559
- "you may get a lot of messages!"
 
 
 
 
 
 
 
 
2560
  msgstr ""
2561
 
2562
- #: dashboard/settings/notifications.php:79
2563
  msgid "User Key"
2564
  msgstr ""
2565
 
2566
- #: dashboard/settings/notifications.php:81
2567
  msgid "Get your user token"
2568
  msgstr ""
2569
 
2570
- #: dashboard/settings/notifications.php:81
2571
- #: dashboard/settings/notifications.php:87
2572
  msgid "here"
2573
  msgstr ""
2574
 
2575
- #: dashboard/settings/notifications.php:85
2576
  msgid "Api Token"
2577
  msgstr ""
2578
 
2579
- #: dashboard/settings/notifications.php:87
2580
  msgid "Create your"
2581
  msgstr ""
2582
 
2583
- #: dashboard/settings/notifications.php:87
2584
  msgid "App"
2585
  msgstr ""
2586
 
2587
- #: dashboard/settings/notifications.php:87
2588
  msgid "and get your API token"
2589
  msgstr ""
2590
 
2591
- #: dashboard/settings/roles.php:12
2592
  msgid "Roles"
2593
  msgstr ""
2594
 
2595
- #: dashboard/settings/roles.php:13
2596
  msgid "Who has access to what?"
2597
  msgstr ""
2598
 
2599
- #: dashboard/settings/roles.php:16
2600
  msgid "Manage/Add/Edit adverts"
2601
  msgstr ""
2602
 
2603
- #: dashboard/settings/roles.php:20
2604
  msgid "Role to see and add/edit ads."
2605
  msgstr ""
2606
 
2607
- #: dashboard/settings/roles.php:24
2608
  msgid "Delete/Reset adverts"
2609
  msgstr ""
2610
 
2611
- #: dashboard/settings/roles.php:28
2612
  msgid "Role to delete ads and reset stats."
2613
  msgstr ""
2614
 
2615
- #: dashboard/settings/roles.php:32
2616
  msgid "Manage/Add/Edit groups"
2617
  msgstr ""
2618
 
2619
- #: dashboard/settings/roles.php:36
2620
  msgid "Role to see and add/edit groups."
2621
  msgstr ""
2622
 
2623
- #: dashboard/settings/roles.php:40
2624
  msgid "Delete groups"
2625
  msgstr ""
2626
 
2627
- #: dashboard/settings/roles.php:44
2628
  msgid "Role to delete groups."
2629
  msgstr ""
2630
 
2631
- #: dashboard/settings/statistics.php:13
2632
  msgid "Track statistics for your adverts."
2633
  msgstr ""
2634
 
2635
- #: dashboard/settings/statistics.php:16
2636
  msgid "How to track stats"
2637
  msgstr ""
2638
 
2639
- #: dashboard/settings/statistics.php:25
2640
  msgid "Tracks impressions and clicks internally"
2641
  msgstr ""
2642
 
2643
- #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2644
- #: dashboard/settings/statistics.php:29
2645
  msgid "manual"
2646
  msgstr ""
2647
 
2648
- #: dashboard/settings/statistics.php:26
2649
  msgid ""
2650
  "Click and Impression recording, Click and impression limits, impression "
2651
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2652
  "will only track impressions."
2653
  msgstr ""
2654
 
2655
- #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2656
  msgid "In AdRotate Pro!"
2657
  msgstr ""
2658
 
2659
- #: dashboard/settings/statistics.php:27
2660
  msgid ""
2661
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2662
  "attributes"
2663
  msgstr ""
2664
 
2665
- #: dashboard/settings/statistics.php:28
2666
  msgid ""
2667
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2668
  "Contents."
2669
  msgstr ""
2670
 
2671
- #: dashboard/settings/statistics.php:29
2672
  msgid ""
2673
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2674
  "uses onClick() and onload() in adverts"
2675
  msgstr ""
2676
 
2677
- #: dashboard/settings/statistics.php:30
2678
  msgid ""
2679
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2680
  "Banner."
2681
  msgstr ""
2682
 
2683
- #: dashboard/settings/statistics.php:36
2684
  msgid "Internal Tracker"
2685
  msgstr ""
2686
 
2687
- #: dashboard/settings/statistics.php:37
2688
  msgid ""
2689
  "The settings below are for the internal tracker and have no effect when "
2690
  "using Piwik/Google Analytics."
2691
  msgstr ""
2692
 
2693
- #: dashboard/settings/statistics.php:40
2694
  msgid "Logged in impressions"
2695
  msgstr ""
2696
 
2697
- #: dashboard/settings/statistics.php:42
2698
  msgid "Track impressions from logged in users."
2699
  msgstr ""
2700
 
2701
- #: dashboard/settings/statistics.php:46
2702
  msgid "Logged in clicks"
2703
  msgstr ""
2704
 
2705
- #: dashboard/settings/statistics.php:48
2706
  msgid "Track clicks from logged in users."
2707
  msgstr ""
2708
 
2709
- #: dashboard/settings/statistics.php:52
2710
  msgid "Impression timer"
2711
  msgstr ""
2712
 
2713
- #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2714
  msgid "Seconds."
2715
  msgstr ""
2716
 
2717
- #: dashboard/settings/statistics.php:55
2718
  msgid "Default: 60."
2719
  msgstr ""
2720
 
2721
- #: dashboard/settings/statistics.php:55
2722
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2723
  msgstr ""
2724
 
2725
- #: dashboard/settings/statistics.php:59
2726
  msgid "Click timer"
2727
  msgstr ""
2728
 
2729
- #: dashboard/settings/statistics.php:62
2730
  msgid "Default: 86400."
2731
  msgstr ""
2732
 
2733
- #: dashboard/settings/statistics.php:62
2734
  msgid ""
2735
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2736
  msgstr ""
@@ -2772,10 +2851,6 @@ msgstr ""
2772
  #~ msgid "Normal coverage"
2773
  #~ msgstr "Normal"
2774
 
2775
- #, fuzzy
2776
- #~ msgid "More than average"
2777
- #~ msgstr "Plus d'informations..."
2778
-
2779
  #, fuzzy
2780
  #~ msgid "Ads in group"
2781
  #~ msgstr "Pubs dans le groupe"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-17 23:25+0800\n"
6
+ "PO-Revision-Date: 2016-07-17 23:25+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: en_US\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:842
21
  msgid "No files found"
22
  msgstr ""
23
 
24
+ #: adrotate-functions.php:845
25
  msgid "Folder not found or not accessible"
26
  msgstr ""
27
 
28
+ #: adrotate-functions.php:894
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:898
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:902
37
  msgid "Ad(s) deleted"
38
  msgstr ""
39
 
40
+ #: adrotate-functions.php:906
41
  msgid "Group deleted"
42
  msgstr ""
43
 
44
+ #: adrotate-functions.php:910
45
  msgid "Ad(s) statistics reset"
46
  msgstr ""
47
 
48
+ #: adrotate-functions.php:914
49
  msgid "Ad(s) renewed"
50
  msgstr ""
51
 
52
+ #: adrotate-functions.php:918
53
  msgid "Ad(s) deactivated"
54
  msgstr ""
55
 
56
+ #: adrotate-functions.php:922
57
  msgid "Ad(s) activated"
58
  msgstr ""
59
 
60
+ #: adrotate-functions.php:926
61
  msgid "Group including it's Ads deleted"
62
  msgstr ""
63
 
64
+ #: adrotate-functions.php:930
65
  msgid "Export created"
66
  msgstr ""
67
 
68
+ #: adrotate-functions.php:935
69
  msgid "Settings saved"
70
  msgstr ""
71
 
72
+ #: adrotate-functions.php:939
73
  msgid "Database optimized"
74
  msgstr ""
75
 
76
+ #: adrotate-functions.php:943
77
  msgid "Database repaired"
78
  msgstr ""
79
 
80
+ #: adrotate-functions.php:947
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr ""
83
 
84
+ #: adrotate-functions.php:951
85
  msgid "Empty database records removed"
86
  msgstr ""
87
 
88
+ #: adrotate-functions.php:956
89
  msgid "Action prohibited"
90
  msgstr ""
91
 
92
+ #: adrotate-functions.php:960
93
  msgid ""
94
  "The ad was saved but has an issue which might prevent it from working "
95
  "properly. Review the colored ad."
96
  msgstr ""
97
 
98
+ #: adrotate-functions.php:964
99
  msgid "No data found in selected time period"
100
  msgstr ""
101
 
102
+ #: adrotate-functions.php:968
103
  msgid "Database can only be optimized or cleaned once every hour"
104
  msgstr ""
105
 
106
+ #: adrotate-functions.php:972
107
  msgid "Form can not be (partially) empty!"
108
  msgstr ""
109
 
110
+ #: adrotate-functions.php:976
111
  msgid "No ads found."
112
  msgstr ""
113
 
114
+ #: adrotate-functions.php:980
115
  msgid "Unexpected error"
116
  msgstr ""
117
 
118
+ #: adrotate-manage-publisher.php:685
119
  msgid "AdRotate Advertiser"
120
  msgstr ""
121
 
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
+ #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
188
  msgid "Check adverts"
189
  msgstr ""
190
 
191
+ #: adrotate-output.php:675
192
  msgid ""
193
  "You have enable caching support but W3 Total Cache is not active on your "
194
  "site!"
195
  msgstr ""
196
 
197
+ #: adrotate-output.php:678
198
  msgid ""
199
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
200
  "not set."
201
  msgstr ""
202
 
203
+ #: adrotate-output.php:683
204
  msgid "Your AdRotate Banner folder is not writable or does not exist."
205
  msgstr ""
206
 
207
+ #: adrotate-output.php:723 dashboard/adrotatepro.php:99
208
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
209
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
210
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
211
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
212
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
213
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
214
+ #: dashboard/settings/geotargeting.php:35
215
  msgid "Buy now"
216
  msgstr ""
217
 
218
+ #: adrotate-output.php:724
219
  msgid ""
220
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
221
  "to the <strong>PRO</strong> version"
222
  msgstr ""
223
 
224
+ #: adrotate-output.php:724
225
  #, php-format
226
  msgid ""
227
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
228
  msgstr ""
229
 
230
+ #: adrotate-output.php:724
231
  msgid "Thank you for your purchase!"
232
  msgstr ""
233
 
234
+ #: adrotate-output.php:785
235
  msgid ""
236
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
237
  "this menu. Check out the"
238
  msgstr ""
239
 
240
+ #: adrotate-output.php:785
241
  msgid "manuals"
242
  msgstr ""
243
 
244
+ #: adrotate-output.php:785 adrotate-output.php:852
245
  msgid "and"
246
  msgstr ""
247
 
248
+ #: adrotate-output.php:785
249
  msgid "forums"
250
  msgstr ""
251
 
252
+ #: adrotate-output.php:815
253
  msgid "Useful Links"
254
  msgstr ""
255
 
256
+ #: adrotate-output.php:816
257
  msgid "Useful links to learn more about AdRotate"
258
  msgstr ""
259
 
260
+ #: adrotate-output.php:818
261
  msgid "AdRotate website"
262
  msgstr ""
263
 
264
+ #: adrotate-output.php:819
265
  msgid "Getting Started With AdRotate"
266
  msgstr ""
267
 
268
+ #: adrotate-output.php:820
269
  msgid "AdRotate manuals"
270
  msgstr ""
271
 
272
+ #: adrotate-output.php:821
273
  msgid "AdRotate Support Forum"
274
  msgstr ""
275
 
276
+ #: adrotate-output.php:844
277
  msgid "Help AdRotate Grow"
278
  msgstr ""
279
 
280
+ #: adrotate-output.php:845
281
  msgid "Follow Arnan on Facebook"
282
  msgstr ""
283
 
284
+ #: adrotate-output.php:852
285
  msgid ""
286
  "A lot of users only think to review AdRotate when something goes wrong while "
287
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
288
  msgstr ""
289
 
290
+ #: adrotate-output.php:852
291
  msgid "If you find AdRotate useful please leave your honest"
292
  msgstr ""
293
 
294
+ #: adrotate-output.php:852
295
  msgid "rating"
296
  msgstr ""
297
 
298
+ #: adrotate-output.php:852
299
  msgid "review"
300
  msgstr ""
301
 
302
+ #: adrotate-output.php:852
303
  msgid "on WordPress.org to help AdRotate grow in a positive way"
304
  msgstr ""
305
 
306
+ #: adrotate-output.php:885 dashboard/settings/notifications.php:50
307
+ #: dashboard/settings/notifications.php:80
308
  msgid "Available in AdRotate Pro"
309
  msgstr ""
310
 
311
+ #: adrotate-output.php:885
312
  msgid "More information..."
313
  msgstr ""
314
 
315
+ #: adrotate-output.php:886
316
  msgid "This feature is available in AdRotate Pro"
317
  msgstr ""
318
 
319
+ #: adrotate-output.php:886
320
  msgid "Learn more"
321
  msgstr ""
322
 
323
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
324
+ #: dashboard/publisher/adverts-edit.php:235
325
  msgid "January"
326
  msgstr ""
327
 
328
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
329
+ #: dashboard/publisher/adverts-edit.php:236
330
  msgid "February"
331
  msgstr ""
332
 
333
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
334
+ #: dashboard/publisher/adverts-edit.php:237
335
  msgid "March"
336
  msgstr ""
337
 
338
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
339
+ #: dashboard/publisher/adverts-edit.php:238
340
  msgid "April"
341
  msgstr ""
342
 
343
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
344
+ #: dashboard/publisher/adverts-edit.php:239
345
  msgid "May"
346
  msgstr ""
347
 
348
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
349
+ #: dashboard/publisher/adverts-edit.php:240
350
  msgid "June"
351
  msgstr ""
352
 
353
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
354
+ #: dashboard/publisher/adverts-edit.php:241
355
  msgid "July"
356
  msgstr ""
357
 
358
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
359
+ #: dashboard/publisher/adverts-edit.php:242
360
  msgid "August"
361
  msgstr ""
362
 
363
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
364
+ #: dashboard/publisher/adverts-edit.php:243
365
  msgid "September"
366
  msgstr ""
367
 
368
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
369
+ #: dashboard/publisher/adverts-edit.php:244
370
  msgid "October"
371
  msgstr ""
372
 
373
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
374
+ #: dashboard/publisher/adverts-edit.php:245
375
  msgid "November"
376
  msgstr ""
377
 
378
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
379
+ #: dashboard/publisher/adverts-edit.php:246
380
  msgid "December"
381
  msgstr ""
382
 
436
  msgid "Fill in the ID of the type you want to display!"
437
  msgstr ""
438
 
439
+ #: adrotate.php:102
440
  msgid "General Info"
441
  msgstr ""
442
 
443
+ #: adrotate.php:103
444
  msgid "AdRotate Pro"
445
  msgstr ""
446
 
447
+ #: adrotate.php:104
448
  msgid "Manage Adverts"
449
  msgstr ""
450
 
451
+ #: adrotate.php:105 dashboard/publisher/groups-main.php:12
452
  msgid "Manage Groups"
453
  msgstr ""
454
 
455
+ #: adrotate.php:106 adrotate.php:369
456
  msgid "Manage Schedules"
457
  msgstr ""
458
 
459
+ #: adrotate.php:107
460
  msgid "Manage Media"
461
  msgstr ""
462
 
463
+ #: adrotate.php:108
464
  msgid "Settings"
465
  msgstr ""
466
 
467
+ #: adrotate.php:128
468
  msgid "AdRotate Info"
469
  msgstr ""
470
 
471
+ #: adrotate.php:146
472
  msgid "AdRotate Professional"
473
  msgstr ""
474
 
475
+ #: adrotate.php:186
476
  msgid "Advert Management"
477
  msgstr ""
478
 
479
+ #: adrotate.php:244 adrotate.php:311 adrotate.php:364
480
  msgid "Manage"
481
  msgstr ""
482
 
483
+ #: adrotate.php:245 adrotate.php:312 adrotate.php:365
484
  msgid "Add New"
485
  msgstr ""
486
 
487
+ #: adrotate.php:305
488
  msgid "Group Management"
489
  msgstr ""
490
 
491
+ #: adrotate.php:314
492
  msgid "Report"
493
  msgstr ""
494
 
495
+ #: adrotate.php:360
496
  msgid "Schedule Management available in AdRotate Pro"
497
  msgstr ""
498
 
499
+ #: adrotate.php:370
500
  msgid ""
501
  "Schedule management and multiple schedules per advert is available in "
502
  "AdRotate Pro."
503
  msgstr ""
504
 
505
+ #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
506
  #: dashboard/publisher/adverts-main.php:114
507
+ #: dashboard/publisher/groups-edit.php:71
508
  #: dashboard/publisher/groups-main.php:89
509
  msgid "More information"
510
  msgstr ""
511
 
512
+ #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
513
  #: dashboard/publisher/adverts-error.php:19
514
  #: dashboard/publisher/adverts-main.php:20
515
  #: dashboard/publisher/groups-main.php:20
516
  msgid "Bulk Actions"
517
  msgstr ""
518
 
519
+ #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
520
  #: dashboard/publisher/adverts-error.php:29
521
  #: dashboard/publisher/adverts-main.php:30
522
  #: dashboard/publisher/groups-main.php:24
523
  msgid "Go"
524
  msgstr ""
525
 
526
+ #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
527
  #: dashboard/publisher/adverts-error.php:39
528
  #: dashboard/publisher/adverts-main.php:39
 
529
  #: dashboard/publisher/groups-main.php:32
530
  msgid "ID"
531
  msgstr ""
532
 
533
+ #: adrotate.php:388
534
  msgid "Start"
535
  msgstr ""
536
 
537
+ #: adrotate.php:388
538
  msgid "End"
539
  msgstr ""
540
 
541
+ #: adrotate.php:389
542
  msgid "Ads"
543
  msgstr ""
544
 
545
+ #: adrotate.php:391
546
  msgid "Max Impressions"
547
  msgstr ""
548
 
549
+ #: adrotate.php:392
550
  msgid "Max Clicks"
551
  msgstr ""
552
 
553
+ #: adrotate.php:422
554
  msgid "No schedules created yet!"
555
  msgstr ""
556
 
557
+ #: adrotate.php:427
558
  msgid "Easily manage your schedules from here with AdRotate Pro."
559
  msgstr ""
560
 
561
+ #: adrotate.php:427 adrotate.php:490
562
  msgid "Upgrade today!"
563
  msgstr ""
564
 
565
+ #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
566
+ #: dashboard/publisher/groups-edit.php:383
567
  msgid "Expires soon."
568
  msgstr ""
569
 
570
+ #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
571
+ #: dashboard/publisher/groups-edit.php:384
572
  msgid "Has expired."
573
  msgstr ""
574
 
575
+ #: adrotate.php:452
576
  msgid "Media Management available in AdRotate Pro"
577
  msgstr ""
578
 
579
+ #: adrotate.php:454
580
  msgid "Upload images to the AdRotate Pro banners folder from here."
581
  msgstr ""
582
 
583
+ #: adrotate.php:454
584
  msgid ""
585
  "This is useful if you use responsive adverts with multiple images or have "
586
  "HTML5 adverts containing multiple files."
587
  msgstr ""
588
 
589
+ #: adrotate.php:454
590
  msgid "Media uploading and management is available in AdRotate Pro."
591
  msgstr ""
592
 
593
+ #: adrotate.php:456
594
  msgid "Upload new file"
595
  msgstr ""
596
 
597
+ #: adrotate.php:457
598
  msgid "Accepted files:"
599
  msgstr ""
600
 
601
+ #: adrotate.php:457
602
  msgid "For HTML5 ads you can also upload html and javascript files."
603
  msgstr ""
604
 
605
+ #: adrotate.php:457
606
  msgid "Maximum size is 512Kb."
607
  msgstr ""
608
 
609
+ #: adrotate.php:457
610
  msgid "Important:"
611
  msgstr ""
612
 
613
+ #: adrotate.php:457
614
  msgid ""
615
  "Make sure your file has no spaces or special characters in the name. Replace "
616
  "spaces with a - or _."
617
  msgstr ""
618
 
619
+ #: adrotate.php:457
620
  msgid ""
621
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
622
  "file so it knows about the changed name. For example for the javascript file."
623
  msgstr ""
624
 
625
+ #: adrotate.php:460
626
  msgid ""
627
  "For responsive adverts make sure the filename is in the following format; "
628
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
629
  msgstr ""
630
 
631
+ #: adrotate.php:461
632
  msgid ""
633
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
634
  "filename instead of \".full\" for the various viewports."
635
  msgstr ""
636
 
637
+ #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
638
+ #: dashboard/publisher/groups-edit.php:316
639
  msgid "Example:"
640
  msgstr ""
641
 
642
+ #: adrotate.php:462
643
  msgid ""
644
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
645
  "for different viewports."
646
  msgstr ""
647
 
648
+ #: adrotate.php:466
649
  msgid "Upload file"
650
  msgstr ""
651
 
652
+ #: adrotate.php:466
653
  msgid "Click only once per file!"
654
  msgstr ""
655
 
656
+ #: adrotate.php:469
657
  msgid "Available files in"
658
  msgstr ""
659
 
660
+ #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
661
  #: dashboard/publisher/groups-main.php:33
662
  msgid "Name"
663
  msgstr ""
664
 
665
+ #: adrotate.php:475
666
  msgid "Actions"
667
  msgstr ""
668
 
669
+ #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
670
+ #: adrotate.php:484 adrotate.php:485 adrotate.php:486
671
  #: dashboard/publisher/adverts-disabled.php:22
672
  #: dashboard/publisher/adverts-error.php:21
673
  #: dashboard/publisher/adverts-main.php:22
674
  msgid "Delete"
675
  msgstr ""
676
 
677
+ #: adrotate.php:490
678
  msgid ""
679
  "Make sure the banner images are not in use by adverts when you delete them!"
680
  msgstr ""
681
 
682
+ #: adrotate.php:490
683
  msgid "Manage your banner folder from here with AdRotate Pro."
684
  msgstr ""
685
 
686
+ #: adrotate.php:516
687
  msgid "AdRotate Settings"
688
  msgstr ""
689
 
 
 
 
 
690
  #: dashboard/adrotatepro.php:20
691
  msgid "Satisfy your advertisers"
692
  msgstr ""
873
  msgid "Adverts that need you"
874
  msgstr ""
875
 
876
+ #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
877
  #: dashboard/publisher/groups-main.php:34
878
  msgid "Adverts"
879
  msgstr ""
916
  msgstr ""
917
 
918
  #: dashboard/publisher/adverts-disabled.php:21
919
+ #: dashboard/publisher/adverts-edit.php:170
920
  msgid "Activate"
921
  msgstr ""
922
 
933
  msgstr ""
934
 
935
  #: dashboard/publisher/adverts-disabled.php:37
936
+ #: dashboard/publisher/adverts-edit.php:110
937
  #: dashboard/publisher/adverts-error.php:41
938
  #: dashboard/publisher/adverts-main.php:41
939
  msgid "Title"
941
 
942
  #: dashboard/publisher/adverts-disabled.php:38
943
  #: dashboard/publisher/adverts-main.php:44
944
+ #: dashboard/publisher/groups-edit.php:329
945
  #: dashboard/publisher/groups-main.php:36
946
  msgid "Shown"
947
  msgstr ""
950
  #: dashboard/publisher/adverts-main.php:46
951
  #: dashboard/publisher/adverts-report.php:36
952
  #: dashboard/publisher/adverts-report.php:57
953
+ #: dashboard/publisher/groups-edit.php:330
954
  #: dashboard/publisher/groups-main.php:38
955
  #: dashboard/publisher/groups-report.php:37
956
  #: dashboard/publisher/groups-report.php:58
991
  msgstr ""
992
 
993
  #: dashboard/publisher/adverts-edit.php:51
994
+ msgid ""
995
+ "You did not use %asset% (or %image%) in your AdCode but did select a file to "
996
+ "use!"
997
  msgstr ""
998
 
999
  #: dashboard/publisher/adverts-edit.php:54
 
 
 
 
1000
  msgid ""
1001
+ "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1002
+ "use!"
1003
  msgstr ""
1004
 
1005
+ #: dashboard/publisher/adverts-edit.php:57
1006
  msgid ""
1007
  "There is a problem saving the image. Please reset your image and re-save the "
1008
  "ad!"
1009
  msgstr ""
1010
 
1011
+ #: dashboard/publisher/adverts-edit.php:60
 
 
 
 
1012
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1013
  msgstr ""
1014
 
1015
+ #: dashboard/publisher/adverts-edit.php:65
1016
  msgid ""
1017
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1018
  "the ad!"
1019
  msgstr ""
1020
 
1021
+ #: dashboard/publisher/adverts-edit.php:68
1022
  msgid "This ad is expired and currently not shown on your website!"
1023
  msgstr ""
1024
 
1025
+ #: dashboard/publisher/adverts-edit.php:71
1026
  msgid "The ad will expire in less than 2 days!"
1027
  msgstr ""
1028
 
1029
+ #: dashboard/publisher/adverts-edit.php:74
1030
  msgid "This ad will expire in less than 7 days!"
1031
  msgstr ""
1032
 
1033
+ #: dashboard/publisher/adverts-edit.php:77
1034
  msgid "This ad has been disabled and does not rotate on your site!"
1035
  msgstr ""
1036
 
1037
+ #: dashboard/publisher/adverts-edit.php:102
1038
  msgid "New Advert"
1039
  msgstr ""
1040
 
1041
+ #: dashboard/publisher/adverts-edit.php:104
1042
  msgid "Edit Advert"
1043
  msgstr ""
1044
 
1045
+ #: dashboard/publisher/adverts-edit.php:116
1046
  msgid "AdCode"
1047
  msgstr ""
1048
 
1049
+ #: dashboard/publisher/adverts-edit.php:121
1050
  msgid "Basic Examples:"
1051
  msgstr ""
1052
 
1053
+ #: dashboard/publisher/adverts-edit.php:128
1054
  msgid "Useful tags"
1055
  msgstr ""
1056
 
1057
+ #: dashboard/publisher/adverts-edit.php:130
1058
  msgid "Insert the advert ID Number."
1059
  msgstr ""
1060
 
1061
+ #: dashboard/publisher/adverts-edit.php:130
1062
+ msgid "Required when selecting a asset below."
1063
  msgstr ""
1064
 
1065
+ #: dashboard/publisher/adverts-edit.php:130
1066
  msgid "Insert the advert name."
1067
  msgstr ""
1068
 
1069
+ #: dashboard/publisher/adverts-edit.php:130
1070
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1071
  msgstr ""
1072
 
1073
+ #: dashboard/publisher/adverts-edit.php:130
1074
  msgid "Add inside the <a> tag to open advert in a new window."
1075
  msgstr ""
1076
 
1077
+ #: dashboard/publisher/adverts-edit.php:130
1078
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1079
  msgstr ""
1080
 
1081
+ #: dashboard/publisher/adverts-edit.php:130
1082
  msgid ""
1083
  "Place the cursor in your AdCode where you want to add any of these tags and "
1084
  "click to add it."
1085
  msgstr ""
1086
 
1087
+ #: dashboard/publisher/adverts-edit.php:135
1088
  msgid "Preview"
1089
  msgstr ""
1090
 
1091
+ #: dashboard/publisher/adverts-edit.php:138
1092
  msgid ""
1093
  "Note: While this preview is an accurate one, it might look different then it "
1094
  "does on the website."
1095
  msgstr ""
1096
 
1097
+ #: dashboard/publisher/adverts-edit.php:139
1098
  msgid ""
1099
  "This is because of CSS differences. Your themes CSS file is not active here!"
1100
  msgstr ""
1101
 
1102
+ #: dashboard/publisher/adverts-edit.php:144
1103
  msgid "Banner asset"
1104
  msgstr ""
1105
 
1106
+ #: dashboard/publisher/adverts-edit.php:147
1107
  msgid "WordPress media:"
1108
  msgstr ""
1109
 
1110
+ #: dashboard/publisher/adverts-edit.php:147
1111
  msgid "Select Banner"
1112
  msgstr ""
1113
 
1114
+ #: dashboard/publisher/adverts-edit.php:149
1115
  msgid "- OR -"
1116
  msgstr ""
1117
 
1118
+ #: dashboard/publisher/adverts-edit.php:151
1119
  msgid "Banner folder:"
1120
  msgstr ""
1121
 
1122
+ #: dashboard/publisher/adverts-edit.php:152
1123
  msgid "No image selected"
1124
  msgstr ""
1125
 
1126
+ #: dashboard/publisher/adverts-edit.php:156
1127
+ msgid "Use %asset% in the adcode instead of the file path."
1128
  msgstr ""
1129
 
1130
+ #: dashboard/publisher/adverts-edit.php:156
1131
  msgid ""
1132
  "Use either the text field or the dropdown. If the textfield has content that "
1133
  "field has priority."
1134
  msgstr ""
1135
 
1136
+ #: dashboard/publisher/adverts-edit.php:161
1137
+ #: dashboard/settings/statistics.php:17
1138
  msgid "Statistics"
1139
  msgstr ""
1140
 
1141
+ #: dashboard/publisher/adverts-edit.php:163
1142
  msgid "Enable click and impression tracking for this advert."
1143
  msgstr ""
1144
 
1145
+ #: dashboard/publisher/adverts-edit.php:164
1146
  msgid ""
1147
  "Note: Clicktracking does not work for Javascript adverts such as those "
1148
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1149
  "always supported."
1150
  msgstr ""
1151
 
1152
+ #: dashboard/publisher/adverts-edit.php:174
1153
  msgid "Yes, this ad will be used"
1154
  msgstr ""
1155
 
1156
+ #: dashboard/publisher/adverts-edit.php:175
1157
  msgid "No, do not show this ad anywhere"
1158
  msgstr ""
1159
 
1160
+ #: dashboard/publisher/adverts-edit.php:182
1161
  #: dashboard/publisher/adverts-main.php:114
1162
+ #: dashboard/publisher/groups-edit.php:71
1163
  #: dashboard/publisher/groups-main.php:89
1164
  msgid "Get more features with AdRotate Pro."
1165
  msgstr ""
1166
 
1167
+ #: dashboard/publisher/adverts-edit.php:185
1168
+ #: dashboard/publisher/adverts-edit.php:285
1169
+ #: dashboard/publisher/adverts-edit.php:408
1170
+ #: dashboard/publisher/adverts-edit.php:449
1171
  msgid "Save Advert"
1172
  msgstr ""
1173
 
1174
+ #: dashboard/publisher/adverts-edit.php:186
1175
+ #: dashboard/publisher/adverts-edit.php:286
1176
+ #: dashboard/publisher/adverts-edit.php:409
1177
+ #: dashboard/publisher/adverts-edit.php:450
1178
+ #: dashboard/publisher/groups-edit.php:150
1179
+ #: dashboard/publisher/groups-edit.php:297
1180
+ #: dashboard/publisher/groups-edit.php:389
1181
  msgid "Cancel"
1182
  msgstr ""
1183
 
1184
+ #: dashboard/publisher/adverts-edit.php:189
1185
+ #: dashboard/publisher/adverts-edit.php:391
1186
+ #: dashboard/publisher/groups-edit.php:132
1187
+ #: dashboard/publisher/groups-edit.php:279
1188
  msgid "Usage"
1189
  msgstr ""
1190
 
1191
+ #: dashboard/publisher/adverts-edit.php:193
1192
+ #: dashboard/publisher/adverts-edit.php:395
1193
+ #: dashboard/publisher/groups-edit.php:136
1194
+ #: dashboard/publisher/groups-edit.php:283
1195
  msgid "Widget"
1196
  msgstr ""
1197
 
1198
+ #: dashboard/publisher/adverts-edit.php:194
1199
+ #: dashboard/publisher/adverts-edit.php:396
1200
  msgid ""
1201
+ "Drag the AdRotate widget to the sidebar where you want to place the advert "
1202
+ "and select the advert or the group the advert is in."
1203
  msgstr ""
1204
 
1205
+ #: dashboard/publisher/adverts-edit.php:197
1206
+ #: dashboard/publisher/adverts-edit.php:399
1207
+ #: dashboard/publisher/groups-edit.php:140
1208
+ #: dashboard/publisher/groups-edit.php:287
1209
  msgid "In a post or page"
1210
  msgstr ""
1211
 
1212
+ #: dashboard/publisher/adverts-edit.php:199
1213
+ #: dashboard/publisher/adverts-edit.php:401
1214
+ #: dashboard/publisher/groups-edit.php:142
1215
+ #: dashboard/publisher/groups-edit.php:289
1216
  msgid "Directly in a theme"
1217
  msgstr ""
1218
 
1219
+ #: dashboard/publisher/adverts-edit.php:205
1220
  msgid "Schedule your advert"
1221
  msgstr ""
1222
 
1223
+ #: dashboard/publisher/adverts-edit.php:209
1224
  msgid "Start date (day/month/year)"
1225
  msgstr ""
1226
 
1227
+ #: dashboard/publisher/adverts-edit.php:230
1228
  msgid "End date (day/month/year)"
1229
  msgstr ""
1230
 
1231
+ #: dashboard/publisher/adverts-edit.php:253
1232
  msgid "Start time (hh:mm)"
1233
  msgstr ""
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:260
1236
  msgid "End time (hh:mm)"
1237
  msgstr ""
1238
 
1239
+ #: dashboard/publisher/adverts-edit.php:270
1240
  msgid "Maximum Clicks"
1241
  msgstr ""
1242
 
1243
+ #: dashboard/publisher/adverts-edit.php:271
1244
+ #: dashboard/publisher/adverts-edit.php:273
1245
  msgid "Leave empty or 0 to skip this."
1246
  msgstr ""
1247
 
1248
+ #: dashboard/publisher/adverts-edit.php:272
1249
  msgid "Maximum Impressions"
1250
  msgstr ""
1251
 
1252
+ #: dashboard/publisher/adverts-edit.php:277
1253
  msgid "Important"
1254
  msgstr ""
1255
 
1256
+ #: dashboard/publisher/adverts-edit.php:278
1257
  msgid ""
1258
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1259
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1260
  "14:00 hours. 6AM is 6:00 hours."
1261
  msgstr ""
1262
 
1263
+ #: dashboard/publisher/adverts-edit.php:282
1264
  msgid ""
1265
  "Create multiple and more advanced schedules for each advert with AdRotate "
1266
  "Pro."
1267
  msgstr ""
1268
 
1269
+ #: dashboard/publisher/adverts-edit.php:282
1270
+ #: dashboard/publisher/adverts-edit.php:345
1271
+ #: dashboard/publisher/adverts-edit.php:389
1272
+ #: dashboard/publisher/groups-edit.php:196
1273
  msgid "Upgrade today"
1274
  msgstr ""
1275
 
1276
+ #: dashboard/publisher/adverts-edit.php:289
1277
+ #: dashboard/publisher/groups-edit.php:153
1278
  msgid "Advanced"
1279
  msgstr ""
1280
 
1281
+ #: dashboard/publisher/adverts-edit.php:290
1282
  msgid "Everything below is optional."
1283
  msgstr ""
1284
 
1285
+ #: dashboard/publisher/adverts-edit.php:290
1286
+ msgid "Available in AdRotate Pro!"
1287
  msgstr ""
1288
 
1289
+ #: dashboard/publisher/adverts-edit.php:295
1290
+ #: dashboard/publisher/adverts-main.php:42
1291
+ #: dashboard/publisher/groups-edit.php:332
1292
+ msgid "Weight"
1293
  msgstr ""
1294
 
1295
+ #: dashboard/publisher/adverts-edit.php:298
1296
+ msgid "Few impressions"
1297
  msgstr ""
1298
 
1299
+ #: dashboard/publisher/adverts-edit.php:303
1300
+ msgid "Less than average"
1301
  msgstr ""
1302
 
1303
+ #: dashboard/publisher/adverts-edit.php:308
1304
+ msgid "Normal impressions"
1305
  msgstr ""
1306
 
1307
+ #: dashboard/publisher/adverts-edit.php:313
1308
+ #, fuzzy
1309
+ msgid "More than average"
1310
+ msgstr "Plus d'informations..."
1311
+
1312
+ #: dashboard/publisher/adverts-edit.php:318
1313
+ msgid "Many impressions"
1314
  msgstr ""
1315
 
1316
+ #: dashboard/publisher/adverts-edit.php:323
1317
+ msgid "Mobile"
1318
  msgstr ""
1319
 
1320
+ #: dashboard/publisher/adverts-edit.php:325
1321
+ msgid "Computers"
1322
  msgstr ""
1323
 
1324
+ #: dashboard/publisher/adverts-edit.php:328
1325
+ msgid "Smartphones"
 
 
1326
  msgstr ""
1327
 
1328
+ #: dashboard/publisher/adverts-edit.php:331
1329
+ msgid "Tablets"
 
 
1330
  msgstr ""
1331
 
1332
+ #: dashboard/publisher/adverts-edit.php:334
1333
  msgid ""
1334
+ "Also enable mobile support in the group this advert goes in or these are "
1335
+ "ignored."
1336
  msgstr ""
1337
 
1338
+ #: dashboard/publisher/adverts-edit.php:338
1339
+ #: dashboard/publisher/groups-edit.php:190
1340
  msgid "Sortorder"
1341
  msgstr ""
1342
 
1343
+ #: dashboard/publisher/adverts-edit.php:340
1344
+ #: dashboard/publisher/groups-edit.php:192
1345
  msgid "For administrative purposes set a sortorder."
1346
  msgstr ""
1347
 
1348
+ #: dashboard/publisher/adverts-edit.php:340
1349
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1350
  msgstr ""
1351
 
1352
+ #: dashboard/publisher/adverts-edit.php:345
1353
  msgid ""
1354
  "With AdRotate Pro you can easily select which devices the advert should show "
1355
  "on!"
1356
  msgstr ""
1357
 
1358
+ #: dashboard/publisher/adverts-edit.php:347
1359
  msgid "Geo Targeting in AdRotate Pro"
1360
  msgstr ""
1361
 
1362
+ #: dashboard/publisher/adverts-edit.php:348
1363
  msgid ""
1364
  "Assign the advert to a group and enable that group to use Geo Targeting."
1365
  msgstr ""
1366
 
1367
+ #: dashboard/publisher/adverts-edit.php:352
1368
  msgid "Cities/States"
1369
  msgstr ""
1370
 
1371
+ #: dashboard/publisher/adverts-edit.php:355
1372
  msgid ""
1373
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1374
  "states ISO codes are supported)"
1375
  msgstr ""
1376
 
1377
+ #: dashboard/publisher/adverts-edit.php:355
1378
  msgid ""
1379
  "AdRotate does not check the validity of names so make sure you spell them "
1380
  "correctly!"
1381
  msgstr ""
1382
 
1383
+ #: dashboard/publisher/adverts-edit.php:359
1384
  msgid "Countries"
1385
  msgstr ""
1386
 
1387
+ #: dashboard/publisher/adverts-edit.php:384
1388
  msgid "Select the countries you want the adverts to show in."
1389
  msgstr ""
1390
 
1391
+ #: dashboard/publisher/adverts-edit.php:384
1392
  msgid "Cities take priority and will be filtered first."
1393
  msgstr ""
1394
 
1395
+ #: dashboard/publisher/adverts-edit.php:389
1396
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1397
  msgstr ""
1398
 
1399
+ #: dashboard/publisher/adverts-edit.php:413
1400
  msgid "Select Groups"
1401
  msgstr ""
1402
 
1403
+ #: dashboard/publisher/adverts-edit.php:418
1404
  msgid "ID - Name"
1405
  msgstr ""
1406
 
1407
+ #: dashboard/publisher/adverts-edit.php:428
1408
  #: dashboard/publisher/groups-main.php:60
1409
+ #: dashboard/settings/geotargeting.php:49
1410
  msgid "Default"
1411
  msgstr ""
1412
 
1413
+ #: dashboard/publisher/adverts-edit.php:429
1414
  #: dashboard/publisher/groups-main.php:61
1415
  msgid "Dynamic"
1416
  msgstr ""
1417
 
1418
+ #: dashboard/publisher/adverts-edit.php:429
1419
  #: dashboard/publisher/groups-main.php:61
1420
  msgid "second rotation"
1421
  msgstr ""
1422
 
1423
+ #: dashboard/publisher/adverts-edit.php:430
1424
  #: dashboard/publisher/groups-main.php:62
1425
  msgid "Block"
1426
  msgstr ""
1427
 
1428
+ #: dashboard/publisher/adverts-edit.php:430
1429
  #: dashboard/publisher/groups-main.php:62
1430
  msgid "grid"
1431
  msgstr ""
1432
 
1433
+ #: dashboard/publisher/adverts-edit.php:431
1434
+ #: dashboard/publisher/groups-edit.php:198
1435
  #: dashboard/publisher/groups-main.php:63
1436
  msgid "Post Injection"
1437
  msgstr ""
1438
 
1439
+ #: dashboard/publisher/adverts-edit.php:432
1440
  msgid "Geolocation"
1441
  msgstr ""
1442
 
1443
+ #: dashboard/publisher/adverts-edit.php:438
1444
+ #: dashboard/publisher/groups-edit.php:57
1445
  #: dashboard/publisher/groups-main.php:70
1446
  msgid "Mode"
1447
  msgstr ""
1481
  msgstr ""
1482
 
1483
  #: dashboard/publisher/adverts-error.php:71
1484
+ #: dashboard/publisher/groups-edit.php:382
1485
  msgid "Configuration errors."
1486
  msgstr ""
1487
 
1493
  msgid "Export to XML"
1494
  msgstr ""
1495
 
 
 
 
 
 
1496
  #: dashboard/publisher/adverts-main.php:45
1497
  #: dashboard/publisher/adverts-main.php:47
1498
  #: dashboard/publisher/groups-main.php:37
1530
  msgid "Monthly overview of clicks and impressions"
1531
  msgstr ""
1532
 
1533
+ #: dashboard/publisher/adverts-report.php:64
1534
+ #: dashboard/publisher/groups-report.php:65
1535
+ #: dashboard/settings/notifications.php:60
1536
+ #: dashboard/settings/notifications.php:90
1537
+ msgid "Note:"
1538
+ msgstr ""
1539
+
1540
  #: dashboard/publisher/adverts-report.php:64
1541
  #: dashboard/publisher/groups-report.php:65
1542
  msgid ""
1552
  msgid "Edit Group"
1553
  msgstr ""
1554
 
1555
+ #: dashboard/publisher/groups-edit.php:60
1556
  msgid "Default - Show one ad at a time"
1557
  msgstr ""
1558
 
1559
+ #: dashboard/publisher/groups-edit.php:61
1560
  msgid "Dynamic Mode - Show a different ad every few seconds"
1561
  msgstr ""
1562
 
1563
+ #: dashboard/publisher/groups-edit.php:62
1564
  msgid "Block Mode - Show a block of adverts"
1565
  msgstr ""
1566
 
1567
+ #: dashboard/publisher/groups-edit.php:66
1568
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1569
  msgstr ""
1570
 
1571
+ #: dashboard/publisher/groups-edit.php:73
1572
+ #: dashboard/publisher/groups-edit.php:100
1573
  msgid "Dynamic and Block Mode"
1574
  msgstr ""
1575
 
1576
+ #: dashboard/publisher/groups-edit.php:74
1577
  msgid "Only required if your group is in Dynamic or Block mode."
1578
  msgstr ""
1579
 
1580
+ #: dashboard/publisher/groups-edit.php:78
1581
  msgid "Block size"
1582
  msgstr ""
1583
 
1584
+ #: dashboard/publisher/groups-edit.php:84
1585
  msgid "rows"
1586
  msgstr ""
1587
 
1588
+ #: dashboard/publisher/groups-edit.php:88
1589
  msgid "columns"
1590
  msgstr ""
1591
 
1592
+ #: dashboard/publisher/groups-edit.php:91
1593
  msgid "Block Mode"
1594
  msgstr ""
1595
 
1596
+ #: dashboard/publisher/groups-edit.php:91
1597
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1598
  msgstr ""
1599
 
1600
+ #: dashboard/publisher/groups-edit.php:95
1601
  msgid "Advert size"
1602
  msgstr ""
1603
 
1604
+ #: dashboard/publisher/groups-edit.php:97
1605
  msgid "pixel(s) wide"
1606
  msgstr ""
1607
 
1608
+ #: dashboard/publisher/groups-edit.php:97
1609
  msgid "pixel(s) high."
1610
  msgstr ""
1611
 
1612
+ #: dashboard/publisher/groups-edit.php:100
1613
  msgid ""
1614
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1615
  "recommended). Default: 125/125."
1616
  msgstr ""
1617
 
1618
+ #: dashboard/publisher/groups-edit.php:104
1619
  msgid "Automated refresh"
1620
  msgstr ""
1621
 
1622
+ #: dashboard/publisher/groups-edit.php:123
1623
  msgid "seconds."
1624
  msgstr ""
1625
 
1626
+ #: dashboard/publisher/groups-edit.php:126
1627
  msgid "Dynamic Mode"
1628
  msgstr ""
1629
 
1630
+ #: dashboard/publisher/groups-edit.php:126
1631
  msgid ""
1632
  "Load a new advert in this interval without reloading the page. Default: 6."
1633
  msgstr ""
1634
 
1635
+ #: dashboard/publisher/groups-edit.php:137
1636
+ #: dashboard/publisher/groups-edit.php:284
1637
  msgid ""
1638
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1639
  "Adverts\" and enter ID"
1640
  msgstr ""
1641
 
1642
+ #: dashboard/publisher/groups-edit.php:149
1643
+ #: dashboard/publisher/groups-edit.php:296
1644
+ #: dashboard/publisher/groups-edit.php:388
1645
  msgid "Save Group"
1646
  msgstr ""
1647
 
1648
+ #: dashboard/publisher/groups-edit.php:157
1649
  msgid "Advert Margin"
1650
  msgstr ""
1651
 
1652
+ #: dashboard/publisher/groups-edit.php:159
1653
  msgid "pixel(s)"
1654
  msgstr ""
1655
 
1656
+ #: dashboard/publisher/groups-edit.php:162
1657
  msgid "A transparent area outside the advert in pixels. Default: 0."
1658
  msgstr ""
1659
 
1660
+ #: dashboard/publisher/groups-edit.php:162
1661
  msgid "Set to 0 to disable."
1662
  msgstr ""
1663
 
1664
+ #: dashboard/publisher/groups-edit.php:162
1665
  msgid "Margins are automatically disabled for blocks where required."
1666
  msgstr ""
1667
 
1668
+ #: dashboard/publisher/groups-edit.php:166
1669
  msgid "Align the group"
1670
  msgstr ""
1671
 
1672
+ #: dashboard/publisher/groups-edit.php:169
1673
  msgid "None (Default)"
1674
  msgstr ""
1675
 
1676
+ #: dashboard/publisher/groups-edit.php:170
1677
  msgid "Left"
1678
  msgstr ""
1679
 
1680
+ #: dashboard/publisher/groups-edit.php:171
1681
  msgid "Right"
1682
  msgstr ""
1683
 
1684
+ #: dashboard/publisher/groups-edit.php:172
1685
  msgid "Center"
1686
  msgstr ""
1687
 
1688
+ #: dashboard/publisher/groups-edit.php:176
1689
  msgid ""
1690
  "Align the group in your post or page. Using 'center' may affect your margin "
1691
  "setting. Not every theme supports this feature."
1692
  msgstr ""
1693
 
1694
+ #: dashboard/publisher/groups-edit.php:180
1695
+ #: dashboard/settings/advertisers.php:38
1696
  msgid "Geo Targeting"
1697
  msgstr ""
1698
 
1699
+ #: dashboard/publisher/groups-edit.php:181
1700
  msgid "Enable Geo Targeting for this group."
1701
  msgstr ""
1702
 
1703
+ #: dashboard/publisher/groups-edit.php:182
1704
  msgid "Do not forget to tell the adverts for which areas they should show."
1705
  msgstr ""
1706
 
1707
+ #: dashboard/publisher/groups-edit.php:185
1708
  msgid "Mobile support"
1709
  msgstr ""
1710
 
1711
+ #: dashboard/publisher/groups-edit.php:186
1712
  msgid "Enable mobile support for this group."
1713
  msgstr ""
1714
 
1715
+ #: dashboard/publisher/groups-edit.php:187
1716
  msgid "Do not forget to put at least one mobile advert in this group."
1717
  msgstr ""
1718
 
1719
+ #: dashboard/publisher/groups-edit.php:192
1720
  msgid "Leave empty or 0 to skip this. Will default to group id."
1721
  msgstr ""
1722
 
1723
+ #: dashboard/publisher/groups-edit.php:196
1724
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1725
  msgstr ""
1726
 
1727
+ #: dashboard/publisher/groups-edit.php:201
1728
  msgid "In categories?"
1729
  msgstr ""
1730
 
1731
+ #: dashboard/publisher/groups-edit.php:205
1732
+ #: dashboard/publisher/groups-edit.php:243
1733
+ #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1734
  msgid "Disabled"
1735
  msgstr ""
1736
 
1737
+ #: dashboard/publisher/groups-edit.php:206
1738
+ #: dashboard/publisher/groups-edit.php:244
1739
  msgid "Before content"
1740
  msgstr ""
1741
 
1742
+ #: dashboard/publisher/groups-edit.php:207
1743
+ #: dashboard/publisher/groups-edit.php:245
1744
  msgid "After content"
1745
  msgstr ""
1746
 
1747
+ #: dashboard/publisher/groups-edit.php:208
1748
+ #: dashboard/publisher/groups-edit.php:246
1749
  msgid "Before and after content"
1750
  msgstr ""
1751
 
1752
+ #: dashboard/publisher/groups-edit.php:209
1753
+ #: dashboard/publisher/groups-edit.php:247
1754
  msgid "Inside the content..."
1755
  msgstr ""
1756
 
1757
+ #: dashboard/publisher/groups-edit.php:215
1758
+ #: dashboard/publisher/groups-edit.php:253
1759
  msgid "after the middle paragraph"
1760
  msgstr ""
1761
 
1762
+ #: dashboard/publisher/groups-edit.php:216
1763
+ #: dashboard/publisher/groups-edit.php:254
1764
  msgid "after the 1st paragraph"
1765
  msgstr ""
1766
 
1767
+ #: dashboard/publisher/groups-edit.php:217
1768
+ #: dashboard/publisher/groups-edit.php:255
1769
  msgid "after the 2nd paragraph"
1770
  msgstr ""
1771
 
1772
+ #: dashboard/publisher/groups-edit.php:218
1773
+ #: dashboard/publisher/groups-edit.php:256
1774
  msgid "after the 3rd paragraph"
1775
  msgstr ""
1776
 
1777
+ #: dashboard/publisher/groups-edit.php:219
1778
+ #: dashboard/publisher/groups-edit.php:257
1779
  msgid "after the 4th paragraph"
1780
  msgstr ""
1781
 
1782
+ #: dashboard/publisher/groups-edit.php:220
1783
+ #: dashboard/publisher/groups-edit.php:258
1784
  msgid "after the 5th paragraph"
1785
  msgstr ""
1786
 
1787
+ #: dashboard/publisher/groups-edit.php:221
1788
+ #: dashboard/publisher/groups-edit.php:259
1789
  msgid "after the 6th paragraph"
1790
  msgstr ""
1791
 
1792
+ #: dashboard/publisher/groups-edit.php:222
1793
+ #: dashboard/publisher/groups-edit.php:260
1794
  msgid "after the 7th paragraph"
1795
  msgstr ""
1796
 
1797
+ #: dashboard/publisher/groups-edit.php:223
1798
+ #: dashboard/publisher/groups-edit.php:261
1799
  msgid "after the 8th paragraph"
1800
  msgstr ""
1801
 
1802
+ #: dashboard/publisher/groups-edit.php:229
1803
  msgid "Which categories?"
1804
  msgstr ""
1805
 
1806
+ #: dashboard/publisher/groups-edit.php:234
1807
  msgid "Click the categories posts you want the adverts to show in."
1808
  msgstr ""
1809
 
1810
+ #: dashboard/publisher/groups-edit.php:239
1811
  msgid "In pages?"
1812
  msgstr ""
1813
 
1814
+ #: dashboard/publisher/groups-edit.php:267
1815
  msgid "Which pages?"
1816
  msgstr ""
1817
 
1818
+ #: dashboard/publisher/groups-edit.php:272
1819
  msgid "Click the pages you want the adverts to show in."
1820
  msgstr ""
1821
 
1822
+ #: dashboard/publisher/groups-edit.php:300
1823
  msgid "Wrapper code"
1824
  msgstr ""
1825
 
1826
+ #: dashboard/publisher/groups-edit.php:301
1827
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1828
  msgstr ""
1829
 
1830
+ #: dashboard/publisher/groups-edit.php:305
1831
  msgid "Before advert"
1832
  msgstr ""
1833
 
1834
+ #: dashboard/publisher/groups-edit.php:309
1835
  msgid "Options:"
1836
  msgstr ""
1837
 
1838
+ #: dashboard/publisher/groups-edit.php:313
1839
  msgid "After advert"
1840
  msgstr ""
1841
 
1842
+ #: dashboard/publisher/groups-edit.php:322
1843
  msgid "Select adverts"
1844
  msgstr ""
1845
 
1846
+ #: dashboard/publisher/groups-edit.php:327
1847
  msgid "Choose adverts"
1848
  msgstr ""
1849
 
1850
+ #: dashboard/publisher/groups-edit.php:333
1851
  msgid "Visible until"
1852
  msgstr ""
1853
 
1854
+ #: dashboard/publisher/groups-edit.php:375
1855
  msgid "No adverts created!"
1856
  msgstr ""
1857
 
1871
  msgid "This action can not be undone!"
1872
  msgstr ""
1873
 
1874
+ #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1875
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
1876
  msgid "OK to continue, CANCEL to stop."
1877
  msgstr ""
1878
 
1884
  msgid "Statistics for group"
1885
  msgstr ""
1886
 
1887
+ #: dashboard/settings/advertisers.php:16
1888
  msgid "Advertisers - Available in AdRotate Pro"
1889
  msgstr ""
1890
 
1891
+ #: dashboard/settings/advertisers.php:17
1892
  msgid "Enable advertisers so they can review and manage their own ads."
1893
  msgstr ""
1894
 
1895
+ #: dashboard/settings/advertisers.php:20
1896
  msgid "Enable Advertisers"
1897
  msgstr ""
1898
 
1899
+ #: dashboard/settings/advertisers.php:22
1900
  msgid "Allow adverts to be coupled to users (Advertisers)."
1901
  msgstr ""
1902
 
1903
+ #: dashboard/settings/advertisers.php:26
1904
  msgid "Edit/update adverts"
1905
  msgstr ""
1906
 
1907
+ #: dashboard/settings/advertisers.php:28
1908
  msgid "Allow advertisers to add new or edit their adverts."
1909
  msgstr ""
1910
 
1911
+ #: dashboard/settings/advertisers.php:32
1912
+ msgid "Mobile adverts"
1913
+ msgstr ""
1914
+
1915
+ #: dashboard/settings/advertisers.php:34
1916
+ msgid "Allow advertisers to specify on which devices their ads will show."
1917
+ msgstr ""
1918
+
1919
+ #: dashboard/settings/advertisers.php:40
1920
  msgid ""
1921
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
1922
  "be enabled, too."
1923
  msgstr ""
1924
 
1925
+ #: dashboard/settings/advertisers.php:44
1926
  msgid "Advertiser role"
1927
  msgstr ""
1928
 
1929
+ #: dashboard/settings/advertisers.php:46
1930
  msgid "Create a seperate user role for your advertisers."
1931
  msgstr ""
1932
 
1933
+ #: dashboard/settings/advertisers.php:47
1934
  msgid ""
1935
  "Don't forget to give these users access to their advertiser dashboard via "
1936
  "the Roles tab."
1937
  msgstr ""
1938
 
1939
+ #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
1940
+ #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
1941
+ #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
1942
+ #: dashboard/settings/statistics.php:73
1943
+ msgid "Update Options"
1944
+ msgstr ""
1945
+
1946
+ #: dashboard/settings/general.php:17
1947
  msgid "General Settings"
1948
  msgstr ""
1949
 
1950
+ #: dashboard/settings/general.php:18
1951
  msgid "General settings for AdRotate."
1952
  msgstr ""
1953
 
1954
+ #: dashboard/settings/general.php:18 dashboard/settings/statistics.php:18
1955
  msgid "Some options are only available in AdRotate Pro!"
1956
  msgstr ""
1957
 
1958
+ #: dashboard/settings/general.php:21
1959
  msgid "Shortcode in widgets"
1960
  msgstr ""
1961
 
1962
+ #: dashboard/settings/general.php:22
1963
  msgid ""
1964
  "Enable this option to if your theme does not support shortcodes in the "
1965
  "WordPress text widget."
1966
  msgstr ""
1967
 
1968
+ #: dashboard/settings/general.php:25
1969
  msgid "Disable live preview"
1970
  msgstr ""
1971
 
1972
+ #: dashboard/settings/general.php:26
1973
  msgid ""
1974
  "Enable this option if you have faulty adverts that overflow their designated "
1975
  "area while creating/editing adverts."
1976
  msgstr ""
1977
 
1978
+ #: dashboard/settings/general.php:29
1979
  msgid "Disable dynamic mode"
1980
  msgstr ""
1981
 
1982
+ #: dashboard/settings/general.php:30
1983
  msgid ""
1984
  "Enable this option to disable dynamic mode in groups for mobile devices if "
1985
  "you notice skipping or jumpy content."
1986
  msgstr ""
1987
 
1988
+ #: dashboard/settings/general.php:33
1989
  msgid "Load jQuery"
1990
  msgstr ""
1991
 
1992
+ #: dashboard/settings/general.php:34
1993
  msgid ""
1994
  "Enable this option if your theme does not load jQuery. jQuery is required "
1995
  "for dynamic groups, statistics and some other features."
1996
  msgstr ""
1997
 
1998
+ #: dashboard/settings/general.php:37
1999
  msgid "Load scripts in footer?"
2000
  msgstr ""
2001
 
2002
+ #: dashboard/settings/general.php:38
2003
  msgid ""
2004
  "Enable this option if you want to load all AdRotate Javascripts in the "
2005
  "footer of your site."
2006
  msgstr ""
2007
 
2008
+ #: dashboard/settings/general.php:41
2009
  msgid "Adblock disguise"
2010
  msgstr ""
2011
 
2012
+ #: dashboard/settings/general.php:43
2013
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2014
  msgstr ""
2015
 
2016
+ #: dashboard/settings/general.php:44
2017
  msgid ""
2018
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2019
  msgstr ""
2020
 
2021
+ #: dashboard/settings/general.php:44
2022
  msgid ""
2023
  "To also apply this feature to widgets, use a text widget with a shortcode "
2024
  "instead of the AdRotate widget."
2025
  msgstr ""
2026
 
2027
+ #: dashboard/settings/general.php:44
2028
  msgid ""
2029
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2030
  "feature will have little effect!"
2031
  msgstr ""
2032
 
2033
+ #: dashboard/settings/general.php:49
2034
  msgid "Banner Folder"
2035
  msgstr ""
2036
 
2037
+ #: dashboard/settings/general.php:50
2038
  msgid "Set a location where your banner images will be stored."
2039
  msgstr ""
2040
 
2041
+ #: dashboard/settings/general.php:53
2042
  msgid "Location"
2043
  msgstr ""
2044
 
2045
+ #: dashboard/settings/general.php:55
2046
  msgid "(Default: wp-content/banners/)."
2047
  msgstr ""
2048
 
2049
+ #: dashboard/settings/general.php:56
2050
  msgid ""
2051
  "To try and trick ad blockers you could set the folder to something crazy "
2052
  "like:"
2053
  msgstr ""
2054
 
2055
+ #: dashboard/settings/general.php:57
2056
  msgid ""
2057
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2058
  "will show errors when the folder is missing."
2059
  msgstr ""
2060
 
2061
+ #: dashboard/settings/general.php:62
2062
  msgid "Bot filter"
2063
  msgstr ""
2064
 
2065
+ #: dashboard/settings/general.php:63
2066
  msgid "The bot filter is used for the AdRotate stats tracker."
2067
  msgstr ""
2068
 
2069
+ #: dashboard/settings/general.php:66
2070
  msgid "User-Agent Filter"
2071
  msgstr ""
2072
 
2073
+ #: dashboard/settings/general.php:69
2074
  msgid ""
2075
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2076
  msgstr ""
2077
 
2078
+ #: dashboard/settings/general.php:70
2079
  msgid ""
2080
  "Keep in mind that this might give false positives. The word 'fire' also "
2081
  "matches 'firefox', but not vice-versa. So be careful!"
2082
  msgstr ""
2083
 
2084
+ #: dashboard/settings/general.php:71
2085
  msgid ""
2086
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2087
  "characters are stripped out."
2088
  msgstr ""
2089
 
2090
+ #: dashboard/settings/general.php:72
2091
  msgid ""
2092
  "Additionally to the list specified here, empty User-Agents are blocked as "
2093
  "well."
2094
  msgstr ""
2095
 
2096
+ #: dashboard/settings/general.php:72
2097
  msgid "Learn more about"
2098
  msgstr ""
2099
 
2100
+ #: dashboard/settings/general.php:72
2101
  msgid "user-agents"
2102
  msgstr ""
2103
 
2104
+ #: dashboard/settings/geotargeting.php:17
2105
  msgid "Geo Targeting - Available in AdRotate Pro"
2106
  msgstr ""
2107
 
2108
+ #: dashboard/settings/geotargeting.php:18
2109
  msgid "Target certain areas in the world for better advertising oppurtunities."
2110
  msgstr ""
2111
 
2112
+ #: dashboard/settings/geotargeting.php:21
2113
  msgid "Which Geo Service"
2114
  msgstr ""
2115
 
2116
+ #: dashboard/settings/geotargeting.php:28
2117
+ msgid "Experimental"
 
 
2118
  msgstr ""
2119
 
2120
+ #: dashboard/settings/geotargeting.php:31
2121
+ msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2122
+ msgstr ""
2123
+
2124
+ #: dashboard/settings/geotargeting.php:32
2125
+ #: dashboard/settings/geotargeting.php:36
2126
+ #: dashboard/settings/geotargeting.php:40
2127
+ msgid "Supports:"
2128
+ msgstr ""
2129
+
2130
+ #: dashboard/settings/geotargeting.php:33
2131
+ #: dashboard/settings/geotargeting.php:37
2132
+ #: dashboard/settings/geotargeting.php:41
2133
+ msgid "Scalability:"
2134
  msgstr ""
2135
 
2136
  #: dashboard/settings/geotargeting.php:33
2137
+ msgid "Suitable for small to medium websites."
2138
+ msgstr ""
2139
+
2140
+ #: dashboard/settings/geotargeting.php:35
2141
+ msgid ""
2142
+ "The most accurate geo targeting you can get for only $20 USD per 50000 "
2143
+ "lookups."
2144
+ msgstr ""
2145
+
2146
+ #: dashboard/settings/geotargeting.php:37
2147
+ msgid "Suitable for any size website as long as you have lookups."
2148
+ msgstr ""
2149
+
2150
+ #: dashboard/settings/geotargeting.php:39
2151
+ msgid "Basic geolocation included in every CloudFlare account."
2152
+ msgstr ""
2153
+
2154
+ #: dashboard/settings/geotargeting.php:41
2155
+ msgid "Suitable for any size website."
2156
+ msgstr ""
2157
+
2158
+ #: dashboard/settings/geotargeting.php:46
2159
  msgid "Geo Cookie Lifespan"
2160
  msgstr ""
2161
 
2162
+ #: dashboard/settings/geotargeting.php:55
2163
  msgid "Hours."
2164
  msgstr ""
2165
 
2166
+ #: dashboard/settings/geotargeting.php:56
2167
  msgid ""
2168
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2169
  "cookie last? A longer period is less accurate for mobile users but may "
2170
  "reduce the usage of your lookups drastically."
2171
  msgstr ""
2172
 
2173
+ #: dashboard/settings/geotargeting.php:62
2174
  msgid "MaxMind City/Country"
2175
  msgstr ""
2176
 
2177
+ #: dashboard/settings/geotargeting.php:65
2178
  msgid "Username/Email"
2179
  msgstr ""
2180
 
2181
+ #: dashboard/settings/geotargeting.php:69
2182
  msgid "Password/License Key"
2183
  msgstr ""
2184
 
2185
+ #: dashboard/settings/maintenance.php:16
2186
  msgid "Maintenance"
2187
  msgstr ""
2188
 
2189
+ #: dashboard/settings/maintenance.php:17
2190
  msgid ""
2191
  "Use these functions when you notice your database is slow, unresponsive and "
2192
  "sluggish."
2193
  msgstr ""
2194
 
2195
+ #: dashboard/settings/maintenance.php:20 dashboard/settings/maintenance.php:22
2196
  msgid "Optimize Database"
2197
  msgstr ""
2198
 
2199
+ #: dashboard/settings/maintenance.php:22
2200
  msgid "You are about to optimize the AdRotate database."
2201
  msgstr ""
2202
 
2203
+ #: dashboard/settings/maintenance.php:22
2204
  msgid "Did you make a backup of your database?"
2205
  msgstr ""
2206
 
2207
+ #: dashboard/settings/maintenance.php:22
2208
  msgid ""
2209
  "This may take a moment and may cause your website to respond slow "
2210
  "temporarily!"
2211
  msgstr ""
2212
 
2213
+ #: dashboard/settings/maintenance.php:23
2214
  msgid "Cleans up overhead data in the AdRotate tables."
2215
  msgstr ""
2216
 
2217
+ #: dashboard/settings/maintenance.php:24
2218
  msgid ""
2219
  "Overhead data is accumulated garbage resulting from many changes you've "
2220
  "made. This can vary from nothing to hundreds of KiB of data."
2221
  msgstr ""
2222
 
2223
+ #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
2224
  msgid "Clean-up Database"
2225
  msgstr ""
2226
 
2227
+ #: dashboard/settings/maintenance.php:30
2228
  msgid ""
2229
  "You are about to clean up your database. This may delete expired schedules "
2230
  "and older statistics."
2231
  msgstr ""
2232
 
2233
+ #: dashboard/settings/maintenance.php:30
2234
  msgid "Are you sure you want to continue?"
2235
  msgstr ""
2236
 
2237
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
2238
  msgid "This might take a while and may slow down your site during this action!"
2239
  msgstr ""
2240
 
2241
+ #: dashboard/settings/maintenance.php:31
2242
  msgid "Delete stats older than 356 days (Optional)."
2243
  msgstr ""
2244
 
2245
+ #: dashboard/settings/maintenance.php:32
2246
  msgid ""
2247
  "AdRotate creates empty records when you start making ads, groups or "
2248
  "schedules. In rare occasions these records are faulty."
2249
  msgstr ""
2250
 
2251
+ #: dashboard/settings/maintenance.php:32
2252
  msgid ""
2253
  "If you made an ad, group or schedule that does not save when you make it use "
2254
  "this button to delete those empty records."
2255
  msgstr ""
2256
 
2257
+ #: dashboard/settings/maintenance.php:32
2258
  msgid ""
2259
  "Additionally you can clean up old schedules and/or statistics. This will "
2260
  "improve the speed of your site."
2261
  msgstr ""
2262
 
2263
+ #: dashboard/settings/maintenance.php:36
2264
  msgid "Re-evaluate Ads"
2265
  msgstr ""
2266
 
2267
+ #: dashboard/settings/maintenance.php:38
2268
  msgid "Re-evaluate all ads"
2269
  msgstr ""
2270
 
2271
+ #: dashboard/settings/maintenance.php:38
2272
  msgid "You are about to check all ads for errors."
2273
  msgstr ""
2274
 
2275
+ #: dashboard/settings/maintenance.php:39
2276
  msgid ""
2277
  "This will apply all evaluation rules to all ads to see if any error slipped "
2278
  "in. Normally you should not need this feature."
2279
  msgstr ""
2280
 
2281
+ #: dashboard/settings/maintenance.php:43
2282
  msgid ""
2283
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2284
  "database. They only apply to your ads/groups and stats. Not to other "
2291
  "is not a valid point in any case."
2292
  msgstr ""
2293
 
2294
+ #: dashboard/settings/maintenance.php:45
2295
  msgid "Troubleshooting"
2296
  msgstr ""
2297
 
2298
+ #: dashboard/settings/maintenance.php:46
2299
  msgid ""
2300
  "The below options are not meant for normal use and are only there for "
2301
  "developers to review saved settings or how ads are selected. These can be "
2303
  "SHOULD BE LEFT UNCHECKED!!"
2304
  msgstr ""
2305
 
2306
+ #: dashboard/settings/maintenance.php:49
2307
  msgid "Developer Debug"
2308
  msgstr ""
2309
 
2310
+ #: dashboard/settings/maintenance.php:51
2311
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2312
  msgstr ""
2313
 
2314
+ #: dashboard/settings/maintenance.php:52
2315
  msgid "View advert specs and (some) stats in the dashboard."
2316
  msgstr ""
2317
 
2318
+ #: dashboard/settings/maintenance.php:53
2319
  msgid ""
2320
  "Disable timers for clicks and impressions and enable a alert window for "
2321
  "clicktracking."
2322
  msgstr ""
2323
 
2324
+ #: dashboard/settings/maintenance.php:54
2325
  msgid "Temporarily disable encryption on the redirect url."
2326
  msgstr ""
2327
 
 
 
 
 
 
 
 
 
2328
  #: dashboard/settings/maintenance.php:59
2329
+ msgid "Status and Versions"
2330
  msgstr ""
2331
 
2332
  #: dashboard/settings/maintenance.php:62
 
 
 
 
 
 
 
 
2333
  msgid "Current status of adverts"
2334
  msgstr ""
2335
 
2336
+ #: dashboard/settings/maintenance.php:63
2337
  msgid "Normal"
2338
  msgstr ""
2339
 
2340
+ #: dashboard/settings/maintenance.php:63
2341
  msgid "Error"
2342
  msgstr ""
2343
 
2344
+ #: dashboard/settings/maintenance.php:63
2345
  msgid "Expired"
2346
  msgstr ""
2347
 
2348
+ #: dashboard/settings/maintenance.php:63
2349
  msgid "Expires Soon"
2350
  msgstr ""
2351
 
2352
+ #: dashboard/settings/maintenance.php:63
2353
  msgid "Unknown"
2354
  msgstr ""
2355
 
2356
+ #: dashboard/settings/maintenance.php:66
2357
  msgid "Banners/assets Folder"
2358
  msgstr ""
2359
 
2360
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2361
  msgid "Exists and appears writable"
2362
  msgstr ""
2363
 
2364
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2365
  msgid "Not writable or does not exist"
2366
  msgstr ""
2367
 
2368
+ #: dashboard/settings/maintenance.php:70
2369
+ msgid "Reports Folder"
2370
+ msgstr ""
2371
+
2372
  #: dashboard/settings/maintenance.php:76
2373
+ msgid "Advert evaluation"
2374
  msgstr ""
2375
 
2376
+ #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2377
+ msgid "Not scheduled! Re-activate the plugin from the plugins page."
2378
  msgstr ""
2379
 
2380
+ #: dashboard/settings/maintenance.php:78
2381
+ msgid "Trackerdata cleanup"
2382
  msgstr ""
2383
 
2384
+ #: dashboard/settings/maintenance.php:83
2385
+ msgid "Internal Versions"
2386
+ msgstr ""
2387
+
2388
+ #: dashboard/settings/maintenance.php:84
2389
+ msgid ""
2390
+ "Unless you experience database issues or a warning shows below, these "
2391
+ "numbers are not really relevant for troubleshooting. Support may ask for "
2392
+ "them to verify your database status."
2393
+ msgstr ""
2394
+
2395
+ #: dashboard/settings/maintenance.php:87
2396
+ msgid "AdRotate version"
2397
+ msgstr ""
2398
+
2399
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2400
+ msgid "Current:"
2401
+ msgstr ""
2402
+
2403
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2404
+ msgid "Should be:"
2405
+ msgstr ""
2406
+
2407
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2408
+ msgid "Previous:"
2409
+ msgstr ""
2410
+
2411
+ #: dashboard/settings/maintenance.php:89
2412
+ msgid "Database version"
2413
+ msgstr ""
2414
+
2415
+ #: dashboard/settings/misc.php:16
2416
  msgid "Miscellaneous"
2417
  msgstr ""
2418
 
2419
+ #: dashboard/settings/misc.php:19
2420
  msgid "Widget alignment"
2421
  msgstr ""
2422
 
2423
+ #: dashboard/settings/misc.php:20
2424
  msgid ""
2425
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2426
  "not always help!)"
2427
  msgstr ""
2428
 
2429
+ #: dashboard/settings/misc.php:23
2430
  msgid "Widget padding"
2431
  msgstr ""
2432
 
2433
+ #: dashboard/settings/misc.php:24
2434
  msgid ""
2435
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2436
  "not always work!)"
2437
  msgstr ""
2438
 
2439
+ #: dashboard/settings/misc.php:28
2440
  msgid "NOTICE:"
2441
  msgstr ""
2442
 
2443
+ #: dashboard/settings/misc.php:29
2444
  msgid ""
2445
  "You have enabled W3 Total Caching support but not defined the security hash."
2446
  msgstr ""
2447
 
2448
+ #: dashboard/settings/misc.php:29
2449
  msgid ""
2450
  "AdRotate has generated the following line for you to add to your wp-config."
2451
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2452
  "add this line, check out the following guide;"
2453
  msgstr ""
2454
 
2455
+ #: dashboard/settings/misc.php:29
2456
  msgid "Set up W3 Total Caching"
2457
  msgstr ""
2458
 
2459
+ #: dashboard/settings/misc.php:33
2460
  msgid "W3 Total Caching"
2461
  msgstr ""
2462
 
2463
+ #: dashboard/settings/misc.php:34
2464
  msgid "Check this box if you use W3 Total Caching on your site."
2465
  msgstr ""
2466
 
2467
+ #: dashboard/settings/misc.php:38
2468
  msgid ""
2469
  "It may take a while for the ad to start rotating. The caching plugin needs "
2470
  "to refresh the cache. This can take up to a week if not done manually."
2471
  msgstr ""
2472
 
2473
+ #: dashboard/settings/misc.php:38
2474
  msgid ""
2475
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2476
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2477
  msgstr ""
2478
 
2479
+ #: dashboard/settings/notifications.php:18
2480
  msgid "Notifications"
2481
  msgstr ""
2482
 
2483
+ #: dashboard/settings/notifications.php:19
2484
  msgid "Set up who gets notifications if ads need your attention."
2485
  msgstr ""
2486
 
2487
+ #: dashboard/settings/notifications.php:22
2488
  msgid "How to notify"
2489
  msgstr ""
2490
 
2491
+ #: dashboard/settings/notifications.php:24
2492
  msgid "Dashboard banner."
2493
  msgstr ""
2494
 
2495
+ #: dashboard/settings/notifications.php:25
2496
  msgid "Email message."
2497
  msgstr ""
2498
 
2499
+ #: dashboard/settings/notifications.php:26
2500
  msgid "Push notifications to your smartphone."
2501
  msgstr ""
2502
 
2503
+ #: dashboard/settings/notifications.php:27
2504
  msgid ""
2505
  "Push notifications are delivered through Pushover, a notification service "
2506
  "for Android and iOS"
2507
  msgstr ""
2508
 
2509
+ #: dashboard/settings/notifications.php:27
2510
  msgid ""
2511
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2512
  "information can be found on the pushover website;"
2513
  msgstr ""
2514
 
2515
+ #: dashboard/settings/notifications.php:31
2516
  msgid "Test notification"
2517
  msgstr ""
2518
 
2519
+ #: dashboard/settings/notifications.php:33
2520
  msgid "Test"
2521
  msgstr ""
2522
 
2523
+ #: dashboard/settings/notifications.php:33
2524
  msgid ""
2525
  "Send a test notification to enabled methods. Before you test, save the "
2526
  "options first!"
2527
  msgstr ""
2528
 
2529
+ #: dashboard/settings/notifications.php:38
2530
+ msgid "Dashboard Banner"
2531
  msgstr ""
2532
 
2533
+ #: dashboard/settings/notifications.php:39
2534
  msgid ""
2535
  "These go in a dashboard banner visible to all users with access to AdRotate "
2536
  "on every WordPress dashboard page."
2537
  msgstr ""
2538
 
2539
+ #: dashboard/settings/notifications.php:42
2540
+ #: dashboard/settings/notifications.php:54
2541
+ #: dashboard/settings/notifications.php:84
2542
  msgid "What"
2543
  msgstr ""
2544
 
2545
+ #: dashboard/settings/notifications.php:44
2546
  msgid "Expired adverts."
2547
  msgstr ""
2548
 
2549
+ #: dashboard/settings/notifications.php:45
2550
  msgid "Almost expired adverts."
2551
  msgstr ""
2552
 
2553
+ #: dashboard/settings/notifications.php:50
2554
+ msgid "Email Message"
2555
  msgstr ""
2556
 
2557
+ #: dashboard/settings/notifications.php:51
2558
+ msgid ""
2559
+ "Receive email notifications about what is happening with your AdRotate setup."
2560
  msgstr ""
2561
 
2562
+ #: dashboard/settings/notifications.php:56
2563
+ #: dashboard/settings/notifications.php:86
2564
+ msgid "Daily digest of any advert status other than normal."
2565
  msgstr ""
2566
 
2567
+ #: dashboard/settings/notifications.php:57
2568
+ #: dashboard/settings/notifications.php:87
2569
+ msgid "When you are running out of Geo Targeting Lookups."
 
2570
  msgstr ""
2571
 
2572
+ #: dashboard/settings/notifications.php:58
2573
+ #: dashboard/settings/notifications.php:88
2574
+ msgid "Any advertiser saving an advert in your moderation queue."
 
2575
  msgstr ""
2576
 
2577
+ #: dashboard/settings/notifications.php:59
2578
+ #: dashboard/settings/notifications.php:89
2579
+ msgid "A moderator approved an advert from the moderation queue."
2580
  msgstr ""
2581
 
2582
+ #: dashboard/settings/notifications.php:60
2583
+ #: dashboard/settings/notifications.php:90
2584
+ msgid "A moderator rejected an advert from the moderation queue."
 
2585
  msgstr ""
2586
 
2587
+ #: dashboard/settings/notifications.php:60
2588
+ #: dashboard/settings/notifications.php:90
2589
+ msgid ""
2590
+ "If you have a lot of activity with many advertisers adding/changing adverts "
2591
+ "you may get a lot of messages!"
2592
  msgstr ""
2593
 
2594
+ #: dashboard/settings/notifications.php:60
2595
  msgid ""
2596
+ "Sending out a lot of email is sometimes seen as automated mailing and deemed "
2597
+ "spammy. This may result in automated filters such as those used in services "
2598
+ "like Google Gmail and Microsoft Hotmail/Outlook.com blocking your server. "
2599
+ "Make sure you whitelist the sending address in your email account once you "
2600
+ "start receiving notifications!"
2601
  msgstr ""
2602
 
2603
+ #: dashboard/settings/notifications.php:65
2604
+ msgid "Publishers"
2605
  msgstr ""
2606
 
2607
+ #: dashboard/settings/notifications.php:68
2608
+ msgid ""
2609
+ "Messages are sent once every 24 hours. Maximum of 5 addresses. Comma "
2610
+ "separated. This field may not be empty!"
2611
  msgstr ""
2612
 
2613
  #: dashboard/settings/notifications.php:72
2614
+ msgid "Advertisers"
2615
  msgstr ""
2616
 
2617
+ #: dashboard/settings/notifications.php:75
2618
+ msgid ""
2619
+ "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2620
+ "This field may not be empty!"
2621
  msgstr ""
2622
 
2623
+ #: dashboard/settings/notifications.php:80
2624
+ msgid "Push Notifications"
2625
  msgstr ""
2626
 
2627
+ #: dashboard/settings/notifications.php:81
2628
  msgid ""
2629
+ "Receive information about what is happening with your AdRotate setup on your "
2630
+ "smartphone via Pushover."
2631
+ msgstr ""
2632
+
2633
+ #: dashboard/settings/notifications.php:90
2634
+ msgid ""
2635
+ "Pushover has a monthly limit of 7500 messages, this should be plenty. If you "
2636
+ "run out, you will not receive push notifications until the quota is reset! "
2637
+ "Every message AdRotate sends, regardless of the number of receiving devices, "
2638
+ "counts as one message."
2639
  msgstr ""
2640
 
2641
+ #: dashboard/settings/notifications.php:95
2642
  msgid "User Key"
2643
  msgstr ""
2644
 
2645
+ #: dashboard/settings/notifications.php:97
2646
  msgid "Get your user token"
2647
  msgstr ""
2648
 
2649
+ #: dashboard/settings/notifications.php:97
2650
+ #: dashboard/settings/notifications.php:103
2651
  msgid "here"
2652
  msgstr ""
2653
 
2654
+ #: dashboard/settings/notifications.php:101
2655
  msgid "Api Token"
2656
  msgstr ""
2657
 
2658
+ #: dashboard/settings/notifications.php:103
2659
  msgid "Create your"
2660
  msgstr ""
2661
 
2662
+ #: dashboard/settings/notifications.php:103
2663
  msgid "App"
2664
  msgstr ""
2665
 
2666
+ #: dashboard/settings/notifications.php:103
2667
  msgid "and get your API token"
2668
  msgstr ""
2669
 
2670
+ #: dashboard/settings/roles.php:17
2671
  msgid "Roles"
2672
  msgstr ""
2673
 
2674
+ #: dashboard/settings/roles.php:18
2675
  msgid "Who has access to what?"
2676
  msgstr ""
2677
 
2678
+ #: dashboard/settings/roles.php:21
2679
  msgid "Manage/Add/Edit adverts"
2680
  msgstr ""
2681
 
2682
+ #: dashboard/settings/roles.php:25
2683
  msgid "Role to see and add/edit ads."
2684
  msgstr ""
2685
 
2686
+ #: dashboard/settings/roles.php:29
2687
  msgid "Delete/Reset adverts"
2688
  msgstr ""
2689
 
2690
+ #: dashboard/settings/roles.php:33
2691
  msgid "Role to delete ads and reset stats."
2692
  msgstr ""
2693
 
2694
+ #: dashboard/settings/roles.php:37
2695
  msgid "Manage/Add/Edit groups"
2696
  msgstr ""
2697
 
2698
+ #: dashboard/settings/roles.php:41
2699
  msgid "Role to see and add/edit groups."
2700
  msgstr ""
2701
 
2702
+ #: dashboard/settings/roles.php:45
2703
  msgid "Delete groups"
2704
  msgstr ""
2705
 
2706
+ #: dashboard/settings/roles.php:49
2707
  msgid "Role to delete groups."
2708
  msgstr ""
2709
 
2710
+ #: dashboard/settings/statistics.php:18
2711
  msgid "Track statistics for your adverts."
2712
  msgstr ""
2713
 
2714
+ #: dashboard/settings/statistics.php:21
2715
  msgid "How to track stats"
2716
  msgstr ""
2717
 
2718
+ #: dashboard/settings/statistics.php:30
2719
  msgid "Tracks impressions and clicks internally"
2720
  msgstr ""
2721
 
2722
+ #: dashboard/settings/statistics.php:30 dashboard/settings/statistics.php:32
2723
+ #: dashboard/settings/statistics.php:34
2724
  msgid "manual"
2725
  msgstr ""
2726
 
2727
+ #: dashboard/settings/statistics.php:31
2728
  msgid ""
2729
  "Click and Impression recording, Click and impression limits, impression "
2730
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2731
  "will only track impressions."
2732
  msgstr ""
2733
 
2734
+ #: dashboard/settings/statistics.php:32 dashboard/settings/statistics.php:34
2735
  msgid "In AdRotate Pro!"
2736
  msgstr ""
2737
 
2738
+ #: dashboard/settings/statistics.php:32
2739
  msgid ""
2740
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2741
  "attributes"
2742
  msgstr ""
2743
 
2744
+ #: dashboard/settings/statistics.php:33
2745
  msgid ""
2746
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2747
  "Contents."
2748
  msgstr ""
2749
 
2750
+ #: dashboard/settings/statistics.php:34
2751
  msgid ""
2752
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2753
  "uses onClick() and onload() in adverts"
2754
  msgstr ""
2755
 
2756
+ #: dashboard/settings/statistics.php:35
2757
  msgid ""
2758
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2759
  "Banner."
2760
  msgstr ""
2761
 
2762
+ #: dashboard/settings/statistics.php:41
2763
  msgid "Internal Tracker"
2764
  msgstr ""
2765
 
2766
+ #: dashboard/settings/statistics.php:42
2767
  msgid ""
2768
  "The settings below are for the internal tracker and have no effect when "
2769
  "using Piwik/Google Analytics."
2770
  msgstr ""
2771
 
2772
+ #: dashboard/settings/statistics.php:45
2773
  msgid "Logged in impressions"
2774
  msgstr ""
2775
 
2776
+ #: dashboard/settings/statistics.php:47
2777
  msgid "Track impressions from logged in users."
2778
  msgstr ""
2779
 
2780
+ #: dashboard/settings/statistics.php:51
2781
  msgid "Logged in clicks"
2782
  msgstr ""
2783
 
2784
+ #: dashboard/settings/statistics.php:53
2785
  msgid "Track clicks from logged in users."
2786
  msgstr ""
2787
 
2788
+ #: dashboard/settings/statistics.php:57
2789
  msgid "Impression timer"
2790
  msgstr ""
2791
 
2792
+ #: dashboard/settings/statistics.php:59 dashboard/settings/statistics.php:66
2793
  msgid "Seconds."
2794
  msgstr ""
2795
 
2796
+ #: dashboard/settings/statistics.php:60
2797
  msgid "Default: 60."
2798
  msgstr ""
2799
 
2800
+ #: dashboard/settings/statistics.php:60
2801
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2802
  msgstr ""
2803
 
2804
+ #: dashboard/settings/statistics.php:64
2805
  msgid "Click timer"
2806
  msgstr ""
2807
 
2808
+ #: dashboard/settings/statistics.php:67
2809
  msgid "Default: 86400."
2810
  msgstr ""
2811
 
2812
+ #: dashboard/settings/statistics.php:67
2813
  msgid ""
2814
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2815
  msgstr ""
2851
  #~ msgid "Normal coverage"
2852
  #~ msgstr "Normal"
2853
 
 
 
 
 
2854
  #, fuzzy
2855
  #~ msgid "Ads in group"
2856
  #~ msgstr "Pubs dans le groupe"
language/adrotate-es_ES.mo CHANGED
Binary file
language/adrotate-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate v 3.10.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-30 14:27+0800\n"
6
- "PO-Revision-Date: 2016-05-30 14:27+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"
@@ -17,114 +17,114 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:844
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
- #: adrotate-functions.php:847
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
- #: adrotate-functions.php:896
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:900
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:904
37
  msgid "Ad(s) deleted"
38
  msgstr "Anuncio(s) eliminado"
39
 
40
- #: adrotate-functions.php:908
41
  msgid "Group deleted"
42
  msgstr "Grupo borrado"
43
 
44
- #: adrotate-functions.php:912
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Estadisticas del Anuncio(s) restablecidas"
47
 
48
- #: adrotate-functions.php:916
49
  msgid "Ad(s) renewed"
50
  msgstr "Anuncio(s) renovado"
51
 
52
- #: adrotate-functions.php:920
53
  msgid "Ad(s) deactivated"
54
  msgstr "Anuncio(s) desactivado"
55
 
56
- #: adrotate-functions.php:924
57
  msgid "Ad(s) activated"
58
  msgstr "Anuncio(s) activado"
59
 
60
- #: adrotate-functions.php:928
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupo incluyendo sus anuncios eliminados"
63
 
64
- #: adrotate-functions.php:932
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Exportación Creada"
68
 
69
- #: adrotate-functions.php:937
70
  msgid "Settings saved"
71
  msgstr "Ajustes guardados"
72
 
73
- #: adrotate-functions.php:941
74
  msgid "Database optimized"
75
  msgstr "Base de Datos optimizada"
76
 
77
- #: adrotate-functions.php:945
78
  msgid "Database repaired"
79
  msgstr "Base de Datos reparada"
80
 
81
- #: adrotate-functions.php:949
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:953
86
  msgid "Empty database records removed"
87
  msgstr "Se han eliminado los registros vacios de la base de datos"
88
 
89
- #: adrotate-functions.php:958
90
  msgid "Action prohibited"
91
  msgstr "Acción prohibida"
92
 
93
- #: adrotate-functions.php:962
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:966
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:970
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:974
108
  msgid "Form can not be (partially) empty!"
109
  msgstr ""
110
 
111
- #: adrotate-functions.php:978
112
  msgid "No ads found."
113
  msgstr ""
114
 
115
- #: adrotate-functions.php:982
116
  msgid "Unexpected error"
117
  msgstr ""
118
 
119
- #: adrotate-manage-publisher.php:678
120
  msgid "AdRotate Advertiser"
121
  msgstr ""
122
 
123
- #: adrotate-output.php:574
124
  msgid "Oh no! Something went wrong!"
125
  msgstr "¡Oh, no! Algo salió mal!"
126
 
127
- #: adrotate-output.php:575
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 +132,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:576
136
  msgid ""
137
  "If you have received the url you want to visit via email, you are being "
138
  "tricked!"
@@ -140,11 +140,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:577
144
  msgid "Contact support if the issue persists:"
145
  msgstr "Si el problema persiste, contacte con el soporte:"
146
 
147
- #: adrotate-output.php:592
148
  msgid ""
149
  "Error, Ad is not available at this time due to schedule/geolocation "
150
  "restrictions or does not exist!"
@@ -152,7 +152,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:594
156
  msgid ""
157
  "Error, Ad is not available at this time due to schedule/geolocation "
158
  "restrictions!"
@@ -160,7 +160,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:601 adrotate-output.php:603
164
  msgid ""
165
  "Either there are no banners, they are disabled or none qualified for this "
166
  "location!"
@@ -168,19 +168,19 @@ msgstr ""
168
  "O bien no hay banners, estan desactivados o no estan programados para esta "
169
  "ubicación!"
170
 
171
- #: adrotate-output.php:609
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:615
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:620
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:626
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,215 +188,215 @@ 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:626
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:632
196
  msgid "An unknown error occured."
197
  msgstr "Ha ocurrido un error desconocido."
198
 
199
- #: adrotate-output.php:651 adrotate-output.php:654 adrotate-output.php:658
200
- #: adrotate-output.php:663 adrotate-output.php:666 adrotate-output.php:669
201
  msgid "Check adverts"
202
  msgstr ""
203
 
204
- #: adrotate-output.php:674
205
  msgid ""
206
  "You have enable caching support but W3 Total Cache is not active on your "
207
  "site!"
208
  msgstr ""
209
 
210
- #: adrotate-output.php:677
211
  msgid ""
212
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
213
  "not set."
214
  msgstr ""
215
 
216
- #: adrotate-output.php:682
217
  msgid "Your AdRotate Banner folder is not writable or does not exist."
218
  msgstr ""
219
 
220
- #: adrotate-output.php:722 dashboard/adrotatepro.php:99
221
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
222
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
223
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
224
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
225
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
226
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
227
- #: dashboard/settings/geotargeting.php:25
228
  #, fuzzy
229
  msgid "Buy now"
230
  msgstr "Comprar"
231
 
232
- #: adrotate-output.php:723
233
  msgid ""
234
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
235
  "to the <strong>PRO</strong> version"
236
  msgstr ""
237
 
238
- #: adrotate-output.php:723
239
  #, php-format
240
  msgid ""
241
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
242
  msgstr ""
243
 
244
- #: adrotate-output.php:723
245
  msgid "Thank you for your purchase!"
246
  msgstr ""
247
 
248
- #: adrotate-output.php:784
249
  msgid ""
250
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
251
  "this menu. Check out the"
252
  msgstr ""
253
 
254
- #: adrotate-output.php:784
255
  msgid "manuals"
256
  msgstr "manuales"
257
 
258
- #: adrotate-output.php:784 adrotate-output.php:851
259
  msgid "and"
260
  msgstr ""
261
 
262
- #: adrotate-output.php:784
263
  msgid "forums"
264
  msgstr ""
265
 
266
- #: adrotate-output.php:814
267
  #, fuzzy
268
  msgid "Useful Links"
269
  msgstr "Enlaces de interés"
270
 
271
- #: adrotate-output.php:815
272
  msgid "Useful links to learn more about AdRotate"
273
  msgstr ""
274
 
275
- #: adrotate-output.php:817
276
  msgid "AdRotate website"
277
  msgstr ""
278
 
279
- #: adrotate-output.php:818
280
  #, fuzzy
281
  msgid "Getting Started With AdRotate"
282
  msgstr "Obtenga más funciones con AdRotate Pro"
283
 
284
- #: adrotate-output.php:819
285
  #, fuzzy
286
  msgid "AdRotate manuals"
287
  msgstr "Información de AdRotate"
288
 
289
- #: adrotate-output.php:820
290
  #, fuzzy
291
  msgid "AdRotate Support Forum"
292
  msgstr "Tienda AdRotate"
293
 
294
- #: adrotate-output.php:843
295
  #, fuzzy
296
  msgid "Help AdRotate Grow"
297
  msgstr "Atascado con AdRotate? Yo te ayudaré!"
298
 
299
- #: adrotate-output.php:844
300
  msgid "Follow Arnan on Facebook"
301
  msgstr ""
302
 
303
- #: adrotate-output.php:851
304
  msgid ""
305
  "A lot of users only think to review AdRotate when something goes wrong while "
306
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
307
  msgstr ""
308
 
309
- #: adrotate-output.php:851
310
  msgid "If you find AdRotate useful please leave your honest"
311
  msgstr ""
312
 
313
- #: adrotate-output.php:851
314
  msgid "rating"
315
  msgstr ""
316
 
317
- #: adrotate-output.php:851
318
  #, fuzzy
319
  msgid "review"
320
  msgstr "Revise el anuncio aquí:"
321
 
322
- #: adrotate-output.php:851
323
  msgid "on WordPress.org to help AdRotate grow in a positive way"
324
  msgstr ""
325
 
326
- #: adrotate-output.php:884 dashboard/settings/notifications.php:44
327
- #: dashboard/settings/notifications.php:64
328
  msgid "Available in AdRotate Pro"
329
  msgstr "Disponible en AdRotate Pro"
330
 
331
- #: adrotate-output.php:884
332
  msgid "More information..."
333
  msgstr "Más información..."
334
 
335
- #: adrotate-output.php:885
336
  msgid "This feature is available in AdRotate Pro"
337
  msgstr "Esta función está disponible en AdRotate Pro"
338
 
339
- #: adrotate-output.php:885
340
  msgid "Learn more"
341
  msgstr "Aprender más"
342
 
343
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
344
- #: dashboard/publisher/adverts-edit.php:241
345
  msgid "January"
346
  msgstr "Enero"
347
 
348
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
349
- #: dashboard/publisher/adverts-edit.php:242
350
  msgid "February"
351
  msgstr "Febrero"
352
 
353
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
354
- #: dashboard/publisher/adverts-edit.php:243
355
  msgid "March"
356
  msgstr "Marzo"
357
 
358
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
359
- #: dashboard/publisher/adverts-edit.php:244
360
  msgid "April"
361
  msgstr "Abril"
362
 
363
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
364
- #: dashboard/publisher/adverts-edit.php:245
365
  msgid "May"
366
  msgstr "Mayo"
367
 
368
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
369
- #: dashboard/publisher/adverts-edit.php:246
370
  msgid "June"
371
  msgstr "Junio"
372
 
373
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
374
- #: dashboard/publisher/adverts-edit.php:247
375
  msgid "July"
376
  msgstr "Julio"
377
 
378
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
379
- #: dashboard/publisher/adverts-edit.php:248
380
  msgid "August"
381
  msgstr "Agosto"
382
 
383
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
384
- #: dashboard/publisher/adverts-edit.php:249
385
  msgid "September"
386
  msgstr "Septiembre"
387
 
388
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
389
- #: dashboard/publisher/adverts-edit.php:250
390
  msgid "October"
391
  msgstr "Octubre"
392
 
393
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
394
- #: dashboard/publisher/adverts-edit.php:251
395
  msgid "November"
396
  msgstr "Noviembre"
397
 
398
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
399
- #: dashboard/publisher/adverts-edit.php:252
400
  msgid "December"
401
  msgstr "Diciembre"
402
 
@@ -457,195 +457,194 @@ msgstr "ID:"
457
  msgid "Fill in the ID of the type you want to display!"
458
  msgstr "Rellene con el ID del tipo que desea mostrar!"
459
 
460
- #: adrotate.php:105
461
  msgid "General Info"
462
  msgstr "Información General"
463
 
464
- #: adrotate.php:106
465
  msgid "AdRotate Pro"
466
  msgstr "AdRotate Pro"
467
 
468
- #: adrotate.php:107
469
  msgid "Manage Adverts"
470
  msgstr ""
471
 
472
- #: adrotate.php:108 dashboard/publisher/groups-main.php:12
473
  msgid "Manage Groups"
474
  msgstr "Gestionar Grupos"
475
 
476
- #: adrotate.php:109 adrotate.php:387
477
  #, fuzzy
478
  msgid "Manage Schedules"
479
  msgstr "Gestionar Programas"
480
 
481
- #: adrotate.php:110
482
  #, fuzzy
483
  msgid "Manage Media"
484
  msgstr "Gestionar Medios"
485
 
486
- #: adrotate.php:111
487
  msgid "Settings"
488
  msgstr "Ajustes"
489
 
490
- #: adrotate.php:134
491
  msgid "AdRotate Info"
492
  msgstr "Información de AdRotate"
493
 
494
- #: adrotate.php:155
495
  msgid "AdRotate Professional"
496
  msgstr "AdRotate Profesional"
497
 
498
- #: adrotate.php:198
499
  msgid "Advert Management"
500
  msgstr ""
501
 
502
- #: adrotate.php:256 adrotate.php:326 adrotate.php:382
503
  msgid "Manage"
504
  msgstr "Gestionar"
505
 
506
- #: adrotate.php:257 adrotate.php:327 adrotate.php:383
507
  msgid "Add New"
508
  msgstr "Añadir Nuevo"
509
 
510
- #: adrotate.php:320
511
  msgid "Group Management"
512
  msgstr "Administración de Grupos"
513
 
514
- #: adrotate.php:329
515
  msgid "Report"
516
  msgstr "Informe"
517
 
518
- #: adrotate.php:378
519
  #, fuzzy
520
  msgid "Schedule Management available in AdRotate Pro"
521
  msgstr "Disponible en AdRotate Pro"
522
 
523
- #: adrotate.php:388
524
  msgid ""
525
  "Schedule management and multiple schedules per advert is available in "
526
  "AdRotate Pro."
527
  msgstr ""
528
 
529
- #: adrotate.php:388 adrotate.php:475 dashboard/publisher/adverts-edit.php:188
530
  #: dashboard/publisher/adverts-main.php:114
531
- #: dashboard/publisher/groups-edit.php:75
532
  #: dashboard/publisher/groups-main.php:89
533
  #, fuzzy
534
  msgid "More information"
535
  msgstr "Más información..."
536
 
537
- #: adrotate.php:395 dashboard/publisher/adverts-disabled.php:20
538
  #: dashboard/publisher/adverts-error.php:19
539
  #: dashboard/publisher/adverts-main.php:20
540
  #: dashboard/publisher/groups-main.php:20
541
  msgid "Bulk Actions"
542
  msgstr "Acciones en Lote"
543
 
544
- #: adrotate.php:396 dashboard/publisher/adverts-disabled.php:25
545
  #: dashboard/publisher/adverts-error.php:29
546
  #: dashboard/publisher/adverts-main.php:30
547
  #: dashboard/publisher/groups-main.php:24
548
  msgid "Go"
549
  msgstr "Aplicar"
550
 
551
- #: adrotate.php:405 dashboard/publisher/adverts-disabled.php:35
552
  #: dashboard/publisher/adverts-error.php:39
553
  #: dashboard/publisher/adverts-main.php:39
554
- #: dashboard/publisher/groups-edit.php:51
555
  #: dashboard/publisher/groups-main.php:32
556
  msgid "ID"
557
  msgstr "ID"
558
 
559
- #: adrotate.php:406
560
  #, fuzzy
561
  msgid "Start"
562
  msgstr "Iniciar"
563
 
564
- #: adrotate.php:406
565
  #, fuzzy
566
  msgid "End"
567
  msgstr "Finalizar"
568
 
569
- #: adrotate.php:407
570
  msgid "Ads"
571
  msgstr "Anuncios"
572
 
573
- #: adrotate.php:409
574
  msgid "Max Impressions"
575
  msgstr "Número máximo de Impresiones"
576
 
577
- #: adrotate.php:410
578
  msgid "Max Clicks"
579
  msgstr "Número máximo de Clics"
580
 
581
- #: adrotate.php:440
582
  #, fuzzy
583
  msgid "No schedules created yet!"
584
  msgstr "Todavia no se han creado programas!"
585
 
586
- #: adrotate.php:445
587
  #, fuzzy
588
  msgid "Easily manage your schedules from here with AdRotate Pro."
589
  msgstr "Obtenga más funciones con AdRotate Pro"
590
 
591
- #: adrotate.php:445 adrotate.php:511
592
  #, fuzzy
593
  msgid "Upgrade today!"
594
  msgstr "Hoy"
595
 
596
- #: adrotate.php:448 dashboard/publisher/adverts-error.php:72
597
- #: dashboard/publisher/groups-edit.php:387
598
  msgid "Expires soon."
599
  msgstr "Caduca pronto."
600
 
601
- #: adrotate.php:449 dashboard/publisher/adverts-error.php:73
602
- #: dashboard/publisher/groups-edit.php:388
603
  msgid "Has expired."
604
  msgstr "Ha expirado."
605
 
606
- #: adrotate.php:473
607
  #, fuzzy
608
  msgid "Media Management available in AdRotate Pro"
609
  msgstr "Esta función está disponible en AdRotate Pro"
610
 
611
- #: adrotate.php:475
612
  msgid "Upload images to the AdRotate Pro banners folder from here."
613
  msgstr ""
614
 
615
- #: adrotate.php:475
616
  msgid ""
617
  "This is useful if you use responsive adverts with multiple images or have "
618
  "HTML5 adverts containing multiple files."
619
  msgstr ""
620
 
621
- #: adrotate.php:475
622
  #, fuzzy
623
  msgid "Media uploading and management is available in AdRotate Pro."
624
  msgstr "Esta función está disponible en AdRotate Pro"
625
 
626
- #: adrotate.php:477
627
  msgid "Upload new file"
628
  msgstr ""
629
 
630
- #: adrotate.php:478
631
  msgid "Accepted files:"
632
  msgstr ""
633
 
634
- #: adrotate.php:478
635
  msgid "For HTML5 ads you can also upload html and javascript files."
636
  msgstr ""
637
 
638
- #: adrotate.php:478
639
  #, fuzzy
640
  msgid "Maximum size is 512Kb."
641
  msgstr "El tamaño máximo es 512Kb."
642
 
643
- #: adrotate.php:478
644
  #, fuzzy
645
  msgid "Important:"
646
  msgstr "Importante:"
647
 
648
- #: adrotate.php:478
649
  #, fuzzy
650
  msgid ""
651
  "Make sure your file has no spaces or special characters in the name. Replace "
@@ -654,13 +653,13 @@ msgstr ""
654
  "Asegúrese de que en el nombre de su archivo no contiene espacios ni "
655
  "caracteres especiales. Reemplace los espacios con un - o _."
656
 
657
- #: adrotate.php:478
658
  msgid ""
659
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
660
  "file so it knows about the changed name. For example for the javascript file."
661
  msgstr ""
662
 
663
- #: adrotate.php:481
664
  #, fuzzy
665
  msgid ""
666
  "For responsive adverts make sure the filename is in the following format; "
@@ -670,7 +669,7 @@ msgstr ""
670
  "siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
671
  "de imágenes del mismo tamaño."
672
 
673
- #: adrotate.php:482 dashboard/publisher/adverts-edit.php:311
674
  msgid ""
675
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
676
  "filename instead of \".full\" for the various viewports."
@@ -679,12 +678,12 @@ msgstr ""
679
  "\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
680
  "diferentes visores."
681
 
682
- #: adrotate.php:483 dashboard/publisher/groups-edit.php:312
683
- #: dashboard/publisher/groups-edit.php:320
684
  msgid "Example:"
685
  msgstr "Ejemplo:"
686
 
687
- #: adrotate.php:483
688
  #, fuzzy
689
  msgid ""
690
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
@@ -693,37 +692,37 @@ msgstr ""
693
  "image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio para "
694
  "distintas ventanas gráficas. Se necesita jQuery."
695
 
696
- #: adrotate.php:487
697
  msgid "Upload file"
698
  msgstr ""
699
 
700
- #: adrotate.php:487
701
  msgid "Click only once per file!"
702
  msgstr ""
703
 
704
- #: adrotate.php:490
705
  msgid "Available files in"
706
  msgstr ""
707
 
708
- #: adrotate.php:495 dashboard/publisher/groups-edit.php:55
709
  #: dashboard/publisher/groups-main.php:33
710
  msgid "Name"
711
  msgstr "Nombre"
712
 
713
- #: adrotate.php:496
714
  #, fuzzy
715
  msgid "Actions"
716
  msgstr "Acciones"
717
 
718
- #: adrotate.php:501 adrotate.php:502 adrotate.php:503 adrotate.php:504
719
- #: adrotate.php:505 adrotate.php:506 adrotate.php:507
720
  #: dashboard/publisher/adverts-disabled.php:22
721
  #: dashboard/publisher/adverts-error.php:21
722
  #: dashboard/publisher/adverts-main.php:22
723
  msgid "Delete"
724
  msgstr "Borrar"
725
 
726
- #: adrotate.php:511
727
  #, fuzzy
728
  msgid ""
729
  "Make sure the banner images are not in use by adverts when you delete them!"
@@ -731,19 +730,15 @@ msgstr ""
731
  "¡Asegúrese de que las imágenes de banner no se están utilizando en los "
732
  "anuncios cuando las elimine!"
733
 
734
- #: adrotate.php:511
735
  #, fuzzy
736
  msgid "Manage your banner folder from here with AdRotate Pro."
737
  msgstr "Obtenga más funciones con AdRotate Pro"
738
 
739
- #: adrotate.php:540
740
  msgid "AdRotate Settings"
741
  msgstr "Ajustes AdRotate"
742
 
743
- #: adrotate.php:612
744
- msgid "Update Options"
745
- msgstr "Actualizar Opciones"
746
-
747
  #: dashboard/adrotatepro.php:20
748
  msgid "Satisfy your advertisers"
749
  msgstr "Satisfacer a sus anunciantes"
@@ -934,7 +929,7 @@ msgstr "Su configuración"
934
  msgid "Adverts that need you"
935
  msgstr "Estos Anuncios"
936
 
937
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
938
  #: dashboard/publisher/groups-main.php:34
939
  msgid "Adverts"
940
  msgstr "Anuncios"
@@ -977,7 +972,7 @@ msgid "Disabled Adverts"
977
  msgstr ""
978
 
979
  #: dashboard/publisher/adverts-disabled.php:21
980
- #: dashboard/publisher/adverts-edit.php:176
981
  msgid "Activate"
982
  msgstr "Activar"
983
 
@@ -994,7 +989,7 @@ msgid "Start / End"
994
  msgstr "Inio / Final"
995
 
996
  #: dashboard/publisher/adverts-disabled.php:37
997
- #: dashboard/publisher/adverts-edit.php:116
998
  #: dashboard/publisher/adverts-error.php:41
999
  #: dashboard/publisher/adverts-main.php:41
1000
  msgid "Title"
@@ -1002,7 +997,7 @@ msgstr "Título"
1002
 
1003
  #: dashboard/publisher/adverts-disabled.php:38
1004
  #: dashboard/publisher/adverts-main.php:44
1005
- #: dashboard/publisher/groups-edit.php:333
1006
  #: dashboard/publisher/groups-main.php:36
1007
  msgid "Shown"
1008
  msgstr "Mostrado"
@@ -1011,7 +1006,7 @@ msgstr "Mostrado"
1011
  #: dashboard/publisher/adverts-main.php:46
1012
  #: dashboard/publisher/adverts-report.php:36
1013
  #: dashboard/publisher/adverts-report.php:57
1014
- #: dashboard/publisher/groups-edit.php:334
1015
  #: dashboard/publisher/groups-main.php:38
1016
  #: dashboard/publisher/groups-report.php:37
1017
  #: dashboard/publisher/groups-report.php:58
@@ -1053,34 +1048,28 @@ msgid "The AdCode cannot be empty!"
1053
  msgstr "El AdCode no puede estar vacío!"
1054
 
1055
  #: dashboard/publisher/adverts-edit.php:51
1056
- msgid "You did not use %image% in your AdCode but did select a file to use!"
 
 
1057
  msgstr ""
1058
 
1059
  #: dashboard/publisher/adverts-edit.php:54
1060
- msgid "You did use %image% in your AdCode but did not select a file to use!"
1061
- msgstr ""
1062
-
1063
- #: dashboard/publisher/adverts-edit.php:57
1064
  msgid ""
1065
- "You did not use %image% in your AdCode. The responsive checkbox will be "
1066
- "ineffective."
1067
  msgstr ""
1068
 
1069
- #: dashboard/publisher/adverts-edit.php:60
1070
  msgid ""
1071
  "There is a problem saving the image. Please reset your image and re-save the "
1072
  "ad!"
1073
  msgstr ""
1074
 
1075
- #: dashboard/publisher/adverts-edit.php:63
1076
- msgid "Responsive is enabled but your banner image has the wrong name."
1077
- msgstr ""
1078
-
1079
- #: dashboard/publisher/adverts-edit.php:66
1080
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1081
  msgstr ""
1082
 
1083
- #: dashboard/publisher/adverts-edit.php:71
1084
  msgid ""
1085
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1086
  "the ad!"
@@ -1088,77 +1077,77 @@ msgstr ""
1088
  "AdRotate no encuentra ningún error, pero el anuncio está marcado como "
1089
  "erróneo, intente volver a guardar la anuncio!"
1090
 
1091
- #: dashboard/publisher/adverts-edit.php:74
1092
  msgid "This ad is expired and currently not shown on your website!"
1093
  msgstr "Este anuncio ha caducado y actualmente no se muestra en su página web!"
1094
 
1095
- #: dashboard/publisher/adverts-edit.php:77
1096
  msgid "The ad will expire in less than 2 days!"
1097
  msgstr "El anuncio caducará en menos de 2 días!"
1098
 
1099
- #: dashboard/publisher/adverts-edit.php:80
1100
  msgid "This ad will expire in less than 7 days!"
1101
  msgstr "El anuncio caducará en menos de 7 días!"
1102
 
1103
- #: dashboard/publisher/adverts-edit.php:83
1104
  msgid "This ad has been disabled and does not rotate on your site!"
1105
  msgstr "Este anuncio ha sido desactivado y no rota en su página web!"
1106
 
1107
- #: dashboard/publisher/adverts-edit.php:108
1108
  msgid "New Advert"
1109
  msgstr "Nuevo Anuncio"
1110
 
1111
- #: dashboard/publisher/adverts-edit.php:110
1112
  msgid "Edit Advert"
1113
  msgstr "Editar Anuncio"
1114
 
1115
- #: dashboard/publisher/adverts-edit.php:122
1116
  msgid "AdCode"
1117
  msgstr ""
1118
 
1119
- #: dashboard/publisher/adverts-edit.php:127
1120
  msgid "Basic Examples:"
1121
  msgstr "Ejemplos Básicos:"
1122
 
1123
- #: dashboard/publisher/adverts-edit.php:134
1124
  msgid "Useful tags"
1125
  msgstr ""
1126
 
1127
- #: dashboard/publisher/adverts-edit.php:136
1128
  msgid "Insert the advert ID Number."
1129
  msgstr ""
1130
 
1131
- #: dashboard/publisher/adverts-edit.php:136
1132
- msgid "Required when selecting a image below."
1133
  msgstr ""
1134
 
1135
- #: dashboard/publisher/adverts-edit.php:136
1136
  msgid "Insert the advert name."
1137
  msgstr ""
1138
 
1139
- #: dashboard/publisher/adverts-edit.php:136
1140
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1141
  msgstr ""
1142
 
1143
- #: dashboard/publisher/adverts-edit.php:136
1144
  msgid "Add inside the <a> tag to open advert in a new window."
1145
  msgstr ""
1146
 
1147
- #: dashboard/publisher/adverts-edit.php:136
1148
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1149
  msgstr ""
1150
 
1151
- #: dashboard/publisher/adverts-edit.php:136
1152
  msgid ""
1153
  "Place the cursor in your AdCode where you want to add any of these tags and "
1154
  "click to add it."
1155
  msgstr ""
1156
 
1157
- #: dashboard/publisher/adverts-edit.php:141
1158
  msgid "Preview"
1159
  msgstr "Vista previa"
1160
 
1161
- #: dashboard/publisher/adverts-edit.php:144
1162
  msgid ""
1163
  "Note: While this preview is an accurate one, it might look different then it "
1164
  "does on the website."
@@ -1166,42 +1155,42 @@ msgstr ""
1166
  "Nota: Mientras que la previsualización de la imagen aqui mostrada es "
1167
  "precisa, en su pagina web puede tener un aspecto diferente."
1168
 
1169
- #: dashboard/publisher/adverts-edit.php:145
1170
  msgid ""
1171
  "This is because of CSS differences. Your themes CSS file is not active here!"
1172
  msgstr ""
1173
  "Esto es debido a las diferencias de CSS. En la zona administrativa no está "
1174
  "activo el archivo CSS de las plantillas (themes)!"
1175
 
1176
- #: dashboard/publisher/adverts-edit.php:150
1177
  msgid "Banner asset"
1178
  msgstr ""
1179
 
1180
- #: dashboard/publisher/adverts-edit.php:153
1181
  msgid "WordPress media:"
1182
  msgstr ""
1183
 
1184
- #: dashboard/publisher/adverts-edit.php:153
1185
  msgid "Select Banner"
1186
  msgstr "Seleccionar Banner"
1187
 
1188
- #: dashboard/publisher/adverts-edit.php:155
1189
  msgid "- OR -"
1190
  msgstr "- O -"
1191
 
1192
- #: dashboard/publisher/adverts-edit.php:157
1193
  msgid "Banner folder:"
1194
  msgstr "Carpeta Banner:"
1195
 
1196
- #: dashboard/publisher/adverts-edit.php:158
1197
  msgid "No image selected"
1198
  msgstr "Ninguna imagen seleccionada"
1199
 
1200
- #: dashboard/publisher/adverts-edit.php:162
1201
- msgid "Use %image% in the adcode instead of the file path."
1202
  msgstr ""
1203
 
1204
- #: dashboard/publisher/adverts-edit.php:162
1205
  msgid ""
1206
  "Use either the text field or the dropdown. If the textfield has content that "
1207
  "field has priority."
@@ -1209,247 +1198,249 @@ msgstr ""
1209
  "Use el campo de texto o en el menú desplegable. Si el campo de texto tiene "
1210
  "un contenido, ese campo tiene prioridad."
1211
 
1212
- #: dashboard/publisher/adverts-edit.php:167
1213
- #: dashboard/settings/statistics.php:12
1214
  msgid "Statistics"
1215
  msgstr "Estadísticas"
1216
 
1217
- #: dashboard/publisher/adverts-edit.php:169
1218
  msgid "Enable click and impression tracking for this advert."
1219
  msgstr ""
1220
 
1221
- #: dashboard/publisher/adverts-edit.php:170
1222
  msgid ""
1223
  "Note: Clicktracking does not work for Javascript adverts such as those "
1224
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1225
  "always supported."
1226
  msgstr ""
1227
 
1228
- #: dashboard/publisher/adverts-edit.php:180
1229
  msgid "Yes, this ad will be used"
1230
  msgstr "Sí, se utilizará este anuncio"
1231
 
1232
- #: dashboard/publisher/adverts-edit.php:181
1233
  msgid "No, do not show this ad anywhere"
1234
  msgstr "No, no mostrar este anuncio en cualquier lugar"
1235
 
1236
- #: dashboard/publisher/adverts-edit.php:188
1237
  #: dashboard/publisher/adverts-main.php:114
1238
- #: dashboard/publisher/groups-edit.php:75
1239
  #: dashboard/publisher/groups-main.php:89
1240
  #, fuzzy
1241
  msgid "Get more features with AdRotate Pro."
1242
  msgstr "Obtenga más funciones con AdRotate Pro"
1243
 
1244
- #: dashboard/publisher/adverts-edit.php:191
1245
- #: dashboard/publisher/adverts-edit.php:291
1246
- #: dashboard/publisher/adverts-edit.php:386
1247
- #: dashboard/publisher/adverts-edit.php:427
1248
  msgid "Save Advert"
1249
  msgstr "Guardar Anuncio"
1250
 
1251
- #: dashboard/publisher/adverts-edit.php:192
1252
- #: dashboard/publisher/adverts-edit.php:292
1253
- #: dashboard/publisher/adverts-edit.php:387
1254
- #: dashboard/publisher/adverts-edit.php:428
1255
- #: dashboard/publisher/groups-edit.php:154
1256
- #: dashboard/publisher/groups-edit.php:301
1257
- #: dashboard/publisher/groups-edit.php:393
1258
  msgid "Cancel"
1259
  msgstr "Cancelar"
1260
 
1261
- #: dashboard/publisher/adverts-edit.php:195
1262
- #: dashboard/publisher/adverts-edit.php:369
1263
- #: dashboard/publisher/groups-edit.php:136
1264
- #: dashboard/publisher/groups-edit.php:283
1265
  msgid "Usage"
1266
  msgstr "Utilización"
1267
 
1268
- #: dashboard/publisher/adverts-edit.php:199
1269
- #: dashboard/publisher/adverts-edit.php:373
1270
- #: dashboard/publisher/groups-edit.php:140
1271
- #: dashboard/publisher/groups-edit.php:287
1272
  msgid "Widget"
1273
  msgstr ""
1274
 
1275
- #: dashboard/publisher/adverts-edit.php:200
1276
- #: dashboard/publisher/adverts-edit.php:374
1277
  msgid ""
1278
- "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1279
- "and enter ID"
1280
  msgstr ""
1281
 
1282
- #: dashboard/publisher/adverts-edit.php:203
1283
- #: dashboard/publisher/adverts-edit.php:377
1284
- #: dashboard/publisher/groups-edit.php:144
1285
- #: dashboard/publisher/groups-edit.php:291
1286
  msgid "In a post or page"
1287
  msgstr ""
1288
 
1289
- #: dashboard/publisher/adverts-edit.php:205
1290
- #: dashboard/publisher/adverts-edit.php:379
1291
- #: dashboard/publisher/groups-edit.php:146
1292
- #: dashboard/publisher/groups-edit.php:293
1293
  msgid "Directly in a theme"
1294
  msgstr ""
1295
 
1296
- #: dashboard/publisher/adverts-edit.php:211
1297
  msgid "Schedule your advert"
1298
  msgstr ""
1299
 
1300
- #: dashboard/publisher/adverts-edit.php:215
1301
  msgid "Start date (day/month/year)"
1302
  msgstr ""
1303
 
1304
- #: dashboard/publisher/adverts-edit.php:236
1305
  msgid "End date (day/month/year)"
1306
  msgstr ""
1307
 
1308
- #: dashboard/publisher/adverts-edit.php:259
1309
  msgid "Start time (hh:mm)"
1310
  msgstr ""
1311
 
1312
- #: dashboard/publisher/adverts-edit.php:266
1313
  msgid "End time (hh:mm)"
1314
  msgstr ""
1315
 
1316
- #: dashboard/publisher/adverts-edit.php:276
1317
  msgid "Maximum Clicks"
1318
  msgstr ""
1319
 
1320
- #: dashboard/publisher/adverts-edit.php:277
1321
- #: dashboard/publisher/adverts-edit.php:279
1322
  msgid "Leave empty or 0 to skip this."
1323
  msgstr "Dejar en blanco o 0 para omitir."
1324
 
1325
- #: dashboard/publisher/adverts-edit.php:278
1326
  msgid "Maximum Impressions"
1327
  msgstr ""
1328
 
1329
- #: dashboard/publisher/adverts-edit.php:283
1330
  msgid "Important"
1331
  msgstr ""
1332
 
1333
- #: dashboard/publisher/adverts-edit.php:284
1334
  msgid ""
1335
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1336
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1337
  "14:00 hours. 6AM is 6:00 hours."
1338
  msgstr ""
1339
 
1340
- #: dashboard/publisher/adverts-edit.php:288
1341
  msgid ""
1342
  "Create multiple and more advanced schedules for each advert with AdRotate "
1343
  "Pro."
1344
  msgstr ""
1345
 
1346
- #: dashboard/publisher/adverts-edit.php:288
1347
- #: dashboard/publisher/adverts-edit.php:323
1348
- #: dashboard/publisher/adverts-edit.php:367
1349
- #: dashboard/publisher/groups-edit.php:200
1350
  #, fuzzy
1351
  msgid "Upgrade today"
1352
  msgstr "Hoy"
1353
 
1354
- #: dashboard/publisher/adverts-edit.php:295
1355
- #: dashboard/publisher/groups-edit.php:157
1356
  msgid "Advanced"
1357
  msgstr "Avanzado"
1358
 
1359
- #: dashboard/publisher/adverts-edit.php:296
1360
  msgid "Everything below is optional."
1361
  msgstr "Todo lo siguiente es opcional."
1362
 
1363
- #: dashboard/publisher/adverts-edit.php:300
1364
- msgid "Mobile"
1365
  msgstr ""
1366
 
1367
- #: dashboard/publisher/adverts-edit.php:302
1368
- msgid "Show on;"
1369
- msgstr ""
 
 
1370
 
1371
- #: dashboard/publisher/adverts-edit.php:302
1372
- msgid "Computers"
1373
  msgstr ""
1374
 
1375
- #: dashboard/publisher/adverts-edit.php:302
1376
- msgid "Smartphones"
1377
- msgstr ""
1378
 
1379
- #: dashboard/publisher/adverts-edit.php:302
1380
- msgid "Tablets."
1381
  msgstr ""
1382
 
1383
- #: dashboard/publisher/adverts-edit.php:303
1384
- msgid "Also enable mobile support in the group this advert goes in."
 
 
 
 
1385
  msgstr ""
1386
 
1387
- #: dashboard/publisher/adverts-edit.php:307
1388
- msgid "Responsive"
1389
  msgstr ""
1390
 
1391
- #: dashboard/publisher/adverts-edit.php:309
1392
- msgid "Enable responsive support for this advert."
1393
- msgstr "Habilitar soporte sensible para este anuncio."
1394
 
1395
- #: dashboard/publisher/adverts-edit.php:310
1396
- msgid ""
1397
- "Upload your images to the banner folder and make sure the filename is in the "
1398
- "following format; \"imagename.full.ext\"."
1399
  msgstr ""
1400
 
1401
- #: dashboard/publisher/adverts-edit.php:312
1402
- #: dashboard/publisher/adverts-report.php:64
1403
- #: dashboard/publisher/groups-report.php:65
1404
- msgid "Note:"
1405
- msgstr "Nota:"
1406
 
1407
- #: dashboard/publisher/adverts-edit.php:312
1408
  msgid ""
1409
- "This feature will not be developed any further. Consider switching to the "
1410
- "Mobile feature in AdRotate Pro as seen above!"
1411
  msgstr ""
1412
 
1413
- #: dashboard/publisher/adverts-edit.php:316
1414
- #: dashboard/publisher/groups-edit.php:194
1415
  msgid "Sortorder"
1416
  msgstr ""
1417
 
1418
- #: dashboard/publisher/adverts-edit.php:318
1419
- #: dashboard/publisher/groups-edit.php:196
1420
  msgid "For administrative purposes set a sortorder."
1421
  msgstr "A efectos administrativos, establecer una Clasificación normal."
1422
 
1423
- #: dashboard/publisher/adverts-edit.php:318
1424
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1425
  msgstr "Dejar en blanco o 0 para omitir. Se usará el ID del anuncio."
1426
 
1427
- #: dashboard/publisher/adverts-edit.php:323
1428
  msgid ""
1429
  "With AdRotate Pro you can easily select which devices the advert should show "
1430
  "on!"
1431
  msgstr ""
1432
 
1433
- #: dashboard/publisher/adverts-edit.php:325
1434
  msgid "Geo Targeting in AdRotate Pro"
1435
  msgstr ""
1436
 
1437
- #: dashboard/publisher/adverts-edit.php:326
1438
  msgid ""
1439
  "Assign the advert to a group and enable that group to use Geo Targeting."
1440
  msgstr ""
1441
 
1442
- #: dashboard/publisher/adverts-edit.php:330
1443
  msgid "Cities/States"
1444
  msgstr ""
1445
 
1446
- #: dashboard/publisher/adverts-edit.php:333
1447
  msgid ""
1448
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1449
  "states ISO codes are supported)"
1450
  msgstr ""
1451
 
1452
- #: dashboard/publisher/adverts-edit.php:333
1453
  #, fuzzy
1454
  msgid ""
1455
  "AdRotate does not check the validity of names so make sure you spell them "
@@ -1458,68 +1449,68 @@ msgstr ""
1458
  "AdRotate no comprueba la validez de los nombres, así que asegúrate de "
1459
  "escribirlos correctamente!"
1460
 
1461
- #: dashboard/publisher/adverts-edit.php:337
1462
  msgid "Countries"
1463
  msgstr ""
1464
 
1465
- #: dashboard/publisher/adverts-edit.php:362
1466
  msgid "Select the countries you want the adverts to show in."
1467
  msgstr "Seleccione los países en los que desea que los anuncios se muestren."
1468
 
1469
- #: dashboard/publisher/adverts-edit.php:362
1470
  msgid "Cities take priority and will be filtered first."
1471
  msgstr "Las ciudades tendrán prioridad y serán filtradas primero."
1472
 
1473
- #: dashboard/publisher/adverts-edit.php:367
1474
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1475
  msgstr ""
1476
 
1477
- #: dashboard/publisher/adverts-edit.php:391
1478
  msgid "Select Groups"
1479
  msgstr "Seleccione Grupos"
1480
 
1481
- #: dashboard/publisher/adverts-edit.php:396
1482
  msgid "ID - Name"
1483
  msgstr "ID - Nombre"
1484
 
1485
- #: dashboard/publisher/adverts-edit.php:406
1486
  #: dashboard/publisher/groups-main.php:60
1487
- #: dashboard/settings/geotargeting.php:36
1488
  msgid "Default"
1489
  msgstr "Predeterminado"
1490
 
1491
- #: dashboard/publisher/adverts-edit.php:407
1492
  #: dashboard/publisher/groups-main.php:61
1493
  msgid "Dynamic"
1494
  msgstr "Dinámico"
1495
 
1496
- #: dashboard/publisher/adverts-edit.php:407
1497
  #: dashboard/publisher/groups-main.php:61
1498
  msgid "second rotation"
1499
  msgstr "segundos rotación"
1500
 
1501
- #: dashboard/publisher/adverts-edit.php:408
1502
  #: dashboard/publisher/groups-main.php:62
1503
  msgid "Block"
1504
  msgstr "Block"
1505
 
1506
- #: dashboard/publisher/adverts-edit.php:408
1507
  #: dashboard/publisher/groups-main.php:62
1508
  msgid "grid"
1509
  msgstr "cuadrícula"
1510
 
1511
- #: dashboard/publisher/adverts-edit.php:409
1512
- #: dashboard/publisher/groups-edit.php:202
1513
  #: dashboard/publisher/groups-main.php:63
1514
  msgid "Post Injection"
1515
  msgstr "Integrarlo después"
1516
 
1517
- #: dashboard/publisher/adverts-edit.php:410
1518
  msgid "Geolocation"
1519
  msgstr "Geolocalización"
1520
 
1521
- #: dashboard/publisher/adverts-edit.php:416
1522
- #: dashboard/publisher/groups-edit.php:61
1523
  #: dashboard/publisher/groups-main.php:70
1524
  msgid "Mode"
1525
  msgstr "Modalidad"
@@ -1559,7 +1550,7 @@ msgid "For 7 days"
1559
  msgstr "Por 7 días"
1560
 
1561
  #: dashboard/publisher/adverts-error.php:71
1562
- #: dashboard/publisher/groups-edit.php:386
1563
  msgid "Configuration errors."
1564
  msgstr "Errores de configuración."
1565
 
@@ -1572,11 +1563,6 @@ msgstr ""
1572
  msgid "Export to XML"
1573
  msgstr "Exportar"
1574
 
1575
- #: dashboard/publisher/adverts-main.php:42
1576
- #: dashboard/publisher/groups-edit.php:336
1577
- msgid "Weight"
1578
- msgstr "Prioridad"
1579
-
1580
  #: dashboard/publisher/adverts-main.php:45
1581
  #: dashboard/publisher/adverts-main.php:47
1582
  #: dashboard/publisher/groups-main.php:37
@@ -1614,6 +1600,13 @@ msgstr "Clics hoy"
1614
  msgid "Monthly overview of clicks and impressions"
1615
  msgstr "Resumen mensual de clics e impresiones"
1616
 
 
 
 
 
 
 
 
1617
  #: dashboard/publisher/adverts-report.php:64
1618
  #: dashboard/publisher/groups-report.php:65
1619
  msgid ""
@@ -1631,19 +1624,19 @@ msgstr "Nuevo Grupo"
1631
  msgid "Edit Group"
1632
  msgstr "Editar Grupo"
1633
 
1634
- #: dashboard/publisher/groups-edit.php:64
1635
  msgid "Default - Show one ad at a time"
1636
  msgstr "Predeterminado - Mostrar un anuncio a la vez"
1637
 
1638
- #: dashboard/publisher/groups-edit.php:65
1639
  msgid "Dynamic Mode - Show a different ad every few seconds"
1640
  msgstr "Modo Dinámico - Mostrar un anuncio diferente cada pocos segundos"
1641
 
1642
- #: dashboard/publisher/groups-edit.php:66
1643
  msgid "Block Mode - Show a block of adverts"
1644
  msgstr ""
1645
 
1646
- #: dashboard/publisher/groups-edit.php:70
1647
  #, fuzzy
1648
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1649
  msgstr ""
@@ -1651,298 +1644,298 @@ msgstr ""
1651
  "Showoff' para ser cargados. Puede activar esto el menú de Ajustes de "
1652
  "AdRotate."
1653
 
1654
- #: dashboard/publisher/groups-edit.php:77
1655
- #: dashboard/publisher/groups-edit.php:104
1656
  msgid "Dynamic and Block Mode"
1657
  msgstr "Modo Dinámico y en Bloque"
1658
 
1659
- #: dashboard/publisher/groups-edit.php:78
1660
  msgid "Only required if your group is in Dynamic or Block mode."
1661
  msgstr "Sólo es necesario si su grupo está en modo de Dinámico o en Bloque."
1662
 
1663
- #: dashboard/publisher/groups-edit.php:82
1664
  msgid "Block size"
1665
  msgstr ""
1666
 
1667
- #: dashboard/publisher/groups-edit.php:88
1668
  msgid "rows"
1669
  msgstr "filas"
1670
 
1671
- #: dashboard/publisher/groups-edit.php:92
1672
  msgid "columns"
1673
  msgstr "columnas"
1674
 
1675
- #: dashboard/publisher/groups-edit.php:95
1676
  msgid "Block Mode"
1677
  msgstr "Modo Block"
1678
 
1679
- #: dashboard/publisher/groups-edit.php:95
1680
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1681
  msgstr ""
1682
 
1683
- #: dashboard/publisher/groups-edit.php:99
1684
  msgid "Advert size"
1685
  msgstr ""
1686
 
1687
- #: dashboard/publisher/groups-edit.php:101
1688
  msgid "pixel(s) wide"
1689
  msgstr "ancho pixel(s)"
1690
 
1691
- #: dashboard/publisher/groups-edit.php:101
1692
  msgid "pixel(s) high."
1693
  msgstr "alto pixel(s)"
1694
 
1695
- #: dashboard/publisher/groups-edit.php:104
1696
  msgid ""
1697
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1698
  "recommended). Default: 125/125."
1699
  msgstr ""
1700
 
1701
- #: dashboard/publisher/groups-edit.php:108
1702
  msgid "Automated refresh"
1703
  msgstr "Actualización automatica"
1704
 
1705
- #: dashboard/publisher/groups-edit.php:127
1706
  msgid "seconds."
1707
  msgstr "segundos."
1708
 
1709
- #: dashboard/publisher/groups-edit.php:130
1710
  msgid "Dynamic Mode"
1711
  msgstr "Modo Dinámico"
1712
 
1713
- #: dashboard/publisher/groups-edit.php:130
1714
  msgid ""
1715
  "Load a new advert in this interval without reloading the page. Default: 6."
1716
  msgstr ""
1717
  "Cargar un nuevo anuncio en este intervalo sin recargar la página. "
1718
  "Predeterminado: 6."
1719
 
1720
- #: dashboard/publisher/groups-edit.php:141
1721
- #: dashboard/publisher/groups-edit.php:288
1722
  msgid ""
1723
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1724
  "Adverts\" and enter ID"
1725
  msgstr ""
1726
 
1727
- #: dashboard/publisher/groups-edit.php:153
1728
- #: dashboard/publisher/groups-edit.php:300
1729
- #: dashboard/publisher/groups-edit.php:392
1730
  msgid "Save Group"
1731
  msgstr "Guardar Grupo"
1732
 
1733
- #: dashboard/publisher/groups-edit.php:161
1734
  msgid "Advert Margin"
1735
  msgstr "Margen del anuncio"
1736
 
1737
- #: dashboard/publisher/groups-edit.php:163
1738
  msgid "pixel(s)"
1739
  msgstr "pixel(s)"
1740
 
1741
- #: dashboard/publisher/groups-edit.php:166
1742
  msgid "A transparent area outside the advert in pixels. Default: 0."
1743
  msgstr ""
1744
  "Un area transparente alrededor del anuncio en píxeles. Predeterminado: 0."
1745
 
1746
- #: dashboard/publisher/groups-edit.php:166
1747
  msgid "Set to 0 to disable."
1748
  msgstr "Establece a 0 para desactivar."
1749
 
1750
- #: dashboard/publisher/groups-edit.php:166
1751
  msgid "Margins are automatically disabled for blocks where required."
1752
  msgstr ""
1753
 
1754
- #: dashboard/publisher/groups-edit.php:170
1755
  #, fuzzy
1756
  msgid "Align the group"
1757
  msgstr "Anuncios en grupo"
1758
 
1759
- #: dashboard/publisher/groups-edit.php:173
1760
  #, fuzzy
1761
  msgid "None (Default)"
1762
  msgstr "Predeterminado"
1763
 
1764
- #: dashboard/publisher/groups-edit.php:174
1765
  msgid "Left"
1766
  msgstr ""
1767
 
1768
- #: dashboard/publisher/groups-edit.php:175
1769
  #, fuzzy
1770
  msgid "Right"
1771
  msgstr "Prioridad"
1772
 
1773
- #: dashboard/publisher/groups-edit.php:176
1774
  msgid "Center"
1775
  msgstr ""
1776
 
1777
- #: dashboard/publisher/groups-edit.php:180
1778
  msgid ""
1779
  "Align the group in your post or page. Using 'center' may affect your margin "
1780
  "setting. Not every theme supports this feature."
1781
  msgstr ""
1782
 
1783
- #: dashboard/publisher/groups-edit.php:184
1784
- #: dashboard/settings/advertisers.php:28
1785
  msgid "Geo Targeting"
1786
  msgstr "Geo Targeting"
1787
 
1788
- #: dashboard/publisher/groups-edit.php:185
1789
  msgid "Enable Geo Targeting for this group."
1790
  msgstr ""
1791
 
1792
- #: dashboard/publisher/groups-edit.php:186
1793
  msgid "Do not forget to tell the adverts for which areas they should show."
1794
  msgstr "No se olvide indicar en que zonas que se deben mostrar los anuncios."
1795
 
1796
- #: dashboard/publisher/groups-edit.php:189
1797
  msgid "Mobile support"
1798
  msgstr ""
1799
 
1800
- #: dashboard/publisher/groups-edit.php:190
1801
  msgid "Enable mobile support for this group."
1802
  msgstr ""
1803
 
1804
- #: dashboard/publisher/groups-edit.php:191
1805
  msgid "Do not forget to put at least one mobile advert in this group."
1806
  msgstr ""
1807
 
1808
- #: dashboard/publisher/groups-edit.php:196
1809
  msgid "Leave empty or 0 to skip this. Will default to group id."
1810
  msgstr ""
1811
  "Dejar en blanco o 0 para omitir. Se usará el ID predeterminado de grupo."
1812
 
1813
- #: dashboard/publisher/groups-edit.php:200
1814
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1815
  msgstr ""
1816
 
1817
- #: dashboard/publisher/groups-edit.php:205
1818
  msgid "In categories?"
1819
  msgstr ""
1820
 
1821
- #: dashboard/publisher/groups-edit.php:209
1822
- #: dashboard/publisher/groups-edit.php:247
1823
- #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1824
  msgid "Disabled"
1825
  msgstr "Desactivado"
1826
 
1827
- #: dashboard/publisher/groups-edit.php:210
1828
- #: dashboard/publisher/groups-edit.php:248
1829
  msgid "Before content"
1830
  msgstr "Antes del contenido"
1831
 
1832
- #: dashboard/publisher/groups-edit.php:211
1833
- #: dashboard/publisher/groups-edit.php:249
1834
  msgid "After content"
1835
  msgstr "Después del contenido"
1836
 
1837
- #: dashboard/publisher/groups-edit.php:212
1838
- #: dashboard/publisher/groups-edit.php:250
1839
  msgid "Before and after content"
1840
  msgstr "Antes y después del contenido"
1841
 
1842
- #: dashboard/publisher/groups-edit.php:213
1843
- #: dashboard/publisher/groups-edit.php:251
1844
  msgid "Inside the content..."
1845
  msgstr ""
1846
 
1847
- #: dashboard/publisher/groups-edit.php:219
1848
- #: dashboard/publisher/groups-edit.php:257
1849
  msgid "after the middle paragraph"
1850
  msgstr ""
1851
 
1852
- #: dashboard/publisher/groups-edit.php:220
1853
- #: dashboard/publisher/groups-edit.php:258
1854
  msgid "after the 1st paragraph"
1855
  msgstr ""
1856
 
1857
- #: dashboard/publisher/groups-edit.php:221
1858
- #: dashboard/publisher/groups-edit.php:259
1859
  msgid "after the 2nd paragraph"
1860
  msgstr ""
1861
 
1862
- #: dashboard/publisher/groups-edit.php:222
1863
- #: dashboard/publisher/groups-edit.php:260
1864
  msgid "after the 3rd paragraph"
1865
  msgstr ""
1866
 
1867
- #: dashboard/publisher/groups-edit.php:223
1868
- #: dashboard/publisher/groups-edit.php:261
1869
  msgid "after the 4th paragraph"
1870
  msgstr ""
1871
 
1872
- #: dashboard/publisher/groups-edit.php:224
1873
- #: dashboard/publisher/groups-edit.php:262
1874
  msgid "after the 5th paragraph"
1875
  msgstr ""
1876
 
1877
- #: dashboard/publisher/groups-edit.php:225
1878
- #: dashboard/publisher/groups-edit.php:263
1879
  msgid "after the 6th paragraph"
1880
  msgstr ""
1881
 
1882
- #: dashboard/publisher/groups-edit.php:226
1883
- #: dashboard/publisher/groups-edit.php:264
1884
  msgid "after the 7th paragraph"
1885
  msgstr ""
1886
 
1887
- #: dashboard/publisher/groups-edit.php:227
1888
- #: dashboard/publisher/groups-edit.php:265
1889
  msgid "after the 8th paragraph"
1890
  msgstr ""
1891
 
1892
- #: dashboard/publisher/groups-edit.php:233
1893
  msgid "Which categories?"
1894
  msgstr "¿En qué categorías?"
1895
 
1896
- #: dashboard/publisher/groups-edit.php:238
1897
  msgid "Click the categories posts you want the adverts to show in."
1898
  msgstr ""
1899
  "Haga clic en las categorías de los mensajes en los que mostrar los anuncios."
1900
 
1901
- #: dashboard/publisher/groups-edit.php:243
1902
  msgid "In pages?"
1903
  msgstr ""
1904
 
1905
- #: dashboard/publisher/groups-edit.php:271
1906
  msgid "Which pages?"
1907
  msgstr "¿En qué páginas?"
1908
 
1909
- #: dashboard/publisher/groups-edit.php:276
1910
  msgid "Click the pages you want the adverts to show in."
1911
  msgstr "Haga clic en las páginas en las que mostrar los anuncios."
1912
 
1913
- #: dashboard/publisher/groups-edit.php:304
1914
  msgid "Wrapper code"
1915
  msgstr "Código"
1916
 
1917
- #: dashboard/publisher/groups-edit.php:305
1918
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1919
  msgstr ""
1920
 
1921
- #: dashboard/publisher/groups-edit.php:309
1922
  msgid "Before advert"
1923
  msgstr ""
1924
 
1925
- #: dashboard/publisher/groups-edit.php:313
1926
  msgid "Options:"
1927
  msgstr "Opciones:"
1928
 
1929
- #: dashboard/publisher/groups-edit.php:317
1930
  msgid "After advert"
1931
  msgstr ""
1932
 
1933
- #: dashboard/publisher/groups-edit.php:326
1934
  msgid "Select adverts"
1935
  msgstr ""
1936
 
1937
- #: dashboard/publisher/groups-edit.php:331
1938
  msgid "Choose adverts"
1939
  msgstr ""
1940
 
1941
- #: dashboard/publisher/groups-edit.php:337
1942
  msgid "Visible until"
1943
  msgstr "Visible hasta"
1944
 
1945
- #: dashboard/publisher/groups-edit.php:379
1946
  msgid "No adverts created!"
1947
  msgstr ""
1948
 
@@ -1962,8 +1955,8 @@ msgstr "Está a punto de eliminar un grupo"
1962
  msgid "This action can not be undone!"
1963
  msgstr "Esta acción no se puede deshacerse!"
1964
 
1965
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
1966
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
1967
  msgid "OK to continue, CANCEL to stop."
1968
  msgstr "OK para continuar, CANCELAR para detenerlo."
1969
 
@@ -1975,156 +1968,171 @@ msgstr "No hay grupos creados!"
1975
  msgid "Statistics for group"
1976
  msgstr "Estadisticas por Grupo"
1977
 
1978
- #: dashboard/settings/advertisers.php:12
1979
  msgid "Advertisers - Available in AdRotate Pro"
1980
  msgstr ""
1981
 
1982
- #: dashboard/settings/advertisers.php:13
1983
  msgid "Enable advertisers so they can review and manage their own ads."
1984
  msgstr ""
1985
  "Habilitar a los anunciantes para que puedan revisar y gestionar sus propios "
1986
  "anuncios."
1987
 
1988
- #: dashboard/settings/advertisers.php:16
1989
  msgid "Enable Advertisers"
1990
  msgstr "Los Anunciantes pueden"
1991
 
1992
- #: dashboard/settings/advertisers.php:18
1993
  msgid "Allow adverts to be coupled to users (Advertisers)."
1994
  msgstr "Permitir colocar publicidad a los usuarios (Los Anunciantes)."
1995
 
1996
- #: dashboard/settings/advertisers.php:22
1997
  msgid "Edit/update adverts"
1998
  msgstr "Editar/Actualizar Anuncios"
1999
 
2000
- #: dashboard/settings/advertisers.php:24
2001
  msgid "Allow advertisers to add new or edit their adverts."
2002
  msgstr "Permitir a los anunciantes editar sus anuncios o añadir nuevos."
2003
 
2004
- #: dashboard/settings/advertisers.php:30
 
 
 
 
 
 
 
 
2005
  msgid ""
2006
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2007
  "be enabled, too."
2008
  msgstr ""
2009
 
2010
- #: dashboard/settings/advertisers.php:34
2011
  msgid "Advertiser role"
2012
  msgstr "Perfil del Anunciante"
2013
 
2014
- #: dashboard/settings/advertisers.php:36
2015
  msgid "Create a seperate user role for your advertisers."
2016
  msgstr ""
2017
 
2018
- #: dashboard/settings/advertisers.php:37
2019
  msgid ""
2020
  "Don't forget to give these users access to their advertiser dashboard via "
2021
  "the Roles tab."
2022
  msgstr ""
2023
 
2024
- #: dashboard/settings/general.php:12
 
 
 
 
 
 
 
2025
  msgid "General Settings"
2026
  msgstr ""
2027
 
2028
- #: dashboard/settings/general.php:13
2029
  msgid "General settings for AdRotate."
2030
  msgstr ""
2031
 
2032
- #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2033
  msgid "Some options are only available in AdRotate Pro!"
2034
  msgstr ""
2035
 
2036
- #: dashboard/settings/general.php:16
2037
  msgid "Shortcode in widgets"
2038
  msgstr ""
2039
 
2040
- #: dashboard/settings/general.php:17
2041
  msgid ""
2042
  "Enable this option to if your theme does not support shortcodes in the "
2043
  "WordPress text widget."
2044
  msgstr ""
2045
 
2046
- #: dashboard/settings/general.php:20
2047
  msgid "Disable live preview"
2048
  msgstr ""
2049
 
2050
- #: dashboard/settings/general.php:21
2051
  msgid ""
2052
  "Enable this option if you have faulty adverts that overflow their designated "
2053
  "area while creating/editing adverts."
2054
  msgstr ""
2055
 
2056
- #: dashboard/settings/general.php:24
2057
  msgid "Disable dynamic mode"
2058
  msgstr ""
2059
 
2060
- #: dashboard/settings/general.php:25
2061
  msgid ""
2062
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2063
  "you notice skipping or jumpy content."
2064
  msgstr ""
2065
 
2066
- #: dashboard/settings/general.php:28
2067
  msgid "Load jQuery"
2068
  msgstr "Cargar jQuery"
2069
 
2070
- #: dashboard/settings/general.php:29
2071
  msgid ""
2072
  "Enable this option if your theme does not load jQuery. jQuery is required "
2073
  "for dynamic groups, statistics and some other features."
2074
  msgstr ""
2075
 
2076
- #: dashboard/settings/general.php:32
2077
  msgid "Load scripts in footer?"
2078
  msgstr ""
2079
 
2080
- #: dashboard/settings/general.php:33
2081
  msgid ""
2082
  "Enable this option if you want to load all AdRotate Javascripts in the "
2083
  "footer of your site."
2084
  msgstr ""
2085
 
2086
- #: dashboard/settings/general.php:36
2087
  msgid "Adblock disguise"
2088
  msgstr ""
2089
 
2090
- #: dashboard/settings/general.php:38
2091
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2092
  msgstr ""
2093
 
2094
- #: dashboard/settings/general.php:39
2095
  msgid ""
2096
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2097
  msgstr ""
2098
 
2099
- #: dashboard/settings/general.php:39
2100
  msgid ""
2101
  "To also apply this feature to widgets, use a text widget with a shortcode "
2102
  "instead of the AdRotate widget."
2103
  msgstr ""
2104
 
2105
- #: dashboard/settings/general.php:39
2106
  msgid ""
2107
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2108
  "feature will have little effect!"
2109
  msgstr ""
2110
 
2111
- #: dashboard/settings/general.php:44
2112
  msgid "Banner Folder"
2113
  msgstr "Carpeta de los Banners"
2114
 
2115
- #: dashboard/settings/general.php:45
2116
  msgid "Set a location where your banner images will be stored."
2117
  msgstr "Establezca un lugar donde se almacenarán las imágenes de banner."
2118
 
2119
- #: dashboard/settings/general.php:48
2120
  msgid "Location"
2121
  msgstr "Localización"
2122
 
2123
- #: dashboard/settings/general.php:50
2124
  msgid "(Default: wp-content/banners/)."
2125
  msgstr "(Predeterminado: wp-content/banners/)."
2126
 
2127
- #: dashboard/settings/general.php:51
2128
  msgid ""
2129
  "To try and trick ad blockers you could set the folder to something crazy "
2130
  "like:"
@@ -2132,7 +2140,7 @@ msgstr ""
2132
  "Un truco para tratar de bloquear el acceso a los anuncios es asignar a la "
2133
  "carpeta un nombre impensable como:"
2134
 
2135
- #: dashboard/settings/general.php:52
2136
  msgid ""
2137
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2138
  "will show errors when the folder is missing."
@@ -2140,36 +2148,36 @@ msgstr ""
2140
  "Si esta carpeta no existe, el sistema NO LA CREARA de forma automática. "
2141
  "Cuando no se encuentre la carpeta, AdRotate mostrará errores."
2142
 
2143
- #: dashboard/settings/general.php:57
2144
  msgid "Bot filter"
2145
  msgstr "Filtro de Motor de búsqueda"
2146
 
2147
- #: dashboard/settings/general.php:58
2148
  msgid "The bot filter is used for the AdRotate stats tracker."
2149
  msgstr ""
2150
 
2151
- #: dashboard/settings/general.php:61
2152
  msgid "User-Agent Filter"
2153
  msgstr "Filtro de User-Agent"
2154
 
2155
- #: dashboard/settings/general.php:64
2156
  msgid ""
2157
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2158
  msgstr ""
2159
 
2160
- #: dashboard/settings/general.php:65
2161
  msgid ""
2162
  "Keep in mind that this might give false positives. The word 'fire' also "
2163
  "matches 'firefox', but not vice-versa. So be careful!"
2164
  msgstr ""
2165
 
2166
- #: dashboard/settings/general.php:66
2167
  msgid ""
2168
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2169
  "characters are stripped out."
2170
  msgstr ""
2171
 
2172
- #: dashboard/settings/general.php:67
2173
  msgid ""
2174
  "Additionally to the list specified here, empty User-Agents are blocked as "
2175
  "well."
@@ -2177,86 +2185,118 @@ msgstr ""
2177
  "Adicionalmente a la lista especificada aquí, los User-Agents vacíos son "
2178
  "bloqueados."
2179
 
2180
- #: dashboard/settings/general.php:67
2181
  msgid "Learn more about"
2182
  msgstr "Más información sobre"
2183
 
2184
- #: dashboard/settings/general.php:67
2185
  msgid "user-agents"
2186
  msgstr "user-agents"
2187
 
2188
- #: dashboard/settings/geotargeting.php:12
2189
  msgid "Geo Targeting - Available in AdRotate Pro"
2190
  msgstr ""
2191
 
2192
- #: dashboard/settings/geotargeting.php:13
2193
  msgid "Target certain areas in the world for better advertising oppurtunities."
2194
  msgstr ""
2195
 
2196
- #: dashboard/settings/geotargeting.php:16
2197
  msgid "Which Geo Service"
2198
  msgstr ""
2199
 
2200
- #: dashboard/settings/geotargeting.php:25
2201
- msgid ""
2202
- "The most complete and accurate geo targeting you can get for only $20 USD "
2203
- "per 50000 lookups."
 
 
2204
  msgstr ""
2205
 
2206
- #: dashboard/settings/geotargeting.php:27
2207
- msgid "Free lookups every day, uses GeoLite2 databases from MaxMind!"
 
 
2208
  msgstr ""
2209
 
2210
  #: dashboard/settings/geotargeting.php:33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2211
  msgid "Geo Cookie Lifespan"
2212
  msgstr ""
2213
 
2214
- #: dashboard/settings/geotargeting.php:42
2215
  msgid "Hours."
2216
  msgstr ""
2217
 
2218
- #: dashboard/settings/geotargeting.php:43
2219
  msgid ""
2220
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2221
  "cookie last? A longer period is less accurate for mobile users but may "
2222
  "reduce the usage of your lookups drastically."
2223
  msgstr ""
2224
 
2225
- #: dashboard/settings/geotargeting.php:49
2226
  msgid "MaxMind City/Country"
2227
  msgstr ""
2228
 
2229
- #: dashboard/settings/geotargeting.php:52
2230
  msgid "Username/Email"
2231
  msgstr ""
2232
 
2233
- #: dashboard/settings/geotargeting.php:56
2234
  msgid "Password/License Key"
2235
  msgstr ""
2236
 
2237
- #: dashboard/settings/maintenance.php:12
2238
  msgid "Maintenance"
2239
  msgstr "Mantenimiento"
2240
 
2241
- #: dashboard/settings/maintenance.php:13
2242
  msgid ""
2243
  "Use these functions when you notice your database is slow, unresponsive and "
2244
  "sluggish."
2245
  msgstr ""
2246
 
2247
- #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2248
  msgid "Optimize Database"
2249
  msgstr "Optimizar la Base de Datos"
2250
 
2251
- #: dashboard/settings/maintenance.php:18
2252
  msgid "You are about to optimize the AdRotate database."
2253
  msgstr "Vas a optimizar la base de datos AdRotate."
2254
 
2255
- #: dashboard/settings/maintenance.php:18
2256
  msgid "Did you make a backup of your database?"
2257
  msgstr "¿Hiciste una copia de seguridad de la base de datos?"
2258
 
2259
- #: dashboard/settings/maintenance.php:18
2260
  msgid ""
2261
  "This may take a moment and may cause your website to respond slow "
2262
  "temporarily!"
@@ -2264,11 +2304,11 @@ msgstr ""
2264
  "Esto puede tardar un momento y puede hacer que su sitio web responda "
2265
  "lentamente temporalmente!"
2266
 
2267
- #: dashboard/settings/maintenance.php:19
2268
  msgid "Cleans up overhead data in the AdRotate tables."
2269
  msgstr "Limpiar los datos generales de las tablas AdRotate."
2270
 
2271
- #: dashboard/settings/maintenance.php:20
2272
  msgid ""
2273
  "Overhead data is accumulated garbage resulting from many changes you've "
2274
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2277,11 +2317,11 @@ msgstr ""
2277
  "cambios que haya realizado. Esto puede variar de cero a cientos de Kb de "
2278
  "datos."
2279
 
2280
- #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2281
  msgid "Clean-up Database"
2282
  msgstr "Limpieza de la Base de Datos"
2283
 
2284
- #: dashboard/settings/maintenance.php:26
2285
  msgid ""
2286
  "You are about to clean up your database. This may delete expired schedules "
2287
  "and older statistics."
@@ -2289,50 +2329,50 @@ msgstr ""
2289
  "Vas a limpiar tu base de datos. Esto puede eliminar programas vencidos y las "
2290
  "estadísticas más antigüas."
2291
 
2292
- #: dashboard/settings/maintenance.php:26
2293
  msgid "Are you sure you want to continue?"
2294
  msgstr "¿Está seguro que desea continuar?"
2295
 
2296
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2297
  msgid "This might take a while and may slow down your site during this action!"
2298
  msgstr ""
2299
  "Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
2300
 
2301
- #: dashboard/settings/maintenance.php:27
2302
  msgid "Delete stats older than 356 days (Optional)."
2303
  msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
2304
 
2305
- #: dashboard/settings/maintenance.php:28
2306
  msgid ""
2307
  "AdRotate creates empty records when you start making ads, groups or "
2308
  "schedules. In rare occasions these records are faulty."
2309
  msgstr ""
2310
 
2311
- #: dashboard/settings/maintenance.php:28
2312
  msgid ""
2313
  "If you made an ad, group or schedule that does not save when you make it use "
2314
  "this button to delete those empty records."
2315
  msgstr ""
2316
 
2317
- #: dashboard/settings/maintenance.php:28
2318
  msgid ""
2319
  "Additionally you can clean up old schedules and/or statistics. This will "
2320
  "improve the speed of your site."
2321
  msgstr ""
2322
 
2323
- #: dashboard/settings/maintenance.php:32
2324
  msgid "Re-evaluate Ads"
2325
  msgstr "Reevaluar Anuncios"
2326
 
2327
- #: dashboard/settings/maintenance.php:34
2328
  msgid "Re-evaluate all ads"
2329
  msgstr "Reevaluar todos los Anuncios"
2330
 
2331
- #: dashboard/settings/maintenance.php:34
2332
  msgid "You are about to check all ads for errors."
2333
  msgstr "Vas a comprobar todos los anuncios para localizar errores."
2334
 
2335
- #: dashboard/settings/maintenance.php:35
2336
  msgid ""
2337
  "This will apply all evaluation rules to all ads to see if any error slipped "
2338
  "in. Normally you should not need this feature."
@@ -2340,7 +2380,7 @@ msgstr ""
2340
  "Esto aplicará las reglas de evaluación a todos los anuncios para ver si hay "
2341
  "algún error. Normalmente no debería necesitar esta función."
2342
 
2343
- #: dashboard/settings/maintenance.php:39
2344
  msgid ""
2345
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2346
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2353,11 +2393,11 @@ msgid ""
2353
  "is not a valid point in any case."
2354
  msgstr ""
2355
 
2356
- #: dashboard/settings/maintenance.php:41
2357
  msgid "Troubleshooting"
2358
  msgstr "Solución de problemas"
2359
 
2360
- #: dashboard/settings/maintenance.php:42
2361
  msgid ""
2362
  "The below options are not meant for normal use and are only there for "
2363
  "developers to review saved settings or how ads are selected. These can be "
@@ -2365,19 +2405,19 @@ msgid ""
2365
  "SHOULD BE LEFT UNCHECKED!!"
2366
  msgstr ""
2367
 
2368
- #: dashboard/settings/maintenance.php:45
2369
  msgid "Developer Debug"
2370
  msgstr "Depurar (Test) del Desarrollador"
2371
 
2372
- #: dashboard/settings/maintenance.php:47
2373
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2374
  msgstr ""
2375
 
2376
- #: dashboard/settings/maintenance.php:48
2377
  msgid "View advert specs and (some) stats in the dashboard."
2378
  msgstr ""
2379
 
2380
- #: dashboard/settings/maintenance.php:49
2381
  msgid ""
2382
  "Disable timers for clicks and impressions and enable a alert window for "
2383
  "clicktracking."
@@ -2385,88 +2425,106 @@ msgstr ""
2385
  "Deshabilitar contadores de tiempo de clics e impresiones y activar una "
2386
  "ventana de alerta para el seguimiento de clics."
2387
 
2388
- #: dashboard/settings/maintenance.php:50
2389
  msgid "Temporarily disable encryption on the redirect url."
2390
  msgstr "Desactivar temporalmente el cifrado en la redireccion de la url."
2391
 
2392
- #: dashboard/settings/maintenance.php:55
2393
  msgid "Status and Versions"
2394
  msgstr ""
2395
 
2396
- #: dashboard/settings/maintenance.php:58
2397
- msgid "Current version:"
2398
- msgstr "Versión actual:"
2399
-
2400
- #: dashboard/settings/maintenance.php:59
2401
- msgid "Previous version:"
2402
- msgstr "Versión anterior:"
2403
-
2404
  #: dashboard/settings/maintenance.php:62
2405
- msgid "Current database version:"
2406
- msgstr "Versión actual de la base de datos:"
2407
-
2408
- #: dashboard/settings/maintenance.php:63
2409
- msgid "Previous database version:"
2410
- msgstr "Versión anterior de la base de datos:"
2411
-
2412
- #: dashboard/settings/maintenance.php:66
2413
  msgid "Current status of adverts"
2414
  msgstr "Estado actual de los anuncios"
2415
 
2416
- #: dashboard/settings/maintenance.php:67
2417
  msgid "Normal"
2418
  msgstr "Normal"
2419
 
2420
- #: dashboard/settings/maintenance.php:67
2421
  msgid "Error"
2422
  msgstr "Error"
2423
 
2424
- #: dashboard/settings/maintenance.php:67
2425
  msgid "Expired"
2426
  msgstr "Caducado"
2427
 
2428
- #: dashboard/settings/maintenance.php:67
2429
  msgid "Expires Soon"
2430
  msgstr "Caduca Pronto"
2431
 
2432
- #: dashboard/settings/maintenance.php:67
2433
  msgid "Unknown"
2434
  msgstr ""
2435
 
2436
- #: dashboard/settings/maintenance.php:70
2437
  msgid "Banners/assets Folder"
2438
  msgstr ""
2439
 
2440
- #: dashboard/settings/maintenance.php:72
2441
  msgid "Exists and appears writable"
2442
  msgstr ""
2443
 
2444
- #: dashboard/settings/maintenance.php:72
2445
  msgid "Not writable or does not exist"
2446
  msgstr ""
2447
 
 
 
 
 
2448
  #: dashboard/settings/maintenance.php:76
2449
- #, fuzzy
2450
- msgid "Ad evaluation next run:"
2451
- msgstr "Evaluación de Anuncios en la siguiente ejecución:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2452
 
2453
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
2454
- msgid "Not scheduled!"
2455
- msgstr "No Programada!"
2456
 
2457
- #: dashboard/settings/maintenance.php:80
2458
- msgid "Clean Trackerdata next run:"
2459
- msgstr "Ultima ejecución de la limpieza de la base de datos:"
2460
 
2461
- #: dashboard/settings/misc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
2462
  msgid "Miscellaneous"
2463
  msgstr "Varios"
2464
 
2465
- #: dashboard/settings/misc.php:15
2466
  msgid "Widget alignment"
2467
  msgstr "Alineación de Widget"
2468
 
2469
- #: dashboard/settings/misc.php:16
2470
  msgid ""
2471
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2472
  "not always help!)"
@@ -2474,11 +2532,11 @@ msgstr ""
2474
  "Marque esta casilla si tus widgets no se alinean en la barra lateral de las "
2475
  "plantillas (theme). (No siempre ayuda!)"
2476
 
2477
- #: dashboard/settings/misc.php:19
2478
  msgid "Widget padding"
2479
  msgstr "Relleno de Widget"
2480
 
2481
- #: dashboard/settings/misc.php:20
2482
  msgid ""
2483
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2484
  "not always work!)"
@@ -2486,36 +2544,36 @@ msgstr ""
2486
  "Habilitar esta opción para eliminar el relleno (espacio en blanco) alrededor "
2487
  "de los anuncios en los widgets. (No siempre funciona!)"
2488
 
2489
- #: dashboard/settings/misc.php:24
2490
  #, fuzzy
2491
  msgid "NOTICE:"
2492
  msgstr "Aviso"
2493
 
2494
- #: dashboard/settings/misc.php:25
2495
  msgid ""
2496
  "You have enabled W3 Total Caching support but not defined the security hash."
2497
  msgstr ""
2498
 
2499
- #: dashboard/settings/misc.php:25
2500
  msgid ""
2501
  "AdRotate has generated the following line for you to add to your wp-config."
2502
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2503
  "add this line, check out the following guide;"
2504
  msgstr ""
2505
 
2506
- #: dashboard/settings/misc.php:25
2507
  msgid "Set up W3 Total Caching"
2508
  msgstr ""
2509
 
2510
- #: dashboard/settings/misc.php:29
2511
  msgid "W3 Total Caching"
2512
  msgstr "W3 Total Cache"
2513
 
2514
- #: dashboard/settings/misc.php:30
2515
  msgid "Check this box if you use W3 Total Caching on your site."
2516
  msgstr "Marque esta casilla si utiliza W3 Total Cache en su sitio."
2517
 
2518
- #: dashboard/settings/misc.php:34
2519
  msgid ""
2520
  "It may take a while for the ad to start rotating. The caching plugin needs "
2521
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2524,7 +2582,7 @@ msgstr ""
2524
  "caché tiene que actualizar la memoria caché. Esto puede tomar hasta una "
2525
  "semana si no se realiza de forma manual."
2526
 
2527
- #: dashboard/settings/misc.php:34
2528
  msgid ""
2529
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2530
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2533,32 +2591,32 @@ msgstr ""
2533
  "el Widget AdRotate. Si utiliza un fragmento PHP necesita envolver dentro del "
2534
  "código PHP la exclusión a ti mismo."
2535
 
2536
- #: dashboard/settings/notifications.php:12
2537
  msgid "Notifications"
2538
  msgstr "Notificaciones"
2539
 
2540
- #: dashboard/settings/notifications.php:13
2541
  msgid "Set up who gets notifications if ads need your attention."
2542
  msgstr ""
2543
  "Configurar para recibir notificaciones si los anuncios requieren su atención."
2544
 
2545
- #: dashboard/settings/notifications.php:16
2546
  msgid "How to notify"
2547
  msgstr ""
2548
 
2549
- #: dashboard/settings/notifications.php:18
2550
  msgid "Dashboard banner."
2551
  msgstr ""
2552
 
2553
- #: dashboard/settings/notifications.php:19
2554
  msgid "Email message."
2555
  msgstr "Mensaje de Correo eléctronico"
2556
 
2557
- #: dashboard/settings/notifications.php:20
2558
  msgid "Push notifications to your smartphone."
2559
  msgstr "Enviar Notificaciones a su smartphone."
2560
 
2561
- #: dashboard/settings/notifications.php:21
2562
  msgid ""
2563
  "Push notifications are delivered through Pushover, a notification service "
2564
  "for Android and iOS"
@@ -2566,7 +2624,7 @@ msgstr ""
2566
  "Las Notificaciones Push se entregan a través de Pushover, un servicio de "
2567
  "notificación para Android y iOS"
2568
 
2569
- #: dashboard/settings/notifications.php:21
2570
  msgid ""
2571
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2572
  "information can be found on the pushover website;"
@@ -2574,117 +2632,81 @@ msgstr ""
2574
  "La App Pushover se compra una sola vez, ya sea para Android y/o iOS. Puede "
2575
  "encontrar más información en la página web"
2576
 
2577
- #: dashboard/settings/notifications.php:25
2578
  msgid "Test notification"
2579
  msgstr ""
2580
 
2581
- #: dashboard/settings/notifications.php:27
2582
  msgid "Test"
2583
  msgstr ""
2584
 
2585
- #: dashboard/settings/notifications.php:27
2586
  msgid ""
2587
  "Send a test notification to enabled methods. Before you test, save the "
2588
  "options first!"
2589
  msgstr ""
2590
 
2591
- #: dashboard/settings/notifications.php:32
2592
- msgid "Dashboard"
2593
  msgstr ""
2594
 
2595
- #: dashboard/settings/notifications.php:33
2596
  msgid ""
2597
  "These go in a dashboard banner visible to all users with access to AdRotate "
2598
  "on every WordPress dashboard page."
2599
  msgstr ""
2600
 
2601
- #: dashboard/settings/notifications.php:36
2602
- #: dashboard/settings/notifications.php:68
 
2603
  msgid "What"
2604
  msgstr ""
2605
 
2606
- #: dashboard/settings/notifications.php:38
2607
  msgid "Expired adverts."
2608
  msgstr ""
2609
 
2610
- #: dashboard/settings/notifications.php:39
2611
  msgid "Almost expired adverts."
2612
  msgstr ""
2613
 
2614
- #: dashboard/settings/notifications.php:44
2615
- msgid "Email"
2616
  msgstr ""
2617
 
2618
- #: dashboard/settings/notifications.php:45
2619
- msgid "Set up who gets notification emails."
2620
- msgstr "Establecer lo que se recibe en los mensajes de notificación."
2621
-
2622
- #: dashboard/settings/notifications.php:48
2623
- msgid "Publishers"
2624
- msgstr "Editores"
2625
-
2626
  #: dashboard/settings/notifications.php:51
2627
  msgid ""
2628
- "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2629
- "list to a minimum!"
2630
  msgstr ""
2631
- "Una lista de direcciones de correo electrónico separada por comas. Un máximo "
2632
- "de 5 direcciones. Mantenga esta lista al mínimo!"
2633
-
2634
- #: dashboard/settings/notifications.php:52
2635
- msgid ""
2636
- "Messages are sent once every 24 hours when needed. If this field is empty no "
2637
- "email notifications will be send."
2638
- msgstr ""
2639
- "Los mensajes se envían cuando sea necesario una vez cada 24 horas. Si este "
2640
- "campo está vacío, no será envíada ninguna notificación de correo electrónico."
2641
 
2642
  #: dashboard/settings/notifications.php:56
2643
- msgid "Advertisers"
2644
- msgstr "Anunciantes"
2645
-
2646
- #: dashboard/settings/notifications.php:59
2647
- msgid ""
2648
- "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2649
- "This field may not be empty!"
2650
- msgstr ""
2651
- "¿Quién recibe correo electrónico de los anunciantes. Un máximo de 2 "
2652
- "direcciones separadas por comas. Este campo no puede estar vacío!"
2653
-
2654
- #: dashboard/settings/notifications.php:64
2655
- msgid "Push"
2656
- msgstr ""
2657
-
2658
- #: dashboard/settings/notifications.php:65
2659
- msgid ""
2660
- "Receive information about what is happening with your AdRotate setup on your "
2661
- "smartphone via Pushover."
2662
- msgstr ""
2663
- "Recibir información acerca de lo que está sucediendo con su configuración "
2664
- "AdRotate en su smartphone a través de Pushover."
2665
 
2666
- #: dashboard/settings/notifications.php:70
 
2667
  msgid "When you are running out of Geo Targeting Lookups."
2668
  msgstr ""
2669
 
2670
- #: dashboard/settings/notifications.php:71
2671
- msgid "Daily digest of any advert status other than normal."
2672
- msgstr "Resumen diario de cualquier estado de anuncio que no sea normal."
2673
-
2674
- #: dashboard/settings/notifications.php:72
2675
  msgid "Any advertiser saving an advert in your moderation queue."
2676
  msgstr ""
2677
  "Cualquier anunciante puede guardar un anuncio en su cola de moderación."
2678
 
2679
- #: dashboard/settings/notifications.php:73
 
2680
  msgid "A moderator approved an advert from the moderation queue."
2681
  msgstr "Un moderador aprobó un anuncio de la cola de moderación."
2682
 
2683
- #: dashboard/settings/notifications.php:74
 
2684
  msgid "A moderator rejected an advert from the moderation queue."
2685
  msgstr "Un moderador rechazó un anuncio de la cola de moderación."
2686
 
2687
- #: dashboard/settings/notifications.php:74
 
2688
  msgid ""
2689
  "If you have a lot of activity with many advertisers adding/changing adverts "
2690
  "you may get a lot of messages!"
@@ -2692,188 +2714,287 @@ msgstr ""
2692
  "Si tiene una gran cantidad de actividad con muchos anunciantes que agregan o "
2693
  "cambian los anuncios usted puede recibir una gran cantidad de mensajes!"
2694
 
2695
- #: dashboard/settings/notifications.php:79
2696
- msgid "User Key"
 
 
 
 
 
2697
  msgstr ""
2698
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2699
  #: dashboard/settings/notifications.php:81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2700
  msgid "Get your user token"
2701
  msgstr ""
2702
 
2703
- #: dashboard/settings/notifications.php:81
2704
- #: dashboard/settings/notifications.php:87
2705
  msgid "here"
2706
  msgstr ""
2707
 
2708
- #: dashboard/settings/notifications.php:85
2709
  msgid "Api Token"
2710
  msgstr ""
2711
 
2712
- #: dashboard/settings/notifications.php:87
2713
  msgid "Create your"
2714
  msgstr ""
2715
 
2716
- #: dashboard/settings/notifications.php:87
2717
  msgid "App"
2718
  msgstr ""
2719
 
2720
- #: dashboard/settings/notifications.php:87
2721
  msgid "and get your API token"
2722
  msgstr ""
2723
 
2724
- #: dashboard/settings/roles.php:12
2725
  msgid "Roles"
2726
  msgstr ""
2727
 
2728
- #: dashboard/settings/roles.php:13
2729
  msgid "Who has access to what?"
2730
  msgstr "¿Quién tiene acceso a qué?"
2731
 
2732
- #: dashboard/settings/roles.php:16
2733
  msgid "Manage/Add/Edit adverts"
2734
  msgstr "Gestionar/Añadir/Editar anuncios"
2735
 
2736
- #: dashboard/settings/roles.php:20
2737
  msgid "Role to see and add/edit ads."
2738
  msgstr "Perfil para ver y añadir/editar los anuncios."
2739
 
2740
- #: dashboard/settings/roles.php:24
2741
  msgid "Delete/Reset adverts"
2742
  msgstr "Borrar/Restablecer anuncios"
2743
 
2744
- #: dashboard/settings/roles.php:28
2745
  msgid "Role to delete ads and reset stats."
2746
  msgstr "Perfil para eliminar los anuncios y restablecer las estadísticas."
2747
 
2748
- #: dashboard/settings/roles.php:32
2749
  msgid "Manage/Add/Edit groups"
2750
  msgstr "Gestionar/Añadir/Editar grupos"
2751
 
2752
- #: dashboard/settings/roles.php:36
2753
  msgid "Role to see and add/edit groups."
2754
  msgstr "Perfil para ver y añadir/editar grupos."
2755
 
2756
- #: dashboard/settings/roles.php:40
2757
  msgid "Delete groups"
2758
  msgstr "Eliminar grupos"
2759
 
2760
- #: dashboard/settings/roles.php:44
2761
  msgid "Role to delete groups."
2762
  msgstr "Perfil para eliminar grupos"
2763
 
2764
- #: dashboard/settings/statistics.php:13
2765
  msgid "Track statistics for your adverts."
2766
  msgstr ""
2767
 
2768
- #: dashboard/settings/statistics.php:16
2769
  msgid "How to track stats"
2770
  msgstr ""
2771
 
2772
- #: dashboard/settings/statistics.php:25
2773
  msgid "Tracks impressions and clicks internally"
2774
  msgstr ""
2775
 
2776
- #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2777
- #: dashboard/settings/statistics.php:29
2778
  msgid "manual"
2779
  msgstr ""
2780
 
2781
- #: dashboard/settings/statistics.php:26
2782
  msgid ""
2783
  "Click and Impression recording, Click and impression limits, impression "
2784
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2785
  "will only track impressions."
2786
  msgstr ""
2787
 
2788
- #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2789
  msgid "In AdRotate Pro!"
2790
  msgstr ""
2791
 
2792
- #: dashboard/settings/statistics.php:27
2793
  msgid ""
2794
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2795
  "attributes"
2796
  msgstr ""
2797
 
2798
- #: dashboard/settings/statistics.php:28
2799
  msgid ""
2800
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2801
  "Contents."
2802
  msgstr ""
2803
 
2804
- #: dashboard/settings/statistics.php:29
2805
  msgid ""
2806
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2807
  "uses onClick() and onload() in adverts"
2808
  msgstr ""
2809
 
2810
- #: dashboard/settings/statistics.php:30
2811
  msgid ""
2812
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2813
  "Banner."
2814
  msgstr ""
2815
 
2816
- #: dashboard/settings/statistics.php:36
2817
  msgid "Internal Tracker"
2818
  msgstr ""
2819
 
2820
- #: dashboard/settings/statistics.php:37
2821
  msgid ""
2822
  "The settings below are for the internal tracker and have no effect when "
2823
  "using Piwik/Google Analytics."
2824
  msgstr ""
2825
 
2826
- #: dashboard/settings/statistics.php:40
2827
  msgid "Logged in impressions"
2828
  msgstr "Contar impresiones"
2829
 
2830
- #: dashboard/settings/statistics.php:42
2831
  msgid "Track impressions from logged in users."
2832
  msgstr ""
2833
 
2834
- #: dashboard/settings/statistics.php:46
2835
  msgid "Logged in clicks"
2836
  msgstr "Contar clics"
2837
 
2838
- #: dashboard/settings/statistics.php:48
2839
  msgid "Track clicks from logged in users."
2840
  msgstr "Seguimiento de los clics de los usuarios registrados."
2841
 
2842
- #: dashboard/settings/statistics.php:52
2843
  msgid "Impression timer"
2844
  msgstr ""
2845
 
2846
- #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2847
  msgid "Seconds."
2848
  msgstr "Segundos."
2849
 
2850
- #: dashboard/settings/statistics.php:55
2851
  #, fuzzy
2852
  msgid "Default: 60."
2853
  msgstr "Predeterminado"
2854
 
2855
- #: dashboard/settings/statistics.php:55
2856
  #, fuzzy
2857
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2858
  msgstr ""
2859
  "Este número no puede estar vacío, ser negativo o exceder de 3600 (1 hora)."
2860
 
2861
- #: dashboard/settings/statistics.php:59
2862
  msgid "Click timer"
2863
  msgstr ""
2864
 
2865
- #: dashboard/settings/statistics.php:62
2866
  #, fuzzy
2867
  msgid "Default: 86400."
2868
  msgstr "Predeterminado"
2869
 
2870
- #: dashboard/settings/statistics.php:62
2871
  #, fuzzy
2872
  msgid ""
2873
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2874
  msgstr ""
2875
  "Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
2876
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2877
  #~ msgid "Get more features with AdRotate Pro"
2878
  #~ msgstr "Obtenga más funciones con AdRotate Pro"
2879
 
@@ -2914,9 +3035,6 @@ msgstr ""
2914
  #~ msgid "Email Notifications"
2915
  #~ msgstr "Notificaciones por correo electrónico"
2916
 
2917
- #~ msgid "Push Notifications"
2918
- #~ msgstr "Notificaciones Push"
2919
-
2920
  #~ msgid "active ad(s) expired."
2921
  #~ msgstr "anuncio(s) activo(s) caducó."
2922
 
@@ -3022,15 +3140,9 @@ msgstr ""
3022
  #~ msgid "Barely visible"
3023
  #~ msgstr "Apenas visible"
3024
 
3025
- #~ msgid "Less than average"
3026
- #~ msgstr "Menos de la media"
3027
-
3028
  #~ msgid "Normal coverage"
3029
  #~ msgstr "Cobertura normal"
3030
 
3031
- #~ msgid "More than average"
3032
- #~ msgstr "Más de la media"
3033
-
3034
  #~ msgid "Best visibility"
3035
  #~ msgstr "La mejor visibilidad"
3036
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate v 3.10.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-17 23:25+0800\n"
6
+ "PO-Revision-Date: 2016-07-17 23:25+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Juanjo Navarro <cmsweb@juanjoresa.es>\n"
9
  "Language: es_ES\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:842
21
  msgid "No files found"
22
  msgstr "No se han encontrado contenidos"
23
 
24
+ #: adrotate-functions.php:845
25
  msgid "Folder not found or not accessible"
26
  msgstr "La carpeta no se encuentra o no es accesible"
27
 
28
+ #: adrotate-functions.php:894
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:898
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:902
37
  msgid "Ad(s) deleted"
38
  msgstr "Anuncio(s) eliminado"
39
 
40
+ #: adrotate-functions.php:906
41
  msgid "Group deleted"
42
  msgstr "Grupo borrado"
43
 
44
+ #: adrotate-functions.php:910
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Estadisticas del Anuncio(s) restablecidas"
47
 
48
+ #: adrotate-functions.php:914
49
  msgid "Ad(s) renewed"
50
  msgstr "Anuncio(s) renovado"
51
 
52
+ #: adrotate-functions.php:918
53
  msgid "Ad(s) deactivated"
54
  msgstr "Anuncio(s) desactivado"
55
 
56
+ #: adrotate-functions.php:922
57
  msgid "Ad(s) activated"
58
  msgstr "Anuncio(s) activado"
59
 
60
+ #: adrotate-functions.php:926
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupo incluyendo sus anuncios eliminados"
63
 
64
+ #: adrotate-functions.php:930
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Exportación Creada"
68
 
69
+ #: adrotate-functions.php:935
70
  msgid "Settings saved"
71
  msgstr "Ajustes guardados"
72
 
73
+ #: adrotate-functions.php:939
74
  msgid "Database optimized"
75
  msgstr "Base de Datos optimizada"
76
 
77
+ #: adrotate-functions.php:943
78
  msgid "Database repaired"
79
  msgstr "Base de Datos reparada"
80
 
81
+ #: adrotate-functions.php:947
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr "Los anuncios evaluados y los estados se corregiran cuando se requiera"
84
 
85
+ #: adrotate-functions.php:951
86
  msgid "Empty database records removed"
87
  msgstr "Se han eliminado los registros vacios de la base de datos"
88
 
89
+ #: adrotate-functions.php:956
90
  msgid "Action prohibited"
91
  msgstr "Acción prohibida"
92
 
93
+ #: adrotate-functions.php:960
94
  msgid ""
95
  "The ad was saved but has an issue which might prevent it from working "
96
  "properly. Review the colored ad."
97
  msgstr ""
98
 
99
+ #: adrotate-functions.php:964
100
  msgid "No data found in selected time period"
101
  msgstr "No se han encontrado datos en el período de tiempo seleccionado"
102
 
103
+ #: adrotate-functions.php:968
104
  msgid "Database can only be optimized or cleaned once every hour"
105
  msgstr "La Base de datos sólo se puede optimizar o limpiar una vez cada hora"
106
 
107
+ #: adrotate-functions.php:972
108
  msgid "Form can not be (partially) empty!"
109
  msgstr ""
110
 
111
+ #: adrotate-functions.php:976
112
  msgid "No ads found."
113
  msgstr ""
114
 
115
+ #: adrotate-functions.php:980
116
  msgid "Unexpected error"
117
  msgstr ""
118
 
119
+ #: adrotate-manage-publisher.php:685
120
  msgid "AdRotate Advertiser"
121
  msgstr ""
122
 
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
  "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
  "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
  "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
  "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
  "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
  "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
+ #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
201
  msgid "Check adverts"
202
  msgstr ""
203
 
204
+ #: adrotate-output.php:675
205
  msgid ""
206
  "You have enable caching support but W3 Total Cache is not active on your "
207
  "site!"
208
  msgstr ""
209
 
210
+ #: adrotate-output.php:678
211
  msgid ""
212
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
213
  "not set."
214
  msgstr ""
215
 
216
+ #: adrotate-output.php:683
217
  msgid "Your AdRotate Banner folder is not writable or does not exist."
218
  msgstr ""
219
 
220
+ #: adrotate-output.php:723 dashboard/adrotatepro.php:99
221
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
222
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
223
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
224
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
225
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
226
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
227
+ #: dashboard/settings/geotargeting.php:35
228
  #, fuzzy
229
  msgid "Buy now"
230
  msgstr "Comprar"
231
 
232
+ #: adrotate-output.php:724
233
  msgid ""
234
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
235
  "to the <strong>PRO</strong> version"
236
  msgstr ""
237
 
238
+ #: adrotate-output.php:724
239
  #, php-format
240
  msgid ""
241
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
242
  msgstr ""
243
 
244
+ #: adrotate-output.php:724
245
  msgid "Thank you for your purchase!"
246
  msgstr ""
247
 
248
+ #: adrotate-output.php:785
249
  msgid ""
250
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
251
  "this menu. Check out the"
252
  msgstr ""
253
 
254
+ #: adrotate-output.php:785
255
  msgid "manuals"
256
  msgstr "manuales"
257
 
258
+ #: adrotate-output.php:785 adrotate-output.php:852
259
  msgid "and"
260
  msgstr ""
261
 
262
+ #: adrotate-output.php:785
263
  msgid "forums"
264
  msgstr ""
265
 
266
+ #: adrotate-output.php:815
267
  #, fuzzy
268
  msgid "Useful Links"
269
  msgstr "Enlaces de interés"
270
 
271
+ #: adrotate-output.php:816
272
  msgid "Useful links to learn more about AdRotate"
273
  msgstr ""
274
 
275
+ #: adrotate-output.php:818
276
  msgid "AdRotate website"
277
  msgstr ""
278
 
279
+ #: adrotate-output.php:819
280
  #, fuzzy
281
  msgid "Getting Started With AdRotate"
282
  msgstr "Obtenga más funciones con AdRotate Pro"
283
 
284
+ #: adrotate-output.php:820
285
  #, fuzzy
286
  msgid "AdRotate manuals"
287
  msgstr "Información de AdRotate"
288
 
289
+ #: adrotate-output.php:821
290
  #, fuzzy
291
  msgid "AdRotate Support Forum"
292
  msgstr "Tienda AdRotate"
293
 
294
+ #: adrotate-output.php:844
295
  #, fuzzy
296
  msgid "Help AdRotate Grow"
297
  msgstr "Atascado con AdRotate? Yo te ayudaré!"
298
 
299
+ #: adrotate-output.php:845
300
  msgid "Follow Arnan on Facebook"
301
  msgstr ""
302
 
303
+ #: adrotate-output.php:852
304
  msgid ""
305
  "A lot of users only think to review AdRotate when something goes wrong while "
306
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
307
  msgstr ""
308
 
309
+ #: adrotate-output.php:852
310
  msgid "If you find AdRotate useful please leave your honest"
311
  msgstr ""
312
 
313
+ #: adrotate-output.php:852
314
  msgid "rating"
315
  msgstr ""
316
 
317
+ #: adrotate-output.php:852
318
  #, fuzzy
319
  msgid "review"
320
  msgstr "Revise el anuncio aquí:"
321
 
322
+ #: adrotate-output.php:852
323
  msgid "on WordPress.org to help AdRotate grow in a positive way"
324
  msgstr ""
325
 
326
+ #: adrotate-output.php:885 dashboard/settings/notifications.php:50
327
+ #: dashboard/settings/notifications.php:80
328
  msgid "Available in AdRotate Pro"
329
  msgstr "Disponible en AdRotate Pro"
330
 
331
+ #: adrotate-output.php:885
332
  msgid "More information..."
333
  msgstr "Más información..."
334
 
335
+ #: adrotate-output.php:886
336
  msgid "This feature is available in AdRotate Pro"
337
  msgstr "Esta función está disponible en AdRotate Pro"
338
 
339
+ #: adrotate-output.php:886
340
  msgid "Learn more"
341
  msgstr "Aprender más"
342
 
343
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
344
+ #: dashboard/publisher/adverts-edit.php:235
345
  msgid "January"
346
  msgstr "Enero"
347
 
348
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
349
+ #: dashboard/publisher/adverts-edit.php:236
350
  msgid "February"
351
  msgstr "Febrero"
352
 
353
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
354
+ #: dashboard/publisher/adverts-edit.php:237
355
  msgid "March"
356
  msgstr "Marzo"
357
 
358
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
359
+ #: dashboard/publisher/adverts-edit.php:238
360
  msgid "April"
361
  msgstr "Abril"
362
 
363
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
364
+ #: dashboard/publisher/adverts-edit.php:239
365
  msgid "May"
366
  msgstr "Mayo"
367
 
368
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
369
+ #: dashboard/publisher/adverts-edit.php:240
370
  msgid "June"
371
  msgstr "Junio"
372
 
373
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
374
+ #: dashboard/publisher/adverts-edit.php:241
375
  msgid "July"
376
  msgstr "Julio"
377
 
378
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
379
+ #: dashboard/publisher/adverts-edit.php:242
380
  msgid "August"
381
  msgstr "Agosto"
382
 
383
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
384
+ #: dashboard/publisher/adverts-edit.php:243
385
  msgid "September"
386
  msgstr "Septiembre"
387
 
388
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
389
+ #: dashboard/publisher/adverts-edit.php:244
390
  msgid "October"
391
  msgstr "Octubre"
392
 
393
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
394
+ #: dashboard/publisher/adverts-edit.php:245
395
  msgid "November"
396
  msgstr "Noviembre"
397
 
398
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
399
+ #: dashboard/publisher/adverts-edit.php:246
400
  msgid "December"
401
  msgstr "Diciembre"
402
 
457
  msgid "Fill in the ID of the type you want to display!"
458
  msgstr "Rellene con el ID del tipo que desea mostrar!"
459
 
460
+ #: adrotate.php:102
461
  msgid "General Info"
462
  msgstr "Información General"
463
 
464
+ #: adrotate.php:103
465
  msgid "AdRotate Pro"
466
  msgstr "AdRotate Pro"
467
 
468
+ #: adrotate.php:104
469
  msgid "Manage Adverts"
470
  msgstr ""
471
 
472
+ #: adrotate.php:105 dashboard/publisher/groups-main.php:12
473
  msgid "Manage Groups"
474
  msgstr "Gestionar Grupos"
475
 
476
+ #: adrotate.php:106 adrotate.php:369
477
  #, fuzzy
478
  msgid "Manage Schedules"
479
  msgstr "Gestionar Programas"
480
 
481
+ #: adrotate.php:107
482
  #, fuzzy
483
  msgid "Manage Media"
484
  msgstr "Gestionar Medios"
485
 
486
+ #: adrotate.php:108
487
  msgid "Settings"
488
  msgstr "Ajustes"
489
 
490
+ #: adrotate.php:128
491
  msgid "AdRotate Info"
492
  msgstr "Información de AdRotate"
493
 
494
+ #: adrotate.php:146
495
  msgid "AdRotate Professional"
496
  msgstr "AdRotate Profesional"
497
 
498
+ #: adrotate.php:186
499
  msgid "Advert Management"
500
  msgstr ""
501
 
502
+ #: adrotate.php:244 adrotate.php:311 adrotate.php:364
503
  msgid "Manage"
504
  msgstr "Gestionar"
505
 
506
+ #: adrotate.php:245 adrotate.php:312 adrotate.php:365
507
  msgid "Add New"
508
  msgstr "Añadir Nuevo"
509
 
510
+ #: adrotate.php:305
511
  msgid "Group Management"
512
  msgstr "Administración de Grupos"
513
 
514
+ #: adrotate.php:314
515
  msgid "Report"
516
  msgstr "Informe"
517
 
518
+ #: adrotate.php:360
519
  #, fuzzy
520
  msgid "Schedule Management available in AdRotate Pro"
521
  msgstr "Disponible en AdRotate Pro"
522
 
523
+ #: adrotate.php:370
524
  msgid ""
525
  "Schedule management and multiple schedules per advert is available in "
526
  "AdRotate Pro."
527
  msgstr ""
528
 
529
+ #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
530
  #: dashboard/publisher/adverts-main.php:114
531
+ #: dashboard/publisher/groups-edit.php:71
532
  #: dashboard/publisher/groups-main.php:89
533
  #, fuzzy
534
  msgid "More information"
535
  msgstr "Más información..."
536
 
537
+ #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
538
  #: dashboard/publisher/adverts-error.php:19
539
  #: dashboard/publisher/adverts-main.php:20
540
  #: dashboard/publisher/groups-main.php:20
541
  msgid "Bulk Actions"
542
  msgstr "Acciones en Lote"
543
 
544
+ #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
545
  #: dashboard/publisher/adverts-error.php:29
546
  #: dashboard/publisher/adverts-main.php:30
547
  #: dashboard/publisher/groups-main.php:24
548
  msgid "Go"
549
  msgstr "Aplicar"
550
 
551
+ #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
552
  #: dashboard/publisher/adverts-error.php:39
553
  #: dashboard/publisher/adverts-main.php:39
 
554
  #: dashboard/publisher/groups-main.php:32
555
  msgid "ID"
556
  msgstr "ID"
557
 
558
+ #: adrotate.php:388
559
  #, fuzzy
560
  msgid "Start"
561
  msgstr "Iniciar"
562
 
563
+ #: adrotate.php:388
564
  #, fuzzy
565
  msgid "End"
566
  msgstr "Finalizar"
567
 
568
+ #: adrotate.php:389
569
  msgid "Ads"
570
  msgstr "Anuncios"
571
 
572
+ #: adrotate.php:391
573
  msgid "Max Impressions"
574
  msgstr "Número máximo de Impresiones"
575
 
576
+ #: adrotate.php:392
577
  msgid "Max Clicks"
578
  msgstr "Número máximo de Clics"
579
 
580
+ #: adrotate.php:422
581
  #, fuzzy
582
  msgid "No schedules created yet!"
583
  msgstr "Todavia no se han creado programas!"
584
 
585
+ #: adrotate.php:427
586
  #, fuzzy
587
  msgid "Easily manage your schedules from here with AdRotate Pro."
588
  msgstr "Obtenga más funciones con AdRotate Pro"
589
 
590
+ #: adrotate.php:427 adrotate.php:490
591
  #, fuzzy
592
  msgid "Upgrade today!"
593
  msgstr "Hoy"
594
 
595
+ #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
596
+ #: dashboard/publisher/groups-edit.php:383
597
  msgid "Expires soon."
598
  msgstr "Caduca pronto."
599
 
600
+ #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
601
+ #: dashboard/publisher/groups-edit.php:384
602
  msgid "Has expired."
603
  msgstr "Ha expirado."
604
 
605
+ #: adrotate.php:452
606
  #, fuzzy
607
  msgid "Media Management available in AdRotate Pro"
608
  msgstr "Esta función está disponible en AdRotate Pro"
609
 
610
+ #: adrotate.php:454
611
  msgid "Upload images to the AdRotate Pro banners folder from here."
612
  msgstr ""
613
 
614
+ #: adrotate.php:454
615
  msgid ""
616
  "This is useful if you use responsive adverts with multiple images or have "
617
  "HTML5 adverts containing multiple files."
618
  msgstr ""
619
 
620
+ #: adrotate.php:454
621
  #, fuzzy
622
  msgid "Media uploading and management is available in AdRotate Pro."
623
  msgstr "Esta función está disponible en AdRotate Pro"
624
 
625
+ #: adrotate.php:456
626
  msgid "Upload new file"
627
  msgstr ""
628
 
629
+ #: adrotate.php:457
630
  msgid "Accepted files:"
631
  msgstr ""
632
 
633
+ #: adrotate.php:457
634
  msgid "For HTML5 ads you can also upload html and javascript files."
635
  msgstr ""
636
 
637
+ #: adrotate.php:457
638
  #, fuzzy
639
  msgid "Maximum size is 512Kb."
640
  msgstr "El tamaño máximo es 512Kb."
641
 
642
+ #: adrotate.php:457
643
  #, fuzzy
644
  msgid "Important:"
645
  msgstr "Importante:"
646
 
647
+ #: adrotate.php:457
648
  #, fuzzy
649
  msgid ""
650
  "Make sure your file has no spaces or special characters in the name. Replace "
653
  "Asegúrese de que en el nombre de su archivo no contiene espacios ni "
654
  "caracteres especiales. Reemplace los espacios con un - o _."
655
 
656
+ #: adrotate.php:457
657
  msgid ""
658
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
659
  "file so it knows about the changed name. For example for the javascript file."
660
  msgstr ""
661
 
662
+ #: adrotate.php:460
663
  #, fuzzy
664
  msgid ""
665
  "For responsive adverts make sure the filename is in the following format; "
669
  "siguiente formato; \"imagename.full.ext\". Se recomienda una serie completa "
670
  "de imágenes del mismo tamaño."
671
 
672
+ #: adrotate.php:461
673
  msgid ""
674
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
675
  "filename instead of \".full\" for the various viewports."
678
  "\".1024\" en el nombre de archivo en lugar de \".completo\" para los "
679
  "diferentes visores."
680
 
681
+ #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
682
+ #: dashboard/publisher/groups-edit.php:316
683
  msgid "Example:"
684
  msgstr "Ejemplo:"
685
 
686
+ #: adrotate.php:462
687
  #, fuzzy
688
  msgid ""
689
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
692
  "image.full.jpg, image.320.jpg e image.768.jpg sirven el mismo anuncio para "
693
  "distintas ventanas gráficas. Se necesita jQuery."
694
 
695
+ #: adrotate.php:466
696
  msgid "Upload file"
697
  msgstr ""
698
 
699
+ #: adrotate.php:466
700
  msgid "Click only once per file!"
701
  msgstr ""
702
 
703
+ #: adrotate.php:469
704
  msgid "Available files in"
705
  msgstr ""
706
 
707
+ #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
708
  #: dashboard/publisher/groups-main.php:33
709
  msgid "Name"
710
  msgstr "Nombre"
711
 
712
+ #: adrotate.php:475
713
  #, fuzzy
714
  msgid "Actions"
715
  msgstr "Acciones"
716
 
717
+ #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
718
+ #: adrotate.php:484 adrotate.php:485 adrotate.php:486
719
  #: dashboard/publisher/adverts-disabled.php:22
720
  #: dashboard/publisher/adverts-error.php:21
721
  #: dashboard/publisher/adverts-main.php:22
722
  msgid "Delete"
723
  msgstr "Borrar"
724
 
725
+ #: adrotate.php:490
726
  #, fuzzy
727
  msgid ""
728
  "Make sure the banner images are not in use by adverts when you delete them!"
730
  "¡Asegúrese de que las imágenes de banner no se están utilizando en los "
731
  "anuncios cuando las elimine!"
732
 
733
+ #: adrotate.php:490
734
  #, fuzzy
735
  msgid "Manage your banner folder from here with AdRotate Pro."
736
  msgstr "Obtenga más funciones con AdRotate Pro"
737
 
738
+ #: adrotate.php:516
739
  msgid "AdRotate Settings"
740
  msgstr "Ajustes AdRotate"
741
 
 
 
 
 
742
  #: dashboard/adrotatepro.php:20
743
  msgid "Satisfy your advertisers"
744
  msgstr "Satisfacer a sus anunciantes"
929
  msgid "Adverts that need you"
930
  msgstr "Estos Anuncios"
931
 
932
+ #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
933
  #: dashboard/publisher/groups-main.php:34
934
  msgid "Adverts"
935
  msgstr "Anuncios"
972
  msgstr ""
973
 
974
  #: dashboard/publisher/adverts-disabled.php:21
975
+ #: dashboard/publisher/adverts-edit.php:170
976
  msgid "Activate"
977
  msgstr "Activar"
978
 
989
  msgstr "Inio / Final"
990
 
991
  #: dashboard/publisher/adverts-disabled.php:37
992
+ #: dashboard/publisher/adverts-edit.php:110
993
  #: dashboard/publisher/adverts-error.php:41
994
  #: dashboard/publisher/adverts-main.php:41
995
  msgid "Title"
997
 
998
  #: dashboard/publisher/adverts-disabled.php:38
999
  #: dashboard/publisher/adverts-main.php:44
1000
+ #: dashboard/publisher/groups-edit.php:329
1001
  #: dashboard/publisher/groups-main.php:36
1002
  msgid "Shown"
1003
  msgstr "Mostrado"
1006
  #: dashboard/publisher/adverts-main.php:46
1007
  #: dashboard/publisher/adverts-report.php:36
1008
  #: dashboard/publisher/adverts-report.php:57
1009
+ #: dashboard/publisher/groups-edit.php:330
1010
  #: dashboard/publisher/groups-main.php:38
1011
  #: dashboard/publisher/groups-report.php:37
1012
  #: dashboard/publisher/groups-report.php:58
1048
  msgstr "El AdCode no puede estar vacío!"
1049
 
1050
  #: dashboard/publisher/adverts-edit.php:51
1051
+ msgid ""
1052
+ "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1053
+ "use!"
1054
  msgstr ""
1055
 
1056
  #: dashboard/publisher/adverts-edit.php:54
 
 
 
 
1057
  msgid ""
1058
+ "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1059
+ "use!"
1060
  msgstr ""
1061
 
1062
+ #: dashboard/publisher/adverts-edit.php:57
1063
  msgid ""
1064
  "There is a problem saving the image. Please reset your image and re-save the "
1065
  "ad!"
1066
  msgstr ""
1067
 
1068
+ #: dashboard/publisher/adverts-edit.php:60
 
 
 
 
1069
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1070
  msgstr ""
1071
 
1072
+ #: dashboard/publisher/adverts-edit.php:65
1073
  msgid ""
1074
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1075
  "the ad!"
1077
  "AdRotate no encuentra ningún error, pero el anuncio está marcado como "
1078
  "erróneo, intente volver a guardar la anuncio!"
1079
 
1080
+ #: dashboard/publisher/adverts-edit.php:68
1081
  msgid "This ad is expired and currently not shown on your website!"
1082
  msgstr "Este anuncio ha caducado y actualmente no se muestra en su página web!"
1083
 
1084
+ #: dashboard/publisher/adverts-edit.php:71
1085
  msgid "The ad will expire in less than 2 days!"
1086
  msgstr "El anuncio caducará en menos de 2 días!"
1087
 
1088
+ #: dashboard/publisher/adverts-edit.php:74
1089
  msgid "This ad will expire in less than 7 days!"
1090
  msgstr "El anuncio caducará en menos de 7 días!"
1091
 
1092
+ #: dashboard/publisher/adverts-edit.php:77
1093
  msgid "This ad has been disabled and does not rotate on your site!"
1094
  msgstr "Este anuncio ha sido desactivado y no rota en su página web!"
1095
 
1096
+ #: dashboard/publisher/adverts-edit.php:102
1097
  msgid "New Advert"
1098
  msgstr "Nuevo Anuncio"
1099
 
1100
+ #: dashboard/publisher/adverts-edit.php:104
1101
  msgid "Edit Advert"
1102
  msgstr "Editar Anuncio"
1103
 
1104
+ #: dashboard/publisher/adverts-edit.php:116
1105
  msgid "AdCode"
1106
  msgstr ""
1107
 
1108
+ #: dashboard/publisher/adverts-edit.php:121
1109
  msgid "Basic Examples:"
1110
  msgstr "Ejemplos Básicos:"
1111
 
1112
+ #: dashboard/publisher/adverts-edit.php:128
1113
  msgid "Useful tags"
1114
  msgstr ""
1115
 
1116
+ #: dashboard/publisher/adverts-edit.php:130
1117
  msgid "Insert the advert ID Number."
1118
  msgstr ""
1119
 
1120
+ #: dashboard/publisher/adverts-edit.php:130
1121
+ msgid "Required when selecting a asset below."
1122
  msgstr ""
1123
 
1124
+ #: dashboard/publisher/adverts-edit.php:130
1125
  msgid "Insert the advert name."
1126
  msgstr ""
1127
 
1128
+ #: dashboard/publisher/adverts-edit.php:130
1129
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1130
  msgstr ""
1131
 
1132
+ #: dashboard/publisher/adverts-edit.php:130
1133
  msgid "Add inside the <a> tag to open advert in a new window."
1134
  msgstr ""
1135
 
1136
+ #: dashboard/publisher/adverts-edit.php:130
1137
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1138
  msgstr ""
1139
 
1140
+ #: dashboard/publisher/adverts-edit.php:130
1141
  msgid ""
1142
  "Place the cursor in your AdCode where you want to add any of these tags and "
1143
  "click to add it."
1144
  msgstr ""
1145
 
1146
+ #: dashboard/publisher/adverts-edit.php:135
1147
  msgid "Preview"
1148
  msgstr "Vista previa"
1149
 
1150
+ #: dashboard/publisher/adverts-edit.php:138
1151
  msgid ""
1152
  "Note: While this preview is an accurate one, it might look different then it "
1153
  "does on the website."
1155
  "Nota: Mientras que la previsualización de la imagen aqui mostrada es "
1156
  "precisa, en su pagina web puede tener un aspecto diferente."
1157
 
1158
+ #: dashboard/publisher/adverts-edit.php:139
1159
  msgid ""
1160
  "This is because of CSS differences. Your themes CSS file is not active here!"
1161
  msgstr ""
1162
  "Esto es debido a las diferencias de CSS. En la zona administrativa no está "
1163
  "activo el archivo CSS de las plantillas (themes)!"
1164
 
1165
+ #: dashboard/publisher/adverts-edit.php:144
1166
  msgid "Banner asset"
1167
  msgstr ""
1168
 
1169
+ #: dashboard/publisher/adverts-edit.php:147
1170
  msgid "WordPress media:"
1171
  msgstr ""
1172
 
1173
+ #: dashboard/publisher/adverts-edit.php:147
1174
  msgid "Select Banner"
1175
  msgstr "Seleccionar Banner"
1176
 
1177
+ #: dashboard/publisher/adverts-edit.php:149
1178
  msgid "- OR -"
1179
  msgstr "- O -"
1180
 
1181
+ #: dashboard/publisher/adverts-edit.php:151
1182
  msgid "Banner folder:"
1183
  msgstr "Carpeta Banner:"
1184
 
1185
+ #: dashboard/publisher/adverts-edit.php:152
1186
  msgid "No image selected"
1187
  msgstr "Ninguna imagen seleccionada"
1188
 
1189
+ #: dashboard/publisher/adverts-edit.php:156
1190
+ msgid "Use %asset% in the adcode instead of the file path."
1191
  msgstr ""
1192
 
1193
+ #: dashboard/publisher/adverts-edit.php:156
1194
  msgid ""
1195
  "Use either the text field or the dropdown. If the textfield has content that "
1196
  "field has priority."
1198
  "Use el campo de texto o en el menú desplegable. Si el campo de texto tiene "
1199
  "un contenido, ese campo tiene prioridad."
1200
 
1201
+ #: dashboard/publisher/adverts-edit.php:161
1202
+ #: dashboard/settings/statistics.php:17
1203
  msgid "Statistics"
1204
  msgstr "Estadísticas"
1205
 
1206
+ #: dashboard/publisher/adverts-edit.php:163
1207
  msgid "Enable click and impression tracking for this advert."
1208
  msgstr ""
1209
 
1210
+ #: dashboard/publisher/adverts-edit.php:164
1211
  msgid ""
1212
  "Note: Clicktracking does not work for Javascript adverts such as those "
1213
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1214
  "always supported."
1215
  msgstr ""
1216
 
1217
+ #: dashboard/publisher/adverts-edit.php:174
1218
  msgid "Yes, this ad will be used"
1219
  msgstr "Sí, se utilizará este anuncio"
1220
 
1221
+ #: dashboard/publisher/adverts-edit.php:175
1222
  msgid "No, do not show this ad anywhere"
1223
  msgstr "No, no mostrar este anuncio en cualquier lugar"
1224
 
1225
+ #: dashboard/publisher/adverts-edit.php:182
1226
  #: dashboard/publisher/adverts-main.php:114
1227
+ #: dashboard/publisher/groups-edit.php:71
1228
  #: dashboard/publisher/groups-main.php:89
1229
  #, fuzzy
1230
  msgid "Get more features with AdRotate Pro."
1231
  msgstr "Obtenga más funciones con AdRotate Pro"
1232
 
1233
+ #: dashboard/publisher/adverts-edit.php:185
1234
+ #: dashboard/publisher/adverts-edit.php:285
1235
+ #: dashboard/publisher/adverts-edit.php:408
1236
+ #: dashboard/publisher/adverts-edit.php:449
1237
  msgid "Save Advert"
1238
  msgstr "Guardar Anuncio"
1239
 
1240
+ #: dashboard/publisher/adverts-edit.php:186
1241
+ #: dashboard/publisher/adverts-edit.php:286
1242
+ #: dashboard/publisher/adverts-edit.php:409
1243
+ #: dashboard/publisher/adverts-edit.php:450
1244
+ #: dashboard/publisher/groups-edit.php:150
1245
+ #: dashboard/publisher/groups-edit.php:297
1246
+ #: dashboard/publisher/groups-edit.php:389
1247
  msgid "Cancel"
1248
  msgstr "Cancelar"
1249
 
1250
+ #: dashboard/publisher/adverts-edit.php:189
1251
+ #: dashboard/publisher/adverts-edit.php:391
1252
+ #: dashboard/publisher/groups-edit.php:132
1253
+ #: dashboard/publisher/groups-edit.php:279
1254
  msgid "Usage"
1255
  msgstr "Utilización"
1256
 
1257
+ #: dashboard/publisher/adverts-edit.php:193
1258
+ #: dashboard/publisher/adverts-edit.php:395
1259
+ #: dashboard/publisher/groups-edit.php:136
1260
+ #: dashboard/publisher/groups-edit.php:283
1261
  msgid "Widget"
1262
  msgstr ""
1263
 
1264
+ #: dashboard/publisher/adverts-edit.php:194
1265
+ #: dashboard/publisher/adverts-edit.php:396
1266
  msgid ""
1267
+ "Drag the AdRotate widget to the sidebar where you want to place the advert "
1268
+ "and select the advert or the group the advert is in."
1269
  msgstr ""
1270
 
1271
+ #: dashboard/publisher/adverts-edit.php:197
1272
+ #: dashboard/publisher/adverts-edit.php:399
1273
+ #: dashboard/publisher/groups-edit.php:140
1274
+ #: dashboard/publisher/groups-edit.php:287
1275
  msgid "In a post or page"
1276
  msgstr ""
1277
 
1278
+ #: dashboard/publisher/adverts-edit.php:199
1279
+ #: dashboard/publisher/adverts-edit.php:401
1280
+ #: dashboard/publisher/groups-edit.php:142
1281
+ #: dashboard/publisher/groups-edit.php:289
1282
  msgid "Directly in a theme"
1283
  msgstr ""
1284
 
1285
+ #: dashboard/publisher/adverts-edit.php:205
1286
  msgid "Schedule your advert"
1287
  msgstr ""
1288
 
1289
+ #: dashboard/publisher/adverts-edit.php:209
1290
  msgid "Start date (day/month/year)"
1291
  msgstr ""
1292
 
1293
+ #: dashboard/publisher/adverts-edit.php:230
1294
  msgid "End date (day/month/year)"
1295
  msgstr ""
1296
 
1297
+ #: dashboard/publisher/adverts-edit.php:253
1298
  msgid "Start time (hh:mm)"
1299
  msgstr ""
1300
 
1301
+ #: dashboard/publisher/adverts-edit.php:260
1302
  msgid "End time (hh:mm)"
1303
  msgstr ""
1304
 
1305
+ #: dashboard/publisher/adverts-edit.php:270
1306
  msgid "Maximum Clicks"
1307
  msgstr ""
1308
 
1309
+ #: dashboard/publisher/adverts-edit.php:271
1310
+ #: dashboard/publisher/adverts-edit.php:273
1311
  msgid "Leave empty or 0 to skip this."
1312
  msgstr "Dejar en blanco o 0 para omitir."
1313
 
1314
+ #: dashboard/publisher/adverts-edit.php:272
1315
  msgid "Maximum Impressions"
1316
  msgstr ""
1317
 
1318
+ #: dashboard/publisher/adverts-edit.php:277
1319
  msgid "Important"
1320
  msgstr ""
1321
 
1322
+ #: dashboard/publisher/adverts-edit.php:278
1323
  msgid ""
1324
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1325
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1326
  "14:00 hours. 6AM is 6:00 hours."
1327
  msgstr ""
1328
 
1329
+ #: dashboard/publisher/adverts-edit.php:282
1330
  msgid ""
1331
  "Create multiple and more advanced schedules for each advert with AdRotate "
1332
  "Pro."
1333
  msgstr ""
1334
 
1335
+ #: dashboard/publisher/adverts-edit.php:282
1336
+ #: dashboard/publisher/adverts-edit.php:345
1337
+ #: dashboard/publisher/adverts-edit.php:389
1338
+ #: dashboard/publisher/groups-edit.php:196
1339
  #, fuzzy
1340
  msgid "Upgrade today"
1341
  msgstr "Hoy"
1342
 
1343
+ #: dashboard/publisher/adverts-edit.php:289
1344
+ #: dashboard/publisher/groups-edit.php:153
1345
  msgid "Advanced"
1346
  msgstr "Avanzado"
1347
 
1348
+ #: dashboard/publisher/adverts-edit.php:290
1349
  msgid "Everything below is optional."
1350
  msgstr "Todo lo siguiente es opcional."
1351
 
1352
+ #: dashboard/publisher/adverts-edit.php:290
1353
+ msgid "Available in AdRotate Pro!"
1354
  msgstr ""
1355
 
1356
+ #: dashboard/publisher/adverts-edit.php:295
1357
+ #: dashboard/publisher/adverts-main.php:42
1358
+ #: dashboard/publisher/groups-edit.php:332
1359
+ msgid "Weight"
1360
+ msgstr "Prioridad"
1361
 
1362
+ #: dashboard/publisher/adverts-edit.php:298
1363
+ msgid "Few impressions"
1364
  msgstr ""
1365
 
1366
+ #: dashboard/publisher/adverts-edit.php:303
1367
+ msgid "Less than average"
1368
+ msgstr "Menos de la media"
1369
 
1370
+ #: dashboard/publisher/adverts-edit.php:308
1371
+ msgid "Normal impressions"
1372
  msgstr ""
1373
 
1374
+ #: dashboard/publisher/adverts-edit.php:313
1375
+ msgid "More than average"
1376
+ msgstr "Más de la media"
1377
+
1378
+ #: dashboard/publisher/adverts-edit.php:318
1379
+ msgid "Many impressions"
1380
  msgstr ""
1381
 
1382
+ #: dashboard/publisher/adverts-edit.php:323
1383
+ msgid "Mobile"
1384
  msgstr ""
1385
 
1386
+ #: dashboard/publisher/adverts-edit.php:325
1387
+ msgid "Computers"
1388
+ msgstr ""
1389
 
1390
+ #: dashboard/publisher/adverts-edit.php:328
1391
+ msgid "Smartphones"
 
 
1392
  msgstr ""
1393
 
1394
+ #: dashboard/publisher/adverts-edit.php:331
1395
+ msgid "Tablets"
1396
+ msgstr ""
 
 
1397
 
1398
+ #: dashboard/publisher/adverts-edit.php:334
1399
  msgid ""
1400
+ "Also enable mobile support in the group this advert goes in or these are "
1401
+ "ignored."
1402
  msgstr ""
1403
 
1404
+ #: dashboard/publisher/adverts-edit.php:338
1405
+ #: dashboard/publisher/groups-edit.php:190
1406
  msgid "Sortorder"
1407
  msgstr ""
1408
 
1409
+ #: dashboard/publisher/adverts-edit.php:340
1410
+ #: dashboard/publisher/groups-edit.php:192
1411
  msgid "For administrative purposes set a sortorder."
1412
  msgstr "A efectos administrativos, establecer una Clasificación normal."
1413
 
1414
+ #: dashboard/publisher/adverts-edit.php:340
1415
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1416
  msgstr "Dejar en blanco o 0 para omitir. Se usará el ID del anuncio."
1417
 
1418
+ #: dashboard/publisher/adverts-edit.php:345
1419
  msgid ""
1420
  "With AdRotate Pro you can easily select which devices the advert should show "
1421
  "on!"
1422
  msgstr ""
1423
 
1424
+ #: dashboard/publisher/adverts-edit.php:347
1425
  msgid "Geo Targeting in AdRotate Pro"
1426
  msgstr ""
1427
 
1428
+ #: dashboard/publisher/adverts-edit.php:348
1429
  msgid ""
1430
  "Assign the advert to a group and enable that group to use Geo Targeting."
1431
  msgstr ""
1432
 
1433
+ #: dashboard/publisher/adverts-edit.php:352
1434
  msgid "Cities/States"
1435
  msgstr ""
1436
 
1437
+ #: dashboard/publisher/adverts-edit.php:355
1438
  msgid ""
1439
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1440
  "states ISO codes are supported)"
1441
  msgstr ""
1442
 
1443
+ #: dashboard/publisher/adverts-edit.php:355
1444
  #, fuzzy
1445
  msgid ""
1446
  "AdRotate does not check the validity of names so make sure you spell them "
1449
  "AdRotate no comprueba la validez de los nombres, así que asegúrate de "
1450
  "escribirlos correctamente!"
1451
 
1452
+ #: dashboard/publisher/adverts-edit.php:359
1453
  msgid "Countries"
1454
  msgstr ""
1455
 
1456
+ #: dashboard/publisher/adverts-edit.php:384
1457
  msgid "Select the countries you want the adverts to show in."
1458
  msgstr "Seleccione los países en los que desea que los anuncios se muestren."
1459
 
1460
+ #: dashboard/publisher/adverts-edit.php:384
1461
  msgid "Cities take priority and will be filtered first."
1462
  msgstr "Las ciudades tendrán prioridad y serán filtradas primero."
1463
 
1464
+ #: dashboard/publisher/adverts-edit.php:389
1465
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1466
  msgstr ""
1467
 
1468
+ #: dashboard/publisher/adverts-edit.php:413
1469
  msgid "Select Groups"
1470
  msgstr "Seleccione Grupos"
1471
 
1472
+ #: dashboard/publisher/adverts-edit.php:418
1473
  msgid "ID - Name"
1474
  msgstr "ID - Nombre"
1475
 
1476
+ #: dashboard/publisher/adverts-edit.php:428
1477
  #: dashboard/publisher/groups-main.php:60
1478
+ #: dashboard/settings/geotargeting.php:49
1479
  msgid "Default"
1480
  msgstr "Predeterminado"
1481
 
1482
+ #: dashboard/publisher/adverts-edit.php:429
1483
  #: dashboard/publisher/groups-main.php:61
1484
  msgid "Dynamic"
1485
  msgstr "Dinámico"
1486
 
1487
+ #: dashboard/publisher/adverts-edit.php:429
1488
  #: dashboard/publisher/groups-main.php:61
1489
  msgid "second rotation"
1490
  msgstr "segundos rotación"
1491
 
1492
+ #: dashboard/publisher/adverts-edit.php:430
1493
  #: dashboard/publisher/groups-main.php:62
1494
  msgid "Block"
1495
  msgstr "Block"
1496
 
1497
+ #: dashboard/publisher/adverts-edit.php:430
1498
  #: dashboard/publisher/groups-main.php:62
1499
  msgid "grid"
1500
  msgstr "cuadrícula"
1501
 
1502
+ #: dashboard/publisher/adverts-edit.php:431
1503
+ #: dashboard/publisher/groups-edit.php:198
1504
  #: dashboard/publisher/groups-main.php:63
1505
  msgid "Post Injection"
1506
  msgstr "Integrarlo después"
1507
 
1508
+ #: dashboard/publisher/adverts-edit.php:432
1509
  msgid "Geolocation"
1510
  msgstr "Geolocalización"
1511
 
1512
+ #: dashboard/publisher/adverts-edit.php:438
1513
+ #: dashboard/publisher/groups-edit.php:57
1514
  #: dashboard/publisher/groups-main.php:70
1515
  msgid "Mode"
1516
  msgstr "Modalidad"
1550
  msgstr "Por 7 días"
1551
 
1552
  #: dashboard/publisher/adverts-error.php:71
1553
+ #: dashboard/publisher/groups-edit.php:382
1554
  msgid "Configuration errors."
1555
  msgstr "Errores de configuración."
1556
 
1563
  msgid "Export to XML"
1564
  msgstr "Exportar"
1565
 
 
 
 
 
 
1566
  #: dashboard/publisher/adverts-main.php:45
1567
  #: dashboard/publisher/adverts-main.php:47
1568
  #: dashboard/publisher/groups-main.php:37
1600
  msgid "Monthly overview of clicks and impressions"
1601
  msgstr "Resumen mensual de clics e impresiones"
1602
 
1603
+ #: dashboard/publisher/adverts-report.php:64
1604
+ #: dashboard/publisher/groups-report.php:65
1605
+ #: dashboard/settings/notifications.php:60
1606
+ #: dashboard/settings/notifications.php:90
1607
+ msgid "Note:"
1608
+ msgstr "Nota:"
1609
+
1610
  #: dashboard/publisher/adverts-report.php:64
1611
  #: dashboard/publisher/groups-report.php:65
1612
  msgid ""
1624
  msgid "Edit Group"
1625
  msgstr "Editar Grupo"
1626
 
1627
+ #: dashboard/publisher/groups-edit.php:60
1628
  msgid "Default - Show one ad at a time"
1629
  msgstr "Predeterminado - Mostrar un anuncio a la vez"
1630
 
1631
+ #: dashboard/publisher/groups-edit.php:61
1632
  msgid "Dynamic Mode - Show a different ad every few seconds"
1633
  msgstr "Modo Dinámico - Mostrar un anuncio diferente cada pocos segundos"
1634
 
1635
+ #: dashboard/publisher/groups-edit.php:62
1636
  msgid "Block Mode - Show a block of adverts"
1637
  msgstr ""
1638
 
1639
+ #: dashboard/publisher/groups-edit.php:66
1640
  #, fuzzy
1641
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1642
  msgstr ""
1644
  "Showoff' para ser cargados. Puede activar esto el menú de Ajustes de "
1645
  "AdRotate."
1646
 
1647
+ #: dashboard/publisher/groups-edit.php:73
1648
+ #: dashboard/publisher/groups-edit.php:100
1649
  msgid "Dynamic and Block Mode"
1650
  msgstr "Modo Dinámico y en Bloque"
1651
 
1652
+ #: dashboard/publisher/groups-edit.php:74
1653
  msgid "Only required if your group is in Dynamic or Block mode."
1654
  msgstr "Sólo es necesario si su grupo está en modo de Dinámico o en Bloque."
1655
 
1656
+ #: dashboard/publisher/groups-edit.php:78
1657
  msgid "Block size"
1658
  msgstr ""
1659
 
1660
+ #: dashboard/publisher/groups-edit.php:84
1661
  msgid "rows"
1662
  msgstr "filas"
1663
 
1664
+ #: dashboard/publisher/groups-edit.php:88
1665
  msgid "columns"
1666
  msgstr "columnas"
1667
 
1668
+ #: dashboard/publisher/groups-edit.php:91
1669
  msgid "Block Mode"
1670
  msgstr "Modo Block"
1671
 
1672
+ #: dashboard/publisher/groups-edit.php:91
1673
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1674
  msgstr ""
1675
 
1676
+ #: dashboard/publisher/groups-edit.php:95
1677
  msgid "Advert size"
1678
  msgstr ""
1679
 
1680
+ #: dashboard/publisher/groups-edit.php:97
1681
  msgid "pixel(s) wide"
1682
  msgstr "ancho pixel(s)"
1683
 
1684
+ #: dashboard/publisher/groups-edit.php:97
1685
  msgid "pixel(s) high."
1686
  msgstr "alto pixel(s)"
1687
 
1688
+ #: dashboard/publisher/groups-edit.php:100
1689
  msgid ""
1690
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1691
  "recommended). Default: 125/125."
1692
  msgstr ""
1693
 
1694
+ #: dashboard/publisher/groups-edit.php:104
1695
  msgid "Automated refresh"
1696
  msgstr "Actualización automatica"
1697
 
1698
+ #: dashboard/publisher/groups-edit.php:123
1699
  msgid "seconds."
1700
  msgstr "segundos."
1701
 
1702
+ #: dashboard/publisher/groups-edit.php:126
1703
  msgid "Dynamic Mode"
1704
  msgstr "Modo Dinámico"
1705
 
1706
+ #: dashboard/publisher/groups-edit.php:126
1707
  msgid ""
1708
  "Load a new advert in this interval without reloading the page. Default: 6."
1709
  msgstr ""
1710
  "Cargar un nuevo anuncio en este intervalo sin recargar la página. "
1711
  "Predeterminado: 6."
1712
 
1713
+ #: dashboard/publisher/groups-edit.php:137
1714
+ #: dashboard/publisher/groups-edit.php:284
1715
  msgid ""
1716
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1717
  "Adverts\" and enter ID"
1718
  msgstr ""
1719
 
1720
+ #: dashboard/publisher/groups-edit.php:149
1721
+ #: dashboard/publisher/groups-edit.php:296
1722
+ #: dashboard/publisher/groups-edit.php:388
1723
  msgid "Save Group"
1724
  msgstr "Guardar Grupo"
1725
 
1726
+ #: dashboard/publisher/groups-edit.php:157
1727
  msgid "Advert Margin"
1728
  msgstr "Margen del anuncio"
1729
 
1730
+ #: dashboard/publisher/groups-edit.php:159
1731
  msgid "pixel(s)"
1732
  msgstr "pixel(s)"
1733
 
1734
+ #: dashboard/publisher/groups-edit.php:162
1735
  msgid "A transparent area outside the advert in pixels. Default: 0."
1736
  msgstr ""
1737
  "Un area transparente alrededor del anuncio en píxeles. Predeterminado: 0."
1738
 
1739
+ #: dashboard/publisher/groups-edit.php:162
1740
  msgid "Set to 0 to disable."
1741
  msgstr "Establece a 0 para desactivar."
1742
 
1743
+ #: dashboard/publisher/groups-edit.php:162
1744
  msgid "Margins are automatically disabled for blocks where required."
1745
  msgstr ""
1746
 
1747
+ #: dashboard/publisher/groups-edit.php:166
1748
  #, fuzzy
1749
  msgid "Align the group"
1750
  msgstr "Anuncios en grupo"
1751
 
1752
+ #: dashboard/publisher/groups-edit.php:169
1753
  #, fuzzy
1754
  msgid "None (Default)"
1755
  msgstr "Predeterminado"
1756
 
1757
+ #: dashboard/publisher/groups-edit.php:170
1758
  msgid "Left"
1759
  msgstr ""
1760
 
1761
+ #: dashboard/publisher/groups-edit.php:171
1762
  #, fuzzy
1763
  msgid "Right"
1764
  msgstr "Prioridad"
1765
 
1766
+ #: dashboard/publisher/groups-edit.php:172
1767
  msgid "Center"
1768
  msgstr ""
1769
 
1770
+ #: dashboard/publisher/groups-edit.php:176
1771
  msgid ""
1772
  "Align the group in your post or page. Using 'center' may affect your margin "
1773
  "setting. Not every theme supports this feature."
1774
  msgstr ""
1775
 
1776
+ #: dashboard/publisher/groups-edit.php:180
1777
+ #: dashboard/settings/advertisers.php:38
1778
  msgid "Geo Targeting"
1779
  msgstr "Geo Targeting"
1780
 
1781
+ #: dashboard/publisher/groups-edit.php:181
1782
  msgid "Enable Geo Targeting for this group."
1783
  msgstr ""
1784
 
1785
+ #: dashboard/publisher/groups-edit.php:182
1786
  msgid "Do not forget to tell the adverts for which areas they should show."
1787
  msgstr "No se olvide indicar en que zonas que se deben mostrar los anuncios."
1788
 
1789
+ #: dashboard/publisher/groups-edit.php:185
1790
  msgid "Mobile support"
1791
  msgstr ""
1792
 
1793
+ #: dashboard/publisher/groups-edit.php:186
1794
  msgid "Enable mobile support for this group."
1795
  msgstr ""
1796
 
1797
+ #: dashboard/publisher/groups-edit.php:187
1798
  msgid "Do not forget to put at least one mobile advert in this group."
1799
  msgstr ""
1800
 
1801
+ #: dashboard/publisher/groups-edit.php:192
1802
  msgid "Leave empty or 0 to skip this. Will default to group id."
1803
  msgstr ""
1804
  "Dejar en blanco o 0 para omitir. Se usará el ID predeterminado de grupo."
1805
 
1806
+ #: dashboard/publisher/groups-edit.php:196
1807
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1808
  msgstr ""
1809
 
1810
+ #: dashboard/publisher/groups-edit.php:201
1811
  msgid "In categories?"
1812
  msgstr ""
1813
 
1814
+ #: dashboard/publisher/groups-edit.php:205
1815
+ #: dashboard/publisher/groups-edit.php:243
1816
+ #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1817
  msgid "Disabled"
1818
  msgstr "Desactivado"
1819
 
1820
+ #: dashboard/publisher/groups-edit.php:206
1821
+ #: dashboard/publisher/groups-edit.php:244
1822
  msgid "Before content"
1823
  msgstr "Antes del contenido"
1824
 
1825
+ #: dashboard/publisher/groups-edit.php:207
1826
+ #: dashboard/publisher/groups-edit.php:245
1827
  msgid "After content"
1828
  msgstr "Después del contenido"
1829
 
1830
+ #: dashboard/publisher/groups-edit.php:208
1831
+ #: dashboard/publisher/groups-edit.php:246
1832
  msgid "Before and after content"
1833
  msgstr "Antes y después del contenido"
1834
 
1835
+ #: dashboard/publisher/groups-edit.php:209
1836
+ #: dashboard/publisher/groups-edit.php:247
1837
  msgid "Inside the content..."
1838
  msgstr ""
1839
 
1840
+ #: dashboard/publisher/groups-edit.php:215
1841
+ #: dashboard/publisher/groups-edit.php:253
1842
  msgid "after the middle paragraph"
1843
  msgstr ""
1844
 
1845
+ #: dashboard/publisher/groups-edit.php:216
1846
+ #: dashboard/publisher/groups-edit.php:254
1847
  msgid "after the 1st paragraph"
1848
  msgstr ""
1849
 
1850
+ #: dashboard/publisher/groups-edit.php:217
1851
+ #: dashboard/publisher/groups-edit.php:255
1852
  msgid "after the 2nd paragraph"
1853
  msgstr ""
1854
 
1855
+ #: dashboard/publisher/groups-edit.php:218
1856
+ #: dashboard/publisher/groups-edit.php:256
1857
  msgid "after the 3rd paragraph"
1858
  msgstr ""
1859
 
1860
+ #: dashboard/publisher/groups-edit.php:219
1861
+ #: dashboard/publisher/groups-edit.php:257
1862
  msgid "after the 4th paragraph"
1863
  msgstr ""
1864
 
1865
+ #: dashboard/publisher/groups-edit.php:220
1866
+ #: dashboard/publisher/groups-edit.php:258
1867
  msgid "after the 5th paragraph"
1868
  msgstr ""
1869
 
1870
+ #: dashboard/publisher/groups-edit.php:221
1871
+ #: dashboard/publisher/groups-edit.php:259
1872
  msgid "after the 6th paragraph"
1873
  msgstr ""
1874
 
1875
+ #: dashboard/publisher/groups-edit.php:222
1876
+ #: dashboard/publisher/groups-edit.php:260
1877
  msgid "after the 7th paragraph"
1878
  msgstr ""
1879
 
1880
+ #: dashboard/publisher/groups-edit.php:223
1881
+ #: dashboard/publisher/groups-edit.php:261
1882
  msgid "after the 8th paragraph"
1883
  msgstr ""
1884
 
1885
+ #: dashboard/publisher/groups-edit.php:229
1886
  msgid "Which categories?"
1887
  msgstr "¿En qué categorías?"
1888
 
1889
+ #: dashboard/publisher/groups-edit.php:234
1890
  msgid "Click the categories posts you want the adverts to show in."
1891
  msgstr ""
1892
  "Haga clic en las categorías de los mensajes en los que mostrar los anuncios."
1893
 
1894
+ #: dashboard/publisher/groups-edit.php:239
1895
  msgid "In pages?"
1896
  msgstr ""
1897
 
1898
+ #: dashboard/publisher/groups-edit.php:267
1899
  msgid "Which pages?"
1900
  msgstr "¿En qué páginas?"
1901
 
1902
+ #: dashboard/publisher/groups-edit.php:272
1903
  msgid "Click the pages you want the adverts to show in."
1904
  msgstr "Haga clic en las páginas en las que mostrar los anuncios."
1905
 
1906
+ #: dashboard/publisher/groups-edit.php:300
1907
  msgid "Wrapper code"
1908
  msgstr "Código"
1909
 
1910
+ #: dashboard/publisher/groups-edit.php:301
1911
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1912
  msgstr ""
1913
 
1914
+ #: dashboard/publisher/groups-edit.php:305
1915
  msgid "Before advert"
1916
  msgstr ""
1917
 
1918
+ #: dashboard/publisher/groups-edit.php:309
1919
  msgid "Options:"
1920
  msgstr "Opciones:"
1921
 
1922
+ #: dashboard/publisher/groups-edit.php:313
1923
  msgid "After advert"
1924
  msgstr ""
1925
 
1926
+ #: dashboard/publisher/groups-edit.php:322
1927
  msgid "Select adverts"
1928
  msgstr ""
1929
 
1930
+ #: dashboard/publisher/groups-edit.php:327
1931
  msgid "Choose adverts"
1932
  msgstr ""
1933
 
1934
+ #: dashboard/publisher/groups-edit.php:333
1935
  msgid "Visible until"
1936
  msgstr "Visible hasta"
1937
 
1938
+ #: dashboard/publisher/groups-edit.php:375
1939
  msgid "No adverts created!"
1940
  msgstr ""
1941
 
1955
  msgid "This action can not be undone!"
1956
  msgstr "Esta acción no se puede deshacerse!"
1957
 
1958
+ #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1959
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
1960
  msgid "OK to continue, CANCEL to stop."
1961
  msgstr "OK para continuar, CANCELAR para detenerlo."
1962
 
1968
  msgid "Statistics for group"
1969
  msgstr "Estadisticas por Grupo"
1970
 
1971
+ #: dashboard/settings/advertisers.php:16
1972
  msgid "Advertisers - Available in AdRotate Pro"
1973
  msgstr ""
1974
 
1975
+ #: dashboard/settings/advertisers.php:17
1976
  msgid "Enable advertisers so they can review and manage their own ads."
1977
  msgstr ""
1978
  "Habilitar a los anunciantes para que puedan revisar y gestionar sus propios "
1979
  "anuncios."
1980
 
1981
+ #: dashboard/settings/advertisers.php:20
1982
  msgid "Enable Advertisers"
1983
  msgstr "Los Anunciantes pueden"
1984
 
1985
+ #: dashboard/settings/advertisers.php:22
1986
  msgid "Allow adverts to be coupled to users (Advertisers)."
1987
  msgstr "Permitir colocar publicidad a los usuarios (Los Anunciantes)."
1988
 
1989
+ #: dashboard/settings/advertisers.php:26
1990
  msgid "Edit/update adverts"
1991
  msgstr "Editar/Actualizar Anuncios"
1992
 
1993
+ #: dashboard/settings/advertisers.php:28
1994
  msgid "Allow advertisers to add new or edit their adverts."
1995
  msgstr "Permitir a los anunciantes editar sus anuncios o añadir nuevos."
1996
 
1997
+ #: dashboard/settings/advertisers.php:32
1998
+ msgid "Mobile adverts"
1999
+ msgstr ""
2000
+
2001
+ #: dashboard/settings/advertisers.php:34
2002
+ msgid "Allow advertisers to specify on which devices their ads will show."
2003
+ msgstr ""
2004
+
2005
+ #: dashboard/settings/advertisers.php:40
2006
  msgid ""
2007
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2008
  "be enabled, too."
2009
  msgstr ""
2010
 
2011
+ #: dashboard/settings/advertisers.php:44
2012
  msgid "Advertiser role"
2013
  msgstr "Perfil del Anunciante"
2014
 
2015
+ #: dashboard/settings/advertisers.php:46
2016
  msgid "Create a seperate user role for your advertisers."
2017
  msgstr ""
2018
 
2019
+ #: dashboard/settings/advertisers.php:47
2020
  msgid ""
2021
  "Don't forget to give these users access to their advertiser dashboard via "
2022
  "the Roles tab."
2023
  msgstr ""
2024
 
2025
+ #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2026
+ #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2027
+ #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2028
+ #: dashboard/settings/statistics.php:73
2029
+ msgid "Update Options"
2030
+ msgstr "Actualizar Opciones"
2031
+
2032
+ #: dashboard/settings/general.php:17
2033
  msgid "General Settings"
2034
  msgstr ""
2035
 
2036
+ #: dashboard/settings/general.php:18
2037
  msgid "General settings for AdRotate."
2038
  msgstr ""
2039
 
2040
+ #: dashboard/settings/general.php:18 dashboard/settings/statistics.php:18
2041
  msgid "Some options are only available in AdRotate Pro!"
2042
  msgstr ""
2043
 
2044
+ #: dashboard/settings/general.php:21
2045
  msgid "Shortcode in widgets"
2046
  msgstr ""
2047
 
2048
+ #: dashboard/settings/general.php:22
2049
  msgid ""
2050
  "Enable this option to if your theme does not support shortcodes in the "
2051
  "WordPress text widget."
2052
  msgstr ""
2053
 
2054
+ #: dashboard/settings/general.php:25
2055
  msgid "Disable live preview"
2056
  msgstr ""
2057
 
2058
+ #: dashboard/settings/general.php:26
2059
  msgid ""
2060
  "Enable this option if you have faulty adverts that overflow their designated "
2061
  "area while creating/editing adverts."
2062
  msgstr ""
2063
 
2064
+ #: dashboard/settings/general.php:29
2065
  msgid "Disable dynamic mode"
2066
  msgstr ""
2067
 
2068
+ #: dashboard/settings/general.php:30
2069
  msgid ""
2070
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2071
  "you notice skipping or jumpy content."
2072
  msgstr ""
2073
 
2074
+ #: dashboard/settings/general.php:33
2075
  msgid "Load jQuery"
2076
  msgstr "Cargar jQuery"
2077
 
2078
+ #: dashboard/settings/general.php:34
2079
  msgid ""
2080
  "Enable this option if your theme does not load jQuery. jQuery is required "
2081
  "for dynamic groups, statistics and some other features."
2082
  msgstr ""
2083
 
2084
+ #: dashboard/settings/general.php:37
2085
  msgid "Load scripts in footer?"
2086
  msgstr ""
2087
 
2088
+ #: dashboard/settings/general.php:38
2089
  msgid ""
2090
  "Enable this option if you want to load all AdRotate Javascripts in the "
2091
  "footer of your site."
2092
  msgstr ""
2093
 
2094
+ #: dashboard/settings/general.php:41
2095
  msgid "Adblock disguise"
2096
  msgstr ""
2097
 
2098
+ #: dashboard/settings/general.php:43
2099
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2100
  msgstr ""
2101
 
2102
+ #: dashboard/settings/general.php:44
2103
  msgid ""
2104
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2105
  msgstr ""
2106
 
2107
+ #: dashboard/settings/general.php:44
2108
  msgid ""
2109
  "To also apply this feature to widgets, use a text widget with a shortcode "
2110
  "instead of the AdRotate widget."
2111
  msgstr ""
2112
 
2113
+ #: dashboard/settings/general.php:44
2114
  msgid ""
2115
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2116
  "feature will have little effect!"
2117
  msgstr ""
2118
 
2119
+ #: dashboard/settings/general.php:49
2120
  msgid "Banner Folder"
2121
  msgstr "Carpeta de los Banners"
2122
 
2123
+ #: dashboard/settings/general.php:50
2124
  msgid "Set a location where your banner images will be stored."
2125
  msgstr "Establezca un lugar donde se almacenarán las imágenes de banner."
2126
 
2127
+ #: dashboard/settings/general.php:53
2128
  msgid "Location"
2129
  msgstr "Localización"
2130
 
2131
+ #: dashboard/settings/general.php:55
2132
  msgid "(Default: wp-content/banners/)."
2133
  msgstr "(Predeterminado: wp-content/banners/)."
2134
 
2135
+ #: dashboard/settings/general.php:56
2136
  msgid ""
2137
  "To try and trick ad blockers you could set the folder to something crazy "
2138
  "like:"
2140
  "Un truco para tratar de bloquear el acceso a los anuncios es asignar a la "
2141
  "carpeta un nombre impensable como:"
2142
 
2143
+ #: dashboard/settings/general.php:57
2144
  msgid ""
2145
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2146
  "will show errors when the folder is missing."
2148
  "Si esta carpeta no existe, el sistema NO LA CREARA de forma automática. "
2149
  "Cuando no se encuentre la carpeta, AdRotate mostrará errores."
2150
 
2151
+ #: dashboard/settings/general.php:62
2152
  msgid "Bot filter"
2153
  msgstr "Filtro de Motor de búsqueda"
2154
 
2155
+ #: dashboard/settings/general.php:63
2156
  msgid "The bot filter is used for the AdRotate stats tracker."
2157
  msgstr ""
2158
 
2159
+ #: dashboard/settings/general.php:66
2160
  msgid "User-Agent Filter"
2161
  msgstr "Filtro de User-Agent"
2162
 
2163
+ #: dashboard/settings/general.php:69
2164
  msgid ""
2165
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2166
  msgstr ""
2167
 
2168
+ #: dashboard/settings/general.php:70
2169
  msgid ""
2170
  "Keep in mind that this might give false positives. The word 'fire' also "
2171
  "matches 'firefox', but not vice-versa. So be careful!"
2172
  msgstr ""
2173
 
2174
+ #: dashboard/settings/general.php:71
2175
  msgid ""
2176
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2177
  "characters are stripped out."
2178
  msgstr ""
2179
 
2180
+ #: dashboard/settings/general.php:72
2181
  msgid ""
2182
  "Additionally to the list specified here, empty User-Agents are blocked as "
2183
  "well."
2185
  "Adicionalmente a la lista especificada aquí, los User-Agents vacíos son "
2186
  "bloqueados."
2187
 
2188
+ #: dashboard/settings/general.php:72
2189
  msgid "Learn more about"
2190
  msgstr "Más información sobre"
2191
 
2192
+ #: dashboard/settings/general.php:72
2193
  msgid "user-agents"
2194
  msgstr "user-agents"
2195
 
2196
+ #: dashboard/settings/geotargeting.php:17
2197
  msgid "Geo Targeting - Available in AdRotate Pro"
2198
  msgstr ""
2199
 
2200
+ #: dashboard/settings/geotargeting.php:18
2201
  msgid "Target certain areas in the world for better advertising oppurtunities."
2202
  msgstr ""
2203
 
2204
+ #: dashboard/settings/geotargeting.php:21
2205
  msgid "Which Geo Service"
2206
  msgstr ""
2207
 
2208
+ #: dashboard/settings/geotargeting.php:28
2209
+ msgid "Experimental"
2210
+ msgstr ""
2211
+
2212
+ #: dashboard/settings/geotargeting.php:31
2213
+ msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2214
  msgstr ""
2215
 
2216
+ #: dashboard/settings/geotargeting.php:32
2217
+ #: dashboard/settings/geotargeting.php:36
2218
+ #: dashboard/settings/geotargeting.php:40
2219
+ msgid "Supports:"
2220
  msgstr ""
2221
 
2222
  #: dashboard/settings/geotargeting.php:33
2223
+ #: dashboard/settings/geotargeting.php:37
2224
+ #: dashboard/settings/geotargeting.php:41
2225
+ msgid "Scalability:"
2226
+ msgstr ""
2227
+
2228
+ #: dashboard/settings/geotargeting.php:33
2229
+ msgid "Suitable for small to medium websites."
2230
+ msgstr ""
2231
+
2232
+ #: dashboard/settings/geotargeting.php:35
2233
+ msgid ""
2234
+ "The most accurate geo targeting you can get for only $20 USD per 50000 "
2235
+ "lookups."
2236
+ msgstr ""
2237
+
2238
+ #: dashboard/settings/geotargeting.php:37
2239
+ msgid "Suitable for any size website as long as you have lookups."
2240
+ msgstr ""
2241
+
2242
+ #: dashboard/settings/geotargeting.php:39
2243
+ msgid "Basic geolocation included in every CloudFlare account."
2244
+ msgstr ""
2245
+
2246
+ #: dashboard/settings/geotargeting.php:41
2247
+ msgid "Suitable for any size website."
2248
+ msgstr ""
2249
+
2250
+ #: dashboard/settings/geotargeting.php:46
2251
  msgid "Geo Cookie Lifespan"
2252
  msgstr ""
2253
 
2254
+ #: dashboard/settings/geotargeting.php:55
2255
  msgid "Hours."
2256
  msgstr ""
2257
 
2258
+ #: dashboard/settings/geotargeting.php:56
2259
  msgid ""
2260
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2261
  "cookie last? A longer period is less accurate for mobile users but may "
2262
  "reduce the usage of your lookups drastically."
2263
  msgstr ""
2264
 
2265
+ #: dashboard/settings/geotargeting.php:62
2266
  msgid "MaxMind City/Country"
2267
  msgstr ""
2268
 
2269
+ #: dashboard/settings/geotargeting.php:65
2270
  msgid "Username/Email"
2271
  msgstr ""
2272
 
2273
+ #: dashboard/settings/geotargeting.php:69
2274
  msgid "Password/License Key"
2275
  msgstr ""
2276
 
2277
+ #: dashboard/settings/maintenance.php:16
2278
  msgid "Maintenance"
2279
  msgstr "Mantenimiento"
2280
 
2281
+ #: dashboard/settings/maintenance.php:17
2282
  msgid ""
2283
  "Use these functions when you notice your database is slow, unresponsive and "
2284
  "sluggish."
2285
  msgstr ""
2286
 
2287
+ #: dashboard/settings/maintenance.php:20 dashboard/settings/maintenance.php:22
2288
  msgid "Optimize Database"
2289
  msgstr "Optimizar la Base de Datos"
2290
 
2291
+ #: dashboard/settings/maintenance.php:22
2292
  msgid "You are about to optimize the AdRotate database."
2293
  msgstr "Vas a optimizar la base de datos AdRotate."
2294
 
2295
+ #: dashboard/settings/maintenance.php:22
2296
  msgid "Did you make a backup of your database?"
2297
  msgstr "¿Hiciste una copia de seguridad de la base de datos?"
2298
 
2299
+ #: dashboard/settings/maintenance.php:22
2300
  msgid ""
2301
  "This may take a moment and may cause your website to respond slow "
2302
  "temporarily!"
2304
  "Esto puede tardar un momento y puede hacer que su sitio web responda "
2305
  "lentamente temporalmente!"
2306
 
2307
+ #: dashboard/settings/maintenance.php:23
2308
  msgid "Cleans up overhead data in the AdRotate tables."
2309
  msgstr "Limpiar los datos generales de las tablas AdRotate."
2310
 
2311
+ #: dashboard/settings/maintenance.php:24
2312
  msgid ""
2313
  "Overhead data is accumulated garbage resulting from many changes you've "
2314
  "made. This can vary from nothing to hundreds of KiB of data."
2317
  "cambios que haya realizado. Esto puede variar de cero a cientos de Kb de "
2318
  "datos."
2319
 
2320
+ #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
2321
  msgid "Clean-up Database"
2322
  msgstr "Limpieza de la Base de Datos"
2323
 
2324
+ #: dashboard/settings/maintenance.php:30
2325
  msgid ""
2326
  "You are about to clean up your database. This may delete expired schedules "
2327
  "and older statistics."
2329
  "Vas a limpiar tu base de datos. Esto puede eliminar programas vencidos y las "
2330
  "estadísticas más antigüas."
2331
 
2332
+ #: dashboard/settings/maintenance.php:30
2333
  msgid "Are you sure you want to continue?"
2334
  msgstr "¿Está seguro que desea continuar?"
2335
 
2336
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
2337
  msgid "This might take a while and may slow down your site during this action!"
2338
  msgstr ""
2339
  "Esto podría tardar un rato y puede ralentizar el sitio durante esta acción!"
2340
 
2341
+ #: dashboard/settings/maintenance.php:31
2342
  msgid "Delete stats older than 356 days (Optional)."
2343
  msgstr "Borrar las estadísticas de más de 356 días (Opcional)."
2344
 
2345
+ #: dashboard/settings/maintenance.php:32
2346
  msgid ""
2347
  "AdRotate creates empty records when you start making ads, groups or "
2348
  "schedules. In rare occasions these records are faulty."
2349
  msgstr ""
2350
 
2351
+ #: dashboard/settings/maintenance.php:32
2352
  msgid ""
2353
  "If you made an ad, group or schedule that does not save when you make it use "
2354
  "this button to delete those empty records."
2355
  msgstr ""
2356
 
2357
+ #: dashboard/settings/maintenance.php:32
2358
  msgid ""
2359
  "Additionally you can clean up old schedules and/or statistics. This will "
2360
  "improve the speed of your site."
2361
  msgstr ""
2362
 
2363
+ #: dashboard/settings/maintenance.php:36
2364
  msgid "Re-evaluate Ads"
2365
  msgstr "Reevaluar Anuncios"
2366
 
2367
+ #: dashboard/settings/maintenance.php:38
2368
  msgid "Re-evaluate all ads"
2369
  msgstr "Reevaluar todos los Anuncios"
2370
 
2371
+ #: dashboard/settings/maintenance.php:38
2372
  msgid "You are about to check all ads for errors."
2373
  msgstr "Vas a comprobar todos los anuncios para localizar errores."
2374
 
2375
+ #: dashboard/settings/maintenance.php:39
2376
  msgid ""
2377
  "This will apply all evaluation rules to all ads to see if any error slipped "
2378
  "in. Normally you should not need this feature."
2380
  "Esto aplicará las reglas de evaluación a todos los anuncios para ver si hay "
2381
  "algún error. Normalmente no debería necesitar esta función."
2382
 
2383
+ #: dashboard/settings/maintenance.php:43
2384
  msgid ""
2385
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2386
  "database. They only apply to your ads/groups and stats. Not to other "
2393
  "is not a valid point in any case."
2394
  msgstr ""
2395
 
2396
+ #: dashboard/settings/maintenance.php:45
2397
  msgid "Troubleshooting"
2398
  msgstr "Solución de problemas"
2399
 
2400
+ #: dashboard/settings/maintenance.php:46
2401
  msgid ""
2402
  "The below options are not meant for normal use and are only there for "
2403
  "developers to review saved settings or how ads are selected. These can be "
2405
  "SHOULD BE LEFT UNCHECKED!!"
2406
  msgstr ""
2407
 
2408
+ #: dashboard/settings/maintenance.php:49
2409
  msgid "Developer Debug"
2410
  msgstr "Depurar (Test) del Desarrollador"
2411
 
2412
+ #: dashboard/settings/maintenance.php:51
2413
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2414
  msgstr ""
2415
 
2416
+ #: dashboard/settings/maintenance.php:52
2417
  msgid "View advert specs and (some) stats in the dashboard."
2418
  msgstr ""
2419
 
2420
+ #: dashboard/settings/maintenance.php:53
2421
  msgid ""
2422
  "Disable timers for clicks and impressions and enable a alert window for "
2423
  "clicktracking."
2425
  "Deshabilitar contadores de tiempo de clics e impresiones y activar una "
2426
  "ventana de alerta para el seguimiento de clics."
2427
 
2428
+ #: dashboard/settings/maintenance.php:54
2429
  msgid "Temporarily disable encryption on the redirect url."
2430
  msgstr "Desactivar temporalmente el cifrado en la redireccion de la url."
2431
 
2432
+ #: dashboard/settings/maintenance.php:59
2433
  msgid "Status and Versions"
2434
  msgstr ""
2435
 
 
 
 
 
 
 
 
 
2436
  #: dashboard/settings/maintenance.php:62
 
 
 
 
 
 
 
 
2437
  msgid "Current status of adverts"
2438
  msgstr "Estado actual de los anuncios"
2439
 
2440
+ #: dashboard/settings/maintenance.php:63
2441
  msgid "Normal"
2442
  msgstr "Normal"
2443
 
2444
+ #: dashboard/settings/maintenance.php:63
2445
  msgid "Error"
2446
  msgstr "Error"
2447
 
2448
+ #: dashboard/settings/maintenance.php:63
2449
  msgid "Expired"
2450
  msgstr "Caducado"
2451
 
2452
+ #: dashboard/settings/maintenance.php:63
2453
  msgid "Expires Soon"
2454
  msgstr "Caduca Pronto"
2455
 
2456
+ #: dashboard/settings/maintenance.php:63
2457
  msgid "Unknown"
2458
  msgstr ""
2459
 
2460
+ #: dashboard/settings/maintenance.php:66
2461
  msgid "Banners/assets Folder"
2462
  msgstr ""
2463
 
2464
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2465
  msgid "Exists and appears writable"
2466
  msgstr ""
2467
 
2468
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2469
  msgid "Not writable or does not exist"
2470
  msgstr ""
2471
 
2472
+ #: dashboard/settings/maintenance.php:70
2473
+ msgid "Reports Folder"
2474
+ msgstr ""
2475
+
2476
  #: dashboard/settings/maintenance.php:76
2477
+ msgid "Advert evaluation"
2478
+ msgstr ""
2479
+
2480
+ #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2481
+ msgid "Not scheduled! Re-activate the plugin from the plugins page."
2482
+ msgstr ""
2483
+
2484
+ #: dashboard/settings/maintenance.php:78
2485
+ msgid "Trackerdata cleanup"
2486
+ msgstr ""
2487
+
2488
+ #: dashboard/settings/maintenance.php:83
2489
+ msgid "Internal Versions"
2490
+ msgstr ""
2491
+
2492
+ #: dashboard/settings/maintenance.php:84
2493
+ msgid ""
2494
+ "Unless you experience database issues or a warning shows below, these "
2495
+ "numbers are not really relevant for troubleshooting. Support may ask for "
2496
+ "them to verify your database status."
2497
+ msgstr ""
2498
 
2499
+ #: dashboard/settings/maintenance.php:87
2500
+ msgid "AdRotate version"
2501
+ msgstr ""
2502
 
2503
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2504
+ msgid "Current:"
2505
+ msgstr ""
2506
 
2507
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2508
+ msgid "Should be:"
2509
+ msgstr ""
2510
+
2511
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2512
+ msgid "Previous:"
2513
+ msgstr ""
2514
+
2515
+ #: dashboard/settings/maintenance.php:89
2516
+ msgid "Database version"
2517
+ msgstr ""
2518
+
2519
+ #: dashboard/settings/misc.php:16
2520
  msgid "Miscellaneous"
2521
  msgstr "Varios"
2522
 
2523
+ #: dashboard/settings/misc.php:19
2524
  msgid "Widget alignment"
2525
  msgstr "Alineación de Widget"
2526
 
2527
+ #: dashboard/settings/misc.php:20
2528
  msgid ""
2529
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2530
  "not always help!)"
2532
  "Marque esta casilla si tus widgets no se alinean en la barra lateral de las "
2533
  "plantillas (theme). (No siempre ayuda!)"
2534
 
2535
+ #: dashboard/settings/misc.php:23
2536
  msgid "Widget padding"
2537
  msgstr "Relleno de Widget"
2538
 
2539
+ #: dashboard/settings/misc.php:24
2540
  msgid ""
2541
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2542
  "not always work!)"
2544
  "Habilitar esta opción para eliminar el relleno (espacio en blanco) alrededor "
2545
  "de los anuncios en los widgets. (No siempre funciona!)"
2546
 
2547
+ #: dashboard/settings/misc.php:28
2548
  #, fuzzy
2549
  msgid "NOTICE:"
2550
  msgstr "Aviso"
2551
 
2552
+ #: dashboard/settings/misc.php:29
2553
  msgid ""
2554
  "You have enabled W3 Total Caching support but not defined the security hash."
2555
  msgstr ""
2556
 
2557
+ #: dashboard/settings/misc.php:29
2558
  msgid ""
2559
  "AdRotate has generated the following line for you to add to your wp-config."
2560
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2561
  "add this line, check out the following guide;"
2562
  msgstr ""
2563
 
2564
+ #: dashboard/settings/misc.php:29
2565
  msgid "Set up W3 Total Caching"
2566
  msgstr ""
2567
 
2568
+ #: dashboard/settings/misc.php:33
2569
  msgid "W3 Total Caching"
2570
  msgstr "W3 Total Cache"
2571
 
2572
+ #: dashboard/settings/misc.php:34
2573
  msgid "Check this box if you use W3 Total Caching on your site."
2574
  msgstr "Marque esta casilla si utiliza W3 Total Cache en su sitio."
2575
 
2576
+ #: dashboard/settings/misc.php:38
2577
  msgid ""
2578
  "It may take a while for the ad to start rotating. The caching plugin needs "
2579
  "to refresh the cache. This can take up to a week if not done manually."
2582
  "caché tiene que actualizar la memoria caché. Esto puede tomar hasta una "
2583
  "semana si no se realiza de forma manual."
2584
 
2585
+ #: dashboard/settings/misc.php:38
2586
  msgid ""
2587
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2588
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2591
  "el Widget AdRotate. Si utiliza un fragmento PHP necesita envolver dentro del "
2592
  "código PHP la exclusión a ti mismo."
2593
 
2594
+ #: dashboard/settings/notifications.php:18
2595
  msgid "Notifications"
2596
  msgstr "Notificaciones"
2597
 
2598
+ #: dashboard/settings/notifications.php:19
2599
  msgid "Set up who gets notifications if ads need your attention."
2600
  msgstr ""
2601
  "Configurar para recibir notificaciones si los anuncios requieren su atención."
2602
 
2603
+ #: dashboard/settings/notifications.php:22
2604
  msgid "How to notify"
2605
  msgstr ""
2606
 
2607
+ #: dashboard/settings/notifications.php:24
2608
  msgid "Dashboard banner."
2609
  msgstr ""
2610
 
2611
+ #: dashboard/settings/notifications.php:25
2612
  msgid "Email message."
2613
  msgstr "Mensaje de Correo eléctronico"
2614
 
2615
+ #: dashboard/settings/notifications.php:26
2616
  msgid "Push notifications to your smartphone."
2617
  msgstr "Enviar Notificaciones a su smartphone."
2618
 
2619
+ #: dashboard/settings/notifications.php:27
2620
  msgid ""
2621
  "Push notifications are delivered through Pushover, a notification service "
2622
  "for Android and iOS"
2624
  "Las Notificaciones Push se entregan a través de Pushover, un servicio de "
2625
  "notificación para Android y iOS"
2626
 
2627
+ #: dashboard/settings/notifications.php:27
2628
  msgid ""
2629
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2630
  "information can be found on the pushover website;"
2632
  "La App Pushover se compra una sola vez, ya sea para Android y/o iOS. Puede "
2633
  "encontrar más información en la página web"
2634
 
2635
+ #: dashboard/settings/notifications.php:31
2636
  msgid "Test notification"
2637
  msgstr ""
2638
 
2639
+ #: dashboard/settings/notifications.php:33
2640
  msgid "Test"
2641
  msgstr ""
2642
 
2643
+ #: dashboard/settings/notifications.php:33
2644
  msgid ""
2645
  "Send a test notification to enabled methods. Before you test, save the "
2646
  "options first!"
2647
  msgstr ""
2648
 
2649
+ #: dashboard/settings/notifications.php:38
2650
+ msgid "Dashboard Banner"
2651
  msgstr ""
2652
 
2653
+ #: dashboard/settings/notifications.php:39
2654
  msgid ""
2655
  "These go in a dashboard banner visible to all users with access to AdRotate "
2656
  "on every WordPress dashboard page."
2657
  msgstr ""
2658
 
2659
+ #: dashboard/settings/notifications.php:42
2660
+ #: dashboard/settings/notifications.php:54
2661
+ #: dashboard/settings/notifications.php:84
2662
  msgid "What"
2663
  msgstr ""
2664
 
2665
+ #: dashboard/settings/notifications.php:44
2666
  msgid "Expired adverts."
2667
  msgstr ""
2668
 
2669
+ #: dashboard/settings/notifications.php:45
2670
  msgid "Almost expired adverts."
2671
  msgstr ""
2672
 
2673
+ #: dashboard/settings/notifications.php:50
2674
+ msgid "Email Message"
2675
  msgstr ""
2676
 
 
 
 
 
 
 
 
 
2677
  #: dashboard/settings/notifications.php:51
2678
  msgid ""
2679
+ "Receive email notifications about what is happening with your AdRotate setup."
 
2680
  msgstr ""
 
 
 
 
 
 
 
 
 
 
2681
 
2682
  #: dashboard/settings/notifications.php:56
2683
+ #: dashboard/settings/notifications.php:86
2684
+ msgid "Daily digest of any advert status other than normal."
2685
+ msgstr "Resumen diario de cualquier estado de anuncio que no sea normal."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2686
 
2687
+ #: dashboard/settings/notifications.php:57
2688
+ #: dashboard/settings/notifications.php:87
2689
  msgid "When you are running out of Geo Targeting Lookups."
2690
  msgstr ""
2691
 
2692
+ #: dashboard/settings/notifications.php:58
2693
+ #: dashboard/settings/notifications.php:88
 
 
 
2694
  msgid "Any advertiser saving an advert in your moderation queue."
2695
  msgstr ""
2696
  "Cualquier anunciante puede guardar un anuncio en su cola de moderación."
2697
 
2698
+ #: dashboard/settings/notifications.php:59
2699
+ #: dashboard/settings/notifications.php:89
2700
  msgid "A moderator approved an advert from the moderation queue."
2701
  msgstr "Un moderador aprobó un anuncio de la cola de moderación."
2702
 
2703
+ #: dashboard/settings/notifications.php:60
2704
+ #: dashboard/settings/notifications.php:90
2705
  msgid "A moderator rejected an advert from the moderation queue."
2706
  msgstr "Un moderador rechazó un anuncio de la cola de moderación."
2707
 
2708
+ #: dashboard/settings/notifications.php:60
2709
+ #: dashboard/settings/notifications.php:90
2710
  msgid ""
2711
  "If you have a lot of activity with many advertisers adding/changing adverts "
2712
  "you may get a lot of messages!"
2714
  "Si tiene una gran cantidad de actividad con muchos anunciantes que agregan o "
2715
  "cambian los anuncios usted puede recibir una gran cantidad de mensajes!"
2716
 
2717
+ #: dashboard/settings/notifications.php:60
2718
+ msgid ""
2719
+ "Sending out a lot of email is sometimes seen as automated mailing and deemed "
2720
+ "spammy. This may result in automated filters such as those used in services "
2721
+ "like Google Gmail and Microsoft Hotmail/Outlook.com blocking your server. "
2722
+ "Make sure you whitelist the sending address in your email account once you "
2723
+ "start receiving notifications!"
2724
  msgstr ""
2725
 
2726
+ #: dashboard/settings/notifications.php:65
2727
+ msgid "Publishers"
2728
+ msgstr "Editores"
2729
+
2730
+ #: dashboard/settings/notifications.php:68
2731
+ msgid ""
2732
+ "Messages are sent once every 24 hours. Maximum of 5 addresses. Comma "
2733
+ "separated. This field may not be empty!"
2734
+ msgstr ""
2735
+
2736
+ #: dashboard/settings/notifications.php:72
2737
+ msgid "Advertisers"
2738
+ msgstr "Anunciantes"
2739
+
2740
+ #: dashboard/settings/notifications.php:75
2741
+ msgid ""
2742
+ "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2743
+ "This field may not be empty!"
2744
+ msgstr ""
2745
+
2746
+ #: dashboard/settings/notifications.php:80
2747
+ msgid "Push Notifications"
2748
+ msgstr "Notificaciones Push"
2749
+
2750
  #: dashboard/settings/notifications.php:81
2751
+ msgid ""
2752
+ "Receive information about what is happening with your AdRotate setup on your "
2753
+ "smartphone via Pushover."
2754
+ msgstr ""
2755
+ "Recibir información acerca de lo que está sucediendo con su configuración "
2756
+ "AdRotate en su smartphone a través de Pushover."
2757
+
2758
+ #: dashboard/settings/notifications.php:90
2759
+ msgid ""
2760
+ "Pushover has a monthly limit of 7500 messages, this should be plenty. If you "
2761
+ "run out, you will not receive push notifications until the quota is reset! "
2762
+ "Every message AdRotate sends, regardless of the number of receiving devices, "
2763
+ "counts as one message."
2764
+ msgstr ""
2765
+
2766
+ #: dashboard/settings/notifications.php:95
2767
+ msgid "User Key"
2768
+ msgstr ""
2769
+
2770
+ #: dashboard/settings/notifications.php:97
2771
  msgid "Get your user token"
2772
  msgstr ""
2773
 
2774
+ #: dashboard/settings/notifications.php:97
2775
+ #: dashboard/settings/notifications.php:103
2776
  msgid "here"
2777
  msgstr ""
2778
 
2779
+ #: dashboard/settings/notifications.php:101
2780
  msgid "Api Token"
2781
  msgstr ""
2782
 
2783
+ #: dashboard/settings/notifications.php:103
2784
  msgid "Create your"
2785
  msgstr ""
2786
 
2787
+ #: dashboard/settings/notifications.php:103
2788
  msgid "App"
2789
  msgstr ""
2790
 
2791
+ #: dashboard/settings/notifications.php:103
2792
  msgid "and get your API token"
2793
  msgstr ""
2794
 
2795
+ #: dashboard/settings/roles.php:17
2796
  msgid "Roles"
2797
  msgstr ""
2798
 
2799
+ #: dashboard/settings/roles.php:18
2800
  msgid "Who has access to what?"
2801
  msgstr "¿Quién tiene acceso a qué?"
2802
 
2803
+ #: dashboard/settings/roles.php:21
2804
  msgid "Manage/Add/Edit adverts"
2805
  msgstr "Gestionar/Añadir/Editar anuncios"
2806
 
2807
+ #: dashboard/settings/roles.php:25
2808
  msgid "Role to see and add/edit ads."
2809
  msgstr "Perfil para ver y añadir/editar los anuncios."
2810
 
2811
+ #: dashboard/settings/roles.php:29
2812
  msgid "Delete/Reset adverts"
2813
  msgstr "Borrar/Restablecer anuncios"
2814
 
2815
+ #: dashboard/settings/roles.php:33
2816
  msgid "Role to delete ads and reset stats."
2817
  msgstr "Perfil para eliminar los anuncios y restablecer las estadísticas."
2818
 
2819
+ #: dashboard/settings/roles.php:37
2820
  msgid "Manage/Add/Edit groups"
2821
  msgstr "Gestionar/Añadir/Editar grupos"
2822
 
2823
+ #: dashboard/settings/roles.php:41
2824
  msgid "Role to see and add/edit groups."
2825
  msgstr "Perfil para ver y añadir/editar grupos."
2826
 
2827
+ #: dashboard/settings/roles.php:45
2828
  msgid "Delete groups"
2829
  msgstr "Eliminar grupos"
2830
 
2831
+ #: dashboard/settings/roles.php:49
2832
  msgid "Role to delete groups."
2833
  msgstr "Perfil para eliminar grupos"
2834
 
2835
+ #: dashboard/settings/statistics.php:18
2836
  msgid "Track statistics for your adverts."
2837
  msgstr ""
2838
 
2839
+ #: dashboard/settings/statistics.php:21
2840
  msgid "How to track stats"
2841
  msgstr ""
2842
 
2843
+ #: dashboard/settings/statistics.php:30
2844
  msgid "Tracks impressions and clicks internally"
2845
  msgstr ""
2846
 
2847
+ #: dashboard/settings/statistics.php:30 dashboard/settings/statistics.php:32
2848
+ #: dashboard/settings/statistics.php:34
2849
  msgid "manual"
2850
  msgstr ""
2851
 
2852
+ #: dashboard/settings/statistics.php:31
2853
  msgid ""
2854
  "Click and Impression recording, Click and impression limits, impression "
2855
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2856
  "will only track impressions."
2857
  msgstr ""
2858
 
2859
+ #: dashboard/settings/statistics.php:32 dashboard/settings/statistics.php:34
2860
  msgid "In AdRotate Pro!"
2861
  msgstr ""
2862
 
2863
+ #: dashboard/settings/statistics.php:32
2864
  msgid ""
2865
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2866
  "attributes"
2867
  msgstr ""
2868
 
2869
+ #: dashboard/settings/statistics.php:33
2870
  msgid ""
2871
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2872
  "Contents."
2873
  msgstr ""
2874
 
2875
+ #: dashboard/settings/statistics.php:34
2876
  msgid ""
2877
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2878
  "uses onClick() and onload() in adverts"
2879
  msgstr ""
2880
 
2881
+ #: dashboard/settings/statistics.php:35
2882
  msgid ""
2883
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2884
  "Banner."
2885
  msgstr ""
2886
 
2887
+ #: dashboard/settings/statistics.php:41
2888
  msgid "Internal Tracker"
2889
  msgstr ""
2890
 
2891
+ #: dashboard/settings/statistics.php:42
2892
  msgid ""
2893
  "The settings below are for the internal tracker and have no effect when "
2894
  "using Piwik/Google Analytics."
2895
  msgstr ""
2896
 
2897
+ #: dashboard/settings/statistics.php:45
2898
  msgid "Logged in impressions"
2899
  msgstr "Contar impresiones"
2900
 
2901
+ #: dashboard/settings/statistics.php:47
2902
  msgid "Track impressions from logged in users."
2903
  msgstr ""
2904
 
2905
+ #: dashboard/settings/statistics.php:51
2906
  msgid "Logged in clicks"
2907
  msgstr "Contar clics"
2908
 
2909
+ #: dashboard/settings/statistics.php:53
2910
  msgid "Track clicks from logged in users."
2911
  msgstr "Seguimiento de los clics de los usuarios registrados."
2912
 
2913
+ #: dashboard/settings/statistics.php:57
2914
  msgid "Impression timer"
2915
  msgstr ""
2916
 
2917
+ #: dashboard/settings/statistics.php:59 dashboard/settings/statistics.php:66
2918
  msgid "Seconds."
2919
  msgstr "Segundos."
2920
 
2921
+ #: dashboard/settings/statistics.php:60
2922
  #, fuzzy
2923
  msgid "Default: 60."
2924
  msgstr "Predeterminado"
2925
 
2926
+ #: dashboard/settings/statistics.php:60
2927
  #, fuzzy
2928
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2929
  msgstr ""
2930
  "Este número no puede estar vacío, ser negativo o exceder de 3600 (1 hora)."
2931
 
2932
+ #: dashboard/settings/statistics.php:64
2933
  msgid "Click timer"
2934
  msgstr ""
2935
 
2936
+ #: dashboard/settings/statistics.php:67
2937
  #, fuzzy
2938
  msgid "Default: 86400."
2939
  msgstr "Predeterminado"
2940
 
2941
+ #: dashboard/settings/statistics.php:67
2942
  #, fuzzy
2943
  msgid ""
2944
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2945
  msgstr ""
2946
  "Este número no puede estar vacío, ser negativo o exceder de 86400 (24 horas)."
2947
 
2948
+ #~ msgid "Enable responsive support for this advert."
2949
+ #~ msgstr "Habilitar soporte sensible para este anuncio."
2950
+
2951
+ #~ msgid "Current version:"
2952
+ #~ msgstr "Versión actual:"
2953
+
2954
+ #~ msgid "Previous version:"
2955
+ #~ msgstr "Versión anterior:"
2956
+
2957
+ #~ msgid "Current database version:"
2958
+ #~ msgstr "Versión actual de la base de datos:"
2959
+
2960
+ #~ msgid "Previous database version:"
2961
+ #~ msgstr "Versión anterior de la base de datos:"
2962
+
2963
+ #, fuzzy
2964
+ #~ msgid "Ad evaluation next run:"
2965
+ #~ msgstr "Evaluación de Anuncios en la siguiente ejecución:"
2966
+
2967
+ #~ msgid "Not scheduled!"
2968
+ #~ msgstr "No Programada!"
2969
+
2970
+ #~ msgid "Clean Trackerdata next run:"
2971
+ #~ msgstr "Ultima ejecución de la limpieza de la base de datos:"
2972
+
2973
+ #~ msgid "Set up who gets notification emails."
2974
+ #~ msgstr "Establecer lo que se recibe en los mensajes de notificación."
2975
+
2976
+ #~ msgid ""
2977
+ #~ "A comma separated list of email addresses. Maximum of 5 addresses. Keep "
2978
+ #~ "this list to a minimum!"
2979
+ #~ msgstr ""
2980
+ #~ "Una lista de direcciones de correo electrónico separada por comas. Un "
2981
+ #~ "máximo de 5 direcciones. Mantenga esta lista al mínimo!"
2982
+
2983
+ #~ msgid ""
2984
+ #~ "Messages are sent once every 24 hours when needed. If this field is empty "
2985
+ #~ "no email notifications will be send."
2986
+ #~ msgstr ""
2987
+ #~ "Los mensajes se envían cuando sea necesario una vez cada 24 horas. Si "
2988
+ #~ "este campo está vacío, no será envíada ninguna notificación de correo "
2989
+ #~ "electrónico."
2990
+
2991
+ #~ msgid ""
2992
+ #~ "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2993
+ #~ "This field may not be empty!"
2994
+ #~ msgstr ""
2995
+ #~ "¿Quién recibe correo electrónico de los anunciantes. Un máximo de 2 "
2996
+ #~ "direcciones separadas por comas. Este campo no puede estar vacío!"
2997
+
2998
  #~ msgid "Get more features with AdRotate Pro"
2999
  #~ msgstr "Obtenga más funciones con AdRotate Pro"
3000
 
3035
  #~ msgid "Email Notifications"
3036
  #~ msgstr "Notificaciones por correo electrónico"
3037
 
 
 
 
3038
  #~ msgid "active ad(s) expired."
3039
  #~ msgstr "anuncio(s) activo(s) caducó."
3040
 
3140
  #~ msgid "Barely visible"
3141
  #~ msgstr "Apenas visible"
3142
 
 
 
 
3143
  #~ msgid "Normal coverage"
3144
  #~ msgstr "Cobertura normal"
3145
 
 
 
 
3146
  #~ msgid "Best visibility"
3147
  #~ msgstr "La mejor visibilidad"
3148
 
language/adrotate-fr_FR.mo CHANGED
Binary file
language/adrotate-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-30 14:27+0800\n"
6
- "PO-Revision-Date: 2016-05-30 14:27+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"
@@ -17,116 +17,116 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:844
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
- #: adrotate-functions.php:847
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:896
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:900
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:904
37
  msgid "Ad(s) deleted"
38
  msgstr "Publicité(s) supprimée(s)"
39
 
40
- #: adrotate-functions.php:908
41
  msgid "Group deleted"
42
  msgstr "Groupe supprimé"
43
 
44
- #: adrotate-functions.php:912
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:916
49
  msgid "Ad(s) renewed"
50
  msgstr "publicité(s) renouvellée(s)"
51
 
52
- #: adrotate-functions.php:920
53
  msgid "Ad(s) deactivated"
54
  msgstr "Publicité(s) désactivée(s)"
55
 
56
- #: adrotate-functions.php:924
57
  msgid "Ad(s) activated"
58
  msgstr "Publicité(s) activée(s)"
59
 
60
- #: adrotate-functions.php:928
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:932
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Publicité créée"
68
 
69
- #: adrotate-functions.php:937
70
  msgid "Settings saved"
71
  msgstr "Paramètres sauvegardés"
72
 
73
- #: adrotate-functions.php:941
74
  msgid "Database optimized"
75
  msgstr "Base de données optimisée"
76
 
77
- #: adrotate-functions.php:945
78
  msgid "Database repaired"
79
  msgstr "Base de données réparée"
80
 
81
- #: adrotate-functions.php:949
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:953
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:958
91
  msgid "Action prohibited"
92
  msgstr "Action interdite"
93
 
94
- #: adrotate-functions.php:962
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:966
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:970
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:974
110
  msgid "Form can not be (partially) empty!"
111
  msgstr ""
112
 
113
- #: adrotate-functions.php:978
114
  msgid "No ads found."
115
  msgstr ""
116
 
117
- #: adrotate-functions.php:982
118
  msgid "Unexpected error"
119
  msgstr ""
120
 
121
- #: adrotate-manage-publisher.php:678
122
  msgid "AdRotate Advertiser"
123
  msgstr ""
124
 
125
- #: adrotate-output.php:574
126
  msgid "Oh no! Something went wrong!"
127
  msgstr "Oh no! Un problème est survenu!"
128
 
129
- #: adrotate-output.php:575
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 +135,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:576
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:577
145
  msgid "Contact support if the issue persists:"
146
  msgstr "Contactez le support si le soucis persiste :"
147
 
148
- #: adrotate-output.php:592
149
  msgid ""
150
  "Error, Ad is not available at this time due to schedule/geolocation "
151
  "restrictions or does not exist!"
@@ -153,7 +153,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:594
157
  msgid ""
158
  "Error, Ad is not available at this time due to schedule/geolocation "
159
  "restrictions!"
@@ -161,7 +161,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:601 adrotate-output.php:603
165
  msgid ""
166
  "Either there are no banners, they are disabled or none qualified for this "
167
  "location!"
@@ -169,19 +169,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:609
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:615
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:620
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:626
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,212 +190,212 @@ msgstr ""
190
  "besoin. Veuillez désactiver et ré-activer AdRotate de la page des "
191
  "extensions. "
192
 
193
- #: adrotate-output.php:626
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:632
200
  msgid "An unknown error occured."
201
  msgstr "Une erreur inconnue s'est produite."
202
 
203
- #: adrotate-output.php:651 adrotate-output.php:654 adrotate-output.php:658
204
- #: adrotate-output.php:663 adrotate-output.php:666 adrotate-output.php:669
205
  msgid "Check adverts"
206
  msgstr ""
207
 
208
- #: adrotate-output.php:674
209
  msgid ""
210
  "You have enable caching support but W3 Total Cache is not active on your "
211
  "site!"
212
  msgstr ""
213
 
214
- #: adrotate-output.php:677
215
  msgid ""
216
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
217
  "not set."
218
  msgstr ""
219
 
220
- #: adrotate-output.php:682
221
  msgid "Your AdRotate Banner folder is not writable or does not exist."
222
  msgstr ""
223
 
224
- #: adrotate-output.php:722 dashboard/adrotatepro.php:99
225
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
226
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
227
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
228
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
229
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
230
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
231
- #: dashboard/settings/geotargeting.php:25
232
  msgid "Buy now"
233
  msgstr ""
234
 
235
- #: adrotate-output.php:723
236
  msgid ""
237
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
238
  "to the <strong>PRO</strong> version"
239
  msgstr ""
240
 
241
- #: adrotate-output.php:723
242
  #, php-format
243
  msgid ""
244
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
245
  msgstr ""
246
 
247
- #: adrotate-output.php:723
248
  msgid "Thank you for your purchase!"
249
  msgstr ""
250
 
251
- #: adrotate-output.php:784
252
  msgid ""
253
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
254
  "this menu. Check out the"
255
  msgstr ""
256
 
257
- #: adrotate-output.php:784
258
  msgid "manuals"
259
  msgstr "manuels"
260
 
261
- #: adrotate-output.php:784 adrotate-output.php:851
262
  msgid "and"
263
  msgstr ""
264
 
265
- #: adrotate-output.php:784
266
  msgid "forums"
267
  msgstr ""
268
 
269
- #: adrotate-output.php:814
270
  msgid "Useful Links"
271
  msgstr ""
272
 
273
- #: adrotate-output.php:815
274
  msgid "Useful links to learn more about AdRotate"
275
  msgstr ""
276
 
277
- #: adrotate-output.php:817
278
  msgid "AdRotate website"
279
  msgstr ""
280
 
281
- #: adrotate-output.php:818
282
  msgid "Getting Started With AdRotate"
283
  msgstr ""
284
 
285
- #: adrotate-output.php:819
286
  msgid "AdRotate manuals"
287
  msgstr ""
288
 
289
- #: adrotate-output.php:820
290
  msgid "AdRotate Support Forum"
291
  msgstr ""
292
 
293
- #: adrotate-output.php:843
294
  #, fuzzy
295
  msgid "Help AdRotate Grow"
296
  msgstr "AdRotate Pro"
297
 
298
- #: adrotate-output.php:844
299
  msgid "Follow Arnan on Facebook"
300
  msgstr ""
301
 
302
- #: adrotate-output.php:851
303
  msgid ""
304
  "A lot of users only think to review AdRotate when something goes wrong while "
305
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
306
  msgstr ""
307
 
308
- #: adrotate-output.php:851
309
  msgid "If you find AdRotate useful please leave your honest"
310
  msgstr ""
311
 
312
- #: adrotate-output.php:851
313
  msgid "rating"
314
  msgstr ""
315
 
316
- #: adrotate-output.php:851
317
  #, fuzzy
318
  msgid "review"
319
  msgstr "En avant-première"
320
 
321
- #: adrotate-output.php:851
322
  msgid "on WordPress.org to help AdRotate grow in a positive way"
323
  msgstr ""
324
 
325
- #: adrotate-output.php:884 dashboard/settings/notifications.php:44
326
- #: dashboard/settings/notifications.php:64
327
  msgid "Available in AdRotate Pro"
328
  msgstr "Disponible dans Adrotate Pro"
329
 
330
- #: adrotate-output.php:884
331
  msgid "More information..."
332
  msgstr "Plus d'informations..."
333
 
334
- #: adrotate-output.php:885
335
  msgid "This feature is available in AdRotate Pro"
336
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
337
 
338
- #: adrotate-output.php:885
339
  msgid "Learn more"
340
  msgstr "En savoir plus"
341
 
342
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
343
- #: dashboard/publisher/adverts-edit.php:241
344
  msgid "January"
345
  msgstr "Janvier"
346
 
347
- #: adrotate-statistics.php:217 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:217 dashboard/publisher/adverts-edit.php:222
353
- #: dashboard/publisher/adverts-edit.php:243
354
  msgid "March"
355
  msgstr "Mars"
356
 
357
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
358
- #: dashboard/publisher/adverts-edit.php:244
359
  msgid "April"
360
  msgstr "Avril"
361
 
362
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
363
- #: dashboard/publisher/adverts-edit.php:245
364
  msgid "May"
365
  msgstr "Mai"
366
 
367
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
368
- #: dashboard/publisher/adverts-edit.php:246
369
  msgid "June"
370
  msgstr "Juin"
371
 
372
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
373
- #: dashboard/publisher/adverts-edit.php:247
374
  msgid "July"
375
  msgstr "Juillet"
376
 
377
- #: adrotate-statistics.php:217 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:217 dashboard/publisher/adverts-edit.php:228
383
- #: dashboard/publisher/adverts-edit.php:249
384
  msgid "September"
385
  msgstr "Septembre"
386
 
387
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
388
- #: dashboard/publisher/adverts-edit.php:250
389
  msgid "October"
390
  msgstr "Octobre"
391
 
392
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
393
- #: dashboard/publisher/adverts-edit.php:251
394
  msgid "November"
395
  msgstr "Novembre"
396
 
397
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
398
- #: dashboard/publisher/adverts-edit.php:252
399
  msgid "December"
400
  msgstr "Décembre"
401
 
@@ -457,206 +457,205 @@ msgstr "ID :"
457
  msgid "Fill in the ID of the type you want to display!"
458
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
459
 
460
- #: adrotate.php:105
461
  msgid "General Info"
462
  msgstr "Informations générales"
463
 
464
- #: adrotate.php:106
465
  msgid "AdRotate Pro"
466
  msgstr "AdRotate Pro"
467
 
468
- #: adrotate.php:107
469
  msgid "Manage Adverts"
470
  msgstr ""
471
 
472
- #: adrotate.php:108 dashboard/publisher/groups-main.php:12
473
  msgid "Manage Groups"
474
  msgstr "Gérer les groupes"
475
 
476
- #: adrotate.php:109 adrotate.php:387
477
  #, fuzzy
478
  msgid "Manage Schedules"
479
  msgstr "Gérer les pubs"
480
 
481
- #: adrotate.php:110
482
  #, fuzzy
483
  msgid "Manage Media"
484
  msgstr "Gérer les pubs"
485
 
486
- #: adrotate.php:111
487
  msgid "Settings"
488
  msgstr "Paramètres"
489
 
490
- #: adrotate.php:134
491
  msgid "AdRotate Info"
492
  msgstr "Informations sur Adrotate"
493
 
494
- #: adrotate.php:155
495
  msgid "AdRotate Professional"
496
  msgstr "AdRotate professionel"
497
 
498
- #: adrotate.php:198
499
  msgid "Advert Management"
500
  msgstr ""
501
 
502
- #: adrotate.php:256 adrotate.php:326 adrotate.php:382
503
  msgid "Manage"
504
  msgstr "Gérer"
505
 
506
- #: adrotate.php:257 adrotate.php:327 adrotate.php:383
507
  msgid "Add New"
508
  msgstr "Ajouter"
509
 
510
- #: adrotate.php:320
511
  msgid "Group Management"
512
  msgstr "Gérer les groupes"
513
 
514
- #: adrotate.php:329
515
  msgid "Report"
516
  msgstr "Rapport"
517
 
518
- #: adrotate.php:378
519
  #, fuzzy
520
  msgid "Schedule Management available in AdRotate Pro"
521
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
522
 
523
- #: adrotate.php:388
524
  #, fuzzy
525
  msgid ""
526
  "Schedule management and multiple schedules per advert is available in "
527
  "AdRotate Pro."
528
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
529
 
530
- #: adrotate.php:388 adrotate.php:475 dashboard/publisher/adverts-edit.php:188
531
  #: dashboard/publisher/adverts-main.php:114
532
- #: dashboard/publisher/groups-edit.php:75
533
  #: dashboard/publisher/groups-main.php:89
534
  msgid "More information"
535
  msgstr "Plus d'information"
536
 
537
- #: adrotate.php:395 dashboard/publisher/adverts-disabled.php:20
538
  #: dashboard/publisher/adverts-error.php:19
539
  #: dashboard/publisher/adverts-main.php:20
540
  #: dashboard/publisher/groups-main.php:20
541
  msgid "Bulk Actions"
542
  msgstr "Actions en vrac"
543
 
544
- #: adrotate.php:396 dashboard/publisher/adverts-disabled.php:25
545
  #: dashboard/publisher/adverts-error.php:29
546
  #: dashboard/publisher/adverts-main.php:30
547
  #: dashboard/publisher/groups-main.php:24
548
  msgid "Go"
549
  msgstr "Aller"
550
 
551
- #: adrotate.php:405 dashboard/publisher/adverts-disabled.php:35
552
  #: dashboard/publisher/adverts-error.php:39
553
  #: dashboard/publisher/adverts-main.php:39
554
- #: dashboard/publisher/groups-edit.php:51
555
  #: dashboard/publisher/groups-main.php:32
556
  msgid "ID"
557
  msgstr "ID"
558
 
559
- #: adrotate.php:406
560
  #, fuzzy
561
  msgid "Start"
562
  msgstr "Début / Fin"
563
 
564
- #: adrotate.php:406
565
  msgid "End"
566
  msgstr ""
567
 
568
- #: adrotate.php:407
569
  msgid "Ads"
570
  msgstr "Pubs"
571
 
572
- #: adrotate.php:409
573
  #, fuzzy
574
  msgid "Max Impressions"
575
  msgstr "Nombre max de vues :"
576
 
577
- #: adrotate.php:410
578
  #, fuzzy
579
  msgid "Max Clicks"
580
  msgstr "Nombre de clicks max :"
581
 
582
- #: adrotate.php:440
583
  #, fuzzy
584
  msgid "No schedules created yet!"
585
  msgstr "Aucune pub n'a encore été créé!"
586
 
587
- #: adrotate.php:445
588
  #, fuzzy
589
  msgid "Easily manage your schedules from here with AdRotate Pro."
590
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
591
 
592
- #: adrotate.php:445 adrotate.php:511
593
  #, fuzzy
594
  msgid "Upgrade today!"
595
  msgstr "Mettre à jour aujourd'hui"
596
 
597
- #: adrotate.php:448 dashboard/publisher/adverts-error.php:72
598
- #: dashboard/publisher/groups-edit.php:387
599
  msgid "Expires soon."
600
  msgstr "Expire bientôt."
601
 
602
- #: adrotate.php:449 dashboard/publisher/adverts-error.php:73
603
- #: dashboard/publisher/groups-edit.php:388
604
  msgid "Has expired."
605
  msgstr "A expiré."
606
 
607
- #: adrotate.php:473
608
  #, fuzzy
609
  msgid "Media Management available in AdRotate Pro"
610
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
611
 
612
- #: adrotate.php:475
613
  msgid "Upload images to the AdRotate Pro banners folder from here."
614
  msgstr ""
615
 
616
- #: adrotate.php:475
617
  msgid ""
618
  "This is useful if you use responsive adverts with multiple images or have "
619
  "HTML5 adverts containing multiple files."
620
  msgstr ""
621
 
622
- #: adrotate.php:475
623
  #, fuzzy
624
  msgid "Media uploading and management is available in AdRotate Pro."
625
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
626
 
627
- #: adrotate.php:477
628
  msgid "Upload new file"
629
  msgstr ""
630
 
631
- #: adrotate.php:478
632
  msgid "Accepted files:"
633
  msgstr ""
634
 
635
- #: adrotate.php:478
636
  msgid "For HTML5 ads you can also upload html and javascript files."
637
  msgstr ""
638
 
639
- #: adrotate.php:478
640
  msgid "Maximum size is 512Kb."
641
  msgstr ""
642
 
643
- #: adrotate.php:478
644
  msgid "Important:"
645
  msgstr ""
646
 
647
- #: adrotate.php:478
648
  msgid ""
649
  "Make sure your file has no spaces or special characters in the name. Replace "
650
  "spaces with a - or _."
651
  msgstr ""
652
 
653
- #: adrotate.php:478
654
  msgid ""
655
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
656
  "file so it knows about the changed name. For example for the javascript file."
657
  msgstr ""
658
 
659
- #: adrotate.php:481
660
  #, fuzzy
661
  msgid ""
662
  "For responsive adverts make sure the filename is in the following format; "
@@ -667,7 +666,7 @@ msgstr ""
667
  "complet d'images de tailles différentes est recommendé si vous avez un site "
668
  "fluide."
669
 
670
- #: adrotate.php:482 dashboard/publisher/adverts-edit.php:311
671
  msgid ""
672
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
673
  "filename instead of \".full\" for the various viewports."
@@ -676,12 +675,12 @@ msgstr ""
676
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
677
  "tailles d'écran."
678
 
679
- #: adrotate.php:483 dashboard/publisher/groups-edit.php:312
680
- #: dashboard/publisher/groups-edit.php:320
681
  msgid "Example:"
682
  msgstr "Exemple :"
683
 
684
- #: adrotate.php:483
685
  #, fuzzy
686
  msgid ""
687
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
@@ -690,54 +689,50 @@ msgstr ""
690
  "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
691
  "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
692
 
693
- #: adrotate.php:487
694
  msgid "Upload file"
695
  msgstr ""
696
 
697
- #: adrotate.php:487
698
  msgid "Click only once per file!"
699
  msgstr ""
700
 
701
- #: adrotate.php:490
702
  msgid "Available files in"
703
  msgstr ""
704
 
705
- #: adrotate.php:495 dashboard/publisher/groups-edit.php:55
706
  #: dashboard/publisher/groups-main.php:33
707
  msgid "Name"
708
  msgstr "Nom"
709
 
710
- #: adrotate.php:496
711
  #, fuzzy
712
  msgid "Actions"
713
  msgstr "Actions en vrac"
714
 
715
- #: adrotate.php:501 adrotate.php:502 adrotate.php:503 adrotate.php:504
716
- #: adrotate.php:505 adrotate.php:506 adrotate.php:507
717
  #: dashboard/publisher/adverts-disabled.php:22
718
  #: dashboard/publisher/adverts-error.php:21
719
  #: dashboard/publisher/adverts-main.php:22
720
  msgid "Delete"
721
  msgstr "Effacer"
722
 
723
- #: adrotate.php:511
724
  msgid ""
725
  "Make sure the banner images are not in use by adverts when you delete them!"
726
  msgstr ""
727
 
728
- #: adrotate.php:511
729
  #, fuzzy
730
  msgid "Manage your banner folder from here with AdRotate Pro."
731
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
732
 
733
- #: adrotate.php:540
734
  msgid "AdRotate Settings"
735
  msgstr "Paramètres de AdRotate"
736
 
737
- #: adrotate.php:612
738
- msgid "Update Options"
739
- msgstr "Mettre à jour les options"
740
-
741
  #: dashboard/adrotatepro.php:20
742
  msgid "Satisfy your advertisers"
743
  msgstr "Comblez vos annonceurs"
@@ -930,7 +925,7 @@ msgstr "Votre configuration"
930
  msgid "Adverts that need you"
931
  msgstr "Publicités qui ont besoin de votre attention"
932
 
933
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
934
  #: dashboard/publisher/groups-main.php:34
935
  msgid "Adverts"
936
  msgstr "Publicités"
@@ -973,7 +968,7 @@ msgid "Disabled Adverts"
973
  msgstr ""
974
 
975
  #: dashboard/publisher/adverts-disabled.php:21
976
- #: dashboard/publisher/adverts-edit.php:176
977
  msgid "Activate"
978
  msgstr "Activer"
979
 
@@ -990,7 +985,7 @@ msgid "Start / End"
990
  msgstr "Début / Fin"
991
 
992
  #: dashboard/publisher/adverts-disabled.php:37
993
- #: dashboard/publisher/adverts-edit.php:116
994
  #: dashboard/publisher/adverts-error.php:41
995
  #: dashboard/publisher/adverts-main.php:41
996
  msgid "Title"
@@ -998,7 +993,7 @@ msgstr "Titre"
998
 
999
  #: dashboard/publisher/adverts-disabled.php:38
1000
  #: dashboard/publisher/adverts-main.php:44
1001
- #: dashboard/publisher/groups-edit.php:333
1002
  #: dashboard/publisher/groups-main.php:36
1003
  msgid "Shown"
1004
  msgstr "Montré"
@@ -1007,7 +1002,7 @@ msgstr "Montré"
1007
  #: dashboard/publisher/adverts-main.php:46
1008
  #: dashboard/publisher/adverts-report.php:36
1009
  #: dashboard/publisher/adverts-report.php:57
1010
- #: dashboard/publisher/groups-edit.php:334
1011
  #: dashboard/publisher/groups-main.php:38
1012
  #: dashboard/publisher/groups-report.php:37
1013
  #: dashboard/publisher/groups-report.php:58
@@ -1049,34 +1044,28 @@ msgid "The AdCode cannot be empty!"
1049
  msgstr "Le code de la publicité ne peut être vide!"
1050
 
1051
  #: dashboard/publisher/adverts-edit.php:51
1052
- msgid "You did not use %image% in your AdCode but did select a file to use!"
 
 
1053
  msgstr ""
1054
 
1055
  #: dashboard/publisher/adverts-edit.php:54
1056
- msgid "You did use %image% in your AdCode but did not select a file to use!"
1057
- msgstr ""
1058
-
1059
- #: dashboard/publisher/adverts-edit.php:57
1060
  msgid ""
1061
- "You did not use %image% in your AdCode. The responsive checkbox will be "
1062
- "ineffective."
1063
  msgstr ""
1064
 
1065
- #: dashboard/publisher/adverts-edit.php:60
1066
  msgid ""
1067
  "There is a problem saving the image. Please reset your image and re-save the "
1068
  "ad!"
1069
  msgstr ""
1070
 
1071
- #: dashboard/publisher/adverts-edit.php:63
1072
- msgid "Responsive is enabled but your banner image has the wrong name."
1073
- msgstr ""
1074
-
1075
- #: dashboard/publisher/adverts-edit.php:66
1076
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1077
  msgstr ""
1078
 
1079
- #: dashboard/publisher/adverts-edit.php:71
1080
  msgid ""
1081
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1082
  "the ad!"
@@ -1084,78 +1073,78 @@ msgstr ""
1084
  "AdRotate ne peut pas trouver une erreur, mais l'annonce est marquée erronée, "
1085
  "essayez d'enregistrer votre publicité à nouveau!"
1086
 
1087
- #: dashboard/publisher/adverts-edit.php:74
1088
  msgid "This ad is expired and currently not shown on your website!"
1089
  msgstr ""
1090
  "Cette publicité est expirée et ne figure actuellement pas sur votre site!"
1091
 
1092
- #: dashboard/publisher/adverts-edit.php:77
1093
  msgid "The ad will expire in less than 2 days!"
1094
  msgstr "Cette publicité va expirer dans moins de 2 jours!"
1095
 
1096
- #: dashboard/publisher/adverts-edit.php:80
1097
  msgid "This ad will expire in less than 7 days!"
1098
  msgstr "Cette publicité va expirer dans moins de 7 jours!"
1099
 
1100
- #: dashboard/publisher/adverts-edit.php:83
1101
  msgid "This ad has been disabled and does not rotate on your site!"
1102
  msgstr "Cette publicité à été désactivée et ne tourne plus sur votre site!"
1103
 
1104
- #: dashboard/publisher/adverts-edit.php:108
1105
  msgid "New Advert"
1106
  msgstr "Nouvelle pub"
1107
 
1108
- #: dashboard/publisher/adverts-edit.php:110
1109
  msgid "Edit Advert"
1110
  msgstr "Modifier la pub"
1111
 
1112
- #: dashboard/publisher/adverts-edit.php:122
1113
  msgid "AdCode"
1114
  msgstr ""
1115
 
1116
- #: dashboard/publisher/adverts-edit.php:127
1117
  msgid "Basic Examples:"
1118
  msgstr "Exemples de base :"
1119
 
1120
- #: dashboard/publisher/adverts-edit.php:134
1121
  msgid "Useful tags"
1122
  msgstr ""
1123
 
1124
- #: dashboard/publisher/adverts-edit.php:136
1125
  msgid "Insert the advert ID Number."
1126
  msgstr ""
1127
 
1128
- #: dashboard/publisher/adverts-edit.php:136
1129
- msgid "Required when selecting a image below."
1130
  msgstr ""
1131
 
1132
- #: dashboard/publisher/adverts-edit.php:136
1133
  msgid "Insert the advert name."
1134
  msgstr ""
1135
 
1136
- #: dashboard/publisher/adverts-edit.php:136
1137
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1138
  msgstr ""
1139
 
1140
- #: dashboard/publisher/adverts-edit.php:136
1141
  msgid "Add inside the <a> tag to open advert in a new window."
1142
  msgstr ""
1143
 
1144
- #: dashboard/publisher/adverts-edit.php:136
1145
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1146
  msgstr ""
1147
 
1148
- #: dashboard/publisher/adverts-edit.php:136
1149
  msgid ""
1150
  "Place the cursor in your AdCode where you want to add any of these tags and "
1151
  "click to add it."
1152
  msgstr ""
1153
 
1154
- #: dashboard/publisher/adverts-edit.php:141
1155
  msgid "Preview"
1156
  msgstr "En avant-première"
1157
 
1158
- #: dashboard/publisher/adverts-edit.php:144
1159
  msgid ""
1160
  "Note: While this preview is an accurate one, it might look different then it "
1161
  "does on the website."
@@ -1163,42 +1152,42 @@ msgstr ""
1163
  "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
1164
  "différente sur le site."
1165
 
1166
- #: dashboard/publisher/adverts-edit.php:145
1167
  msgid ""
1168
  "This is because of CSS differences. Your themes CSS file is not active here!"
1169
  msgstr ""
1170
  "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1171
  "pas actif ici!"
1172
 
1173
- #: dashboard/publisher/adverts-edit.php:150
1174
  msgid "Banner asset"
1175
  msgstr ""
1176
 
1177
- #: dashboard/publisher/adverts-edit.php:153
1178
  msgid "WordPress media:"
1179
  msgstr ""
1180
 
1181
- #: dashboard/publisher/adverts-edit.php:153
1182
  msgid "Select Banner"
1183
  msgstr "Choisir l'image"
1184
 
1185
- #: dashboard/publisher/adverts-edit.php:155
1186
  msgid "- OR -"
1187
  msgstr "- OU -"
1188
 
1189
- #: dashboard/publisher/adverts-edit.php:157
1190
  msgid "Banner folder:"
1191
  msgstr "Dossier de bannières :"
1192
 
1193
- #: dashboard/publisher/adverts-edit.php:158
1194
  msgid "No image selected"
1195
  msgstr "Aucune image sélectionnée"
1196
 
1197
- #: dashboard/publisher/adverts-edit.php:162
1198
- msgid "Use %image% in the adcode instead of the file path."
1199
  msgstr ""
1200
 
1201
- #: dashboard/publisher/adverts-edit.php:162
1202
  msgid ""
1203
  "Use either the text field or the dropdown. If the textfield has content that "
1204
  "field has priority."
@@ -1206,315 +1195,317 @@ msgstr ""
1206
  "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1207
  "valeur, ce champ a la priorité."
1208
 
1209
- #: dashboard/publisher/adverts-edit.php:167
1210
- #: dashboard/settings/statistics.php:12
1211
  msgid "Statistics"
1212
  msgstr "Statistiques"
1213
 
1214
- #: dashboard/publisher/adverts-edit.php:169
1215
  msgid "Enable click and impression tracking for this advert."
1216
  msgstr ""
1217
 
1218
- #: dashboard/publisher/adverts-edit.php:170
1219
  msgid ""
1220
  "Note: Clicktracking does not work for Javascript adverts such as those "
1221
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1222
  "always supported."
1223
  msgstr ""
1224
 
1225
- #: dashboard/publisher/adverts-edit.php:180
1226
  msgid "Yes, this ad will be used"
1227
  msgstr "Oui, cette publicité sera utilisée"
1228
 
1229
- #: dashboard/publisher/adverts-edit.php:181
1230
  msgid "No, do not show this ad anywhere"
1231
  msgstr "Non, cette publicité ne sera pas utilisée"
1232
 
1233
- #: dashboard/publisher/adverts-edit.php:188
1234
  #: dashboard/publisher/adverts-main.php:114
1235
- #: dashboard/publisher/groups-edit.php:75
1236
  #: dashboard/publisher/groups-main.php:89
1237
  msgid "Get more features with AdRotate Pro."
1238
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
1239
 
1240
- #: dashboard/publisher/adverts-edit.php:191
1241
- #: dashboard/publisher/adverts-edit.php:291
1242
- #: dashboard/publisher/adverts-edit.php:386
1243
- #: dashboard/publisher/adverts-edit.php:427
1244
  msgid "Save Advert"
1245
  msgstr "Sauvegarder la pub"
1246
 
1247
- #: dashboard/publisher/adverts-edit.php:192
1248
- #: dashboard/publisher/adverts-edit.php:292
1249
- #: dashboard/publisher/adverts-edit.php:387
1250
- #: dashboard/publisher/adverts-edit.php:428
1251
- #: dashboard/publisher/groups-edit.php:154
1252
- #: dashboard/publisher/groups-edit.php:301
1253
- #: dashboard/publisher/groups-edit.php:393
1254
  msgid "Cancel"
1255
  msgstr "Annuller"
1256
 
1257
- #: dashboard/publisher/adverts-edit.php:195
1258
- #: dashboard/publisher/adverts-edit.php:369
1259
- #: dashboard/publisher/groups-edit.php:136
1260
- #: dashboard/publisher/groups-edit.php:283
1261
  msgid "Usage"
1262
  msgstr "Usage"
1263
 
1264
- #: dashboard/publisher/adverts-edit.php:199
1265
- #: dashboard/publisher/adverts-edit.php:373
1266
- #: dashboard/publisher/groups-edit.php:140
1267
- #: dashboard/publisher/groups-edit.php:287
1268
  msgid "Widget"
1269
  msgstr ""
1270
 
1271
- #: dashboard/publisher/adverts-edit.php:200
1272
- #: dashboard/publisher/adverts-edit.php:374
1273
  msgid ""
1274
- "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1275
- "and enter ID"
1276
  msgstr ""
1277
 
1278
- #: dashboard/publisher/adverts-edit.php:203
1279
- #: dashboard/publisher/adverts-edit.php:377
1280
- #: dashboard/publisher/groups-edit.php:144
1281
- #: dashboard/publisher/groups-edit.php:291
1282
  msgid "In a post or page"
1283
  msgstr ""
1284
 
1285
- #: dashboard/publisher/adverts-edit.php:205
1286
- #: dashboard/publisher/adverts-edit.php:379
1287
- #: dashboard/publisher/groups-edit.php:146
1288
- #: dashboard/publisher/groups-edit.php:293
1289
  msgid "Directly in a theme"
1290
  msgstr ""
1291
 
1292
- #: dashboard/publisher/adverts-edit.php:211
1293
  msgid "Schedule your advert"
1294
  msgstr ""
1295
 
1296
- #: dashboard/publisher/adverts-edit.php:215
1297
  msgid "Start date (day/month/year)"
1298
  msgstr ""
1299
 
1300
- #: dashboard/publisher/adverts-edit.php:236
1301
  msgid "End date (day/month/year)"
1302
  msgstr ""
1303
 
1304
- #: dashboard/publisher/adverts-edit.php:259
1305
  msgid "Start time (hh:mm)"
1306
  msgstr ""
1307
 
1308
- #: dashboard/publisher/adverts-edit.php:266
1309
  msgid "End time (hh:mm)"
1310
  msgstr ""
1311
 
1312
- #: dashboard/publisher/adverts-edit.php:276
1313
  msgid "Maximum Clicks"
1314
  msgstr ""
1315
 
1316
- #: dashboard/publisher/adverts-edit.php:277
1317
- #: dashboard/publisher/adverts-edit.php:279
1318
  msgid "Leave empty or 0 to skip this."
1319
  msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1320
 
1321
- #: dashboard/publisher/adverts-edit.php:278
1322
  msgid "Maximum Impressions"
1323
  msgstr ""
1324
 
1325
- #: dashboard/publisher/adverts-edit.php:283
1326
  msgid "Important"
1327
  msgstr ""
1328
 
1329
- #: dashboard/publisher/adverts-edit.php:284
1330
  msgid ""
1331
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1332
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1333
  "14:00 hours. 6AM is 6:00 hours."
1334
  msgstr ""
1335
 
1336
- #: dashboard/publisher/adverts-edit.php:288
1337
  msgid ""
1338
  "Create multiple and more advanced schedules for each advert with AdRotate "
1339
  "Pro."
1340
  msgstr ""
1341
 
1342
- #: dashboard/publisher/adverts-edit.php:288
1343
- #: dashboard/publisher/adverts-edit.php:323
1344
- #: dashboard/publisher/adverts-edit.php:367
1345
- #: dashboard/publisher/groups-edit.php:200
1346
  msgid "Upgrade today"
1347
  msgstr "Mettre à jour aujourd'hui"
1348
 
1349
- #: dashboard/publisher/adverts-edit.php:295
1350
- #: dashboard/publisher/groups-edit.php:157
1351
  msgid "Advanced"
1352
  msgstr "Avancé"
1353
 
1354
- #: dashboard/publisher/adverts-edit.php:296
1355
  msgid "Everything below is optional."
1356
  msgstr "Tous les paramètres ci-dessous sont optionels."
1357
 
1358
- #: dashboard/publisher/adverts-edit.php:300
1359
- msgid "Mobile"
1360
  msgstr ""
1361
 
1362
- #: dashboard/publisher/adverts-edit.php:302
1363
- msgid "Show on;"
 
 
 
 
 
 
1364
  msgstr ""
1365
 
1366
- #: dashboard/publisher/adverts-edit.php:302
1367
- msgid "Computers"
1368
  msgstr ""
1369
 
1370
- #: dashboard/publisher/adverts-edit.php:302
1371
- msgid "Smartphones"
1372
  msgstr ""
1373
 
1374
- #: dashboard/publisher/adverts-edit.php:302
1375
- msgid "Tablets."
1376
  msgstr ""
1377
 
1378
- #: dashboard/publisher/adverts-edit.php:303
1379
- msgid "Also enable mobile support in the group this advert goes in."
1380
  msgstr ""
1381
 
1382
- #: dashboard/publisher/adverts-edit.php:307
1383
- msgid "Responsive"
1384
  msgstr ""
1385
 
1386
- #: dashboard/publisher/adverts-edit.php:309
1387
- msgid "Enable responsive support for this advert."
1388
- msgstr "Activer le support réactif pour cette publicité."
1389
 
1390
- #: dashboard/publisher/adverts-edit.php:310
1391
- msgid ""
1392
- "Upload your images to the banner folder and make sure the filename is in the "
1393
- "following format; \"imagename.full.ext\"."
1394
  msgstr ""
1395
 
1396
- #: dashboard/publisher/adverts-edit.php:312
1397
- #: dashboard/publisher/adverts-report.php:64
1398
- #: dashboard/publisher/groups-report.php:65
1399
- msgid "Note:"
1400
- msgstr "Note :"
1401
 
1402
- #: dashboard/publisher/adverts-edit.php:312
1403
  msgid ""
1404
- "This feature will not be developed any further. Consider switching to the "
1405
- "Mobile feature in AdRotate Pro as seen above!"
1406
  msgstr ""
1407
 
1408
- #: dashboard/publisher/adverts-edit.php:316
1409
- #: dashboard/publisher/groups-edit.php:194
1410
  msgid "Sortorder"
1411
  msgstr ""
1412
 
1413
- #: dashboard/publisher/adverts-edit.php:318
1414
- #: dashboard/publisher/groups-edit.php:196
1415
  msgid "For administrative purposes set a sortorder."
1416
  msgstr "Pour des raisons administratives définir un ordre de tri."
1417
 
1418
- #: dashboard/publisher/adverts-edit.php:318
1419
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1420
  msgstr ""
1421
  "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
1422
  "de l'ID de la publicité."
1423
 
1424
- #: dashboard/publisher/adverts-edit.php:323
1425
  msgid ""
1426
  "With AdRotate Pro you can easily select which devices the advert should show "
1427
  "on!"
1428
  msgstr ""
1429
 
1430
- #: dashboard/publisher/adverts-edit.php:325
1431
  msgid "Geo Targeting in AdRotate Pro"
1432
  msgstr ""
1433
 
1434
- #: dashboard/publisher/adverts-edit.php:326
1435
  msgid ""
1436
  "Assign the advert to a group and enable that group to use Geo Targeting."
1437
  msgstr ""
1438
 
1439
- #: dashboard/publisher/adverts-edit.php:330
1440
  msgid "Cities/States"
1441
  msgstr ""
1442
 
1443
- #: dashboard/publisher/adverts-edit.php:333
1444
  msgid ""
1445
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1446
  "states ISO codes are supported)"
1447
  msgstr ""
1448
 
1449
- #: dashboard/publisher/adverts-edit.php:333
1450
  msgid ""
1451
  "AdRotate does not check the validity of names so make sure you spell them "
1452
  "correctly!"
1453
  msgstr ""
1454
 
1455
- #: dashboard/publisher/adverts-edit.php:337
1456
  msgid "Countries"
1457
  msgstr ""
1458
 
1459
- #: dashboard/publisher/adverts-edit.php:362
1460
  #, fuzzy
1461
  msgid "Select the countries you want the adverts to show in."
1462
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
1463
 
1464
- #: dashboard/publisher/adverts-edit.php:362
1465
  msgid "Cities take priority and will be filtered first."
1466
  msgstr ""
1467
 
1468
- #: dashboard/publisher/adverts-edit.php:367
1469
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1470
  msgstr ""
1471
 
1472
- #: dashboard/publisher/adverts-edit.php:391
1473
  msgid "Select Groups"
1474
  msgstr "Choisir groupes"
1475
 
1476
- #: dashboard/publisher/adverts-edit.php:396
1477
  msgid "ID - Name"
1478
  msgstr "ID - Nom"
1479
 
1480
- #: dashboard/publisher/adverts-edit.php:406
1481
  #: dashboard/publisher/groups-main.php:60
1482
- #: dashboard/settings/geotargeting.php:36
1483
  msgid "Default"
1484
  msgstr "Par défaut"
1485
 
1486
- #: dashboard/publisher/adverts-edit.php:407
1487
  #: dashboard/publisher/groups-main.php:61
1488
  msgid "Dynamic"
1489
  msgstr "Dynamique"
1490
 
1491
- #: dashboard/publisher/adverts-edit.php:407
1492
  #: dashboard/publisher/groups-main.php:61
1493
  msgid "second rotation"
1494
  msgstr "deuxième rotation"
1495
 
1496
- #: dashboard/publisher/adverts-edit.php:408
1497
  #: dashboard/publisher/groups-main.php:62
1498
  msgid "Block"
1499
  msgstr "Bloc"
1500
 
1501
- #: dashboard/publisher/adverts-edit.php:408
1502
  #: dashboard/publisher/groups-main.php:62
1503
  msgid "grid"
1504
  msgstr "grille"
1505
 
1506
- #: dashboard/publisher/adverts-edit.php:409
1507
- #: dashboard/publisher/groups-edit.php:202
1508
  #: dashboard/publisher/groups-main.php:63
1509
  msgid "Post Injection"
1510
  msgstr "Injection dans l'article"
1511
 
1512
- #: dashboard/publisher/adverts-edit.php:410
1513
  msgid "Geolocation"
1514
  msgstr "Géolocalisation"
1515
 
1516
- #: dashboard/publisher/adverts-edit.php:416
1517
- #: dashboard/publisher/groups-edit.php:61
1518
  #: dashboard/publisher/groups-main.php:70
1519
  msgid "Mode"
1520
  msgstr "Mode"
@@ -1554,7 +1545,7 @@ msgid "For 7 days"
1554
  msgstr "Pour 7 jours"
1555
 
1556
  #: dashboard/publisher/adverts-error.php:71
1557
- #: dashboard/publisher/groups-edit.php:386
1558
  msgid "Configuration errors."
1559
  msgstr "Erreurs de configuration."
1560
 
@@ -1566,11 +1557,6 @@ msgstr ""
1566
  msgid "Export to XML"
1567
  msgstr ""
1568
 
1569
- #: dashboard/publisher/adverts-main.php:42
1570
- #: dashboard/publisher/groups-edit.php:336
1571
- msgid "Weight"
1572
- msgstr "Importance"
1573
-
1574
  #: dashboard/publisher/adverts-main.php:45
1575
  #: dashboard/publisher/adverts-main.php:47
1576
  #: dashboard/publisher/groups-main.php:37
@@ -1608,6 +1594,13 @@ msgstr "Clicks aujourd'hui"
1608
  msgid "Monthly overview of clicks and impressions"
1609
  msgstr "Synthèse mensuelle de clics et d'impressions"
1610
 
 
 
 
 
 
 
 
1611
  #: dashboard/publisher/adverts-report.php:64
1612
  #: dashboard/publisher/groups-report.php:65
1613
  msgid ""
@@ -1625,317 +1618,317 @@ msgstr "Nouveau Groupe"
1625
  msgid "Edit Group"
1626
  msgstr "Modifier Groupe"
1627
 
1628
- #: dashboard/publisher/groups-edit.php:64
1629
  msgid "Default - Show one ad at a time"
1630
  msgstr "Par defaut - Montrer une pub "
1631
 
1632
- #: dashboard/publisher/groups-edit.php:65
1633
  msgid "Dynamic Mode - Show a different ad every few seconds"
1634
  msgstr "Mode dynamique - Montrer une pub différente à une intervale précise"
1635
 
1636
- #: dashboard/publisher/groups-edit.php:66
1637
  msgid "Block Mode - Show a block of adverts"
1638
  msgstr ""
1639
 
1640
- #: dashboard/publisher/groups-edit.php:70
1641
  #, fuzzy
1642
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1643
  msgstr ""
1644
  "En mode Dynamique, jQuery et jQuery Groups doivent être chargés. Vous pouvez "
1645
  "activer cette options dans les réglages de AdRotate."
1646
 
1647
- #: dashboard/publisher/groups-edit.php:77
1648
- #: dashboard/publisher/groups-edit.php:104
1649
  msgid "Dynamic and Block Mode"
1650
  msgstr "Mode Dynamique et en Bloc"
1651
 
1652
- #: dashboard/publisher/groups-edit.php:78
1653
  msgid "Only required if your group is in Dynamic or Block mode."
1654
  msgstr "Uniquement requis si votre groupe utilise le mode Dynamique ou Bloc."
1655
 
1656
- #: dashboard/publisher/groups-edit.php:82
1657
  msgid "Block size"
1658
  msgstr ""
1659
 
1660
- #: dashboard/publisher/groups-edit.php:88
1661
  msgid "rows"
1662
  msgstr "lignes"
1663
 
1664
- #: dashboard/publisher/groups-edit.php:92
1665
  msgid "columns"
1666
  msgstr "colonnes"
1667
 
1668
- #: dashboard/publisher/groups-edit.php:95
1669
  msgid "Block Mode"
1670
  msgstr "Mode en Bloc"
1671
 
1672
- #: dashboard/publisher/groups-edit.php:95
1673
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1674
  msgstr ""
1675
 
1676
- #: dashboard/publisher/groups-edit.php:99
1677
  msgid "Advert size"
1678
  msgstr ""
1679
 
1680
- #: dashboard/publisher/groups-edit.php:101
1681
  msgid "pixel(s) wide"
1682
  msgstr "largeur en pixels"
1683
 
1684
- #: dashboard/publisher/groups-edit.php:101
1685
  msgid "pixel(s) high."
1686
  msgstr "hauteur en pixels"
1687
 
1688
- #: dashboard/publisher/groups-edit.php:104
1689
  msgid ""
1690
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1691
  "recommended). Default: 125/125."
1692
  msgstr ""
1693
 
1694
- #: dashboard/publisher/groups-edit.php:108
1695
  msgid "Automated refresh"
1696
  msgstr "Rafraîchissement automatique"
1697
 
1698
- #: dashboard/publisher/groups-edit.php:127
1699
  msgid "seconds."
1700
  msgstr "secondes."
1701
 
1702
- #: dashboard/publisher/groups-edit.php:130
1703
  msgid "Dynamic Mode"
1704
  msgstr "Mode dynamique"
1705
 
1706
- #: dashboard/publisher/groups-edit.php:130
1707
  msgid ""
1708
  "Load a new advert in this interval without reloading the page. Default: 6."
1709
  msgstr ""
1710
  "Chargez une nouvelle publicité sans recharger le page après cette "
1711
  "intervalle. La valeur par défaut est : 6."
1712
 
1713
- #: dashboard/publisher/groups-edit.php:141
1714
- #: dashboard/publisher/groups-edit.php:288
1715
  msgid ""
1716
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1717
  "Adverts\" and enter ID"
1718
  msgstr ""
1719
 
1720
- #: dashboard/publisher/groups-edit.php:153
1721
- #: dashboard/publisher/groups-edit.php:300
1722
- #: dashboard/publisher/groups-edit.php:392
1723
  msgid "Save Group"
1724
  msgstr "Sauvegarder groupe"
1725
 
1726
- #: dashboard/publisher/groups-edit.php:161
1727
  msgid "Advert Margin"
1728
  msgstr "Marges autour de la pub"
1729
 
1730
- #: dashboard/publisher/groups-edit.php:163
1731
  msgid "pixel(s)"
1732
  msgstr "pixel(s)"
1733
 
1734
- #: dashboard/publisher/groups-edit.php:166
1735
  msgid "A transparent area outside the advert in pixels. Default: 0."
1736
  msgstr ""
1737
  "Une marge transparente en dehors de la publicité en pixels. Valeur par "
1738
  "défaut : 0."
1739
 
1740
- #: dashboard/publisher/groups-edit.php:166
1741
  msgid "Set to 0 to disable."
1742
  msgstr "Mettre 0 pour désactiver."
1743
 
1744
- #: dashboard/publisher/groups-edit.php:166
1745
  msgid "Margins are automatically disabled for blocks where required."
1746
  msgstr ""
1747
 
1748
- #: dashboard/publisher/groups-edit.php:170
1749
  msgid "Align the group"
1750
  msgstr ""
1751
 
1752
- #: dashboard/publisher/groups-edit.php:173
1753
  msgid "None (Default)"
1754
  msgstr ""
1755
 
1756
- #: dashboard/publisher/groups-edit.php:174
1757
  msgid "Left"
1758
  msgstr ""
1759
 
1760
- #: dashboard/publisher/groups-edit.php:175
1761
  msgid "Right"
1762
  msgstr ""
1763
 
1764
- #: dashboard/publisher/groups-edit.php:176
1765
  msgid "Center"
1766
  msgstr ""
1767
 
1768
- #: dashboard/publisher/groups-edit.php:180
1769
  msgid ""
1770
  "Align the group in your post or page. Using 'center' may affect your margin "
1771
  "setting. Not every theme supports this feature."
1772
  msgstr ""
1773
 
1774
- #: dashboard/publisher/groups-edit.php:184
1775
- #: dashboard/settings/advertisers.php:28
1776
  msgid "Geo Targeting"
1777
  msgstr ""
1778
 
1779
- #: dashboard/publisher/groups-edit.php:185
1780
  msgid "Enable Geo Targeting for this group."
1781
  msgstr ""
1782
 
1783
- #: dashboard/publisher/groups-edit.php:186
1784
  msgid "Do not forget to tell the adverts for which areas they should show."
1785
  msgstr ""
1786
 
1787
- #: dashboard/publisher/groups-edit.php:189
1788
  msgid "Mobile support"
1789
  msgstr ""
1790
 
1791
- #: dashboard/publisher/groups-edit.php:190
1792
  msgid "Enable mobile support for this group."
1793
  msgstr ""
1794
 
1795
- #: dashboard/publisher/groups-edit.php:191
1796
  msgid "Do not forget to put at least one mobile advert in this group."
1797
  msgstr ""
1798
 
1799
- #: dashboard/publisher/groups-edit.php:196
1800
  msgid "Leave empty or 0 to skip this. Will default to group id."
1801
  msgstr ""
1802
  "Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
1803
  "défaut de l'identifiant du groupe."
1804
 
1805
- #: dashboard/publisher/groups-edit.php:200
1806
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1807
  msgstr ""
1808
 
1809
- #: dashboard/publisher/groups-edit.php:205
1810
  msgid "In categories?"
1811
  msgstr ""
1812
 
1813
- #: dashboard/publisher/groups-edit.php:209
1814
- #: dashboard/publisher/groups-edit.php:247
1815
- #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1816
  msgid "Disabled"
1817
  msgstr "Désactivé"
1818
 
1819
- #: dashboard/publisher/groups-edit.php:210
1820
- #: dashboard/publisher/groups-edit.php:248
1821
  msgid "Before content"
1822
  msgstr "Avant le contenu"
1823
 
1824
- #: dashboard/publisher/groups-edit.php:211
1825
- #: dashboard/publisher/groups-edit.php:249
1826
  msgid "After content"
1827
  msgstr "Après le contenu"
1828
 
1829
- #: dashboard/publisher/groups-edit.php:212
1830
- #: dashboard/publisher/groups-edit.php:250
1831
  msgid "Before and after content"
1832
  msgstr "Avant et après le contenu"
1833
 
1834
- #: dashboard/publisher/groups-edit.php:213
1835
- #: dashboard/publisher/groups-edit.php:251
1836
  msgid "Inside the content..."
1837
  msgstr ""
1838
 
1839
- #: dashboard/publisher/groups-edit.php:219
1840
- #: dashboard/publisher/groups-edit.php:257
1841
  msgid "after the middle paragraph"
1842
  msgstr ""
1843
 
1844
- #: dashboard/publisher/groups-edit.php:220
1845
- #: dashboard/publisher/groups-edit.php:258
1846
  msgid "after the 1st paragraph"
1847
  msgstr ""
1848
 
1849
- #: dashboard/publisher/groups-edit.php:221
1850
- #: dashboard/publisher/groups-edit.php:259
1851
  msgid "after the 2nd paragraph"
1852
  msgstr ""
1853
 
1854
- #: dashboard/publisher/groups-edit.php:222
1855
- #: dashboard/publisher/groups-edit.php:260
1856
  msgid "after the 3rd paragraph"
1857
  msgstr ""
1858
 
1859
- #: dashboard/publisher/groups-edit.php:223
1860
- #: dashboard/publisher/groups-edit.php:261
1861
  msgid "after the 4th paragraph"
1862
  msgstr ""
1863
 
1864
- #: dashboard/publisher/groups-edit.php:224
1865
- #: dashboard/publisher/groups-edit.php:262
1866
  msgid "after the 5th paragraph"
1867
  msgstr ""
1868
 
1869
- #: dashboard/publisher/groups-edit.php:225
1870
- #: dashboard/publisher/groups-edit.php:263
1871
  msgid "after the 6th paragraph"
1872
  msgstr ""
1873
 
1874
- #: dashboard/publisher/groups-edit.php:226
1875
- #: dashboard/publisher/groups-edit.php:264
1876
  msgid "after the 7th paragraph"
1877
  msgstr ""
1878
 
1879
- #: dashboard/publisher/groups-edit.php:227
1880
- #: dashboard/publisher/groups-edit.php:265
1881
  msgid "after the 8th paragraph"
1882
  msgstr ""
1883
 
1884
- #: dashboard/publisher/groups-edit.php:233
1885
  msgid "Which categories?"
1886
  msgstr "Quelles catégories?"
1887
 
1888
- #: dashboard/publisher/groups-edit.php:238
1889
  msgid "Click the categories posts you want the adverts to show in."
1890
  msgstr ""
1891
  "Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
1892
  "pulicités."
1893
 
1894
- #: dashboard/publisher/groups-edit.php:243
1895
  msgid "In pages?"
1896
  msgstr ""
1897
 
1898
- #: dashboard/publisher/groups-edit.php:271
1899
  msgid "Which pages?"
1900
  msgstr "Quelles pages?"
1901
 
1902
- #: dashboard/publisher/groups-edit.php:276
1903
  msgid "Click the pages you want the adverts to show in."
1904
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
1905
 
1906
- #: dashboard/publisher/groups-edit.php:304
1907
  msgid "Wrapper code"
1908
  msgstr "Code enveloppant"
1909
 
1910
- #: dashboard/publisher/groups-edit.php:305
1911
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1912
  msgstr ""
1913
 
1914
- #: dashboard/publisher/groups-edit.php:309
1915
  msgid "Before advert"
1916
  msgstr ""
1917
 
1918
- #: dashboard/publisher/groups-edit.php:313
1919
  msgid "Options:"
1920
  msgstr "Options :"
1921
 
1922
- #: dashboard/publisher/groups-edit.php:317
1923
  msgid "After advert"
1924
  msgstr ""
1925
 
1926
- #: dashboard/publisher/groups-edit.php:326
1927
  msgid "Select adverts"
1928
  msgstr ""
1929
 
1930
- #: dashboard/publisher/groups-edit.php:331
1931
  msgid "Choose adverts"
1932
  msgstr ""
1933
 
1934
- #: dashboard/publisher/groups-edit.php:337
1935
  msgid "Visible until"
1936
  msgstr "Visible jusqu'à"
1937
 
1938
- #: dashboard/publisher/groups-edit.php:379
1939
  msgid "No adverts created!"
1940
  msgstr ""
1941
 
@@ -1955,8 +1948,8 @@ msgstr "Vous allez supprimer un groupe"
1955
  msgid "This action can not be undone!"
1956
  msgstr "Ceci ne peux pas être défait!"
1957
 
1958
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
1959
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
1960
  msgid "OK to continue, CANCEL to stop."
1961
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1962
 
@@ -1968,195 +1961,210 @@ msgstr "Aucun groupe n'a été créé!"
1968
  msgid "Statistics for group"
1969
  msgstr "Statistiques pour le groupe"
1970
 
1971
- #: dashboard/settings/advertisers.php:12
1972
  msgid "Advertisers - Available in AdRotate Pro"
1973
  msgstr ""
1974
 
1975
- #: dashboard/settings/advertisers.php:13
1976
  msgid "Enable advertisers so they can review and manage their own ads."
1977
  msgstr ""
1978
 
1979
- #: dashboard/settings/advertisers.php:16
1980
  msgid "Enable Advertisers"
1981
  msgstr ""
1982
 
1983
- #: dashboard/settings/advertisers.php:18
1984
  msgid "Allow adverts to be coupled to users (Advertisers)."
1985
  msgstr ""
1986
 
1987
- #: dashboard/settings/advertisers.php:22
1988
  msgid "Edit/update adverts"
1989
  msgstr ""
1990
 
1991
- #: dashboard/settings/advertisers.php:24
1992
  msgid "Allow advertisers to add new or edit their adverts."
1993
  msgstr ""
1994
 
1995
- #: dashboard/settings/advertisers.php:30
 
 
 
 
 
 
 
 
1996
  msgid ""
1997
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
1998
  "be enabled, too."
1999
  msgstr ""
2000
 
2001
- #: dashboard/settings/advertisers.php:34
2002
  msgid "Advertiser role"
2003
  msgstr ""
2004
 
2005
- #: dashboard/settings/advertisers.php:36
2006
  msgid "Create a seperate user role for your advertisers."
2007
  msgstr ""
2008
 
2009
- #: dashboard/settings/advertisers.php:37
2010
  msgid ""
2011
  "Don't forget to give these users access to their advertiser dashboard via "
2012
  "the Roles tab."
2013
  msgstr ""
2014
 
2015
- #: dashboard/settings/general.php:12
 
 
 
 
 
 
 
2016
  msgid "General Settings"
2017
  msgstr ""
2018
 
2019
- #: dashboard/settings/general.php:13
2020
  msgid "General settings for AdRotate."
2021
  msgstr ""
2022
 
2023
- #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2024
  msgid "Some options are only available in AdRotate Pro!"
2025
  msgstr ""
2026
 
2027
- #: dashboard/settings/general.php:16
2028
  msgid "Shortcode in widgets"
2029
  msgstr ""
2030
 
2031
- #: dashboard/settings/general.php:17
2032
  msgid ""
2033
  "Enable this option to if your theme does not support shortcodes in the "
2034
  "WordPress text widget."
2035
  msgstr ""
2036
 
2037
- #: dashboard/settings/general.php:20
2038
  msgid "Disable live preview"
2039
  msgstr ""
2040
 
2041
- #: dashboard/settings/general.php:21
2042
  msgid ""
2043
  "Enable this option if you have faulty adverts that overflow their designated "
2044
  "area while creating/editing adverts."
2045
  msgstr ""
2046
 
2047
- #: dashboard/settings/general.php:24
2048
  msgid "Disable dynamic mode"
2049
  msgstr ""
2050
 
2051
- #: dashboard/settings/general.php:25
2052
  msgid ""
2053
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2054
  "you notice skipping or jumpy content."
2055
  msgstr ""
2056
 
2057
- #: dashboard/settings/general.php:28
2058
  msgid "Load jQuery"
2059
  msgstr "Utilisez jQuery"
2060
 
2061
- #: dashboard/settings/general.php:29
2062
  msgid ""
2063
  "Enable this option if your theme does not load jQuery. jQuery is required "
2064
  "for dynamic groups, statistics and some other features."
2065
  msgstr ""
2066
 
2067
- #: dashboard/settings/general.php:32
2068
  msgid "Load scripts in footer?"
2069
  msgstr ""
2070
 
2071
- #: dashboard/settings/general.php:33
2072
  msgid ""
2073
  "Enable this option if you want to load all AdRotate Javascripts in the "
2074
  "footer of your site."
2075
  msgstr ""
2076
 
2077
- #: dashboard/settings/general.php:36
2078
  msgid "Adblock disguise"
2079
  msgstr ""
2080
 
2081
- #: dashboard/settings/general.php:38
2082
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2083
  msgstr ""
2084
 
2085
- #: dashboard/settings/general.php:39
2086
  msgid ""
2087
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2088
  msgstr ""
2089
 
2090
- #: dashboard/settings/general.php:39
2091
  msgid ""
2092
  "To also apply this feature to widgets, use a text widget with a shortcode "
2093
  "instead of the AdRotate widget."
2094
  msgstr ""
2095
 
2096
- #: dashboard/settings/general.php:39
2097
  msgid ""
2098
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2099
  "feature will have little effect!"
2100
  msgstr ""
2101
 
2102
- #: dashboard/settings/general.php:44
2103
  msgid "Banner Folder"
2104
  msgstr ""
2105
 
2106
- #: dashboard/settings/general.php:45
2107
  msgid "Set a location where your banner images will be stored."
2108
  msgstr ""
2109
 
2110
- #: dashboard/settings/general.php:48
2111
  msgid "Location"
2112
  msgstr ""
2113
 
2114
- #: dashboard/settings/general.php:50
2115
  msgid "(Default: wp-content/banners/)."
2116
  msgstr ""
2117
 
2118
- #: dashboard/settings/general.php:51
2119
  msgid ""
2120
  "To try and trick ad blockers you could set the folder to something crazy "
2121
  "like:"
2122
  msgstr ""
2123
 
2124
- #: dashboard/settings/general.php:52
2125
  msgid ""
2126
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2127
  "will show errors when the folder is missing."
2128
  msgstr ""
2129
 
2130
- #: dashboard/settings/general.php:57
2131
  msgid "Bot filter"
2132
  msgstr "Filtre de robots"
2133
 
2134
- #: dashboard/settings/general.php:58
2135
  msgid "The bot filter is used for the AdRotate stats tracker."
2136
  msgstr ""
2137
 
2138
- #: dashboard/settings/general.php:61
2139
  msgid "User-Agent Filter"
2140
  msgstr "Filtrage par User-Agent"
2141
 
2142
- #: dashboard/settings/general.php:64
2143
  msgid ""
2144
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2145
  msgstr ""
2146
 
2147
- #: dashboard/settings/general.php:65
2148
  msgid ""
2149
  "Keep in mind that this might give false positives. The word 'fire' also "
2150
  "matches 'firefox', but not vice-versa. So be careful!"
2151
  msgstr ""
2152
 
2153
- #: dashboard/settings/general.php:66
2154
  msgid ""
2155
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2156
  "characters are stripped out."
2157
  msgstr ""
2158
 
2159
- #: dashboard/settings/general.php:67
2160
  msgid ""
2161
  "Additionally to the list specified here, empty User-Agents are blocked as "
2162
  "well."
@@ -2164,86 +2172,118 @@ msgstr ""
2164
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
2165
  "bloqués."
2166
 
2167
- #: dashboard/settings/general.php:67
2168
  msgid "Learn more about"
2169
  msgstr "En savoir plus sur"
2170
 
2171
- #: dashboard/settings/general.php:67
2172
  msgid "user-agents"
2173
  msgstr "user-agents"
2174
 
2175
- #: dashboard/settings/geotargeting.php:12
2176
  msgid "Geo Targeting - Available in AdRotate Pro"
2177
  msgstr ""
2178
 
2179
- #: dashboard/settings/geotargeting.php:13
2180
  msgid "Target certain areas in the world for better advertising oppurtunities."
2181
  msgstr ""
2182
 
2183
- #: dashboard/settings/geotargeting.php:16
2184
  msgid "Which Geo Service"
2185
  msgstr ""
2186
 
2187
- #: dashboard/settings/geotargeting.php:25
2188
- msgid ""
2189
- "The most complete and accurate geo targeting you can get for only $20 USD "
2190
- "per 50000 lookups."
 
 
2191
  msgstr ""
2192
 
2193
- #: dashboard/settings/geotargeting.php:27
2194
- msgid "Free lookups every day, uses GeoLite2 databases from MaxMind!"
 
 
 
 
 
 
 
 
2195
  msgstr ""
2196
 
2197
  #: dashboard/settings/geotargeting.php:33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2198
  msgid "Geo Cookie Lifespan"
2199
  msgstr ""
2200
 
2201
- #: dashboard/settings/geotargeting.php:42
2202
  msgid "Hours."
2203
  msgstr ""
2204
 
2205
- #: dashboard/settings/geotargeting.php:43
2206
  msgid ""
2207
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2208
  "cookie last? A longer period is less accurate for mobile users but may "
2209
  "reduce the usage of your lookups drastically."
2210
  msgstr ""
2211
 
2212
- #: dashboard/settings/geotargeting.php:49
2213
  msgid "MaxMind City/Country"
2214
  msgstr ""
2215
 
2216
- #: dashboard/settings/geotargeting.php:52
2217
  msgid "Username/Email"
2218
  msgstr ""
2219
 
2220
- #: dashboard/settings/geotargeting.php:56
2221
  msgid "Password/License Key"
2222
  msgstr ""
2223
 
2224
- #: dashboard/settings/maintenance.php:12
2225
  msgid "Maintenance"
2226
  msgstr "Maintenance"
2227
 
2228
- #: dashboard/settings/maintenance.php:13
2229
  msgid ""
2230
  "Use these functions when you notice your database is slow, unresponsive and "
2231
  "sluggish."
2232
  msgstr ""
2233
 
2234
- #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2235
  msgid "Optimize Database"
2236
  msgstr "Optimiser la base de données"
2237
 
2238
- #: dashboard/settings/maintenance.php:18
2239
  msgid "You are about to optimize the AdRotate database."
2240
  msgstr "Vous allez optimiser la base de données de Adrotate."
2241
 
2242
- #: dashboard/settings/maintenance.php:18
2243
  msgid "Did you make a backup of your database?"
2244
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
2245
 
2246
- #: dashboard/settings/maintenance.php:18
2247
  msgid ""
2248
  "This may take a moment and may cause your website to respond slow "
2249
  "temporarily!"
@@ -2251,11 +2291,11 @@ msgstr ""
2251
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
2252
  "temporaire!"
2253
 
2254
- #: dashboard/settings/maintenance.php:19
2255
  msgid "Cleans up overhead data in the AdRotate tables."
2256
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
2257
 
2258
- #: dashboard/settings/maintenance.php:20
2259
  msgid ""
2260
  "Overhead data is accumulated garbage resulting from many changes you've "
2261
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2264,11 +2304,11 @@ msgstr ""
2264
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
2265
  "KB de données."
2266
 
2267
- #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2268
  msgid "Clean-up Database"
2269
  msgstr "Nettoyer la base de données"
2270
 
2271
- #: dashboard/settings/maintenance.php:26
2272
  msgid ""
2273
  "You are about to clean up your database. This may delete expired schedules "
2274
  "and older statistics."
@@ -2276,51 +2316,51 @@ msgstr ""
2276
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
2277
  "supprimer des calendriers périmés et des vieilles statistiques.."
2278
 
2279
- #: dashboard/settings/maintenance.php:26
2280
  msgid "Are you sure you want to continue?"
2281
  msgstr "Etes-vous certains de vouloir continuer?"
2282
 
2283
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2284
  msgid "This might take a while and may slow down your site during this action!"
2285
  msgstr ""
2286
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
2287
  "interval!"
2288
 
2289
- #: dashboard/settings/maintenance.php:27
2290
  msgid "Delete stats older than 356 days (Optional)."
2291
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
2292
 
2293
- #: dashboard/settings/maintenance.php:28
2294
  msgid ""
2295
  "AdRotate creates empty records when you start making ads, groups or "
2296
  "schedules. In rare occasions these records are faulty."
2297
  msgstr ""
2298
 
2299
- #: dashboard/settings/maintenance.php:28
2300
  msgid ""
2301
  "If you made an ad, group or schedule that does not save when you make it use "
2302
  "this button to delete those empty records."
2303
  msgstr ""
2304
 
2305
- #: dashboard/settings/maintenance.php:28
2306
  msgid ""
2307
  "Additionally you can clean up old schedules and/or statistics. This will "
2308
  "improve the speed of your site."
2309
  msgstr ""
2310
 
2311
- #: dashboard/settings/maintenance.php:32
2312
  msgid "Re-evaluate Ads"
2313
  msgstr "Re-évaluer les publicités"
2314
 
2315
- #: dashboard/settings/maintenance.php:34
2316
  msgid "Re-evaluate all ads"
2317
  msgstr "Re-évaluer toutes les publicités"
2318
 
2319
- #: dashboard/settings/maintenance.php:34
2320
  msgid "You are about to check all ads for errors."
2321
  msgstr "Vous allez véifier l'état de toutes les publicités."
2322
 
2323
- #: dashboard/settings/maintenance.php:35
2324
  msgid ""
2325
  "This will apply all evaluation rules to all ads to see if any error slipped "
2326
  "in. Normally you should not need this feature."
@@ -2329,7 +2369,7 @@ msgstr ""
2329
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
2330
  "fonctionalité."
2331
 
2332
- #: dashboard/settings/maintenance.php:39
2333
  msgid ""
2334
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2335
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2342,11 +2382,11 @@ msgid ""
2342
  "is not a valid point in any case."
2343
  msgstr ""
2344
 
2345
- #: dashboard/settings/maintenance.php:41
2346
  msgid "Troubleshooting"
2347
  msgstr "Diagnostic de dépannage"
2348
 
2349
- #: dashboard/settings/maintenance.php:42
2350
  msgid ""
2351
  "The below options are not meant for normal use and are only there for "
2352
  "developers to review saved settings or how ads are selected. These can be "
@@ -2354,19 +2394,19 @@ msgid ""
2354
  "SHOULD BE LEFT UNCHECKED!!"
2355
  msgstr ""
2356
 
2357
- #: dashboard/settings/maintenance.php:45
2358
  msgid "Developer Debug"
2359
  msgstr "Debuggage de développeur"
2360
 
2361
- #: dashboard/settings/maintenance.php:47
2362
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2363
  msgstr ""
2364
 
2365
- #: dashboard/settings/maintenance.php:48
2366
  msgid "View advert specs and (some) stats in the dashboard."
2367
  msgstr ""
2368
 
2369
- #: dashboard/settings/maintenance.php:49
2370
  msgid ""
2371
  "Disable timers for clicks and impressions and enable a alert window for "
2372
  "clicktracking."
@@ -2374,87 +2414,106 @@ msgstr ""
2374
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
2375
  "fenêtre d'alerte pour le suivi des clicks."
2376
 
2377
- #: dashboard/settings/maintenance.php:50
2378
  msgid "Temporarily disable encryption on the redirect url."
2379
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
2380
 
2381
- #: dashboard/settings/maintenance.php:55
2382
  msgid "Status and Versions"
2383
  msgstr ""
2384
 
2385
- #: dashboard/settings/maintenance.php:58
2386
- msgid "Current version:"
2387
- msgstr "Version actuelle :"
2388
-
2389
- #: dashboard/settings/maintenance.php:59
2390
- msgid "Previous version:"
2391
- msgstr "Version antérieure :"
2392
-
2393
  #: dashboard/settings/maintenance.php:62
2394
- msgid "Current database version:"
2395
- msgstr "Version actuelle de la base de données :"
2396
-
2397
- #: dashboard/settings/maintenance.php:63
2398
- msgid "Previous database version:"
2399
- msgstr "Version antérieure de la base de données :"
2400
-
2401
- #: dashboard/settings/maintenance.php:66
2402
  msgid "Current status of adverts"
2403
  msgstr "Etat actuel des publicités"
2404
 
2405
- #: dashboard/settings/maintenance.php:67
2406
  msgid "Normal"
2407
  msgstr "Normal"
2408
 
2409
- #: dashboard/settings/maintenance.php:67
2410
  msgid "Error"
2411
  msgstr "Erreur"
2412
 
2413
- #: dashboard/settings/maintenance.php:67
2414
  msgid "Expired"
2415
  msgstr "Expiré"
2416
 
2417
- #: dashboard/settings/maintenance.php:67
2418
  msgid "Expires Soon"
2419
  msgstr "Expire bientôt"
2420
 
2421
- #: dashboard/settings/maintenance.php:67
2422
  msgid "Unknown"
2423
  msgstr ""
2424
 
2425
- #: dashboard/settings/maintenance.php:70
2426
  msgid "Banners/assets Folder"
2427
  msgstr ""
2428
 
2429
- #: dashboard/settings/maintenance.php:72
2430
  msgid "Exists and appears writable"
2431
  msgstr ""
2432
 
2433
- #: dashboard/settings/maintenance.php:72
2434
  msgid "Not writable or does not exist"
2435
  msgstr ""
2436
 
 
 
 
 
2437
  #: dashboard/settings/maintenance.php:76
2438
- msgid "Ad evaluation next run:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2439
  msgstr ""
2440
 
2441
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
2442
- msgid "Not scheduled!"
2443
- msgstr "Pas planifié!"
2444
 
2445
- #: dashboard/settings/maintenance.php:80
2446
- msgid "Clean Trackerdata next run:"
2447
- msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
2448
 
2449
- #: dashboard/settings/misc.php:12
2450
  msgid "Miscellaneous"
2451
  msgstr "Divers"
2452
 
2453
- #: dashboard/settings/misc.php:15
2454
  msgid "Widget alignment"
2455
  msgstr "Alignement du Widget"
2456
 
2457
- #: dashboard/settings/misc.php:16
2458
  msgid ""
2459
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2460
  "not always help!)"
@@ -2462,11 +2521,11 @@ msgstr ""
2462
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
2463
  "votre thème. Cette fonction peux ne pas régler le soucis!"
2464
 
2465
- #: dashboard/settings/misc.php:19
2466
  msgid "Widget padding"
2467
  msgstr "Marge interne du Widget"
2468
 
2469
- #: dashboard/settings/misc.php:20
2470
  msgid ""
2471
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2472
  "not always work!)"
@@ -2474,35 +2533,35 @@ msgstr ""
2474
  "Activez cette option pour supprimer la marge (espace vide) autour des "
2475
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
2476
 
2477
- #: dashboard/settings/misc.php:24
2478
  msgid "NOTICE:"
2479
  msgstr ""
2480
 
2481
- #: dashboard/settings/misc.php:25
2482
  msgid ""
2483
  "You have enabled W3 Total Caching support but not defined the security hash."
2484
  msgstr ""
2485
 
2486
- #: dashboard/settings/misc.php:25
2487
  msgid ""
2488
  "AdRotate has generated the following line for you to add to your wp-config."
2489
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2490
  "add this line, check out the following guide;"
2491
  msgstr ""
2492
 
2493
- #: dashboard/settings/misc.php:25
2494
  msgid "Set up W3 Total Caching"
2495
  msgstr ""
2496
 
2497
- #: dashboard/settings/misc.php:29
2498
  msgid "W3 Total Caching"
2499
  msgstr "W3 Total Caching"
2500
 
2501
- #: dashboard/settings/misc.php:30
2502
  msgid "Check this box if you use W3 Total Caching on your site."
2503
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
2504
 
2505
- #: dashboard/settings/misc.php:34
2506
  msgid ""
2507
  "It may take a while for the ad to start rotating. The caching plugin needs "
2508
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2512,7 +2571,7 @@ msgstr ""
2512
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
2513
  "pas fait manuellement."
2514
 
2515
- #: dashboard/settings/misc.php:34
2516
  msgid ""
2517
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2518
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2521,325 +2580,365 @@ msgstr ""
2521
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
2522
  "PHP dans le code d'exclusion vous-même."
2523
 
2524
- #: dashboard/settings/notifications.php:12
2525
  msgid "Notifications"
2526
  msgstr ""
2527
 
2528
- #: dashboard/settings/notifications.php:13
2529
  msgid "Set up who gets notifications if ads need your attention."
2530
  msgstr ""
2531
 
2532
- #: dashboard/settings/notifications.php:16
2533
  msgid "How to notify"
2534
  msgstr ""
2535
 
2536
- #: dashboard/settings/notifications.php:18
2537
  msgid "Dashboard banner."
2538
  msgstr ""
2539
 
2540
- #: dashboard/settings/notifications.php:19
2541
  msgid "Email message."
2542
  msgstr ""
2543
 
2544
- #: dashboard/settings/notifications.php:20
2545
  msgid "Push notifications to your smartphone."
2546
  msgstr ""
2547
 
2548
- #: dashboard/settings/notifications.php:21
2549
  msgid ""
2550
  "Push notifications are delivered through Pushover, a notification service "
2551
  "for Android and iOS"
2552
  msgstr ""
2553
 
2554
- #: dashboard/settings/notifications.php:21
2555
  msgid ""
2556
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2557
  "information can be found on the pushover website;"
2558
  msgstr ""
2559
 
2560
- #: dashboard/settings/notifications.php:25
2561
  msgid "Test notification"
2562
  msgstr ""
2563
 
2564
- #: dashboard/settings/notifications.php:27
2565
  msgid "Test"
2566
  msgstr ""
2567
 
2568
- #: dashboard/settings/notifications.php:27
2569
  msgid ""
2570
  "Send a test notification to enabled methods. Before you test, save the "
2571
  "options first!"
2572
  msgstr ""
2573
 
2574
- #: dashboard/settings/notifications.php:32
2575
- msgid "Dashboard"
2576
  msgstr ""
2577
 
2578
- #: dashboard/settings/notifications.php:33
2579
  msgid ""
2580
  "These go in a dashboard banner visible to all users with access to AdRotate "
2581
  "on every WordPress dashboard page."
2582
  msgstr ""
2583
 
2584
- #: dashboard/settings/notifications.php:36
2585
- #: dashboard/settings/notifications.php:68
 
2586
  msgid "What"
2587
  msgstr ""
2588
 
2589
- #: dashboard/settings/notifications.php:38
2590
  msgid "Expired adverts."
2591
  msgstr ""
2592
 
2593
- #: dashboard/settings/notifications.php:39
2594
  msgid "Almost expired adverts."
2595
  msgstr ""
2596
 
2597
- #: dashboard/settings/notifications.php:44
2598
- msgid "Email"
2599
  msgstr ""
2600
 
2601
- #: dashboard/settings/notifications.php:45
2602
- msgid "Set up who gets notification emails."
 
2603
  msgstr ""
2604
 
2605
- #: dashboard/settings/notifications.php:48
2606
- msgid "Publishers"
 
2607
  msgstr ""
2608
 
2609
- #: dashboard/settings/notifications.php:51
2610
- msgid ""
2611
- "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2612
- "list to a minimum!"
2613
  msgstr ""
2614
 
2615
- #: dashboard/settings/notifications.php:52
2616
- msgid ""
2617
- "Messages are sent once every 24 hours when needed. If this field is empty no "
2618
- "email notifications will be send."
2619
  msgstr ""
2620
 
2621
- #: dashboard/settings/notifications.php:56
2622
- msgid "Advertisers"
 
2623
  msgstr ""
2624
 
2625
- #: dashboard/settings/notifications.php:59
2626
- msgid ""
2627
- "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2628
- "This field may not be empty!"
2629
  msgstr ""
2630
 
2631
- #: dashboard/settings/notifications.php:64
2632
- msgid "Push"
 
 
 
2633
  msgstr ""
2634
 
2635
- #: dashboard/settings/notifications.php:65
2636
  msgid ""
2637
- "Receive information about what is happening with your AdRotate setup on your "
2638
- "smartphone via Pushover."
 
 
 
2639
  msgstr ""
2640
 
2641
- #: dashboard/settings/notifications.php:70
2642
- msgid "When you are running out of Geo Targeting Lookups."
2643
  msgstr ""
2644
 
2645
- #: dashboard/settings/notifications.php:71
2646
- msgid "Daily digest of any advert status other than normal."
 
 
2647
  msgstr ""
2648
 
2649
  #: dashboard/settings/notifications.php:72
2650
- msgid "Any advertiser saving an advert in your moderation queue."
2651
  msgstr ""
2652
 
2653
- #: dashboard/settings/notifications.php:73
2654
- msgid "A moderator approved an advert from the moderation queue."
 
 
2655
  msgstr ""
2656
 
2657
- #: dashboard/settings/notifications.php:74
2658
- msgid "A moderator rejected an advert from the moderation queue."
2659
  msgstr ""
2660
 
2661
- #: dashboard/settings/notifications.php:74
2662
  msgid ""
2663
- "If you have a lot of activity with many advertisers adding/changing adverts "
2664
- "you may get a lot of messages!"
2665
  msgstr ""
2666
 
2667
- #: dashboard/settings/notifications.php:79
 
 
 
 
 
 
 
 
2668
  msgid "User Key"
2669
  msgstr ""
2670
 
2671
- #: dashboard/settings/notifications.php:81
2672
  msgid "Get your user token"
2673
  msgstr ""
2674
 
2675
- #: dashboard/settings/notifications.php:81
2676
- #: dashboard/settings/notifications.php:87
2677
  msgid "here"
2678
  msgstr ""
2679
 
2680
- #: dashboard/settings/notifications.php:85
2681
  msgid "Api Token"
2682
  msgstr ""
2683
 
2684
- #: dashboard/settings/notifications.php:87
2685
  msgid "Create your"
2686
  msgstr ""
2687
 
2688
- #: dashboard/settings/notifications.php:87
2689
  msgid "App"
2690
  msgstr ""
2691
 
2692
- #: dashboard/settings/notifications.php:87
2693
  msgid "and get your API token"
2694
  msgstr ""
2695
 
2696
- #: dashboard/settings/roles.php:12
2697
  msgid "Roles"
2698
  msgstr ""
2699
 
2700
- #: dashboard/settings/roles.php:13
2701
  msgid "Who has access to what?"
2702
  msgstr "Qui a accès à quoi?"
2703
 
2704
- #: dashboard/settings/roles.php:16
2705
  msgid "Manage/Add/Edit adverts"
2706
  msgstr "Gérer/Ajouter/Modifier les publicités"
2707
 
2708
- #: dashboard/settings/roles.php:20
2709
  msgid "Role to see and add/edit ads."
2710
  msgstr "Rôle pour voir et gérer/modifier les publicités."
2711
 
2712
- #: dashboard/settings/roles.php:24
2713
  msgid "Delete/Reset adverts"
2714
  msgstr "Supprimer/Mettre à zéro les publicités"
2715
 
2716
- #: dashboard/settings/roles.php:28
2717
  msgid "Role to delete ads and reset stats."
2718
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
2719
 
2720
- #: dashboard/settings/roles.php:32
2721
  msgid "Manage/Add/Edit groups"
2722
  msgstr "Gérer/Ajouter/Modifier les groupes"
2723
 
2724
- #: dashboard/settings/roles.php:36
2725
  msgid "Role to see and add/edit groups."
2726
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
2727
 
2728
- #: dashboard/settings/roles.php:40
2729
  msgid "Delete groups"
2730
  msgstr "Effacer les groups"
2731
 
2732
- #: dashboard/settings/roles.php:44
2733
  msgid "Role to delete groups."
2734
  msgstr "Rôle pour supprimer les groupes."
2735
 
2736
- #: dashboard/settings/statistics.php:13
2737
  msgid "Track statistics for your adverts."
2738
  msgstr ""
2739
 
2740
- #: dashboard/settings/statistics.php:16
2741
  msgid "How to track stats"
2742
  msgstr ""
2743
 
2744
- #: dashboard/settings/statistics.php:25
2745
  msgid "Tracks impressions and clicks internally"
2746
  msgstr ""
2747
 
2748
- #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2749
- #: dashboard/settings/statistics.php:29
2750
  msgid "manual"
2751
  msgstr ""
2752
 
2753
- #: dashboard/settings/statistics.php:26
2754
  msgid ""
2755
  "Click and Impression recording, Click and impression limits, impression "
2756
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2757
  "will only track impressions."
2758
  msgstr ""
2759
 
2760
- #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2761
  msgid "In AdRotate Pro!"
2762
  msgstr ""
2763
 
2764
- #: dashboard/settings/statistics.php:27
2765
  msgid ""
2766
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2767
  "attributes"
2768
  msgstr ""
2769
 
2770
- #: dashboard/settings/statistics.php:28
2771
  msgid ""
2772
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2773
  "Contents."
2774
  msgstr ""
2775
 
2776
- #: dashboard/settings/statistics.php:29
2777
  msgid ""
2778
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2779
  "uses onClick() and onload() in adverts"
2780
  msgstr ""
2781
 
2782
- #: dashboard/settings/statistics.php:30
2783
  msgid ""
2784
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2785
  "Banner."
2786
  msgstr ""
2787
 
2788
- #: dashboard/settings/statistics.php:36
2789
  msgid "Internal Tracker"
2790
  msgstr ""
2791
 
2792
- #: dashboard/settings/statistics.php:37
2793
  msgid ""
2794
  "The settings below are for the internal tracker and have no effect when "
2795
  "using Piwik/Google Analytics."
2796
  msgstr ""
2797
 
2798
- #: dashboard/settings/statistics.php:40
2799
  msgid "Logged in impressions"
2800
  msgstr ""
2801
 
2802
- #: dashboard/settings/statistics.php:42
2803
  msgid "Track impressions from logged in users."
2804
  msgstr ""
2805
 
2806
- #: dashboard/settings/statistics.php:46
2807
  msgid "Logged in clicks"
2808
  msgstr ""
2809
 
2810
- #: dashboard/settings/statistics.php:48
2811
  msgid "Track clicks from logged in users."
2812
  msgstr ""
2813
 
2814
- #: dashboard/settings/statistics.php:52
2815
  msgid "Impression timer"
2816
  msgstr ""
2817
 
2818
- #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2819
  msgid "Seconds."
2820
  msgstr "Secondes."
2821
 
2822
- #: dashboard/settings/statistics.php:55
2823
  msgid "Default: 60."
2824
  msgstr ""
2825
 
2826
- #: dashboard/settings/statistics.php:55
2827
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2828
  msgstr ""
2829
 
2830
- #: dashboard/settings/statistics.php:59
2831
  msgid "Click timer"
2832
  msgstr ""
2833
 
2834
- #: dashboard/settings/statistics.php:62
2835
  msgid "Default: 86400."
2836
  msgstr ""
2837
 
2838
- #: dashboard/settings/statistics.php:62
2839
  msgid ""
2840
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2841
  msgstr ""
2842
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2843
  #~ msgid "Get more features with AdRotate Pro"
2844
  #~ msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
2845
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate 3.10.8\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-17 23:25+0800\n"
6
+ "PO-Revision-Date: 2016-07-17 23:25+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Digital Ink Tunisia <hello@digitalink.tn>\n"
9
  "Language: fr_FR\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:842
21
  msgid "No files found"
22
  msgstr "Aucun fichier n'a été trouvé"
23
 
24
+ #: adrotate-functions.php:845
25
  msgid "Folder not found or not accessible"
26
  msgstr "Le dossier n'a pas été trouvé ou n'est pas accessible"
27
 
28
+ #: adrotate-functions.php:894
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:898
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:902
37
  msgid "Ad(s) deleted"
38
  msgstr "Publicité(s) supprimée(s)"
39
 
40
+ #: adrotate-functions.php:906
41
  msgid "Group deleted"
42
  msgstr "Groupe supprimé"
43
 
44
+ #: adrotate-functions.php:910
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Statistiques de la publicité/des publicités ont été mises à zéro"
47
 
48
+ #: adrotate-functions.php:914
49
  msgid "Ad(s) renewed"
50
  msgstr "publicité(s) renouvellée(s)"
51
 
52
+ #: adrotate-functions.php:918
53
  msgid "Ad(s) deactivated"
54
  msgstr "Publicité(s) désactivée(s)"
55
 
56
+ #: adrotate-functions.php:922
57
  msgid "Ad(s) activated"
58
  msgstr "Publicité(s) activée(s)"
59
 
60
+ #: adrotate-functions.php:926
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Le gruop ainsi que ses publicités ont été supprimés"
63
 
64
+ #: adrotate-functions.php:930
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "Publicité créée"
68
 
69
+ #: adrotate-functions.php:935
70
  msgid "Settings saved"
71
  msgstr "Paramètres sauvegardés"
72
 
73
+ #: adrotate-functions.php:939
74
  msgid "Database optimized"
75
  msgstr "Base de données optimisée"
76
 
77
+ #: adrotate-functions.php:943
78
  msgid "Database repaired"
79
  msgstr "Base de données réparée"
80
 
81
+ #: adrotate-functions.php:947
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr ""
84
  "Publicités évalués et les statuts ont été corrigées si c'était nécessaire"
85
 
86
+ #: adrotate-functions.php:951
87
  msgid "Empty database records removed"
88
  msgstr "Les registres vides de la base de données ont été supprimés"
89
 
90
+ #: adrotate-functions.php:956
91
  msgid "Action prohibited"
92
  msgstr "Action interdite"
93
 
94
+ #: adrotate-functions.php:960
95
  msgid ""
96
  "The ad was saved but has an issue which might prevent it from working "
97
  "properly. Review the colored ad."
98
  msgstr ""
99
 
100
+ #: adrotate-functions.php:964
101
  msgid "No data found in selected time period"
102
  msgstr "Aucune donnée n'a été trouvée dans la période sélectionnée"
103
 
104
+ #: adrotate-functions.php:968
105
  msgid "Database can only be optimized or cleaned once every hour"
106
  msgstr ""
107
  "La base de données peut être optimisée ou nettoyée une fois toutes les heures"
108
 
109
+ #: adrotate-functions.php:972
110
  msgid "Form can not be (partially) empty!"
111
  msgstr ""
112
 
113
+ #: adrotate-functions.php:976
114
  msgid "No ads found."
115
  msgstr ""
116
 
117
+ #: adrotate-functions.php:980
118
  msgid "Unexpected error"
119
  msgstr ""
120
 
121
+ #: adrotate-manage-publisher.php:685
122
  msgid "AdRotate Advertiser"
123
  msgstr ""
124
 
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
  "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
  "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
  "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
  "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
  "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
+ #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
205
  msgid "Check adverts"
206
  msgstr ""
207
 
208
+ #: adrotate-output.php:675
209
  msgid ""
210
  "You have enable caching support but W3 Total Cache is not active on your "
211
  "site!"
212
  msgstr ""
213
 
214
+ #: adrotate-output.php:678
215
  msgid ""
216
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
217
  "not set."
218
  msgstr ""
219
 
220
+ #: adrotate-output.php:683
221
  msgid "Your AdRotate Banner folder is not writable or does not exist."
222
  msgstr ""
223
 
224
+ #: adrotate-output.php:723 dashboard/adrotatepro.php:99
225
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
226
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
227
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
228
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
229
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
230
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
231
+ #: dashboard/settings/geotargeting.php:35
232
  msgid "Buy now"
233
  msgstr ""
234
 
235
+ #: adrotate-output.php:724
236
  msgid ""
237
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
238
  "to the <strong>PRO</strong> version"
239
  msgstr ""
240
 
241
+ #: adrotate-output.php:724
242
  #, php-format
243
  msgid ""
244
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
245
  msgstr ""
246
 
247
+ #: adrotate-output.php:724
248
  msgid "Thank you for your purchase!"
249
  msgstr ""
250
 
251
+ #: adrotate-output.php:785
252
  msgid ""
253
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
254
  "this menu. Check out the"
255
  msgstr ""
256
 
257
+ #: adrotate-output.php:785
258
  msgid "manuals"
259
  msgstr "manuels"
260
 
261
+ #: adrotate-output.php:785 adrotate-output.php:852
262
  msgid "and"
263
  msgstr ""
264
 
265
+ #: adrotate-output.php:785
266
  msgid "forums"
267
  msgstr ""
268
 
269
+ #: adrotate-output.php:815
270
  msgid "Useful Links"
271
  msgstr ""
272
 
273
+ #: adrotate-output.php:816
274
  msgid "Useful links to learn more about AdRotate"
275
  msgstr ""
276
 
277
+ #: adrotate-output.php:818
278
  msgid "AdRotate website"
279
  msgstr ""
280
 
281
+ #: adrotate-output.php:819
282
  msgid "Getting Started With AdRotate"
283
  msgstr ""
284
 
285
+ #: adrotate-output.php:820
286
  msgid "AdRotate manuals"
287
  msgstr ""
288
 
289
+ #: adrotate-output.php:821
290
  msgid "AdRotate Support Forum"
291
  msgstr ""
292
 
293
+ #: adrotate-output.php:844
294
  #, fuzzy
295
  msgid "Help AdRotate Grow"
296
  msgstr "AdRotate Pro"
297
 
298
+ #: adrotate-output.php:845
299
  msgid "Follow Arnan on Facebook"
300
  msgstr ""
301
 
302
+ #: adrotate-output.php:852
303
  msgid ""
304
  "A lot of users only think to review AdRotate when something goes wrong while "
305
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
306
  msgstr ""
307
 
308
+ #: adrotate-output.php:852
309
  msgid "If you find AdRotate useful please leave your honest"
310
  msgstr ""
311
 
312
+ #: adrotate-output.php:852
313
  msgid "rating"
314
  msgstr ""
315
 
316
+ #: adrotate-output.php:852
317
  #, fuzzy
318
  msgid "review"
319
  msgstr "En avant-première"
320
 
321
+ #: adrotate-output.php:852
322
  msgid "on WordPress.org to help AdRotate grow in a positive way"
323
  msgstr ""
324
 
325
+ #: adrotate-output.php:885 dashboard/settings/notifications.php:50
326
+ #: dashboard/settings/notifications.php:80
327
  msgid "Available in AdRotate Pro"
328
  msgstr "Disponible dans Adrotate Pro"
329
 
330
+ #: adrotate-output.php:885
331
  msgid "More information..."
332
  msgstr "Plus d'informations..."
333
 
334
+ #: adrotate-output.php:886
335
  msgid "This feature is available in AdRotate Pro"
336
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
337
 
338
+ #: adrotate-output.php:886
339
  msgid "Learn more"
340
  msgstr "En savoir plus"
341
 
342
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
343
+ #: dashboard/publisher/adverts-edit.php:235
344
  msgid "January"
345
  msgstr "Janvier"
346
 
347
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
348
+ #: dashboard/publisher/adverts-edit.php:236
349
  msgid "February"
350
  msgstr "Février"
351
 
352
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
353
+ #: dashboard/publisher/adverts-edit.php:237
354
  msgid "March"
355
  msgstr "Mars"
356
 
357
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
358
+ #: dashboard/publisher/adverts-edit.php:238
359
  msgid "April"
360
  msgstr "Avril"
361
 
362
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
363
+ #: dashboard/publisher/adverts-edit.php:239
364
  msgid "May"
365
  msgstr "Mai"
366
 
367
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
368
+ #: dashboard/publisher/adverts-edit.php:240
369
  msgid "June"
370
  msgstr "Juin"
371
 
372
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
373
+ #: dashboard/publisher/adverts-edit.php:241
374
  msgid "July"
375
  msgstr "Juillet"
376
 
377
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
378
+ #: dashboard/publisher/adverts-edit.php:242
379
  msgid "August"
380
  msgstr "Août"
381
 
382
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
383
+ #: dashboard/publisher/adverts-edit.php:243
384
  msgid "September"
385
  msgstr "Septembre"
386
 
387
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
388
+ #: dashboard/publisher/adverts-edit.php:244
389
  msgid "October"
390
  msgstr "Octobre"
391
 
392
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
393
+ #: dashboard/publisher/adverts-edit.php:245
394
  msgid "November"
395
  msgstr "Novembre"
396
 
397
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
398
+ #: dashboard/publisher/adverts-edit.php:246
399
  msgid "December"
400
  msgstr "Décembre"
401
 
457
  msgid "Fill in the ID of the type you want to display!"
458
  msgstr "Insérez l'identifiant du type que vous voulez afficher!"
459
 
460
+ #: adrotate.php:102
461
  msgid "General Info"
462
  msgstr "Informations générales"
463
 
464
+ #: adrotate.php:103
465
  msgid "AdRotate Pro"
466
  msgstr "AdRotate Pro"
467
 
468
+ #: adrotate.php:104
469
  msgid "Manage Adverts"
470
  msgstr ""
471
 
472
+ #: adrotate.php:105 dashboard/publisher/groups-main.php:12
473
  msgid "Manage Groups"
474
  msgstr "Gérer les groupes"
475
 
476
+ #: adrotate.php:106 adrotate.php:369
477
  #, fuzzy
478
  msgid "Manage Schedules"
479
  msgstr "Gérer les pubs"
480
 
481
+ #: adrotate.php:107
482
  #, fuzzy
483
  msgid "Manage Media"
484
  msgstr "Gérer les pubs"
485
 
486
+ #: adrotate.php:108
487
  msgid "Settings"
488
  msgstr "Paramètres"
489
 
490
+ #: adrotate.php:128
491
  msgid "AdRotate Info"
492
  msgstr "Informations sur Adrotate"
493
 
494
+ #: adrotate.php:146
495
  msgid "AdRotate Professional"
496
  msgstr "AdRotate professionel"
497
 
498
+ #: adrotate.php:186
499
  msgid "Advert Management"
500
  msgstr ""
501
 
502
+ #: adrotate.php:244 adrotate.php:311 adrotate.php:364
503
  msgid "Manage"
504
  msgstr "Gérer"
505
 
506
+ #: adrotate.php:245 adrotate.php:312 adrotate.php:365
507
  msgid "Add New"
508
  msgstr "Ajouter"
509
 
510
+ #: adrotate.php:305
511
  msgid "Group Management"
512
  msgstr "Gérer les groupes"
513
 
514
+ #: adrotate.php:314
515
  msgid "Report"
516
  msgstr "Rapport"
517
 
518
+ #: adrotate.php:360
519
  #, fuzzy
520
  msgid "Schedule Management available in AdRotate Pro"
521
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
522
 
523
+ #: adrotate.php:370
524
  #, fuzzy
525
  msgid ""
526
  "Schedule management and multiple schedules per advert is available in "
527
  "AdRotate Pro."
528
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
529
 
530
+ #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
531
  #: dashboard/publisher/adverts-main.php:114
532
+ #: dashboard/publisher/groups-edit.php:71
533
  #: dashboard/publisher/groups-main.php:89
534
  msgid "More information"
535
  msgstr "Plus d'information"
536
 
537
+ #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
538
  #: dashboard/publisher/adverts-error.php:19
539
  #: dashboard/publisher/adverts-main.php:20
540
  #: dashboard/publisher/groups-main.php:20
541
  msgid "Bulk Actions"
542
  msgstr "Actions en vrac"
543
 
544
+ #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
545
  #: dashboard/publisher/adverts-error.php:29
546
  #: dashboard/publisher/adverts-main.php:30
547
  #: dashboard/publisher/groups-main.php:24
548
  msgid "Go"
549
  msgstr "Aller"
550
 
551
+ #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
552
  #: dashboard/publisher/adverts-error.php:39
553
  #: dashboard/publisher/adverts-main.php:39
 
554
  #: dashboard/publisher/groups-main.php:32
555
  msgid "ID"
556
  msgstr "ID"
557
 
558
+ #: adrotate.php:388
559
  #, fuzzy
560
  msgid "Start"
561
  msgstr "Début / Fin"
562
 
563
+ #: adrotate.php:388
564
  msgid "End"
565
  msgstr ""
566
 
567
+ #: adrotate.php:389
568
  msgid "Ads"
569
  msgstr "Pubs"
570
 
571
+ #: adrotate.php:391
572
  #, fuzzy
573
  msgid "Max Impressions"
574
  msgstr "Nombre max de vues :"
575
 
576
+ #: adrotate.php:392
577
  #, fuzzy
578
  msgid "Max Clicks"
579
  msgstr "Nombre de clicks max :"
580
 
581
+ #: adrotate.php:422
582
  #, fuzzy
583
  msgid "No schedules created yet!"
584
  msgstr "Aucune pub n'a encore été créé!"
585
 
586
+ #: adrotate.php:427
587
  #, fuzzy
588
  msgid "Easily manage your schedules from here with AdRotate Pro."
589
  msgstr "Créer plusieurs calendriers pour chaque annonce avec AdRotate Pro."
590
 
591
+ #: adrotate.php:427 adrotate.php:490
592
  #, fuzzy
593
  msgid "Upgrade today!"
594
  msgstr "Mettre à jour aujourd'hui"
595
 
596
+ #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
597
+ #: dashboard/publisher/groups-edit.php:383
598
  msgid "Expires soon."
599
  msgstr "Expire bientôt."
600
 
601
+ #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
602
+ #: dashboard/publisher/groups-edit.php:384
603
  msgid "Has expired."
604
  msgstr "A expiré."
605
 
606
+ #: adrotate.php:452
607
  #, fuzzy
608
  msgid "Media Management available in AdRotate Pro"
609
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
610
 
611
+ #: adrotate.php:454
612
  msgid "Upload images to the AdRotate Pro banners folder from here."
613
  msgstr ""
614
 
615
+ #: adrotate.php:454
616
  msgid ""
617
  "This is useful if you use responsive adverts with multiple images or have "
618
  "HTML5 adverts containing multiple files."
619
  msgstr ""
620
 
621
+ #: adrotate.php:454
622
  #, fuzzy
623
  msgid "Media uploading and management is available in AdRotate Pro."
624
  msgstr "Cette fonctionalité est disponible dans AdRotate Pro"
625
 
626
+ #: adrotate.php:456
627
  msgid "Upload new file"
628
  msgstr ""
629
 
630
+ #: adrotate.php:457
631
  msgid "Accepted files:"
632
  msgstr ""
633
 
634
+ #: adrotate.php:457
635
  msgid "For HTML5 ads you can also upload html and javascript files."
636
  msgstr ""
637
 
638
+ #: adrotate.php:457
639
  msgid "Maximum size is 512Kb."
640
  msgstr ""
641
 
642
+ #: adrotate.php:457
643
  msgid "Important:"
644
  msgstr ""
645
 
646
+ #: adrotate.php:457
647
  msgid ""
648
  "Make sure your file has no spaces or special characters in the name. Replace "
649
  "spaces with a - or _."
650
  msgstr ""
651
 
652
+ #: adrotate.php:457
653
  msgid ""
654
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
655
  "file so it knows about the changed name. For example for the javascript file."
656
  msgstr ""
657
 
658
+ #: adrotate.php:460
659
  #, fuzzy
660
  msgid ""
661
  "For responsive adverts make sure the filename is in the following format; "
666
  "complet d'images de tailles différentes est recommendé si vous avez un site "
667
  "fluide."
668
 
669
+ #: adrotate.php:461
670
  msgid ""
671
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
672
  "filename instead of \".full\" for the various viewports."
675
  "\".1024\" dans le nom du fichier au lieu de \".full\" pour les différentes "
676
  "tailles d'écran."
677
 
678
+ #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
679
+ #: dashboard/publisher/groups-edit.php:316
680
  msgid "Example:"
681
  msgstr "Exemple :"
682
 
683
+ #: adrotate.php:462
684
  #, fuzzy
685
  msgid ""
686
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
689
  "image.full.jpg, image.320.jpg et image.768.jpg serviront la même publicité "
690
  "pour différentes tailles d'écran si le site est fluide. Nécessite jQuery."
691
 
692
+ #: adrotate.php:466
693
  msgid "Upload file"
694
  msgstr ""
695
 
696
+ #: adrotate.php:466
697
  msgid "Click only once per file!"
698
  msgstr ""
699
 
700
+ #: adrotate.php:469
701
  msgid "Available files in"
702
  msgstr ""
703
 
704
+ #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
705
  #: dashboard/publisher/groups-main.php:33
706
  msgid "Name"
707
  msgstr "Nom"
708
 
709
+ #: adrotate.php:475
710
  #, fuzzy
711
  msgid "Actions"
712
  msgstr "Actions en vrac"
713
 
714
+ #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
715
+ #: adrotate.php:484 adrotate.php:485 adrotate.php:486
716
  #: dashboard/publisher/adverts-disabled.php:22
717
  #: dashboard/publisher/adverts-error.php:21
718
  #: dashboard/publisher/adverts-main.php:22
719
  msgid "Delete"
720
  msgstr "Effacer"
721
 
722
+ #: adrotate.php:490
723
  msgid ""
724
  "Make sure the banner images are not in use by adverts when you delete them!"
725
  msgstr ""
726
 
727
+ #: adrotate.php:490
728
  #, fuzzy
729
  msgid "Manage your banner folder from here with AdRotate Pro."
730
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
731
 
732
+ #: adrotate.php:516
733
  msgid "AdRotate Settings"
734
  msgstr "Paramètres de AdRotate"
735
 
 
 
 
 
736
  #: dashboard/adrotatepro.php:20
737
  msgid "Satisfy your advertisers"
738
  msgstr "Comblez vos annonceurs"
925
  msgid "Adverts that need you"
926
  msgstr "Publicités qui ont besoin de votre attention"
927
 
928
+ #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
929
  #: dashboard/publisher/groups-main.php:34
930
  msgid "Adverts"
931
  msgstr "Publicités"
968
  msgstr ""
969
 
970
  #: dashboard/publisher/adverts-disabled.php:21
971
+ #: dashboard/publisher/adverts-edit.php:170
972
  msgid "Activate"
973
  msgstr "Activer"
974
 
985
  msgstr "Début / Fin"
986
 
987
  #: dashboard/publisher/adverts-disabled.php:37
988
+ #: dashboard/publisher/adverts-edit.php:110
989
  #: dashboard/publisher/adverts-error.php:41
990
  #: dashboard/publisher/adverts-main.php:41
991
  msgid "Title"
993
 
994
  #: dashboard/publisher/adverts-disabled.php:38
995
  #: dashboard/publisher/adverts-main.php:44
996
+ #: dashboard/publisher/groups-edit.php:329
997
  #: dashboard/publisher/groups-main.php:36
998
  msgid "Shown"
999
  msgstr "Montré"
1002
  #: dashboard/publisher/adverts-main.php:46
1003
  #: dashboard/publisher/adverts-report.php:36
1004
  #: dashboard/publisher/adverts-report.php:57
1005
+ #: dashboard/publisher/groups-edit.php:330
1006
  #: dashboard/publisher/groups-main.php:38
1007
  #: dashboard/publisher/groups-report.php:37
1008
  #: dashboard/publisher/groups-report.php:58
1044
  msgstr "Le code de la publicité ne peut être vide!"
1045
 
1046
  #: dashboard/publisher/adverts-edit.php:51
1047
+ msgid ""
1048
+ "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1049
+ "use!"
1050
  msgstr ""
1051
 
1052
  #: dashboard/publisher/adverts-edit.php:54
 
 
 
 
1053
  msgid ""
1054
+ "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1055
+ "use!"
1056
  msgstr ""
1057
 
1058
+ #: dashboard/publisher/adverts-edit.php:57
1059
  msgid ""
1060
  "There is a problem saving the image. Please reset your image and re-save the "
1061
  "ad!"
1062
  msgstr ""
1063
 
1064
+ #: dashboard/publisher/adverts-edit.php:60
 
 
 
 
1065
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1066
  msgstr ""
1067
 
1068
+ #: dashboard/publisher/adverts-edit.php:65
1069
  msgid ""
1070
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1071
  "the ad!"
1073
  "AdRotate ne peut pas trouver une erreur, mais l'annonce est marquée erronée, "
1074
  "essayez d'enregistrer votre publicité à nouveau!"
1075
 
1076
+ #: dashboard/publisher/adverts-edit.php:68
1077
  msgid "This ad is expired and currently not shown on your website!"
1078
  msgstr ""
1079
  "Cette publicité est expirée et ne figure actuellement pas sur votre site!"
1080
 
1081
+ #: dashboard/publisher/adverts-edit.php:71
1082
  msgid "The ad will expire in less than 2 days!"
1083
  msgstr "Cette publicité va expirer dans moins de 2 jours!"
1084
 
1085
+ #: dashboard/publisher/adverts-edit.php:74
1086
  msgid "This ad will expire in less than 7 days!"
1087
  msgstr "Cette publicité va expirer dans moins de 7 jours!"
1088
 
1089
+ #: dashboard/publisher/adverts-edit.php:77
1090
  msgid "This ad has been disabled and does not rotate on your site!"
1091
  msgstr "Cette publicité à été désactivée et ne tourne plus sur votre site!"
1092
 
1093
+ #: dashboard/publisher/adverts-edit.php:102
1094
  msgid "New Advert"
1095
  msgstr "Nouvelle pub"
1096
 
1097
+ #: dashboard/publisher/adverts-edit.php:104
1098
  msgid "Edit Advert"
1099
  msgstr "Modifier la pub"
1100
 
1101
+ #: dashboard/publisher/adverts-edit.php:116
1102
  msgid "AdCode"
1103
  msgstr ""
1104
 
1105
+ #: dashboard/publisher/adverts-edit.php:121
1106
  msgid "Basic Examples:"
1107
  msgstr "Exemples de base :"
1108
 
1109
+ #: dashboard/publisher/adverts-edit.php:128
1110
  msgid "Useful tags"
1111
  msgstr ""
1112
 
1113
+ #: dashboard/publisher/adverts-edit.php:130
1114
  msgid "Insert the advert ID Number."
1115
  msgstr ""
1116
 
1117
+ #: dashboard/publisher/adverts-edit.php:130
1118
+ msgid "Required when selecting a asset below."
1119
  msgstr ""
1120
 
1121
+ #: dashboard/publisher/adverts-edit.php:130
1122
  msgid "Insert the advert name."
1123
  msgstr ""
1124
 
1125
+ #: dashboard/publisher/adverts-edit.php:130
1126
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1127
  msgstr ""
1128
 
1129
+ #: dashboard/publisher/adverts-edit.php:130
1130
  msgid "Add inside the <a> tag to open advert in a new window."
1131
  msgstr ""
1132
 
1133
+ #: dashboard/publisher/adverts-edit.php:130
1134
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1135
  msgstr ""
1136
 
1137
+ #: dashboard/publisher/adverts-edit.php:130
1138
  msgid ""
1139
  "Place the cursor in your AdCode where you want to add any of these tags and "
1140
  "click to add it."
1141
  msgstr ""
1142
 
1143
+ #: dashboard/publisher/adverts-edit.php:135
1144
  msgid "Preview"
1145
  msgstr "En avant-première"
1146
 
1147
+ #: dashboard/publisher/adverts-edit.php:138
1148
  msgid ""
1149
  "Note: While this preview is an accurate one, it might look different then it "
1150
  "does on the website."
1152
  "NOTA BENE : Bien que cet aperçu soit précis, la publicité peut être "
1153
  "différente sur le site."
1154
 
1155
+ #: dashboard/publisher/adverts-edit.php:139
1156
  msgid ""
1157
  "This is because of CSS differences. Your themes CSS file is not active here!"
1158
  msgstr ""
1159
  "Les différences dans le CSS causent ces soucis. Le CSS de votre thème n'est "
1160
  "pas actif ici!"
1161
 
1162
+ #: dashboard/publisher/adverts-edit.php:144
1163
  msgid "Banner asset"
1164
  msgstr ""
1165
 
1166
+ #: dashboard/publisher/adverts-edit.php:147
1167
  msgid "WordPress media:"
1168
  msgstr ""
1169
 
1170
+ #: dashboard/publisher/adverts-edit.php:147
1171
  msgid "Select Banner"
1172
  msgstr "Choisir l'image"
1173
 
1174
+ #: dashboard/publisher/adverts-edit.php:149
1175
  msgid "- OR -"
1176
  msgstr "- OU -"
1177
 
1178
+ #: dashboard/publisher/adverts-edit.php:151
1179
  msgid "Banner folder:"
1180
  msgstr "Dossier de bannières :"
1181
 
1182
+ #: dashboard/publisher/adverts-edit.php:152
1183
  msgid "No image selected"
1184
  msgstr "Aucune image sélectionnée"
1185
 
1186
+ #: dashboard/publisher/adverts-edit.php:156
1187
+ msgid "Use %asset% in the adcode instead of the file path."
1188
  msgstr ""
1189
 
1190
+ #: dashboard/publisher/adverts-edit.php:156
1191
  msgid ""
1192
  "Use either the text field or the dropdown. If the textfield has content that "
1193
  "field has priority."
1195
  "Utilisez la zone de texte ou la liste déroulante. Si le champ de texte a une "
1196
  "valeur, ce champ a la priorité."
1197
 
1198
+ #: dashboard/publisher/adverts-edit.php:161
1199
+ #: dashboard/settings/statistics.php:17
1200
  msgid "Statistics"
1201
  msgstr "Statistiques"
1202
 
1203
+ #: dashboard/publisher/adverts-edit.php:163
1204
  msgid "Enable click and impression tracking for this advert."
1205
  msgstr ""
1206
 
1207
+ #: dashboard/publisher/adverts-edit.php:164
1208
  msgid ""
1209
  "Note: Clicktracking does not work for Javascript adverts such as those "
1210
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1211
  "always supported."
1212
  msgstr ""
1213
 
1214
+ #: dashboard/publisher/adverts-edit.php:174
1215
  msgid "Yes, this ad will be used"
1216
  msgstr "Oui, cette publicité sera utilisée"
1217
 
1218
+ #: dashboard/publisher/adverts-edit.php:175
1219
  msgid "No, do not show this ad anywhere"
1220
  msgstr "Non, cette publicité ne sera pas utilisée"
1221
 
1222
+ #: dashboard/publisher/adverts-edit.php:182
1223
  #: dashboard/publisher/adverts-main.php:114
1224
+ #: dashboard/publisher/groups-edit.php:71
1225
  #: dashboard/publisher/groups-main.php:89
1226
  msgid "Get more features with AdRotate Pro."
1227
  msgstr "Obtenez plus de fonctionalités avec AdRotate Pro."
1228
 
1229
+ #: dashboard/publisher/adverts-edit.php:185
1230
+ #: dashboard/publisher/adverts-edit.php:285
1231
+ #: dashboard/publisher/adverts-edit.php:408
1232
+ #: dashboard/publisher/adverts-edit.php:449
1233
  msgid "Save Advert"
1234
  msgstr "Sauvegarder la pub"
1235
 
1236
+ #: dashboard/publisher/adverts-edit.php:186
1237
+ #: dashboard/publisher/adverts-edit.php:286
1238
+ #: dashboard/publisher/adverts-edit.php:409
1239
+ #: dashboard/publisher/adverts-edit.php:450
1240
+ #: dashboard/publisher/groups-edit.php:150
1241
+ #: dashboard/publisher/groups-edit.php:297
1242
+ #: dashboard/publisher/groups-edit.php:389
1243
  msgid "Cancel"
1244
  msgstr "Annuller"
1245
 
1246
+ #: dashboard/publisher/adverts-edit.php:189
1247
+ #: dashboard/publisher/adverts-edit.php:391
1248
+ #: dashboard/publisher/groups-edit.php:132
1249
+ #: dashboard/publisher/groups-edit.php:279
1250
  msgid "Usage"
1251
  msgstr "Usage"
1252
 
1253
+ #: dashboard/publisher/adverts-edit.php:193
1254
+ #: dashboard/publisher/adverts-edit.php:395
1255
+ #: dashboard/publisher/groups-edit.php:136
1256
+ #: dashboard/publisher/groups-edit.php:283
1257
  msgid "Widget"
1258
  msgstr ""
1259
 
1260
+ #: dashboard/publisher/adverts-edit.php:194
1261
+ #: dashboard/publisher/adverts-edit.php:396
1262
  msgid ""
1263
+ "Drag the AdRotate widget to the sidebar where you want to place the advert "
1264
+ "and select the advert or the group the advert is in."
1265
  msgstr ""
1266
 
1267
+ #: dashboard/publisher/adverts-edit.php:197
1268
+ #: dashboard/publisher/adverts-edit.php:399
1269
+ #: dashboard/publisher/groups-edit.php:140
1270
+ #: dashboard/publisher/groups-edit.php:287
1271
  msgid "In a post or page"
1272
  msgstr ""
1273
 
1274
+ #: dashboard/publisher/adverts-edit.php:199
1275
+ #: dashboard/publisher/adverts-edit.php:401
1276
+ #: dashboard/publisher/groups-edit.php:142
1277
+ #: dashboard/publisher/groups-edit.php:289
1278
  msgid "Directly in a theme"
1279
  msgstr ""
1280
 
1281
+ #: dashboard/publisher/adverts-edit.php:205
1282
  msgid "Schedule your advert"
1283
  msgstr ""
1284
 
1285
+ #: dashboard/publisher/adverts-edit.php:209
1286
  msgid "Start date (day/month/year)"
1287
  msgstr ""
1288
 
1289
+ #: dashboard/publisher/adverts-edit.php:230
1290
  msgid "End date (day/month/year)"
1291
  msgstr ""
1292
 
1293
+ #: dashboard/publisher/adverts-edit.php:253
1294
  msgid "Start time (hh:mm)"
1295
  msgstr ""
1296
 
1297
+ #: dashboard/publisher/adverts-edit.php:260
1298
  msgid "End time (hh:mm)"
1299
  msgstr ""
1300
 
1301
+ #: dashboard/publisher/adverts-edit.php:270
1302
  msgid "Maximum Clicks"
1303
  msgstr ""
1304
 
1305
+ #: dashboard/publisher/adverts-edit.php:271
1306
+ #: dashboard/publisher/adverts-edit.php:273
1307
  msgid "Leave empty or 0 to skip this."
1308
  msgstr "Laissez le champs vide ou mettrez 0 pour l'ignorer."
1309
 
1310
+ #: dashboard/publisher/adverts-edit.php:272
1311
  msgid "Maximum Impressions"
1312
  msgstr ""
1313
 
1314
+ #: dashboard/publisher/adverts-edit.php:277
1315
  msgid "Important"
1316
  msgstr ""
1317
 
1318
+ #: dashboard/publisher/adverts-edit.php:278
1319
  msgid ""
1320
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1321
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1322
  "14:00 hours. 6AM is 6:00 hours."
1323
  msgstr ""
1324
 
1325
+ #: dashboard/publisher/adverts-edit.php:282
1326
  msgid ""
1327
  "Create multiple and more advanced schedules for each advert with AdRotate "
1328
  "Pro."
1329
  msgstr ""
1330
 
1331
+ #: dashboard/publisher/adverts-edit.php:282
1332
+ #: dashboard/publisher/adverts-edit.php:345
1333
+ #: dashboard/publisher/adverts-edit.php:389
1334
+ #: dashboard/publisher/groups-edit.php:196
1335
  msgid "Upgrade today"
1336
  msgstr "Mettre à jour aujourd'hui"
1337
 
1338
+ #: dashboard/publisher/adverts-edit.php:289
1339
+ #: dashboard/publisher/groups-edit.php:153
1340
  msgid "Advanced"
1341
  msgstr "Avancé"
1342
 
1343
+ #: dashboard/publisher/adverts-edit.php:290
1344
  msgid "Everything below is optional."
1345
  msgstr "Tous les paramètres ci-dessous sont optionels."
1346
 
1347
+ #: dashboard/publisher/adverts-edit.php:290
1348
+ msgid "Available in AdRotate Pro!"
1349
  msgstr ""
1350
 
1351
+ #: dashboard/publisher/adverts-edit.php:295
1352
+ #: dashboard/publisher/adverts-main.php:42
1353
+ #: dashboard/publisher/groups-edit.php:332
1354
+ msgid "Weight"
1355
+ msgstr "Importance"
1356
+
1357
+ #: dashboard/publisher/adverts-edit.php:298
1358
+ msgid "Few impressions"
1359
  msgstr ""
1360
 
1361
+ #: dashboard/publisher/adverts-edit.php:303
1362
+ msgid "Less than average"
1363
  msgstr ""
1364
 
1365
+ #: dashboard/publisher/adverts-edit.php:308
1366
+ msgid "Normal impressions"
1367
  msgstr ""
1368
 
1369
+ #: dashboard/publisher/adverts-edit.php:313
1370
+ msgid "More than average"
1371
  msgstr ""
1372
 
1373
+ #: dashboard/publisher/adverts-edit.php:318
1374
+ msgid "Many impressions"
1375
  msgstr ""
1376
 
1377
+ #: dashboard/publisher/adverts-edit.php:323
1378
+ msgid "Mobile"
1379
  msgstr ""
1380
 
1381
+ #: dashboard/publisher/adverts-edit.php:325
1382
+ msgid "Computers"
1383
+ msgstr ""
1384
 
1385
+ #: dashboard/publisher/adverts-edit.php:328
1386
+ msgid "Smartphones"
 
 
1387
  msgstr ""
1388
 
1389
+ #: dashboard/publisher/adverts-edit.php:331
1390
+ msgid "Tablets"
1391
+ msgstr ""
 
 
1392
 
1393
+ #: dashboard/publisher/adverts-edit.php:334
1394
  msgid ""
1395
+ "Also enable mobile support in the group this advert goes in or these are "
1396
+ "ignored."
1397
  msgstr ""
1398
 
1399
+ #: dashboard/publisher/adverts-edit.php:338
1400
+ #: dashboard/publisher/groups-edit.php:190
1401
  msgid "Sortorder"
1402
  msgstr ""
1403
 
1404
+ #: dashboard/publisher/adverts-edit.php:340
1405
+ #: dashboard/publisher/groups-edit.php:192
1406
  msgid "For administrative purposes set a sortorder."
1407
  msgstr "Pour des raisons administratives définir un ordre de tri."
1408
 
1409
+ #: dashboard/publisher/adverts-edit.php:340
1410
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1411
  msgstr ""
1412
  "Laissez vide ou mettre 0 pour ignorer ceci. Par défaut, la valeur sera celle "
1413
  "de l'ID de la publicité."
1414
 
1415
+ #: dashboard/publisher/adverts-edit.php:345
1416
  msgid ""
1417
  "With AdRotate Pro you can easily select which devices the advert should show "
1418
  "on!"
1419
  msgstr ""
1420
 
1421
+ #: dashboard/publisher/adverts-edit.php:347
1422
  msgid "Geo Targeting in AdRotate Pro"
1423
  msgstr ""
1424
 
1425
+ #: dashboard/publisher/adverts-edit.php:348
1426
  msgid ""
1427
  "Assign the advert to a group and enable that group to use Geo Targeting."
1428
  msgstr ""
1429
 
1430
+ #: dashboard/publisher/adverts-edit.php:352
1431
  msgid "Cities/States"
1432
  msgstr ""
1433
 
1434
+ #: dashboard/publisher/adverts-edit.php:355
1435
  msgid ""
1436
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1437
  "states ISO codes are supported)"
1438
  msgstr ""
1439
 
1440
+ #: dashboard/publisher/adverts-edit.php:355
1441
  msgid ""
1442
  "AdRotate does not check the validity of names so make sure you spell them "
1443
  "correctly!"
1444
  msgstr ""
1445
 
1446
+ #: dashboard/publisher/adverts-edit.php:359
1447
  msgid "Countries"
1448
  msgstr ""
1449
 
1450
+ #: dashboard/publisher/adverts-edit.php:384
1451
  #, fuzzy
1452
  msgid "Select the countries you want the adverts to show in."
1453
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
1454
 
1455
+ #: dashboard/publisher/adverts-edit.php:384
1456
  msgid "Cities take priority and will be filtered first."
1457
  msgstr ""
1458
 
1459
+ #: dashboard/publisher/adverts-edit.php:389
1460
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1461
  msgstr ""
1462
 
1463
+ #: dashboard/publisher/adverts-edit.php:413
1464
  msgid "Select Groups"
1465
  msgstr "Choisir groupes"
1466
 
1467
+ #: dashboard/publisher/adverts-edit.php:418
1468
  msgid "ID - Name"
1469
  msgstr "ID - Nom"
1470
 
1471
+ #: dashboard/publisher/adverts-edit.php:428
1472
  #: dashboard/publisher/groups-main.php:60
1473
+ #: dashboard/settings/geotargeting.php:49
1474
  msgid "Default"
1475
  msgstr "Par défaut"
1476
 
1477
+ #: dashboard/publisher/adverts-edit.php:429
1478
  #: dashboard/publisher/groups-main.php:61
1479
  msgid "Dynamic"
1480
  msgstr "Dynamique"
1481
 
1482
+ #: dashboard/publisher/adverts-edit.php:429
1483
  #: dashboard/publisher/groups-main.php:61
1484
  msgid "second rotation"
1485
  msgstr "deuxième rotation"
1486
 
1487
+ #: dashboard/publisher/adverts-edit.php:430
1488
  #: dashboard/publisher/groups-main.php:62
1489
  msgid "Block"
1490
  msgstr "Bloc"
1491
 
1492
+ #: dashboard/publisher/adverts-edit.php:430
1493
  #: dashboard/publisher/groups-main.php:62
1494
  msgid "grid"
1495
  msgstr "grille"
1496
 
1497
+ #: dashboard/publisher/adverts-edit.php:431
1498
+ #: dashboard/publisher/groups-edit.php:198
1499
  #: dashboard/publisher/groups-main.php:63
1500
  msgid "Post Injection"
1501
  msgstr "Injection dans l'article"
1502
 
1503
+ #: dashboard/publisher/adverts-edit.php:432
1504
  msgid "Geolocation"
1505
  msgstr "Géolocalisation"
1506
 
1507
+ #: dashboard/publisher/adverts-edit.php:438
1508
+ #: dashboard/publisher/groups-edit.php:57
1509
  #: dashboard/publisher/groups-main.php:70
1510
  msgid "Mode"
1511
  msgstr "Mode"
1545
  msgstr "Pour 7 jours"
1546
 
1547
  #: dashboard/publisher/adverts-error.php:71
1548
+ #: dashboard/publisher/groups-edit.php:382
1549
  msgid "Configuration errors."
1550
  msgstr "Erreurs de configuration."
1551
 
1557
  msgid "Export to XML"
1558
  msgstr ""
1559
 
 
 
 
 
 
1560
  #: dashboard/publisher/adverts-main.php:45
1561
  #: dashboard/publisher/adverts-main.php:47
1562
  #: dashboard/publisher/groups-main.php:37
1594
  msgid "Monthly overview of clicks and impressions"
1595
  msgstr "Synthèse mensuelle de clics et d'impressions"
1596
 
1597
+ #: dashboard/publisher/adverts-report.php:64
1598
+ #: dashboard/publisher/groups-report.php:65
1599
+ #: dashboard/settings/notifications.php:60
1600
+ #: dashboard/settings/notifications.php:90
1601
+ msgid "Note:"
1602
+ msgstr "Note :"
1603
+
1604
  #: dashboard/publisher/adverts-report.php:64
1605
  #: dashboard/publisher/groups-report.php:65
1606
  msgid ""
1618
  msgid "Edit Group"
1619
  msgstr "Modifier Groupe"
1620
 
1621
+ #: dashboard/publisher/groups-edit.php:60
1622
  msgid "Default - Show one ad at a time"
1623
  msgstr "Par defaut - Montrer une pub "
1624
 
1625
+ #: dashboard/publisher/groups-edit.php:61
1626
  msgid "Dynamic Mode - Show a different ad every few seconds"
1627
  msgstr "Mode dynamique - Montrer une pub différente à une intervale précise"
1628
 
1629
+ #: dashboard/publisher/groups-edit.php:62
1630
  msgid "Block Mode - Show a block of adverts"
1631
  msgstr ""
1632
 
1633
+ #: dashboard/publisher/groups-edit.php:66
1634
  #, fuzzy
1635
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1636
  msgstr ""
1637
  "En mode Dynamique, jQuery et jQuery Groups doivent être chargés. Vous pouvez "
1638
  "activer cette options dans les réglages de AdRotate."
1639
 
1640
+ #: dashboard/publisher/groups-edit.php:73
1641
+ #: dashboard/publisher/groups-edit.php:100
1642
  msgid "Dynamic and Block Mode"
1643
  msgstr "Mode Dynamique et en Bloc"
1644
 
1645
+ #: dashboard/publisher/groups-edit.php:74
1646
  msgid "Only required if your group is in Dynamic or Block mode."
1647
  msgstr "Uniquement requis si votre groupe utilise le mode Dynamique ou Bloc."
1648
 
1649
+ #: dashboard/publisher/groups-edit.php:78
1650
  msgid "Block size"
1651
  msgstr ""
1652
 
1653
+ #: dashboard/publisher/groups-edit.php:84
1654
  msgid "rows"
1655
  msgstr "lignes"
1656
 
1657
+ #: dashboard/publisher/groups-edit.php:88
1658
  msgid "columns"
1659
  msgstr "colonnes"
1660
 
1661
+ #: dashboard/publisher/groups-edit.php:91
1662
  msgid "Block Mode"
1663
  msgstr "Mode en Bloc"
1664
 
1665
+ #: dashboard/publisher/groups-edit.php:91
1666
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1667
  msgstr ""
1668
 
1669
+ #: dashboard/publisher/groups-edit.php:95
1670
  msgid "Advert size"
1671
  msgstr ""
1672
 
1673
+ #: dashboard/publisher/groups-edit.php:97
1674
  msgid "pixel(s) wide"
1675
  msgstr "largeur en pixels"
1676
 
1677
+ #: dashboard/publisher/groups-edit.php:97
1678
  msgid "pixel(s) high."
1679
  msgstr "hauteur en pixels"
1680
 
1681
+ #: dashboard/publisher/groups-edit.php:100
1682
  msgid ""
1683
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1684
  "recommended). Default: 125/125."
1685
  msgstr ""
1686
 
1687
+ #: dashboard/publisher/groups-edit.php:104
1688
  msgid "Automated refresh"
1689
  msgstr "Rafraîchissement automatique"
1690
 
1691
+ #: dashboard/publisher/groups-edit.php:123
1692
  msgid "seconds."
1693
  msgstr "secondes."
1694
 
1695
+ #: dashboard/publisher/groups-edit.php:126
1696
  msgid "Dynamic Mode"
1697
  msgstr "Mode dynamique"
1698
 
1699
+ #: dashboard/publisher/groups-edit.php:126
1700
  msgid ""
1701
  "Load a new advert in this interval without reloading the page. Default: 6."
1702
  msgstr ""
1703
  "Chargez une nouvelle publicité sans recharger le page après cette "
1704
  "intervalle. La valeur par défaut est : 6."
1705
 
1706
+ #: dashboard/publisher/groups-edit.php:137
1707
+ #: dashboard/publisher/groups-edit.php:284
1708
  msgid ""
1709
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1710
  "Adverts\" and enter ID"
1711
  msgstr ""
1712
 
1713
+ #: dashboard/publisher/groups-edit.php:149
1714
+ #: dashboard/publisher/groups-edit.php:296
1715
+ #: dashboard/publisher/groups-edit.php:388
1716
  msgid "Save Group"
1717
  msgstr "Sauvegarder groupe"
1718
 
1719
+ #: dashboard/publisher/groups-edit.php:157
1720
  msgid "Advert Margin"
1721
  msgstr "Marges autour de la pub"
1722
 
1723
+ #: dashboard/publisher/groups-edit.php:159
1724
  msgid "pixel(s)"
1725
  msgstr "pixel(s)"
1726
 
1727
+ #: dashboard/publisher/groups-edit.php:162
1728
  msgid "A transparent area outside the advert in pixels. Default: 0."
1729
  msgstr ""
1730
  "Une marge transparente en dehors de la publicité en pixels. Valeur par "
1731
  "défaut : 0."
1732
 
1733
+ #: dashboard/publisher/groups-edit.php:162
1734
  msgid "Set to 0 to disable."
1735
  msgstr "Mettre 0 pour désactiver."
1736
 
1737
+ #: dashboard/publisher/groups-edit.php:162
1738
  msgid "Margins are automatically disabled for blocks where required."
1739
  msgstr ""
1740
 
1741
+ #: dashboard/publisher/groups-edit.php:166
1742
  msgid "Align the group"
1743
  msgstr ""
1744
 
1745
+ #: dashboard/publisher/groups-edit.php:169
1746
  msgid "None (Default)"
1747
  msgstr ""
1748
 
1749
+ #: dashboard/publisher/groups-edit.php:170
1750
  msgid "Left"
1751
  msgstr ""
1752
 
1753
+ #: dashboard/publisher/groups-edit.php:171
1754
  msgid "Right"
1755
  msgstr ""
1756
 
1757
+ #: dashboard/publisher/groups-edit.php:172
1758
  msgid "Center"
1759
  msgstr ""
1760
 
1761
+ #: dashboard/publisher/groups-edit.php:176
1762
  msgid ""
1763
  "Align the group in your post or page. Using 'center' may affect your margin "
1764
  "setting. Not every theme supports this feature."
1765
  msgstr ""
1766
 
1767
+ #: dashboard/publisher/groups-edit.php:180
1768
+ #: dashboard/settings/advertisers.php:38
1769
  msgid "Geo Targeting"
1770
  msgstr ""
1771
 
1772
+ #: dashboard/publisher/groups-edit.php:181
1773
  msgid "Enable Geo Targeting for this group."
1774
  msgstr ""
1775
 
1776
+ #: dashboard/publisher/groups-edit.php:182
1777
  msgid "Do not forget to tell the adverts for which areas they should show."
1778
  msgstr ""
1779
 
1780
+ #: dashboard/publisher/groups-edit.php:185
1781
  msgid "Mobile support"
1782
  msgstr ""
1783
 
1784
+ #: dashboard/publisher/groups-edit.php:186
1785
  msgid "Enable mobile support for this group."
1786
  msgstr ""
1787
 
1788
+ #: dashboard/publisher/groups-edit.php:187
1789
  msgid "Do not forget to put at least one mobile advert in this group."
1790
  msgstr ""
1791
 
1792
+ #: dashboard/publisher/groups-edit.php:192
1793
  msgid "Leave empty or 0 to skip this. Will default to group id."
1794
  msgstr ""
1795
  "Laissez vide ou mettez à zéro pour l'ignorer. Sera mis à la valeur par "
1796
  "défaut de l'identifiant du groupe."
1797
 
1798
+ #: dashboard/publisher/groups-edit.php:196
1799
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1800
  msgstr ""
1801
 
1802
+ #: dashboard/publisher/groups-edit.php:201
1803
  msgid "In categories?"
1804
  msgstr ""
1805
 
1806
+ #: dashboard/publisher/groups-edit.php:205
1807
+ #: dashboard/publisher/groups-edit.php:243
1808
+ #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1809
  msgid "Disabled"
1810
  msgstr "Désactivé"
1811
 
1812
+ #: dashboard/publisher/groups-edit.php:206
1813
+ #: dashboard/publisher/groups-edit.php:244
1814
  msgid "Before content"
1815
  msgstr "Avant le contenu"
1816
 
1817
+ #: dashboard/publisher/groups-edit.php:207
1818
+ #: dashboard/publisher/groups-edit.php:245
1819
  msgid "After content"
1820
  msgstr "Après le contenu"
1821
 
1822
+ #: dashboard/publisher/groups-edit.php:208
1823
+ #: dashboard/publisher/groups-edit.php:246
1824
  msgid "Before and after content"
1825
  msgstr "Avant et après le contenu"
1826
 
1827
+ #: dashboard/publisher/groups-edit.php:209
1828
+ #: dashboard/publisher/groups-edit.php:247
1829
  msgid "Inside the content..."
1830
  msgstr ""
1831
 
1832
+ #: dashboard/publisher/groups-edit.php:215
1833
+ #: dashboard/publisher/groups-edit.php:253
1834
  msgid "after the middle paragraph"
1835
  msgstr ""
1836
 
1837
+ #: dashboard/publisher/groups-edit.php:216
1838
+ #: dashboard/publisher/groups-edit.php:254
1839
  msgid "after the 1st paragraph"
1840
  msgstr ""
1841
 
1842
+ #: dashboard/publisher/groups-edit.php:217
1843
+ #: dashboard/publisher/groups-edit.php:255
1844
  msgid "after the 2nd paragraph"
1845
  msgstr ""
1846
 
1847
+ #: dashboard/publisher/groups-edit.php:218
1848
+ #: dashboard/publisher/groups-edit.php:256
1849
  msgid "after the 3rd paragraph"
1850
  msgstr ""
1851
 
1852
+ #: dashboard/publisher/groups-edit.php:219
1853
+ #: dashboard/publisher/groups-edit.php:257
1854
  msgid "after the 4th paragraph"
1855
  msgstr ""
1856
 
1857
+ #: dashboard/publisher/groups-edit.php:220
1858
+ #: dashboard/publisher/groups-edit.php:258
1859
  msgid "after the 5th paragraph"
1860
  msgstr ""
1861
 
1862
+ #: dashboard/publisher/groups-edit.php:221
1863
+ #: dashboard/publisher/groups-edit.php:259
1864
  msgid "after the 6th paragraph"
1865
  msgstr ""
1866
 
1867
+ #: dashboard/publisher/groups-edit.php:222
1868
+ #: dashboard/publisher/groups-edit.php:260
1869
  msgid "after the 7th paragraph"
1870
  msgstr ""
1871
 
1872
+ #: dashboard/publisher/groups-edit.php:223
1873
+ #: dashboard/publisher/groups-edit.php:261
1874
  msgid "after the 8th paragraph"
1875
  msgstr ""
1876
 
1877
+ #: dashboard/publisher/groups-edit.php:229
1878
  msgid "Which categories?"
1879
  msgstr "Quelles catégories?"
1880
 
1881
+ #: dashboard/publisher/groups-edit.php:234
1882
  msgid "Click the categories posts you want the adverts to show in."
1883
  msgstr ""
1884
  "Choisir les articles des catégories dans lesquelles vous voulez intégrer les "
1885
  "pulicités."
1886
 
1887
+ #: dashboard/publisher/groups-edit.php:239
1888
  msgid "In pages?"
1889
  msgstr ""
1890
 
1891
+ #: dashboard/publisher/groups-edit.php:267
1892
  msgid "Which pages?"
1893
  msgstr "Quelles pages?"
1894
 
1895
+ #: dashboard/publisher/groups-edit.php:272
1896
  msgid "Click the pages you want the adverts to show in."
1897
  msgstr "Choisir les pages dans lesquelles vous voulez intégrer les pulicités."
1898
 
1899
+ #: dashboard/publisher/groups-edit.php:300
1900
  msgid "Wrapper code"
1901
  msgstr "Code enveloppant"
1902
 
1903
+ #: dashboard/publisher/groups-edit.php:301
1904
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1905
  msgstr ""
1906
 
1907
+ #: dashboard/publisher/groups-edit.php:305
1908
  msgid "Before advert"
1909
  msgstr ""
1910
 
1911
+ #: dashboard/publisher/groups-edit.php:309
1912
  msgid "Options:"
1913
  msgstr "Options :"
1914
 
1915
+ #: dashboard/publisher/groups-edit.php:313
1916
  msgid "After advert"
1917
  msgstr ""
1918
 
1919
+ #: dashboard/publisher/groups-edit.php:322
1920
  msgid "Select adverts"
1921
  msgstr ""
1922
 
1923
+ #: dashboard/publisher/groups-edit.php:327
1924
  msgid "Choose adverts"
1925
  msgstr ""
1926
 
1927
+ #: dashboard/publisher/groups-edit.php:333
1928
  msgid "Visible until"
1929
  msgstr "Visible jusqu'à"
1930
 
1931
+ #: dashboard/publisher/groups-edit.php:375
1932
  msgid "No adverts created!"
1933
  msgstr ""
1934
 
1948
  msgid "This action can not be undone!"
1949
  msgstr "Ceci ne peux pas être défait!"
1950
 
1951
+ #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1952
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
1953
  msgid "OK to continue, CANCEL to stop."
1954
  msgstr "Pour continuer, cliquez Ok, autrement, cliquez sur Annuler."
1955
 
1961
  msgid "Statistics for group"
1962
  msgstr "Statistiques pour le groupe"
1963
 
1964
+ #: dashboard/settings/advertisers.php:16
1965
  msgid "Advertisers - Available in AdRotate Pro"
1966
  msgstr ""
1967
 
1968
+ #: dashboard/settings/advertisers.php:17
1969
  msgid "Enable advertisers so they can review and manage their own ads."
1970
  msgstr ""
1971
 
1972
+ #: dashboard/settings/advertisers.php:20
1973
  msgid "Enable Advertisers"
1974
  msgstr ""
1975
 
1976
+ #: dashboard/settings/advertisers.php:22
1977
  msgid "Allow adverts to be coupled to users (Advertisers)."
1978
  msgstr ""
1979
 
1980
+ #: dashboard/settings/advertisers.php:26
1981
  msgid "Edit/update adverts"
1982
  msgstr ""
1983
 
1984
+ #: dashboard/settings/advertisers.php:28
1985
  msgid "Allow advertisers to add new or edit their adverts."
1986
  msgstr ""
1987
 
1988
+ #: dashboard/settings/advertisers.php:32
1989
+ msgid "Mobile adverts"
1990
+ msgstr ""
1991
+
1992
+ #: dashboard/settings/advertisers.php:34
1993
+ msgid "Allow advertisers to specify on which devices their ads will show."
1994
+ msgstr ""
1995
+
1996
+ #: dashboard/settings/advertisers.php:40
1997
  msgid ""
1998
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
1999
  "be enabled, too."
2000
  msgstr ""
2001
 
2002
+ #: dashboard/settings/advertisers.php:44
2003
  msgid "Advertiser role"
2004
  msgstr ""
2005
 
2006
+ #: dashboard/settings/advertisers.php:46
2007
  msgid "Create a seperate user role for your advertisers."
2008
  msgstr ""
2009
 
2010
+ #: dashboard/settings/advertisers.php:47
2011
  msgid ""
2012
  "Don't forget to give these users access to their advertiser dashboard via "
2013
  "the Roles tab."
2014
  msgstr ""
2015
 
2016
+ #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2017
+ #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2018
+ #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2019
+ #: dashboard/settings/statistics.php:73
2020
+ msgid "Update Options"
2021
+ msgstr "Mettre à jour les options"
2022
+
2023
+ #: dashboard/settings/general.php:17
2024
  msgid "General Settings"
2025
  msgstr ""
2026
 
2027
+ #: dashboard/settings/general.php:18
2028
  msgid "General settings for AdRotate."
2029
  msgstr ""
2030
 
2031
+ #: dashboard/settings/general.php:18 dashboard/settings/statistics.php:18
2032
  msgid "Some options are only available in AdRotate Pro!"
2033
  msgstr ""
2034
 
2035
+ #: dashboard/settings/general.php:21
2036
  msgid "Shortcode in widgets"
2037
  msgstr ""
2038
 
2039
+ #: dashboard/settings/general.php:22
2040
  msgid ""
2041
  "Enable this option to if your theme does not support shortcodes in the "
2042
  "WordPress text widget."
2043
  msgstr ""
2044
 
2045
+ #: dashboard/settings/general.php:25
2046
  msgid "Disable live preview"
2047
  msgstr ""
2048
 
2049
+ #: dashboard/settings/general.php:26
2050
  msgid ""
2051
  "Enable this option if you have faulty adverts that overflow their designated "
2052
  "area while creating/editing adverts."
2053
  msgstr ""
2054
 
2055
+ #: dashboard/settings/general.php:29
2056
  msgid "Disable dynamic mode"
2057
  msgstr ""
2058
 
2059
+ #: dashboard/settings/general.php:30
2060
  msgid ""
2061
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2062
  "you notice skipping or jumpy content."
2063
  msgstr ""
2064
 
2065
+ #: dashboard/settings/general.php:33
2066
  msgid "Load jQuery"
2067
  msgstr "Utilisez jQuery"
2068
 
2069
+ #: dashboard/settings/general.php:34
2070
  msgid ""
2071
  "Enable this option if your theme does not load jQuery. jQuery is required "
2072
  "for dynamic groups, statistics and some other features."
2073
  msgstr ""
2074
 
2075
+ #: dashboard/settings/general.php:37
2076
  msgid "Load scripts in footer?"
2077
  msgstr ""
2078
 
2079
+ #: dashboard/settings/general.php:38
2080
  msgid ""
2081
  "Enable this option if you want to load all AdRotate Javascripts in the "
2082
  "footer of your site."
2083
  msgstr ""
2084
 
2085
+ #: dashboard/settings/general.php:41
2086
  msgid "Adblock disguise"
2087
  msgstr ""
2088
 
2089
+ #: dashboard/settings/general.php:43
2090
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2091
  msgstr ""
2092
 
2093
+ #: dashboard/settings/general.php:44
2094
  msgid ""
2095
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2096
  msgstr ""
2097
 
2098
+ #: dashboard/settings/general.php:44
2099
  msgid ""
2100
  "To also apply this feature to widgets, use a text widget with a shortcode "
2101
  "instead of the AdRotate widget."
2102
  msgstr ""
2103
 
2104
+ #: dashboard/settings/general.php:44
2105
  msgid ""
2106
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2107
  "feature will have little effect!"
2108
  msgstr ""
2109
 
2110
+ #: dashboard/settings/general.php:49
2111
  msgid "Banner Folder"
2112
  msgstr ""
2113
 
2114
+ #: dashboard/settings/general.php:50
2115
  msgid "Set a location where your banner images will be stored."
2116
  msgstr ""
2117
 
2118
+ #: dashboard/settings/general.php:53
2119
  msgid "Location"
2120
  msgstr ""
2121
 
2122
+ #: dashboard/settings/general.php:55
2123
  msgid "(Default: wp-content/banners/)."
2124
  msgstr ""
2125
 
2126
+ #: dashboard/settings/general.php:56
2127
  msgid ""
2128
  "To try and trick ad blockers you could set the folder to something crazy "
2129
  "like:"
2130
  msgstr ""
2131
 
2132
+ #: dashboard/settings/general.php:57
2133
  msgid ""
2134
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2135
  "will show errors when the folder is missing."
2136
  msgstr ""
2137
 
2138
+ #: dashboard/settings/general.php:62
2139
  msgid "Bot filter"
2140
  msgstr "Filtre de robots"
2141
 
2142
+ #: dashboard/settings/general.php:63
2143
  msgid "The bot filter is used for the AdRotate stats tracker."
2144
  msgstr ""
2145
 
2146
+ #: dashboard/settings/general.php:66
2147
  msgid "User-Agent Filter"
2148
  msgstr "Filtrage par User-Agent"
2149
 
2150
+ #: dashboard/settings/general.php:69
2151
  msgid ""
2152
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2153
  msgstr ""
2154
 
2155
+ #: dashboard/settings/general.php:70
2156
  msgid ""
2157
  "Keep in mind that this might give false positives. The word 'fire' also "
2158
  "matches 'firefox', but not vice-versa. So be careful!"
2159
  msgstr ""
2160
 
2161
+ #: dashboard/settings/general.php:71
2162
  msgid ""
2163
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2164
  "characters are stripped out."
2165
  msgstr ""
2166
 
2167
+ #: dashboard/settings/general.php:72
2168
  msgid ""
2169
  "Additionally to the list specified here, empty User-Agents are blocked as "
2170
  "well."
2172
  "En outre de la liste spécifiée ci-dessus, les User-Agent vides seront aussi "
2173
  "bloqués."
2174
 
2175
+ #: dashboard/settings/general.php:72
2176
  msgid "Learn more about"
2177
  msgstr "En savoir plus sur"
2178
 
2179
+ #: dashboard/settings/general.php:72
2180
  msgid "user-agents"
2181
  msgstr "user-agents"
2182
 
2183
+ #: dashboard/settings/geotargeting.php:17
2184
  msgid "Geo Targeting - Available in AdRotate Pro"
2185
  msgstr ""
2186
 
2187
+ #: dashboard/settings/geotargeting.php:18
2188
  msgid "Target certain areas in the world for better advertising oppurtunities."
2189
  msgstr ""
2190
 
2191
+ #: dashboard/settings/geotargeting.php:21
2192
  msgid "Which Geo Service"
2193
  msgstr ""
2194
 
2195
+ #: dashboard/settings/geotargeting.php:28
2196
+ msgid "Experimental"
2197
+ msgstr ""
2198
+
2199
+ #: dashboard/settings/geotargeting.php:31
2200
+ msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2201
  msgstr ""
2202
 
2203
+ #: dashboard/settings/geotargeting.php:32
2204
+ #: dashboard/settings/geotargeting.php:36
2205
+ #: dashboard/settings/geotargeting.php:40
2206
+ msgid "Supports:"
2207
+ msgstr ""
2208
+
2209
+ #: dashboard/settings/geotargeting.php:33
2210
+ #: dashboard/settings/geotargeting.php:37
2211
+ #: dashboard/settings/geotargeting.php:41
2212
+ msgid "Scalability:"
2213
  msgstr ""
2214
 
2215
  #: dashboard/settings/geotargeting.php:33
2216
+ msgid "Suitable for small to medium websites."
2217
+ msgstr ""
2218
+
2219
+ #: dashboard/settings/geotargeting.php:35
2220
+ msgid ""
2221
+ "The most accurate geo targeting you can get for only $20 USD per 50000 "
2222
+ "lookups."
2223
+ msgstr ""
2224
+
2225
+ #: dashboard/settings/geotargeting.php:37
2226
+ msgid "Suitable for any size website as long as you have lookups."
2227
+ msgstr ""
2228
+
2229
+ #: dashboard/settings/geotargeting.php:39
2230
+ msgid "Basic geolocation included in every CloudFlare account."
2231
+ msgstr ""
2232
+
2233
+ #: dashboard/settings/geotargeting.php:41
2234
+ msgid "Suitable for any size website."
2235
+ msgstr ""
2236
+
2237
+ #: dashboard/settings/geotargeting.php:46
2238
  msgid "Geo Cookie Lifespan"
2239
  msgstr ""
2240
 
2241
+ #: dashboard/settings/geotargeting.php:55
2242
  msgid "Hours."
2243
  msgstr ""
2244
 
2245
+ #: dashboard/settings/geotargeting.php:56
2246
  msgid ""
2247
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2248
  "cookie last? A longer period is less accurate for mobile users but may "
2249
  "reduce the usage of your lookups drastically."
2250
  msgstr ""
2251
 
2252
+ #: dashboard/settings/geotargeting.php:62
2253
  msgid "MaxMind City/Country"
2254
  msgstr ""
2255
 
2256
+ #: dashboard/settings/geotargeting.php:65
2257
  msgid "Username/Email"
2258
  msgstr ""
2259
 
2260
+ #: dashboard/settings/geotargeting.php:69
2261
  msgid "Password/License Key"
2262
  msgstr ""
2263
 
2264
+ #: dashboard/settings/maintenance.php:16
2265
  msgid "Maintenance"
2266
  msgstr "Maintenance"
2267
 
2268
+ #: dashboard/settings/maintenance.php:17
2269
  msgid ""
2270
  "Use these functions when you notice your database is slow, unresponsive and "
2271
  "sluggish."
2272
  msgstr ""
2273
 
2274
+ #: dashboard/settings/maintenance.php:20 dashboard/settings/maintenance.php:22
2275
  msgid "Optimize Database"
2276
  msgstr "Optimiser la base de données"
2277
 
2278
+ #: dashboard/settings/maintenance.php:22
2279
  msgid "You are about to optimize the AdRotate database."
2280
  msgstr "Vous allez optimiser la base de données de Adrotate."
2281
 
2282
+ #: dashboard/settings/maintenance.php:22
2283
  msgid "Did you make a backup of your database?"
2284
  msgstr "Avez-vous fait une sauvegarde de votre base de données?"
2285
 
2286
+ #: dashboard/settings/maintenance.php:22
2287
  msgid ""
2288
  "This may take a moment and may cause your website to respond slow "
2289
  "temporarily!"
2291
  "Cela peut prendre un moment et peut causer à votre site un ralentissement "
2292
  "temporaire!"
2293
 
2294
+ #: dashboard/settings/maintenance.php:23
2295
  msgid "Cleans up overhead data in the AdRotate tables."
2296
  msgstr "Efface les données de surdébit dans les tables de AdRotate."
2297
 
2298
+ #: dashboard/settings/maintenance.php:24
2299
  msgid ""
2300
  "Overhead data is accumulated garbage resulting from many changes you've "
2301
  "made. This can vary from nothing to hundreds of KiB of data."
2304
  "changements que vous avez fait. Cela peut varier de rien à des centaines de "
2305
  "KB de données."
2306
 
2307
+ #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
2308
  msgid "Clean-up Database"
2309
  msgstr "Nettoyer la base de données"
2310
 
2311
+ #: dashboard/settings/maintenance.php:30
2312
  msgid ""
2313
  "You are about to clean up your database. This may delete expired schedules "
2314
  "and older statistics."
2316
  "Vous êtes sur le point de nettoyer votre base de données. Cela peut "
2317
  "supprimer des calendriers périmés et des vieilles statistiques.."
2318
 
2319
+ #: dashboard/settings/maintenance.php:30
2320
  msgid "Are you sure you want to continue?"
2321
  msgstr "Etes-vous certains de vouloir continuer?"
2322
 
2323
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
2324
  msgid "This might take a while and may slow down your site during this action!"
2325
  msgstr ""
2326
  "Ceci peut prendre un certain temps et peut ralentir votre site pendant cet "
2327
  "interval!"
2328
 
2329
+ #: dashboard/settings/maintenance.php:31
2330
  msgid "Delete stats older than 356 days (Optional)."
2331
  msgstr "Supprimer les statistiques de plus de 365 jours (optionel)."
2332
 
2333
+ #: dashboard/settings/maintenance.php:32
2334
  msgid ""
2335
  "AdRotate creates empty records when you start making ads, groups or "
2336
  "schedules. In rare occasions these records are faulty."
2337
  msgstr ""
2338
 
2339
+ #: dashboard/settings/maintenance.php:32
2340
  msgid ""
2341
  "If you made an ad, group or schedule that does not save when you make it use "
2342
  "this button to delete those empty records."
2343
  msgstr ""
2344
 
2345
+ #: dashboard/settings/maintenance.php:32
2346
  msgid ""
2347
  "Additionally you can clean up old schedules and/or statistics. This will "
2348
  "improve the speed of your site."
2349
  msgstr ""
2350
 
2351
+ #: dashboard/settings/maintenance.php:36
2352
  msgid "Re-evaluate Ads"
2353
  msgstr "Re-évaluer les publicités"
2354
 
2355
+ #: dashboard/settings/maintenance.php:38
2356
  msgid "Re-evaluate all ads"
2357
  msgstr "Re-évaluer toutes les publicités"
2358
 
2359
+ #: dashboard/settings/maintenance.php:38
2360
  msgid "You are about to check all ads for errors."
2361
  msgstr "Vous allez véifier l'état de toutes les publicités."
2362
 
2363
+ #: dashboard/settings/maintenance.php:39
2364
  msgid ""
2365
  "This will apply all evaluation rules to all ads to see if any error slipped "
2366
  "in. Normally you should not need this feature."
2369
  "voir si une erreur existe. Vous ne devriez pas avoir besoin de cette "
2370
  "fonctionalité."
2371
 
2372
+ #: dashboard/settings/maintenance.php:43
2373
  msgid ""
2374
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2375
  "database. They only apply to your ads/groups and stats. Not to other "
2382
  "is not a valid point in any case."
2383
  msgstr ""
2384
 
2385
+ #: dashboard/settings/maintenance.php:45
2386
  msgid "Troubleshooting"
2387
  msgstr "Diagnostic de dépannage"
2388
 
2389
+ #: dashboard/settings/maintenance.php:46
2390
  msgid ""
2391
  "The below options are not meant for normal use and are only there for "
2392
  "developers to review saved settings or how ads are selected. These can be "
2394
  "SHOULD BE LEFT UNCHECKED!!"
2395
  msgstr ""
2396
 
2397
+ #: dashboard/settings/maintenance.php:49
2398
  msgid "Developer Debug"
2399
  msgstr "Debuggage de développeur"
2400
 
2401
+ #: dashboard/settings/maintenance.php:51
2402
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2403
  msgstr ""
2404
 
2405
+ #: dashboard/settings/maintenance.php:52
2406
  msgid "View advert specs and (some) stats in the dashboard."
2407
  msgstr ""
2408
 
2409
+ #: dashboard/settings/maintenance.php:53
2410
  msgid ""
2411
  "Disable timers for clicks and impressions and enable a alert window for "
2412
  "clicktracking."
2414
  "Désactivez les minuteurs pour les clicks et les impressions et activez une "
2415
  "fenêtre d'alerte pour le suivi des clicks."
2416
 
2417
+ #: dashboard/settings/maintenance.php:54
2418
  msgid "Temporarily disable encryption on the redirect url."
2419
  msgstr "Désactiver temporairement le chiffrement sur l'url de redirection."
2420
 
2421
+ #: dashboard/settings/maintenance.php:59
2422
  msgid "Status and Versions"
2423
  msgstr ""
2424
 
 
 
 
 
 
 
 
 
2425
  #: dashboard/settings/maintenance.php:62
 
 
 
 
 
 
 
 
2426
  msgid "Current status of adverts"
2427
  msgstr "Etat actuel des publicités"
2428
 
2429
+ #: dashboard/settings/maintenance.php:63
2430
  msgid "Normal"
2431
  msgstr "Normal"
2432
 
2433
+ #: dashboard/settings/maintenance.php:63
2434
  msgid "Error"
2435
  msgstr "Erreur"
2436
 
2437
+ #: dashboard/settings/maintenance.php:63
2438
  msgid "Expired"
2439
  msgstr "Expiré"
2440
 
2441
+ #: dashboard/settings/maintenance.php:63
2442
  msgid "Expires Soon"
2443
  msgstr "Expire bientôt"
2444
 
2445
+ #: dashboard/settings/maintenance.php:63
2446
  msgid "Unknown"
2447
  msgstr ""
2448
 
2449
+ #: dashboard/settings/maintenance.php:66
2450
  msgid "Banners/assets Folder"
2451
  msgstr ""
2452
 
2453
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2454
  msgid "Exists and appears writable"
2455
  msgstr ""
2456
 
2457
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2458
  msgid "Not writable or does not exist"
2459
  msgstr ""
2460
 
2461
+ #: dashboard/settings/maintenance.php:70
2462
+ msgid "Reports Folder"
2463
+ msgstr ""
2464
+
2465
  #: dashboard/settings/maintenance.php:76
2466
+ msgid "Advert evaluation"
2467
+ msgstr ""
2468
+
2469
+ #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2470
+ msgid "Not scheduled! Re-activate the plugin from the plugins page."
2471
+ msgstr ""
2472
+
2473
+ #: dashboard/settings/maintenance.php:78
2474
+ msgid "Trackerdata cleanup"
2475
+ msgstr ""
2476
+
2477
+ #: dashboard/settings/maintenance.php:83
2478
+ msgid "Internal Versions"
2479
+ msgstr ""
2480
+
2481
+ #: dashboard/settings/maintenance.php:84
2482
+ msgid ""
2483
+ "Unless you experience database issues or a warning shows below, these "
2484
+ "numbers are not really relevant for troubleshooting. Support may ask for "
2485
+ "them to verify your database status."
2486
+ msgstr ""
2487
+
2488
+ #: dashboard/settings/maintenance.php:87
2489
+ msgid "AdRotate version"
2490
+ msgstr ""
2491
+
2492
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2493
+ msgid "Current:"
2494
+ msgstr ""
2495
+
2496
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2497
+ msgid "Should be:"
2498
  msgstr ""
2499
 
2500
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2501
+ msgid "Previous:"
2502
+ msgstr ""
2503
 
2504
+ #: dashboard/settings/maintenance.php:89
2505
+ msgid "Database version"
2506
+ msgstr ""
2507
 
2508
+ #: dashboard/settings/misc.php:16
2509
  msgid "Miscellaneous"
2510
  msgstr "Divers"
2511
 
2512
+ #: dashboard/settings/misc.php:19
2513
  msgid "Widget alignment"
2514
  msgstr "Alignement du Widget"
2515
 
2516
+ #: dashboard/settings/misc.php:20
2517
  msgid ""
2518
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2519
  "not always help!)"
2521
  "Cochez cette case si votre widget ne s'aligne pas à la barre latèrale de "
2522
  "votre thème. Cette fonction peux ne pas régler le soucis!"
2523
 
2524
+ #: dashboard/settings/misc.php:23
2525
  msgid "Widget padding"
2526
  msgstr "Marge interne du Widget"
2527
 
2528
+ #: dashboard/settings/misc.php:24
2529
  msgid ""
2530
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2531
  "not always work!)"
2533
  "Activez cette option pour supprimer la marge (espace vide) autour des "
2534
  "publicités dans les widgets. Ceci ne fonctionne pas toujours!"
2535
 
2536
+ #: dashboard/settings/misc.php:28
2537
  msgid "NOTICE:"
2538
  msgstr ""
2539
 
2540
+ #: dashboard/settings/misc.php:29
2541
  msgid ""
2542
  "You have enabled W3 Total Caching support but not defined the security hash."
2543
  msgstr ""
2544
 
2545
+ #: dashboard/settings/misc.php:29
2546
  msgid ""
2547
  "AdRotate has generated the following line for you to add to your wp-config."
2548
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2549
  "add this line, check out the following guide;"
2550
  msgstr ""
2551
 
2552
+ #: dashboard/settings/misc.php:29
2553
  msgid "Set up W3 Total Caching"
2554
  msgstr ""
2555
 
2556
+ #: dashboard/settings/misc.php:33
2557
  msgid "W3 Total Caching"
2558
  msgstr "W3 Total Caching"
2559
 
2560
+ #: dashboard/settings/misc.php:34
2561
  msgid "Check this box if you use W3 Total Caching on your site."
2562
  msgstr "Cochez cette case si vous utilisez W3 Total Caching sur votre site."
2563
 
2564
+ #: dashboard/settings/misc.php:38
2565
  msgid ""
2566
  "It may take a while for the ad to start rotating. The caching plugin needs "
2567
  "to refresh the cache. This can take up to a week if not done manually."
2571
  "actualiser son contenu. Cela peut prendre jusqu'à une semaine si ce n'est "
2572
  "pas fait manuellement."
2573
 
2574
+ #: dashboard/settings/misc.php:38
2575
  msgid ""
2576
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2577
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2580
  "widget Adrotate. Si vous utilisez du code PHP, vous devez envelopper votre "
2581
  "PHP dans le code d'exclusion vous-même."
2582
 
2583
+ #: dashboard/settings/notifications.php:18
2584
  msgid "Notifications"
2585
  msgstr ""
2586
 
2587
+ #: dashboard/settings/notifications.php:19
2588
  msgid "Set up who gets notifications if ads need your attention."
2589
  msgstr ""
2590
 
2591
+ #: dashboard/settings/notifications.php:22
2592
  msgid "How to notify"
2593
  msgstr ""
2594
 
2595
+ #: dashboard/settings/notifications.php:24
2596
  msgid "Dashboard banner."
2597
  msgstr ""
2598
 
2599
+ #: dashboard/settings/notifications.php:25
2600
  msgid "Email message."
2601
  msgstr ""
2602
 
2603
+ #: dashboard/settings/notifications.php:26
2604
  msgid "Push notifications to your smartphone."
2605
  msgstr ""
2606
 
2607
+ #: dashboard/settings/notifications.php:27
2608
  msgid ""
2609
  "Push notifications are delivered through Pushover, a notification service "
2610
  "for Android and iOS"
2611
  msgstr ""
2612
 
2613
+ #: dashboard/settings/notifications.php:27
2614
  msgid ""
2615
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2616
  "information can be found on the pushover website;"
2617
  msgstr ""
2618
 
2619
+ #: dashboard/settings/notifications.php:31
2620
  msgid "Test notification"
2621
  msgstr ""
2622
 
2623
+ #: dashboard/settings/notifications.php:33
2624
  msgid "Test"
2625
  msgstr ""
2626
 
2627
+ #: dashboard/settings/notifications.php:33
2628
  msgid ""
2629
  "Send a test notification to enabled methods. Before you test, save the "
2630
  "options first!"
2631
  msgstr ""
2632
 
2633
+ #: dashboard/settings/notifications.php:38
2634
+ msgid "Dashboard Banner"
2635
  msgstr ""
2636
 
2637
+ #: dashboard/settings/notifications.php:39
2638
  msgid ""
2639
  "These go in a dashboard banner visible to all users with access to AdRotate "
2640
  "on every WordPress dashboard page."
2641
  msgstr ""
2642
 
2643
+ #: dashboard/settings/notifications.php:42
2644
+ #: dashboard/settings/notifications.php:54
2645
+ #: dashboard/settings/notifications.php:84
2646
  msgid "What"
2647
  msgstr ""
2648
 
2649
+ #: dashboard/settings/notifications.php:44
2650
  msgid "Expired adverts."
2651
  msgstr ""
2652
 
2653
+ #: dashboard/settings/notifications.php:45
2654
  msgid "Almost expired adverts."
2655
  msgstr ""
2656
 
2657
+ #: dashboard/settings/notifications.php:50
2658
+ msgid "Email Message"
2659
  msgstr ""
2660
 
2661
+ #: dashboard/settings/notifications.php:51
2662
+ msgid ""
2663
+ "Receive email notifications about what is happening with your AdRotate setup."
2664
  msgstr ""
2665
 
2666
+ #: dashboard/settings/notifications.php:56
2667
+ #: dashboard/settings/notifications.php:86
2668
+ msgid "Daily digest of any advert status other than normal."
2669
  msgstr ""
2670
 
2671
+ #: dashboard/settings/notifications.php:57
2672
+ #: dashboard/settings/notifications.php:87
2673
+ msgid "When you are running out of Geo Targeting Lookups."
 
2674
  msgstr ""
2675
 
2676
+ #: dashboard/settings/notifications.php:58
2677
+ #: dashboard/settings/notifications.php:88
2678
+ msgid "Any advertiser saving an advert in your moderation queue."
 
2679
  msgstr ""
2680
 
2681
+ #: dashboard/settings/notifications.php:59
2682
+ #: dashboard/settings/notifications.php:89
2683
+ msgid "A moderator approved an advert from the moderation queue."
2684
  msgstr ""
2685
 
2686
+ #: dashboard/settings/notifications.php:60
2687
+ #: dashboard/settings/notifications.php:90
2688
+ msgid "A moderator rejected an advert from the moderation queue."
 
2689
  msgstr ""
2690
 
2691
+ #: dashboard/settings/notifications.php:60
2692
+ #: dashboard/settings/notifications.php:90
2693
+ msgid ""
2694
+ "If you have a lot of activity with many advertisers adding/changing adverts "
2695
+ "you may get a lot of messages!"
2696
  msgstr ""
2697
 
2698
+ #: dashboard/settings/notifications.php:60
2699
  msgid ""
2700
+ "Sending out a lot of email is sometimes seen as automated mailing and deemed "
2701
+ "spammy. This may result in automated filters such as those used in services "
2702
+ "like Google Gmail and Microsoft Hotmail/Outlook.com blocking your server. "
2703
+ "Make sure you whitelist the sending address in your email account once you "
2704
+ "start receiving notifications!"
2705
  msgstr ""
2706
 
2707
+ #: dashboard/settings/notifications.php:65
2708
+ msgid "Publishers"
2709
  msgstr ""
2710
 
2711
+ #: dashboard/settings/notifications.php:68
2712
+ msgid ""
2713
+ "Messages are sent once every 24 hours. Maximum of 5 addresses. Comma "
2714
+ "separated. This field may not be empty!"
2715
  msgstr ""
2716
 
2717
  #: dashboard/settings/notifications.php:72
2718
+ msgid "Advertisers"
2719
  msgstr ""
2720
 
2721
+ #: dashboard/settings/notifications.php:75
2722
+ msgid ""
2723
+ "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2724
+ "This field may not be empty!"
2725
  msgstr ""
2726
 
2727
+ #: dashboard/settings/notifications.php:80
2728
+ msgid "Push Notifications"
2729
  msgstr ""
2730
 
2731
+ #: dashboard/settings/notifications.php:81
2732
  msgid ""
2733
+ "Receive information about what is happening with your AdRotate setup on your "
2734
+ "smartphone via Pushover."
2735
  msgstr ""
2736
 
2737
+ #: dashboard/settings/notifications.php:90
2738
+ msgid ""
2739
+ "Pushover has a monthly limit of 7500 messages, this should be plenty. If you "
2740
+ "run out, you will not receive push notifications until the quota is reset! "
2741
+ "Every message AdRotate sends, regardless of the number of receiving devices, "
2742
+ "counts as one message."
2743
+ msgstr ""
2744
+
2745
+ #: dashboard/settings/notifications.php:95
2746
  msgid "User Key"
2747
  msgstr ""
2748
 
2749
+ #: dashboard/settings/notifications.php:97
2750
  msgid "Get your user token"
2751
  msgstr ""
2752
 
2753
+ #: dashboard/settings/notifications.php:97
2754
+ #: dashboard/settings/notifications.php:103
2755
  msgid "here"
2756
  msgstr ""
2757
 
2758
+ #: dashboard/settings/notifications.php:101
2759
  msgid "Api Token"
2760
  msgstr ""
2761
 
2762
+ #: dashboard/settings/notifications.php:103
2763
  msgid "Create your"
2764
  msgstr ""
2765
 
2766
+ #: dashboard/settings/notifications.php:103
2767
  msgid "App"
2768
  msgstr ""
2769
 
2770
+ #: dashboard/settings/notifications.php:103
2771
  msgid "and get your API token"
2772
  msgstr ""
2773
 
2774
+ #: dashboard/settings/roles.php:17
2775
  msgid "Roles"
2776
  msgstr ""
2777
 
2778
+ #: dashboard/settings/roles.php:18
2779
  msgid "Who has access to what?"
2780
  msgstr "Qui a accès à quoi?"
2781
 
2782
+ #: dashboard/settings/roles.php:21
2783
  msgid "Manage/Add/Edit adverts"
2784
  msgstr "Gérer/Ajouter/Modifier les publicités"
2785
 
2786
+ #: dashboard/settings/roles.php:25
2787
  msgid "Role to see and add/edit ads."
2788
  msgstr "Rôle pour voir et gérer/modifier les publicités."
2789
 
2790
+ #: dashboard/settings/roles.php:29
2791
  msgid "Delete/Reset adverts"
2792
  msgstr "Supprimer/Mettre à zéro les publicités"
2793
 
2794
+ #: dashboard/settings/roles.php:33
2795
  msgid "Role to delete ads and reset stats."
2796
  msgstr "Rôle pour supprimer les publicités et mettre à zéro les statistiques."
2797
 
2798
+ #: dashboard/settings/roles.php:37
2799
  msgid "Manage/Add/Edit groups"
2800
  msgstr "Gérer/Ajouter/Modifier les groupes"
2801
 
2802
+ #: dashboard/settings/roles.php:41
2803
  msgid "Role to see and add/edit groups."
2804
  msgstr "Rôle pour voir et ajouter/modifier les groupes."
2805
 
2806
+ #: dashboard/settings/roles.php:45
2807
  msgid "Delete groups"
2808
  msgstr "Effacer les groups"
2809
 
2810
+ #: dashboard/settings/roles.php:49
2811
  msgid "Role to delete groups."
2812
  msgstr "Rôle pour supprimer les groupes."
2813
 
2814
+ #: dashboard/settings/statistics.php:18
2815
  msgid "Track statistics for your adverts."
2816
  msgstr ""
2817
 
2818
+ #: dashboard/settings/statistics.php:21
2819
  msgid "How to track stats"
2820
  msgstr ""
2821
 
2822
+ #: dashboard/settings/statistics.php:30
2823
  msgid "Tracks impressions and clicks internally"
2824
  msgstr ""
2825
 
2826
+ #: dashboard/settings/statistics.php:30 dashboard/settings/statistics.php:32
2827
+ #: dashboard/settings/statistics.php:34
2828
  msgid "manual"
2829
  msgstr ""
2830
 
2831
+ #: dashboard/settings/statistics.php:31
2832
  msgid ""
2833
  "Click and Impression recording, Click and impression limits, impression "
2834
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2835
  "will only track impressions."
2836
  msgstr ""
2837
 
2838
+ #: dashboard/settings/statistics.php:32 dashboard/settings/statistics.php:34
2839
  msgid "In AdRotate Pro!"
2840
  msgstr ""
2841
 
2842
+ #: dashboard/settings/statistics.php:32
2843
  msgid ""
2844
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2845
  "attributes"
2846
  msgstr ""
2847
 
2848
+ #: dashboard/settings/statistics.php:33
2849
  msgid ""
2850
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2851
  "Contents."
2852
  msgstr ""
2853
 
2854
+ #: dashboard/settings/statistics.php:34
2855
  msgid ""
2856
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2857
  "uses onClick() and onload() in adverts"
2858
  msgstr ""
2859
 
2860
+ #: dashboard/settings/statistics.php:35
2861
  msgid ""
2862
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2863
  "Banner."
2864
  msgstr ""
2865
 
2866
+ #: dashboard/settings/statistics.php:41
2867
  msgid "Internal Tracker"
2868
  msgstr ""
2869
 
2870
+ #: dashboard/settings/statistics.php:42
2871
  msgid ""
2872
  "The settings below are for the internal tracker and have no effect when "
2873
  "using Piwik/Google Analytics."
2874
  msgstr ""
2875
 
2876
+ #: dashboard/settings/statistics.php:45
2877
  msgid "Logged in impressions"
2878
  msgstr ""
2879
 
2880
+ #: dashboard/settings/statistics.php:47
2881
  msgid "Track impressions from logged in users."
2882
  msgstr ""
2883
 
2884
+ #: dashboard/settings/statistics.php:51
2885
  msgid "Logged in clicks"
2886
  msgstr ""
2887
 
2888
+ #: dashboard/settings/statistics.php:53
2889
  msgid "Track clicks from logged in users."
2890
  msgstr ""
2891
 
2892
+ #: dashboard/settings/statistics.php:57
2893
  msgid "Impression timer"
2894
  msgstr ""
2895
 
2896
+ #: dashboard/settings/statistics.php:59 dashboard/settings/statistics.php:66
2897
  msgid "Seconds."
2898
  msgstr "Secondes."
2899
 
2900
+ #: dashboard/settings/statistics.php:60
2901
  msgid "Default: 60."
2902
  msgstr ""
2903
 
2904
+ #: dashboard/settings/statistics.php:60
2905
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2906
  msgstr ""
2907
 
2908
+ #: dashboard/settings/statistics.php:64
2909
  msgid "Click timer"
2910
  msgstr ""
2911
 
2912
+ #: dashboard/settings/statistics.php:67
2913
  msgid "Default: 86400."
2914
  msgstr ""
2915
 
2916
+ #: dashboard/settings/statistics.php:67
2917
  msgid ""
2918
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2919
  msgstr ""
2920
 
2921
+ #~ msgid "Enable responsive support for this advert."
2922
+ #~ msgstr "Activer le support réactif pour cette publicité."
2923
+
2924
+ #~ msgid "Current version:"
2925
+ #~ msgstr "Version actuelle :"
2926
+
2927
+ #~ msgid "Previous version:"
2928
+ #~ msgstr "Version antérieure :"
2929
+
2930
+ #~ msgid "Current database version:"
2931
+ #~ msgstr "Version actuelle de la base de données :"
2932
+
2933
+ #~ msgid "Previous database version:"
2934
+ #~ msgstr "Version antérieure de la base de données :"
2935
+
2936
+ #~ msgid "Not scheduled!"
2937
+ #~ msgstr "Pas planifié!"
2938
+
2939
+ #~ msgid "Clean Trackerdata next run:"
2940
+ #~ msgstr "Nettoyer les données du Trackerdata à la prochaine exécution :"
2941
+
2942
  #~ msgid "Get more features with AdRotate Pro"
2943
  #~ msgstr "Obtenez plus de fonctionalités avec AdRotate Pro"
2944
 
language/adrotate-ja.mo CHANGED
Binary file
language/adrotate-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-30 14:27+0800\n"
6
- "PO-Revision-Date: 2016-05-30 14:27+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"
@@ -16,115 +16,115 @@ msgstr ""
16
  "X-Generator: Poedit 1.8.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:844
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
- #: adrotate-functions.php:847
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
- #: adrotate-functions.php:896
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
- #: adrotate-functions.php:900
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
- #: adrotate-functions.php:904
36
  msgid "Ad(s) deleted"
37
  msgstr "広告削除"
38
 
39
- #: adrotate-functions.php:908
40
  msgid "Group deleted"
41
  msgstr "グループの削除"
42
 
43
- #: adrotate-functions.php:912
44
  msgid "Ad(s) statistics reset"
45
  msgstr "広告の統計情報初期化"
46
 
47
- #: adrotate-functions.php:916
48
  msgid "Ad(s) renewed"
49
  msgstr "広告の更新"
50
 
51
- #: adrotate-functions.php:920
52
  msgid "Ad(s) deactivated"
53
  msgstr "広告の利用停止"
54
 
55
- #: adrotate-functions.php:924
56
  msgid "Ad(s) activated"
57
  msgstr "広告の利用可能化"
58
 
59
- #: adrotate-functions.php:928
60
  msgid "Group including it's Ads deleted"
61
  msgstr "削除された広告がグループに含まれています。"
62
 
63
- #: adrotate-functions.php:932
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "エクスポートオプション"
67
 
68
- #: adrotate-functions.php:937
69
  msgid "Settings saved"
70
  msgstr "設定を保存します。"
71
 
72
- #: adrotate-functions.php:941
73
  msgid "Database optimized"
74
  msgstr "データベースの最適化"
75
 
76
- #: adrotate-functions.php:945
77
  msgid "Database repaired"
78
  msgstr "データベースの修復"
79
 
80
- #: adrotate-functions.php:949
81
  #, fuzzy
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr "広告"
84
 
85
- #: adrotate-functions.php:953
86
  msgid "Empty database records removed"
87
  msgstr "空のデータベースは削除されました。"
88
 
89
- #: adrotate-functions.php:958
90
  msgid "Action prohibited"
91
  msgstr "今の操作は禁止されました。"
92
 
93
- #: adrotate-functions.php:962
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:966
100
  msgid "No data found in selected time period"
101
  msgstr "選ばれた期間が見つかりません。"
102
 
103
- #: adrotate-functions.php:970
104
  msgid "Database can only be optimized or cleaned once every hour"
105
  msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
106
 
107
- #: adrotate-functions.php:974
108
  msgid "Form can not be (partially) empty!"
109
  msgstr ""
110
 
111
- #: adrotate-functions.php:978
112
  msgid "No ads found."
113
  msgstr ""
114
 
115
- #: adrotate-functions.php:982
116
  msgid "Unexpected error"
117
  msgstr ""
118
 
119
- #: adrotate-manage-publisher.php:678
120
  msgid "AdRotate Advertiser"
121
  msgstr ""
122
 
123
- #: adrotate-output.php:574
124
  msgid "Oh no! Something went wrong!"
125
  msgstr ""
126
 
127
- #: adrotate-output.php:575
128
  #, fuzzy
129
  msgid ""
130
  "WordPress was unable to verify the authenticity of the url you have clicked. "
@@ -134,28 +134,28 @@ msgstr ""
134
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
135
  "さい。英語ですが。"
136
 
137
- #: adrotate-output.php:576
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:577
145
  #, fuzzy
146
  msgid "Contact support if the issue persists:"
147
  msgstr ""
148
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
149
  "さい。"
150
 
151
- #: adrotate-output.php:592
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:594
159
  #, fuzzy
160
  msgid ""
161
  "Error, Ad is not available at this time due to schedule/geolocation "
@@ -164,30 +164,30 @@ msgstr ""
164
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
165
  "を再度保存してください!"
166
 
167
- #: adrotate-output.php:601 adrotate-output.php:603
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:609
174
  #, fuzzy
175
  msgid "Error, no Ad ID set! Check your syntax!"
176
  msgstr "広告 - 広告IDを使ってください。"
177
 
178
- #: adrotate-output.php:615
179
  #, fuzzy
180
  msgid "Error, no group ID set! Check your syntax!"
181
  msgstr "広告グループ - グループIDを使ってください。"
182
 
183
- #: adrotate-output.php:620
184
  #, fuzzy
185
  msgid "Error, group does not exist! Check your syntax!"
186
  msgstr ""
187
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
188
  "クスをオンにします。"
189
 
190
- #: adrotate-output.php:626
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,224 +195,224 @@ msgstr ""
195
  "AdRotateのデータベーステーブルにエラーが発生しています。プラグインを一度削除"
196
  "して、再登録して下さい。"
197
 
198
- #: adrotate-output.php:626
199
  msgid "If this does not solve the issue please seek support at"
200
  msgstr ""
201
  "もし、この問題が解決しない場合は以下のサポートサイトで解決法を探してみてくだ"
202
  "さい。"
203
 
204
- #: adrotate-output.php:632
205
  msgid "An unknown error occured."
206
  msgstr "理解できないエラーが起こっています。"
207
 
208
- #: adrotate-output.php:651 adrotate-output.php:654 adrotate-output.php:658
209
- #: adrotate-output.php:663 adrotate-output.php:666 adrotate-output.php:669
210
  msgid "Check adverts"
211
  msgstr ""
212
 
213
- #: adrotate-output.php:674
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:677
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:682
226
  msgid "Your AdRotate Banner folder is not writable or does not exist."
227
  msgstr ""
228
 
229
- #: adrotate-output.php:722 dashboard/adrotatepro.php:99
230
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
231
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
232
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
233
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
234
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
235
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
236
- #: dashboard/settings/geotargeting.php:25
237
  #, fuzzy
238
  msgid "Buy now"
239
  msgstr "継続する場合は対応して下さい。"
240
 
241
- #: adrotate-output.php:723
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:723
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:723
254
  msgid "Thank you for your purchase!"
255
  msgstr ""
256
 
257
- #: adrotate-output.php:784
258
  msgid ""
259
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
260
  "this menu. Check out the"
261
  msgstr ""
262
 
263
- #: adrotate-output.php:784
264
  msgid "manuals"
265
  msgstr "マニュアル(英語サイト)"
266
 
267
- #: adrotate-output.php:784 adrotate-output.php:851
268
  msgid "and"
269
  msgstr ""
270
 
271
- #: adrotate-output.php:784
272
  #, fuzzy
273
  msgid "forums"
274
  msgstr "フォーラム"
275
 
276
- #: adrotate-output.php:814
277
  #, fuzzy
278
  msgid "Useful Links"
279
  msgstr "役に立つ情報"
280
 
281
- #: adrotate-output.php:815
282
  msgid "Useful links to learn more about AdRotate"
283
  msgstr ""
284
 
285
- #: adrotate-output.php:817
286
  msgid "AdRotate website"
287
  msgstr ""
288
 
289
- #: adrotate-output.php:818
290
  #, fuzzy
291
  msgid "Getting Started With AdRotate"
292
  msgstr ""
293
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
294
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
295
 
296
- #: adrotate-output.php:819
297
  #, fuzzy
298
  msgid "AdRotate manuals"
299
  msgstr "AdRotate Blog"
300
 
301
- #: adrotate-output.php:820
302
  #, fuzzy
303
  msgid "AdRotate Support Forum"
304
  msgstr "AdRotate Blog"
305
 
306
- #: adrotate-output.php:843
307
  #, fuzzy
308
  msgid "Help AdRotate Grow"
309
  msgstr "AdRotate Blog"
310
 
311
- #: adrotate-output.php:844
312
  msgid "Follow Arnan on Facebook"
313
  msgstr ""
314
 
315
- #: adrotate-output.php:851
316
  msgid ""
317
  "A lot of users only think to review AdRotate when something goes wrong while "
318
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
319
  msgstr ""
320
 
321
- #: adrotate-output.php:851
322
  msgid "If you find AdRotate useful please leave your honest"
323
  msgstr ""
324
 
325
- #: adrotate-output.php:851
326
  msgid "rating"
327
  msgstr ""
328
 
329
- #: adrotate-output.php:851
330
  #, fuzzy
331
  msgid "review"
332
  msgstr "全般レポートを見れる権限"
333
 
334
- #: adrotate-output.php:851
335
  msgid "on WordPress.org to help AdRotate grow in a positive way"
336
  msgstr ""
337
 
338
- #: adrotate-output.php:884 dashboard/settings/notifications.php:44
339
- #: dashboard/settings/notifications.php:64
340
  #, fuzzy
341
  msgid "Available in AdRotate Pro"
342
  msgstr "AdRotate Blog"
343
 
344
- #: adrotate-output.php:884
345
  #, fuzzy
346
  msgid "More information..."
347
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
348
 
349
- #: adrotate-output.php:885
350
  #, fuzzy
351
  msgid "This feature is available in AdRotate Pro"
352
  msgstr "この機能は使いません。"
353
 
354
- #: adrotate-output.php:885
355
  #, fuzzy
356
  msgid "Learn more"
357
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
358
 
359
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
360
- #: dashboard/publisher/adverts-edit.php:241
361
  msgid "January"
362
  msgstr "1月"
363
 
364
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
365
- #: dashboard/publisher/adverts-edit.php:242
366
  msgid "February"
367
  msgstr "2月"
368
 
369
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
370
- #: dashboard/publisher/adverts-edit.php:243
371
  msgid "March"
372
  msgstr "3月"
373
 
374
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
375
- #: dashboard/publisher/adverts-edit.php:244
376
  msgid "April"
377
  msgstr "4月"
378
 
379
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
380
- #: dashboard/publisher/adverts-edit.php:245
381
  msgid "May"
382
  msgstr "5月"
383
 
384
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
385
- #: dashboard/publisher/adverts-edit.php:246
386
  msgid "June"
387
  msgstr "6月"
388
 
389
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
390
- #: dashboard/publisher/adverts-edit.php:247
391
  msgid "July"
392
  msgstr "7月"
393
 
394
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
395
- #: dashboard/publisher/adverts-edit.php:248
396
  msgid "August"
397
  msgstr "8月"
398
 
399
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
400
- #: dashboard/publisher/adverts-edit.php:249
401
  msgid "September"
402
  msgstr "9月"
403
 
404
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
405
- #: dashboard/publisher/adverts-edit.php:250
406
  msgid "October"
407
  msgstr "10月"
408
 
409
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
410
- #: dashboard/publisher/adverts-edit.php:251
411
  msgid "November"
412
  msgstr "11月"
413
 
414
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
415
- #: dashboard/publisher/adverts-edit.php:252
416
  msgid "December"
417
  msgstr "12月"
418
 
@@ -476,287 +476,282 @@ msgstr "広告ブロック - ブロックIDを使ってください。"
476
  msgid "Fill in the ID of the type you want to display!"
477
  msgstr "表示したいタイプのIDを入力してください!"
478
 
479
- #: adrotate.php:105
480
  #, fuzzy
481
  msgid "General Info"
482
  msgstr "一般設定"
483
 
484
- #: adrotate.php:106
485
  #, fuzzy
486
  msgid "AdRotate Pro"
487
  msgstr "AdRotate Blog"
488
 
489
- #: adrotate.php:107
490
  msgid "Manage Adverts"
491
  msgstr ""
492
 
493
- #: adrotate.php:108 dashboard/publisher/groups-main.php:12
494
  msgid "Manage Groups"
495
  msgstr "グループの管理"
496
 
497
- #: adrotate.php:109 adrotate.php:387
498
  #, fuzzy
499
  msgid "Manage Schedules"
500
  msgstr "管理"
501
 
502
- #: adrotate.php:110
503
  #, fuzzy
504
  msgid "Manage Media"
505
  msgstr "画像リンク先URL:"
506
 
507
- #: adrotate.php:111
508
  msgid "Settings"
509
  msgstr "設定"
510
 
511
- #: adrotate.php:134
512
  #, fuzzy
513
  msgid "AdRotate Info"
514
  msgstr "AdRotate Blog"
515
 
516
- #: adrotate.php:155
517
  #, fuzzy
518
  msgid "AdRotate Professional"
519
  msgstr "AdRotate Blog"
520
 
521
- #: adrotate.php:198
522
  msgid "Advert Management"
523
  msgstr ""
524
 
525
- #: adrotate.php:256 adrotate.php:326 adrotate.php:382
526
  msgid "Manage"
527
  msgstr "管理"
528
 
529
- #: adrotate.php:257 adrotate.php:327 adrotate.php:383
530
  msgid "Add New"
531
  msgstr "新規追加"
532
 
533
- #: adrotate.php:320
534
  msgid "Group Management"
535
  msgstr "グループの管理"
536
 
537
- #: adrotate.php:329
538
  msgid "Report"
539
  msgstr "レポート"
540
 
541
- #: adrotate.php:378
542
  #, fuzzy
543
  msgid "Schedule Management available in AdRotate Pro"
544
  msgstr "この機能は使いません。"
545
 
546
- #: adrotate.php:388
547
  #, fuzzy
548
  msgid ""
549
  "Schedule management and multiple schedules per advert is available in "
550
  "AdRotate Pro."
551
  msgstr "この機能は使いません。"
552
 
553
- #: adrotate.php:388 adrotate.php:475 dashboard/publisher/adverts-edit.php:188
554
  #: dashboard/publisher/adverts-main.php:114
555
- #: dashboard/publisher/groups-edit.php:75
556
  #: dashboard/publisher/groups-main.php:89
557
  #, fuzzy
558
  msgid "More information"
559
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
560
 
561
- #: adrotate.php:395 dashboard/publisher/adverts-disabled.php:20
562
  #: dashboard/publisher/adverts-error.php:19
563
  #: dashboard/publisher/adverts-main.php:20
564
  #: dashboard/publisher/groups-main.php:20
565
  msgid "Bulk Actions"
566
  msgstr "一括操作"
567
 
568
- #: adrotate.php:396 dashboard/publisher/adverts-disabled.php:25
569
  #: dashboard/publisher/adverts-error.php:29
570
  #: dashboard/publisher/adverts-main.php:30
571
  #: dashboard/publisher/groups-main.php:24
572
  msgid "Go"
573
  msgstr "実行"
574
 
575
- #: adrotate.php:405 dashboard/publisher/adverts-disabled.php:35
576
  #: dashboard/publisher/adverts-error.php:39
577
  #: dashboard/publisher/adverts-main.php:39
578
- #: dashboard/publisher/groups-edit.php:51
579
  #: dashboard/publisher/groups-main.php:32
580
  #, fuzzy
581
  msgid "ID"
582
  msgstr "広告ブロック - ブロックIDを使ってください。"
583
 
584
- #: adrotate.php:406
585
  msgid "Start"
586
  msgstr ""
587
 
588
- #: adrotate.php:406
589
  msgid "End"
590
  msgstr ""
591
 
592
- #: adrotate.php:407
593
  msgid "Ads"
594
  msgstr "広告"
595
 
596
- #: adrotate.php:409
597
  #, fuzzy
598
  msgid "Max Impressions"
599
  msgstr "表示数"
600
 
601
- #: adrotate.php:410
602
  #, fuzzy
603
  msgid "Max Clicks"
604
  msgstr "クリック"
605
 
606
- #: adrotate.php:440
607
  #, fuzzy
608
  msgid "No schedules created yet!"
609
  msgstr "まだブロックが作られていません。"
610
 
611
- #: adrotate.php:445
612
  #, fuzzy
613
  msgid "Easily manage your schedules from here with AdRotate Pro."
614
  msgstr ""
615
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
616
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
617
 
618
- #: adrotate.php:445 adrotate.php:511
619
  #, fuzzy
620
  msgid "Upgrade today!"
621
  msgstr "本日"
622
 
623
- #: adrotate.php:448 dashboard/publisher/adverts-error.php:72
624
- #: dashboard/publisher/groups-edit.php:387
625
  #, fuzzy
626
  msgid "Expires soon."
627
  msgstr "これは出来る限り早く修正して下さい。"
628
 
629
- #: adrotate.php:449 dashboard/publisher/adverts-error.php:73
630
- #: dashboard/publisher/groups-edit.php:388
631
  #, fuzzy
632
  msgid "Has expired."
633
  msgstr "個の広告が期限切れです。"
634
 
635
- #: adrotate.php:473
636
  #, fuzzy
637
  msgid "Media Management available in AdRotate Pro"
638
  msgstr "この機能は使いません。"
639
 
640
- #: adrotate.php:475
641
  msgid "Upload images to the AdRotate Pro banners folder from here."
642
  msgstr ""
643
 
644
- #: adrotate.php:475
645
  msgid ""
646
  "This is useful if you use responsive adverts with multiple images or have "
647
  "HTML5 adverts containing multiple files."
648
  msgstr ""
649
 
650
- #: adrotate.php:475
651
  #, fuzzy
652
  msgid "Media uploading and management is available in AdRotate Pro."
653
  msgstr "この機能は使いません。"
654
 
655
- #: adrotate.php:477
656
  msgid "Upload new file"
657
  msgstr ""
658
 
659
- #: adrotate.php:478
660
  msgid "Accepted files:"
661
  msgstr ""
662
 
663
- #: adrotate.php:478
664
  msgid "For HTML5 ads you can also upload html and javascript files."
665
  msgstr ""
666
 
667
- #: adrotate.php:478
668
  msgid "Maximum size is 512Kb."
669
  msgstr ""
670
 
671
- #: adrotate.php:478
672
  msgid "Important:"
673
  msgstr ""
674
 
675
- #: adrotate.php:478
676
  msgid ""
677
  "Make sure your file has no spaces or special characters in the name. Replace "
678
  "spaces with a - or _."
679
  msgstr ""
680
 
681
- #: adrotate.php:478
682
  msgid ""
683
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
684
  "file so it knows about the changed name. For example for the javascript file."
685
  msgstr ""
686
 
687
- #: adrotate.php:481
688
  msgid ""
689
  "For responsive adverts make sure the filename is in the following format; "
690
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
691
  msgstr ""
692
 
693
- #: adrotate.php:482 dashboard/publisher/adverts-edit.php:311
694
  msgid ""
695
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
696
  "filename instead of \".full\" for the various viewports."
697
  msgstr ""
698
 
699
- #: adrotate.php:483 dashboard/publisher/groups-edit.php:312
700
- #: dashboard/publisher/groups-edit.php:320
701
  msgid "Example:"
702
  msgstr "例:"
703
 
704
- #: adrotate.php:483
705
  msgid ""
706
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
707
  "for different viewports."
708
  msgstr ""
709
 
710
- #: adrotate.php:487
711
  msgid "Upload file"
712
  msgstr ""
713
 
714
- #: adrotate.php:487
715
  msgid "Click only once per file!"
716
  msgstr ""
717
 
718
- #: adrotate.php:490
719
  msgid "Available files in"
720
  msgstr ""
721
 
722
- #: adrotate.php:495 dashboard/publisher/groups-edit.php:55
723
  #: dashboard/publisher/groups-main.php:33
724
  msgid "Name"
725
  msgstr "名前"
726
 
727
- #: adrotate.php:496
728
  #, fuzzy
729
  msgid "Actions"
730
  msgstr "一括操作"
731
 
732
- #: adrotate.php:501 adrotate.php:502 adrotate.php:503 adrotate.php:504
733
- #: adrotate.php:505 adrotate.php:506 adrotate.php:507
734
  #: dashboard/publisher/adverts-disabled.php:22
735
  #: dashboard/publisher/adverts-error.php:21
736
  #: dashboard/publisher/adverts-main.php:22
737
  msgid "Delete"
738
  msgstr "削除"
739
 
740
- #: adrotate.php:511
741
  msgid ""
742
  "Make sure the banner images are not in use by adverts when you delete them!"
743
  msgstr ""
744
 
745
- #: adrotate.php:511
746
  #, fuzzy
747
  msgid "Manage your banner folder from here with AdRotate Pro."
748
  msgstr ""
749
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
750
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
751
 
752
- #: adrotate.php:540
753
  msgid "AdRotate Settings"
754
  msgstr "AdRotate 設定"
755
 
756
- #: adrotate.php:612
757
- msgid "Update Options"
758
- msgstr "設定の更新"
759
-
760
  #: dashboard/adrotatepro.php:20
761
  #, fuzzy
762
  msgid "Satisfy your advertisers"
@@ -954,7 +949,7 @@ msgstr ""
954
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
955
  "さい。英語ですが。"
956
 
957
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
958
  #: dashboard/publisher/groups-main.php:34
959
  #, fuzzy
960
  msgid "Adverts"
@@ -1001,7 +996,7 @@ msgid "Disabled Adverts"
1001
  msgstr ""
1002
 
1003
  #: dashboard/publisher/adverts-disabled.php:21
1004
- #: dashboard/publisher/adverts-edit.php:176
1005
  msgid "Activate"
1006
  msgstr "利用可能"
1007
 
@@ -1018,7 +1013,7 @@ msgid "Start / End"
1018
  msgstr ""
1019
 
1020
  #: dashboard/publisher/adverts-disabled.php:37
1021
- #: dashboard/publisher/adverts-edit.php:116
1022
  #: dashboard/publisher/adverts-error.php:41
1023
  #: dashboard/publisher/adverts-main.php:41
1024
  msgid "Title"
@@ -1026,7 +1021,7 @@ msgstr "タイトル"
1026
 
1027
  #: dashboard/publisher/adverts-disabled.php:38
1028
  #: dashboard/publisher/adverts-main.php:44
1029
- #: dashboard/publisher/groups-edit.php:333
1030
  #: dashboard/publisher/groups-main.php:36
1031
  #, fuzzy
1032
  msgid "Shown"
@@ -1036,7 +1031,7 @@ msgstr "この広告は期限切れで現在サイトに表示されていませ
1036
  #: dashboard/publisher/adverts-main.php:46
1037
  #: dashboard/publisher/adverts-report.php:36
1038
  #: dashboard/publisher/adverts-report.php:57
1039
- #: dashboard/publisher/groups-edit.php:334
1040
  #: dashboard/publisher/groups-main.php:38
1041
  #: dashboard/publisher/groups-report.php:37
1042
  #: dashboard/publisher/groups-report.php:58
@@ -1079,34 +1074,28 @@ msgid "The AdCode cannot be empty!"
1079
  msgstr "AdCodeを空にすることはできません!"
1080
 
1081
  #: dashboard/publisher/adverts-edit.php:51
1082
- msgid "You did not use %image% in your AdCode but did select a file to use!"
 
 
1083
  msgstr ""
1084
 
1085
  #: dashboard/publisher/adverts-edit.php:54
1086
- msgid "You did use %image% in your AdCode but did not select a file to use!"
1087
- msgstr ""
1088
-
1089
- #: dashboard/publisher/adverts-edit.php:57
1090
  msgid ""
1091
- "You did not use %image% in your AdCode. The responsive checkbox will be "
1092
- "ineffective."
1093
  msgstr ""
1094
 
1095
- #: dashboard/publisher/adverts-edit.php:60
1096
  msgid ""
1097
  "There is a problem saving the image. Please reset your image and re-save the "
1098
  "ad!"
1099
  msgstr ""
1100
 
1101
- #: dashboard/publisher/adverts-edit.php:63
1102
- msgid "Responsive is enabled but your banner image has the wrong name."
1103
- msgstr ""
1104
-
1105
- #: dashboard/publisher/adverts-edit.php:66
1106
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1107
  msgstr ""
1108
 
1109
- #: dashboard/publisher/adverts-edit.php:71
1110
  msgid ""
1111
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1112
  "the ad!"
@@ -1114,79 +1103,79 @@ msgstr ""
1114
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
1115
  "を再度保存してください!"
1116
 
1117
- #: dashboard/publisher/adverts-edit.php:74
1118
  msgid "This ad is expired and currently not shown on your website!"
1119
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
1120
 
1121
- #: dashboard/publisher/adverts-edit.php:77
1122
  msgid "The ad will expire in less than 2 days!"
1123
  msgstr "この広告は期限が2日間ありません。"
1124
 
1125
- #: dashboard/publisher/adverts-edit.php:80
1126
  msgid "This ad will expire in less than 7 days!"
1127
  msgstr "この広告は期限が7日間ありません。"
1128
 
1129
- #: dashboard/publisher/adverts-edit.php:83
1130
  msgid "This ad has been disabled and does not rotate on your site!"
1131
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
1132
 
1133
- #: dashboard/publisher/adverts-edit.php:108
1134
  #, fuzzy
1135
  msgid "New Advert"
1136
  msgstr "新規追加"
1137
 
1138
- #: dashboard/publisher/adverts-edit.php:110
1139
  #, fuzzy
1140
  msgid "Edit Advert"
1141
  msgstr "編集"
1142
 
1143
- #: dashboard/publisher/adverts-edit.php:122
1144
  msgid "AdCode"
1145
  msgstr ""
1146
 
1147
- #: dashboard/publisher/adverts-edit.php:127
1148
  msgid "Basic Examples:"
1149
  msgstr "設定例:"
1150
 
1151
- #: dashboard/publisher/adverts-edit.php:134
1152
  msgid "Useful tags"
1153
  msgstr ""
1154
 
1155
- #: dashboard/publisher/adverts-edit.php:136
1156
  msgid "Insert the advert ID Number."
1157
  msgstr ""
1158
 
1159
- #: dashboard/publisher/adverts-edit.php:136
1160
- msgid "Required when selecting a image below."
1161
  msgstr ""
1162
 
1163
- #: dashboard/publisher/adverts-edit.php:136
1164
  msgid "Insert the advert name."
1165
  msgstr ""
1166
 
1167
- #: dashboard/publisher/adverts-edit.php:136
1168
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1169
  msgstr ""
1170
 
1171
- #: dashboard/publisher/adverts-edit.php:136
1172
  msgid "Add inside the <a> tag to open advert in a new window."
1173
  msgstr ""
1174
 
1175
- #: dashboard/publisher/adverts-edit.php:136
1176
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1177
  msgstr ""
1178
 
1179
- #: dashboard/publisher/adverts-edit.php:136
1180
  msgid ""
1181
  "Place the cursor in your AdCode where you want to add any of these tags and "
1182
  "click to add it."
1183
  msgstr ""
1184
 
1185
- #: dashboard/publisher/adverts-edit.php:141
1186
  msgid "Preview"
1187
  msgstr "プレビュー"
1188
 
1189
- #: dashboard/publisher/adverts-edit.php:144
1190
  msgid ""
1191
  "Note: While this preview is an accurate one, it might look different then it "
1192
  "does on the website."
@@ -1194,43 +1183,43 @@ msgstr ""
1194
  "注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
1195
  "場合があります。"
1196
 
1197
- #: dashboard/publisher/adverts-edit.php:145
1198
  msgid ""
1199
  "This is because of CSS differences. Your themes CSS file is not active here!"
1200
  msgstr ""
1201
  "主な原因としてはCSSの設定がここでは反映されないからです。表示にCSSを利用され"
1202
  "ている場合は実ページでご確認下さい。"
1203
 
1204
- #: dashboard/publisher/adverts-edit.php:150
1205
  msgid "Banner asset"
1206
  msgstr ""
1207
 
1208
- #: dashboard/publisher/adverts-edit.php:153
1209
  msgid "WordPress media:"
1210
  msgstr ""
1211
 
1212
- #: dashboard/publisher/adverts-edit.php:153
1213
  #, fuzzy
1214
  msgid "Select Banner"
1215
  msgstr "バナー画像"
1216
 
1217
- #: dashboard/publisher/adverts-edit.php:155
1218
  msgid "- OR -"
1219
  msgstr "- もしくは -"
1220
 
1221
- #: dashboard/publisher/adverts-edit.php:157
1222
  msgid "Banner folder:"
1223
  msgstr "画像バナー"
1224
 
1225
- #: dashboard/publisher/adverts-edit.php:158
1226
  msgid "No image selected"
1227
  msgstr "画像は設定されていません。"
1228
 
1229
- #: dashboard/publisher/adverts-edit.php:162
1230
- msgid "Use %image% in the adcode instead of the file path."
1231
  msgstr ""
1232
 
1233
- #: dashboard/publisher/adverts-edit.php:162
1234
  msgid ""
1235
  "Use either the text field or the dropdown. If the textfield has content that "
1236
  "field has priority."
@@ -1238,34 +1227,34 @@ msgstr ""
1238
  "上記の画像リンクかドロップダウンかを利用します。画像リンクが入力されている場"
1239
  "合はそちらが優先されます。"
1240
 
1241
- #: dashboard/publisher/adverts-edit.php:167
1242
- #: dashboard/settings/statistics.php:12
1243
  msgid "Statistics"
1244
  msgstr "統計"
1245
 
1246
- #: dashboard/publisher/adverts-edit.php:169
1247
  msgid "Enable click and impression tracking for this advert."
1248
  msgstr ""
1249
 
1250
- #: dashboard/publisher/adverts-edit.php:170
1251
  msgid ""
1252
  "Note: Clicktracking does not work for Javascript adverts such as those "
1253
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1254
  "always supported."
1255
  msgstr ""
1256
 
1257
- #: dashboard/publisher/adverts-edit.php:180
1258
  msgid "Yes, this ad will be used"
1259
  msgstr "この広告を掲載されるように設定する"
1260
 
1261
- #: dashboard/publisher/adverts-edit.php:181
1262
  #, fuzzy
1263
  msgid "No, do not show this ad anywhere"
1264
  msgstr "表示できるデータがありません。"
1265
 
1266
- #: dashboard/publisher/adverts-edit.php:188
1267
  #: dashboard/publisher/adverts-main.php:114
1268
- #: dashboard/publisher/groups-edit.php:75
1269
  #: dashboard/publisher/groups-main.php:89
1270
  #, fuzzy
1271
  msgid "Get more features with AdRotate Pro."
@@ -1273,275 +1262,276 @@ msgstr ""
1273
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1274
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1275
 
1276
- #: dashboard/publisher/adverts-edit.php:191
1277
- #: dashboard/publisher/adverts-edit.php:291
1278
- #: dashboard/publisher/adverts-edit.php:386
1279
- #: dashboard/publisher/adverts-edit.php:427
1280
  #, fuzzy
1281
  msgid "Save Advert"
1282
  msgstr "保存"
1283
 
1284
- #: dashboard/publisher/adverts-edit.php:192
1285
- #: dashboard/publisher/adverts-edit.php:292
1286
- #: dashboard/publisher/adverts-edit.php:387
1287
- #: dashboard/publisher/adverts-edit.php:428
1288
- #: dashboard/publisher/groups-edit.php:154
1289
- #: dashboard/publisher/groups-edit.php:301
1290
- #: dashboard/publisher/groups-edit.php:393
1291
  msgid "Cancel"
1292
  msgstr "キャンセル"
1293
 
1294
- #: dashboard/publisher/adverts-edit.php:195
1295
- #: dashboard/publisher/adverts-edit.php:369
1296
- #: dashboard/publisher/groups-edit.php:136
1297
- #: dashboard/publisher/groups-edit.php:283
1298
  msgid "Usage"
1299
  msgstr "利用タグ"
1300
 
1301
- #: dashboard/publisher/adverts-edit.php:199
1302
- #: dashboard/publisher/adverts-edit.php:373
1303
- #: dashboard/publisher/groups-edit.php:140
1304
- #: dashboard/publisher/groups-edit.php:287
1305
  msgid "Widget"
1306
  msgstr ""
1307
 
1308
- #: dashboard/publisher/adverts-edit.php:200
1309
- #: dashboard/publisher/adverts-edit.php:374
1310
  msgid ""
1311
- "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1312
- "and enter ID"
1313
  msgstr ""
1314
 
1315
- #: dashboard/publisher/adverts-edit.php:203
1316
- #: dashboard/publisher/adverts-edit.php:377
1317
- #: dashboard/publisher/groups-edit.php:144
1318
- #: dashboard/publisher/groups-edit.php:291
1319
  msgid "In a post or page"
1320
  msgstr ""
1321
 
1322
- #: dashboard/publisher/adverts-edit.php:205
1323
- #: dashboard/publisher/adverts-edit.php:379
1324
- #: dashboard/publisher/groups-edit.php:146
1325
- #: dashboard/publisher/groups-edit.php:293
1326
  msgid "Directly in a theme"
1327
  msgstr ""
1328
 
1329
- #: dashboard/publisher/adverts-edit.php:211
1330
  msgid "Schedule your advert"
1331
  msgstr ""
1332
 
1333
- #: dashboard/publisher/adverts-edit.php:215
1334
  msgid "Start date (day/month/year)"
1335
  msgstr ""
1336
 
1337
- #: dashboard/publisher/adverts-edit.php:236
1338
  msgid "End date (day/month/year)"
1339
  msgstr ""
1340
 
1341
- #: dashboard/publisher/adverts-edit.php:259
1342
  msgid "Start time (hh:mm)"
1343
  msgstr ""
1344
 
1345
- #: dashboard/publisher/adverts-edit.php:266
1346
  msgid "End time (hh:mm)"
1347
  msgstr ""
1348
 
1349
- #: dashboard/publisher/adverts-edit.php:276
1350
  msgid "Maximum Clicks"
1351
  msgstr ""
1352
 
1353
- #: dashboard/publisher/adverts-edit.php:277
1354
- #: dashboard/publisher/adverts-edit.php:279
1355
  msgid "Leave empty or 0 to skip this."
1356
  msgstr "※この機能を利用しない場合は、空白か0を設定して下さい。"
1357
 
1358
- #: dashboard/publisher/adverts-edit.php:278
1359
  msgid "Maximum Impressions"
1360
  msgstr ""
1361
 
1362
- #: dashboard/publisher/adverts-edit.php:283
1363
  msgid "Important"
1364
  msgstr ""
1365
 
1366
- #: dashboard/publisher/adverts-edit.php:284
1367
  msgid ""
1368
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1369
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1370
  "14:00 hours. 6AM is 6:00 hours."
1371
  msgstr ""
1372
 
1373
- #: dashboard/publisher/adverts-edit.php:288
1374
  msgid ""
1375
  "Create multiple and more advanced schedules for each advert with AdRotate "
1376
  "Pro."
1377
  msgstr ""
1378
 
1379
- #: dashboard/publisher/adverts-edit.php:288
1380
- #: dashboard/publisher/adverts-edit.php:323
1381
- #: dashboard/publisher/adverts-edit.php:367
1382
- #: dashboard/publisher/groups-edit.php:200
1383
  #, fuzzy
1384
  msgid "Upgrade today"
1385
  msgstr "本日"
1386
 
1387
- #: dashboard/publisher/adverts-edit.php:295
1388
- #: dashboard/publisher/groups-edit.php:157
1389
  #, fuzzy
1390
  msgid "Advanced"
1391
  msgstr "設定例(高度):"
1392
 
1393
- #: dashboard/publisher/adverts-edit.php:296
1394
  #, fuzzy
1395
  msgid "Everything below is optional."
1396
  msgstr "タイトル(オプション):"
1397
 
1398
- #: dashboard/publisher/adverts-edit.php:300
1399
- msgid "Mobile"
1400
  msgstr ""
1401
 
1402
- #: dashboard/publisher/adverts-edit.php:302
1403
- msgid "Show on;"
1404
- msgstr ""
 
 
1405
 
1406
- #: dashboard/publisher/adverts-edit.php:302
1407
- msgid "Computers"
1408
  msgstr ""
1409
 
1410
- #: dashboard/publisher/adverts-edit.php:302
1411
- msgid "Smartphones"
1412
- msgstr ""
1413
 
1414
- #: dashboard/publisher/adverts-edit.php:302
1415
- msgid "Tablets."
1416
  msgstr ""
1417
 
1418
- #: dashboard/publisher/adverts-edit.php:303
1419
- msgid "Also enable mobile support in the group this advert goes in."
 
 
 
 
1420
  msgstr ""
1421
 
1422
- #: dashboard/publisher/adverts-edit.php:307
1423
- msgid "Responsive"
1424
  msgstr ""
1425
 
1426
- #: dashboard/publisher/adverts-edit.php:309
1427
- #, fuzzy
1428
- msgid "Enable responsive support for this advert."
1429
- msgstr "広告の追加・編集管理"
1430
 
1431
- #: dashboard/publisher/adverts-edit.php:310
1432
- msgid ""
1433
- "Upload your images to the banner folder and make sure the filename is in the "
1434
- "following format; \"imagename.full.ext\"."
1435
  msgstr ""
1436
 
1437
- #: dashboard/publisher/adverts-edit.php:312
1438
- #: dashboard/publisher/adverts-report.php:64
1439
- #: dashboard/publisher/groups-report.php:65
1440
- msgid "Note:"
1441
- msgstr "注意:"
1442
 
1443
- #: dashboard/publisher/adverts-edit.php:312
1444
  msgid ""
1445
- "This feature will not be developed any further. Consider switching to the "
1446
- "Mobile feature in AdRotate Pro as seen above!"
1447
  msgstr ""
1448
 
1449
- #: dashboard/publisher/adverts-edit.php:316
1450
- #: dashboard/publisher/groups-edit.php:194
1451
  msgid "Sortorder"
1452
  msgstr ""
1453
 
1454
- #: dashboard/publisher/adverts-edit.php:318
1455
- #: dashboard/publisher/groups-edit.php:196
1456
  msgid "For administrative purposes set a sortorder."
1457
  msgstr "管理目的で順序を設定できます。"
1458
 
1459
- #: dashboard/publisher/adverts-edit.php:318
1460
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1461
  msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
1462
 
1463
- #: dashboard/publisher/adverts-edit.php:323
1464
  msgid ""
1465
  "With AdRotate Pro you can easily select which devices the advert should show "
1466
  "on!"
1467
  msgstr ""
1468
 
1469
- #: dashboard/publisher/adverts-edit.php:325
1470
  msgid "Geo Targeting in AdRotate Pro"
1471
  msgstr ""
1472
 
1473
- #: dashboard/publisher/adverts-edit.php:326
1474
  msgid ""
1475
  "Assign the advert to a group and enable that group to use Geo Targeting."
1476
  msgstr ""
1477
 
1478
- #: dashboard/publisher/adverts-edit.php:330
1479
  msgid "Cities/States"
1480
  msgstr ""
1481
 
1482
- #: dashboard/publisher/adverts-edit.php:333
1483
  msgid ""
1484
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1485
  "states ISO codes are supported)"
1486
  msgstr ""
1487
 
1488
- #: dashboard/publisher/adverts-edit.php:333
1489
  msgid ""
1490
  "AdRotate does not check the validity of names so make sure you spell them "
1491
  "correctly!"
1492
  msgstr ""
1493
 
1494
- #: dashboard/publisher/adverts-edit.php:337
1495
  msgid "Countries"
1496
  msgstr ""
1497
 
1498
- #: dashboard/publisher/adverts-edit.php:362
1499
  #, fuzzy
1500
  msgid "Select the countries you want the adverts to show in."
1501
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1502
 
1503
- #: dashboard/publisher/adverts-edit.php:362
1504
  msgid "Cities take priority and will be filtered first."
1505
  msgstr ""
1506
 
1507
- #: dashboard/publisher/adverts-edit.php:367
1508
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1509
  msgstr ""
1510
 
1511
- #: dashboard/publisher/adverts-edit.php:391
1512
  msgid "Select Groups"
1513
  msgstr "グループを選択"
1514
 
1515
- #: dashboard/publisher/adverts-edit.php:396
1516
  #, fuzzy
1517
  msgid "ID - Name"
1518
  msgstr "名前"
1519
 
1520
- #: dashboard/publisher/adverts-edit.php:406
1521
  #: dashboard/publisher/groups-main.php:60
1522
- #: dashboard/settings/geotargeting.php:36
1523
  #, fuzzy
1524
  msgid "Default"
1525
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
1526
 
1527
- #: dashboard/publisher/adverts-edit.php:407
1528
  #: dashboard/publisher/groups-main.php:61
1529
  msgid "Dynamic"
1530
  msgstr ""
1531
 
1532
- #: dashboard/publisher/adverts-edit.php:407
1533
  #: dashboard/publisher/groups-main.php:61
1534
  #, fuzzy
1535
  msgid "second rotation"
1536
  msgstr "バナーがないか、利用不可か適応されていません。"
1537
 
1538
- #: dashboard/publisher/adverts-edit.php:408
1539
  #: dashboard/publisher/groups-main.php:62
1540
  #, fuzzy
1541
  msgid "Block"
1542
  msgstr "ブロック管理"
1543
 
1544
- #: dashboard/publisher/adverts-edit.php:408
1545
  #: dashboard/publisher/groups-main.php:62
1546
  #, fuzzy
1547
  msgid "grid"
@@ -1549,19 +1539,19 @@ msgstr ""
1549
  "広告に表組みを指定します。2と2を入力すると2行2列になります。(初期設定は2行2"
1550
  "列です。)"
1551
 
1552
- #: dashboard/publisher/adverts-edit.php:409
1553
- #: dashboard/publisher/groups-edit.php:202
1554
  #: dashboard/publisher/groups-main.php:63
1555
  #, fuzzy
1556
  msgid "Post Injection"
1557
  msgstr "投稿及びページ内掲載する場合:"
1558
 
1559
- #: dashboard/publisher/adverts-edit.php:410
1560
  msgid "Geolocation"
1561
  msgstr ""
1562
 
1563
- #: dashboard/publisher/adverts-edit.php:416
1564
- #: dashboard/publisher/groups-edit.php:61
1565
  #: dashboard/publisher/groups-main.php:70
1566
  #, fuzzy
1567
  msgid "Mode"
@@ -1602,7 +1592,7 @@ msgid "For 7 days"
1602
  msgstr "1週間(7日)"
1603
 
1604
  #: dashboard/publisher/adverts-error.php:71
1605
- #: dashboard/publisher/groups-edit.php:386
1606
  #, fuzzy
1607
  msgid "Configuration errors."
1608
  msgstr "個の広告が設定エラーになっています。"
@@ -1616,11 +1606,6 @@ msgstr ""
1616
  msgid "Export to XML"
1617
  msgstr "エクスポートオプション"
1618
 
1619
- #: dashboard/publisher/adverts-main.php:42
1620
- #: dashboard/publisher/groups-edit.php:336
1621
- msgid "Weight"
1622
- msgstr "表示頻度"
1623
-
1624
  #: dashboard/publisher/adverts-main.php:45
1625
  #: dashboard/publisher/adverts-main.php:47
1626
  #: dashboard/publisher/groups-main.php:37
@@ -1660,6 +1645,13 @@ msgstr "今日のクリック数"
1660
  msgid "Monthly overview of clicks and impressions"
1661
  msgstr "クリック"
1662
 
 
 
 
 
 
 
 
1663
  #: dashboard/publisher/adverts-report.php:64
1664
  #: dashboard/publisher/groups-report.php:65
1665
  msgid ""
@@ -1678,334 +1670,334 @@ msgstr "新規追加"
1678
  msgid "Edit Group"
1679
  msgstr "グループ編集"
1680
 
1681
- #: dashboard/publisher/groups-edit.php:64
1682
  #, fuzzy
1683
  msgid "Default - Show one ad at a time"
1684
  msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
1685
 
1686
- #: dashboard/publisher/groups-edit.php:65
1687
  #, fuzzy
1688
  msgid "Dynamic Mode - Show a different ad every few seconds"
1689
  msgstr "秒"
1690
 
1691
- #: dashboard/publisher/groups-edit.php:66
1692
  msgid "Block Mode - Show a block of adverts"
1693
  msgstr ""
1694
 
1695
- #: dashboard/publisher/groups-edit.php:70
1696
  #, fuzzy
1697
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1698
  msgstr "AdRotate 設定"
1699
 
1700
- #: dashboard/publisher/groups-edit.php:77
1701
- #: dashboard/publisher/groups-edit.php:104
1702
  #, fuzzy
1703
  msgid "Dynamic and Block Mode"
1704
  msgstr "ブロック管理"
1705
 
1706
- #: dashboard/publisher/groups-edit.php:78
1707
  #, fuzzy
1708
  msgid "Only required if your group is in Dynamic or Block mode."
1709
  msgstr ""
1710
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1711
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1712
 
1713
- #: dashboard/publisher/groups-edit.php:82
1714
  msgid "Block size"
1715
  msgstr ""
1716
 
1717
- #: dashboard/publisher/groups-edit.php:88
1718
  msgid "rows"
1719
  msgstr "行"
1720
 
1721
- #: dashboard/publisher/groups-edit.php:92
1722
  msgid "columns"
1723
  msgstr "列"
1724
 
1725
- #: dashboard/publisher/groups-edit.php:95
1726
  #, fuzzy
1727
  msgid "Block Mode"
1728
  msgstr "ブロック管理"
1729
 
1730
- #: dashboard/publisher/groups-edit.php:95
1731
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1732
  msgstr ""
1733
 
1734
- #: dashboard/publisher/groups-edit.php:99
1735
  msgid "Advert size"
1736
  msgstr ""
1737
 
1738
- #: dashboard/publisher/groups-edit.php:101
1739
  msgid "pixel(s) wide"
1740
  msgstr "ピクセル(幅)"
1741
 
1742
- #: dashboard/publisher/groups-edit.php:101
1743
  msgid "pixel(s) high."
1744
  msgstr "ピクセル(高さ)"
1745
 
1746
- #: dashboard/publisher/groups-edit.php:104
1747
  msgid ""
1748
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1749
  "recommended). Default: 125/125."
1750
  msgstr ""
1751
 
1752
- #: dashboard/publisher/groups-edit.php:108
1753
  msgid "Automated refresh"
1754
  msgstr ""
1755
 
1756
- #: dashboard/publisher/groups-edit.php:127
1757
  #, fuzzy
1758
  msgid "seconds."
1759
  msgstr "秒"
1760
 
1761
- #: dashboard/publisher/groups-edit.php:130
1762
  msgid "Dynamic Mode"
1763
  msgstr ""
1764
 
1765
- #: dashboard/publisher/groups-edit.php:130
1766
  #, fuzzy
1767
  msgid ""
1768
  "Load a new advert in this interval without reloading the page. Default: 6."
1769
  msgstr "新規追加"
1770
 
1771
- #: dashboard/publisher/groups-edit.php:141
1772
- #: dashboard/publisher/groups-edit.php:288
1773
  msgid ""
1774
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1775
  "Adverts\" and enter ID"
1776
  msgstr ""
1777
 
1778
- #: dashboard/publisher/groups-edit.php:153
1779
- #: dashboard/publisher/groups-edit.php:300
1780
- #: dashboard/publisher/groups-edit.php:392
1781
  #, fuzzy
1782
  msgid "Save Group"
1783
  msgstr "保存"
1784
 
1785
- #: dashboard/publisher/groups-edit.php:161
1786
  #, fuzzy
1787
  msgid "Advert Margin"
1788
  msgstr "ピクセル(margin)"
1789
 
1790
- #: dashboard/publisher/groups-edit.php:163
1791
  msgid "pixel(s)"
1792
  msgstr "ピクセル"
1793
 
1794
- #: dashboard/publisher/groups-edit.php:166
1795
  #, fuzzy
1796
  msgid "A transparent area outside the advert in pixels. Default: 0."
1797
  msgstr ""
1798
  "ブロックに見えない枠(ピクセル単位)を作れます。(初期設定では1ピクセルで"
1799
  "す。)"
1800
 
1801
- #: dashboard/publisher/groups-edit.php:166
1802
  #, fuzzy
1803
  msgid "Set to 0 to disable."
1804
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
1805
 
1806
- #: dashboard/publisher/groups-edit.php:166
1807
  msgid "Margins are automatically disabled for blocks where required."
1808
  msgstr ""
1809
 
1810
- #: dashboard/publisher/groups-edit.php:170
1811
  #, fuzzy
1812
  msgid "Align the group"
1813
  msgstr "広告グループ - グループIDを使ってください。"
1814
 
1815
- #: dashboard/publisher/groups-edit.php:173
1816
  #, fuzzy
1817
  msgid "None (Default)"
1818
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
1819
 
1820
- #: dashboard/publisher/groups-edit.php:174
1821
  msgid "Left"
1822
  msgstr "右"
1823
 
1824
- #: dashboard/publisher/groups-edit.php:175
1825
  msgid "Right"
1826
  msgstr "左"
1827
 
1828
- #: dashboard/publisher/groups-edit.php:176
1829
  msgid "Center"
1830
  msgstr ""
1831
 
1832
- #: dashboard/publisher/groups-edit.php:180
1833
  msgid ""
1834
  "Align the group in your post or page. Using 'center' may affect your margin "
1835
  "setting. Not every theme supports this feature."
1836
  msgstr ""
1837
 
1838
- #: dashboard/publisher/groups-edit.php:184
1839
- #: dashboard/settings/advertisers.php:28
1840
  msgid "Geo Targeting"
1841
  msgstr ""
1842
 
1843
- #: dashboard/publisher/groups-edit.php:185
1844
  msgid "Enable Geo Targeting for this group."
1845
  msgstr ""
1846
 
1847
- #: dashboard/publisher/groups-edit.php:186
1848
  #, fuzzy
1849
  msgid "Do not forget to tell the adverts for which areas they should show."
1850
  msgstr "どのカテゴリーですか?"
1851
 
1852
- #: dashboard/publisher/groups-edit.php:189
1853
  msgid "Mobile support"
1854
  msgstr ""
1855
 
1856
- #: dashboard/publisher/groups-edit.php:190
1857
  msgid "Enable mobile support for this group."
1858
  msgstr ""
1859
 
1860
- #: dashboard/publisher/groups-edit.php:191
1861
  msgid "Do not forget to put at least one mobile advert in this group."
1862
  msgstr ""
1863
 
1864
- #: dashboard/publisher/groups-edit.php:196
1865
  msgid "Leave empty or 0 to skip this. Will default to group id."
1866
  msgstr ""
1867
  "この項目をスキップするには空か0を入れて下さい。グループIDがデフォルトになりま"
1868
  "す。"
1869
 
1870
- #: dashboard/publisher/groups-edit.php:200
1871
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1872
  msgstr ""
1873
 
1874
- #: dashboard/publisher/groups-edit.php:205
1875
  msgid "In categories?"
1876
  msgstr ""
1877
 
1878
- #: dashboard/publisher/groups-edit.php:209
1879
- #: dashboard/publisher/groups-edit.php:247
1880
- #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1881
  #, fuzzy
1882
  msgid "Disabled"
1883
  msgstr "掲載不可広告"
1884
 
1885
- #: dashboard/publisher/groups-edit.php:210
1886
- #: dashboard/publisher/groups-edit.php:248
1887
  #, fuzzy
1888
  msgid "Before content"
1889
  msgstr "投稿内容の前"
1890
 
1891
- #: dashboard/publisher/groups-edit.php:211
1892
- #: dashboard/publisher/groups-edit.php:249
1893
  #, fuzzy
1894
  msgid "After content"
1895
  msgstr "コンテンツの前と後ろ"
1896
 
1897
- #: dashboard/publisher/groups-edit.php:212
1898
- #: dashboard/publisher/groups-edit.php:250
1899
  #, fuzzy
1900
  msgid "Before and after content"
1901
  msgstr "コンテンツの前と後ろ"
1902
 
1903
- #: dashboard/publisher/groups-edit.php:213
1904
- #: dashboard/publisher/groups-edit.php:251
1905
  msgid "Inside the content..."
1906
  msgstr ""
1907
 
1908
- #: dashboard/publisher/groups-edit.php:219
1909
- #: dashboard/publisher/groups-edit.php:257
1910
  msgid "after the middle paragraph"
1911
  msgstr ""
1912
 
1913
- #: dashboard/publisher/groups-edit.php:220
1914
- #: dashboard/publisher/groups-edit.php:258
1915
  msgid "after the 1st paragraph"
1916
  msgstr ""
1917
 
1918
- #: dashboard/publisher/groups-edit.php:221
1919
- #: dashboard/publisher/groups-edit.php:259
1920
  msgid "after the 2nd paragraph"
1921
  msgstr ""
1922
 
1923
- #: dashboard/publisher/groups-edit.php:222
1924
- #: dashboard/publisher/groups-edit.php:260
1925
  msgid "after the 3rd paragraph"
1926
  msgstr ""
1927
 
1928
- #: dashboard/publisher/groups-edit.php:223
1929
- #: dashboard/publisher/groups-edit.php:261
1930
  msgid "after the 4th paragraph"
1931
  msgstr ""
1932
 
1933
- #: dashboard/publisher/groups-edit.php:224
1934
- #: dashboard/publisher/groups-edit.php:262
1935
  msgid "after the 5th paragraph"
1936
  msgstr ""
1937
 
1938
- #: dashboard/publisher/groups-edit.php:225
1939
- #: dashboard/publisher/groups-edit.php:263
1940
  msgid "after the 6th paragraph"
1941
  msgstr ""
1942
 
1943
- #: dashboard/publisher/groups-edit.php:226
1944
- #: dashboard/publisher/groups-edit.php:264
1945
  msgid "after the 7th paragraph"
1946
  msgstr ""
1947
 
1948
- #: dashboard/publisher/groups-edit.php:227
1949
- #: dashboard/publisher/groups-edit.php:265
1950
  msgid "after the 8th paragraph"
1951
  msgstr ""
1952
 
1953
- #: dashboard/publisher/groups-edit.php:233
1954
  msgid "Which categories?"
1955
  msgstr "どのカテゴリーですか?"
1956
 
1957
- #: dashboard/publisher/groups-edit.php:238
1958
  #, fuzzy
1959
  msgid "Click the categories posts you want the adverts to show in."
1960
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1961
 
1962
- #: dashboard/publisher/groups-edit.php:243
1963
  msgid "In pages?"
1964
  msgstr ""
1965
 
1966
- #: dashboard/publisher/groups-edit.php:271
1967
  msgid "Which pages?"
1968
  msgstr "どのページですか?"
1969
 
1970
- #: dashboard/publisher/groups-edit.php:276
1971
  #, fuzzy
1972
  msgid "Click the pages you want the adverts to show in."
1973
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1974
 
1975
- #: dashboard/publisher/groups-edit.php:304
1976
  #, fuzzy
1977
  msgid "Wrapper code"
1978
  msgstr "Wrapper code (Optional) - 各広告を囲みます。"
1979
 
1980
- #: dashboard/publisher/groups-edit.php:305
1981
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1982
  msgstr ""
1983
 
1984
- #: dashboard/publisher/groups-edit.php:309
1985
  msgid "Before advert"
1986
  msgstr ""
1987
 
1988
- #: dashboard/publisher/groups-edit.php:313
1989
  msgid "Options:"
1990
  msgstr "オプション:"
1991
 
1992
- #: dashboard/publisher/groups-edit.php:317
1993
  msgid "After advert"
1994
  msgstr ""
1995
 
1996
- #: dashboard/publisher/groups-edit.php:326
1997
  msgid "Select adverts"
1998
  msgstr ""
1999
 
2000
- #: dashboard/publisher/groups-edit.php:331
2001
  msgid "Choose adverts"
2002
  msgstr ""
2003
 
2004
- #: dashboard/publisher/groups-edit.php:337
2005
  msgid "Visible until"
2006
  msgstr "掲載期限"
2007
 
2008
- #: dashboard/publisher/groups-edit.php:379
2009
  msgid "No adverts created!"
2010
  msgstr ""
2011
 
@@ -2025,8 +2017,8 @@ msgstr "グループを削除しようとしています。"
2025
  msgid "This action can not be undone!"
2026
  msgstr "この処理は復旧できません。注意して下さい。"
2027
 
2028
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
2029
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2030
  msgid "OK to continue, CANCEL to stop."
2031
  msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
2032
 
@@ -2039,163 +2031,178 @@ msgstr "グループがまだ作られていません。"
2039
  msgid "Statistics for group"
2040
  msgstr "統計 "
2041
 
2042
- #: dashboard/settings/advertisers.php:12
2043
  msgid "Advertisers - Available in AdRotate Pro"
2044
  msgstr ""
2045
 
2046
- #: dashboard/settings/advertisers.php:13
2047
  #, fuzzy
2048
  msgid "Enable advertisers so they can review and manage their own ads."
2049
  msgstr "広告管理"
2050
 
2051
- #: dashboard/settings/advertisers.php:16
2052
  #, fuzzy
2053
  msgid "Enable Advertisers"
2054
  msgstr "広告主から提出された広告を承認する権限"
2055
 
2056
- #: dashboard/settings/advertisers.php:18
2057
  #, fuzzy
2058
  msgid "Allow adverts to be coupled to users (Advertisers)."
2059
  msgstr "広告主やユーザーのレポートページを見れる権限です。"
2060
 
2061
- #: dashboard/settings/advertisers.php:22
2062
  #, fuzzy
2063
  msgid "Edit/update adverts"
2064
  msgstr "広告の追加・編集管理"
2065
 
2066
- #: dashboard/settings/advertisers.php:24
2067
  #, fuzzy
2068
  msgid "Allow advertisers to add new or edit their adverts."
2069
  msgstr "広告の追加・編集管理"
2070
 
2071
- #: dashboard/settings/advertisers.php:30
 
 
 
 
 
 
 
 
2072
  msgid ""
2073
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2074
  "be enabled, too."
2075
  msgstr ""
2076
 
2077
- #: dashboard/settings/advertisers.php:34
2078
  #, fuzzy
2079
  msgid "Advertiser role"
2080
  msgstr "広告主"
2081
 
2082
- #: dashboard/settings/advertisers.php:36
2083
  msgid "Create a seperate user role for your advertisers."
2084
  msgstr ""
2085
 
2086
- #: dashboard/settings/advertisers.php:37
2087
  msgid ""
2088
  "Don't forget to give these users access to their advertiser dashboard via "
2089
  "the Roles tab."
2090
  msgstr ""
2091
 
2092
- #: dashboard/settings/general.php:12
 
 
 
 
 
 
 
2093
  msgid "General Settings"
2094
  msgstr ""
2095
 
2096
- #: dashboard/settings/general.php:13
2097
  msgid "General settings for AdRotate."
2098
  msgstr ""
2099
 
2100
- #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2101
  msgid "Some options are only available in AdRotate Pro!"
2102
  msgstr ""
2103
 
2104
- #: dashboard/settings/general.php:16
2105
  msgid "Shortcode in widgets"
2106
  msgstr ""
2107
 
2108
- #: dashboard/settings/general.php:17
2109
  msgid ""
2110
  "Enable this option to if your theme does not support shortcodes in the "
2111
  "WordPress text widget."
2112
  msgstr ""
2113
 
2114
- #: dashboard/settings/general.php:20
2115
  msgid "Disable live preview"
2116
  msgstr ""
2117
 
2118
- #: dashboard/settings/general.php:21
2119
  msgid ""
2120
  "Enable this option if you have faulty adverts that overflow their designated "
2121
  "area while creating/editing adverts."
2122
  msgstr ""
2123
 
2124
- #: dashboard/settings/general.php:24
2125
  msgid "Disable dynamic mode"
2126
  msgstr ""
2127
 
2128
- #: dashboard/settings/general.php:25
2129
  msgid ""
2130
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2131
  "you notice skipping or jumpy content."
2132
  msgstr ""
2133
 
2134
- #: dashboard/settings/general.php:28
2135
  msgid "Load jQuery"
2136
  msgstr ""
2137
 
2138
- #: dashboard/settings/general.php:29
2139
  msgid ""
2140
  "Enable this option if your theme does not load jQuery. jQuery is required "
2141
  "for dynamic groups, statistics and some other features."
2142
  msgstr ""
2143
 
2144
- #: dashboard/settings/general.php:32
2145
  msgid "Load scripts in footer?"
2146
  msgstr ""
2147
 
2148
- #: dashboard/settings/general.php:33
2149
  msgid ""
2150
  "Enable this option if you want to load all AdRotate Javascripts in the "
2151
  "footer of your site."
2152
  msgstr ""
2153
 
2154
- #: dashboard/settings/general.php:36
2155
  msgid "Adblock disguise"
2156
  msgstr ""
2157
 
2158
- #: dashboard/settings/general.php:38
2159
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2160
  msgstr ""
2161
 
2162
- #: dashboard/settings/general.php:39
2163
  msgid ""
2164
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2165
  msgstr ""
2166
 
2167
- #: dashboard/settings/general.php:39
2168
  msgid ""
2169
  "To also apply this feature to widgets, use a text widget with a shortcode "
2170
  "instead of the AdRotate widget."
2171
  msgstr ""
2172
 
2173
- #: dashboard/settings/general.php:39
2174
  msgid ""
2175
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2176
  "feature will have little effect!"
2177
  msgstr ""
2178
 
2179
- #: dashboard/settings/general.php:44
2180
  #, fuzzy
2181
  msgid "Banner Folder"
2182
  msgstr "画像バナー"
2183
 
2184
- #: dashboard/settings/general.php:45
2185
  #, fuzzy
2186
  msgid "Set a location where your banner images will be stored."
2187
  msgstr "バナーがないか、利用不可か適応されていません。"
2188
 
2189
- #: dashboard/settings/general.php:48
2190
  #, fuzzy
2191
  msgid "Location"
2192
  msgstr "バナーがないか、利用不可か適応されていません。"
2193
 
2194
- #: dashboard/settings/general.php:50
2195
  msgid "(Default: wp-content/banners/)."
2196
  msgstr ""
2197
 
2198
- #: dashboard/settings/general.php:51
2199
  #, fuzzy
2200
  msgid ""
2201
  "To try and trick ad blockers you could set the folder to something crazy "
@@ -2204,44 +2211,44 @@ msgstr ""
2204
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
2205
  "を再度保存してください!"
2206
 
2207
- #: dashboard/settings/general.php:52
2208
  #, fuzzy
2209
  msgid ""
2210
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2211
  "will show errors when the folder is missing."
2212
  msgstr "画像バナー"
2213
 
2214
- #: dashboard/settings/general.php:57
2215
  #, fuzzy
2216
  msgid "Bot filter"
2217
  msgstr "ユーザーエージェントフィルター"
2218
 
2219
- #: dashboard/settings/general.php:58
2220
  msgid "The bot filter is used for the AdRotate stats tracker."
2221
  msgstr ""
2222
 
2223
- #: dashboard/settings/general.php:61
2224
  msgid "User-Agent Filter"
2225
  msgstr "ユーザーエージェントフィルター"
2226
 
2227
- #: dashboard/settings/general.php:64
2228
  msgid ""
2229
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2230
  msgstr ""
2231
 
2232
- #: dashboard/settings/general.php:65
2233
  msgid ""
2234
  "Keep in mind that this might give false positives. The word 'fire' also "
2235
  "matches 'firefox', but not vice-versa. So be careful!"
2236
  msgstr ""
2237
 
2238
- #: dashboard/settings/general.php:66
2239
  msgid ""
2240
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2241
  "characters are stripped out."
2242
  msgstr ""
2243
 
2244
- #: dashboard/settings/general.php:67
2245
  msgid ""
2246
  "Additionally to the list specified here, empty User-Agents are blocked as "
2247
  "well."
@@ -2249,86 +2256,118 @@ msgstr ""
2249
  "さらに、ここで指定したリストには、空のユーザーエージェントも同様にブロックさ"
2250
  "れます。"
2251
 
2252
- #: dashboard/settings/general.php:67
2253
  msgid "Learn more about"
2254
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
2255
 
2256
- #: dashboard/settings/general.php:67
2257
  msgid "user-agents"
2258
  msgstr "ユーザーエージェント[英語]"
2259
 
2260
- #: dashboard/settings/geotargeting.php:12
2261
  msgid "Geo Targeting - Available in AdRotate Pro"
2262
  msgstr ""
2263
 
2264
- #: dashboard/settings/geotargeting.php:13
2265
  msgid "Target certain areas in the world for better advertising oppurtunities."
2266
  msgstr ""
2267
 
2268
- #: dashboard/settings/geotargeting.php:16
2269
  msgid "Which Geo Service"
2270
  msgstr ""
2271
 
2272
- #: dashboard/settings/geotargeting.php:25
2273
- msgid ""
2274
- "The most complete and accurate geo targeting you can get for only $20 USD "
2275
- "per 50000 lookups."
 
 
 
 
 
 
 
 
2276
  msgstr ""
2277
 
2278
- #: dashboard/settings/geotargeting.php:27
2279
- msgid "Free lookups every day, uses GeoLite2 databases from MaxMind!"
 
 
2280
  msgstr ""
2281
 
2282
  #: dashboard/settings/geotargeting.php:33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2283
  msgid "Geo Cookie Lifespan"
2284
  msgstr ""
2285
 
2286
- #: dashboard/settings/geotargeting.php:42
2287
  msgid "Hours."
2288
  msgstr ""
2289
 
2290
- #: dashboard/settings/geotargeting.php:43
2291
  msgid ""
2292
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2293
  "cookie last? A longer period is less accurate for mobile users but may "
2294
  "reduce the usage of your lookups drastically."
2295
  msgstr ""
2296
 
2297
- #: dashboard/settings/geotargeting.php:49
2298
  msgid "MaxMind City/Country"
2299
  msgstr ""
2300
 
2301
- #: dashboard/settings/geotargeting.php:52
2302
  msgid "Username/Email"
2303
  msgstr ""
2304
 
2305
- #: dashboard/settings/geotargeting.php:56
2306
  msgid "Password/License Key"
2307
  msgstr ""
2308
 
2309
- #: dashboard/settings/maintenance.php:12
2310
  msgid "Maintenance"
2311
  msgstr "メンテナンス"
2312
 
2313
- #: dashboard/settings/maintenance.php:13
2314
  msgid ""
2315
  "Use these functions when you notice your database is slow, unresponsive and "
2316
  "sluggish."
2317
  msgstr ""
2318
 
2319
- #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2320
  msgid "Optimize Database"
2321
  msgstr "データベースの最適化"
2322
 
2323
- #: dashboard/settings/maintenance.php:18
2324
  msgid "You are about to optimize the AdRotate database."
2325
  msgstr "AdRotateのデータベースの最適化を行います。"
2326
 
2327
- #: dashboard/settings/maintenance.php:18
2328
  msgid "Did you make a backup of your database?"
2329
  msgstr "データベースのバックアップを取りましたか?"
2330
 
2331
- #: dashboard/settings/maintenance.php:18
2332
  msgid ""
2333
  "This may take a moment and may cause your website to respond slow "
2334
  "temporarily!"
@@ -2336,83 +2375,83 @@ msgstr ""
2336
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2337
  "可能性があります。"
2338
 
2339
- #: dashboard/settings/maintenance.php:19
2340
  msgid "Cleans up overhead data in the AdRotate tables."
2341
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
2342
 
2343
- #: dashboard/settings/maintenance.php:20
2344
  #, fuzzy
2345
  msgid ""
2346
  "Overhead data is accumulated garbage resulting from many changes you've "
2347
  "made. This can vary from nothing to hundreds of KiB of data."
2348
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
2349
 
2350
- #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2351
  msgid "Clean-up Database"
2352
  msgstr "データベースのクリーンアップ"
2353
 
2354
- #: dashboard/settings/maintenance.php:26
2355
  #, fuzzy
2356
  msgid ""
2357
  "You are about to clean up your database. This may delete expired schedules "
2358
  "and older statistics."
2359
  msgstr "データベースのクリーンアップ"
2360
 
2361
- #: dashboard/settings/maintenance.php:26
2362
  #, fuzzy
2363
  msgid "Are you sure you want to continue?"
2364
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2365
 
2366
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2367
  #, fuzzy
2368
  msgid "This might take a while and may slow down your site during this action!"
2369
  msgstr ""
2370
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2371
  "可能性があります。"
2372
 
2373
- #: dashboard/settings/maintenance.php:27
2374
  #, fuzzy
2375
  msgid "Delete stats older than 356 days (Optional)."
2376
  msgstr "広告の削除やリセットする権限"
2377
 
2378
- #: dashboard/settings/maintenance.php:28
2379
  msgid ""
2380
  "AdRotate creates empty records when you start making ads, groups or "
2381
  "schedules. In rare occasions these records are faulty."
2382
  msgstr ""
2383
 
2384
- #: dashboard/settings/maintenance.php:28
2385
  msgid ""
2386
  "If you made an ad, group or schedule that does not save when you make it use "
2387
  "this button to delete those empty records."
2388
  msgstr ""
2389
 
2390
- #: dashboard/settings/maintenance.php:28
2391
  msgid ""
2392
  "Additionally you can clean up old schedules and/or statistics. This will "
2393
  "improve the speed of your site."
2394
  msgstr ""
2395
 
2396
- #: dashboard/settings/maintenance.php:32
2397
  msgid "Re-evaluate Ads"
2398
  msgstr "広告の再評価"
2399
 
2400
- #: dashboard/settings/maintenance.php:34
2401
  msgid "Re-evaluate all ads"
2402
  msgstr "すべての広告の再評価"
2403
 
2404
- #: dashboard/settings/maintenance.php:34
2405
  msgid "You are about to check all ads for errors."
2406
  msgstr "すべての広告のエラーをチェックしようとしています。"
2407
 
2408
- #: dashboard/settings/maintenance.php:35
2409
  #, fuzzy
2410
  msgid ""
2411
  "This will apply all evaluation rules to all ads to see if any error slipped "
2412
  "in. Normally you should not need this feature."
2413
  msgstr "すべての広告のエラーをチェックしようとしています。"
2414
 
2415
- #: dashboard/settings/maintenance.php:39
2416
  msgid ""
2417
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2418
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2425,11 +2464,11 @@ msgid ""
2425
  "is not a valid point in any case."
2426
  msgstr ""
2427
 
2428
- #: dashboard/settings/maintenance.php:41
2429
  msgid "Troubleshooting"
2430
  msgstr "トラブルシューティング(トラブル対応)"
2431
 
2432
- #: dashboard/settings/maintenance.php:42
2433
  msgid ""
2434
  "The below options are not meant for normal use and are only there for "
2435
  "developers to review saved settings or how ads are selected. These can be "
@@ -2437,121 +2476,133 @@ msgid ""
2437
  "SHOULD BE LEFT UNCHECKED!!"
2438
  msgstr ""
2439
 
2440
- #: dashboard/settings/maintenance.php:45
2441
  msgid "Developer Debug"
2442
  msgstr "開発者向けデバッグ"
2443
 
2444
- #: dashboard/settings/maintenance.php:47
2445
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2446
  msgstr ""
2447
 
2448
- #: dashboard/settings/maintenance.php:48
2449
  msgid "View advert specs and (some) stats in the dashboard."
2450
  msgstr ""
2451
 
2452
- #: dashboard/settings/maintenance.php:49
2453
  #, fuzzy
2454
  msgid ""
2455
  "Disable timers for clicks and impressions and enable a alert window for "
2456
  "clicktracking."
2457
  msgstr "テキストリンク(クリック数調査付):"
2458
 
2459
- #: dashboard/settings/maintenance.php:50
2460
  #, fuzzy
2461
  msgid "Temporarily disable encryption on the redirect url."
2462
  msgstr ""
2463
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2464
  "可能性があります。"
2465
 
2466
- #: dashboard/settings/maintenance.php:55
2467
  msgid "Status and Versions"
2468
  msgstr ""
2469
 
2470
- #: dashboard/settings/maintenance.php:58
2471
- #, fuzzy
2472
- msgid "Current version:"
2473
- msgstr "現在のスケジュール"
2474
-
2475
- #: dashboard/settings/maintenance.php:59
2476
- #, fuzzy
2477
- msgid "Previous version:"
2478
- msgstr "プレビュー"
2479
-
2480
  #: dashboard/settings/maintenance.php:62
2481
  #, fuzzy
2482
- msgid "Current database version:"
2483
- msgstr "現在のスケジュール"
2484
-
2485
- #: dashboard/settings/maintenance.php:63
2486
- #, fuzzy
2487
- msgid "Previous database version:"
2488
- msgstr "データベースの最適化"
2489
-
2490
- #: dashboard/settings/maintenance.php:66
2491
- #, fuzzy
2492
  msgid "Current status of adverts"
2493
  msgstr "現在のスケジュール"
2494
 
2495
- #: dashboard/settings/maintenance.php:67
2496
  #, fuzzy
2497
  msgid "Normal"
2498
  msgstr "平均的表示(50%程度)"
2499
 
2500
- #: dashboard/settings/maintenance.php:67
2501
  #, fuzzy
2502
  msgid "Error"
2503
  msgstr "理解できないエラーが起こっています。"
2504
 
2505
- #: dashboard/settings/maintenance.php:67
2506
  #, fuzzy
2507
  msgid "Expired"
2508
  msgstr "個の広告が期限切れです。"
2509
 
2510
- #: dashboard/settings/maintenance.php:67
2511
  #, fuzzy
2512
  msgid "Expires Soon"
2513
  msgstr "これは出来る限り早く修正して下さい。"
2514
 
2515
- #: dashboard/settings/maintenance.php:67
2516
  msgid "Unknown"
2517
  msgstr ""
2518
 
2519
- #: dashboard/settings/maintenance.php:70
2520
  msgid "Banners/assets Folder"
2521
  msgstr ""
2522
 
2523
- #: dashboard/settings/maintenance.php:72
2524
  msgid "Exists and appears writable"
2525
  msgstr ""
2526
 
2527
- #: dashboard/settings/maintenance.php:72
2528
  msgid "Not writable or does not exist"
2529
  msgstr ""
2530
 
 
 
 
 
2531
  #: dashboard/settings/maintenance.php:76
2532
- #, fuzzy
2533
- msgid "Ad evaluation next run:"
2534
- msgstr "通知先"
2535
 
2536
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
2537
- #, fuzzy
2538
- msgid "Not scheduled!"
2539
- msgstr "掲載期間"
2540
 
2541
- #: dashboard/settings/maintenance.php:80
2542
- #, fuzzy
2543
- msgid "Clean Trackerdata next run:"
2544
- msgstr "データベースのクリーンアップ"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2545
 
2546
- #: dashboard/settings/misc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
2547
  msgid "Miscellaneous"
2548
  msgstr "その他"
2549
 
2550
- #: dashboard/settings/misc.php:15
2551
  msgid "Widget alignment"
2552
  msgstr "ウィジェットの配置"
2553
 
2554
- #: dashboard/settings/misc.php:16
2555
  msgid ""
2556
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2557
  "not always help!)"
@@ -2559,12 +2610,12 @@ msgstr ""
2559
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
2560
  "クスをオンにします。"
2561
 
2562
- #: dashboard/settings/misc.php:19
2563
  #, fuzzy
2564
  msgid "Widget padding"
2565
  msgstr "ブロックの隙間"
2566
 
2567
- #: dashboard/settings/misc.php:20
2568
  #, fuzzy
2569
  msgid ""
2570
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
@@ -2573,38 +2624,38 @@ msgstr ""
2573
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
2574
  "クスをオンにします。"
2575
 
2576
- #: dashboard/settings/misc.php:24
2577
  msgid "NOTICE:"
2578
  msgstr ""
2579
 
2580
- #: dashboard/settings/misc.php:25
2581
  msgid ""
2582
  "You have enabled W3 Total Caching support but not defined the security hash."
2583
  msgstr ""
2584
 
2585
- #: dashboard/settings/misc.php:25
2586
  msgid ""
2587
  "AdRotate has generated the following line for you to add to your wp-config."
2588
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2589
  "add this line, check out the following guide;"
2590
  msgstr ""
2591
 
2592
- #: dashboard/settings/misc.php:25
2593
  msgid "Set up W3 Total Caching"
2594
  msgstr ""
2595
 
2596
- #: dashboard/settings/misc.php:29
2597
  msgid "W3 Total Caching"
2598
  msgstr ""
2599
 
2600
- #: dashboard/settings/misc.php:30
2601
  #, fuzzy
2602
  msgid "Check this box if you use W3 Total Caching on your site."
2603
  msgstr ""
2604
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
2605
  "クスをオンにします。"
2606
 
2607
- #: dashboard/settings/misc.php:34
2608
  #, fuzzy
2609
  msgid ""
2610
  "It may take a while for the ad to start rotating. The caching plugin needs "
@@ -2613,355 +2664,425 @@ msgstr ""
2613
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2614
  "可能性があります。"
2615
 
2616
- #: dashboard/settings/misc.php:34
2617
  #, fuzzy
2618
  msgid ""
2619
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2620
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2621
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2622
 
2623
- #: dashboard/settings/notifications.php:12
2624
  msgid "Notifications"
2625
  msgstr "通知先"
2626
 
2627
- #: dashboard/settings/notifications.php:13
2628
  #, fuzzy
2629
  msgid "Set up who gets notifications if ads need your attention."
2630
  msgstr "すぐに注意を必要とする広告"
2631
 
2632
- #: dashboard/settings/notifications.php:16
2633
  msgid "How to notify"
2634
  msgstr ""
2635
 
2636
- #: dashboard/settings/notifications.php:18
2637
  msgid "Dashboard banner."
2638
  msgstr ""
2639
 
2640
- #: dashboard/settings/notifications.php:19
2641
  #, fuzzy
2642
  msgid "Email message."
2643
  msgstr "広告主のページ"
2644
 
2645
- #: dashboard/settings/notifications.php:20
2646
  #, fuzzy
2647
  msgid "Push notifications to your smartphone."
2648
  msgstr "この通知は、あなたのウェブサイトからあなたに送られています。"
2649
 
2650
- #: dashboard/settings/notifications.php:21
2651
  msgid ""
2652
  "Push notifications are delivered through Pushover, a notification service "
2653
  "for Android and iOS"
2654
  msgstr ""
2655
 
2656
- #: dashboard/settings/notifications.php:21
2657
  msgid ""
2658
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2659
  "information can be found on the pushover website;"
2660
  msgstr ""
2661
 
2662
- #: dashboard/settings/notifications.php:25
2663
  msgid "Test notification"
2664
  msgstr ""
2665
 
2666
- #: dashboard/settings/notifications.php:27
2667
  msgid "Test"
2668
  msgstr "テスト"
2669
 
2670
- #: dashboard/settings/notifications.php:27
2671
  msgid ""
2672
  "Send a test notification to enabled methods. Before you test, save the "
2673
  "options first!"
2674
  msgstr ""
2675
 
2676
- #: dashboard/settings/notifications.php:32
2677
- msgid "Dashboard"
2678
  msgstr ""
2679
 
2680
- #: dashboard/settings/notifications.php:33
2681
  msgid ""
2682
  "These go in a dashboard banner visible to all users with access to AdRotate "
2683
  "on every WordPress dashboard page."
2684
  msgstr ""
2685
 
2686
- #: dashboard/settings/notifications.php:36
2687
- #: dashboard/settings/notifications.php:68
 
2688
  msgid "What"
2689
  msgstr ""
2690
 
2691
- #: dashboard/settings/notifications.php:38
2692
  msgid "Expired adverts."
2693
  msgstr ""
2694
 
2695
- #: dashboard/settings/notifications.php:39
2696
  msgid "Almost expired adverts."
2697
  msgstr ""
2698
 
2699
- #: dashboard/settings/notifications.php:44
2700
- msgid "Email"
2701
  msgstr ""
2702
 
2703
- #: dashboard/settings/notifications.php:45
2704
- #, fuzzy
2705
- msgid "Set up who gets notification emails."
2706
- msgstr "すぐに注意を必要とする広告"
2707
 
2708
- #: dashboard/settings/notifications.php:48
2709
- msgid "Publishers"
 
2710
  msgstr ""
2711
 
2712
- #: dashboard/settings/notifications.php:51
2713
- msgid ""
2714
- "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2715
- "list to a minimum!"
2716
  msgstr ""
2717
- "コンマを付けることにより最大5個のメールアドレスを登録できます。登録は最小限に"
2718
- "抑えて下さい。"
2719
 
2720
- #: dashboard/settings/notifications.php:52
2721
- #, fuzzy
2722
- msgid ""
2723
- "Messages are sent once every 24 hours when needed. If this field is empty no "
2724
- "email notifications will be send."
2725
  msgstr ""
2726
- "必要なときにメッセージが24時間ごとに送信されます。このフィールドが空である場"
2727
- "合、メール通知は無効になります。"
2728
 
2729
- #: dashboard/settings/notifications.php:56
 
2730
  #, fuzzy
2731
- msgid "Advertisers"
2732
- msgstr "広告主から提出された広告を承認する権限"
2733
 
2734
- #: dashboard/settings/notifications.php:59
 
2735
  #, fuzzy
2736
- msgid ""
2737
- "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2738
- "This field may not be empty!"
2739
- msgstr ""
2740
- "最大2個のメールアドレスがコンマ区切りで登録できます。ここは空欄では利用できま"
2741
- "せん。"
2742
 
2743
- #: dashboard/settings/notifications.php:64
2744
- msgid "Push"
 
 
 
2745
  msgstr ""
2746
 
2747
- #: dashboard/settings/notifications.php:65
2748
  msgid ""
2749
- "Receive information about what is happening with your AdRotate setup on your "
2750
- "smartphone via Pushover."
 
 
 
2751
  msgstr ""
2752
 
2753
- #: dashboard/settings/notifications.php:70
2754
- msgid "When you are running out of Geo Targeting Lookups."
2755
  msgstr ""
2756
 
2757
- #: dashboard/settings/notifications.php:71
2758
- msgid "Daily digest of any advert status other than normal."
 
 
2759
  msgstr ""
2760
 
2761
  #: dashboard/settings/notifications.php:72
2762
- msgid "Any advertiser saving an advert in your moderation queue."
 
 
 
 
 
 
 
2763
  msgstr ""
2764
 
2765
- #: dashboard/settings/notifications.php:73
2766
  #, fuzzy
2767
- msgid "A moderator approved an advert from the moderation queue."
2768
- msgstr "承認待ち広告の承認/拒否"
2769
 
2770
- #: dashboard/settings/notifications.php:74
2771
- #, fuzzy
2772
- msgid "A moderator rejected an advert from the moderation queue."
2773
- msgstr "承認待ち広告の承認/拒否"
 
2774
 
2775
- #: dashboard/settings/notifications.php:74
2776
  msgid ""
2777
- "If you have a lot of activity with many advertisers adding/changing adverts "
2778
- "you may get a lot of messages!"
 
 
2779
  msgstr ""
2780
 
2781
- #: dashboard/settings/notifications.php:79
2782
  #, fuzzy
2783
  msgid "User Key"
2784
  msgstr "ユーザーエージェント[英語]"
2785
 
2786
- #: dashboard/settings/notifications.php:81
2787
  msgid "Get your user token"
2788
  msgstr ""
2789
 
2790
- #: dashboard/settings/notifications.php:81
2791
- #: dashboard/settings/notifications.php:87
2792
  msgid "here"
2793
  msgstr ""
2794
 
2795
- #: dashboard/settings/notifications.php:85
2796
  msgid "Api Token"
2797
  msgstr ""
2798
 
2799
- #: dashboard/settings/notifications.php:87
2800
  msgid "Create your"
2801
  msgstr ""
2802
 
2803
- #: dashboard/settings/notifications.php:87
2804
  msgid "App"
2805
  msgstr ""
2806
 
2807
- #: dashboard/settings/notifications.php:87
2808
  msgid "and get your API token"
2809
  msgstr ""
2810
 
2811
- #: dashboard/settings/roles.php:12
2812
  msgid "Roles"
2813
  msgstr ""
2814
 
2815
- #: dashboard/settings/roles.php:13
2816
  msgid "Who has access to what?"
2817
  msgstr ""
2818
 
2819
- #: dashboard/settings/roles.php:16
2820
  msgid "Manage/Add/Edit adverts"
2821
  msgstr "広告の追加・編集管理"
2822
 
2823
- #: dashboard/settings/roles.php:20
2824
  msgid "Role to see and add/edit ads."
2825
  msgstr "広告を追加・編集する権限"
2826
 
2827
- #: dashboard/settings/roles.php:24
2828
  msgid "Delete/Reset adverts"
2829
  msgstr "広告の削除やリセット"
2830
 
2831
- #: dashboard/settings/roles.php:28
2832
  msgid "Role to delete ads and reset stats."
2833
  msgstr "広告の削除やリセットする権限"
2834
 
2835
- #: dashboard/settings/roles.php:32
2836
  msgid "Manage/Add/Edit groups"
2837
  msgstr "グループの追加・編集管理"
2838
 
2839
- #: dashboard/settings/roles.php:36
2840
  msgid "Role to see and add/edit groups."
2841
  msgstr "グループを削除・編集する権限"
2842
 
2843
- #: dashboard/settings/roles.php:40
2844
  msgid "Delete groups"
2845
  msgstr "グループの削除"
2846
 
2847
- #: dashboard/settings/roles.php:44
2848
  msgid "Role to delete groups."
2849
  msgstr "グループを削除できる権限"
2850
 
2851
- #: dashboard/settings/statistics.php:13
2852
  msgid "Track statistics for your adverts."
2853
  msgstr ""
2854
 
2855
- #: dashboard/settings/statistics.php:16
2856
  msgid "How to track stats"
2857
  msgstr ""
2858
 
2859
- #: dashboard/settings/statistics.php:25
2860
  msgid "Tracks impressions and clicks internally"
2861
  msgstr ""
2862
 
2863
- #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2864
- #: dashboard/settings/statistics.php:29
2865
  msgid "manual"
2866
  msgstr ""
2867
 
2868
- #: dashboard/settings/statistics.php:26
2869
  msgid ""
2870
  "Click and Impression recording, Click and impression limits, impression "
2871
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2872
  "will only track impressions."
2873
  msgstr ""
2874
 
2875
- #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2876
  msgid "In AdRotate Pro!"
2877
  msgstr ""
2878
 
2879
- #: dashboard/settings/statistics.php:27
2880
  msgid ""
2881
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2882
  "attributes"
2883
  msgstr ""
2884
 
2885
- #: dashboard/settings/statistics.php:28
2886
  msgid ""
2887
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2888
  "Contents."
2889
  msgstr ""
2890
 
2891
- #: dashboard/settings/statistics.php:29
2892
  msgid ""
2893
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2894
  "uses onClick() and onload() in adverts"
2895
  msgstr ""
2896
 
2897
- #: dashboard/settings/statistics.php:30
2898
  msgid ""
2899
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2900
  "Banner."
2901
  msgstr ""
2902
 
2903
- #: dashboard/settings/statistics.php:36
2904
  msgid "Internal Tracker"
2905
  msgstr ""
2906
 
2907
- #: dashboard/settings/statistics.php:37
2908
  msgid ""
2909
  "The settings below are for the internal tracker and have no effect when "
2910
  "using Piwik/Google Analytics."
2911
  msgstr ""
2912
 
2913
- #: dashboard/settings/statistics.php:40
2914
  #, fuzzy
2915
  msgid "Logged in impressions"
2916
  msgstr "表示数"
2917
 
2918
- #: dashboard/settings/statistics.php:42
2919
  msgid "Track impressions from logged in users."
2920
  msgstr ""
2921
 
2922
- #: dashboard/settings/statistics.php:46
2923
  #, fuzzy
2924
  msgid "Logged in clicks"
2925
  msgstr "クリック"
2926
 
2927
- #: dashboard/settings/statistics.php:48
2928
  #, fuzzy
2929
  msgid "Track clicks from logged in users."
2930
  msgstr "クリック"
2931
 
2932
- #: dashboard/settings/statistics.php:52
2933
  msgid "Impression timer"
2934
  msgstr ""
2935
 
2936
- #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2937
  msgid "Seconds."
2938
  msgstr "秒"
2939
 
2940
- #: dashboard/settings/statistics.php:55
2941
  #, fuzzy
2942
  msgid "Default: 60."
2943
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2944
 
2945
- #: dashboard/settings/statistics.php:55
2946
  #, fuzzy
2947
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2948
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
2949
 
2950
- #: dashboard/settings/statistics.php:59
2951
  msgid "Click timer"
2952
  msgstr ""
2953
 
2954
- #: dashboard/settings/statistics.php:62
2955
  #, fuzzy
2956
  msgid "Default: 86400."
2957
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
2958
 
2959
- #: dashboard/settings/statistics.php:62
2960
  #, fuzzy
2961
  msgid ""
2962
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2963
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
2964
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2965
  #, fuzzy
2966
  #~ msgid "Get more features with AdRotate Pro"
2967
  #~ msgstr ""
@@ -2994,10 +3115,6 @@ msgstr "この数字は、0やマイナスや3600以上ではいけません。"
2994
  #~ msgid "Email Notifications"
2995
  #~ msgstr "メール問い合わせ先"
2996
 
2997
- #, fuzzy
2998
- #~ msgid "Push Notifications"
2999
- #~ msgstr "通知先"
3000
-
3001
  #~ msgid "active ad(s) expired."
3002
  #~ msgstr "個の広告が期限切れです。"
3003
 
@@ -3087,15 +3204,9 @@ msgstr "この数字は、0やマイナスや3600以上ではいけません。"
3087
  #~ msgid "Barely visible"
3088
  #~ msgstr "稀な表示(20%程度)"
3089
 
3090
- #~ msgid "Less than average"
3091
- #~ msgstr "標準より少し少ない表示(40%程度)"
3092
-
3093
  #~ msgid "Normal coverage"
3094
  #~ msgstr "平均的表示(50%程度)"
3095
 
3096
- #~ msgid "More than average"
3097
- #~ msgstr "平均よりも多めの表示(70%程度)"
3098
-
3099
  #~ msgid "Best visibility"
3100
  #~ msgstr "優先表示(100~90%程度)"
3101
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-17 23:25+0800\n"
6
+ "PO-Revision-Date: 2016-07-17 23:25+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: ja_JP\n"
16
  "X-Generator: Poedit 1.8.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:842
20
  msgid "No files found"
21
  msgstr "ファイルが見つかりません。"
22
 
23
+ #: adrotate-functions.php:845
24
  msgid "Folder not found or not accessible"
25
  msgstr "フォルダーが存在しないかアクセス出来ません。"
26
 
27
+ #: adrotate-functions.php:894
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
+ #: adrotate-functions.php:898
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
+ #: adrotate-functions.php:902
36
  msgid "Ad(s) deleted"
37
  msgstr "広告削除"
38
 
39
+ #: adrotate-functions.php:906
40
  msgid "Group deleted"
41
  msgstr "グループの削除"
42
 
43
+ #: adrotate-functions.php:910
44
  msgid "Ad(s) statistics reset"
45
  msgstr "広告の統計情報初期化"
46
 
47
+ #: adrotate-functions.php:914
48
  msgid "Ad(s) renewed"
49
  msgstr "広告の更新"
50
 
51
+ #: adrotate-functions.php:918
52
  msgid "Ad(s) deactivated"
53
  msgstr "広告の利用停止"
54
 
55
+ #: adrotate-functions.php:922
56
  msgid "Ad(s) activated"
57
  msgstr "広告の利用可能化"
58
 
59
+ #: adrotate-functions.php:926
60
  msgid "Group including it's Ads deleted"
61
  msgstr "削除された広告がグループに含まれています。"
62
 
63
+ #: adrotate-functions.php:930
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "エクスポートオプション"
67
 
68
+ #: adrotate-functions.php:935
69
  msgid "Settings saved"
70
  msgstr "設定を保存します。"
71
 
72
+ #: adrotate-functions.php:939
73
  msgid "Database optimized"
74
  msgstr "データベースの最適化"
75
 
76
+ #: adrotate-functions.php:943
77
  msgid "Database repaired"
78
  msgstr "データベースの修復"
79
 
80
+ #: adrotate-functions.php:947
81
  #, fuzzy
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr "広告"
84
 
85
+ #: adrotate-functions.php:951
86
  msgid "Empty database records removed"
87
  msgstr "空のデータベースは削除されました。"
88
 
89
+ #: adrotate-functions.php:956
90
  msgid "Action prohibited"
91
  msgstr "今の操作は禁止されました。"
92
 
93
+ #: adrotate-functions.php:960
94
  msgid ""
95
  "The ad was saved but has an issue which might prevent it from working "
96
  "properly. Review the colored ad."
97
  msgstr ""
98
 
99
+ #: adrotate-functions.php:964
100
  msgid "No data found in selected time period"
101
  msgstr "選ばれた期間が見つかりません。"
102
 
103
+ #: adrotate-functions.php:968
104
  msgid "Database can only be optimized or cleaned once every hour"
105
  msgstr "データベースは、1時間ごとに最適化または洗浄することができます。"
106
 
107
+ #: adrotate-functions.php:972
108
  msgid "Form can not be (partially) empty!"
109
  msgstr ""
110
 
111
+ #: adrotate-functions.php:976
112
  msgid "No ads found."
113
  msgstr ""
114
 
115
+ #: adrotate-functions.php:980
116
  msgid "Unexpected error"
117
  msgstr ""
118
 
119
+ #: adrotate-manage-publisher.php:685
120
  msgid "AdRotate Advertiser"
121
  msgstr ""
122
 
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
  "手間のカスタマイズが必要など詳細にご対応致します。詳細は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
  "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
  "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
+ #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
210
  msgid "Check adverts"
211
  msgstr ""
212
 
213
+ #: adrotate-output.php:675
214
  msgid ""
215
  "You have enable caching support but W3 Total Cache is not active on your "
216
  "site!"
217
  msgstr ""
218
 
219
+ #: adrotate-output.php:678
220
  msgid ""
221
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
222
  "not set."
223
  msgstr ""
224
 
225
+ #: adrotate-output.php:683
226
  msgid "Your AdRotate Banner folder is not writable or does not exist."
227
  msgstr ""
228
 
229
+ #: adrotate-output.php:723 dashboard/adrotatepro.php:99
230
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
231
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
232
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
233
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
234
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
235
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
236
+ #: dashboard/settings/geotargeting.php:35
237
  #, fuzzy
238
  msgid "Buy now"
239
  msgstr "継続する場合は対応して下さい。"
240
 
241
+ #: adrotate-output.php:724
242
  msgid ""
243
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
244
  "to the <strong>PRO</strong> version"
245
  msgstr ""
246
 
247
+ #: adrotate-output.php:724
248
  #, php-format
249
  msgid ""
250
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
251
  msgstr ""
252
 
253
+ #: adrotate-output.php:724
254
  msgid "Thank you for your purchase!"
255
  msgstr ""
256
 
257
+ #: adrotate-output.php:785
258
  msgid ""
259
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
260
  "this menu. Check out the"
261
  msgstr ""
262
 
263
+ #: adrotate-output.php:785
264
  msgid "manuals"
265
  msgstr "マニュアル(英語サイト)"
266
 
267
+ #: adrotate-output.php:785 adrotate-output.php:852
268
  msgid "and"
269
  msgstr ""
270
 
271
+ #: adrotate-output.php:785
272
  #, fuzzy
273
  msgid "forums"
274
  msgstr "フォーラム"
275
 
276
+ #: adrotate-output.php:815
277
  #, fuzzy
278
  msgid "Useful Links"
279
  msgstr "役に立つ情報"
280
 
281
+ #: adrotate-output.php:816
282
  msgid "Useful links to learn more about AdRotate"
283
  msgstr ""
284
 
285
+ #: adrotate-output.php:818
286
  msgid "AdRotate website"
287
  msgstr ""
288
 
289
+ #: adrotate-output.php:819
290
  #, fuzzy
291
  msgid "Getting Started With AdRotate"
292
  msgstr ""
293
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
294
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
295
 
296
+ #: adrotate-output.php:820
297
  #, fuzzy
298
  msgid "AdRotate manuals"
299
  msgstr "AdRotate Blog"
300
 
301
+ #: adrotate-output.php:821
302
  #, fuzzy
303
  msgid "AdRotate Support Forum"
304
  msgstr "AdRotate Blog"
305
 
306
+ #: adrotate-output.php:844
307
  #, fuzzy
308
  msgid "Help AdRotate Grow"
309
  msgstr "AdRotate Blog"
310
 
311
+ #: adrotate-output.php:845
312
  msgid "Follow Arnan on Facebook"
313
  msgstr ""
314
 
315
+ #: adrotate-output.php:852
316
  msgid ""
317
  "A lot of users only think to review AdRotate when something goes wrong while "
318
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
319
  msgstr ""
320
 
321
+ #: adrotate-output.php:852
322
  msgid "If you find AdRotate useful please leave your honest"
323
  msgstr ""
324
 
325
+ #: adrotate-output.php:852
326
  msgid "rating"
327
  msgstr ""
328
 
329
+ #: adrotate-output.php:852
330
  #, fuzzy
331
  msgid "review"
332
  msgstr "全般レポートを見れる権限"
333
 
334
+ #: adrotate-output.php:852
335
  msgid "on WordPress.org to help AdRotate grow in a positive way"
336
  msgstr ""
337
 
338
+ #: adrotate-output.php:885 dashboard/settings/notifications.php:50
339
+ #: dashboard/settings/notifications.php:80
340
  #, fuzzy
341
  msgid "Available in AdRotate Pro"
342
  msgstr "AdRotate Blog"
343
 
344
+ #: adrotate-output.php:885
345
  #, fuzzy
346
  msgid "More information..."
347
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
348
 
349
+ #: adrotate-output.php:886
350
  #, fuzzy
351
  msgid "This feature is available in AdRotate Pro"
352
  msgstr "この機能は使いません。"
353
 
354
+ #: adrotate-output.php:886
355
  #, fuzzy
356
  msgid "Learn more"
357
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
358
 
359
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
360
+ #: dashboard/publisher/adverts-edit.php:235
361
  msgid "January"
362
  msgstr "1月"
363
 
364
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
365
+ #: dashboard/publisher/adverts-edit.php:236
366
  msgid "February"
367
  msgstr "2月"
368
 
369
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
370
+ #: dashboard/publisher/adverts-edit.php:237
371
  msgid "March"
372
  msgstr "3月"
373
 
374
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
375
+ #: dashboard/publisher/adverts-edit.php:238
376
  msgid "April"
377
  msgstr "4月"
378
 
379
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
380
+ #: dashboard/publisher/adverts-edit.php:239
381
  msgid "May"
382
  msgstr "5月"
383
 
384
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
385
+ #: dashboard/publisher/adverts-edit.php:240
386
  msgid "June"
387
  msgstr "6月"
388
 
389
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
390
+ #: dashboard/publisher/adverts-edit.php:241
391
  msgid "July"
392
  msgstr "7月"
393
 
394
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
395
+ #: dashboard/publisher/adverts-edit.php:242
396
  msgid "August"
397
  msgstr "8月"
398
 
399
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
400
+ #: dashboard/publisher/adverts-edit.php:243
401
  msgid "September"
402
  msgstr "9月"
403
 
404
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
405
+ #: dashboard/publisher/adverts-edit.php:244
406
  msgid "October"
407
  msgstr "10月"
408
 
409
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
410
+ #: dashboard/publisher/adverts-edit.php:245
411
  msgid "November"
412
  msgstr "11月"
413
 
414
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
415
+ #: dashboard/publisher/adverts-edit.php:246
416
  msgid "December"
417
  msgstr "12月"
418
 
476
  msgid "Fill in the ID of the type you want to display!"
477
  msgstr "表示したいタイプのIDを入力してください!"
478
 
479
+ #: adrotate.php:102
480
  #, fuzzy
481
  msgid "General Info"
482
  msgstr "一般設定"
483
 
484
+ #: adrotate.php:103
485
  #, fuzzy
486
  msgid "AdRotate Pro"
487
  msgstr "AdRotate Blog"
488
 
489
+ #: adrotate.php:104
490
  msgid "Manage Adverts"
491
  msgstr ""
492
 
493
+ #: adrotate.php:105 dashboard/publisher/groups-main.php:12
494
  msgid "Manage Groups"
495
  msgstr "グループの管理"
496
 
497
+ #: adrotate.php:106 adrotate.php:369
498
  #, fuzzy
499
  msgid "Manage Schedules"
500
  msgstr "管理"
501
 
502
+ #: adrotate.php:107
503
  #, fuzzy
504
  msgid "Manage Media"
505
  msgstr "画像リンク先URL:"
506
 
507
+ #: adrotate.php:108
508
  msgid "Settings"
509
  msgstr "設定"
510
 
511
+ #: adrotate.php:128
512
  #, fuzzy
513
  msgid "AdRotate Info"
514
  msgstr "AdRotate Blog"
515
 
516
+ #: adrotate.php:146
517
  #, fuzzy
518
  msgid "AdRotate Professional"
519
  msgstr "AdRotate Blog"
520
 
521
+ #: adrotate.php:186
522
  msgid "Advert Management"
523
  msgstr ""
524
 
525
+ #: adrotate.php:244 adrotate.php:311 adrotate.php:364
526
  msgid "Manage"
527
  msgstr "管理"
528
 
529
+ #: adrotate.php:245 adrotate.php:312 adrotate.php:365
530
  msgid "Add New"
531
  msgstr "新規追加"
532
 
533
+ #: adrotate.php:305
534
  msgid "Group Management"
535
  msgstr "グループの管理"
536
 
537
+ #: adrotate.php:314
538
  msgid "Report"
539
  msgstr "レポート"
540
 
541
+ #: adrotate.php:360
542
  #, fuzzy
543
  msgid "Schedule Management available in AdRotate Pro"
544
  msgstr "この機能は使いません。"
545
 
546
+ #: adrotate.php:370
547
  #, fuzzy
548
  msgid ""
549
  "Schedule management and multiple schedules per advert is available in "
550
  "AdRotate Pro."
551
  msgstr "この機能は使いません。"
552
 
553
+ #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
554
  #: dashboard/publisher/adverts-main.php:114
555
+ #: dashboard/publisher/groups-edit.php:71
556
  #: dashboard/publisher/groups-main.php:89
557
  #, fuzzy
558
  msgid "More information"
559
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
560
 
561
+ #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
562
  #: dashboard/publisher/adverts-error.php:19
563
  #: dashboard/publisher/adverts-main.php:20
564
  #: dashboard/publisher/groups-main.php:20
565
  msgid "Bulk Actions"
566
  msgstr "一括操作"
567
 
568
+ #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
569
  #: dashboard/publisher/adverts-error.php:29
570
  #: dashboard/publisher/adverts-main.php:30
571
  #: dashboard/publisher/groups-main.php:24
572
  msgid "Go"
573
  msgstr "実行"
574
 
575
+ #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
576
  #: dashboard/publisher/adverts-error.php:39
577
  #: dashboard/publisher/adverts-main.php:39
 
578
  #: dashboard/publisher/groups-main.php:32
579
  #, fuzzy
580
  msgid "ID"
581
  msgstr "広告ブロック - ブロックIDを使ってください。"
582
 
583
+ #: adrotate.php:388
584
  msgid "Start"
585
  msgstr ""
586
 
587
+ #: adrotate.php:388
588
  msgid "End"
589
  msgstr ""
590
 
591
+ #: adrotate.php:389
592
  msgid "Ads"
593
  msgstr "広告"
594
 
595
+ #: adrotate.php:391
596
  #, fuzzy
597
  msgid "Max Impressions"
598
  msgstr "表示数"
599
 
600
+ #: adrotate.php:392
601
  #, fuzzy
602
  msgid "Max Clicks"
603
  msgstr "クリック"
604
 
605
+ #: adrotate.php:422
606
  #, fuzzy
607
  msgid "No schedules created yet!"
608
  msgstr "まだブロックが作られていません。"
609
 
610
+ #: adrotate.php:427
611
  #, fuzzy
612
  msgid "Easily manage your schedules from here with AdRotate Pro."
613
  msgstr ""
614
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
615
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
616
 
617
+ #: adrotate.php:427 adrotate.php:490
618
  #, fuzzy
619
  msgid "Upgrade today!"
620
  msgstr "本日"
621
 
622
+ #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
623
+ #: dashboard/publisher/groups-edit.php:383
624
  #, fuzzy
625
  msgid "Expires soon."
626
  msgstr "これは出来る限り早く修正して下さい。"
627
 
628
+ #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
629
+ #: dashboard/publisher/groups-edit.php:384
630
  #, fuzzy
631
  msgid "Has expired."
632
  msgstr "個の広告が期限切れです。"
633
 
634
+ #: adrotate.php:452
635
  #, fuzzy
636
  msgid "Media Management available in AdRotate Pro"
637
  msgstr "この機能は使いません。"
638
 
639
+ #: adrotate.php:454
640
  msgid "Upload images to the AdRotate Pro banners folder from here."
641
  msgstr ""
642
 
643
+ #: adrotate.php:454
644
  msgid ""
645
  "This is useful if you use responsive adverts with multiple images or have "
646
  "HTML5 adverts containing multiple files."
647
  msgstr ""
648
 
649
+ #: adrotate.php:454
650
  #, fuzzy
651
  msgid "Media uploading and management is available in AdRotate Pro."
652
  msgstr "この機能は使いません。"
653
 
654
+ #: adrotate.php:456
655
  msgid "Upload new file"
656
  msgstr ""
657
 
658
+ #: adrotate.php:457
659
  msgid "Accepted files:"
660
  msgstr ""
661
 
662
+ #: adrotate.php:457
663
  msgid "For HTML5 ads you can also upload html and javascript files."
664
  msgstr ""
665
 
666
+ #: adrotate.php:457
667
  msgid "Maximum size is 512Kb."
668
  msgstr ""
669
 
670
+ #: adrotate.php:457
671
  msgid "Important:"
672
  msgstr ""
673
 
674
+ #: adrotate.php:457
675
  msgid ""
676
  "Make sure your file has no spaces or special characters in the name. Replace "
677
  "spaces with a - or _."
678
  msgstr ""
679
 
680
+ #: adrotate.php:457
681
  msgid ""
682
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
683
  "file so it knows about the changed name. For example for the javascript file."
684
  msgstr ""
685
 
686
+ #: adrotate.php:460
687
  msgid ""
688
  "For responsive adverts make sure the filename is in the following format; "
689
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
690
  msgstr ""
691
 
692
+ #: adrotate.php:461
693
  msgid ""
694
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
695
  "filename instead of \".full\" for the various viewports."
696
  msgstr ""
697
 
698
+ #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
699
+ #: dashboard/publisher/groups-edit.php:316
700
  msgid "Example:"
701
  msgstr "例:"
702
 
703
+ #: adrotate.php:462
704
  msgid ""
705
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
706
  "for different viewports."
707
  msgstr ""
708
 
709
+ #: adrotate.php:466
710
  msgid "Upload file"
711
  msgstr ""
712
 
713
+ #: adrotate.php:466
714
  msgid "Click only once per file!"
715
  msgstr ""
716
 
717
+ #: adrotate.php:469
718
  msgid "Available files in"
719
  msgstr ""
720
 
721
+ #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
722
  #: dashboard/publisher/groups-main.php:33
723
  msgid "Name"
724
  msgstr "名前"
725
 
726
+ #: adrotate.php:475
727
  #, fuzzy
728
  msgid "Actions"
729
  msgstr "一括操作"
730
 
731
+ #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
732
+ #: adrotate.php:484 adrotate.php:485 adrotate.php:486
733
  #: dashboard/publisher/adverts-disabled.php:22
734
  #: dashboard/publisher/adverts-error.php:21
735
  #: dashboard/publisher/adverts-main.php:22
736
  msgid "Delete"
737
  msgstr "削除"
738
 
739
+ #: adrotate.php:490
740
  msgid ""
741
  "Make sure the banner images are not in use by adverts when you delete them!"
742
  msgstr ""
743
 
744
+ #: adrotate.php:490
745
  #, fuzzy
746
  msgid "Manage your banner folder from here with AdRotate Pro."
747
  msgstr ""
748
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
749
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
750
 
751
+ #: adrotate.php:516
752
  msgid "AdRotate Settings"
753
  msgstr "AdRotate 設定"
754
 
 
 
 
 
755
  #: dashboard/adrotatepro.php:20
756
  #, fuzzy
757
  msgid "Satisfy your advertisers"
949
  "手間のカスタマイズが必要など詳細にご対応致します。詳細はWEBサイトにお越しくだ"
950
  "さい。英語ですが。"
951
 
952
+ #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
953
  #: dashboard/publisher/groups-main.php:34
954
  #, fuzzy
955
  msgid "Adverts"
996
  msgstr ""
997
 
998
  #: dashboard/publisher/adverts-disabled.php:21
999
+ #: dashboard/publisher/adverts-edit.php:170
1000
  msgid "Activate"
1001
  msgstr "利用可能"
1002
 
1013
  msgstr ""
1014
 
1015
  #: dashboard/publisher/adverts-disabled.php:37
1016
+ #: dashboard/publisher/adverts-edit.php:110
1017
  #: dashboard/publisher/adverts-error.php:41
1018
  #: dashboard/publisher/adverts-main.php:41
1019
  msgid "Title"
1021
 
1022
  #: dashboard/publisher/adverts-disabled.php:38
1023
  #: dashboard/publisher/adverts-main.php:44
1024
+ #: dashboard/publisher/groups-edit.php:329
1025
  #: dashboard/publisher/groups-main.php:36
1026
  #, fuzzy
1027
  msgid "Shown"
1031
  #: dashboard/publisher/adverts-main.php:46
1032
  #: dashboard/publisher/adverts-report.php:36
1033
  #: dashboard/publisher/adverts-report.php:57
1034
+ #: dashboard/publisher/groups-edit.php:330
1035
  #: dashboard/publisher/groups-main.php:38
1036
  #: dashboard/publisher/groups-report.php:37
1037
  #: dashboard/publisher/groups-report.php:58
1074
  msgstr "AdCodeを空にすることはできません!"
1075
 
1076
  #: dashboard/publisher/adverts-edit.php:51
1077
+ msgid ""
1078
+ "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1079
+ "use!"
1080
  msgstr ""
1081
 
1082
  #: dashboard/publisher/adverts-edit.php:54
 
 
 
 
1083
  msgid ""
1084
+ "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1085
+ "use!"
1086
  msgstr ""
1087
 
1088
+ #: dashboard/publisher/adverts-edit.php:57
1089
  msgid ""
1090
  "There is a problem saving the image. Please reset your image and re-save the "
1091
  "ad!"
1092
  msgstr ""
1093
 
1094
+ #: dashboard/publisher/adverts-edit.php:60
 
 
 
 
1095
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1096
  msgstr ""
1097
 
1098
+ #: dashboard/publisher/adverts-edit.php:65
1099
  msgid ""
1100
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1101
  "the ad!"
1103
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
1104
  "を再度保存してください!"
1105
 
1106
+ #: dashboard/publisher/adverts-edit.php:68
1107
  msgid "This ad is expired and currently not shown on your website!"
1108
  msgstr "この広告は期限切れで現在サイトに表示されていません。"
1109
 
1110
+ #: dashboard/publisher/adverts-edit.php:71
1111
  msgid "The ad will expire in less than 2 days!"
1112
  msgstr "この広告は期限が2日間ありません。"
1113
 
1114
+ #: dashboard/publisher/adverts-edit.php:74
1115
  msgid "This ad will expire in less than 7 days!"
1116
  msgstr "この広告は期限が7日間ありません。"
1117
 
1118
+ #: dashboard/publisher/adverts-edit.php:77
1119
  msgid "This ad has been disabled and does not rotate on your site!"
1120
  msgstr "この広告は無効にされていると、サイト上で表示されません!"
1121
 
1122
+ #: dashboard/publisher/adverts-edit.php:102
1123
  #, fuzzy
1124
  msgid "New Advert"
1125
  msgstr "新規追加"
1126
 
1127
+ #: dashboard/publisher/adverts-edit.php:104
1128
  #, fuzzy
1129
  msgid "Edit Advert"
1130
  msgstr "編集"
1131
 
1132
+ #: dashboard/publisher/adverts-edit.php:116
1133
  msgid "AdCode"
1134
  msgstr ""
1135
 
1136
+ #: dashboard/publisher/adverts-edit.php:121
1137
  msgid "Basic Examples:"
1138
  msgstr "設定例:"
1139
 
1140
+ #: dashboard/publisher/adverts-edit.php:128
1141
  msgid "Useful tags"
1142
  msgstr ""
1143
 
1144
+ #: dashboard/publisher/adverts-edit.php:130
1145
  msgid "Insert the advert ID Number."
1146
  msgstr ""
1147
 
1148
+ #: dashboard/publisher/adverts-edit.php:130
1149
+ msgid "Required when selecting a asset below."
1150
  msgstr ""
1151
 
1152
+ #: dashboard/publisher/adverts-edit.php:130
1153
  msgid "Insert the advert name."
1154
  msgstr ""
1155
 
1156
+ #: dashboard/publisher/adverts-edit.php:130
1157
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1158
  msgstr ""
1159
 
1160
+ #: dashboard/publisher/adverts-edit.php:130
1161
  msgid "Add inside the <a> tag to open advert in a new window."
1162
  msgstr ""
1163
 
1164
+ #: dashboard/publisher/adverts-edit.php:130
1165
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1166
  msgstr ""
1167
 
1168
+ #: dashboard/publisher/adverts-edit.php:130
1169
  msgid ""
1170
  "Place the cursor in your AdCode where you want to add any of these tags and "
1171
  "click to add it."
1172
  msgstr ""
1173
 
1174
+ #: dashboard/publisher/adverts-edit.php:135
1175
  msgid "Preview"
1176
  msgstr "プレビュー"
1177
 
1178
+ #: dashboard/publisher/adverts-edit.php:138
1179
  msgid ""
1180
  "Note: While this preview is an accurate one, it might look different then it "
1181
  "does on the website."
1183
  "注意:このプレビューは現設定では正確なものではありますが、ウェブ上では異なる"
1184
  "場合があります。"
1185
 
1186
+ #: dashboard/publisher/adverts-edit.php:139
1187
  msgid ""
1188
  "This is because of CSS differences. Your themes CSS file is not active here!"
1189
  msgstr ""
1190
  "主な原因としてはCSSの設定がここでは反映されないからです。表示にCSSを利用され"
1191
  "ている場合は実ページでご確認下さい。"
1192
 
1193
+ #: dashboard/publisher/adverts-edit.php:144
1194
  msgid "Banner asset"
1195
  msgstr ""
1196
 
1197
+ #: dashboard/publisher/adverts-edit.php:147
1198
  msgid "WordPress media:"
1199
  msgstr ""
1200
 
1201
+ #: dashboard/publisher/adverts-edit.php:147
1202
  #, fuzzy
1203
  msgid "Select Banner"
1204
  msgstr "バナー画像"
1205
 
1206
+ #: dashboard/publisher/adverts-edit.php:149
1207
  msgid "- OR -"
1208
  msgstr "- もしくは -"
1209
 
1210
+ #: dashboard/publisher/adverts-edit.php:151
1211
  msgid "Banner folder:"
1212
  msgstr "画像バナー"
1213
 
1214
+ #: dashboard/publisher/adverts-edit.php:152
1215
  msgid "No image selected"
1216
  msgstr "画像は設定されていません。"
1217
 
1218
+ #: dashboard/publisher/adverts-edit.php:156
1219
+ msgid "Use %asset% in the adcode instead of the file path."
1220
  msgstr ""
1221
 
1222
+ #: dashboard/publisher/adverts-edit.php:156
1223
  msgid ""
1224
  "Use either the text field or the dropdown. If the textfield has content that "
1225
  "field has priority."
1227
  "上記の画像リンクかドロップダウンかを利用します。画像リンクが入力されている場"
1228
  "合はそちらが優先されます。"
1229
 
1230
+ #: dashboard/publisher/adverts-edit.php:161
1231
+ #: dashboard/settings/statistics.php:17
1232
  msgid "Statistics"
1233
  msgstr "統計"
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:163
1236
  msgid "Enable click and impression tracking for this advert."
1237
  msgstr ""
1238
 
1239
+ #: dashboard/publisher/adverts-edit.php:164
1240
  msgid ""
1241
  "Note: Clicktracking does not work for Javascript adverts such as those "
1242
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1243
  "always supported."
1244
  msgstr ""
1245
 
1246
+ #: dashboard/publisher/adverts-edit.php:174
1247
  msgid "Yes, this ad will be used"
1248
  msgstr "この広告を掲載されるように設定する"
1249
 
1250
+ #: dashboard/publisher/adverts-edit.php:175
1251
  #, fuzzy
1252
  msgid "No, do not show this ad anywhere"
1253
  msgstr "表示できるデータがありません。"
1254
 
1255
+ #: dashboard/publisher/adverts-edit.php:182
1256
  #: dashboard/publisher/adverts-main.php:114
1257
+ #: dashboard/publisher/groups-edit.php:71
1258
  #: dashboard/publisher/groups-main.php:89
1259
  #, fuzzy
1260
  msgid "Get more features with AdRotate Pro."
1262
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1263
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1264
 
1265
+ #: dashboard/publisher/adverts-edit.php:185
1266
+ #: dashboard/publisher/adverts-edit.php:285
1267
+ #: dashboard/publisher/adverts-edit.php:408
1268
+ #: dashboard/publisher/adverts-edit.php:449
1269
  #, fuzzy
1270
  msgid "Save Advert"
1271
  msgstr "保存"
1272
 
1273
+ #: dashboard/publisher/adverts-edit.php:186
1274
+ #: dashboard/publisher/adverts-edit.php:286
1275
+ #: dashboard/publisher/adverts-edit.php:409
1276
+ #: dashboard/publisher/adverts-edit.php:450
1277
+ #: dashboard/publisher/groups-edit.php:150
1278
+ #: dashboard/publisher/groups-edit.php:297
1279
+ #: dashboard/publisher/groups-edit.php:389
1280
  msgid "Cancel"
1281
  msgstr "キャンセル"
1282
 
1283
+ #: dashboard/publisher/adverts-edit.php:189
1284
+ #: dashboard/publisher/adverts-edit.php:391
1285
+ #: dashboard/publisher/groups-edit.php:132
1286
+ #: dashboard/publisher/groups-edit.php:279
1287
  msgid "Usage"
1288
  msgstr "利用タグ"
1289
 
1290
+ #: dashboard/publisher/adverts-edit.php:193
1291
+ #: dashboard/publisher/adverts-edit.php:395
1292
+ #: dashboard/publisher/groups-edit.php:136
1293
+ #: dashboard/publisher/groups-edit.php:283
1294
  msgid "Widget"
1295
  msgstr ""
1296
 
1297
+ #: dashboard/publisher/adverts-edit.php:194
1298
+ #: dashboard/publisher/adverts-edit.php:396
1299
  msgid ""
1300
+ "Drag the AdRotate widget to the sidebar where you want to place the advert "
1301
+ "and select the advert or the group the advert is in."
1302
  msgstr ""
1303
 
1304
+ #: dashboard/publisher/adverts-edit.php:197
1305
+ #: dashboard/publisher/adverts-edit.php:399
1306
+ #: dashboard/publisher/groups-edit.php:140
1307
+ #: dashboard/publisher/groups-edit.php:287
1308
  msgid "In a post or page"
1309
  msgstr ""
1310
 
1311
+ #: dashboard/publisher/adverts-edit.php:199
1312
+ #: dashboard/publisher/adverts-edit.php:401
1313
+ #: dashboard/publisher/groups-edit.php:142
1314
+ #: dashboard/publisher/groups-edit.php:289
1315
  msgid "Directly in a theme"
1316
  msgstr ""
1317
 
1318
+ #: dashboard/publisher/adverts-edit.php:205
1319
  msgid "Schedule your advert"
1320
  msgstr ""
1321
 
1322
+ #: dashboard/publisher/adverts-edit.php:209
1323
  msgid "Start date (day/month/year)"
1324
  msgstr ""
1325
 
1326
+ #: dashboard/publisher/adverts-edit.php:230
1327
  msgid "End date (day/month/year)"
1328
  msgstr ""
1329
 
1330
+ #: dashboard/publisher/adverts-edit.php:253
1331
  msgid "Start time (hh:mm)"
1332
  msgstr ""
1333
 
1334
+ #: dashboard/publisher/adverts-edit.php:260
1335
  msgid "End time (hh:mm)"
1336
  msgstr ""
1337
 
1338
+ #: dashboard/publisher/adverts-edit.php:270
1339
  msgid "Maximum Clicks"
1340
  msgstr ""
1341
 
1342
+ #: dashboard/publisher/adverts-edit.php:271
1343
+ #: dashboard/publisher/adverts-edit.php:273
1344
  msgid "Leave empty or 0 to skip this."
1345
  msgstr "※この機能を利用しない場合は、空白か0を設定して下さい。"
1346
 
1347
+ #: dashboard/publisher/adverts-edit.php:272
1348
  msgid "Maximum Impressions"
1349
  msgstr ""
1350
 
1351
+ #: dashboard/publisher/adverts-edit.php:277
1352
  msgid "Important"
1353
  msgstr ""
1354
 
1355
+ #: dashboard/publisher/adverts-edit.php:278
1356
  msgid ""
1357
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1358
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1359
  "14:00 hours. 6AM is 6:00 hours."
1360
  msgstr ""
1361
 
1362
+ #: dashboard/publisher/adverts-edit.php:282
1363
  msgid ""
1364
  "Create multiple and more advanced schedules for each advert with AdRotate "
1365
  "Pro."
1366
  msgstr ""
1367
 
1368
+ #: dashboard/publisher/adverts-edit.php:282
1369
+ #: dashboard/publisher/adverts-edit.php:345
1370
+ #: dashboard/publisher/adverts-edit.php:389
1371
+ #: dashboard/publisher/groups-edit.php:196
1372
  #, fuzzy
1373
  msgid "Upgrade today"
1374
  msgstr "本日"
1375
 
1376
+ #: dashboard/publisher/adverts-edit.php:289
1377
+ #: dashboard/publisher/groups-edit.php:153
1378
  #, fuzzy
1379
  msgid "Advanced"
1380
  msgstr "設定例(高度):"
1381
 
1382
+ #: dashboard/publisher/adverts-edit.php:290
1383
  #, fuzzy
1384
  msgid "Everything below is optional."
1385
  msgstr "タイトル(オプション):"
1386
 
1387
+ #: dashboard/publisher/adverts-edit.php:290
1388
+ msgid "Available in AdRotate Pro!"
1389
  msgstr ""
1390
 
1391
+ #: dashboard/publisher/adverts-edit.php:295
1392
+ #: dashboard/publisher/adverts-main.php:42
1393
+ #: dashboard/publisher/groups-edit.php:332
1394
+ msgid "Weight"
1395
+ msgstr "表示頻度"
1396
 
1397
+ #: dashboard/publisher/adverts-edit.php:298
1398
+ msgid "Few impressions"
1399
  msgstr ""
1400
 
1401
+ #: dashboard/publisher/adverts-edit.php:303
1402
+ msgid "Less than average"
1403
+ msgstr "標準より少し少ない表示(40%程度)"
1404
 
1405
+ #: dashboard/publisher/adverts-edit.php:308
1406
+ msgid "Normal impressions"
1407
  msgstr ""
1408
 
1409
+ #: dashboard/publisher/adverts-edit.php:313
1410
+ msgid "More than average"
1411
+ msgstr "平均よりも多めの表示(70%程度)"
1412
+
1413
+ #: dashboard/publisher/adverts-edit.php:318
1414
+ msgid "Many impressions"
1415
  msgstr ""
1416
 
1417
+ #: dashboard/publisher/adverts-edit.php:323
1418
+ msgid "Mobile"
1419
  msgstr ""
1420
 
1421
+ #: dashboard/publisher/adverts-edit.php:325
1422
+ msgid "Computers"
1423
+ msgstr ""
 
1424
 
1425
+ #: dashboard/publisher/adverts-edit.php:328
1426
+ msgid "Smartphones"
 
 
1427
  msgstr ""
1428
 
1429
+ #: dashboard/publisher/adverts-edit.php:331
1430
+ msgid "Tablets"
1431
+ msgstr ""
 
 
1432
 
1433
+ #: dashboard/publisher/adverts-edit.php:334
1434
  msgid ""
1435
+ "Also enable mobile support in the group this advert goes in or these are "
1436
+ "ignored."
1437
  msgstr ""
1438
 
1439
+ #: dashboard/publisher/adverts-edit.php:338
1440
+ #: dashboard/publisher/groups-edit.php:190
1441
  msgid "Sortorder"
1442
  msgstr ""
1443
 
1444
+ #: dashboard/publisher/adverts-edit.php:340
1445
+ #: dashboard/publisher/groups-edit.php:192
1446
  msgid "For administrative purposes set a sortorder."
1447
  msgstr "管理目的で順序を設定できます。"
1448
 
1449
+ #: dashboard/publisher/adverts-edit.php:340
1450
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1451
  msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
1452
 
1453
+ #: dashboard/publisher/adverts-edit.php:345
1454
  msgid ""
1455
  "With AdRotate Pro you can easily select which devices the advert should show "
1456
  "on!"
1457
  msgstr ""
1458
 
1459
+ #: dashboard/publisher/adverts-edit.php:347
1460
  msgid "Geo Targeting in AdRotate Pro"
1461
  msgstr ""
1462
 
1463
+ #: dashboard/publisher/adverts-edit.php:348
1464
  msgid ""
1465
  "Assign the advert to a group and enable that group to use Geo Targeting."
1466
  msgstr ""
1467
 
1468
+ #: dashboard/publisher/adverts-edit.php:352
1469
  msgid "Cities/States"
1470
  msgstr ""
1471
 
1472
+ #: dashboard/publisher/adverts-edit.php:355
1473
  msgid ""
1474
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1475
  "states ISO codes are supported)"
1476
  msgstr ""
1477
 
1478
+ #: dashboard/publisher/adverts-edit.php:355
1479
  msgid ""
1480
  "AdRotate does not check the validity of names so make sure you spell them "
1481
  "correctly!"
1482
  msgstr ""
1483
 
1484
+ #: dashboard/publisher/adverts-edit.php:359
1485
  msgid "Countries"
1486
  msgstr ""
1487
 
1488
+ #: dashboard/publisher/adverts-edit.php:384
1489
  #, fuzzy
1490
  msgid "Select the countries you want the adverts to show in."
1491
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1492
 
1493
+ #: dashboard/publisher/adverts-edit.php:384
1494
  msgid "Cities take priority and will be filtered first."
1495
  msgstr ""
1496
 
1497
+ #: dashboard/publisher/adverts-edit.php:389
1498
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1499
  msgstr ""
1500
 
1501
+ #: dashboard/publisher/adverts-edit.php:413
1502
  msgid "Select Groups"
1503
  msgstr "グループを選択"
1504
 
1505
+ #: dashboard/publisher/adverts-edit.php:418
1506
  #, fuzzy
1507
  msgid "ID - Name"
1508
  msgstr "名前"
1509
 
1510
+ #: dashboard/publisher/adverts-edit.php:428
1511
  #: dashboard/publisher/groups-main.php:60
1512
+ #: dashboard/settings/geotargeting.php:49
1513
  #, fuzzy
1514
  msgid "Default"
1515
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
1516
 
1517
+ #: dashboard/publisher/adverts-edit.php:429
1518
  #: dashboard/publisher/groups-main.php:61
1519
  msgid "Dynamic"
1520
  msgstr ""
1521
 
1522
+ #: dashboard/publisher/adverts-edit.php:429
1523
  #: dashboard/publisher/groups-main.php:61
1524
  #, fuzzy
1525
  msgid "second rotation"
1526
  msgstr "バナーがないか、利用不可か適応されていません。"
1527
 
1528
+ #: dashboard/publisher/adverts-edit.php:430
1529
  #: dashboard/publisher/groups-main.php:62
1530
  #, fuzzy
1531
  msgid "Block"
1532
  msgstr "ブロック管理"
1533
 
1534
+ #: dashboard/publisher/adverts-edit.php:430
1535
  #: dashboard/publisher/groups-main.php:62
1536
  #, fuzzy
1537
  msgid "grid"
1539
  "広告に表組みを指定します。2と2を入力すると2行2列になります。(初期設定は2行2"
1540
  "列です。)"
1541
 
1542
+ #: dashboard/publisher/adverts-edit.php:431
1543
+ #: dashboard/publisher/groups-edit.php:198
1544
  #: dashboard/publisher/groups-main.php:63
1545
  #, fuzzy
1546
  msgid "Post Injection"
1547
  msgstr "投稿及びページ内掲載する場合:"
1548
 
1549
+ #: dashboard/publisher/adverts-edit.php:432
1550
  msgid "Geolocation"
1551
  msgstr ""
1552
 
1553
+ #: dashboard/publisher/adverts-edit.php:438
1554
+ #: dashboard/publisher/groups-edit.php:57
1555
  #: dashboard/publisher/groups-main.php:70
1556
  #, fuzzy
1557
  msgid "Mode"
1592
  msgstr "1週間(7日)"
1593
 
1594
  #: dashboard/publisher/adverts-error.php:71
1595
+ #: dashboard/publisher/groups-edit.php:382
1596
  #, fuzzy
1597
  msgid "Configuration errors."
1598
  msgstr "個の広告が設定エラーになっています。"
1606
  msgid "Export to XML"
1607
  msgstr "エクスポートオプション"
1608
 
 
 
 
 
 
1609
  #: dashboard/publisher/adverts-main.php:45
1610
  #: dashboard/publisher/adverts-main.php:47
1611
  #: dashboard/publisher/groups-main.php:37
1645
  msgid "Monthly overview of clicks and impressions"
1646
  msgstr "クリック"
1647
 
1648
+ #: dashboard/publisher/adverts-report.php:64
1649
+ #: dashboard/publisher/groups-report.php:65
1650
+ #: dashboard/settings/notifications.php:60
1651
+ #: dashboard/settings/notifications.php:90
1652
+ msgid "Note:"
1653
+ msgstr "注意:"
1654
+
1655
  #: dashboard/publisher/adverts-report.php:64
1656
  #: dashboard/publisher/groups-report.php:65
1657
  msgid ""
1670
  msgid "Edit Group"
1671
  msgstr "グループ編集"
1672
 
1673
+ #: dashboard/publisher/groups-edit.php:60
1674
  #, fuzzy
1675
  msgid "Default - Show one ad at a time"
1676
  msgstr "空欄か0にすると解除されます。その場合はad idが適用されます。"
1677
 
1678
+ #: dashboard/publisher/groups-edit.php:61
1679
  #, fuzzy
1680
  msgid "Dynamic Mode - Show a different ad every few seconds"
1681
  msgstr "秒"
1682
 
1683
+ #: dashboard/publisher/groups-edit.php:62
1684
  msgid "Block Mode - Show a block of adverts"
1685
  msgstr ""
1686
 
1687
+ #: dashboard/publisher/groups-edit.php:66
1688
  #, fuzzy
1689
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1690
  msgstr "AdRotate 設定"
1691
 
1692
+ #: dashboard/publisher/groups-edit.php:73
1693
+ #: dashboard/publisher/groups-edit.php:100
1694
  #, fuzzy
1695
  msgid "Dynamic and Block Mode"
1696
  msgstr "ブロック管理"
1697
 
1698
+ #: dashboard/publisher/groups-edit.php:74
1699
  #, fuzzy
1700
  msgid "Only required if your group is in Dynamic or Block mode."
1701
  msgstr ""
1702
  "通常のユーザーはAdRotateやその統計を必要としません。その為、購読ユーザーなど"
1703
  "にはAdRotateのダッシュボード等を見せる必要がありませんので、活用して下さい。"
1704
 
1705
+ #: dashboard/publisher/groups-edit.php:78
1706
  msgid "Block size"
1707
  msgstr ""
1708
 
1709
+ #: dashboard/publisher/groups-edit.php:84
1710
  msgid "rows"
1711
  msgstr "行"
1712
 
1713
+ #: dashboard/publisher/groups-edit.php:88
1714
  msgid "columns"
1715
  msgstr "列"
1716
 
1717
+ #: dashboard/publisher/groups-edit.php:91
1718
  #, fuzzy
1719
  msgid "Block Mode"
1720
  msgstr "ブロック管理"
1721
 
1722
+ #: dashboard/publisher/groups-edit.php:91
1723
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1724
  msgstr ""
1725
 
1726
+ #: dashboard/publisher/groups-edit.php:95
1727
  msgid "Advert size"
1728
  msgstr ""
1729
 
1730
+ #: dashboard/publisher/groups-edit.php:97
1731
  msgid "pixel(s) wide"
1732
  msgstr "ピクセル(幅)"
1733
 
1734
+ #: dashboard/publisher/groups-edit.php:97
1735
  msgid "pixel(s) high."
1736
  msgstr "ピクセル(高さ)"
1737
 
1738
+ #: dashboard/publisher/groups-edit.php:100
1739
  msgid ""
1740
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1741
  "recommended). Default: 125/125."
1742
  msgstr ""
1743
 
1744
+ #: dashboard/publisher/groups-edit.php:104
1745
  msgid "Automated refresh"
1746
  msgstr ""
1747
 
1748
+ #: dashboard/publisher/groups-edit.php:123
1749
  #, fuzzy
1750
  msgid "seconds."
1751
  msgstr "秒"
1752
 
1753
+ #: dashboard/publisher/groups-edit.php:126
1754
  msgid "Dynamic Mode"
1755
  msgstr ""
1756
 
1757
+ #: dashboard/publisher/groups-edit.php:126
1758
  #, fuzzy
1759
  msgid ""
1760
  "Load a new advert in this interval without reloading the page. Default: 6."
1761
  msgstr "新規追加"
1762
 
1763
+ #: dashboard/publisher/groups-edit.php:137
1764
+ #: dashboard/publisher/groups-edit.php:284
1765
  msgid ""
1766
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1767
  "Adverts\" and enter ID"
1768
  msgstr ""
1769
 
1770
+ #: dashboard/publisher/groups-edit.php:149
1771
+ #: dashboard/publisher/groups-edit.php:296
1772
+ #: dashboard/publisher/groups-edit.php:388
1773
  #, fuzzy
1774
  msgid "Save Group"
1775
  msgstr "保存"
1776
 
1777
+ #: dashboard/publisher/groups-edit.php:157
1778
  #, fuzzy
1779
  msgid "Advert Margin"
1780
  msgstr "ピクセル(margin)"
1781
 
1782
+ #: dashboard/publisher/groups-edit.php:159
1783
  msgid "pixel(s)"
1784
  msgstr "ピクセル"
1785
 
1786
+ #: dashboard/publisher/groups-edit.php:162
1787
  #, fuzzy
1788
  msgid "A transparent area outside the advert in pixels. Default: 0."
1789
  msgstr ""
1790
  "ブロックに見えない枠(ピクセル単位)を作れます。(初期設定では1ピクセルで"
1791
  "す。)"
1792
 
1793
+ #: dashboard/publisher/groups-edit.php:162
1794
  #, fuzzy
1795
  msgid "Set to 0 to disable."
1796
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
1797
 
1798
+ #: dashboard/publisher/groups-edit.php:162
1799
  msgid "Margins are automatically disabled for blocks where required."
1800
  msgstr ""
1801
 
1802
+ #: dashboard/publisher/groups-edit.php:166
1803
  #, fuzzy
1804
  msgid "Align the group"
1805
  msgstr "広告グループ - グループIDを使ってください。"
1806
 
1807
+ #: dashboard/publisher/groups-edit.php:169
1808
  #, fuzzy
1809
  msgid "None (Default)"
1810
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
1811
 
1812
+ #: dashboard/publisher/groups-edit.php:170
1813
  msgid "Left"
1814
  msgstr "右"
1815
 
1816
+ #: dashboard/publisher/groups-edit.php:171
1817
  msgid "Right"
1818
  msgstr "左"
1819
 
1820
+ #: dashboard/publisher/groups-edit.php:172
1821
  msgid "Center"
1822
  msgstr ""
1823
 
1824
+ #: dashboard/publisher/groups-edit.php:176
1825
  msgid ""
1826
  "Align the group in your post or page. Using 'center' may affect your margin "
1827
  "setting. Not every theme supports this feature."
1828
  msgstr ""
1829
 
1830
+ #: dashboard/publisher/groups-edit.php:180
1831
+ #: dashboard/settings/advertisers.php:38
1832
  msgid "Geo Targeting"
1833
  msgstr ""
1834
 
1835
+ #: dashboard/publisher/groups-edit.php:181
1836
  msgid "Enable Geo Targeting for this group."
1837
  msgstr ""
1838
 
1839
+ #: dashboard/publisher/groups-edit.php:182
1840
  #, fuzzy
1841
  msgid "Do not forget to tell the adverts for which areas they should show."
1842
  msgstr "どのカテゴリーですか?"
1843
 
1844
+ #: dashboard/publisher/groups-edit.php:185
1845
  msgid "Mobile support"
1846
  msgstr ""
1847
 
1848
+ #: dashboard/publisher/groups-edit.php:186
1849
  msgid "Enable mobile support for this group."
1850
  msgstr ""
1851
 
1852
+ #: dashboard/publisher/groups-edit.php:187
1853
  msgid "Do not forget to put at least one mobile advert in this group."
1854
  msgstr ""
1855
 
1856
+ #: dashboard/publisher/groups-edit.php:192
1857
  msgid "Leave empty or 0 to skip this. Will default to group id."
1858
  msgstr ""
1859
  "この項目をスキップするには空か0を入れて下さい。グループIDがデフォルトになりま"
1860
  "す。"
1861
 
1862
+ #: dashboard/publisher/groups-edit.php:196
1863
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1864
  msgstr ""
1865
 
1866
+ #: dashboard/publisher/groups-edit.php:201
1867
  msgid "In categories?"
1868
  msgstr ""
1869
 
1870
+ #: dashboard/publisher/groups-edit.php:205
1871
+ #: dashboard/publisher/groups-edit.php:243
1872
+ #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1873
  #, fuzzy
1874
  msgid "Disabled"
1875
  msgstr "掲載不可広告"
1876
 
1877
+ #: dashboard/publisher/groups-edit.php:206
1878
+ #: dashboard/publisher/groups-edit.php:244
1879
  #, fuzzy
1880
  msgid "Before content"
1881
  msgstr "投稿内容の前"
1882
 
1883
+ #: dashboard/publisher/groups-edit.php:207
1884
+ #: dashboard/publisher/groups-edit.php:245
1885
  #, fuzzy
1886
  msgid "After content"
1887
  msgstr "コンテンツの前と後ろ"
1888
 
1889
+ #: dashboard/publisher/groups-edit.php:208
1890
+ #: dashboard/publisher/groups-edit.php:246
1891
  #, fuzzy
1892
  msgid "Before and after content"
1893
  msgstr "コンテンツの前と後ろ"
1894
 
1895
+ #: dashboard/publisher/groups-edit.php:209
1896
+ #: dashboard/publisher/groups-edit.php:247
1897
  msgid "Inside the content..."
1898
  msgstr ""
1899
 
1900
+ #: dashboard/publisher/groups-edit.php:215
1901
+ #: dashboard/publisher/groups-edit.php:253
1902
  msgid "after the middle paragraph"
1903
  msgstr ""
1904
 
1905
+ #: dashboard/publisher/groups-edit.php:216
1906
+ #: dashboard/publisher/groups-edit.php:254
1907
  msgid "after the 1st paragraph"
1908
  msgstr ""
1909
 
1910
+ #: dashboard/publisher/groups-edit.php:217
1911
+ #: dashboard/publisher/groups-edit.php:255
1912
  msgid "after the 2nd paragraph"
1913
  msgstr ""
1914
 
1915
+ #: dashboard/publisher/groups-edit.php:218
1916
+ #: dashboard/publisher/groups-edit.php:256
1917
  msgid "after the 3rd paragraph"
1918
  msgstr ""
1919
 
1920
+ #: dashboard/publisher/groups-edit.php:219
1921
+ #: dashboard/publisher/groups-edit.php:257
1922
  msgid "after the 4th paragraph"
1923
  msgstr ""
1924
 
1925
+ #: dashboard/publisher/groups-edit.php:220
1926
+ #: dashboard/publisher/groups-edit.php:258
1927
  msgid "after the 5th paragraph"
1928
  msgstr ""
1929
 
1930
+ #: dashboard/publisher/groups-edit.php:221
1931
+ #: dashboard/publisher/groups-edit.php:259
1932
  msgid "after the 6th paragraph"
1933
  msgstr ""
1934
 
1935
+ #: dashboard/publisher/groups-edit.php:222
1936
+ #: dashboard/publisher/groups-edit.php:260
1937
  msgid "after the 7th paragraph"
1938
  msgstr ""
1939
 
1940
+ #: dashboard/publisher/groups-edit.php:223
1941
+ #: dashboard/publisher/groups-edit.php:261
1942
  msgid "after the 8th paragraph"
1943
  msgstr ""
1944
 
1945
+ #: dashboard/publisher/groups-edit.php:229
1946
  msgid "Which categories?"
1947
  msgstr "どのカテゴリーですか?"
1948
 
1949
+ #: dashboard/publisher/groups-edit.php:234
1950
  #, fuzzy
1951
  msgid "Click the categories posts you want the adverts to show in."
1952
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1953
 
1954
+ #: dashboard/publisher/groups-edit.php:239
1955
  msgid "In pages?"
1956
  msgstr ""
1957
 
1958
+ #: dashboard/publisher/groups-edit.php:267
1959
  msgid "Which pages?"
1960
  msgstr "どのページですか?"
1961
 
1962
+ #: dashboard/publisher/groups-edit.php:272
1963
  #, fuzzy
1964
  msgid "Click the pages you want the adverts to show in."
1965
  msgstr "このウィジェットに使いたい物を選んで下さい。"
1966
 
1967
+ #: dashboard/publisher/groups-edit.php:300
1968
  #, fuzzy
1969
  msgid "Wrapper code"
1970
  msgstr "Wrapper code (Optional) - 各広告を囲みます。"
1971
 
1972
+ #: dashboard/publisher/groups-edit.php:301
1973
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1974
  msgstr ""
1975
 
1976
+ #: dashboard/publisher/groups-edit.php:305
1977
  msgid "Before advert"
1978
  msgstr ""
1979
 
1980
+ #: dashboard/publisher/groups-edit.php:309
1981
  msgid "Options:"
1982
  msgstr "オプション:"
1983
 
1984
+ #: dashboard/publisher/groups-edit.php:313
1985
  msgid "After advert"
1986
  msgstr ""
1987
 
1988
+ #: dashboard/publisher/groups-edit.php:322
1989
  msgid "Select adverts"
1990
  msgstr ""
1991
 
1992
+ #: dashboard/publisher/groups-edit.php:327
1993
  msgid "Choose adverts"
1994
  msgstr ""
1995
 
1996
+ #: dashboard/publisher/groups-edit.php:333
1997
  msgid "Visible until"
1998
  msgstr "掲載期限"
1999
 
2000
+ #: dashboard/publisher/groups-edit.php:375
2001
  msgid "No adverts created!"
2002
  msgstr ""
2003
 
2017
  msgid "This action can not be undone!"
2018
  msgstr "この処理は復旧できません。注意して下さい。"
2019
 
2020
+ #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
2021
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
2022
  msgid "OK to continue, CANCEL to stop."
2023
  msgstr "よろしければ、OKを、止める場合はCANCELを押して下さい。"
2024
 
2031
  msgid "Statistics for group"
2032
  msgstr "統計 "
2033
 
2034
+ #: dashboard/settings/advertisers.php:16
2035
  msgid "Advertisers - Available in AdRotate Pro"
2036
  msgstr ""
2037
 
2038
+ #: dashboard/settings/advertisers.php:17
2039
  #, fuzzy
2040
  msgid "Enable advertisers so they can review and manage their own ads."
2041
  msgstr "広告管理"
2042
 
2043
+ #: dashboard/settings/advertisers.php:20
2044
  #, fuzzy
2045
  msgid "Enable Advertisers"
2046
  msgstr "広告主から提出された広告を承認する権限"
2047
 
2048
+ #: dashboard/settings/advertisers.php:22
2049
  #, fuzzy
2050
  msgid "Allow adverts to be coupled to users (Advertisers)."
2051
  msgstr "広告主やユーザーのレポートページを見れる権限です。"
2052
 
2053
+ #: dashboard/settings/advertisers.php:26
2054
  #, fuzzy
2055
  msgid "Edit/update adverts"
2056
  msgstr "広告の追加・編集管理"
2057
 
2058
+ #: dashboard/settings/advertisers.php:28
2059
  #, fuzzy
2060
  msgid "Allow advertisers to add new or edit their adverts."
2061
  msgstr "広告の追加・編集管理"
2062
 
2063
+ #: dashboard/settings/advertisers.php:32
2064
+ msgid "Mobile adverts"
2065
+ msgstr ""
2066
+
2067
+ #: dashboard/settings/advertisers.php:34
2068
+ msgid "Allow advertisers to specify on which devices their ads will show."
2069
+ msgstr ""
2070
+
2071
+ #: dashboard/settings/advertisers.php:40
2072
  msgid ""
2073
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2074
  "be enabled, too."
2075
  msgstr ""
2076
 
2077
+ #: dashboard/settings/advertisers.php:44
2078
  #, fuzzy
2079
  msgid "Advertiser role"
2080
  msgstr "広告主"
2081
 
2082
+ #: dashboard/settings/advertisers.php:46
2083
  msgid "Create a seperate user role for your advertisers."
2084
  msgstr ""
2085
 
2086
+ #: dashboard/settings/advertisers.php:47
2087
  msgid ""
2088
  "Don't forget to give these users access to their advertiser dashboard via "
2089
  "the Roles tab."
2090
  msgstr ""
2091
 
2092
+ #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2093
+ #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2094
+ #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2095
+ #: dashboard/settings/statistics.php:73
2096
+ msgid "Update Options"
2097
+ msgstr "設定の更新"
2098
+
2099
+ #: dashboard/settings/general.php:17
2100
  msgid "General Settings"
2101
  msgstr ""
2102
 
2103
+ #: dashboard/settings/general.php:18
2104
  msgid "General settings for AdRotate."
2105
  msgstr ""
2106
 
2107
+ #: dashboard/settings/general.php:18 dashboard/settings/statistics.php:18
2108
  msgid "Some options are only available in AdRotate Pro!"
2109
  msgstr ""
2110
 
2111
+ #: dashboard/settings/general.php:21
2112
  msgid "Shortcode in widgets"
2113
  msgstr ""
2114
 
2115
+ #: dashboard/settings/general.php:22
2116
  msgid ""
2117
  "Enable this option to if your theme does not support shortcodes in the "
2118
  "WordPress text widget."
2119
  msgstr ""
2120
 
2121
+ #: dashboard/settings/general.php:25
2122
  msgid "Disable live preview"
2123
  msgstr ""
2124
 
2125
+ #: dashboard/settings/general.php:26
2126
  msgid ""
2127
  "Enable this option if you have faulty adverts that overflow their designated "
2128
  "area while creating/editing adverts."
2129
  msgstr ""
2130
 
2131
+ #: dashboard/settings/general.php:29
2132
  msgid "Disable dynamic mode"
2133
  msgstr ""
2134
 
2135
+ #: dashboard/settings/general.php:30
2136
  msgid ""
2137
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2138
  "you notice skipping or jumpy content."
2139
  msgstr ""
2140
 
2141
+ #: dashboard/settings/general.php:33
2142
  msgid "Load jQuery"
2143
  msgstr ""
2144
 
2145
+ #: dashboard/settings/general.php:34
2146
  msgid ""
2147
  "Enable this option if your theme does not load jQuery. jQuery is required "
2148
  "for dynamic groups, statistics and some other features."
2149
  msgstr ""
2150
 
2151
+ #: dashboard/settings/general.php:37
2152
  msgid "Load scripts in footer?"
2153
  msgstr ""
2154
 
2155
+ #: dashboard/settings/general.php:38
2156
  msgid ""
2157
  "Enable this option if you want to load all AdRotate Javascripts in the "
2158
  "footer of your site."
2159
  msgstr ""
2160
 
2161
+ #: dashboard/settings/general.php:41
2162
  msgid "Adblock disguise"
2163
  msgstr ""
2164
 
2165
+ #: dashboard/settings/general.php:43
2166
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2167
  msgstr ""
2168
 
2169
+ #: dashboard/settings/general.php:44
2170
  msgid ""
2171
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2172
  msgstr ""
2173
 
2174
+ #: dashboard/settings/general.php:44
2175
  msgid ""
2176
  "To also apply this feature to widgets, use a text widget with a shortcode "
2177
  "instead of the AdRotate widget."
2178
  msgstr ""
2179
 
2180
+ #: dashboard/settings/general.php:44
2181
  msgid ""
2182
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2183
  "feature will have little effect!"
2184
  msgstr ""
2185
 
2186
+ #: dashboard/settings/general.php:49
2187
  #, fuzzy
2188
  msgid "Banner Folder"
2189
  msgstr "画像バナー"
2190
 
2191
+ #: dashboard/settings/general.php:50
2192
  #, fuzzy
2193
  msgid "Set a location where your banner images will be stored."
2194
  msgstr "バナーがないか、利用不可か適応されていません。"
2195
 
2196
+ #: dashboard/settings/general.php:53
2197
  #, fuzzy
2198
  msgid "Location"
2199
  msgstr "バナーがないか、利用不可か適応されていません。"
2200
 
2201
+ #: dashboard/settings/general.php:55
2202
  msgid "(Default: wp-content/banners/)."
2203
  msgstr ""
2204
 
2205
+ #: dashboard/settings/general.php:56
2206
  #, fuzzy
2207
  msgid ""
2208
  "To try and trick ad blockers you could set the folder to something crazy "
2211
  "AdRotateがエラーを見つけることはできませんが、広告に間違いを表示します。広告"
2212
  "を再度保存してください!"
2213
 
2214
+ #: dashboard/settings/general.php:57
2215
  #, fuzzy
2216
  msgid ""
2217
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2218
  "will show errors when the folder is missing."
2219
  msgstr "画像バナー"
2220
 
2221
+ #: dashboard/settings/general.php:62
2222
  #, fuzzy
2223
  msgid "Bot filter"
2224
  msgstr "ユーザーエージェントフィルター"
2225
 
2226
+ #: dashboard/settings/general.php:63
2227
  msgid "The bot filter is used for the AdRotate stats tracker."
2228
  msgstr ""
2229
 
2230
+ #: dashboard/settings/general.php:66
2231
  msgid "User-Agent Filter"
2232
  msgstr "ユーザーエージェントフィルター"
2233
 
2234
+ #: dashboard/settings/general.php:69
2235
  msgid ""
2236
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2237
  msgstr ""
2238
 
2239
+ #: dashboard/settings/general.php:70
2240
  msgid ""
2241
  "Keep in mind that this might give false positives. The word 'fire' also "
2242
  "matches 'firefox', but not vice-versa. So be careful!"
2243
  msgstr ""
2244
 
2245
+ #: dashboard/settings/general.php:71
2246
  msgid ""
2247
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2248
  "characters are stripped out."
2249
  msgstr ""
2250
 
2251
+ #: dashboard/settings/general.php:72
2252
  msgid ""
2253
  "Additionally to the list specified here, empty User-Agents are blocked as "
2254
  "well."
2256
  "さらに、ここで指定したリストには、空のユーザーエージェントも同様にブロックさ"
2257
  "れます。"
2258
 
2259
+ #: dashboard/settings/general.php:72
2260
  msgid "Learn more about"
2261
  msgstr "ユーザーえー助演について知りたい方はこちらから。"
2262
 
2263
+ #: dashboard/settings/general.php:72
2264
  msgid "user-agents"
2265
  msgstr "ユーザーエージェント[英語]"
2266
 
2267
+ #: dashboard/settings/geotargeting.php:17
2268
  msgid "Geo Targeting - Available in AdRotate Pro"
2269
  msgstr ""
2270
 
2271
+ #: dashboard/settings/geotargeting.php:18
2272
  msgid "Target certain areas in the world for better advertising oppurtunities."
2273
  msgstr ""
2274
 
2275
+ #: dashboard/settings/geotargeting.php:21
2276
  msgid "Which Geo Service"
2277
  msgstr ""
2278
 
2279
+ #: dashboard/settings/geotargeting.php:28
2280
+ msgid "Experimental"
2281
+ msgstr ""
2282
+
2283
+ #: dashboard/settings/geotargeting.php:31
2284
+ msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2285
+ msgstr ""
2286
+
2287
+ #: dashboard/settings/geotargeting.php:32
2288
+ #: dashboard/settings/geotargeting.php:36
2289
+ #: dashboard/settings/geotargeting.php:40
2290
+ msgid "Supports:"
2291
  msgstr ""
2292
 
2293
+ #: dashboard/settings/geotargeting.php:33
2294
+ #: dashboard/settings/geotargeting.php:37
2295
+ #: dashboard/settings/geotargeting.php:41
2296
+ msgid "Scalability:"
2297
  msgstr ""
2298
 
2299
  #: dashboard/settings/geotargeting.php:33
2300
+ msgid "Suitable for small to medium websites."
2301
+ msgstr ""
2302
+
2303
+ #: dashboard/settings/geotargeting.php:35
2304
+ msgid ""
2305
+ "The most accurate geo targeting you can get for only $20 USD per 50000 "
2306
+ "lookups."
2307
+ msgstr ""
2308
+
2309
+ #: dashboard/settings/geotargeting.php:37
2310
+ msgid "Suitable for any size website as long as you have lookups."
2311
+ msgstr ""
2312
+
2313
+ #: dashboard/settings/geotargeting.php:39
2314
+ msgid "Basic geolocation included in every CloudFlare account."
2315
+ msgstr ""
2316
+
2317
+ #: dashboard/settings/geotargeting.php:41
2318
+ msgid "Suitable for any size website."
2319
+ msgstr ""
2320
+
2321
+ #: dashboard/settings/geotargeting.php:46
2322
  msgid "Geo Cookie Lifespan"
2323
  msgstr ""
2324
 
2325
+ #: dashboard/settings/geotargeting.php:55
2326
  msgid "Hours."
2327
  msgstr ""
2328
 
2329
+ #: dashboard/settings/geotargeting.php:56
2330
  msgid ""
2331
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2332
  "cookie last? A longer period is less accurate for mobile users but may "
2333
  "reduce the usage of your lookups drastically."
2334
  msgstr ""
2335
 
2336
+ #: dashboard/settings/geotargeting.php:62
2337
  msgid "MaxMind City/Country"
2338
  msgstr ""
2339
 
2340
+ #: dashboard/settings/geotargeting.php:65
2341
  msgid "Username/Email"
2342
  msgstr ""
2343
 
2344
+ #: dashboard/settings/geotargeting.php:69
2345
  msgid "Password/License Key"
2346
  msgstr ""
2347
 
2348
+ #: dashboard/settings/maintenance.php:16
2349
  msgid "Maintenance"
2350
  msgstr "メンテナンス"
2351
 
2352
+ #: dashboard/settings/maintenance.php:17
2353
  msgid ""
2354
  "Use these functions when you notice your database is slow, unresponsive and "
2355
  "sluggish."
2356
  msgstr ""
2357
 
2358
+ #: dashboard/settings/maintenance.php:20 dashboard/settings/maintenance.php:22
2359
  msgid "Optimize Database"
2360
  msgstr "データベースの最適化"
2361
 
2362
+ #: dashboard/settings/maintenance.php:22
2363
  msgid "You are about to optimize the AdRotate database."
2364
  msgstr "AdRotateのデータベースの最適化を行います。"
2365
 
2366
+ #: dashboard/settings/maintenance.php:22
2367
  msgid "Did you make a backup of your database?"
2368
  msgstr "データベースのバックアップを取りましたか?"
2369
 
2370
+ #: dashboard/settings/maintenance.php:22
2371
  msgid ""
2372
  "This may take a moment and may cause your website to respond slow "
2373
  "temporarily!"
2375
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2376
  "可能性があります。"
2377
 
2378
+ #: dashboard/settings/maintenance.php:23
2379
  msgid "Cleans up overhead data in the AdRotate tables."
2380
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
2381
 
2382
+ #: dashboard/settings/maintenance.php:24
2383
  #, fuzzy
2384
  msgid ""
2385
  "Overhead data is accumulated garbage resulting from many changes you've "
2386
  "made. This can vary from nothing to hundreds of KiB of data."
2387
  msgstr "AdRotateテーブルのオーバーヘッドデータをクリーンアップします。"
2388
 
2389
+ #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
2390
  msgid "Clean-up Database"
2391
  msgstr "データベースのクリーンアップ"
2392
 
2393
+ #: dashboard/settings/maintenance.php:30
2394
  #, fuzzy
2395
  msgid ""
2396
  "You are about to clean up your database. This may delete expired schedules "
2397
  "and older statistics."
2398
  msgstr "データベースのクリーンアップ"
2399
 
2400
+ #: dashboard/settings/maintenance.php:30
2401
  #, fuzzy
2402
  msgid "Are you sure you want to continue?"
2403
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2404
 
2405
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
2406
  #, fuzzy
2407
  msgid "This might take a while and may slow down your site during this action!"
2408
  msgstr ""
2409
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2410
  "可能性があります。"
2411
 
2412
+ #: dashboard/settings/maintenance.php:31
2413
  #, fuzzy
2414
  msgid "Delete stats older than 356 days (Optional)."
2415
  msgstr "広告の削除やリセットする権限"
2416
 
2417
+ #: dashboard/settings/maintenance.php:32
2418
  msgid ""
2419
  "AdRotate creates empty records when you start making ads, groups or "
2420
  "schedules. In rare occasions these records are faulty."
2421
  msgstr ""
2422
 
2423
+ #: dashboard/settings/maintenance.php:32
2424
  msgid ""
2425
  "If you made an ad, group or schedule that does not save when you make it use "
2426
  "this button to delete those empty records."
2427
  msgstr ""
2428
 
2429
+ #: dashboard/settings/maintenance.php:32
2430
  msgid ""
2431
  "Additionally you can clean up old schedules and/or statistics. This will "
2432
  "improve the speed of your site."
2433
  msgstr ""
2434
 
2435
+ #: dashboard/settings/maintenance.php:36
2436
  msgid "Re-evaluate Ads"
2437
  msgstr "広告の再評価"
2438
 
2439
+ #: dashboard/settings/maintenance.php:38
2440
  msgid "Re-evaluate all ads"
2441
  msgstr "すべての広告の再評価"
2442
 
2443
+ #: dashboard/settings/maintenance.php:38
2444
  msgid "You are about to check all ads for errors."
2445
  msgstr "すべての広告のエラーをチェックしようとしています。"
2446
 
2447
+ #: dashboard/settings/maintenance.php:39
2448
  #, fuzzy
2449
  msgid ""
2450
  "This will apply all evaluation rules to all ads to see if any error slipped "
2451
  "in. Normally you should not need this feature."
2452
  msgstr "すべての広告のエラーをチェックしようとしています。"
2453
 
2454
+ #: dashboard/settings/maintenance.php:43
2455
  msgid ""
2456
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2457
  "database. They only apply to your ads/groups and stats. Not to other "
2464
  "is not a valid point in any case."
2465
  msgstr ""
2466
 
2467
+ #: dashboard/settings/maintenance.php:45
2468
  msgid "Troubleshooting"
2469
  msgstr "トラブルシューティング(トラブル対応)"
2470
 
2471
+ #: dashboard/settings/maintenance.php:46
2472
  msgid ""
2473
  "The below options are not meant for normal use and are only there for "
2474
  "developers to review saved settings or how ads are selected. These can be "
2476
  "SHOULD BE LEFT UNCHECKED!!"
2477
  msgstr ""
2478
 
2479
+ #: dashboard/settings/maintenance.php:49
2480
  msgid "Developer Debug"
2481
  msgstr "開発者向けデバッグ"
2482
 
2483
+ #: dashboard/settings/maintenance.php:51
2484
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2485
  msgstr ""
2486
 
2487
+ #: dashboard/settings/maintenance.php:52
2488
  msgid "View advert specs and (some) stats in the dashboard."
2489
  msgstr ""
2490
 
2491
+ #: dashboard/settings/maintenance.php:53
2492
  #, fuzzy
2493
  msgid ""
2494
  "Disable timers for clicks and impressions and enable a alert window for "
2495
  "clicktracking."
2496
  msgstr "テキストリンク(クリック数調査付):"
2497
 
2498
+ #: dashboard/settings/maintenance.php:54
2499
  #, fuzzy
2500
  msgid "Temporarily disable encryption on the redirect url."
2501
  msgstr ""
2502
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2503
  "可能性があります。"
2504
 
2505
+ #: dashboard/settings/maintenance.php:59
2506
  msgid "Status and Versions"
2507
  msgstr ""
2508
 
 
 
 
 
 
 
 
 
 
 
2509
  #: dashboard/settings/maintenance.php:62
2510
  #, fuzzy
 
 
 
 
 
 
 
 
 
 
2511
  msgid "Current status of adverts"
2512
  msgstr "現在のスケジュール"
2513
 
2514
+ #: dashboard/settings/maintenance.php:63
2515
  #, fuzzy
2516
  msgid "Normal"
2517
  msgstr "平均的表示(50%程度)"
2518
 
2519
+ #: dashboard/settings/maintenance.php:63
2520
  #, fuzzy
2521
  msgid "Error"
2522
  msgstr "理解できないエラーが起こっています。"
2523
 
2524
+ #: dashboard/settings/maintenance.php:63
2525
  #, fuzzy
2526
  msgid "Expired"
2527
  msgstr "個の広告が期限切れです。"
2528
 
2529
+ #: dashboard/settings/maintenance.php:63
2530
  #, fuzzy
2531
  msgid "Expires Soon"
2532
  msgstr "これは出来る限り早く修正して下さい。"
2533
 
2534
+ #: dashboard/settings/maintenance.php:63
2535
  msgid "Unknown"
2536
  msgstr ""
2537
 
2538
+ #: dashboard/settings/maintenance.php:66
2539
  msgid "Banners/assets Folder"
2540
  msgstr ""
2541
 
2542
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2543
  msgid "Exists and appears writable"
2544
  msgstr ""
2545
 
2546
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2547
  msgid "Not writable or does not exist"
2548
  msgstr ""
2549
 
2550
+ #: dashboard/settings/maintenance.php:70
2551
+ msgid "Reports Folder"
2552
+ msgstr ""
2553
+
2554
  #: dashboard/settings/maintenance.php:76
2555
+ msgid "Advert evaluation"
2556
+ msgstr ""
 
2557
 
2558
+ #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2559
+ msgid "Not scheduled! Re-activate the plugin from the plugins page."
2560
+ msgstr ""
 
2561
 
2562
+ #: dashboard/settings/maintenance.php:78
2563
+ msgid "Trackerdata cleanup"
2564
+ msgstr ""
2565
+
2566
+ #: dashboard/settings/maintenance.php:83
2567
+ msgid "Internal Versions"
2568
+ msgstr ""
2569
+
2570
+ #: dashboard/settings/maintenance.php:84
2571
+ msgid ""
2572
+ "Unless you experience database issues or a warning shows below, these "
2573
+ "numbers are not really relevant for troubleshooting. Support may ask for "
2574
+ "them to verify your database status."
2575
+ msgstr ""
2576
+
2577
+ #: dashboard/settings/maintenance.php:87
2578
+ msgid "AdRotate version"
2579
+ msgstr ""
2580
+
2581
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2582
+ msgid "Current:"
2583
+ msgstr ""
2584
 
2585
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2586
+ msgid "Should be:"
2587
+ msgstr ""
2588
+
2589
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2590
+ msgid "Previous:"
2591
+ msgstr ""
2592
+
2593
+ #: dashboard/settings/maintenance.php:89
2594
+ msgid "Database version"
2595
+ msgstr ""
2596
+
2597
+ #: dashboard/settings/misc.php:16
2598
  msgid "Miscellaneous"
2599
  msgstr "その他"
2600
 
2601
+ #: dashboard/settings/misc.php:19
2602
  msgid "Widget alignment"
2603
  msgstr "ウィジェットの配置"
2604
 
2605
+ #: dashboard/settings/misc.php:20
2606
  msgid ""
2607
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2608
  "not always help!)"
2610
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
2611
  "クスをオンにします。"
2612
 
2613
+ #: dashboard/settings/misc.php:23
2614
  #, fuzzy
2615
  msgid "Widget padding"
2616
  msgstr "ブロックの隙間"
2617
 
2618
+ #: dashboard/settings/misc.php:24
2619
  #, fuzzy
2620
  msgid ""
2621
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2624
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
2625
  "クスをオンにします。"
2626
 
2627
+ #: dashboard/settings/misc.php:28
2628
  msgid "NOTICE:"
2629
  msgstr ""
2630
 
2631
+ #: dashboard/settings/misc.php:29
2632
  msgid ""
2633
  "You have enabled W3 Total Caching support but not defined the security hash."
2634
  msgstr ""
2635
 
2636
+ #: dashboard/settings/misc.php:29
2637
  msgid ""
2638
  "AdRotate has generated the following line for you to add to your wp-config."
2639
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2640
  "add this line, check out the following guide;"
2641
  msgstr ""
2642
 
2643
+ #: dashboard/settings/misc.php:29
2644
  msgid "Set up W3 Total Caching"
2645
  msgstr ""
2646
 
2647
+ #: dashboard/settings/misc.php:33
2648
  msgid "W3 Total Caching"
2649
  msgstr ""
2650
 
2651
+ #: dashboard/settings/misc.php:34
2652
  #, fuzzy
2653
  msgid "Check this box if you use W3 Total Caching on your site."
2654
  msgstr ""
2655
  "あなたのウィジェットがテーマのサイドバーに整列しない場合は、このチェックボッ"
2656
  "クスをオンにします。"
2657
 
2658
+ #: dashboard/settings/misc.php:38
2659
  #, fuzzy
2660
  msgid ""
2661
  "It may take a while for the ad to start rotating. The caching plugin needs "
2664
  "これは少々時間がかかる場合があり、一時的にウェブサイトが遅い応答を引き起こす"
2665
  "可能性があります。"
2666
 
2667
+ #: dashboard/settings/misc.php:38
2668
  #, fuzzy
2669
  msgid ""
2670
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2671
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2672
  msgstr "このウィジェットに使いたい物を選んで下さい。"
2673
 
2674
+ #: dashboard/settings/notifications.php:18
2675
  msgid "Notifications"
2676
  msgstr "通知先"
2677
 
2678
+ #: dashboard/settings/notifications.php:19
2679
  #, fuzzy
2680
  msgid "Set up who gets notifications if ads need your attention."
2681
  msgstr "すぐに注意を必要とする広告"
2682
 
2683
+ #: dashboard/settings/notifications.php:22
2684
  msgid "How to notify"
2685
  msgstr ""
2686
 
2687
+ #: dashboard/settings/notifications.php:24
2688
  msgid "Dashboard banner."
2689
  msgstr ""
2690
 
2691
+ #: dashboard/settings/notifications.php:25
2692
  #, fuzzy
2693
  msgid "Email message."
2694
  msgstr "広告主のページ"
2695
 
2696
+ #: dashboard/settings/notifications.php:26
2697
  #, fuzzy
2698
  msgid "Push notifications to your smartphone."
2699
  msgstr "この通知は、あなたのウェブサイトからあなたに送られています。"
2700
 
2701
+ #: dashboard/settings/notifications.php:27
2702
  msgid ""
2703
  "Push notifications are delivered through Pushover, a notification service "
2704
  "for Android and iOS"
2705
  msgstr ""
2706
 
2707
+ #: dashboard/settings/notifications.php:27
2708
  msgid ""
2709
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2710
  "information can be found on the pushover website;"
2711
  msgstr ""
2712
 
2713
+ #: dashboard/settings/notifications.php:31
2714
  msgid "Test notification"
2715
  msgstr ""
2716
 
2717
+ #: dashboard/settings/notifications.php:33
2718
  msgid "Test"
2719
  msgstr "テスト"
2720
 
2721
+ #: dashboard/settings/notifications.php:33
2722
  msgid ""
2723
  "Send a test notification to enabled methods. Before you test, save the "
2724
  "options first!"
2725
  msgstr ""
2726
 
2727
+ #: dashboard/settings/notifications.php:38
2728
+ msgid "Dashboard Banner"
2729
  msgstr ""
2730
 
2731
+ #: dashboard/settings/notifications.php:39
2732
  msgid ""
2733
  "These go in a dashboard banner visible to all users with access to AdRotate "
2734
  "on every WordPress dashboard page."
2735
  msgstr ""
2736
 
2737
+ #: dashboard/settings/notifications.php:42
2738
+ #: dashboard/settings/notifications.php:54
2739
+ #: dashboard/settings/notifications.php:84
2740
  msgid "What"
2741
  msgstr ""
2742
 
2743
+ #: dashboard/settings/notifications.php:44
2744
  msgid "Expired adverts."
2745
  msgstr ""
2746
 
2747
+ #: dashboard/settings/notifications.php:45
2748
  msgid "Almost expired adverts."
2749
  msgstr ""
2750
 
2751
+ #: dashboard/settings/notifications.php:50
2752
+ msgid "Email Message"
2753
  msgstr ""
2754
 
2755
+ #: dashboard/settings/notifications.php:51
2756
+ msgid ""
2757
+ "Receive email notifications about what is happening with your AdRotate setup."
2758
+ msgstr ""
2759
 
2760
+ #: dashboard/settings/notifications.php:56
2761
+ #: dashboard/settings/notifications.php:86
2762
+ msgid "Daily digest of any advert status other than normal."
2763
  msgstr ""
2764
 
2765
+ #: dashboard/settings/notifications.php:57
2766
+ #: dashboard/settings/notifications.php:87
2767
+ msgid "When you are running out of Geo Targeting Lookups."
 
2768
  msgstr ""
 
 
2769
 
2770
+ #: dashboard/settings/notifications.php:58
2771
+ #: dashboard/settings/notifications.php:88
2772
+ msgid "Any advertiser saving an advert in your moderation queue."
 
 
2773
  msgstr ""
 
 
2774
 
2775
+ #: dashboard/settings/notifications.php:59
2776
+ #: dashboard/settings/notifications.php:89
2777
  #, fuzzy
2778
+ msgid "A moderator approved an advert from the moderation queue."
2779
+ msgstr "承認待ち広告の承認/拒否"
2780
 
2781
+ #: dashboard/settings/notifications.php:60
2782
+ #: dashboard/settings/notifications.php:90
2783
  #, fuzzy
2784
+ msgid "A moderator rejected an advert from the moderation queue."
2785
+ msgstr "承認待ち広告の承認/拒否"
 
 
 
 
2786
 
2787
+ #: dashboard/settings/notifications.php:60
2788
+ #: dashboard/settings/notifications.php:90
2789
+ msgid ""
2790
+ "If you have a lot of activity with many advertisers adding/changing adverts "
2791
+ "you may get a lot of messages!"
2792
  msgstr ""
2793
 
2794
+ #: dashboard/settings/notifications.php:60
2795
  msgid ""
2796
+ "Sending out a lot of email is sometimes seen as automated mailing and deemed "
2797
+ "spammy. This may result in automated filters such as those used in services "
2798
+ "like Google Gmail and Microsoft Hotmail/Outlook.com blocking your server. "
2799
+ "Make sure you whitelist the sending address in your email account once you "
2800
+ "start receiving notifications!"
2801
  msgstr ""
2802
 
2803
+ #: dashboard/settings/notifications.php:65
2804
+ msgid "Publishers"
2805
  msgstr ""
2806
 
2807
+ #: dashboard/settings/notifications.php:68
2808
+ msgid ""
2809
+ "Messages are sent once every 24 hours. Maximum of 5 addresses. Comma "
2810
+ "separated. This field may not be empty!"
2811
  msgstr ""
2812
 
2813
  #: dashboard/settings/notifications.php:72
2814
+ #, fuzzy
2815
+ msgid "Advertisers"
2816
+ msgstr "広告主から提出された広告を承認する権限"
2817
+
2818
+ #: dashboard/settings/notifications.php:75
2819
+ msgid ""
2820
+ "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2821
+ "This field may not be empty!"
2822
  msgstr ""
2823
 
2824
+ #: dashboard/settings/notifications.php:80
2825
  #, fuzzy
2826
+ msgid "Push Notifications"
2827
+ msgstr "通知先"
2828
 
2829
+ #: dashboard/settings/notifications.php:81
2830
+ msgid ""
2831
+ "Receive information about what is happening with your AdRotate setup on your "
2832
+ "smartphone via Pushover."
2833
+ msgstr ""
2834
 
2835
+ #: dashboard/settings/notifications.php:90
2836
  msgid ""
2837
+ "Pushover has a monthly limit of 7500 messages, this should be plenty. If you "
2838
+ "run out, you will not receive push notifications until the quota is reset! "
2839
+ "Every message AdRotate sends, regardless of the number of receiving devices, "
2840
+ "counts as one message."
2841
  msgstr ""
2842
 
2843
+ #: dashboard/settings/notifications.php:95
2844
  #, fuzzy
2845
  msgid "User Key"
2846
  msgstr "ユーザーエージェント[英語]"
2847
 
2848
+ #: dashboard/settings/notifications.php:97
2849
  msgid "Get your user token"
2850
  msgstr ""
2851
 
2852
+ #: dashboard/settings/notifications.php:97
2853
+ #: dashboard/settings/notifications.php:103
2854
  msgid "here"
2855
  msgstr ""
2856
 
2857
+ #: dashboard/settings/notifications.php:101
2858
  msgid "Api Token"
2859
  msgstr ""
2860
 
2861
+ #: dashboard/settings/notifications.php:103
2862
  msgid "Create your"
2863
  msgstr ""
2864
 
2865
+ #: dashboard/settings/notifications.php:103
2866
  msgid "App"
2867
  msgstr ""
2868
 
2869
+ #: dashboard/settings/notifications.php:103
2870
  msgid "and get your API token"
2871
  msgstr ""
2872
 
2873
+ #: dashboard/settings/roles.php:17
2874
  msgid "Roles"
2875
  msgstr ""
2876
 
2877
+ #: dashboard/settings/roles.php:18
2878
  msgid "Who has access to what?"
2879
  msgstr ""
2880
 
2881
+ #: dashboard/settings/roles.php:21
2882
  msgid "Manage/Add/Edit adverts"
2883
  msgstr "広告の追加・編集管理"
2884
 
2885
+ #: dashboard/settings/roles.php:25
2886
  msgid "Role to see and add/edit ads."
2887
  msgstr "広告を追加・編集する権限"
2888
 
2889
+ #: dashboard/settings/roles.php:29
2890
  msgid "Delete/Reset adverts"
2891
  msgstr "広告の削除やリセット"
2892
 
2893
+ #: dashboard/settings/roles.php:33
2894
  msgid "Role to delete ads and reset stats."
2895
  msgstr "広告の削除やリセットする権限"
2896
 
2897
+ #: dashboard/settings/roles.php:37
2898
  msgid "Manage/Add/Edit groups"
2899
  msgstr "グループの追加・編集管理"
2900
 
2901
+ #: dashboard/settings/roles.php:41
2902
  msgid "Role to see and add/edit groups."
2903
  msgstr "グループを削除・編集する権限"
2904
 
2905
+ #: dashboard/settings/roles.php:45
2906
  msgid "Delete groups"
2907
  msgstr "グループの削除"
2908
 
2909
+ #: dashboard/settings/roles.php:49
2910
  msgid "Role to delete groups."
2911
  msgstr "グループを削除できる権限"
2912
 
2913
+ #: dashboard/settings/statistics.php:18
2914
  msgid "Track statistics for your adverts."
2915
  msgstr ""
2916
 
2917
+ #: dashboard/settings/statistics.php:21
2918
  msgid "How to track stats"
2919
  msgstr ""
2920
 
2921
+ #: dashboard/settings/statistics.php:30
2922
  msgid "Tracks impressions and clicks internally"
2923
  msgstr ""
2924
 
2925
+ #: dashboard/settings/statistics.php:30 dashboard/settings/statistics.php:32
2926
+ #: dashboard/settings/statistics.php:34
2927
  msgid "manual"
2928
  msgstr ""
2929
 
2930
+ #: dashboard/settings/statistics.php:31
2931
  msgid ""
2932
  "Click and Impression recording, Click and impression limits, impression "
2933
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2934
  "will only track impressions."
2935
  msgstr ""
2936
 
2937
+ #: dashboard/settings/statistics.php:32 dashboard/settings/statistics.php:34
2938
  msgid "In AdRotate Pro!"
2939
  msgstr ""
2940
 
2941
+ #: dashboard/settings/statistics.php:32
2942
  msgid ""
2943
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2944
  "attributes"
2945
  msgstr ""
2946
 
2947
+ #: dashboard/settings/statistics.php:33
2948
  msgid ""
2949
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2950
  "Contents."
2951
  msgstr ""
2952
 
2953
+ #: dashboard/settings/statistics.php:34
2954
  msgid ""
2955
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2956
  "uses onClick() and onload() in adverts"
2957
  msgstr ""
2958
 
2959
+ #: dashboard/settings/statistics.php:35
2960
  msgid ""
2961
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2962
  "Banner."
2963
  msgstr ""
2964
 
2965
+ #: dashboard/settings/statistics.php:41
2966
  msgid "Internal Tracker"
2967
  msgstr ""
2968
 
2969
+ #: dashboard/settings/statistics.php:42
2970
  msgid ""
2971
  "The settings below are for the internal tracker and have no effect when "
2972
  "using Piwik/Google Analytics."
2973
  msgstr ""
2974
 
2975
+ #: dashboard/settings/statistics.php:45
2976
  #, fuzzy
2977
  msgid "Logged in impressions"
2978
  msgstr "表示数"
2979
 
2980
+ #: dashboard/settings/statistics.php:47
2981
  msgid "Track impressions from logged in users."
2982
  msgstr ""
2983
 
2984
+ #: dashboard/settings/statistics.php:51
2985
  #, fuzzy
2986
  msgid "Logged in clicks"
2987
  msgstr "クリック"
2988
 
2989
+ #: dashboard/settings/statistics.php:53
2990
  #, fuzzy
2991
  msgid "Track clicks from logged in users."
2992
  msgstr "クリック"
2993
 
2994
+ #: dashboard/settings/statistics.php:57
2995
  msgid "Impression timer"
2996
  msgstr ""
2997
 
2998
+ #: dashboard/settings/statistics.php:59 dashboard/settings/statistics.php:66
2999
  msgid "Seconds."
3000
  msgstr "秒"
3001
 
3002
+ #: dashboard/settings/statistics.php:60
3003
  #, fuzzy
3004
  msgid "Default: 60."
3005
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
3006
 
3007
+ #: dashboard/settings/statistics.php:60
3008
  #, fuzzy
3009
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
3010
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
3011
 
3012
+ #: dashboard/settings/statistics.php:64
3013
  msgid "Click timer"
3014
  msgstr ""
3015
 
3016
+ #: dashboard/settings/statistics.php:67
3017
  #, fuzzy
3018
  msgid "Default: 86400."
3019
  msgstr "基本は10となっています。この機能を無効にする場合は0にして下さい。"
3020
 
3021
+ #: dashboard/settings/statistics.php:67
3022
  #, fuzzy
3023
  msgid ""
3024
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
3025
  msgstr "この数字は、0やマイナスや3600以上ではいけません。"
3026
 
3027
+ #, fuzzy
3028
+ #~ msgid "Enable responsive support for this advert."
3029
+ #~ msgstr "広告の追加・編集管理"
3030
+
3031
+ #, fuzzy
3032
+ #~ msgid "Current version:"
3033
+ #~ msgstr "現在のスケジュール"
3034
+
3035
+ #, fuzzy
3036
+ #~ msgid "Previous version:"
3037
+ #~ msgstr "プレビュー"
3038
+
3039
+ #, fuzzy
3040
+ #~ msgid "Current database version:"
3041
+ #~ msgstr "現在のスケジュール"
3042
+
3043
+ #, fuzzy
3044
+ #~ msgid "Previous database version:"
3045
+ #~ msgstr "データベースの最適化"
3046
+
3047
+ #, fuzzy
3048
+ #~ msgid "Ad evaluation next run:"
3049
+ #~ msgstr "通知先"
3050
+
3051
+ #, fuzzy
3052
+ #~ msgid "Not scheduled!"
3053
+ #~ msgstr "掲載期間"
3054
+
3055
+ #, fuzzy
3056
+ #~ msgid "Clean Trackerdata next run:"
3057
+ #~ msgstr "データベースのクリーンアップ"
3058
+
3059
+ #, fuzzy
3060
+ #~ msgid "Set up who gets notification emails."
3061
+ #~ msgstr "すぐに注意を必要とする広告"
3062
+
3063
+ #~ msgid ""
3064
+ #~ "A comma separated list of email addresses. Maximum of 5 addresses. Keep "
3065
+ #~ "this list to a minimum!"
3066
+ #~ msgstr ""
3067
+ #~ "コンマを付けることにより最大5個のメールアドレスを登録できます。登録は最小"
3068
+ #~ "限に抑えて下さい。"
3069
+
3070
+ #, fuzzy
3071
+ #~ msgid ""
3072
+ #~ "Messages are sent once every 24 hours when needed. If this field is empty "
3073
+ #~ "no email notifications will be send."
3074
+ #~ msgstr ""
3075
+ #~ "必要なときにメッセージが24時間ごとに送信されます。このフィールドが空である"
3076
+ #~ "場合、メール通知は無効になります。"
3077
+
3078
+ #, fuzzy
3079
+ #~ msgid ""
3080
+ #~ "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
3081
+ #~ "This field may not be empty!"
3082
+ #~ msgstr ""
3083
+ #~ "最大2個のメールアドレスがコンマ区切りで登録できます。ここは空欄では利用で"
3084
+ #~ "きません。"
3085
+
3086
  #, fuzzy
3087
  #~ msgid "Get more features with AdRotate Pro"
3088
  #~ msgstr ""
3115
  #~ msgid "Email Notifications"
3116
  #~ msgstr "メール問い合わせ先"
3117
 
 
 
 
 
3118
  #~ msgid "active ad(s) expired."
3119
  #~ msgstr "個の広告が期限切れです。"
3120
 
3204
  #~ msgid "Barely visible"
3205
  #~ msgstr "稀な表示(20%程度)"
3206
 
 
 
 
3207
  #~ msgid "Normal coverage"
3208
  #~ msgstr "平均的表示(50%程度)"
3209
 
 
 
 
3210
  #~ msgid "Best visibility"
3211
  #~ msgstr "優先表示(100~90%程度)"
3212
 
language/adrotate-pl_PL.mo CHANGED
Binary file
language/adrotate-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-30 14:27+0800\n"
6
- "PO-Revision-Date: 2016-05-30 14:27+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"
@@ -20,114 +20,114 @@ msgstr ""
20
  "|| n%100>=20) ? 1 : 2);\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
- #: adrotate-functions.php:844
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
- #: adrotate-functions.php:847
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
- #: adrotate-functions.php:896
32
  msgid "Ad saved"
33
  msgstr ""
34
 
35
- #: adrotate-functions.php:900
36
  msgid "Group saved"
37
  msgstr ""
38
 
39
- #: adrotate-functions.php:904
40
  msgid "Ad(s) deleted"
41
  msgstr "Reklama usunięta"
42
 
43
- #: adrotate-functions.php:908
44
  msgid "Group deleted"
45
  msgstr "Grupa usunięta"
46
 
47
- #: adrotate-functions.php:912
48
  msgid "Ad(s) statistics reset"
49
  msgstr "Resetuj statystyki reklamy"
50
 
51
- #: adrotate-functions.php:916
52
  msgid "Ad(s) renewed"
53
  msgstr "Odnów reklamę"
54
 
55
- #: adrotate-functions.php:920
56
  msgid "Ad(s) deactivated"
57
  msgstr "Reklama wyłączona"
58
 
59
- #: adrotate-functions.php:924
60
  msgid "Ad(s) activated"
61
  msgstr "Reklama włączona"
62
 
63
- #: adrotate-functions.php:928
64
  msgid "Group including it's Ads deleted"
65
  msgstr "Grupa wraz z reklamami usunięta"
66
 
67
- #: adrotate-functions.php:932
68
  #, fuzzy
69
  msgid "Export created"
70
  msgstr "Reklama utworzona"
71
 
72
- #: adrotate-functions.php:937
73
  msgid "Settings saved"
74
  msgstr "Ustawienia zapisane"
75
 
76
- #: adrotate-functions.php:941
77
  msgid "Database optimized"
78
  msgstr "Baza danych zoptymalizowana"
79
 
80
- #: adrotate-functions.php:945
81
  msgid "Database repaired"
82
  msgstr "Baza danych naprawiona"
83
 
84
- #: adrotate-functions.php:949
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:953
89
  msgid "Empty database records removed"
90
  msgstr "Usunięto puste rekordy bazy danych"
91
 
92
- #: adrotate-functions.php:958
93
  msgid "Action prohibited"
94
  msgstr "Czynność zabroniona."
95
 
96
- #: adrotate-functions.php:962
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:966
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:970
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:974
111
  msgid "Form can not be (partially) empty!"
112
  msgstr ""
113
 
114
- #: adrotate-functions.php:978
115
  msgid "No ads found."
116
  msgstr ""
117
 
118
- #: adrotate-functions.php:982
119
  msgid "Unexpected error"
120
  msgstr ""
121
 
122
- #: adrotate-manage-publisher.php:678
123
  msgid "AdRotate Advertiser"
124
  msgstr ""
125
 
126
- #: adrotate-output.php:574
127
  msgid "Oh no! Something went wrong!"
128
  msgstr "Uwaga ! Coś poszło nie tak !"
129
 
130
- #: adrotate-output.php:575
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 +135,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:576
139
  msgid ""
140
  "If you have received the url you want to visit via email, you are being "
141
  "tricked!"
@@ -143,11 +143,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:577
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:592
151
  msgid ""
152
  "Error, Ad is not available at this time due to schedule/geolocation "
153
  "restrictions or does not exist!"
@@ -155,7 +155,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:594
159
  msgid ""
160
  "Error, Ad is not available at this time due to schedule/geolocation "
161
  "restrictions!"
@@ -163,7 +163,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:601 adrotate-output.php:603
167
  msgid ""
168
  "Either there are no banners, they are disabled or none qualified for this "
169
  "location!"
@@ -171,19 +171,19 @@ msgstr ""
171
  "Prawdopodobnie nie ma reklam albo ich wyświetlanie jest niedozwolone dla tej "
172
  "lokalizacji!"
173
 
174
- #: adrotate-output.php:609
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:615
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:620
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:626
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 +191,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:626
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:632
200
  msgid "An unknown error occured."
201
  msgstr "Pojawił się nieznany błąd."
202
 
203
- #: adrotate-output.php:651 adrotate-output.php:663
204
  #, php-format
205
  msgid "One advert is expired."
206
  msgid_plural "%1$s adverts expired!"
@@ -208,12 +208,12 @@ msgstr[0] ""
208
  msgstr[1] ""
209
  msgstr[2] ""
210
 
211
- #: adrotate-output.php:651 adrotate-output.php:654 adrotate-output.php:658
212
- #: adrotate-output.php:663 adrotate-output.php:666 adrotate-output.php:669
213
  msgid "Check adverts"
214
  msgstr ""
215
 
216
- #: adrotate-output.php:654 adrotate-output.php:666
217
  #, php-format
218
  msgid "One advert expires soon."
219
  msgid_plural "%1$s adverts are almost expiring!"
@@ -221,7 +221,7 @@ msgstr[0] ""
221
  msgstr[1] ""
222
  msgstr[2] ""
223
 
224
- #: adrotate-output.php:658 adrotate-output.php:669
225
  #, php-format
226
  msgid "One advert with configuration errors."
227
  msgid_plural "%1$s adverts have configuration errors!"
@@ -229,217 +229,217 @@ msgstr[0] ""
229
  msgstr[1] ""
230
  msgstr[2] ""
231
 
232
- #: adrotate-output.php:674
233
  msgid ""
234
  "You have enable caching support but W3 Total Cache is not active on your "
235
  "site!"
236
  msgstr ""
237
 
238
- #: adrotate-output.php:677
239
  msgid ""
240
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
241
  "not set."
242
  msgstr ""
243
 
244
- #: adrotate-output.php:682
245
  msgid "Your AdRotate Banner folder is not writable or does not exist."
246
  msgstr ""
247
 
248
- #: adrotate-output.php:701
249
  msgid "one issue that requires"
250
  msgid_plural "several issues that require"
251
  msgstr[0] ""
252
  msgstr[1] ""
253
  msgstr[2] ""
254
 
255
- #: adrotate-output.php:722 dashboard/adrotatepro.php:99
256
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
257
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
258
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
259
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
260
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
261
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
262
- #: dashboard/settings/geotargeting.php:25
263
  #, fuzzy
264
  msgid "Buy now"
265
  msgstr "Kup"
266
 
267
- #: adrotate-output.php:723
268
  msgid ""
269
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
270
  "to the <strong>PRO</strong> version"
271
  msgstr ""
272
 
273
- #: adrotate-output.php:723
274
  #, php-format
275
  msgid ""
276
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
277
  msgstr ""
278
 
279
- #: adrotate-output.php:723
280
  msgid "Thank you for your purchase!"
281
  msgstr ""
282
 
283
- #: adrotate-output.php:749
284
  msgid "one plugin"
285
  msgid_plural "several plugins"
286
  msgstr[0] ""
287
  msgstr[1] ""
288
  msgstr[2] ""
289
 
290
- #: adrotate-output.php:784
291
  msgid ""
292
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
293
  "this menu. Check out the"
294
  msgstr ""
295
 
296
- #: adrotate-output.php:784
297
  msgid "manuals"
298
  msgstr "instrukcje"
299
 
300
- #: adrotate-output.php:784 adrotate-output.php:851
301
  msgid "and"
302
  msgstr ""
303
 
304
- #: adrotate-output.php:784
305
  msgid "forums"
306
  msgstr ""
307
 
308
- #: adrotate-output.php:814
309
  #, fuzzy
310
  msgid "Useful Links"
311
  msgstr "Użyteczne odnośniki."
312
 
313
- #: adrotate-output.php:815
314
  msgid "Useful links to learn more about AdRotate"
315
  msgstr ""
316
 
317
- #: adrotate-output.php:817
318
  msgid "AdRotate website"
319
  msgstr ""
320
 
321
- #: adrotate-output.php:818
322
  #, fuzzy
323
  msgid "Getting Started With AdRotate"
324
  msgstr "Więcej ustawień z AdRotate Pro"
325
 
326
- #: adrotate-output.php:819
327
  #, fuzzy
328
  msgid "AdRotate manuals"
329
  msgstr "Informacja AdRotate "
330
 
331
- #: adrotate-output.php:820
332
  #, fuzzy
333
  msgid "AdRotate Support Forum"
334
  msgstr "Sklep AdRotate"
335
 
336
- #: adrotate-output.php:843
337
  #, fuzzy
338
  msgid "Help AdRotate Grow"
339
  msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
340
 
341
- #: adrotate-output.php:844
342
  msgid "Follow Arnan on Facebook"
343
  msgstr ""
344
 
345
- #: adrotate-output.php:851
346
  msgid ""
347
  "A lot of users only think to review AdRotate when something goes wrong while "
348
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
349
  msgstr ""
350
 
351
- #: adrotate-output.php:851
352
  msgid "If you find AdRotate useful please leave your honest"
353
  msgstr ""
354
 
355
- #: adrotate-output.php:851
356
  msgid "rating"
357
  msgstr ""
358
 
359
- #: adrotate-output.php:851
360
  #, fuzzy
361
  msgid "review"
362
  msgstr ""
363
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
364
 
365
- #: adrotate-output.php:851
366
  msgid "on WordPress.org to help AdRotate grow in a positive way"
367
  msgstr ""
368
 
369
- #: adrotate-output.php:884 dashboard/settings/notifications.php:44
370
- #: dashboard/settings/notifications.php:64
371
  msgid "Available in AdRotate Pro"
372
  msgstr "Dostępne w wersji AdRotate Pro"
373
 
374
- #: adrotate-output.php:884
375
  msgid "More information..."
376
  msgstr "Więcej informacji"
377
 
378
- #: adrotate-output.php:885
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:885
383
  msgid "Learn more"
384
  msgstr "Dowiedź się więcej"
385
 
386
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
387
- #: dashboard/publisher/adverts-edit.php:241
388
  msgid "January"
389
  msgstr "Styczeń "
390
 
391
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
392
- #: dashboard/publisher/adverts-edit.php:242
393
  msgid "February"
394
  msgstr "Luty"
395
 
396
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
397
- #: dashboard/publisher/adverts-edit.php:243
398
  msgid "March"
399
  msgstr "Marzec"
400
 
401
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
402
- #: dashboard/publisher/adverts-edit.php:244
403
  msgid "April"
404
  msgstr "Kwiecień"
405
 
406
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
407
- #: dashboard/publisher/adverts-edit.php:245
408
  msgid "May"
409
  msgstr "Maj"
410
 
411
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
412
- #: dashboard/publisher/adverts-edit.php:246
413
  msgid "June"
414
  msgstr "Czerwiec"
415
 
416
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
417
- #: dashboard/publisher/adverts-edit.php:247
418
  msgid "July"
419
  msgstr "Lipiec"
420
 
421
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
422
- #: dashboard/publisher/adverts-edit.php:248
423
  msgid "August"
424
  msgstr "Sierpień"
425
 
426
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
427
- #: dashboard/publisher/adverts-edit.php:249
428
  msgid "September"
429
  msgstr "Wrzesień"
430
 
431
- #: adrotate-statistics.php:217 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:217 dashboard/publisher/adverts-edit.php:230
437
- #: dashboard/publisher/adverts-edit.php:251
438
  msgid "November"
439
  msgstr "Listopad"
440
 
441
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
442
- #: dashboard/publisher/adverts-edit.php:252
443
  msgid "December"
444
  msgstr "Grudzień"
445
 
@@ -499,205 +499,204 @@ msgstr "ID:"
499
  msgid "Fill in the ID of the type you want to display!"
500
  msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
501
 
502
- #: adrotate.php:105
503
  msgid "General Info"
504
  msgstr "Informacje główne"
505
 
506
- #: adrotate.php:106
507
  msgid "AdRotate Pro"
508
  msgstr "AdRotate Pro"
509
 
510
- #: adrotate.php:107
511
  msgid "Manage Adverts"
512
  msgstr ""
513
 
514
- #: adrotate.php:108 dashboard/publisher/groups-main.php:12
515
  msgid "Manage Groups"
516
  msgstr "Zarządzaj grupami"
517
 
518
- #: adrotate.php:109 adrotate.php:387
519
  #, fuzzy
520
  msgid "Manage Schedules"
521
  msgstr "Zarządzaj"
522
 
523
- #: adrotate.php:110
524
  #, fuzzy
525
  msgid "Manage Media"
526
  msgstr "Media:"
527
 
528
- #: adrotate.php:111
529
  msgid "Settings"
530
  msgstr "Ustawienia"
531
 
532
- #: adrotate.php:134
533
  msgid "AdRotate Info"
534
  msgstr "Informacja AdRotate "
535
 
536
- #: adrotate.php:155
537
  msgid "AdRotate Professional"
538
  msgstr "AdRotate Professional"
539
 
540
- #: adrotate.php:198
541
  msgid "Advert Management"
542
  msgstr ""
543
 
544
- #: adrotate.php:256 adrotate.php:326 adrotate.php:382
545
  msgid "Manage"
546
  msgstr "Zarządzaj"
547
 
548
- #: adrotate.php:257 adrotate.php:327 adrotate.php:383
549
  msgid "Add New"
550
  msgstr "Dodaj nową"
551
 
552
- #: adrotate.php:320
553
  msgid "Group Management"
554
  msgstr "Zarządzanie grupą reklam"
555
 
556
- #: adrotate.php:329
557
  msgid "Report"
558
  msgstr "Raport"
559
 
560
- #: adrotate.php:378
561
  #, fuzzy
562
  msgid "Schedule Management available in AdRotate Pro"
563
  msgstr "Dostępne w wersji AdRotate Pro"
564
 
565
- #: adrotate.php:388
566
  msgid ""
567
  "Schedule management and multiple schedules per advert is available in "
568
  "AdRotate Pro."
569
  msgstr ""
570
 
571
- #: adrotate.php:388 adrotate.php:475 dashboard/publisher/adverts-edit.php:188
572
  #: dashboard/publisher/adverts-main.php:114
573
- #: dashboard/publisher/groups-edit.php:75
574
  #: dashboard/publisher/groups-main.php:89
575
  #, fuzzy
576
  msgid "More information"
577
  msgstr "Więcej informacji"
578
 
579
- #: adrotate.php:395 dashboard/publisher/adverts-disabled.php:20
580
  #: dashboard/publisher/adverts-error.php:19
581
  #: dashboard/publisher/adverts-main.php:20
582
  #: dashboard/publisher/groups-main.php:20
583
  msgid "Bulk Actions"
584
  msgstr "Działania masowe"
585
 
586
- #: adrotate.php:396 dashboard/publisher/adverts-disabled.php:25
587
  #: dashboard/publisher/adverts-error.php:29
588
  #: dashboard/publisher/adverts-main.php:30
589
  #: dashboard/publisher/groups-main.php:24
590
  msgid "Go"
591
  msgstr "Idź"
592
 
593
- #: adrotate.php:405 dashboard/publisher/adverts-disabled.php:35
594
  #: dashboard/publisher/adverts-error.php:39
595
  #: dashboard/publisher/adverts-main.php:39
596
- #: dashboard/publisher/groups-edit.php:51
597
  #: dashboard/publisher/groups-main.php:32
598
  msgid "ID"
599
  msgstr "ID"
600
 
601
- #: adrotate.php:406
602
  #, fuzzy
603
  msgid "Start"
604
  msgstr "Start / Koniec"
605
 
606
- #: adrotate.php:406
607
  #, fuzzy
608
  msgid "End"
609
  msgstr "Start / Koniec"
610
 
611
- #: adrotate.php:407
612
  msgid "Ads"
613
  msgstr "Reklamy"
614
 
615
- #: adrotate.php:409
616
  msgid "Max Impressions"
617
  msgstr "Maksymalna liczba wyświetleń"
618
 
619
- #: adrotate.php:410
620
  msgid "Max Clicks"
621
  msgstr "Maksymalna liczna kliknięć"
622
 
623
- #: adrotate.php:440
624
  #, fuzzy
625
  msgid "No schedules created yet!"
626
  msgstr "Nie utworzono jeszcze żadnych reklam!"
627
 
628
- #: adrotate.php:445
629
  #, fuzzy
630
  msgid "Easily manage your schedules from here with AdRotate Pro."
631
  msgstr "Więcej ustawień z AdRotate Pro"
632
 
633
- #: adrotate.php:445 adrotate.php:511
634
  #, fuzzy
635
  msgid "Upgrade today!"
636
  msgstr "Dziś"
637
 
638
- #: adrotate.php:448 dashboard/publisher/adverts-error.php:72
639
- #: dashboard/publisher/groups-edit.php:387
640
  msgid "Expires soon."
641
  msgstr "Wygasa wkrótce."
642
 
643
- #: adrotate.php:449 dashboard/publisher/adverts-error.php:73
644
- #: dashboard/publisher/groups-edit.php:388
645
  msgid "Has expired."
646
  msgstr "Wygasła."
647
 
648
- #: adrotate.php:473
649
  #, fuzzy
650
  msgid "Media Management available in AdRotate Pro"
651
  msgstr "Dostępne w wersji AdRotate Pro"
652
 
653
- #: adrotate.php:475
654
  msgid "Upload images to the AdRotate Pro banners folder from here."
655
  msgstr ""
656
 
657
- #: adrotate.php:475
658
  msgid ""
659
  "This is useful if you use responsive adverts with multiple images or have "
660
  "HTML5 adverts containing multiple files."
661
  msgstr ""
662
 
663
- #: adrotate.php:475
664
  #, fuzzy
665
  msgid "Media uploading and management is available in AdRotate Pro."
666
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
667
 
668
- #: adrotate.php:477
669
  msgid "Upload new file"
670
  msgstr ""
671
 
672
- #: adrotate.php:478
673
  msgid "Accepted files:"
674
  msgstr ""
675
 
676
- #: adrotate.php:478
677
  msgid "For HTML5 ads you can also upload html and javascript files."
678
  msgstr ""
679
 
680
- #: adrotate.php:478
681
  msgid "Maximum size is 512Kb."
682
  msgstr ""
683
 
684
- #: adrotate.php:478
685
  msgid "Important:"
686
  msgstr ""
687
 
688
- #: adrotate.php:478
689
  msgid ""
690
  "Make sure your file has no spaces or special characters in the name. Replace "
691
  "spaces with a - or _."
692
  msgstr ""
693
 
694
- #: adrotate.php:478
695
  msgid ""
696
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
697
  "file so it knows about the changed name. For example for the javascript file."
698
  msgstr ""
699
 
700
- #: adrotate.php:481
701
  #, fuzzy
702
  msgid ""
703
  "For responsive adverts make sure the filename is in the following format; "
@@ -707,7 +706,7 @@ msgstr ""
707
  "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
708
  "pełnego wachlarza rozmiarów.'"
709
 
710
- #: adrotate.php:482 dashboard/publisher/adverts-edit.php:311
711
  msgid ""
712
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
713
  "filename instead of \".full\" for the various viewports."
@@ -715,12 +714,12 @@ msgstr ""
715
  "Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
716
  "\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
717
 
718
- #: adrotate.php:483 dashboard/publisher/groups-edit.php:312
719
- #: dashboard/publisher/groups-edit.php:320
720
  msgid "Example:"
721
  msgstr "Przykład:"
722
 
723
- #: adrotate.php:483
724
  #, fuzzy
725
  msgid ""
726
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
@@ -729,54 +728,50 @@ msgstr ""
729
  "image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie w "
730
  "różnych widokach. Wymaga jQuery."
731
 
732
- #: adrotate.php:487
733
  msgid "Upload file"
734
  msgstr ""
735
 
736
- #: adrotate.php:487
737
  msgid "Click only once per file!"
738
  msgstr ""
739
 
740
- #: adrotate.php:490
741
  msgid "Available files in"
742
  msgstr ""
743
 
744
- #: adrotate.php:495 dashboard/publisher/groups-edit.php:55
745
  #: dashboard/publisher/groups-main.php:33
746
  msgid "Name"
747
  msgstr "Nazwa"
748
 
749
- #: adrotate.php:496
750
  #, fuzzy
751
  msgid "Actions"
752
  msgstr "Działania masowe"
753
 
754
- #: adrotate.php:501 adrotate.php:502 adrotate.php:503 adrotate.php:504
755
- #: adrotate.php:505 adrotate.php:506 adrotate.php:507
756
  #: dashboard/publisher/adverts-disabled.php:22
757
  #: dashboard/publisher/adverts-error.php:21
758
  #: dashboard/publisher/adverts-main.php:22
759
  msgid "Delete"
760
  msgstr "Usuń"
761
 
762
- #: adrotate.php:511
763
  msgid ""
764
  "Make sure the banner images are not in use by adverts when you delete them!"
765
  msgstr ""
766
 
767
- #: adrotate.php:511
768
  #, fuzzy
769
  msgid "Manage your banner folder from here with AdRotate Pro."
770
  msgstr "Więcej ustawień z AdRotate Pro"
771
 
772
- #: adrotate.php:540
773
  msgid "AdRotate Settings"
774
  msgstr "Ustawienia AdRotate"
775
 
776
- #: adrotate.php:612
777
- msgid "Update Options"
778
- msgstr "Zapisz opcje"
779
-
780
  #: dashboard/adrotatepro.php:20
781
  msgid "Satisfy your advertisers"
782
  msgstr "Zadowalaj swoich reklamodawców"
@@ -968,7 +963,7 @@ msgstr "Twoje ustawienia"
968
  msgid "Adverts that need you"
969
  msgstr "Reklamy wymagające uwagi"
970
 
971
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
972
  #: dashboard/publisher/groups-main.php:34
973
  msgid "Adverts"
974
  msgstr "Reklamy"
@@ -1011,7 +1006,7 @@ msgid "Disabled Adverts"
1011
  msgstr ""
1012
 
1013
  #: dashboard/publisher/adverts-disabled.php:21
1014
- #: dashboard/publisher/adverts-edit.php:176
1015
  msgid "Activate"
1016
  msgstr "Aktywuj"
1017
 
@@ -1028,7 +1023,7 @@ msgid "Start / End"
1028
  msgstr "Start / Koniec"
1029
 
1030
  #: dashboard/publisher/adverts-disabled.php:37
1031
- #: dashboard/publisher/adverts-edit.php:116
1032
  #: dashboard/publisher/adverts-error.php:41
1033
  #: dashboard/publisher/adverts-main.php:41
1034
  msgid "Title"
@@ -1036,7 +1031,7 @@ msgstr "tytuł"
1036
 
1037
  #: dashboard/publisher/adverts-disabled.php:38
1038
  #: dashboard/publisher/adverts-main.php:44
1039
- #: dashboard/publisher/groups-edit.php:333
1040
  #: dashboard/publisher/groups-main.php:36
1041
  msgid "Shown"
1042
  msgstr "Wyświetlane"
@@ -1045,7 +1040,7 @@ msgstr "Wyświetlane"
1045
  #: dashboard/publisher/adverts-main.php:46
1046
  #: dashboard/publisher/adverts-report.php:36
1047
  #: dashboard/publisher/adverts-report.php:57
1048
- #: dashboard/publisher/groups-edit.php:334
1049
  #: dashboard/publisher/groups-main.php:38
1050
  #: dashboard/publisher/groups-report.php:37
1051
  #: dashboard/publisher/groups-report.php:58
@@ -1087,34 +1082,28 @@ msgid "The AdCode cannot be empty!"
1087
  msgstr "Kod reklamy nie może być pusty!"
1088
 
1089
  #: dashboard/publisher/adverts-edit.php:51
1090
- msgid "You did not use %image% in your AdCode but did select a file to use!"
 
 
1091
  msgstr ""
1092
 
1093
  #: dashboard/publisher/adverts-edit.php:54
1094
- msgid "You did use %image% in your AdCode but did not select a file to use!"
1095
- msgstr ""
1096
-
1097
- #: dashboard/publisher/adverts-edit.php:57
1098
  msgid ""
1099
- "You did not use %image% in your AdCode. The responsive checkbox will be "
1100
- "ineffective."
1101
  msgstr ""
1102
 
1103
- #: dashboard/publisher/adverts-edit.php:60
1104
  msgid ""
1105
  "There is a problem saving the image. Please reset your image and re-save the "
1106
  "ad!"
1107
  msgstr ""
1108
 
1109
- #: dashboard/publisher/adverts-edit.php:63
1110
- msgid "Responsive is enabled but your banner image has the wrong name."
1111
- msgstr ""
1112
-
1113
- #: dashboard/publisher/adverts-edit.php:66
1114
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1115
  msgstr ""
1116
 
1117
- #: dashboard/publisher/adverts-edit.php:71
1118
  msgid ""
1119
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1120
  "the ad!"
@@ -1122,77 +1111,77 @@ msgstr ""
1122
  "AdRotate nie może znaleść błedu ale reklama jest oznaczona jako zawierajaca "
1123
  "błędy. Sprobuj zapisać ją ponownie!"
1124
 
1125
- #: dashboard/publisher/adverts-edit.php:74
1126
  msgid "This ad is expired and currently not shown on your website!"
1127
  msgstr "Ta reklama wygasła i obecnie nie jest wyświetlana na stronie!"
1128
 
1129
- #: dashboard/publisher/adverts-edit.php:77
1130
  msgid "The ad will expire in less than 2 days!"
1131
  msgstr "Ta reklama wygaśnie za 2 dni!"
1132
 
1133
- #: dashboard/publisher/adverts-edit.php:80
1134
  msgid "This ad will expire in less than 7 days!"
1135
  msgstr "Ta reklama wygaśnie za 7 dni!"
1136
 
1137
- #: dashboard/publisher/adverts-edit.php:83
1138
  msgid "This ad has been disabled and does not rotate on your site!"
1139
  msgstr "Reklama został wyłączona i nie jest wyświetlana na stronie!"
1140
 
1141
- #: dashboard/publisher/adverts-edit.php:108
1142
  msgid "New Advert"
1143
  msgstr "Nowa reklama"
1144
 
1145
- #: dashboard/publisher/adverts-edit.php:110
1146
  msgid "Edit Advert"
1147
  msgstr "Edytuj reklamę"
1148
 
1149
- #: dashboard/publisher/adverts-edit.php:122
1150
  msgid "AdCode"
1151
  msgstr ""
1152
 
1153
- #: dashboard/publisher/adverts-edit.php:127
1154
  msgid "Basic Examples:"
1155
  msgstr "Proste przykłady:"
1156
 
1157
- #: dashboard/publisher/adverts-edit.php:134
1158
  msgid "Useful tags"
1159
  msgstr ""
1160
 
1161
- #: dashboard/publisher/adverts-edit.php:136
1162
  msgid "Insert the advert ID Number."
1163
  msgstr ""
1164
 
1165
- #: dashboard/publisher/adverts-edit.php:136
1166
- msgid "Required when selecting a image below."
1167
  msgstr ""
1168
 
1169
- #: dashboard/publisher/adverts-edit.php:136
1170
  msgid "Insert the advert name."
1171
  msgstr ""
1172
 
1173
- #: dashboard/publisher/adverts-edit.php:136
1174
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1175
  msgstr ""
1176
 
1177
- #: dashboard/publisher/adverts-edit.php:136
1178
  msgid "Add inside the <a> tag to open advert in a new window."
1179
  msgstr ""
1180
 
1181
- #: dashboard/publisher/adverts-edit.php:136
1182
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1183
  msgstr ""
1184
 
1185
- #: dashboard/publisher/adverts-edit.php:136
1186
  msgid ""
1187
  "Place the cursor in your AdCode where you want to add any of these tags and "
1188
  "click to add it."
1189
  msgstr ""
1190
 
1191
- #: dashboard/publisher/adverts-edit.php:141
1192
  msgid "Preview"
1193
  msgstr "Podgląd"
1194
 
1195
- #: dashboard/publisher/adverts-edit.php:144
1196
  msgid ""
1197
  "Note: While this preview is an accurate one, it might look different then it "
1198
  "does on the website."
@@ -1200,42 +1189,42 @@ msgstr ""
1200
  "Uwaga: Podczas podglądu reklama może wygląać inaczej, to nie na stronie "
1201
  "internetowej."
1202
 
1203
- #: dashboard/publisher/adverts-edit.php:145
1204
  msgid ""
1205
  "This is because of CSS differences. Your themes CSS file is not active here!"
1206
  msgstr ""
1207
  "To wynika z różnic w Kaskadowych arkuszach stylu CSS. Twój szablon nie "
1208
  "działa w tym pliku!."
1209
 
1210
- #: dashboard/publisher/adverts-edit.php:150
1211
  msgid "Banner asset"
1212
  msgstr ""
1213
 
1214
- #: dashboard/publisher/adverts-edit.php:153
1215
  msgid "WordPress media:"
1216
  msgstr ""
1217
 
1218
- #: dashboard/publisher/adverts-edit.php:153
1219
  msgid "Select Banner"
1220
  msgstr "Wybierz baner:"
1221
 
1222
- #: dashboard/publisher/adverts-edit.php:155
1223
  msgid "- OR -"
1224
  msgstr "--albo-"
1225
 
1226
- #: dashboard/publisher/adverts-edit.php:157
1227
  msgid "Banner folder:"
1228
  msgstr "Folder banerów:"
1229
 
1230
- #: dashboard/publisher/adverts-edit.php:158
1231
  msgid "No image selected"
1232
  msgstr "Nie wybrano żadnego obrazu"
1233
 
1234
- #: dashboard/publisher/adverts-edit.php:162
1235
- msgid "Use %image% in the adcode instead of the file path."
1236
  msgstr ""
1237
 
1238
- #: dashboard/publisher/adverts-edit.php:162
1239
  msgid ""
1240
  "Use either the text field or the dropdown. If the textfield has content that "
1241
  "field has priority."
@@ -1243,315 +1232,317 @@ msgstr ""
1243
  "Skorzystaj z pola tekstowego lub listy rozwijanej. Jeśli pole tekstowe "
1244
  "zawiera treści, te pole ma pierwszeństwo."
1245
 
1246
- #: dashboard/publisher/adverts-edit.php:167
1247
- #: dashboard/settings/statistics.php:12
1248
  msgid "Statistics"
1249
  msgstr "Statystyki"
1250
 
1251
- #: dashboard/publisher/adverts-edit.php:169
1252
  msgid "Enable click and impression tracking for this advert."
1253
  msgstr ""
1254
 
1255
- #: dashboard/publisher/adverts-edit.php:170
1256
  msgid ""
1257
  "Note: Clicktracking does not work for Javascript adverts such as those "
1258
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1259
  "always supported."
1260
  msgstr ""
1261
 
1262
- #: dashboard/publisher/adverts-edit.php:180
1263
  msgid "Yes, this ad will be used"
1264
  msgstr "Uruchom ta reklamę"
1265
 
1266
- #: dashboard/publisher/adverts-edit.php:181
1267
  msgid "No, do not show this ad anywhere"
1268
  msgstr "Niepokazuj tej reklamy."
1269
 
1270
- #: dashboard/publisher/adverts-edit.php:188
1271
  #: dashboard/publisher/adverts-main.php:114
1272
- #: dashboard/publisher/groups-edit.php:75
1273
  #: dashboard/publisher/groups-main.php:89
1274
  #, fuzzy
1275
  msgid "Get more features with AdRotate Pro."
1276
  msgstr "Więcej ustawień z AdRotate Pro"
1277
 
1278
- #: dashboard/publisher/adverts-edit.php:191
1279
- #: dashboard/publisher/adverts-edit.php:291
1280
- #: dashboard/publisher/adverts-edit.php:386
1281
- #: dashboard/publisher/adverts-edit.php:427
1282
  msgid "Save Advert"
1283
  msgstr "Zapisz reklamę"
1284
 
1285
- #: dashboard/publisher/adverts-edit.php:192
1286
- #: dashboard/publisher/adverts-edit.php:292
1287
- #: dashboard/publisher/adverts-edit.php:387
1288
- #: dashboard/publisher/adverts-edit.php:428
1289
- #: dashboard/publisher/groups-edit.php:154
1290
- #: dashboard/publisher/groups-edit.php:301
1291
- #: dashboard/publisher/groups-edit.php:393
1292
  msgid "Cancel"
1293
  msgstr "Anuluj"
1294
 
1295
- #: dashboard/publisher/adverts-edit.php:195
1296
- #: dashboard/publisher/adverts-edit.php:369
1297
- #: dashboard/publisher/groups-edit.php:136
1298
- #: dashboard/publisher/groups-edit.php:283
1299
  msgid "Usage"
1300
  msgstr "Użycie"
1301
 
1302
- #: dashboard/publisher/adverts-edit.php:199
1303
- #: dashboard/publisher/adverts-edit.php:373
1304
- #: dashboard/publisher/groups-edit.php:140
1305
- #: dashboard/publisher/groups-edit.php:287
1306
  msgid "Widget"
1307
  msgstr ""
1308
 
1309
- #: dashboard/publisher/adverts-edit.php:200
1310
- #: dashboard/publisher/adverts-edit.php:374
1311
  msgid ""
1312
- "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1313
- "and enter ID"
1314
  msgstr ""
1315
 
1316
- #: dashboard/publisher/adverts-edit.php:203
1317
- #: dashboard/publisher/adverts-edit.php:377
1318
- #: dashboard/publisher/groups-edit.php:144
1319
- #: dashboard/publisher/groups-edit.php:291
1320
  msgid "In a post or page"
1321
  msgstr ""
1322
 
1323
- #: dashboard/publisher/adverts-edit.php:205
1324
- #: dashboard/publisher/adverts-edit.php:379
1325
- #: dashboard/publisher/groups-edit.php:146
1326
- #: dashboard/publisher/groups-edit.php:293
1327
  msgid "Directly in a theme"
1328
  msgstr ""
1329
 
1330
- #: dashboard/publisher/adverts-edit.php:211
1331
  msgid "Schedule your advert"
1332
  msgstr ""
1333
 
1334
- #: dashboard/publisher/adverts-edit.php:215
1335
  msgid "Start date (day/month/year)"
1336
  msgstr ""
1337
 
1338
- #: dashboard/publisher/adverts-edit.php:236
1339
  msgid "End date (day/month/year)"
1340
  msgstr ""
1341
 
1342
- #: dashboard/publisher/adverts-edit.php:259
1343
  msgid "Start time (hh:mm)"
1344
  msgstr ""
1345
 
1346
- #: dashboard/publisher/adverts-edit.php:266
1347
  msgid "End time (hh:mm)"
1348
  msgstr ""
1349
 
1350
- #: dashboard/publisher/adverts-edit.php:276
1351
  msgid "Maximum Clicks"
1352
  msgstr ""
1353
 
1354
- #: dashboard/publisher/adverts-edit.php:277
1355
- #: dashboard/publisher/adverts-edit.php:279
1356
  msgid "Leave empty or 0 to skip this."
1357
  msgstr "Pozostaw puste albo wpisz 0 ."
1358
 
1359
- #: dashboard/publisher/adverts-edit.php:278
1360
  msgid "Maximum Impressions"
1361
  msgstr ""
1362
 
1363
- #: dashboard/publisher/adverts-edit.php:283
1364
  msgid "Important"
1365
  msgstr ""
1366
 
1367
- #: dashboard/publisher/adverts-edit.php:284
1368
  msgid ""
1369
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1370
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1371
  "14:00 hours. 6AM is 6:00 hours."
1372
  msgstr ""
1373
 
1374
- #: dashboard/publisher/adverts-edit.php:288
1375
  msgid ""
1376
  "Create multiple and more advanced schedules for each advert with AdRotate "
1377
  "Pro."
1378
  msgstr ""
1379
 
1380
- #: dashboard/publisher/adverts-edit.php:288
1381
- #: dashboard/publisher/adverts-edit.php:323
1382
- #: dashboard/publisher/adverts-edit.php:367
1383
- #: dashboard/publisher/groups-edit.php:200
1384
  #, fuzzy
1385
  msgid "Upgrade today"
1386
  msgstr "Dziś"
1387
 
1388
- #: dashboard/publisher/adverts-edit.php:295
1389
- #: dashboard/publisher/groups-edit.php:157
1390
  msgid "Advanced"
1391
  msgstr "Zaawansowane"
1392
 
1393
- #: dashboard/publisher/adverts-edit.php:296
1394
  msgid "Everything below is optional."
1395
  msgstr "Wszystkie opcje poniżej są opcjonalne."
1396
 
1397
- #: dashboard/publisher/adverts-edit.php:300
1398
- msgid "Mobile"
1399
  msgstr ""
1400
 
1401
- #: dashboard/publisher/adverts-edit.php:302
1402
- msgid "Show on;"
1403
- msgstr ""
 
 
1404
 
1405
- #: dashboard/publisher/adverts-edit.php:302
1406
- msgid "Computers"
1407
  msgstr ""
1408
 
1409
- #: dashboard/publisher/adverts-edit.php:302
1410
- msgid "Smartphones"
1411
- msgstr ""
1412
 
1413
- #: dashboard/publisher/adverts-edit.php:302
1414
- msgid "Tablets."
1415
  msgstr ""
1416
 
1417
- #: dashboard/publisher/adverts-edit.php:303
1418
- msgid "Also enable mobile support in the group this advert goes in."
 
 
 
 
1419
  msgstr ""
1420
 
1421
- #: dashboard/publisher/adverts-edit.php:307
1422
- msgid "Responsive"
1423
  msgstr ""
1424
 
1425
- #: dashboard/publisher/adverts-edit.php:309
1426
- msgid "Enable responsive support for this advert."
1427
- msgstr "Włącz responsywny wygląd dla tej reklamy."
1428
 
1429
- #: dashboard/publisher/adverts-edit.php:310
1430
- msgid ""
1431
- "Upload your images to the banner folder and make sure the filename is in the "
1432
- "following format; \"imagename.full.ext\"."
1433
  msgstr ""
1434
 
1435
- #: dashboard/publisher/adverts-edit.php:312
1436
- #: dashboard/publisher/adverts-report.php:64
1437
- #: dashboard/publisher/groups-report.php:65
1438
- msgid "Note:"
1439
- msgstr "Notatka:"
1440
 
1441
- #: dashboard/publisher/adverts-edit.php:312
1442
  msgid ""
1443
- "This feature will not be developed any further. Consider switching to the "
1444
- "Mobile feature in AdRotate Pro as seen above!"
1445
  msgstr ""
1446
 
1447
- #: dashboard/publisher/adverts-edit.php:316
1448
- #: dashboard/publisher/groups-edit.php:194
1449
  msgid "Sortorder"
1450
  msgstr ""
1451
 
1452
- #: dashboard/publisher/adverts-edit.php:318
1453
- #: dashboard/publisher/groups-edit.php:196
1454
  msgid "For administrative purposes set a sortorder."
1455
  msgstr "Dla celów administracyjnych ustaw sortowanie."
1456
 
1457
- #: dashboard/publisher/adverts-edit.php:318
1458
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1459
  msgstr ""
1460
  "Pozostaw puste albo wpisz 0 by pominąć te ustawienia. Domyślnie ID reklamy."
1461
 
1462
- #: dashboard/publisher/adverts-edit.php:323
1463
  msgid ""
1464
  "With AdRotate Pro you can easily select which devices the advert should show "
1465
  "on!"
1466
  msgstr ""
1467
 
1468
- #: dashboard/publisher/adverts-edit.php:325
1469
  msgid "Geo Targeting in AdRotate Pro"
1470
  msgstr ""
1471
 
1472
- #: dashboard/publisher/adverts-edit.php:326
1473
  msgid ""
1474
  "Assign the advert to a group and enable that group to use Geo Targeting."
1475
  msgstr ""
1476
 
1477
- #: dashboard/publisher/adverts-edit.php:330
1478
  msgid "Cities/States"
1479
  msgstr ""
1480
 
1481
- #: dashboard/publisher/adverts-edit.php:333
1482
  msgid ""
1483
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1484
  "states ISO codes are supported)"
1485
  msgstr ""
1486
 
1487
- #: dashboard/publisher/adverts-edit.php:333
1488
  msgid ""
1489
  "AdRotate does not check the validity of names so make sure you spell them "
1490
  "correctly!"
1491
  msgstr ""
1492
 
1493
- #: dashboard/publisher/adverts-edit.php:337
1494
  msgid "Countries"
1495
  msgstr ""
1496
 
1497
- #: dashboard/publisher/adverts-edit.php:362
1498
  msgid "Select the countries you want the adverts to show in."
1499
  msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
1500
 
1501
- #: dashboard/publisher/adverts-edit.php:362
1502
  msgid "Cities take priority and will be filtered first."
1503
  msgstr "Miasta mają pierwszeństwo i będą filtrowane jaki pierwsze."
1504
 
1505
- #: dashboard/publisher/adverts-edit.php:367
1506
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1507
  msgstr ""
1508
 
1509
- #: dashboard/publisher/adverts-edit.php:391
1510
  msgid "Select Groups"
1511
  msgstr "Wybierz grupy"
1512
 
1513
- #: dashboard/publisher/adverts-edit.php:396
1514
  msgid "ID - Name"
1515
  msgstr "ID - Nazwa"
1516
 
1517
- #: dashboard/publisher/adverts-edit.php:406
1518
  #: dashboard/publisher/groups-main.php:60
1519
- #: dashboard/settings/geotargeting.php:36
1520
  msgid "Default"
1521
  msgstr "Domyślny"
1522
 
1523
- #: dashboard/publisher/adverts-edit.php:407
1524
  #: dashboard/publisher/groups-main.php:61
1525
  msgid "Dynamic"
1526
  msgstr "Dynamiczny"
1527
 
1528
- #: dashboard/publisher/adverts-edit.php:407
1529
  #: dashboard/publisher/groups-main.php:61
1530
  msgid "second rotation"
1531
  msgstr "drugi obrót"
1532
 
1533
- #: dashboard/publisher/adverts-edit.php:408
1534
  #: dashboard/publisher/groups-main.php:62
1535
  msgid "Block"
1536
  msgstr "Blok"
1537
 
1538
- #: dashboard/publisher/adverts-edit.php:408
1539
  #: dashboard/publisher/groups-main.php:62
1540
  msgid "grid"
1541
  msgstr "siatka"
1542
 
1543
- #: dashboard/publisher/adverts-edit.php:409
1544
- #: dashboard/publisher/groups-edit.php:202
1545
  #: dashboard/publisher/groups-main.php:63
1546
  msgid "Post Injection"
1547
  msgstr "Umieszczanie we wpisach"
1548
 
1549
- #: dashboard/publisher/adverts-edit.php:410
1550
  msgid "Geolocation"
1551
  msgstr "Geolokalizacja"
1552
 
1553
- #: dashboard/publisher/adverts-edit.php:416
1554
- #: dashboard/publisher/groups-edit.php:61
1555
  #: dashboard/publisher/groups-main.php:70
1556
  msgid "Mode"
1557
  msgstr "Tryb"
@@ -1591,7 +1582,7 @@ msgid "For 7 days"
1591
  msgstr "Na 7 dni"
1592
 
1593
  #: dashboard/publisher/adverts-error.php:71
1594
- #: dashboard/publisher/groups-edit.php:386
1595
  msgid "Configuration errors."
1596
  msgstr "Błedy konfiguracji."
1597
 
@@ -1604,11 +1595,6 @@ msgstr ""
1604
  msgid "Export to XML"
1605
  msgstr "Eksportuj ustawienia"
1606
 
1607
- #: dashboard/publisher/adverts-main.php:42
1608
- #: dashboard/publisher/groups-edit.php:336
1609
- msgid "Weight"
1610
- msgstr "Waga"
1611
-
1612
  #: dashboard/publisher/adverts-main.php:45
1613
  #: dashboard/publisher/adverts-main.php:47
1614
  #: dashboard/publisher/groups-main.php:37
@@ -1646,6 +1632,13 @@ msgstr "Dzisiejsze kliknięcia "
1646
  msgid "Monthly overview of clicks and impressions"
1647
  msgstr "Miesięczne zestawienie kliknięć i wyświetleń"
1648
 
 
 
 
 
 
 
 
1649
  #: dashboard/publisher/adverts-report.php:64
1650
  #: dashboard/publisher/groups-report.php:65
1651
  msgid ""
@@ -1663,320 +1656,320 @@ msgstr "Nowa grupa"
1663
  msgid "Edit Group"
1664
  msgstr "Edytuj grupę"
1665
 
1666
- #: dashboard/publisher/groups-edit.php:64
1667
  msgid "Default - Show one ad at a time"
1668
  msgstr "Domyśłne - pokazuj jedną na raz"
1669
 
1670
- #: dashboard/publisher/groups-edit.php:65
1671
  msgid "Dynamic Mode - Show a different ad every few seconds"
1672
  msgstr "Tryb dynamiczny - Zmieniaj reklamy co kilka sekund"
1673
 
1674
- #: dashboard/publisher/groups-edit.php:66
1675
  msgid "Block Mode - Show a block of adverts"
1676
  msgstr ""
1677
 
1678
- #: dashboard/publisher/groups-edit.php:70
1679
  #, fuzzy
1680
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1681
  msgstr ""
1682
  "Tryb Dynamiczny i Blokowy wymagają załadowania 'jQuery' i jQuery "
1683
  "Wyłączone' . Możesz uruchomić ten tryb w Ustawieniach AdRotate."
1684
 
1685
- #: dashboard/publisher/groups-edit.php:77
1686
- #: dashboard/publisher/groups-edit.php:104
1687
  msgid "Dynamic and Block Mode"
1688
  msgstr "Tryb dynamiczny i blokowy"
1689
 
1690
- #: dashboard/publisher/groups-edit.php:78
1691
  msgid "Only required if your group is in Dynamic or Block mode."
1692
  msgstr ""
1693
  "Wymagane jedynie gdy grupa reklam jest w trybie Dynamicznym lub Blokowym"
1694
 
1695
- #: dashboard/publisher/groups-edit.php:82
1696
  msgid "Block size"
1697
  msgstr ""
1698
 
1699
- #: dashboard/publisher/groups-edit.php:88
1700
  msgid "rows"
1701
  msgstr "wiersze"
1702
 
1703
- #: dashboard/publisher/groups-edit.php:92
1704
  msgid "columns"
1705
  msgstr "kolumny"
1706
 
1707
- #: dashboard/publisher/groups-edit.php:95
1708
  msgid "Block Mode"
1709
  msgstr "Tryb Bloku"
1710
 
1711
- #: dashboard/publisher/groups-edit.php:95
1712
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1713
  msgstr ""
1714
 
1715
- #: dashboard/publisher/groups-edit.php:99
1716
  msgid "Advert size"
1717
  msgstr ""
1718
 
1719
- #: dashboard/publisher/groups-edit.php:101
1720
  msgid "pixel(s) wide"
1721
  msgstr "szerokość w pikselach"
1722
 
1723
- #: dashboard/publisher/groups-edit.php:101
1724
  msgid "pixel(s) high."
1725
  msgstr "wysokość w pikselach"
1726
 
1727
- #: dashboard/publisher/groups-edit.php:104
1728
  msgid ""
1729
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1730
  "recommended). Default: 125/125."
1731
  msgstr ""
1732
 
1733
- #: dashboard/publisher/groups-edit.php:108
1734
  msgid "Automated refresh"
1735
  msgstr "Automatycznie odświeżane"
1736
 
1737
- #: dashboard/publisher/groups-edit.php:127
1738
  msgid "seconds."
1739
  msgstr "sekund."
1740
 
1741
- #: dashboard/publisher/groups-edit.php:130
1742
  msgid "Dynamic Mode"
1743
  msgstr "Tryb dynamiczny"
1744
 
1745
- #: dashboard/publisher/groups-edit.php:130
1746
  msgid ""
1747
  "Load a new advert in this interval without reloading the page. Default: 6."
1748
  msgstr ""
1749
  "Załąduj nową reklamę w tych odstępach czasowych bez odświeżania strony. "
1750
  "Domyślnie 6."
1751
 
1752
- #: dashboard/publisher/groups-edit.php:141
1753
- #: dashboard/publisher/groups-edit.php:288
1754
  msgid ""
1755
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1756
  "Adverts\" and enter ID"
1757
  msgstr ""
1758
 
1759
- #: dashboard/publisher/groups-edit.php:153
1760
- #: dashboard/publisher/groups-edit.php:300
1761
- #: dashboard/publisher/groups-edit.php:392
1762
  msgid "Save Group"
1763
  msgstr "Zapisz grupę"
1764
 
1765
- #: dashboard/publisher/groups-edit.php:161
1766
  msgid "Advert Margin"
1767
  msgstr "Margines reklamy"
1768
 
1769
- #: dashboard/publisher/groups-edit.php:163
1770
  msgid "pixel(s)"
1771
  msgstr "piksele"
1772
 
1773
- #: dashboard/publisher/groups-edit.php:166
1774
  #, fuzzy
1775
  msgid "A transparent area outside the advert in pixels. Default: 0."
1776
  msgstr "Transparentna ramka wokól reklamy- w pikselach. Domyślnie: 1."
1777
 
1778
- #: dashboard/publisher/groups-edit.php:166
1779
  #, fuzzy
1780
  msgid "Set to 0 to disable."
1781
  msgstr "Domyślnie: 10. Ustaw 0 by wyłączyć ten licznik."
1782
 
1783
- #: dashboard/publisher/groups-edit.php:166
1784
  msgid "Margins are automatically disabled for blocks where required."
1785
  msgstr ""
1786
 
1787
- #: dashboard/publisher/groups-edit.php:170
1788
  #, fuzzy
1789
  msgid "Align the group"
1790
  msgstr "Reklamy w grupie"
1791
 
1792
- #: dashboard/publisher/groups-edit.php:173
1793
  #, fuzzy
1794
  msgid "None (Default)"
1795
  msgstr "Domyślny"
1796
 
1797
- #: dashboard/publisher/groups-edit.php:174
1798
  msgid "Left"
1799
  msgstr ""
1800
 
1801
- #: dashboard/publisher/groups-edit.php:175
1802
  #, fuzzy
1803
  msgid "Right"
1804
  msgstr "Waga"
1805
 
1806
- #: dashboard/publisher/groups-edit.php:176
1807
  msgid "Center"
1808
  msgstr ""
1809
 
1810
- #: dashboard/publisher/groups-edit.php:180
1811
  msgid ""
1812
  "Align the group in your post or page. Using 'center' may affect your margin "
1813
  "setting. Not every theme supports this feature."
1814
  msgstr ""
1815
 
1816
- #: dashboard/publisher/groups-edit.php:184
1817
- #: dashboard/settings/advertisers.php:28
1818
  msgid "Geo Targeting"
1819
  msgstr "Geo Targeting"
1820
 
1821
- #: dashboard/publisher/groups-edit.php:185
1822
  msgid "Enable Geo Targeting for this group."
1823
  msgstr ""
1824
 
1825
- #: dashboard/publisher/groups-edit.php:186
1826
  msgid "Do not forget to tell the adverts for which areas they should show."
1827
  msgstr ""
1828
  "Nie zapomnij ustawić gdzie mają być wyświetlane jakie reklamy i w jakich "
1829
  "miejscach."
1830
 
1831
- #: dashboard/publisher/groups-edit.php:189
1832
  msgid "Mobile support"
1833
  msgstr ""
1834
 
1835
- #: dashboard/publisher/groups-edit.php:190
1836
  msgid "Enable mobile support for this group."
1837
  msgstr ""
1838
 
1839
- #: dashboard/publisher/groups-edit.php:191
1840
  msgid "Do not forget to put at least one mobile advert in this group."
1841
  msgstr ""
1842
 
1843
- #: dashboard/publisher/groups-edit.php:196
1844
  msgid "Leave empty or 0 to skip this. Will default to group id."
1845
  msgstr ""
1846
  "Pozostaw puste albo wpisz 0 by ominąc tą opcje. Domyślnie dla ID grupy."
1847
 
1848
- #: dashboard/publisher/groups-edit.php:200
1849
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1850
  msgstr ""
1851
 
1852
- #: dashboard/publisher/groups-edit.php:205
1853
  msgid "In categories?"
1854
  msgstr ""
1855
 
1856
- #: dashboard/publisher/groups-edit.php:209
1857
- #: dashboard/publisher/groups-edit.php:247
1858
- #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1859
  msgid "Disabled"
1860
  msgstr "Wyłącz"
1861
 
1862
- #: dashboard/publisher/groups-edit.php:210
1863
- #: dashboard/publisher/groups-edit.php:248
1864
  msgid "Before content"
1865
  msgstr "Przed treścią"
1866
 
1867
- #: dashboard/publisher/groups-edit.php:211
1868
- #: dashboard/publisher/groups-edit.php:249
1869
  msgid "After content"
1870
  msgstr "Po treści"
1871
 
1872
- #: dashboard/publisher/groups-edit.php:212
1873
- #: dashboard/publisher/groups-edit.php:250
1874
  msgid "Before and after content"
1875
  msgstr "Przed i po treści"
1876
 
1877
- #: dashboard/publisher/groups-edit.php:213
1878
- #: dashboard/publisher/groups-edit.php:251
1879
  msgid "Inside the content..."
1880
  msgstr ""
1881
 
1882
- #: dashboard/publisher/groups-edit.php:219
1883
- #: dashboard/publisher/groups-edit.php:257
1884
  msgid "after the middle paragraph"
1885
  msgstr ""
1886
 
1887
- #: dashboard/publisher/groups-edit.php:220
1888
- #: dashboard/publisher/groups-edit.php:258
1889
  msgid "after the 1st paragraph"
1890
  msgstr ""
1891
 
1892
- #: dashboard/publisher/groups-edit.php:221
1893
- #: dashboard/publisher/groups-edit.php:259
1894
  msgid "after the 2nd paragraph"
1895
  msgstr ""
1896
 
1897
- #: dashboard/publisher/groups-edit.php:222
1898
- #: dashboard/publisher/groups-edit.php:260
1899
  msgid "after the 3rd paragraph"
1900
  msgstr ""
1901
 
1902
- #: dashboard/publisher/groups-edit.php:223
1903
- #: dashboard/publisher/groups-edit.php:261
1904
  msgid "after the 4th paragraph"
1905
  msgstr ""
1906
 
1907
- #: dashboard/publisher/groups-edit.php:224
1908
- #: dashboard/publisher/groups-edit.php:262
1909
  msgid "after the 5th paragraph"
1910
  msgstr ""
1911
 
1912
- #: dashboard/publisher/groups-edit.php:225
1913
- #: dashboard/publisher/groups-edit.php:263
1914
  msgid "after the 6th paragraph"
1915
  msgstr ""
1916
 
1917
- #: dashboard/publisher/groups-edit.php:226
1918
- #: dashboard/publisher/groups-edit.php:264
1919
  msgid "after the 7th paragraph"
1920
  msgstr ""
1921
 
1922
- #: dashboard/publisher/groups-edit.php:227
1923
- #: dashboard/publisher/groups-edit.php:265
1924
  msgid "after the 8th paragraph"
1925
  msgstr ""
1926
 
1927
- #: dashboard/publisher/groups-edit.php:233
1928
  msgid "Which categories?"
1929
  msgstr "Która kategoria?"
1930
 
1931
- #: dashboard/publisher/groups-edit.php:238
1932
  msgid "Click the categories posts you want the adverts to show in."
1933
  msgstr "Wybierz kategorie wpisów na których chcesz wyświetlać reklamy."
1934
 
1935
- #: dashboard/publisher/groups-edit.php:243
1936
  msgid "In pages?"
1937
  msgstr ""
1938
 
1939
- #: dashboard/publisher/groups-edit.php:271
1940
  msgid "Which pages?"
1941
  msgstr "Które strony?"
1942
 
1943
- #: dashboard/publisher/groups-edit.php:276
1944
  msgid "Click the pages you want the adverts to show in."
1945
  msgstr "Wybierz strony na których chcesz wyświetlać reklamy."
1946
 
1947
- #: dashboard/publisher/groups-edit.php:304
1948
  msgid "Wrapper code"
1949
  msgstr "Kod wrappera"
1950
 
1951
- #: dashboard/publisher/groups-edit.php:305
1952
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1953
  msgstr ""
1954
 
1955
- #: dashboard/publisher/groups-edit.php:309
1956
  msgid "Before advert"
1957
  msgstr ""
1958
 
1959
- #: dashboard/publisher/groups-edit.php:313
1960
  msgid "Options:"
1961
  msgstr "Opcje:"
1962
 
1963
- #: dashboard/publisher/groups-edit.php:317
1964
  msgid "After advert"
1965
  msgstr ""
1966
 
1967
- #: dashboard/publisher/groups-edit.php:326
1968
  msgid "Select adverts"
1969
  msgstr ""
1970
 
1971
- #: dashboard/publisher/groups-edit.php:331
1972
  msgid "Choose adverts"
1973
  msgstr ""
1974
 
1975
- #: dashboard/publisher/groups-edit.php:337
1976
  msgid "Visible until"
1977
  msgstr "Widoczne do"
1978
 
1979
- #: dashboard/publisher/groups-edit.php:379
1980
  msgid "No adverts created!"
1981
  msgstr ""
1982
 
@@ -1996,8 +1989,8 @@ msgstr "Zamierzasz usunąc grupę reklam"
1996
  msgid "This action can not be undone!"
1997
  msgstr "Nie można cofnąć tego ruchu!"
1998
 
1999
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
2000
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2001
  msgid "OK to continue, CANCEL to stop."
2002
  msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
2003
 
@@ -2009,156 +2002,171 @@ msgstr "Nie utworzono grupy!"
2009
  msgid "Statistics for group"
2010
  msgstr "Statystyki dla grupy"
2011
 
2012
- #: dashboard/settings/advertisers.php:12
2013
  msgid "Advertisers - Available in AdRotate Pro"
2014
  msgstr ""
2015
 
2016
- #: dashboard/settings/advertisers.php:13
2017
  msgid "Enable advertisers so they can review and manage their own ads."
2018
  msgstr ""
2019
  "Włącz uprawnienia dla reklamodawców by mogli przeglądać i zarządzać swoimi "
2020
  "reklamami."
2021
 
2022
- #: dashboard/settings/advertisers.php:16
2023
  msgid "Enable Advertisers"
2024
  msgstr "Włącz opcję reklamodawcy"
2025
 
2026
- #: dashboard/settings/advertisers.php:18
2027
  msgid "Allow adverts to be coupled to users (Advertisers)."
2028
  msgstr "Zezwalaj na łączenie reklam z reklamodawcami. "
2029
 
2030
- #: dashboard/settings/advertisers.php:22
2031
  msgid "Edit/update adverts"
2032
  msgstr "Edytuj/Aktualizuj Reklamy"
2033
 
2034
- #: dashboard/settings/advertisers.php:24
2035
  msgid "Allow advertisers to add new or edit their adverts."
2036
  msgstr "Zezwól reklamodawcom na dodawanie oraz edytowanie reklam."
2037
 
2038
- #: dashboard/settings/advertisers.php:30
 
 
 
 
 
 
 
 
2039
  msgid ""
2040
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2041
  "be enabled, too."
2042
  msgstr ""
2043
 
2044
- #: dashboard/settings/advertisers.php:34
2045
  msgid "Advertiser role"
2046
  msgstr "Uprawnienia reklamodawcy"
2047
 
2048
- #: dashboard/settings/advertisers.php:36
2049
  msgid "Create a seperate user role for your advertisers."
2050
  msgstr ""
2051
 
2052
- #: dashboard/settings/advertisers.php:37
2053
  msgid ""
2054
  "Don't forget to give these users access to their advertiser dashboard via "
2055
  "the Roles tab."
2056
  msgstr ""
2057
 
2058
- #: dashboard/settings/general.php:12
 
 
 
 
 
 
 
2059
  msgid "General Settings"
2060
  msgstr ""
2061
 
2062
- #: dashboard/settings/general.php:13
2063
  msgid "General settings for AdRotate."
2064
  msgstr ""
2065
 
2066
- #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2067
  msgid "Some options are only available in AdRotate Pro!"
2068
  msgstr ""
2069
 
2070
- #: dashboard/settings/general.php:16
2071
  msgid "Shortcode in widgets"
2072
  msgstr ""
2073
 
2074
- #: dashboard/settings/general.php:17
2075
  msgid ""
2076
  "Enable this option to if your theme does not support shortcodes in the "
2077
  "WordPress text widget."
2078
  msgstr ""
2079
 
2080
- #: dashboard/settings/general.php:20
2081
  msgid "Disable live preview"
2082
  msgstr ""
2083
 
2084
- #: dashboard/settings/general.php:21
2085
  msgid ""
2086
  "Enable this option if you have faulty adverts that overflow their designated "
2087
  "area while creating/editing adverts."
2088
  msgstr ""
2089
 
2090
- #: dashboard/settings/general.php:24
2091
  msgid "Disable dynamic mode"
2092
  msgstr ""
2093
 
2094
- #: dashboard/settings/general.php:25
2095
  msgid ""
2096
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2097
  "you notice skipping or jumpy content."
2098
  msgstr ""
2099
 
2100
- #: dashboard/settings/general.php:28
2101
  msgid "Load jQuery"
2102
  msgstr "Załąduj jQuery"
2103
 
2104
- #: dashboard/settings/general.php:29
2105
  msgid ""
2106
  "Enable this option if your theme does not load jQuery. jQuery is required "
2107
  "for dynamic groups, statistics and some other features."
2108
  msgstr ""
2109
 
2110
- #: dashboard/settings/general.php:32
2111
  msgid "Load scripts in footer?"
2112
  msgstr ""
2113
 
2114
- #: dashboard/settings/general.php:33
2115
  msgid ""
2116
  "Enable this option if you want to load all AdRotate Javascripts in the "
2117
  "footer of your site."
2118
  msgstr ""
2119
 
2120
- #: dashboard/settings/general.php:36
2121
  msgid "Adblock disguise"
2122
  msgstr ""
2123
 
2124
- #: dashboard/settings/general.php:38
2125
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2126
  msgstr ""
2127
 
2128
- #: dashboard/settings/general.php:39
2129
  msgid ""
2130
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2131
  msgstr ""
2132
 
2133
- #: dashboard/settings/general.php:39
2134
  msgid ""
2135
  "To also apply this feature to widgets, use a text widget with a shortcode "
2136
  "instead of the AdRotate widget."
2137
  msgstr ""
2138
 
2139
- #: dashboard/settings/general.php:39
2140
  msgid ""
2141
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2142
  "feature will have little effect!"
2143
  msgstr ""
2144
 
2145
- #: dashboard/settings/general.php:44
2146
  msgid "Banner Folder"
2147
  msgstr "Folder banerów"
2148
 
2149
- #: dashboard/settings/general.php:45
2150
  msgid "Set a location where your banner images will be stored."
2151
  msgstr "Wskaż lokalizację gdzie przechowywane będą obrazy reklam."
2152
 
2153
- #: dashboard/settings/general.php:48
2154
  msgid "Location"
2155
  msgstr "Lokalizacja"
2156
 
2157
- #: dashboard/settings/general.php:50
2158
  msgid "(Default: wp-content/banners/)."
2159
  msgstr "(Domyślnie: wp-content/banners/)."
2160
 
2161
- #: dashboard/settings/general.php:51
2162
  msgid ""
2163
  "To try and trick ad blockers you could set the folder to something crazy "
2164
  "like:"
@@ -2166,7 +2174,7 @@ msgstr ""
2166
  "Jeśli chcesz możeszspróbować trochę oszukać programy blokujące reklamy. "
2167
  "Wsytarczy żę podasz jakąś nietypową nazwę folderu np. taką :"
2168
 
2169
- #: dashboard/settings/general.php:52
2170
  msgid ""
2171
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2172
  "will show errors when the folder is missing."
@@ -2174,121 +2182,153 @@ msgstr ""
2174
  "Ten folder nie zostanie automatycznie utworzony jeśli nie istnieje. AdRotate "
2175
  "wyświetli błędy jeśli nie odnajdzie katalogu."
2176
 
2177
- #: dashboard/settings/general.php:57
2178
  msgid "Bot filter"
2179
  msgstr "Filtr Botów Internetowych"
2180
 
2181
- #: dashboard/settings/general.php:58
2182
  msgid "The bot filter is used for the AdRotate stats tracker."
2183
  msgstr ""
2184
 
2185
- #: dashboard/settings/general.php:61
2186
  msgid "User-Agent Filter"
2187
  msgstr "Filtr Agentów"
2188
 
2189
- #: dashboard/settings/general.php:64
2190
  msgid ""
2191
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2192
  msgstr ""
2193
 
2194
- #: dashboard/settings/general.php:65
2195
  msgid ""
2196
  "Keep in mind that this might give false positives. The word 'fire' also "
2197
  "matches 'firefox', but not vice-versa. So be careful!"
2198
  msgstr ""
2199
 
2200
- #: dashboard/settings/general.php:66
2201
  msgid ""
2202
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2203
  "characters are stripped out."
2204
  msgstr ""
2205
 
2206
- #: dashboard/settings/general.php:67
2207
  msgid ""
2208
  "Additionally to the list specified here, empty User-Agents are blocked as "
2209
  "well."
2210
  msgstr "Dodatkowo do listy podanej tutaj, puści agenci są blokowani."
2211
 
2212
- #: dashboard/settings/general.php:67
2213
  msgid "Learn more about"
2214
  msgstr "Dowiedź się więcej o"
2215
 
2216
- #: dashboard/settings/general.php:67
2217
  msgid "user-agents"
2218
  msgstr "Agenci przeglądarek"
2219
 
2220
- #: dashboard/settings/geotargeting.php:12
2221
  msgid "Geo Targeting - Available in AdRotate Pro"
2222
  msgstr ""
2223
 
2224
- #: dashboard/settings/geotargeting.php:13
2225
  msgid "Target certain areas in the world for better advertising oppurtunities."
2226
  msgstr ""
2227
 
2228
- #: dashboard/settings/geotargeting.php:16
2229
  msgid "Which Geo Service"
2230
  msgstr ""
2231
 
2232
- #: dashboard/settings/geotargeting.php:25
2233
- msgid ""
2234
- "The most complete and accurate geo targeting you can get for only $20 USD "
2235
- "per 50000 lookups."
 
 
2236
  msgstr ""
2237
 
2238
- #: dashboard/settings/geotargeting.php:27
2239
- msgid "Free lookups every day, uses GeoLite2 databases from MaxMind!"
 
 
2240
  msgstr ""
2241
 
2242
  #: dashboard/settings/geotargeting.php:33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2243
  msgid "Geo Cookie Lifespan"
2244
  msgstr ""
2245
 
2246
- #: dashboard/settings/geotargeting.php:42
2247
  msgid "Hours."
2248
  msgstr ""
2249
 
2250
- #: dashboard/settings/geotargeting.php:43
2251
  msgid ""
2252
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2253
  "cookie last? A longer period is less accurate for mobile users but may "
2254
  "reduce the usage of your lookups drastically."
2255
  msgstr ""
2256
 
2257
- #: dashboard/settings/geotargeting.php:49
2258
  msgid "MaxMind City/Country"
2259
  msgstr ""
2260
 
2261
- #: dashboard/settings/geotargeting.php:52
2262
  msgid "Username/Email"
2263
  msgstr ""
2264
 
2265
- #: dashboard/settings/geotargeting.php:56
2266
  msgid "Password/License Key"
2267
  msgstr ""
2268
 
2269
- #: dashboard/settings/maintenance.php:12
2270
  msgid "Maintenance"
2271
  msgstr "Ostrzeżenie"
2272
 
2273
- #: dashboard/settings/maintenance.php:13
2274
  msgid ""
2275
  "Use these functions when you notice your database is slow, unresponsive and "
2276
  "sluggish."
2277
  msgstr ""
2278
 
2279
- #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2280
  msgid "Optimize Database"
2281
  msgstr "Optymalizuj bazę danych"
2282
 
2283
- #: dashboard/settings/maintenance.php:18
2284
  msgid "You are about to optimize the AdRotate database."
2285
  msgstr "Powinieneś zoptymalizować bazę danych AdRotate."
2286
 
2287
- #: dashboard/settings/maintenance.php:18
2288
  msgid "Did you make a backup of your database?"
2289
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
2290
 
2291
- #: dashboard/settings/maintenance.php:18
2292
  msgid ""
2293
  "This may take a moment and may cause your website to respond slow "
2294
  "temporarily!"
@@ -2296,11 +2336,11 @@ msgstr ""
2296
  "To może zająć jaki czas i spowodować że twoja strona będzie odpowiadać "
2297
  "wolniej przez jakiś czas."
2298
 
2299
- #: dashboard/settings/maintenance.php:19
2300
  msgid "Cleans up overhead data in the AdRotate tables."
2301
  msgstr "Wyczyść nadmiarowe dane z tabel AdRotate"
2302
 
2303
- #: dashboard/settings/maintenance.php:20
2304
  msgid ""
2305
  "Overhead data is accumulated garbage resulting from many changes you've "
2306
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2309,11 +2349,11 @@ msgstr ""
2309
  "dokonujesz. Może to skutkować wzrostem przechowywanych danych od kilku "
2310
  "kilobajtow do kilku GB."
2311
 
2312
- #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2313
  msgid "Clean-up Database"
2314
  msgstr "Wyczyść bazę danych"
2315
 
2316
- #: dashboard/settings/maintenance.php:26
2317
  msgid ""
2318
  "You are about to clean up your database. This may delete expired schedules "
2319
  "and older statistics."
@@ -2321,49 +2361,49 @@ msgstr ""
2321
  "Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
2322
  "harmonogramów i starych statystyk."
2323
 
2324
- #: dashboard/settings/maintenance.php:26
2325
  msgid "Are you sure you want to continue?"
2326
  msgstr "Czy jesteś pewien że chcesz kontynuować?"
2327
 
2328
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2329
  msgid "This might take a while and may slow down your site during this action!"
2330
  msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
2331
 
2332
- #: dashboard/settings/maintenance.php:27
2333
  msgid "Delete stats older than 356 days (Optional)."
2334
  msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
2335
 
2336
- #: dashboard/settings/maintenance.php:28
2337
  msgid ""
2338
  "AdRotate creates empty records when you start making ads, groups or "
2339
  "schedules. In rare occasions these records are faulty."
2340
  msgstr ""
2341
 
2342
- #: dashboard/settings/maintenance.php:28
2343
  msgid ""
2344
  "If you made an ad, group or schedule that does not save when you make it use "
2345
  "this button to delete those empty records."
2346
  msgstr ""
2347
 
2348
- #: dashboard/settings/maintenance.php:28
2349
  msgid ""
2350
  "Additionally you can clean up old schedules and/or statistics. This will "
2351
  "improve the speed of your site."
2352
  msgstr ""
2353
 
2354
- #: dashboard/settings/maintenance.php:32
2355
  msgid "Re-evaluate Ads"
2356
  msgstr "Oszacuj ponownie reklamy."
2357
 
2358
- #: dashboard/settings/maintenance.php:34
2359
  msgid "Re-evaluate all ads"
2360
  msgstr "Oszacuj ponownie wszystkie reklamy."
2361
 
2362
- #: dashboard/settings/maintenance.php:34
2363
  msgid "You are about to check all ads for errors."
2364
  msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
2365
 
2366
- #: dashboard/settings/maintenance.php:35
2367
  msgid ""
2368
  "This will apply all evaluation rules to all ads to see if any error slipped "
2369
  "in. Normally you should not need this feature."
@@ -2372,7 +2412,7 @@ msgstr ""
2372
  "na wszystkich reklamach oraz przejrze nie wszystkich błędów. Normalnie nie "
2373
  "potrzebujesz wykorzystywać tej funkcji."
2374
 
2375
- #: dashboard/settings/maintenance.php:39
2376
  msgid ""
2377
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2378
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2385,11 +2425,11 @@ msgid ""
2385
  "is not a valid point in any case."
2386
  msgstr ""
2387
 
2388
- #: dashboard/settings/maintenance.php:41
2389
  msgid "Troubleshooting"
2390
  msgstr "Masz problem"
2391
 
2392
- #: dashboard/settings/maintenance.php:42
2393
  msgid ""
2394
  "The below options are not meant for normal use and are only there for "
2395
  "developers to review saved settings or how ads are selected. These can be "
@@ -2397,19 +2437,19 @@ msgid ""
2397
  "SHOULD BE LEFT UNCHECKED!!"
2398
  msgstr ""
2399
 
2400
- #: dashboard/settings/maintenance.php:45
2401
  msgid "Developer Debug"
2402
  msgstr "Debuger dewelopera"
2403
 
2404
- #: dashboard/settings/maintenance.php:47
2405
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2406
  msgstr ""
2407
 
2408
- #: dashboard/settings/maintenance.php:48
2409
  msgid "View advert specs and (some) stats in the dashboard."
2410
  msgstr ""
2411
 
2412
- #: dashboard/settings/maintenance.php:49
2413
  msgid ""
2414
  "Disable timers for clicks and impressions and enable a alert window for "
2415
  "clicktracking."
@@ -2417,88 +2457,106 @@ msgstr ""
2417
  "Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
2418
  "śledzenia kliknięć."
2419
 
2420
- #: dashboard/settings/maintenance.php:50
2421
  msgid "Temporarily disable encryption on the redirect url."
2422
  msgstr "Tymczasowo wyłącz szyfrowanie na przekierowanym adresie URL."
2423
 
2424
- #: dashboard/settings/maintenance.php:55
2425
  msgid "Status and Versions"
2426
  msgstr ""
2427
 
2428
- #: dashboard/settings/maintenance.php:58
2429
- msgid "Current version:"
2430
- msgstr "Bieżąca wersja:"
2431
-
2432
- #: dashboard/settings/maintenance.php:59
2433
- msgid "Previous version:"
2434
- msgstr "Poprzednia wersja:"
2435
-
2436
  #: dashboard/settings/maintenance.php:62
2437
- msgid "Current database version:"
2438
- msgstr "Obecna wersja bazy danych:"
2439
-
2440
- #: dashboard/settings/maintenance.php:63
2441
- msgid "Previous database version:"
2442
- msgstr "Poprzednia wersja bazy danych:"
2443
-
2444
- #: dashboard/settings/maintenance.php:66
2445
  msgid "Current status of adverts"
2446
  msgstr "Bieżący status reklam"
2447
 
2448
- #: dashboard/settings/maintenance.php:67
2449
  msgid "Normal"
2450
  msgstr "Normalny"
2451
 
2452
- #: dashboard/settings/maintenance.php:67
2453
  msgid "Error"
2454
  msgstr "Błąd"
2455
 
2456
- #: dashboard/settings/maintenance.php:67
2457
  msgid "Expired"
2458
  msgstr "Wygasa"
2459
 
2460
- #: dashboard/settings/maintenance.php:67
2461
  msgid "Expires Soon"
2462
  msgstr "Wygas wkrótce"
2463
 
2464
- #: dashboard/settings/maintenance.php:67
2465
  msgid "Unknown"
2466
  msgstr ""
2467
 
2468
- #: dashboard/settings/maintenance.php:70
2469
  msgid "Banners/assets Folder"
2470
  msgstr ""
2471
 
2472
- #: dashboard/settings/maintenance.php:72
2473
  msgid "Exists and appears writable"
2474
  msgstr ""
2475
 
2476
- #: dashboard/settings/maintenance.php:72
2477
  msgid "Not writable or does not exist"
2478
  msgstr ""
2479
 
 
 
 
 
2480
  #: dashboard/settings/maintenance.php:76
2481
- #, fuzzy
2482
- msgid "Ad evaluation next run:"
2483
- msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2484
 
2485
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
2486
- msgid "Not scheduled!"
2487
- msgstr "Nie ustalono harmnogramu!"
2488
 
2489
- #: dashboard/settings/maintenance.php:80
2490
- msgid "Clean Trackerdata next run:"
2491
- msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
2492
 
2493
- #: dashboard/settings/misc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
2494
  msgid "Miscellaneous"
2495
  msgstr "Różne"
2496
 
2497
- #: dashboard/settings/misc.php:15
2498
  msgid "Widget alignment"
2499
  msgstr "Wyrównanie widżetu"
2500
 
2501
- #: dashboard/settings/misc.php:16
2502
  msgid ""
2503
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2504
  "not always help!)"
@@ -2506,11 +2564,11 @@ msgstr ""
2506
  "Zaznacz jeśli Twój widżet nie mieści się w pasku bocznym. (Nie zawsze "
2507
  "pomaga!)"
2508
 
2509
- #: dashboard/settings/misc.php:19
2510
  msgid "Widget padding"
2511
  msgstr "Pusta przestrzeń Widżetu"
2512
 
2513
- #: dashboard/settings/misc.php:20
2514
  msgid ""
2515
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2516
  "not always work!)"
@@ -2518,7 +2576,7 @@ msgstr ""
2518
  "Włacz to by usunąć pustą powierzchnię wokół reklam w widżecie. (Nie zawsze "
2519
  "działa)"
2520
 
2521
- #: dashboard/settings/misc.php:24
2522
  #, fuzzy
2523
  msgid "NOTICE:"
2524
  msgstr ""
@@ -2528,31 +2586,31 @@ msgstr ""
2528
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
2529
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
2530
 
2531
- #: dashboard/settings/misc.php:25
2532
  msgid ""
2533
  "You have enabled W3 Total Caching support but not defined the security hash."
2534
  msgstr ""
2535
 
2536
- #: dashboard/settings/misc.php:25
2537
  msgid ""
2538
  "AdRotate has generated the following line for you to add to your wp-config."
2539
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2540
  "add this line, check out the following guide;"
2541
  msgstr ""
2542
 
2543
- #: dashboard/settings/misc.php:25
2544
  msgid "Set up W3 Total Caching"
2545
  msgstr ""
2546
 
2547
- #: dashboard/settings/misc.php:29
2548
  msgid "W3 Total Caching"
2549
  msgstr "W3 Total Caching"
2550
 
2551
- #: dashboard/settings/misc.php:30
2552
  msgid "Check this box if you use W3 Total Caching on your site."
2553
  msgstr "Zaznacz jeśli używasz W3 Total Caching na swojej stronie."
2554
 
2555
- #: dashboard/settings/misc.php:34
2556
  msgid ""
2557
  "It may take a while for the ad to start rotating. The caching plugin needs "
2558
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2561,7 +2619,7 @@ msgstr ""
2561
  "rotacyjnym. Wtyczką cachująca musi się odświeżyć czasami zajmuje to tydzień "
2562
  "jeśli nie wykonasz tego ręcznie."
2563
 
2564
- #: dashboard/settings/misc.php:34
2565
  msgid ""
2566
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2567
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2570,31 +2628,31 @@ msgstr ""
2570
  "AdRotate. Jeśli używasz kodu PHP musisz sam wprowadzić poprwany kod do "
2571
  "strony."
2572
 
2573
- #: dashboard/settings/notifications.php:12
2574
  msgid "Notifications"
2575
  msgstr "Powiadomienie"
2576
 
2577
- #: dashboard/settings/notifications.php:13
2578
  msgid "Set up who gets notifications if ads need your attention."
2579
  msgstr "Ustal kto dostaje powiadomienia gdy reklamy wymagają interwencji."
2580
 
2581
- #: dashboard/settings/notifications.php:16
2582
  msgid "How to notify"
2583
  msgstr ""
2584
 
2585
- #: dashboard/settings/notifications.php:18
2586
  msgid "Dashboard banner."
2587
  msgstr ""
2588
 
2589
- #: dashboard/settings/notifications.php:19
2590
  msgid "Email message."
2591
  msgstr "Wiadomość email."
2592
 
2593
- #: dashboard/settings/notifications.php:20
2594
  msgid "Push notifications to your smartphone."
2595
  msgstr "Wyślij powiadomienia na swój telefon."
2596
 
2597
- #: dashboard/settings/notifications.php:21
2598
  msgid ""
2599
  "Push notifications are delivered through Pushover, a notification service "
2600
  "for Android and iOS"
@@ -2602,7 +2660,7 @@ msgstr ""
2602
  "Powiadomienia mogą być dostarczane poprzez oprogramowanie Pushover, program "
2603
  "powidamiajacy dla Androida i iOS"
2604
 
2605
- #: dashboard/settings/notifications.php:21
2606
  msgid ""
2607
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2608
  "information can be found on the pushover website;"
@@ -2611,119 +2669,82 @@ msgstr ""
2611
  "dla Android jak i iOS. Więcej informacji znajdziesz na stronie interntowej "
2612
  "aplikacji Pushover"
2613
 
2614
- #: dashboard/settings/notifications.php:25
2615
  msgid "Test notification"
2616
  msgstr ""
2617
 
2618
- #: dashboard/settings/notifications.php:27
2619
  msgid "Test"
2620
  msgstr ""
2621
 
2622
- #: dashboard/settings/notifications.php:27
2623
  msgid ""
2624
  "Send a test notification to enabled methods. Before you test, save the "
2625
  "options first!"
2626
  msgstr ""
2627
 
2628
- #: dashboard/settings/notifications.php:32
2629
- msgid "Dashboard"
2630
  msgstr ""
2631
 
2632
- #: dashboard/settings/notifications.php:33
2633
  msgid ""
2634
  "These go in a dashboard banner visible to all users with access to AdRotate "
2635
  "on every WordPress dashboard page."
2636
  msgstr ""
2637
 
2638
- #: dashboard/settings/notifications.php:36
2639
- #: dashboard/settings/notifications.php:68
 
2640
  msgid "What"
2641
  msgstr ""
2642
 
2643
- #: dashboard/settings/notifications.php:38
2644
  msgid "Expired adverts."
2645
  msgstr ""
2646
 
2647
- #: dashboard/settings/notifications.php:39
2648
  msgid "Almost expired adverts."
2649
  msgstr ""
2650
 
2651
- #: dashboard/settings/notifications.php:44
2652
- msgid "Email"
2653
  msgstr ""
2654
 
2655
- #: dashboard/settings/notifications.php:45
2656
- msgid "Set up who gets notification emails."
2657
- msgstr "Ustal kto otrzymuje powiadomienia na email."
2658
-
2659
- #: dashboard/settings/notifications.php:48
2660
- msgid "Publishers"
2661
- msgstr "Ogłoszeniodawcy"
2662
-
2663
  #: dashboard/settings/notifications.php:51
2664
  msgid ""
2665
- "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2666
- "list to a minimum!"
2667
  msgstr ""
2668
- "Średnik oddziela kolejne adresy na liście. Możesz podać maksymalnie 5 "
2669
- "adresów. Postaraj się by ta lista była jak najmniejsza! Gdyż może to zbytnio "
2670
- "obciążać system."
2671
-
2672
- #: dashboard/settings/notifications.php:52
2673
- msgid ""
2674
- "Messages are sent once every 24 hours when needed. If this field is empty no "
2675
- "email notifications will be send."
2676
- msgstr ""
2677
- "Wiadomości są wysyłane raz na 24 godziny jeśli jest to faktycznie potrzebne. "
2678
- "Jeśli pozostawisz te pole puste, żadne wiadomości mailowe nie bądą wysyłane."
2679
 
2680
  #: dashboard/settings/notifications.php:56
2681
- msgid "Advertisers"
2682
- msgstr "Reklamodawcy"
2683
-
2684
- #: dashboard/settings/notifications.php:59
2685
- msgid ""
2686
- "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2687
- "This field may not be empty!"
2688
- msgstr ""
2689
- "Kto otrzymuje maile od reklamodawców. Maksymalnie 2 adresy odzielone "
2690
- "średnikiem. Te pole nie możę być puste!."
2691
-
2692
- #: dashboard/settings/notifications.php:64
2693
- msgid "Push"
2694
- msgstr ""
2695
-
2696
- #: dashboard/settings/notifications.php:65
2697
- msgid ""
2698
- "Receive information about what is happening with your AdRotate setup on your "
2699
- "smartphone via Pushover."
2700
- msgstr ""
2701
- "Możesz otrzymywać wiadomości na smartphona o tym co dzieje się z Twoją "
2702
- "aplikacją AdRotate. Możliwe jest to dzięki aplikacjio Pushover."
2703
 
2704
- #: dashboard/settings/notifications.php:70
 
2705
  msgid "When you are running out of Geo Targeting Lookups."
2706
  msgstr ""
2707
 
2708
- #: dashboard/settings/notifications.php:71
2709
- msgid "Daily digest of any advert status other than normal."
2710
- msgstr "Dzienne podsumowania reklam inne niż normalne."
2711
-
2712
- #: dashboard/settings/notifications.php:72
2713
  msgid "Any advertiser saving an advert in your moderation queue."
2714
  msgstr ""
2715
  "Każdy reklamodawca zapisuje swoje reklamy w Twojej kolejce moderacyjnej."
2716
 
2717
- #: dashboard/settings/notifications.php:73
 
2718
  msgid "A moderator approved an advert from the moderation queue."
2719
  msgstr ""
2720
  "Moderator zatwierdza reklamy umieszczone wcześniej w kolejce moderacyjnej."
2721
 
2722
- #: dashboard/settings/notifications.php:74
 
2723
  msgid "A moderator rejected an advert from the moderation queue."
2724
  msgstr "Moderator wyrzuca reklamuy z kolejki moderacyjnej."
2725
 
2726
- #: dashboard/settings/notifications.php:74
 
2727
  msgid ""
2728
  "If you have a lot of activity with many advertisers adding/changing adverts "
2729
  "you may get a lot of messages!"
@@ -2731,187 +2752,287 @@ msgstr ""
2731
  "Jeśli odnotowujesz dużą aktwywność reklamodawców dodających i zmieniających "
2732
  "reklamy możesz otrzymywać duża ilość wiadomości!"
2733
 
2734
- #: dashboard/settings/notifications.php:79
2735
- msgid "User Key"
 
 
 
 
 
2736
  msgstr ""
2737
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2738
  #: dashboard/settings/notifications.php:81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2739
  msgid "Get your user token"
2740
  msgstr ""
2741
 
2742
- #: dashboard/settings/notifications.php:81
2743
- #: dashboard/settings/notifications.php:87
2744
  msgid "here"
2745
  msgstr ""
2746
 
2747
- #: dashboard/settings/notifications.php:85
2748
  msgid "Api Token"
2749
  msgstr ""
2750
 
2751
- #: dashboard/settings/notifications.php:87
2752
  msgid "Create your"
2753
  msgstr ""
2754
 
2755
- #: dashboard/settings/notifications.php:87
2756
  msgid "App"
2757
  msgstr ""
2758
 
2759
- #: dashboard/settings/notifications.php:87
2760
  msgid "and get your API token"
2761
  msgstr ""
2762
 
2763
- #: dashboard/settings/roles.php:12
2764
  msgid "Roles"
2765
  msgstr ""
2766
 
2767
- #: dashboard/settings/roles.php:13
2768
  msgid "Who has access to what?"
2769
  msgstr "Kto ma dostęp i do czego?"
2770
 
2771
- #: dashboard/settings/roles.php:16
2772
  msgid "Manage/Add/Edit adverts"
2773
  msgstr "Zarządzaj/Dodaj/Edytuj reklamy"
2774
 
2775
- #: dashboard/settings/roles.php:20
2776
  msgid "Role to see and add/edit ads."
2777
  msgstr "Uprawnienia do oglądania, dodawania i edytowania reklam."
2778
 
2779
- #: dashboard/settings/roles.php:24
2780
  msgid "Delete/Reset adverts"
2781
  msgstr "Usuń/Resetuj reklamy"
2782
 
2783
- #: dashboard/settings/roles.php:28
2784
  msgid "Role to delete ads and reset stats."
2785
  msgstr "Uprawnienia do usuwania i resetowania statystyk."
2786
 
2787
- #: dashboard/settings/roles.php:32
2788
  msgid "Manage/Add/Edit groups"
2789
  msgstr "Zarządzaj/Dodaj/Edytuj grupy"
2790
 
2791
- #: dashboard/settings/roles.php:36
2792
  msgid "Role to see and add/edit groups."
2793
  msgstr "Uprawnienia do oglądania, dodawania/edytowania grup"
2794
 
2795
- #: dashboard/settings/roles.php:40
2796
  msgid "Delete groups"
2797
  msgstr "Usuwanie grup"
2798
 
2799
- #: dashboard/settings/roles.php:44
2800
  msgid "Role to delete groups."
2801
  msgstr "Uprawnienia do usuwania grup"
2802
 
2803
- #: dashboard/settings/statistics.php:13
2804
  msgid "Track statistics for your adverts."
2805
  msgstr ""
2806
 
2807
- #: dashboard/settings/statistics.php:16
2808
  msgid "How to track stats"
2809
  msgstr ""
2810
 
2811
- #: dashboard/settings/statistics.php:25
2812
  msgid "Tracks impressions and clicks internally"
2813
  msgstr ""
2814
 
2815
- #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2816
- #: dashboard/settings/statistics.php:29
2817
  msgid "manual"
2818
  msgstr ""
2819
 
2820
- #: dashboard/settings/statistics.php:26
2821
  msgid ""
2822
  "Click and Impression recording, Click and impression limits, impression "
2823
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2824
  "will only track impressions."
2825
  msgstr ""
2826
 
2827
- #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2828
  msgid "In AdRotate Pro!"
2829
  msgstr ""
2830
 
2831
- #: dashboard/settings/statistics.php:27
2832
  msgid ""
2833
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2834
  "attributes"
2835
  msgstr ""
2836
 
2837
- #: dashboard/settings/statistics.php:28
2838
  msgid ""
2839
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2840
  "Contents."
2841
  msgstr ""
2842
 
2843
- #: dashboard/settings/statistics.php:29
2844
  msgid ""
2845
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2846
  "uses onClick() and onload() in adverts"
2847
  msgstr ""
2848
 
2849
- #: dashboard/settings/statistics.php:30
2850
  msgid ""
2851
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2852
  "Banner."
2853
  msgstr ""
2854
 
2855
- #: dashboard/settings/statistics.php:36
2856
  msgid "Internal Tracker"
2857
  msgstr ""
2858
 
2859
- #: dashboard/settings/statistics.php:37
2860
  msgid ""
2861
  "The settings below are for the internal tracker and have no effect when "
2862
  "using Piwik/Google Analytics."
2863
  msgstr ""
2864
 
2865
- #: dashboard/settings/statistics.php:40
2866
  msgid "Logged in impressions"
2867
  msgstr "Wyświetlenia - Zalogowani"
2868
 
2869
- #: dashboard/settings/statistics.php:42
2870
  msgid "Track impressions from logged in users."
2871
  msgstr ""
2872
 
2873
- #: dashboard/settings/statistics.php:46
2874
  msgid "Logged in clicks"
2875
  msgstr "Kliknięcia - Zalogowani"
2876
 
2877
- #: dashboard/settings/statistics.php:48
2878
  msgid "Track clicks from logged in users."
2879
  msgstr "Śledz kliknięcia - zalogowanych użytkowników."
2880
 
2881
- #: dashboard/settings/statistics.php:52
2882
  msgid "Impression timer"
2883
  msgstr ""
2884
 
2885
- #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2886
  msgid "Seconds."
2887
  msgstr "Sekundy"
2888
 
2889
- #: dashboard/settings/statistics.php:55
2890
  #, fuzzy
2891
  msgid "Default: 60."
2892
  msgstr "Domyślny"
2893
 
2894
- #: dashboard/settings/statistics.php:55
2895
  #, fuzzy
2896
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2897
  msgstr "Ta liczba nie może być pusta, ujemna lub przekraczać 3600(1 godzina)."
2898
 
2899
- #: dashboard/settings/statistics.php:59
2900
  msgid "Click timer"
2901
  msgstr ""
2902
 
2903
- #: dashboard/settings/statistics.php:62
2904
  #, fuzzy
2905
  msgid "Default: 86400."
2906
  msgstr "Domyślny"
2907
 
2908
- #: dashboard/settings/statistics.php:62
2909
  #, fuzzy
2910
  msgid ""
2911
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2912
  msgstr ""
2913
  "Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
2914
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2915
  #~ msgid "Get more features with AdRotate Pro"
2916
  #~ msgstr "Więcej ustawień z AdRotate Pro"
2917
 
@@ -2939,9 +3060,6 @@ msgstr ""
2939
  #~ msgid "Email Notifications"
2940
  #~ msgstr "Powiadomienie na email"
2941
 
2942
- #~ msgid "Push Notifications"
2943
- #~ msgstr "Powiadomienia typu PUSH"
2944
-
2945
  #~ msgid "active ad(s) expired."
2946
  #~ msgstr "Aktywne reklamy wygasły."
2947
 
@@ -3047,15 +3165,9 @@ msgstr ""
3047
  #~ msgid "Barely visible"
3048
  #~ msgstr "Ledwno widoczne"
3049
 
3050
- #~ msgid "Less than average"
3051
- #~ msgstr "Mniej niż średnia"
3052
-
3053
  #~ msgid "Normal coverage"
3054
  #~ msgstr "Normalny zasięg"
3055
 
3056
- #~ msgid "More than average"
3057
- #~ msgstr "Więcej niż średnia"
3058
-
3059
  #~ msgid "Best visibility"
3060
  #~ msgstr "Najlepsza widoczność"
3061
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-17 23:25+0800\n"
6
+ "PO-Revision-Date: 2016-07-17 23:25+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: HIPER Lukasz Szczutowski <lukasz.szczutowski@gmail.com>\n"
9
  "Language: pl_PL\n"
20
  "|| n%100>=20) ? 1 : 2);\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
+ #: adrotate-functions.php:842
24
  msgid "No files found"
25
  msgstr "Nie odnaleziono pliku"
26
 
27
+ #: adrotate-functions.php:845
28
  msgid "Folder not found or not accessible"
29
  msgstr "Nie odnaleziono folderu albo jest on nie dostępny"
30
 
31
+ #: adrotate-functions.php:894
32
  msgid "Ad saved"
33
  msgstr ""
34
 
35
+ #: adrotate-functions.php:898
36
  msgid "Group saved"
37
  msgstr ""
38
 
39
+ #: adrotate-functions.php:902
40
  msgid "Ad(s) deleted"
41
  msgstr "Reklama usunięta"
42
 
43
+ #: adrotate-functions.php:906
44
  msgid "Group deleted"
45
  msgstr "Grupa usunięta"
46
 
47
+ #: adrotate-functions.php:910
48
  msgid "Ad(s) statistics reset"
49
  msgstr "Resetuj statystyki reklamy"
50
 
51
+ #: adrotate-functions.php:914
52
  msgid "Ad(s) renewed"
53
  msgstr "Odnów reklamę"
54
 
55
+ #: adrotate-functions.php:918
56
  msgid "Ad(s) deactivated"
57
  msgstr "Reklama wyłączona"
58
 
59
+ #: adrotate-functions.php:922
60
  msgid "Ad(s) activated"
61
  msgstr "Reklama włączona"
62
 
63
+ #: adrotate-functions.php:926
64
  msgid "Group including it's Ads deleted"
65
  msgstr "Grupa wraz z reklamami usunięta"
66
 
67
+ #: adrotate-functions.php:930
68
  #, fuzzy
69
  msgid "Export created"
70
  msgstr "Reklama utworzona"
71
 
72
+ #: adrotate-functions.php:935
73
  msgid "Settings saved"
74
  msgstr "Ustawienia zapisane"
75
 
76
+ #: adrotate-functions.php:939
77
  msgid "Database optimized"
78
  msgstr "Baza danych zoptymalizowana"
79
 
80
+ #: adrotate-functions.php:943
81
  msgid "Database repaired"
82
  msgstr "Baza danych naprawiona"
83
 
84
+ #: adrotate-functions.php:947
85
  msgid "Ads evaluated and statuses have been corrected where required"
86
  msgstr "Oceny i statusy reklam zostały poprawione tam gdzie było to wymagane."
87
 
88
+ #: adrotate-functions.php:951
89
  msgid "Empty database records removed"
90
  msgstr "Usunięto puste rekordy bazy danych"
91
 
92
+ #: adrotate-functions.php:956
93
  msgid "Action prohibited"
94
  msgstr "Czynność zabroniona."
95
 
96
+ #: adrotate-functions.php:960
97
  msgid ""
98
  "The ad was saved but has an issue which might prevent it from working "
99
  "properly. Review the colored ad."
100
  msgstr ""
101
 
102
+ #: adrotate-functions.php:964
103
  msgid "No data found in selected time period"
104
  msgstr "Nie znaleziono żadnych wyników dla podanego przedziału czasowego."
105
 
106
+ #: adrotate-functions.php:968
107
  msgid "Database can only be optimized or cleaned once every hour"
108
  msgstr "Bazadanych może być optymalizowana i czyszczona jedynie raz na godzinę"
109
 
110
+ #: adrotate-functions.php:972
111
  msgid "Form can not be (partially) empty!"
112
  msgstr ""
113
 
114
+ #: adrotate-functions.php:976
115
  msgid "No ads found."
116
  msgstr ""
117
 
118
+ #: adrotate-functions.php:980
119
  msgid "Unexpected error"
120
  msgstr ""
121
 
122
+ #: adrotate-manage-publisher.php:685
123
  msgid "AdRotate Advertiser"
124
  msgstr ""
125
 
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
  "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
  "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
  "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
  "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
  "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
  "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 adrotate-output.php:664
204
  #, php-format
205
  msgid "One advert is expired."
206
  msgid_plural "%1$s adverts expired!"
208
  msgstr[1] ""
209
  msgstr[2] ""
210
 
211
+ #: adrotate-output.php:652 adrotate-output.php:655 adrotate-output.php:659
212
+ #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
213
  msgid "Check adverts"
214
  msgstr ""
215
 
216
+ #: adrotate-output.php:655 adrotate-output.php:667
217
  #, php-format
218
  msgid "One advert expires soon."
219
  msgid_plural "%1$s adverts are almost expiring!"
221
  msgstr[1] ""
222
  msgstr[2] ""
223
 
224
+ #: adrotate-output.php:659 adrotate-output.php:670
225
  #, php-format
226
  msgid "One advert with configuration errors."
227
  msgid_plural "%1$s adverts have configuration errors!"
229
  msgstr[1] ""
230
  msgstr[2] ""
231
 
232
+ #: adrotate-output.php:675
233
  msgid ""
234
  "You have enable caching support but W3 Total Cache is not active on your "
235
  "site!"
236
  msgstr ""
237
 
238
+ #: adrotate-output.php:678
239
  msgid ""
240
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
241
  "not set."
242
  msgstr ""
243
 
244
+ #: adrotate-output.php:683
245
  msgid "Your AdRotate Banner folder is not writable or does not exist."
246
  msgstr ""
247
 
248
+ #: adrotate-output.php:702
249
  msgid "one issue that requires"
250
  msgid_plural "several issues that require"
251
  msgstr[0] ""
252
  msgstr[1] ""
253
  msgstr[2] ""
254
 
255
+ #: adrotate-output.php:723 dashboard/adrotatepro.php:99
256
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
257
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
258
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
259
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
260
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
261
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
262
+ #: dashboard/settings/geotargeting.php:35
263
  #, fuzzy
264
  msgid "Buy now"
265
  msgstr "Kup"
266
 
267
+ #: adrotate-output.php:724
268
  msgid ""
269
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
270
  "to the <strong>PRO</strong> version"
271
  msgstr ""
272
 
273
+ #: adrotate-output.php:724
274
  #, php-format
275
  msgid ""
276
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
277
  msgstr ""
278
 
279
+ #: adrotate-output.php:724
280
  msgid "Thank you for your purchase!"
281
  msgstr ""
282
 
283
+ #: adrotate-output.php:750
284
  msgid "one plugin"
285
  msgid_plural "several plugins"
286
  msgstr[0] ""
287
  msgstr[1] ""
288
  msgstr[2] ""
289
 
290
+ #: adrotate-output.php:785
291
  msgid ""
292
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
293
  "this menu. Check out the"
294
  msgstr ""
295
 
296
+ #: adrotate-output.php:785
297
  msgid "manuals"
298
  msgstr "instrukcje"
299
 
300
+ #: adrotate-output.php:785 adrotate-output.php:852
301
  msgid "and"
302
  msgstr ""
303
 
304
+ #: adrotate-output.php:785
305
  msgid "forums"
306
  msgstr ""
307
 
308
+ #: adrotate-output.php:815
309
  #, fuzzy
310
  msgid "Useful Links"
311
  msgstr "Użyteczne odnośniki."
312
 
313
+ #: adrotate-output.php:816
314
  msgid "Useful links to learn more about AdRotate"
315
  msgstr ""
316
 
317
+ #: adrotate-output.php:818
318
  msgid "AdRotate website"
319
  msgstr ""
320
 
321
+ #: adrotate-output.php:819
322
  #, fuzzy
323
  msgid "Getting Started With AdRotate"
324
  msgstr "Więcej ustawień z AdRotate Pro"
325
 
326
+ #: adrotate-output.php:820
327
  #, fuzzy
328
  msgid "AdRotate manuals"
329
  msgstr "Informacja AdRotate "
330
 
331
+ #: adrotate-output.php:821
332
  #, fuzzy
333
  msgid "AdRotate Support Forum"
334
  msgstr "Sklep AdRotate"
335
 
336
+ #: adrotate-output.php:844
337
  #, fuzzy
338
  msgid "Help AdRotate Grow"
339
  msgstr "Nie wiesz co zrobić z AdRotate? Ja ci pomogę!"
340
 
341
+ #: adrotate-output.php:845
342
  msgid "Follow Arnan on Facebook"
343
  msgstr ""
344
 
345
+ #: adrotate-output.php:852
346
  msgid ""
347
  "A lot of users only think to review AdRotate when something goes wrong while "
348
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
349
  msgstr ""
350
 
351
+ #: adrotate-output.php:852
352
  msgid "If you find AdRotate useful please leave your honest"
353
  msgstr ""
354
 
355
+ #: adrotate-output.php:852
356
  msgid "rating"
357
  msgstr ""
358
 
359
+ #: adrotate-output.php:852
360
  #, fuzzy
361
  msgid "review"
362
  msgstr ""
363
  "Przeglądaj zapisanych reklamodawców. Widoczne jedynie dla reklamodawców."
364
 
365
+ #: adrotate-output.php:852
366
  msgid "on WordPress.org to help AdRotate grow in a positive way"
367
  msgstr ""
368
 
369
+ #: adrotate-output.php:885 dashboard/settings/notifications.php:50
370
+ #: dashboard/settings/notifications.php:80
371
  msgid "Available in AdRotate Pro"
372
  msgstr "Dostępne w wersji AdRotate Pro"
373
 
374
+ #: adrotate-output.php:885
375
  msgid "More information..."
376
  msgstr "Więcej informacji"
377
 
378
+ #: adrotate-output.php:886
379
  msgid "This feature is available in AdRotate Pro"
380
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
381
 
382
+ #: adrotate-output.php:886
383
  msgid "Learn more"
384
  msgstr "Dowiedź się więcej"
385
 
386
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
387
+ #: dashboard/publisher/adverts-edit.php:235
388
  msgid "January"
389
  msgstr "Styczeń "
390
 
391
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
392
+ #: dashboard/publisher/adverts-edit.php:236
393
  msgid "February"
394
  msgstr "Luty"
395
 
396
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
397
+ #: dashboard/publisher/adverts-edit.php:237
398
  msgid "March"
399
  msgstr "Marzec"
400
 
401
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
402
+ #: dashboard/publisher/adverts-edit.php:238
403
  msgid "April"
404
  msgstr "Kwiecień"
405
 
406
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
407
+ #: dashboard/publisher/adverts-edit.php:239
408
  msgid "May"
409
  msgstr "Maj"
410
 
411
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
412
+ #: dashboard/publisher/adverts-edit.php:240
413
  msgid "June"
414
  msgstr "Czerwiec"
415
 
416
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
417
+ #: dashboard/publisher/adverts-edit.php:241
418
  msgid "July"
419
  msgstr "Lipiec"
420
 
421
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
422
+ #: dashboard/publisher/adverts-edit.php:242
423
  msgid "August"
424
  msgstr "Sierpień"
425
 
426
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
427
+ #: dashboard/publisher/adverts-edit.php:243
428
  msgid "September"
429
  msgstr "Wrzesień"
430
 
431
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
432
+ #: dashboard/publisher/adverts-edit.php:244
433
  msgid "October"
434
  msgstr "Pażdziernik"
435
 
436
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
437
+ #: dashboard/publisher/adverts-edit.php:245
438
  msgid "November"
439
  msgstr "Listopad"
440
 
441
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
442
+ #: dashboard/publisher/adverts-edit.php:246
443
  msgid "December"
444
  msgstr "Grudzień"
445
 
499
  msgid "Fill in the ID of the type you want to display!"
500
  msgstr "Wprowadź numer ID typu których chcesz wyświetlać!"
501
 
502
+ #: adrotate.php:102
503
  msgid "General Info"
504
  msgstr "Informacje główne"
505
 
506
+ #: adrotate.php:103
507
  msgid "AdRotate Pro"
508
  msgstr "AdRotate Pro"
509
 
510
+ #: adrotate.php:104
511
  msgid "Manage Adverts"
512
  msgstr ""
513
 
514
+ #: adrotate.php:105 dashboard/publisher/groups-main.php:12
515
  msgid "Manage Groups"
516
  msgstr "Zarządzaj grupami"
517
 
518
+ #: adrotate.php:106 adrotate.php:369
519
  #, fuzzy
520
  msgid "Manage Schedules"
521
  msgstr "Zarządzaj"
522
 
523
+ #: adrotate.php:107
524
  #, fuzzy
525
  msgid "Manage Media"
526
  msgstr "Media:"
527
 
528
+ #: adrotate.php:108
529
  msgid "Settings"
530
  msgstr "Ustawienia"
531
 
532
+ #: adrotate.php:128
533
  msgid "AdRotate Info"
534
  msgstr "Informacja AdRotate "
535
 
536
+ #: adrotate.php:146
537
  msgid "AdRotate Professional"
538
  msgstr "AdRotate Professional"
539
 
540
+ #: adrotate.php:186
541
  msgid "Advert Management"
542
  msgstr ""
543
 
544
+ #: adrotate.php:244 adrotate.php:311 adrotate.php:364
545
  msgid "Manage"
546
  msgstr "Zarządzaj"
547
 
548
+ #: adrotate.php:245 adrotate.php:312 adrotate.php:365
549
  msgid "Add New"
550
  msgstr "Dodaj nową"
551
 
552
+ #: adrotate.php:305
553
  msgid "Group Management"
554
  msgstr "Zarządzanie grupą reklam"
555
 
556
+ #: adrotate.php:314
557
  msgid "Report"
558
  msgstr "Raport"
559
 
560
+ #: adrotate.php:360
561
  #, fuzzy
562
  msgid "Schedule Management available in AdRotate Pro"
563
  msgstr "Dostępne w wersji AdRotate Pro"
564
 
565
+ #: adrotate.php:370
566
  msgid ""
567
  "Schedule management and multiple schedules per advert is available in "
568
  "AdRotate Pro."
569
  msgstr ""
570
 
571
+ #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
572
  #: dashboard/publisher/adverts-main.php:114
573
+ #: dashboard/publisher/groups-edit.php:71
574
  #: dashboard/publisher/groups-main.php:89
575
  #, fuzzy
576
  msgid "More information"
577
  msgstr "Więcej informacji"
578
 
579
+ #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
580
  #: dashboard/publisher/adverts-error.php:19
581
  #: dashboard/publisher/adverts-main.php:20
582
  #: dashboard/publisher/groups-main.php:20
583
  msgid "Bulk Actions"
584
  msgstr "Działania masowe"
585
 
586
+ #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
587
  #: dashboard/publisher/adverts-error.php:29
588
  #: dashboard/publisher/adverts-main.php:30
589
  #: dashboard/publisher/groups-main.php:24
590
  msgid "Go"
591
  msgstr "Idź"
592
 
593
+ #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
594
  #: dashboard/publisher/adverts-error.php:39
595
  #: dashboard/publisher/adverts-main.php:39
 
596
  #: dashboard/publisher/groups-main.php:32
597
  msgid "ID"
598
  msgstr "ID"
599
 
600
+ #: adrotate.php:388
601
  #, fuzzy
602
  msgid "Start"
603
  msgstr "Start / Koniec"
604
 
605
+ #: adrotate.php:388
606
  #, fuzzy
607
  msgid "End"
608
  msgstr "Start / Koniec"
609
 
610
+ #: adrotate.php:389
611
  msgid "Ads"
612
  msgstr "Reklamy"
613
 
614
+ #: adrotate.php:391
615
  msgid "Max Impressions"
616
  msgstr "Maksymalna liczba wyświetleń"
617
 
618
+ #: adrotate.php:392
619
  msgid "Max Clicks"
620
  msgstr "Maksymalna liczna kliknięć"
621
 
622
+ #: adrotate.php:422
623
  #, fuzzy
624
  msgid "No schedules created yet!"
625
  msgstr "Nie utworzono jeszcze żadnych reklam!"
626
 
627
+ #: adrotate.php:427
628
  #, fuzzy
629
  msgid "Easily manage your schedules from here with AdRotate Pro."
630
  msgstr "Więcej ustawień z AdRotate Pro"
631
 
632
+ #: adrotate.php:427 adrotate.php:490
633
  #, fuzzy
634
  msgid "Upgrade today!"
635
  msgstr "Dziś"
636
 
637
+ #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
638
+ #: dashboard/publisher/groups-edit.php:383
639
  msgid "Expires soon."
640
  msgstr "Wygasa wkrótce."
641
 
642
+ #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
643
+ #: dashboard/publisher/groups-edit.php:384
644
  msgid "Has expired."
645
  msgstr "Wygasła."
646
 
647
+ #: adrotate.php:452
648
  #, fuzzy
649
  msgid "Media Management available in AdRotate Pro"
650
  msgstr "Dostępne w wersji AdRotate Pro"
651
 
652
+ #: adrotate.php:454
653
  msgid "Upload images to the AdRotate Pro banners folder from here."
654
  msgstr ""
655
 
656
+ #: adrotate.php:454
657
  msgid ""
658
  "This is useful if you use responsive adverts with multiple images or have "
659
  "HTML5 adverts containing multiple files."
660
  msgstr ""
661
 
662
+ #: adrotate.php:454
663
  #, fuzzy
664
  msgid "Media uploading and management is available in AdRotate Pro."
665
  msgstr "Ta opcja jest dostępna w wersji AdRotate Pro"
666
 
667
+ #: adrotate.php:456
668
  msgid "Upload new file"
669
  msgstr ""
670
 
671
+ #: adrotate.php:457
672
  msgid "Accepted files:"
673
  msgstr ""
674
 
675
+ #: adrotate.php:457
676
  msgid "For HTML5 ads you can also upload html and javascript files."
677
  msgstr ""
678
 
679
+ #: adrotate.php:457
680
  msgid "Maximum size is 512Kb."
681
  msgstr ""
682
 
683
+ #: adrotate.php:457
684
  msgid "Important:"
685
  msgstr ""
686
 
687
+ #: adrotate.php:457
688
  msgid ""
689
  "Make sure your file has no spaces or special characters in the name. Replace "
690
  "spaces with a - or _."
691
  msgstr ""
692
 
693
+ #: adrotate.php:457
694
  msgid ""
695
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
696
  "file so it knows about the changed name. For example for the javascript file."
697
  msgstr ""
698
 
699
+ #: adrotate.php:460
700
  #, fuzzy
701
  msgid ""
702
  "For responsive adverts make sure the filename is in the following format; "
706
  "format i nazewnictwo; \"nazwa.full.rozszerzenie\". Polecamy zachowanie "
707
  "pełnego wachlarza rozmiarów.'"
708
 
709
+ #: adrotate.php:461
710
  msgid ""
711
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
712
  "filename instead of \".full\" for the various viewports."
714
  "Dla obrazów mniejszych rozmiarów użyj \".320\", \".480\", \".768\" albo "
715
  "\".1024\" w nazwie pliku \".full\" dla odpowiednich formatów wyświetlania."
716
 
717
+ #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
718
+ #: dashboard/publisher/groups-edit.php:316
719
  msgid "Example:"
720
  msgstr "Przykład:"
721
 
722
+ #: adrotate.php:462
723
  #, fuzzy
724
  msgid ""
725
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
728
  "image.full.jpg, image.320.jpg i image.768.jpg obsłuży ten sam ogłoszenie w "
729
  "różnych widokach. Wymaga jQuery."
730
 
731
+ #: adrotate.php:466
732
  msgid "Upload file"
733
  msgstr ""
734
 
735
+ #: adrotate.php:466
736
  msgid "Click only once per file!"
737
  msgstr ""
738
 
739
+ #: adrotate.php:469
740
  msgid "Available files in"
741
  msgstr ""
742
 
743
+ #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
744
  #: dashboard/publisher/groups-main.php:33
745
  msgid "Name"
746
  msgstr "Nazwa"
747
 
748
+ #: adrotate.php:475
749
  #, fuzzy
750
  msgid "Actions"
751
  msgstr "Działania masowe"
752
 
753
+ #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
754
+ #: adrotate.php:484 adrotate.php:485 adrotate.php:486
755
  #: dashboard/publisher/adverts-disabled.php:22
756
  #: dashboard/publisher/adverts-error.php:21
757
  #: dashboard/publisher/adverts-main.php:22
758
  msgid "Delete"
759
  msgstr "Usuń"
760
 
761
+ #: adrotate.php:490
762
  msgid ""
763
  "Make sure the banner images are not in use by adverts when you delete them!"
764
  msgstr ""
765
 
766
+ #: adrotate.php:490
767
  #, fuzzy
768
  msgid "Manage your banner folder from here with AdRotate Pro."
769
  msgstr "Więcej ustawień z AdRotate Pro"
770
 
771
+ #: adrotate.php:516
772
  msgid "AdRotate Settings"
773
  msgstr "Ustawienia AdRotate"
774
 
 
 
 
 
775
  #: dashboard/adrotatepro.php:20
776
  msgid "Satisfy your advertisers"
777
  msgstr "Zadowalaj swoich reklamodawców"
963
  msgid "Adverts that need you"
964
  msgstr "Reklamy wymagające uwagi"
965
 
966
+ #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
967
  #: dashboard/publisher/groups-main.php:34
968
  msgid "Adverts"
969
  msgstr "Reklamy"
1006
  msgstr ""
1007
 
1008
  #: dashboard/publisher/adverts-disabled.php:21
1009
+ #: dashboard/publisher/adverts-edit.php:170
1010
  msgid "Activate"
1011
  msgstr "Aktywuj"
1012
 
1023
  msgstr "Start / Koniec"
1024
 
1025
  #: dashboard/publisher/adverts-disabled.php:37
1026
+ #: dashboard/publisher/adverts-edit.php:110
1027
  #: dashboard/publisher/adverts-error.php:41
1028
  #: dashboard/publisher/adverts-main.php:41
1029
  msgid "Title"
1031
 
1032
  #: dashboard/publisher/adverts-disabled.php:38
1033
  #: dashboard/publisher/adverts-main.php:44
1034
+ #: dashboard/publisher/groups-edit.php:329
1035
  #: dashboard/publisher/groups-main.php:36
1036
  msgid "Shown"
1037
  msgstr "Wyświetlane"
1040
  #: dashboard/publisher/adverts-main.php:46
1041
  #: dashboard/publisher/adverts-report.php:36
1042
  #: dashboard/publisher/adverts-report.php:57
1043
+ #: dashboard/publisher/groups-edit.php:330
1044
  #: dashboard/publisher/groups-main.php:38
1045
  #: dashboard/publisher/groups-report.php:37
1046
  #: dashboard/publisher/groups-report.php:58
1082
  msgstr "Kod reklamy nie może być pusty!"
1083
 
1084
  #: dashboard/publisher/adverts-edit.php:51
1085
+ msgid ""
1086
+ "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1087
+ "use!"
1088
  msgstr ""
1089
 
1090
  #: dashboard/publisher/adverts-edit.php:54
 
 
 
 
1091
  msgid ""
1092
+ "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1093
+ "use!"
1094
  msgstr ""
1095
 
1096
+ #: dashboard/publisher/adverts-edit.php:57
1097
  msgid ""
1098
  "There is a problem saving the image. Please reset your image and re-save the "
1099
  "ad!"
1100
  msgstr ""
1101
 
1102
+ #: dashboard/publisher/adverts-edit.php:60
 
 
 
 
1103
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1104
  msgstr ""
1105
 
1106
+ #: dashboard/publisher/adverts-edit.php:65
1107
  msgid ""
1108
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1109
  "the ad!"
1111
  "AdRotate nie może znaleść błedu ale reklama jest oznaczona jako zawierajaca "
1112
  "błędy. Sprobuj zapisać ją ponownie!"
1113
 
1114
+ #: dashboard/publisher/adverts-edit.php:68
1115
  msgid "This ad is expired and currently not shown on your website!"
1116
  msgstr "Ta reklama wygasła i obecnie nie jest wyświetlana na stronie!"
1117
 
1118
+ #: dashboard/publisher/adverts-edit.php:71
1119
  msgid "The ad will expire in less than 2 days!"
1120
  msgstr "Ta reklama wygaśnie za 2 dni!"
1121
 
1122
+ #: dashboard/publisher/adverts-edit.php:74
1123
  msgid "This ad will expire in less than 7 days!"
1124
  msgstr "Ta reklama wygaśnie za 7 dni!"
1125
 
1126
+ #: dashboard/publisher/adverts-edit.php:77
1127
  msgid "This ad has been disabled and does not rotate on your site!"
1128
  msgstr "Reklama został wyłączona i nie jest wyświetlana na stronie!"
1129
 
1130
+ #: dashboard/publisher/adverts-edit.php:102
1131
  msgid "New Advert"
1132
  msgstr "Nowa reklama"
1133
 
1134
+ #: dashboard/publisher/adverts-edit.php:104
1135
  msgid "Edit Advert"
1136
  msgstr "Edytuj reklamę"
1137
 
1138
+ #: dashboard/publisher/adverts-edit.php:116
1139
  msgid "AdCode"
1140
  msgstr ""
1141
 
1142
+ #: dashboard/publisher/adverts-edit.php:121
1143
  msgid "Basic Examples:"
1144
  msgstr "Proste przykłady:"
1145
 
1146
+ #: dashboard/publisher/adverts-edit.php:128
1147
  msgid "Useful tags"
1148
  msgstr ""
1149
 
1150
+ #: dashboard/publisher/adverts-edit.php:130
1151
  msgid "Insert the advert ID Number."
1152
  msgstr ""
1153
 
1154
+ #: dashboard/publisher/adverts-edit.php:130
1155
+ msgid "Required when selecting a asset below."
1156
  msgstr ""
1157
 
1158
+ #: dashboard/publisher/adverts-edit.php:130
1159
  msgid "Insert the advert name."
1160
  msgstr ""
1161
 
1162
+ #: dashboard/publisher/adverts-edit.php:130
1163
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1164
  msgstr ""
1165
 
1166
+ #: dashboard/publisher/adverts-edit.php:130
1167
  msgid "Add inside the <a> tag to open advert in a new window."
1168
  msgstr ""
1169
 
1170
+ #: dashboard/publisher/adverts-edit.php:130
1171
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1172
  msgstr ""
1173
 
1174
+ #: dashboard/publisher/adverts-edit.php:130
1175
  msgid ""
1176
  "Place the cursor in your AdCode where you want to add any of these tags and "
1177
  "click to add it."
1178
  msgstr ""
1179
 
1180
+ #: dashboard/publisher/adverts-edit.php:135
1181
  msgid "Preview"
1182
  msgstr "Podgląd"
1183
 
1184
+ #: dashboard/publisher/adverts-edit.php:138
1185
  msgid ""
1186
  "Note: While this preview is an accurate one, it might look different then it "
1187
  "does on the website."
1189
  "Uwaga: Podczas podglądu reklama może wygląać inaczej, to nie na stronie "
1190
  "internetowej."
1191
 
1192
+ #: dashboard/publisher/adverts-edit.php:139
1193
  msgid ""
1194
  "This is because of CSS differences. Your themes CSS file is not active here!"
1195
  msgstr ""
1196
  "To wynika z różnic w Kaskadowych arkuszach stylu CSS. Twój szablon nie "
1197
  "działa w tym pliku!."
1198
 
1199
+ #: dashboard/publisher/adverts-edit.php:144
1200
  msgid "Banner asset"
1201
  msgstr ""
1202
 
1203
+ #: dashboard/publisher/adverts-edit.php:147
1204
  msgid "WordPress media:"
1205
  msgstr ""
1206
 
1207
+ #: dashboard/publisher/adverts-edit.php:147
1208
  msgid "Select Banner"
1209
  msgstr "Wybierz baner:"
1210
 
1211
+ #: dashboard/publisher/adverts-edit.php:149
1212
  msgid "- OR -"
1213
  msgstr "--albo-"
1214
 
1215
+ #: dashboard/publisher/adverts-edit.php:151
1216
  msgid "Banner folder:"
1217
  msgstr "Folder banerów:"
1218
 
1219
+ #: dashboard/publisher/adverts-edit.php:152
1220
  msgid "No image selected"
1221
  msgstr "Nie wybrano żadnego obrazu"
1222
 
1223
+ #: dashboard/publisher/adverts-edit.php:156
1224
+ msgid "Use %asset% in the adcode instead of the file path."
1225
  msgstr ""
1226
 
1227
+ #: dashboard/publisher/adverts-edit.php:156
1228
  msgid ""
1229
  "Use either the text field or the dropdown. If the textfield has content that "
1230
  "field has priority."
1232
  "Skorzystaj z pola tekstowego lub listy rozwijanej. Jeśli pole tekstowe "
1233
  "zawiera treści, te pole ma pierwszeństwo."
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:161
1236
+ #: dashboard/settings/statistics.php:17
1237
  msgid "Statistics"
1238
  msgstr "Statystyki"
1239
 
1240
+ #: dashboard/publisher/adverts-edit.php:163
1241
  msgid "Enable click and impression tracking for this advert."
1242
  msgstr ""
1243
 
1244
+ #: dashboard/publisher/adverts-edit.php:164
1245
  msgid ""
1246
  "Note: Clicktracking does not work for Javascript adverts such as those "
1247
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1248
  "always supported."
1249
  msgstr ""
1250
 
1251
+ #: dashboard/publisher/adverts-edit.php:174
1252
  msgid "Yes, this ad will be used"
1253
  msgstr "Uruchom ta reklamę"
1254
 
1255
+ #: dashboard/publisher/adverts-edit.php:175
1256
  msgid "No, do not show this ad anywhere"
1257
  msgstr "Niepokazuj tej reklamy."
1258
 
1259
+ #: dashboard/publisher/adverts-edit.php:182
1260
  #: dashboard/publisher/adverts-main.php:114
1261
+ #: dashboard/publisher/groups-edit.php:71
1262
  #: dashboard/publisher/groups-main.php:89
1263
  #, fuzzy
1264
  msgid "Get more features with AdRotate Pro."
1265
  msgstr "Więcej ustawień z AdRotate Pro"
1266
 
1267
+ #: dashboard/publisher/adverts-edit.php:185
1268
+ #: dashboard/publisher/adverts-edit.php:285
1269
+ #: dashboard/publisher/adverts-edit.php:408
1270
+ #: dashboard/publisher/adverts-edit.php:449
1271
  msgid "Save Advert"
1272
  msgstr "Zapisz reklamę"
1273
 
1274
+ #: dashboard/publisher/adverts-edit.php:186
1275
+ #: dashboard/publisher/adverts-edit.php:286
1276
+ #: dashboard/publisher/adverts-edit.php:409
1277
+ #: dashboard/publisher/adverts-edit.php:450
1278
+ #: dashboard/publisher/groups-edit.php:150
1279
+ #: dashboard/publisher/groups-edit.php:297
1280
+ #: dashboard/publisher/groups-edit.php:389
1281
  msgid "Cancel"
1282
  msgstr "Anuluj"
1283
 
1284
+ #: dashboard/publisher/adverts-edit.php:189
1285
+ #: dashboard/publisher/adverts-edit.php:391
1286
+ #: dashboard/publisher/groups-edit.php:132
1287
+ #: dashboard/publisher/groups-edit.php:279
1288
  msgid "Usage"
1289
  msgstr "Użycie"
1290
 
1291
+ #: dashboard/publisher/adverts-edit.php:193
1292
+ #: dashboard/publisher/adverts-edit.php:395
1293
+ #: dashboard/publisher/groups-edit.php:136
1294
+ #: dashboard/publisher/groups-edit.php:283
1295
  msgid "Widget"
1296
  msgstr ""
1297
 
1298
+ #: dashboard/publisher/adverts-edit.php:194
1299
+ #: dashboard/publisher/adverts-edit.php:396
1300
  msgid ""
1301
+ "Drag the AdRotate widget to the sidebar where you want to place the advert "
1302
+ "and select the advert or the group the advert is in."
1303
  msgstr ""
1304
 
1305
+ #: dashboard/publisher/adverts-edit.php:197
1306
+ #: dashboard/publisher/adverts-edit.php:399
1307
+ #: dashboard/publisher/groups-edit.php:140
1308
+ #: dashboard/publisher/groups-edit.php:287
1309
  msgid "In a post or page"
1310
  msgstr ""
1311
 
1312
+ #: dashboard/publisher/adverts-edit.php:199
1313
+ #: dashboard/publisher/adverts-edit.php:401
1314
+ #: dashboard/publisher/groups-edit.php:142
1315
+ #: dashboard/publisher/groups-edit.php:289
1316
  msgid "Directly in a theme"
1317
  msgstr ""
1318
 
1319
+ #: dashboard/publisher/adverts-edit.php:205
1320
  msgid "Schedule your advert"
1321
  msgstr ""
1322
 
1323
+ #: dashboard/publisher/adverts-edit.php:209
1324
  msgid "Start date (day/month/year)"
1325
  msgstr ""
1326
 
1327
+ #: dashboard/publisher/adverts-edit.php:230
1328
  msgid "End date (day/month/year)"
1329
  msgstr ""
1330
 
1331
+ #: dashboard/publisher/adverts-edit.php:253
1332
  msgid "Start time (hh:mm)"
1333
  msgstr ""
1334
 
1335
+ #: dashboard/publisher/adverts-edit.php:260
1336
  msgid "End time (hh:mm)"
1337
  msgstr ""
1338
 
1339
+ #: dashboard/publisher/adverts-edit.php:270
1340
  msgid "Maximum Clicks"
1341
  msgstr ""
1342
 
1343
+ #: dashboard/publisher/adverts-edit.php:271
1344
+ #: dashboard/publisher/adverts-edit.php:273
1345
  msgid "Leave empty or 0 to skip this."
1346
  msgstr "Pozostaw puste albo wpisz 0 ."
1347
 
1348
+ #: dashboard/publisher/adverts-edit.php:272
1349
  msgid "Maximum Impressions"
1350
  msgstr ""
1351
 
1352
+ #: dashboard/publisher/adverts-edit.php:277
1353
  msgid "Important"
1354
  msgstr ""
1355
 
1356
+ #: dashboard/publisher/adverts-edit.php:278
1357
  msgid ""
1358
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1359
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1360
  "14:00 hours. 6AM is 6:00 hours."
1361
  msgstr ""
1362
 
1363
+ #: dashboard/publisher/adverts-edit.php:282
1364
  msgid ""
1365
  "Create multiple and more advanced schedules for each advert with AdRotate "
1366
  "Pro."
1367
  msgstr ""
1368
 
1369
+ #: dashboard/publisher/adverts-edit.php:282
1370
+ #: dashboard/publisher/adverts-edit.php:345
1371
+ #: dashboard/publisher/adverts-edit.php:389
1372
+ #: dashboard/publisher/groups-edit.php:196
1373
  #, fuzzy
1374
  msgid "Upgrade today"
1375
  msgstr "Dziś"
1376
 
1377
+ #: dashboard/publisher/adverts-edit.php:289
1378
+ #: dashboard/publisher/groups-edit.php:153
1379
  msgid "Advanced"
1380
  msgstr "Zaawansowane"
1381
 
1382
+ #: dashboard/publisher/adverts-edit.php:290
1383
  msgid "Everything below is optional."
1384
  msgstr "Wszystkie opcje poniżej są opcjonalne."
1385
 
1386
+ #: dashboard/publisher/adverts-edit.php:290
1387
+ msgid "Available in AdRotate Pro!"
1388
  msgstr ""
1389
 
1390
+ #: dashboard/publisher/adverts-edit.php:295
1391
+ #: dashboard/publisher/adverts-main.php:42
1392
+ #: dashboard/publisher/groups-edit.php:332
1393
+ msgid "Weight"
1394
+ msgstr "Waga"
1395
 
1396
+ #: dashboard/publisher/adverts-edit.php:298
1397
+ msgid "Few impressions"
1398
  msgstr ""
1399
 
1400
+ #: dashboard/publisher/adverts-edit.php:303
1401
+ msgid "Less than average"
1402
+ msgstr "Mniej niż średnia"
1403
 
1404
+ #: dashboard/publisher/adverts-edit.php:308
1405
+ msgid "Normal impressions"
1406
  msgstr ""
1407
 
1408
+ #: dashboard/publisher/adverts-edit.php:313
1409
+ msgid "More than average"
1410
+ msgstr "Więcej niż średnia"
1411
+
1412
+ #: dashboard/publisher/adverts-edit.php:318
1413
+ msgid "Many impressions"
1414
  msgstr ""
1415
 
1416
+ #: dashboard/publisher/adverts-edit.php:323
1417
+ msgid "Mobile"
1418
  msgstr ""
1419
 
1420
+ #: dashboard/publisher/adverts-edit.php:325
1421
+ msgid "Computers"
1422
+ msgstr ""
1423
 
1424
+ #: dashboard/publisher/adverts-edit.php:328
1425
+ msgid "Smartphones"
 
 
1426
  msgstr ""
1427
 
1428
+ #: dashboard/publisher/adverts-edit.php:331
1429
+ msgid "Tablets"
1430
+ msgstr ""
 
 
1431
 
1432
+ #: dashboard/publisher/adverts-edit.php:334
1433
  msgid ""
1434
+ "Also enable mobile support in the group this advert goes in or these are "
1435
+ "ignored."
1436
  msgstr ""
1437
 
1438
+ #: dashboard/publisher/adverts-edit.php:338
1439
+ #: dashboard/publisher/groups-edit.php:190
1440
  msgid "Sortorder"
1441
  msgstr ""
1442
 
1443
+ #: dashboard/publisher/adverts-edit.php:340
1444
+ #: dashboard/publisher/groups-edit.php:192
1445
  msgid "For administrative purposes set a sortorder."
1446
  msgstr "Dla celów administracyjnych ustaw sortowanie."
1447
 
1448
+ #: dashboard/publisher/adverts-edit.php:340
1449
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1450
  msgstr ""
1451
  "Pozostaw puste albo wpisz 0 by pominąć te ustawienia. Domyślnie ID reklamy."
1452
 
1453
+ #: dashboard/publisher/adverts-edit.php:345
1454
  msgid ""
1455
  "With AdRotate Pro you can easily select which devices the advert should show "
1456
  "on!"
1457
  msgstr ""
1458
 
1459
+ #: dashboard/publisher/adverts-edit.php:347
1460
  msgid "Geo Targeting in AdRotate Pro"
1461
  msgstr ""
1462
 
1463
+ #: dashboard/publisher/adverts-edit.php:348
1464
  msgid ""
1465
  "Assign the advert to a group and enable that group to use Geo Targeting."
1466
  msgstr ""
1467
 
1468
+ #: dashboard/publisher/adverts-edit.php:352
1469
  msgid "Cities/States"
1470
  msgstr ""
1471
 
1472
+ #: dashboard/publisher/adverts-edit.php:355
1473
  msgid ""
1474
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1475
  "states ISO codes are supported)"
1476
  msgstr ""
1477
 
1478
+ #: dashboard/publisher/adverts-edit.php:355
1479
  msgid ""
1480
  "AdRotate does not check the validity of names so make sure you spell them "
1481
  "correctly!"
1482
  msgstr ""
1483
 
1484
+ #: dashboard/publisher/adverts-edit.php:359
1485
  msgid "Countries"
1486
  msgstr ""
1487
 
1488
+ #: dashboard/publisher/adverts-edit.php:384
1489
  msgid "Select the countries you want the adverts to show in."
1490
  msgstr "Wybierz kraj w którym chcesz wyświetlać reklamy."
1491
 
1492
+ #: dashboard/publisher/adverts-edit.php:384
1493
  msgid "Cities take priority and will be filtered first."
1494
  msgstr "Miasta mają pierwszeństwo i będą filtrowane jaki pierwsze."
1495
 
1496
+ #: dashboard/publisher/adverts-edit.php:389
1497
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1498
  msgstr ""
1499
 
1500
+ #: dashboard/publisher/adverts-edit.php:413
1501
  msgid "Select Groups"
1502
  msgstr "Wybierz grupy"
1503
 
1504
+ #: dashboard/publisher/adverts-edit.php:418
1505
  msgid "ID - Name"
1506
  msgstr "ID - Nazwa"
1507
 
1508
+ #: dashboard/publisher/adverts-edit.php:428
1509
  #: dashboard/publisher/groups-main.php:60
1510
+ #: dashboard/settings/geotargeting.php:49
1511
  msgid "Default"
1512
  msgstr "Domyślny"
1513
 
1514
+ #: dashboard/publisher/adverts-edit.php:429
1515
  #: dashboard/publisher/groups-main.php:61
1516
  msgid "Dynamic"
1517
  msgstr "Dynamiczny"
1518
 
1519
+ #: dashboard/publisher/adverts-edit.php:429
1520
  #: dashboard/publisher/groups-main.php:61
1521
  msgid "second rotation"
1522
  msgstr "drugi obrót"
1523
 
1524
+ #: dashboard/publisher/adverts-edit.php:430
1525
  #: dashboard/publisher/groups-main.php:62
1526
  msgid "Block"
1527
  msgstr "Blok"
1528
 
1529
+ #: dashboard/publisher/adverts-edit.php:430
1530
  #: dashboard/publisher/groups-main.php:62
1531
  msgid "grid"
1532
  msgstr "siatka"
1533
 
1534
+ #: dashboard/publisher/adverts-edit.php:431
1535
+ #: dashboard/publisher/groups-edit.php:198
1536
  #: dashboard/publisher/groups-main.php:63
1537
  msgid "Post Injection"
1538
  msgstr "Umieszczanie we wpisach"
1539
 
1540
+ #: dashboard/publisher/adverts-edit.php:432
1541
  msgid "Geolocation"
1542
  msgstr "Geolokalizacja"
1543
 
1544
+ #: dashboard/publisher/adverts-edit.php:438
1545
+ #: dashboard/publisher/groups-edit.php:57
1546
  #: dashboard/publisher/groups-main.php:70
1547
  msgid "Mode"
1548
  msgstr "Tryb"
1582
  msgstr "Na 7 dni"
1583
 
1584
  #: dashboard/publisher/adverts-error.php:71
1585
+ #: dashboard/publisher/groups-edit.php:382
1586
  msgid "Configuration errors."
1587
  msgstr "Błedy konfiguracji."
1588
 
1595
  msgid "Export to XML"
1596
  msgstr "Eksportuj ustawienia"
1597
 
 
 
 
 
 
1598
  #: dashboard/publisher/adverts-main.php:45
1599
  #: dashboard/publisher/adverts-main.php:47
1600
  #: dashboard/publisher/groups-main.php:37
1632
  msgid "Monthly overview of clicks and impressions"
1633
  msgstr "Miesięczne zestawienie kliknięć i wyświetleń"
1634
 
1635
+ #: dashboard/publisher/adverts-report.php:64
1636
+ #: dashboard/publisher/groups-report.php:65
1637
+ #: dashboard/settings/notifications.php:60
1638
+ #: dashboard/settings/notifications.php:90
1639
+ msgid "Note:"
1640
+ msgstr "Notatka:"
1641
+
1642
  #: dashboard/publisher/adverts-report.php:64
1643
  #: dashboard/publisher/groups-report.php:65
1644
  msgid ""
1656
  msgid "Edit Group"
1657
  msgstr "Edytuj grupę"
1658
 
1659
+ #: dashboard/publisher/groups-edit.php:60
1660
  msgid "Default - Show one ad at a time"
1661
  msgstr "Domyśłne - pokazuj jedną na raz"
1662
 
1663
+ #: dashboard/publisher/groups-edit.php:61
1664
  msgid "Dynamic Mode - Show a different ad every few seconds"
1665
  msgstr "Tryb dynamiczny - Zmieniaj reklamy co kilka sekund"
1666
 
1667
+ #: dashboard/publisher/groups-edit.php:62
1668
  msgid "Block Mode - Show a block of adverts"
1669
  msgstr ""
1670
 
1671
+ #: dashboard/publisher/groups-edit.php:66
1672
  #, fuzzy
1673
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1674
  msgstr ""
1675
  "Tryb Dynamiczny i Blokowy wymagają załadowania 'jQuery' i jQuery "
1676
  "Wyłączone' . Możesz uruchomić ten tryb w Ustawieniach AdRotate."
1677
 
1678
+ #: dashboard/publisher/groups-edit.php:73
1679
+ #: dashboard/publisher/groups-edit.php:100
1680
  msgid "Dynamic and Block Mode"
1681
  msgstr "Tryb dynamiczny i blokowy"
1682
 
1683
+ #: dashboard/publisher/groups-edit.php:74
1684
  msgid "Only required if your group is in Dynamic or Block mode."
1685
  msgstr ""
1686
  "Wymagane jedynie gdy grupa reklam jest w trybie Dynamicznym lub Blokowym"
1687
 
1688
+ #: dashboard/publisher/groups-edit.php:78
1689
  msgid "Block size"
1690
  msgstr ""
1691
 
1692
+ #: dashboard/publisher/groups-edit.php:84
1693
  msgid "rows"
1694
  msgstr "wiersze"
1695
 
1696
+ #: dashboard/publisher/groups-edit.php:88
1697
  msgid "columns"
1698
  msgstr "kolumny"
1699
 
1700
+ #: dashboard/publisher/groups-edit.php:91
1701
  msgid "Block Mode"
1702
  msgstr "Tryb Bloku"
1703
 
1704
+ #: dashboard/publisher/groups-edit.php:91
1705
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1706
  msgstr ""
1707
 
1708
+ #: dashboard/publisher/groups-edit.php:95
1709
  msgid "Advert size"
1710
  msgstr ""
1711
 
1712
+ #: dashboard/publisher/groups-edit.php:97
1713
  msgid "pixel(s) wide"
1714
  msgstr "szerokość w pikselach"
1715
 
1716
+ #: dashboard/publisher/groups-edit.php:97
1717
  msgid "pixel(s) high."
1718
  msgstr "wysokość w pikselach"
1719
 
1720
+ #: dashboard/publisher/groups-edit.php:100
1721
  msgid ""
1722
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1723
  "recommended). Default: 125/125."
1724
  msgstr ""
1725
 
1726
+ #: dashboard/publisher/groups-edit.php:104
1727
  msgid "Automated refresh"
1728
  msgstr "Automatycznie odświeżane"
1729
 
1730
+ #: dashboard/publisher/groups-edit.php:123
1731
  msgid "seconds."
1732
  msgstr "sekund."
1733
 
1734
+ #: dashboard/publisher/groups-edit.php:126
1735
  msgid "Dynamic Mode"
1736
  msgstr "Tryb dynamiczny"
1737
 
1738
+ #: dashboard/publisher/groups-edit.php:126
1739
  msgid ""
1740
  "Load a new advert in this interval without reloading the page. Default: 6."
1741
  msgstr ""
1742
  "Załąduj nową reklamę w tych odstępach czasowych bez odświeżania strony. "
1743
  "Domyślnie 6."
1744
 
1745
+ #: dashboard/publisher/groups-edit.php:137
1746
+ #: dashboard/publisher/groups-edit.php:284
1747
  msgid ""
1748
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1749
  "Adverts\" and enter ID"
1750
  msgstr ""
1751
 
1752
+ #: dashboard/publisher/groups-edit.php:149
1753
+ #: dashboard/publisher/groups-edit.php:296
1754
+ #: dashboard/publisher/groups-edit.php:388
1755
  msgid "Save Group"
1756
  msgstr "Zapisz grupę"
1757
 
1758
+ #: dashboard/publisher/groups-edit.php:157
1759
  msgid "Advert Margin"
1760
  msgstr "Margines reklamy"
1761
 
1762
+ #: dashboard/publisher/groups-edit.php:159
1763
  msgid "pixel(s)"
1764
  msgstr "piksele"
1765
 
1766
+ #: dashboard/publisher/groups-edit.php:162
1767
  #, fuzzy
1768
  msgid "A transparent area outside the advert in pixels. Default: 0."
1769
  msgstr "Transparentna ramka wokól reklamy- w pikselach. Domyślnie: 1."
1770
 
1771
+ #: dashboard/publisher/groups-edit.php:162
1772
  #, fuzzy
1773
  msgid "Set to 0 to disable."
1774
  msgstr "Domyślnie: 10. Ustaw 0 by wyłączyć ten licznik."
1775
 
1776
+ #: dashboard/publisher/groups-edit.php:162
1777
  msgid "Margins are automatically disabled for blocks where required."
1778
  msgstr ""
1779
 
1780
+ #: dashboard/publisher/groups-edit.php:166
1781
  #, fuzzy
1782
  msgid "Align the group"
1783
  msgstr "Reklamy w grupie"
1784
 
1785
+ #: dashboard/publisher/groups-edit.php:169
1786
  #, fuzzy
1787
  msgid "None (Default)"
1788
  msgstr "Domyślny"
1789
 
1790
+ #: dashboard/publisher/groups-edit.php:170
1791
  msgid "Left"
1792
  msgstr ""
1793
 
1794
+ #: dashboard/publisher/groups-edit.php:171
1795
  #, fuzzy
1796
  msgid "Right"
1797
  msgstr "Waga"
1798
 
1799
+ #: dashboard/publisher/groups-edit.php:172
1800
  msgid "Center"
1801
  msgstr ""
1802
 
1803
+ #: dashboard/publisher/groups-edit.php:176
1804
  msgid ""
1805
  "Align the group in your post or page. Using 'center' may affect your margin "
1806
  "setting. Not every theme supports this feature."
1807
  msgstr ""
1808
 
1809
+ #: dashboard/publisher/groups-edit.php:180
1810
+ #: dashboard/settings/advertisers.php:38
1811
  msgid "Geo Targeting"
1812
  msgstr "Geo Targeting"
1813
 
1814
+ #: dashboard/publisher/groups-edit.php:181
1815
  msgid "Enable Geo Targeting for this group."
1816
  msgstr ""
1817
 
1818
+ #: dashboard/publisher/groups-edit.php:182
1819
  msgid "Do not forget to tell the adverts for which areas they should show."
1820
  msgstr ""
1821
  "Nie zapomnij ustawić gdzie mają być wyświetlane jakie reklamy i w jakich "
1822
  "miejscach."
1823
 
1824
+ #: dashboard/publisher/groups-edit.php:185
1825
  msgid "Mobile support"
1826
  msgstr ""
1827
 
1828
+ #: dashboard/publisher/groups-edit.php:186
1829
  msgid "Enable mobile support for this group."
1830
  msgstr ""
1831
 
1832
+ #: dashboard/publisher/groups-edit.php:187
1833
  msgid "Do not forget to put at least one mobile advert in this group."
1834
  msgstr ""
1835
 
1836
+ #: dashboard/publisher/groups-edit.php:192
1837
  msgid "Leave empty or 0 to skip this. Will default to group id."
1838
  msgstr ""
1839
  "Pozostaw puste albo wpisz 0 by ominąc tą opcje. Domyślnie dla ID grupy."
1840
 
1841
+ #: dashboard/publisher/groups-edit.php:196
1842
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1843
  msgstr ""
1844
 
1845
+ #: dashboard/publisher/groups-edit.php:201
1846
  msgid "In categories?"
1847
  msgstr ""
1848
 
1849
+ #: dashboard/publisher/groups-edit.php:205
1850
+ #: dashboard/publisher/groups-edit.php:243
1851
+ #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1852
  msgid "Disabled"
1853
  msgstr "Wyłącz"
1854
 
1855
+ #: dashboard/publisher/groups-edit.php:206
1856
+ #: dashboard/publisher/groups-edit.php:244
1857
  msgid "Before content"
1858
  msgstr "Przed treścią"
1859
 
1860
+ #: dashboard/publisher/groups-edit.php:207
1861
+ #: dashboard/publisher/groups-edit.php:245
1862
  msgid "After content"
1863
  msgstr "Po treści"
1864
 
1865
+ #: dashboard/publisher/groups-edit.php:208
1866
+ #: dashboard/publisher/groups-edit.php:246
1867
  msgid "Before and after content"
1868
  msgstr "Przed i po treści"
1869
 
1870
+ #: dashboard/publisher/groups-edit.php:209
1871
+ #: dashboard/publisher/groups-edit.php:247
1872
  msgid "Inside the content..."
1873
  msgstr ""
1874
 
1875
+ #: dashboard/publisher/groups-edit.php:215
1876
+ #: dashboard/publisher/groups-edit.php:253
1877
  msgid "after the middle paragraph"
1878
  msgstr ""
1879
 
1880
+ #: dashboard/publisher/groups-edit.php:216
1881
+ #: dashboard/publisher/groups-edit.php:254
1882
  msgid "after the 1st paragraph"
1883
  msgstr ""
1884
 
1885
+ #: dashboard/publisher/groups-edit.php:217
1886
+ #: dashboard/publisher/groups-edit.php:255
1887
  msgid "after the 2nd paragraph"
1888
  msgstr ""
1889
 
1890
+ #: dashboard/publisher/groups-edit.php:218
1891
+ #: dashboard/publisher/groups-edit.php:256
1892
  msgid "after the 3rd paragraph"
1893
  msgstr ""
1894
 
1895
+ #: dashboard/publisher/groups-edit.php:219
1896
+ #: dashboard/publisher/groups-edit.php:257
1897
  msgid "after the 4th paragraph"
1898
  msgstr ""
1899
 
1900
+ #: dashboard/publisher/groups-edit.php:220
1901
+ #: dashboard/publisher/groups-edit.php:258
1902
  msgid "after the 5th paragraph"
1903
  msgstr ""
1904
 
1905
+ #: dashboard/publisher/groups-edit.php:221
1906
+ #: dashboard/publisher/groups-edit.php:259
1907
  msgid "after the 6th paragraph"
1908
  msgstr ""
1909
 
1910
+ #: dashboard/publisher/groups-edit.php:222
1911
+ #: dashboard/publisher/groups-edit.php:260
1912
  msgid "after the 7th paragraph"
1913
  msgstr ""
1914
 
1915
+ #: dashboard/publisher/groups-edit.php:223
1916
+ #: dashboard/publisher/groups-edit.php:261
1917
  msgid "after the 8th paragraph"
1918
  msgstr ""
1919
 
1920
+ #: dashboard/publisher/groups-edit.php:229
1921
  msgid "Which categories?"
1922
  msgstr "Która kategoria?"
1923
 
1924
+ #: dashboard/publisher/groups-edit.php:234
1925
  msgid "Click the categories posts you want the adverts to show in."
1926
  msgstr "Wybierz kategorie wpisów na których chcesz wyświetlać reklamy."
1927
 
1928
+ #: dashboard/publisher/groups-edit.php:239
1929
  msgid "In pages?"
1930
  msgstr ""
1931
 
1932
+ #: dashboard/publisher/groups-edit.php:267
1933
  msgid "Which pages?"
1934
  msgstr "Które strony?"
1935
 
1936
+ #: dashboard/publisher/groups-edit.php:272
1937
  msgid "Click the pages you want the adverts to show in."
1938
  msgstr "Wybierz strony na których chcesz wyświetlać reklamy."
1939
 
1940
+ #: dashboard/publisher/groups-edit.php:300
1941
  msgid "Wrapper code"
1942
  msgstr "Kod wrappera"
1943
 
1944
+ #: dashboard/publisher/groups-edit.php:301
1945
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1946
  msgstr ""
1947
 
1948
+ #: dashboard/publisher/groups-edit.php:305
1949
  msgid "Before advert"
1950
  msgstr ""
1951
 
1952
+ #: dashboard/publisher/groups-edit.php:309
1953
  msgid "Options:"
1954
  msgstr "Opcje:"
1955
 
1956
+ #: dashboard/publisher/groups-edit.php:313
1957
  msgid "After advert"
1958
  msgstr ""
1959
 
1960
+ #: dashboard/publisher/groups-edit.php:322
1961
  msgid "Select adverts"
1962
  msgstr ""
1963
 
1964
+ #: dashboard/publisher/groups-edit.php:327
1965
  msgid "Choose adverts"
1966
  msgstr ""
1967
 
1968
+ #: dashboard/publisher/groups-edit.php:333
1969
  msgid "Visible until"
1970
  msgstr "Widoczne do"
1971
 
1972
+ #: dashboard/publisher/groups-edit.php:375
1973
  msgid "No adverts created!"
1974
  msgstr ""
1975
 
1989
  msgid "This action can not be undone!"
1990
  msgstr "Nie można cofnąć tego ruchu!"
1991
 
1992
+ #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1993
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
1994
  msgid "OK to continue, CANCEL to stop."
1995
  msgstr "Naciśnij OK by kontynuować, Anuluj by zatrzymać."
1996
 
2002
  msgid "Statistics for group"
2003
  msgstr "Statystyki dla grupy"
2004
 
2005
+ #: dashboard/settings/advertisers.php:16
2006
  msgid "Advertisers - Available in AdRotate Pro"
2007
  msgstr ""
2008
 
2009
+ #: dashboard/settings/advertisers.php:17
2010
  msgid "Enable advertisers so they can review and manage their own ads."
2011
  msgstr ""
2012
  "Włącz uprawnienia dla reklamodawców by mogli przeglądać i zarządzać swoimi "
2013
  "reklamami."
2014
 
2015
+ #: dashboard/settings/advertisers.php:20
2016
  msgid "Enable Advertisers"
2017
  msgstr "Włącz opcję reklamodawcy"
2018
 
2019
+ #: dashboard/settings/advertisers.php:22
2020
  msgid "Allow adverts to be coupled to users (Advertisers)."
2021
  msgstr "Zezwalaj na łączenie reklam z reklamodawcami. "
2022
 
2023
+ #: dashboard/settings/advertisers.php:26
2024
  msgid "Edit/update adverts"
2025
  msgstr "Edytuj/Aktualizuj Reklamy"
2026
 
2027
+ #: dashboard/settings/advertisers.php:28
2028
  msgid "Allow advertisers to add new or edit their adverts."
2029
  msgstr "Zezwól reklamodawcom na dodawanie oraz edytowanie reklam."
2030
 
2031
+ #: dashboard/settings/advertisers.php:32
2032
+ msgid "Mobile adverts"
2033
+ msgstr ""
2034
+
2035
+ #: dashboard/settings/advertisers.php:34
2036
+ msgid "Allow advertisers to specify on which devices their ads will show."
2037
+ msgstr ""
2038
+
2039
+ #: dashboard/settings/advertisers.php:40
2040
  msgid ""
2041
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2042
  "be enabled, too."
2043
  msgstr ""
2044
 
2045
+ #: dashboard/settings/advertisers.php:44
2046
  msgid "Advertiser role"
2047
  msgstr "Uprawnienia reklamodawcy"
2048
 
2049
+ #: dashboard/settings/advertisers.php:46
2050
  msgid "Create a seperate user role for your advertisers."
2051
  msgstr ""
2052
 
2053
+ #: dashboard/settings/advertisers.php:47
2054
  msgid ""
2055
  "Don't forget to give these users access to their advertiser dashboard via "
2056
  "the Roles tab."
2057
  msgstr ""
2058
 
2059
+ #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2060
+ #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2061
+ #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2062
+ #: dashboard/settings/statistics.php:73
2063
+ msgid "Update Options"
2064
+ msgstr "Zapisz opcje"
2065
+
2066
+ #: dashboard/settings/general.php:17
2067
  msgid "General Settings"
2068
  msgstr ""
2069
 
2070
+ #: dashboard/settings/general.php:18
2071
  msgid "General settings for AdRotate."
2072
  msgstr ""
2073
 
2074
+ #: dashboard/settings/general.php:18 dashboard/settings/statistics.php:18
2075
  msgid "Some options are only available in AdRotate Pro!"
2076
  msgstr ""
2077
 
2078
+ #: dashboard/settings/general.php:21
2079
  msgid "Shortcode in widgets"
2080
  msgstr ""
2081
 
2082
+ #: dashboard/settings/general.php:22
2083
  msgid ""
2084
  "Enable this option to if your theme does not support shortcodes in the "
2085
  "WordPress text widget."
2086
  msgstr ""
2087
 
2088
+ #: dashboard/settings/general.php:25
2089
  msgid "Disable live preview"
2090
  msgstr ""
2091
 
2092
+ #: dashboard/settings/general.php:26
2093
  msgid ""
2094
  "Enable this option if you have faulty adverts that overflow their designated "
2095
  "area while creating/editing adverts."
2096
  msgstr ""
2097
 
2098
+ #: dashboard/settings/general.php:29
2099
  msgid "Disable dynamic mode"
2100
  msgstr ""
2101
 
2102
+ #: dashboard/settings/general.php:30
2103
  msgid ""
2104
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2105
  "you notice skipping or jumpy content."
2106
  msgstr ""
2107
 
2108
+ #: dashboard/settings/general.php:33
2109
  msgid "Load jQuery"
2110
  msgstr "Załąduj jQuery"
2111
 
2112
+ #: dashboard/settings/general.php:34
2113
  msgid ""
2114
  "Enable this option if your theme does not load jQuery. jQuery is required "
2115
  "for dynamic groups, statistics and some other features."
2116
  msgstr ""
2117
 
2118
+ #: dashboard/settings/general.php:37
2119
  msgid "Load scripts in footer?"
2120
  msgstr ""
2121
 
2122
+ #: dashboard/settings/general.php:38
2123
  msgid ""
2124
  "Enable this option if you want to load all AdRotate Javascripts in the "
2125
  "footer of your site."
2126
  msgstr ""
2127
 
2128
+ #: dashboard/settings/general.php:41
2129
  msgid "Adblock disguise"
2130
  msgstr ""
2131
 
2132
+ #: dashboard/settings/general.php:43
2133
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2134
  msgstr ""
2135
 
2136
+ #: dashboard/settings/general.php:44
2137
  msgid ""
2138
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2139
  msgstr ""
2140
 
2141
+ #: dashboard/settings/general.php:44
2142
  msgid ""
2143
  "To also apply this feature to widgets, use a text widget with a shortcode "
2144
  "instead of the AdRotate widget."
2145
  msgstr ""
2146
 
2147
+ #: dashboard/settings/general.php:44
2148
  msgid ""
2149
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2150
  "feature will have little effect!"
2151
  msgstr ""
2152
 
2153
+ #: dashboard/settings/general.php:49
2154
  msgid "Banner Folder"
2155
  msgstr "Folder banerów"
2156
 
2157
+ #: dashboard/settings/general.php:50
2158
  msgid "Set a location where your banner images will be stored."
2159
  msgstr "Wskaż lokalizację gdzie przechowywane będą obrazy reklam."
2160
 
2161
+ #: dashboard/settings/general.php:53
2162
  msgid "Location"
2163
  msgstr "Lokalizacja"
2164
 
2165
+ #: dashboard/settings/general.php:55
2166
  msgid "(Default: wp-content/banners/)."
2167
  msgstr "(Domyślnie: wp-content/banners/)."
2168
 
2169
+ #: dashboard/settings/general.php:56
2170
  msgid ""
2171
  "To try and trick ad blockers you could set the folder to something crazy "
2172
  "like:"
2174
  "Jeśli chcesz możeszspróbować trochę oszukać programy blokujące reklamy. "
2175
  "Wsytarczy żę podasz jakąś nietypową nazwę folderu np. taką :"
2176
 
2177
+ #: dashboard/settings/general.php:57
2178
  msgid ""
2179
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2180
  "will show errors when the folder is missing."
2182
  "Ten folder nie zostanie automatycznie utworzony jeśli nie istnieje. AdRotate "
2183
  "wyświetli błędy jeśli nie odnajdzie katalogu."
2184
 
2185
+ #: dashboard/settings/general.php:62
2186
  msgid "Bot filter"
2187
  msgstr "Filtr Botów Internetowych"
2188
 
2189
+ #: dashboard/settings/general.php:63
2190
  msgid "The bot filter is used for the AdRotate stats tracker."
2191
  msgstr ""
2192
 
2193
+ #: dashboard/settings/general.php:66
2194
  msgid "User-Agent Filter"
2195
  msgstr "Filtr Agentów"
2196
 
2197
+ #: dashboard/settings/general.php:69
2198
  msgid ""
2199
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2200
  msgstr ""
2201
 
2202
+ #: dashboard/settings/general.php:70
2203
  msgid ""
2204
  "Keep in mind that this might give false positives. The word 'fire' also "
2205
  "matches 'firefox', but not vice-versa. So be careful!"
2206
  msgstr ""
2207
 
2208
+ #: dashboard/settings/general.php:71
2209
  msgid ""
2210
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2211
  "characters are stripped out."
2212
  msgstr ""
2213
 
2214
+ #: dashboard/settings/general.php:72
2215
  msgid ""
2216
  "Additionally to the list specified here, empty User-Agents are blocked as "
2217
  "well."
2218
  msgstr "Dodatkowo do listy podanej tutaj, puści agenci są blokowani."
2219
 
2220
+ #: dashboard/settings/general.php:72
2221
  msgid "Learn more about"
2222
  msgstr "Dowiedź się więcej o"
2223
 
2224
+ #: dashboard/settings/general.php:72
2225
  msgid "user-agents"
2226
  msgstr "Agenci przeglądarek"
2227
 
2228
+ #: dashboard/settings/geotargeting.php:17
2229
  msgid "Geo Targeting - Available in AdRotate Pro"
2230
  msgstr ""
2231
 
2232
+ #: dashboard/settings/geotargeting.php:18
2233
  msgid "Target certain areas in the world for better advertising oppurtunities."
2234
  msgstr ""
2235
 
2236
+ #: dashboard/settings/geotargeting.php:21
2237
  msgid "Which Geo Service"
2238
  msgstr ""
2239
 
2240
+ #: dashboard/settings/geotargeting.php:28
2241
+ msgid "Experimental"
2242
+ msgstr ""
2243
+
2244
+ #: dashboard/settings/geotargeting.php:31
2245
+ msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2246
  msgstr ""
2247
 
2248
+ #: dashboard/settings/geotargeting.php:32
2249
+ #: dashboard/settings/geotargeting.php:36
2250
+ #: dashboard/settings/geotargeting.php:40
2251
+ msgid "Supports:"
2252
  msgstr ""
2253
 
2254
  #: dashboard/settings/geotargeting.php:33
2255
+ #: dashboard/settings/geotargeting.php:37
2256
+ #: dashboard/settings/geotargeting.php:41
2257
+ msgid "Scalability:"
2258
+ msgstr ""
2259
+
2260
+ #: dashboard/settings/geotargeting.php:33
2261
+ msgid "Suitable for small to medium websites."
2262
+ msgstr ""
2263
+
2264
+ #: dashboard/settings/geotargeting.php:35
2265
+ msgid ""
2266
+ "The most accurate geo targeting you can get for only $20 USD per 50000 "
2267
+ "lookups."
2268
+ msgstr ""
2269
+
2270
+ #: dashboard/settings/geotargeting.php:37
2271
+ msgid "Suitable for any size website as long as you have lookups."
2272
+ msgstr ""
2273
+
2274
+ #: dashboard/settings/geotargeting.php:39
2275
+ msgid "Basic geolocation included in every CloudFlare account."
2276
+ msgstr ""
2277
+
2278
+ #: dashboard/settings/geotargeting.php:41
2279
+ msgid "Suitable for any size website."
2280
+ msgstr ""
2281
+
2282
+ #: dashboard/settings/geotargeting.php:46
2283
  msgid "Geo Cookie Lifespan"
2284
  msgstr ""
2285
 
2286
+ #: dashboard/settings/geotargeting.php:55
2287
  msgid "Hours."
2288
  msgstr ""
2289
 
2290
+ #: dashboard/settings/geotargeting.php:56
2291
  msgid ""
2292
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2293
  "cookie last? A longer period is less accurate for mobile users but may "
2294
  "reduce the usage of your lookups drastically."
2295
  msgstr ""
2296
 
2297
+ #: dashboard/settings/geotargeting.php:62
2298
  msgid "MaxMind City/Country"
2299
  msgstr ""
2300
 
2301
+ #: dashboard/settings/geotargeting.php:65
2302
  msgid "Username/Email"
2303
  msgstr ""
2304
 
2305
+ #: dashboard/settings/geotargeting.php:69
2306
  msgid "Password/License Key"
2307
  msgstr ""
2308
 
2309
+ #: dashboard/settings/maintenance.php:16
2310
  msgid "Maintenance"
2311
  msgstr "Ostrzeżenie"
2312
 
2313
+ #: dashboard/settings/maintenance.php:17
2314
  msgid ""
2315
  "Use these functions when you notice your database is slow, unresponsive and "
2316
  "sluggish."
2317
  msgstr ""
2318
 
2319
+ #: dashboard/settings/maintenance.php:20 dashboard/settings/maintenance.php:22
2320
  msgid "Optimize Database"
2321
  msgstr "Optymalizuj bazę danych"
2322
 
2323
+ #: dashboard/settings/maintenance.php:22
2324
  msgid "You are about to optimize the AdRotate database."
2325
  msgstr "Powinieneś zoptymalizować bazę danych AdRotate."
2326
 
2327
+ #: dashboard/settings/maintenance.php:22
2328
  msgid "Did you make a backup of your database?"
2329
  msgstr "Czy wykonałeś kopie zapasową swojej bazy?"
2330
 
2331
+ #: dashboard/settings/maintenance.php:22
2332
  msgid ""
2333
  "This may take a moment and may cause your website to respond slow "
2334
  "temporarily!"
2336
  "To może zająć jaki czas i spowodować że twoja strona będzie odpowiadać "
2337
  "wolniej przez jakiś czas."
2338
 
2339
+ #: dashboard/settings/maintenance.php:23
2340
  msgid "Cleans up overhead data in the AdRotate tables."
2341
  msgstr "Wyczyść nadmiarowe dane z tabel AdRotate"
2342
 
2343
+ #: dashboard/settings/maintenance.php:24
2344
  msgid ""
2345
  "Overhead data is accumulated garbage resulting from many changes you've "
2346
  "made. This can vary from nothing to hundreds of KiB of data."
2349
  "dokonujesz. Może to skutkować wzrostem przechowywanych danych od kilku "
2350
  "kilobajtow do kilku GB."
2351
 
2352
+ #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
2353
  msgid "Clean-up Database"
2354
  msgstr "Wyczyść bazę danych"
2355
 
2356
+ #: dashboard/settings/maintenance.php:30
2357
  msgid ""
2358
  "You are about to clean up your database. This may delete expired schedules "
2359
  "and older statistics."
2361
  "Zamierzasz wyczyścić bazę danych. Może to spowodować usunięcie zakończonych "
2362
  "harmonogramów i starych statystyk."
2363
 
2364
+ #: dashboard/settings/maintenance.php:30
2365
  msgid "Are you sure you want to continue?"
2366
  msgstr "Czy jesteś pewien że chcesz kontynuować?"
2367
 
2368
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
2369
  msgid "This might take a while and may slow down your site during this action!"
2370
  msgstr "To może zająć chwilęi spowolnić Twoją stronę!"
2371
 
2372
+ #: dashboard/settings/maintenance.php:31
2373
  msgid "Delete stats older than 356 days (Optional)."
2374
  msgstr "Usuń statystyki starsze niż 365 dni (opcjonalnie)."
2375
 
2376
+ #: dashboard/settings/maintenance.php:32
2377
  msgid ""
2378
  "AdRotate creates empty records when you start making ads, groups or "
2379
  "schedules. In rare occasions these records are faulty."
2380
  msgstr ""
2381
 
2382
+ #: dashboard/settings/maintenance.php:32
2383
  msgid ""
2384
  "If you made an ad, group or schedule that does not save when you make it use "
2385
  "this button to delete those empty records."
2386
  msgstr ""
2387
 
2388
+ #: dashboard/settings/maintenance.php:32
2389
  msgid ""
2390
  "Additionally you can clean up old schedules and/or statistics. This will "
2391
  "improve the speed of your site."
2392
  msgstr ""
2393
 
2394
+ #: dashboard/settings/maintenance.php:36
2395
  msgid "Re-evaluate Ads"
2396
  msgstr "Oszacuj ponownie reklamy."
2397
 
2398
+ #: dashboard/settings/maintenance.php:38
2399
  msgid "Re-evaluate all ads"
2400
  msgstr "Oszacuj ponownie wszystkie reklamy."
2401
 
2402
+ #: dashboard/settings/maintenance.php:38
2403
  msgid "You are about to check all ads for errors."
2404
  msgstr "Zamierzasz sprawdzić wszystkie reklamy pod względem błędów."
2405
 
2406
+ #: dashboard/settings/maintenance.php:39
2407
  msgid ""
2408
  "This will apply all evaluation rules to all ads to see if any error slipped "
2409
  "in. Normally you should not need this feature."
2412
  "na wszystkich reklamach oraz przejrze nie wszystkich błędów. Normalnie nie "
2413
  "potrzebujesz wykorzystywać tej funkcji."
2414
 
2415
+ #: dashboard/settings/maintenance.php:43
2416
  msgid ""
2417
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2418
  "database. They only apply to your ads/groups and stats. Not to other "
2425
  "is not a valid point in any case."
2426
  msgstr ""
2427
 
2428
+ #: dashboard/settings/maintenance.php:45
2429
  msgid "Troubleshooting"
2430
  msgstr "Masz problem"
2431
 
2432
+ #: dashboard/settings/maintenance.php:46
2433
  msgid ""
2434
  "The below options are not meant for normal use and are only there for "
2435
  "developers to review saved settings or how ads are selected. These can be "
2437
  "SHOULD BE LEFT UNCHECKED!!"
2438
  msgstr ""
2439
 
2440
+ #: dashboard/settings/maintenance.php:49
2441
  msgid "Developer Debug"
2442
  msgstr "Debuger dewelopera"
2443
 
2444
+ #: dashboard/settings/maintenance.php:51
2445
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2446
  msgstr ""
2447
 
2448
+ #: dashboard/settings/maintenance.php:52
2449
  msgid "View advert specs and (some) stats in the dashboard."
2450
  msgstr ""
2451
 
2452
+ #: dashboard/settings/maintenance.php:53
2453
  msgid ""
2454
  "Disable timers for clicks and impressions and enable a alert window for "
2455
  "clicktracking."
2457
  "Wyłącz liczniki dla kliknięc i wyświetleń i włącz okno alarmowe dla "
2458
  "śledzenia kliknięć."
2459
 
2460
+ #: dashboard/settings/maintenance.php:54
2461
  msgid "Temporarily disable encryption on the redirect url."
2462
  msgstr "Tymczasowo wyłącz szyfrowanie na przekierowanym adresie URL."
2463
 
2464
+ #: dashboard/settings/maintenance.php:59
2465
  msgid "Status and Versions"
2466
  msgstr ""
2467
 
 
 
 
 
 
 
 
 
2468
  #: dashboard/settings/maintenance.php:62
 
 
 
 
 
 
 
 
2469
  msgid "Current status of adverts"
2470
  msgstr "Bieżący status reklam"
2471
 
2472
+ #: dashboard/settings/maintenance.php:63
2473
  msgid "Normal"
2474
  msgstr "Normalny"
2475
 
2476
+ #: dashboard/settings/maintenance.php:63
2477
  msgid "Error"
2478
  msgstr "Błąd"
2479
 
2480
+ #: dashboard/settings/maintenance.php:63
2481
  msgid "Expired"
2482
  msgstr "Wygasa"
2483
 
2484
+ #: dashboard/settings/maintenance.php:63
2485
  msgid "Expires Soon"
2486
  msgstr "Wygas wkrótce"
2487
 
2488
+ #: dashboard/settings/maintenance.php:63
2489
  msgid "Unknown"
2490
  msgstr ""
2491
 
2492
+ #: dashboard/settings/maintenance.php:66
2493
  msgid "Banners/assets Folder"
2494
  msgstr ""
2495
 
2496
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2497
  msgid "Exists and appears writable"
2498
  msgstr ""
2499
 
2500
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2501
  msgid "Not writable or does not exist"
2502
  msgstr ""
2503
 
2504
+ #: dashboard/settings/maintenance.php:70
2505
+ msgid "Reports Folder"
2506
+ msgstr ""
2507
+
2508
  #: dashboard/settings/maintenance.php:76
2509
+ msgid "Advert evaluation"
2510
+ msgstr ""
2511
+
2512
+ #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2513
+ msgid "Not scheduled! Re-activate the plugin from the plugins page."
2514
+ msgstr ""
2515
+
2516
+ #: dashboard/settings/maintenance.php:78
2517
+ msgid "Trackerdata cleanup"
2518
+ msgstr ""
2519
+
2520
+ #: dashboard/settings/maintenance.php:83
2521
+ msgid "Internal Versions"
2522
+ msgstr ""
2523
+
2524
+ #: dashboard/settings/maintenance.php:84
2525
+ msgid ""
2526
+ "Unless you experience database issues or a warning shows below, these "
2527
+ "numbers are not really relevant for troubleshooting. Support may ask for "
2528
+ "them to verify your database status."
2529
+ msgstr ""
2530
 
2531
+ #: dashboard/settings/maintenance.php:87
2532
+ msgid "AdRotate version"
2533
+ msgstr ""
2534
 
2535
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2536
+ msgid "Current:"
2537
+ msgstr ""
2538
 
2539
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2540
+ msgid "Should be:"
2541
+ msgstr ""
2542
+
2543
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2544
+ msgid "Previous:"
2545
+ msgstr ""
2546
+
2547
+ #: dashboard/settings/maintenance.php:89
2548
+ msgid "Database version"
2549
+ msgstr ""
2550
+
2551
+ #: dashboard/settings/misc.php:16
2552
  msgid "Miscellaneous"
2553
  msgstr "Różne"
2554
 
2555
+ #: dashboard/settings/misc.php:19
2556
  msgid "Widget alignment"
2557
  msgstr "Wyrównanie widżetu"
2558
 
2559
+ #: dashboard/settings/misc.php:20
2560
  msgid ""
2561
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2562
  "not always help!)"
2564
  "Zaznacz jeśli Twój widżet nie mieści się w pasku bocznym. (Nie zawsze "
2565
  "pomaga!)"
2566
 
2567
+ #: dashboard/settings/misc.php:23
2568
  msgid "Widget padding"
2569
  msgstr "Pusta przestrzeń Widżetu"
2570
 
2571
+ #: dashboard/settings/misc.php:24
2572
  msgid ""
2573
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2574
  "not always work!)"
2576
  "Włacz to by usunąć pustą powierzchnię wokół reklam w widżecie. (Nie zawsze "
2577
  "działa)"
2578
 
2579
+ #: dashboard/settings/misc.php:28
2580
  #, fuzzy
2581
  msgid "NOTICE:"
2582
  msgstr ""
2586
  "zawsze kopie zapasową ! Ta funkcje powinny być używane w przypadku gdy "
2587
  "odczuwasz spowolnienie, zacięcia i nieprawidłowe działanie bazy danych."
2588
 
2589
+ #: dashboard/settings/misc.php:29
2590
  msgid ""
2591
  "You have enabled W3 Total Caching support but not defined the security hash."
2592
  msgstr ""
2593
 
2594
+ #: dashboard/settings/misc.php:29
2595
  msgid ""
2596
  "AdRotate has generated the following line for you to add to your wp-config."
2597
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2598
  "add this line, check out the following guide;"
2599
  msgstr ""
2600
 
2601
+ #: dashboard/settings/misc.php:29
2602
  msgid "Set up W3 Total Caching"
2603
  msgstr ""
2604
 
2605
+ #: dashboard/settings/misc.php:33
2606
  msgid "W3 Total Caching"
2607
  msgstr "W3 Total Caching"
2608
 
2609
+ #: dashboard/settings/misc.php:34
2610
  msgid "Check this box if you use W3 Total Caching on your site."
2611
  msgstr "Zaznacz jeśli używasz W3 Total Caching na swojej stronie."
2612
 
2613
+ #: dashboard/settings/misc.php:38
2614
  msgid ""
2615
  "It may take a while for the ad to start rotating. The caching plugin needs "
2616
  "to refresh the cache. This can take up to a week if not done manually."
2619
  "rotacyjnym. Wtyczką cachująca musi się odświeżyć czasami zajmuje to tydzień "
2620
  "jeśli nie wykonasz tego ręcznie."
2621
 
2622
+ #: dashboard/settings/misc.php:38
2623
  msgid ""
2624
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2625
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2628
  "AdRotate. Jeśli używasz kodu PHP musisz sam wprowadzić poprwany kod do "
2629
  "strony."
2630
 
2631
+ #: dashboard/settings/notifications.php:18
2632
  msgid "Notifications"
2633
  msgstr "Powiadomienie"
2634
 
2635
+ #: dashboard/settings/notifications.php:19
2636
  msgid "Set up who gets notifications if ads need your attention."
2637
  msgstr "Ustal kto dostaje powiadomienia gdy reklamy wymagają interwencji."
2638
 
2639
+ #: dashboard/settings/notifications.php:22
2640
  msgid "How to notify"
2641
  msgstr ""
2642
 
2643
+ #: dashboard/settings/notifications.php:24
2644
  msgid "Dashboard banner."
2645
  msgstr ""
2646
 
2647
+ #: dashboard/settings/notifications.php:25
2648
  msgid "Email message."
2649
  msgstr "Wiadomość email."
2650
 
2651
+ #: dashboard/settings/notifications.php:26
2652
  msgid "Push notifications to your smartphone."
2653
  msgstr "Wyślij powiadomienia na swój telefon."
2654
 
2655
+ #: dashboard/settings/notifications.php:27
2656
  msgid ""
2657
  "Push notifications are delivered through Pushover, a notification service "
2658
  "for Android and iOS"
2660
  "Powiadomienia mogą być dostarczane poprzez oprogramowanie Pushover, program "
2661
  "powidamiajacy dla Androida i iOS"
2662
 
2663
+ #: dashboard/settings/notifications.php:27
2664
  msgid ""
2665
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2666
  "information can be found on the pushover website;"
2669
  "dla Android jak i iOS. Więcej informacji znajdziesz na stronie interntowej "
2670
  "aplikacji Pushover"
2671
 
2672
+ #: dashboard/settings/notifications.php:31
2673
  msgid "Test notification"
2674
  msgstr ""
2675
 
2676
+ #: dashboard/settings/notifications.php:33
2677
  msgid "Test"
2678
  msgstr ""
2679
 
2680
+ #: dashboard/settings/notifications.php:33
2681
  msgid ""
2682
  "Send a test notification to enabled methods. Before you test, save the "
2683
  "options first!"
2684
  msgstr ""
2685
 
2686
+ #: dashboard/settings/notifications.php:38
2687
+ msgid "Dashboard Banner"
2688
  msgstr ""
2689
 
2690
+ #: dashboard/settings/notifications.php:39
2691
  msgid ""
2692
  "These go in a dashboard banner visible to all users with access to AdRotate "
2693
  "on every WordPress dashboard page."
2694
  msgstr ""
2695
 
2696
+ #: dashboard/settings/notifications.php:42
2697
+ #: dashboard/settings/notifications.php:54
2698
+ #: dashboard/settings/notifications.php:84
2699
  msgid "What"
2700
  msgstr ""
2701
 
2702
+ #: dashboard/settings/notifications.php:44
2703
  msgid "Expired adverts."
2704
  msgstr ""
2705
 
2706
+ #: dashboard/settings/notifications.php:45
2707
  msgid "Almost expired adverts."
2708
  msgstr ""
2709
 
2710
+ #: dashboard/settings/notifications.php:50
2711
+ msgid "Email Message"
2712
  msgstr ""
2713
 
 
 
 
 
 
 
 
 
2714
  #: dashboard/settings/notifications.php:51
2715
  msgid ""
2716
+ "Receive email notifications about what is happening with your AdRotate setup."
 
2717
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
2718
 
2719
  #: dashboard/settings/notifications.php:56
2720
+ #: dashboard/settings/notifications.php:86
2721
+ msgid "Daily digest of any advert status other than normal."
2722
+ msgstr "Dzienne podsumowania reklam inne niż normalne."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2723
 
2724
+ #: dashboard/settings/notifications.php:57
2725
+ #: dashboard/settings/notifications.php:87
2726
  msgid "When you are running out of Geo Targeting Lookups."
2727
  msgstr ""
2728
 
2729
+ #: dashboard/settings/notifications.php:58
2730
+ #: dashboard/settings/notifications.php:88
 
 
 
2731
  msgid "Any advertiser saving an advert in your moderation queue."
2732
  msgstr ""
2733
  "Każdy reklamodawca zapisuje swoje reklamy w Twojej kolejce moderacyjnej."
2734
 
2735
+ #: dashboard/settings/notifications.php:59
2736
+ #: dashboard/settings/notifications.php:89
2737
  msgid "A moderator approved an advert from the moderation queue."
2738
  msgstr ""
2739
  "Moderator zatwierdza reklamy umieszczone wcześniej w kolejce moderacyjnej."
2740
 
2741
+ #: dashboard/settings/notifications.php:60
2742
+ #: dashboard/settings/notifications.php:90
2743
  msgid "A moderator rejected an advert from the moderation queue."
2744
  msgstr "Moderator wyrzuca reklamuy z kolejki moderacyjnej."
2745
 
2746
+ #: dashboard/settings/notifications.php:60
2747
+ #: dashboard/settings/notifications.php:90
2748
  msgid ""
2749
  "If you have a lot of activity with many advertisers adding/changing adverts "
2750
  "you may get a lot of messages!"
2752
  "Jeśli odnotowujesz dużą aktwywność reklamodawców dodających i zmieniających "
2753
  "reklamy możesz otrzymywać duża ilość wiadomości!"
2754
 
2755
+ #: dashboard/settings/notifications.php:60
2756
+ msgid ""
2757
+ "Sending out a lot of email is sometimes seen as automated mailing and deemed "
2758
+ "spammy. This may result in automated filters such as those used in services "
2759
+ "like Google Gmail and Microsoft Hotmail/Outlook.com blocking your server. "
2760
+ "Make sure you whitelist the sending address in your email account once you "
2761
+ "start receiving notifications!"
2762
  msgstr ""
2763
 
2764
+ #: dashboard/settings/notifications.php:65
2765
+ msgid "Publishers"
2766
+ msgstr "Ogłoszeniodawcy"
2767
+
2768
+ #: dashboard/settings/notifications.php:68
2769
+ msgid ""
2770
+ "Messages are sent once every 24 hours. Maximum of 5 addresses. Comma "
2771
+ "separated. This field may not be empty!"
2772
+ msgstr ""
2773
+
2774
+ #: dashboard/settings/notifications.php:72
2775
+ msgid "Advertisers"
2776
+ msgstr "Reklamodawcy"
2777
+
2778
+ #: dashboard/settings/notifications.php:75
2779
+ msgid ""
2780
+ "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2781
+ "This field may not be empty!"
2782
+ msgstr ""
2783
+
2784
+ #: dashboard/settings/notifications.php:80
2785
+ msgid "Push Notifications"
2786
+ msgstr "Powiadomienia typu PUSH"
2787
+
2788
  #: dashboard/settings/notifications.php:81
2789
+ msgid ""
2790
+ "Receive information about what is happening with your AdRotate setup on your "
2791
+ "smartphone via Pushover."
2792
+ msgstr ""
2793
+ "Możesz otrzymywać wiadomości na smartphona o tym co dzieje się z Twoją "
2794
+ "aplikacją AdRotate. Możliwe jest to dzięki aplikacjio Pushover."
2795
+
2796
+ #: dashboard/settings/notifications.php:90
2797
+ msgid ""
2798
+ "Pushover has a monthly limit of 7500 messages, this should be plenty. If you "
2799
+ "run out, you will not receive push notifications until the quota is reset! "
2800
+ "Every message AdRotate sends, regardless of the number of receiving devices, "
2801
+ "counts as one message."
2802
+ msgstr ""
2803
+
2804
+ #: dashboard/settings/notifications.php:95
2805
+ msgid "User Key"
2806
+ msgstr ""
2807
+
2808
+ #: dashboard/settings/notifications.php:97
2809
  msgid "Get your user token"
2810
  msgstr ""
2811
 
2812
+ #: dashboard/settings/notifications.php:97
2813
+ #: dashboard/settings/notifications.php:103
2814
  msgid "here"
2815
  msgstr ""
2816
 
2817
+ #: dashboard/settings/notifications.php:101
2818
  msgid "Api Token"
2819
  msgstr ""
2820
 
2821
+ #: dashboard/settings/notifications.php:103
2822
  msgid "Create your"
2823
  msgstr ""
2824
 
2825
+ #: dashboard/settings/notifications.php:103
2826
  msgid "App"
2827
  msgstr ""
2828
 
2829
+ #: dashboard/settings/notifications.php:103
2830
  msgid "and get your API token"
2831
  msgstr ""
2832
 
2833
+ #: dashboard/settings/roles.php:17
2834
  msgid "Roles"
2835
  msgstr ""
2836
 
2837
+ #: dashboard/settings/roles.php:18
2838
  msgid "Who has access to what?"
2839
  msgstr "Kto ma dostęp i do czego?"
2840
 
2841
+ #: dashboard/settings/roles.php:21
2842
  msgid "Manage/Add/Edit adverts"
2843
  msgstr "Zarządzaj/Dodaj/Edytuj reklamy"
2844
 
2845
+ #: dashboard/settings/roles.php:25
2846
  msgid "Role to see and add/edit ads."
2847
  msgstr "Uprawnienia do oglądania, dodawania i edytowania reklam."
2848
 
2849
+ #: dashboard/settings/roles.php:29
2850
  msgid "Delete/Reset adverts"
2851
  msgstr "Usuń/Resetuj reklamy"
2852
 
2853
+ #: dashboard/settings/roles.php:33
2854
  msgid "Role to delete ads and reset stats."
2855
  msgstr "Uprawnienia do usuwania i resetowania statystyk."
2856
 
2857
+ #: dashboard/settings/roles.php:37
2858
  msgid "Manage/Add/Edit groups"
2859
  msgstr "Zarządzaj/Dodaj/Edytuj grupy"
2860
 
2861
+ #: dashboard/settings/roles.php:41
2862
  msgid "Role to see and add/edit groups."
2863
  msgstr "Uprawnienia do oglądania, dodawania/edytowania grup"
2864
 
2865
+ #: dashboard/settings/roles.php:45
2866
  msgid "Delete groups"
2867
  msgstr "Usuwanie grup"
2868
 
2869
+ #: dashboard/settings/roles.php:49
2870
  msgid "Role to delete groups."
2871
  msgstr "Uprawnienia do usuwania grup"
2872
 
2873
+ #: dashboard/settings/statistics.php:18
2874
  msgid "Track statistics for your adverts."
2875
  msgstr ""
2876
 
2877
+ #: dashboard/settings/statistics.php:21
2878
  msgid "How to track stats"
2879
  msgstr ""
2880
 
2881
+ #: dashboard/settings/statistics.php:30
2882
  msgid "Tracks impressions and clicks internally"
2883
  msgstr ""
2884
 
2885
+ #: dashboard/settings/statistics.php:30 dashboard/settings/statistics.php:32
2886
+ #: dashboard/settings/statistics.php:34
2887
  msgid "manual"
2888
  msgstr ""
2889
 
2890
+ #: dashboard/settings/statistics.php:31
2891
  msgid ""
2892
  "Click and Impression recording, Click and impression limits, impression "
2893
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2894
  "will only track impressions."
2895
  msgstr ""
2896
 
2897
+ #: dashboard/settings/statistics.php:32 dashboard/settings/statistics.php:34
2898
  msgid "In AdRotate Pro!"
2899
  msgstr ""
2900
 
2901
+ #: dashboard/settings/statistics.php:32
2902
  msgid ""
2903
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2904
  "attributes"
2905
  msgstr ""
2906
 
2907
+ #: dashboard/settings/statistics.php:33
2908
  msgid ""
2909
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2910
  "Contents."
2911
  msgstr ""
2912
 
2913
+ #: dashboard/settings/statistics.php:34
2914
  msgid ""
2915
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2916
  "uses onClick() and onload() in adverts"
2917
  msgstr ""
2918
 
2919
+ #: dashboard/settings/statistics.php:35
2920
  msgid ""
2921
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2922
  "Banner."
2923
  msgstr ""
2924
 
2925
+ #: dashboard/settings/statistics.php:41
2926
  msgid "Internal Tracker"
2927
  msgstr ""
2928
 
2929
+ #: dashboard/settings/statistics.php:42
2930
  msgid ""
2931
  "The settings below are for the internal tracker and have no effect when "
2932
  "using Piwik/Google Analytics."
2933
  msgstr ""
2934
 
2935
+ #: dashboard/settings/statistics.php:45
2936
  msgid "Logged in impressions"
2937
  msgstr "Wyświetlenia - Zalogowani"
2938
 
2939
+ #: dashboard/settings/statistics.php:47
2940
  msgid "Track impressions from logged in users."
2941
  msgstr ""
2942
 
2943
+ #: dashboard/settings/statistics.php:51
2944
  msgid "Logged in clicks"
2945
  msgstr "Kliknięcia - Zalogowani"
2946
 
2947
+ #: dashboard/settings/statistics.php:53
2948
  msgid "Track clicks from logged in users."
2949
  msgstr "Śledz kliknięcia - zalogowanych użytkowników."
2950
 
2951
+ #: dashboard/settings/statistics.php:57
2952
  msgid "Impression timer"
2953
  msgstr ""
2954
 
2955
+ #: dashboard/settings/statistics.php:59 dashboard/settings/statistics.php:66
2956
  msgid "Seconds."
2957
  msgstr "Sekundy"
2958
 
2959
+ #: dashboard/settings/statistics.php:60
2960
  #, fuzzy
2961
  msgid "Default: 60."
2962
  msgstr "Domyślny"
2963
 
2964
+ #: dashboard/settings/statistics.php:60
2965
  #, fuzzy
2966
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2967
  msgstr "Ta liczba nie może być pusta, ujemna lub przekraczać 3600(1 godzina)."
2968
 
2969
+ #: dashboard/settings/statistics.php:64
2970
  msgid "Click timer"
2971
  msgstr ""
2972
 
2973
+ #: dashboard/settings/statistics.php:67
2974
  #, fuzzy
2975
  msgid "Default: 86400."
2976
  msgstr "Domyślny"
2977
 
2978
+ #: dashboard/settings/statistics.php:67
2979
  #, fuzzy
2980
  msgid ""
2981
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2982
  msgstr ""
2983
  "Ta liczba nie moze być pusta, ujemna lub przekraczać 86400 (24 godziny)."
2984
 
2985
+ #~ msgid "Enable responsive support for this advert."
2986
+ #~ msgstr "Włącz responsywny wygląd dla tej reklamy."
2987
+
2988
+ #~ msgid "Current version:"
2989
+ #~ msgstr "Bieżąca wersja:"
2990
+
2991
+ #~ msgid "Previous version:"
2992
+ #~ msgstr "Poprzednia wersja:"
2993
+
2994
+ #~ msgid "Current database version:"
2995
+ #~ msgstr "Obecna wersja bazy danych:"
2996
+
2997
+ #~ msgid "Previous database version:"
2998
+ #~ msgstr "Poprzednia wersja bazy danych:"
2999
+
3000
+ #, fuzzy
3001
+ #~ msgid "Ad evaluation next run:"
3002
+ #~ msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
3003
+
3004
+ #~ msgid "Not scheduled!"
3005
+ #~ msgstr "Nie ustalono harmnogramu!"
3006
+
3007
+ #~ msgid "Clean Trackerdata next run:"
3008
+ #~ msgstr "Wyczyść Trackerdata przy ponownym uruchomieniu:"
3009
+
3010
+ #~ msgid "Set up who gets notification emails."
3011
+ #~ msgstr "Ustal kto otrzymuje powiadomienia na email."
3012
+
3013
+ #~ msgid ""
3014
+ #~ "A comma separated list of email addresses. Maximum of 5 addresses. Keep "
3015
+ #~ "this list to a minimum!"
3016
+ #~ msgstr ""
3017
+ #~ "Średnik oddziela kolejne adresy na liście. Możesz podać maksymalnie 5 "
3018
+ #~ "adresów. Postaraj się by ta lista była jak najmniejsza! Gdyż może to "
3019
+ #~ "zbytnio obciążać system."
3020
+
3021
+ #~ msgid ""
3022
+ #~ "Messages are sent once every 24 hours when needed. If this field is empty "
3023
+ #~ "no email notifications will be send."
3024
+ #~ msgstr ""
3025
+ #~ "Wiadomości są wysyłane raz na 24 godziny jeśli jest to faktycznie "
3026
+ #~ "potrzebne. Jeśli pozostawisz te pole puste, żadne wiadomości mailowe nie "
3027
+ #~ "bądą wysyłane."
3028
+
3029
+ #~ msgid ""
3030
+ #~ "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
3031
+ #~ "This field may not be empty!"
3032
+ #~ msgstr ""
3033
+ #~ "Kto otrzymuje maile od reklamodawców. Maksymalnie 2 adresy odzielone "
3034
+ #~ "średnikiem. Te pole nie możę być puste!."
3035
+
3036
  #~ msgid "Get more features with AdRotate Pro"
3037
  #~ msgstr "Więcej ustawień z AdRotate Pro"
3038
 
3060
  #~ msgid "Email Notifications"
3061
  #~ msgstr "Powiadomienie na email"
3062
 
 
 
 
3063
  #~ msgid "active ad(s) expired."
3064
  #~ msgstr "Aktywne reklamy wygasły."
3065
 
3165
  #~ msgid "Barely visible"
3166
  #~ msgstr "Ledwno widoczne"
3167
 
 
 
 
3168
  #~ msgid "Normal coverage"
3169
  #~ msgstr "Normalny zasięg"
3170
 
 
 
 
3171
  #~ msgid "Best visibility"
3172
  #~ msgstr "Najlepsza widoczność"
3173
 
language/adrotate-sr_RS.mo CHANGED
Binary file
language/adrotate-sr_RS.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-30 14:27+0800\n"
6
- "PO-Revision-Date: 2016-05-30 14:27+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"
@@ -16,114 +16,114 @@ msgstr ""
16
  "X-Generator: Poedit 1.8.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: adrotate-functions.php:844
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
- #: adrotate-functions.php:847
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
- #: adrotate-functions.php:896
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
- #: adrotate-functions.php:900
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
- #: adrotate-functions.php:904
36
  msgid "Ad(s) deleted"
37
  msgstr "Izbrisani oglasu"
38
 
39
- #: adrotate-functions.php:908
40
  msgid "Group deleted"
41
  msgstr "Izbrisana grupa"
42
 
43
- #: adrotate-functions.php:912
44
  msgid "Ad(s) statistics reset"
45
  msgstr "Statistički resestovani oglasi"
46
 
47
- #: adrotate-functions.php:916
48
  msgid "Ad(s) renewed"
49
  msgstr "Ponovo obnovljeni oglasi"
50
 
51
- #: adrotate-functions.php:920
52
  msgid "Ad(s) deactivated"
53
  msgstr "Deaktivirani oglasi"
54
 
55
- #: adrotate-functions.php:924
56
  msgid "Ad(s) activated"
57
  msgstr "Aktivirani oglasi"
58
 
59
- #: adrotate-functions.php:928
60
  msgid "Group including it's Ads deleted"
61
  msgstr "Grupa koja podrazumeva obrisane oglase"
62
 
63
- #: adrotate-functions.php:932
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "Izlazne opcije za"
67
 
68
- #: adrotate-functions.php:937
69
  msgid "Settings saved"
70
  msgstr "Postavke sačuvane"
71
 
72
- #: adrotate-functions.php:941
73
  msgid "Database optimized"
74
  msgstr "Baza podataka optimizirana"
75
 
76
- #: adrotate-functions.php:945
77
  msgid "Database repaired"
78
  msgstr "Baza podataka popravljena"
79
 
80
- #: adrotate-functions.php:949
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:953
85
  msgid "Empty database records removed"
86
  msgstr "Prazni zapisi baze podataka uklanjaju"
87
 
88
- #: adrotate-functions.php:958
89
  msgid "Action prohibited"
90
  msgstr "Zabranjeno delo"
91
 
92
- #: adrotate-functions.php:962
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:966
99
  msgid "No data found in selected time period"
100
  msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
101
 
102
- #: adrotate-functions.php:970
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:974
107
  msgid "Form can not be (partially) empty!"
108
  msgstr ""
109
 
110
- #: adrotate-functions.php:978
111
  msgid "No ads found."
112
  msgstr ""
113
 
114
- #: adrotate-functions.php:982
115
  msgid "Unexpected error"
116
  msgstr ""
117
 
118
- #: adrotate-manage-publisher.php:678
119
  msgid "AdRotate Advertiser"
120
  msgstr ""
121
 
122
- #: adrotate-output.php:574
123
  msgid "Oh no! Something went wrong!"
124
  msgstr "O ne! Nešto nije kako treba!"
125
 
126
- #: adrotate-output.php:575
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 +132,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:576
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:577
142
  msgid "Contact support if the issue persists:"
143
  msgstr "Kontaktirajte podršku ako se problem nastavi:"
144
 
145
- #: adrotate-output.php:592
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:594
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:601 adrotate-output.php:603
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:609
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:615
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:620
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:626
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,216 +184,216 @@ 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:626
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:632
192
  msgid "An unknown error occured."
193
  msgstr "Nepoznati error se ukazao."
194
 
195
- #: adrotate-output.php:651 adrotate-output.php:654 adrotate-output.php:658
196
- #: adrotate-output.php:663 adrotate-output.php:666 adrotate-output.php:669
197
  msgid "Check adverts"
198
  msgstr ""
199
 
200
- #: adrotate-output.php:674
201
  msgid ""
202
  "You have enable caching support but W3 Total Cache is not active on your "
203
  "site!"
204
  msgstr ""
205
 
206
- #: adrotate-output.php:677
207
  msgid ""
208
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
209
  "not set."
210
  msgstr ""
211
 
212
- #: adrotate-output.php:682
213
  msgid "Your AdRotate Banner folder is not writable or does not exist."
214
  msgstr ""
215
 
216
- #: adrotate-output.php:722 dashboard/adrotatepro.php:99
217
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
218
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
219
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
220
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
221
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
222
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
223
- #: dashboard/settings/geotargeting.php:25
224
  #, fuzzy
225
  msgid "Buy now"
226
  msgstr "Kupite odmah"
227
 
228
- #: adrotate-output.php:723
229
  msgid ""
230
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
231
  "to the <strong>PRO</strong> version"
232
  msgstr ""
233
 
234
- #: adrotate-output.php:723
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:723
241
  msgid "Thank you for your purchase!"
242
  msgstr ""
243
 
244
- #: adrotate-output.php:784
245
  msgid ""
246
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
247
  "this menu. Check out the"
248
  msgstr ""
249
 
250
- #: adrotate-output.php:784
251
  msgid "manuals"
252
  msgstr "priručnici"
253
 
254
- #: adrotate-output.php:784 adrotate-output.php:851
255
  msgid "and"
256
  msgstr ""
257
 
258
- #: adrotate-output.php:784
259
  msgid "forums"
260
  msgstr ""
261
 
262
- #: adrotate-output.php:814
263
  #, fuzzy
264
  msgid "Useful Links"
265
  msgstr "Korisni linkovi"
266
 
267
- #: adrotate-output.php:815
268
  msgid "Useful links to learn more about AdRotate"
269
  msgstr ""
270
 
271
- #: adrotate-output.php:817
272
  msgid "AdRotate website"
273
  msgstr ""
274
 
275
- #: adrotate-output.php:818
276
  #, fuzzy
277
  msgid "Getting Started With AdRotate"
278
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
279
 
280
- #: adrotate-output.php:819
281
  #, fuzzy
282
  msgid "AdRotate manuals"
283
  msgstr "AdRotate informacije"
284
 
285
- #: adrotate-output.php:820
286
  #, fuzzy
287
  msgid "AdRotate Support Forum"
288
  msgstr "AdRotate prodavnica"
289
 
290
- #: adrotate-output.php:843
291
  #, fuzzy
292
  msgid "Help AdRotate Grow"
293
  msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
294
 
295
- #: adrotate-output.php:844
296
  msgid "Follow Arnan on Facebook"
297
  msgstr ""
298
 
299
- #: adrotate-output.php:851
300
  msgid ""
301
  "A lot of users only think to review AdRotate when something goes wrong while "
302
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
303
  msgstr ""
304
 
305
- #: adrotate-output.php:851
306
  msgid "If you find AdRotate useful please leave your honest"
307
  msgstr ""
308
 
309
- #: adrotate-output.php:851
310
  msgid "rating"
311
  msgstr ""
312
 
313
- #: adrotate-output.php:851
314
  #, fuzzy
315
  msgid "review"
316
  msgstr "Dajte ocenu i komentar"
317
 
318
- #: adrotate-output.php:851
319
  msgid "on WordPress.org to help AdRotate grow in a positive way"
320
  msgstr ""
321
 
322
- #: adrotate-output.php:884 dashboard/settings/notifications.php:44
323
- #: dashboard/settings/notifications.php:64
324
  msgid "Available in AdRotate Pro"
325
  msgstr "Dostupno u AdRotate Pro"
326
 
327
- #: adrotate-output.php:884
328
  #, fuzzy
329
  msgid "More information..."
330
  msgstr "Saznajte više"
331
 
332
- #: adrotate-output.php:885
333
  msgid "This feature is available in AdRotate Pro"
334
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
335
 
336
- #: adrotate-output.php:885
337
  msgid "Learn more"
338
  msgstr "Saznajte više"
339
 
340
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
341
- #: dashboard/publisher/adverts-edit.php:241
342
  msgid "January"
343
  msgstr "Januar"
344
 
345
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
346
- #: dashboard/publisher/adverts-edit.php:242
347
  msgid "February"
348
  msgstr "Februar"
349
 
350
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
351
- #: dashboard/publisher/adverts-edit.php:243
352
  msgid "March"
353
  msgstr "Mart"
354
 
355
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
356
- #: dashboard/publisher/adverts-edit.php:244
357
  msgid "April"
358
  msgstr "April"
359
 
360
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
361
- #: dashboard/publisher/adverts-edit.php:245
362
  msgid "May"
363
  msgstr "Maj"
364
 
365
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
366
- #: dashboard/publisher/adverts-edit.php:246
367
  msgid "June"
368
  msgstr "Jun"
369
 
370
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
371
- #: dashboard/publisher/adverts-edit.php:247
372
  msgid "July"
373
  msgstr "Jul"
374
 
375
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
376
- #: dashboard/publisher/adverts-edit.php:248
377
  msgid "August"
378
  msgstr "Avgust"
379
 
380
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
381
- #: dashboard/publisher/adverts-edit.php:249
382
  msgid "September"
383
  msgstr "Septembar"
384
 
385
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
386
- #: dashboard/publisher/adverts-edit.php:250
387
  msgid "October"
388
  msgstr "Oktobar"
389
 
390
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
391
- #: dashboard/publisher/adverts-edit.php:251
392
  msgid "November"
393
  msgstr "Novembar"
394
 
395
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
396
- #: dashboard/publisher/adverts-edit.php:252
397
  msgid "December"
398
  msgstr "Decembar"
399
 
@@ -455,279 +455,274 @@ msgstr "ID:"
455
  msgid "Fill in the ID of the type you want to display!"
456
  msgstr "Popunite ID tipa koji želite da prikažete!"
457
 
458
- #: adrotate.php:105
459
  msgid "General Info"
460
  msgstr "Opšte informacije"
461
 
462
- #: adrotate.php:106
463
  msgid "AdRotate Pro"
464
  msgstr "AdRotate Pro"
465
 
466
- #: adrotate.php:107
467
  msgid "Manage Adverts"
468
  msgstr ""
469
 
470
- #: adrotate.php:108 dashboard/publisher/groups-main.php:12
471
  msgid "Manage Groups"
472
  msgstr "Upravljajte grupama"
473
 
474
- #: adrotate.php:109 adrotate.php:387
475
  #, fuzzy
476
  msgid "Manage Schedules"
477
  msgstr "Upravljati"
478
 
479
- #: adrotate.php:110
480
  #, fuzzy
481
  msgid "Manage Media"
482
  msgstr "Media:"
483
 
484
- #: adrotate.php:111
485
  msgid "Settings"
486
  msgstr "Postavke"
487
 
488
- #: adrotate.php:134
489
  msgid "AdRotate Info"
490
  msgstr "AdRotate informacije"
491
 
492
- #: adrotate.php:155
493
  #, fuzzy
494
  msgid "AdRotate Professional"
495
  msgstr "AdRotate promocije"
496
 
497
- #: adrotate.php:198
498
  msgid "Advert Management"
499
  msgstr ""
500
 
501
- #: adrotate.php:256 adrotate.php:326 adrotate.php:382
502
  msgid "Manage"
503
  msgstr "Upravljati"
504
 
505
- #: adrotate.php:257 adrotate.php:327 adrotate.php:383
506
  msgid "Add New"
507
  msgstr "Dodati novi"
508
 
509
- #: adrotate.php:320
510
  msgid "Group Management"
511
  msgstr "Menadžment grupe"
512
 
513
- #: adrotate.php:329
514
  msgid "Report"
515
  msgstr "Izveštaj"
516
 
517
- #: adrotate.php:378
518
  #, fuzzy
519
  msgid "Schedule Management available in AdRotate Pro"
520
  msgstr "Dostupno u AdRotate Pro"
521
 
522
- #: adrotate.php:388
523
  #, fuzzy
524
  msgid ""
525
  "Schedule management and multiple schedules per advert is available in "
526
  "AdRotate Pro."
527
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
528
 
529
- #: adrotate.php:388 adrotate.php:475 dashboard/publisher/adverts-edit.php:188
530
  #: dashboard/publisher/adverts-main.php:114
531
- #: dashboard/publisher/groups-edit.php:75
532
  #: dashboard/publisher/groups-main.php:89
533
  #, fuzzy
534
  msgid "More information"
535
  msgstr "Saznajte više"
536
 
537
- #: adrotate.php:395 dashboard/publisher/adverts-disabled.php:20
538
  #: dashboard/publisher/adverts-error.php:19
539
  #: dashboard/publisher/adverts-main.php:20
540
  #: dashboard/publisher/groups-main.php:20
541
  msgid "Bulk Actions"
542
  msgstr "Delo bulk-ovanja"
543
 
544
- #: adrotate.php:396 dashboard/publisher/adverts-disabled.php:25
545
  #: dashboard/publisher/adverts-error.php:29
546
  #: dashboard/publisher/adverts-main.php:30
547
  #: dashboard/publisher/groups-main.php:24
548
  msgid "Go"
549
  msgstr "Kreni"
550
 
551
- #: adrotate.php:405 dashboard/publisher/adverts-disabled.php:35
552
  #: dashboard/publisher/adverts-error.php:39
553
  #: dashboard/publisher/adverts-main.php:39
554
- #: dashboard/publisher/groups-edit.php:51
555
  #: dashboard/publisher/groups-main.php:32
556
  msgid "ID"
557
  msgstr "ID"
558
 
559
- #: adrotate.php:406
560
  #, fuzzy
561
  msgid "Start"
562
  msgstr "Početno vreme (hh:mm):"
563
 
564
- #: adrotate.php:406
565
  #, fuzzy
566
  msgid "End"
567
  msgstr "Završno vreme (hh:mm):"
568
 
569
- #: adrotate.php:407
570
  msgid "Ads"
571
  msgstr "Oglasi"
572
 
573
- #: adrotate.php:409
574
  #, fuzzy
575
  msgid "Max Impressions"
576
  msgstr "Utisci"
577
 
578
- #: adrotate.php:410
579
  #, fuzzy
580
  msgid "Max Clicks"
581
  msgstr "Klikovi"
582
 
583
- #: adrotate.php:440
584
  #, fuzzy
585
  msgid "No schedules created yet!"
586
  msgstr "Nijedan blok nije stvoren još uvek!"
587
 
588
- #: adrotate.php:445
589
  #, fuzzy
590
  msgid "Easily manage your schedules from here with AdRotate Pro."
591
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
592
 
593
- #: adrotate.php:445 adrotate.php:511
594
  #, fuzzy
595
  msgid "Upgrade today!"
596
  msgstr "Danas"
597
 
598
- #: adrotate.php:448 dashboard/publisher/adverts-error.php:72
599
- #: dashboard/publisher/groups-edit.php:387
600
  msgid "Expires soon."
601
  msgstr "Ističe uskoro."
602
 
603
- #: adrotate.php:449 dashboard/publisher/adverts-error.php:73
604
- #: dashboard/publisher/groups-edit.php:388
605
  msgid "Has expired."
606
  msgstr "Isteklo je."
607
 
608
- #: adrotate.php:473
609
  #, fuzzy
610
  msgid "Media Management available in AdRotate Pro"
611
  msgstr "Dostupno u AdRotate Pro"
612
 
613
- #: adrotate.php:475
614
  msgid "Upload images to the AdRotate Pro banners folder from here."
615
  msgstr ""
616
 
617
- #: adrotate.php:475
618
  msgid ""
619
  "This is useful if you use responsive adverts with multiple images or have "
620
  "HTML5 adverts containing multiple files."
621
  msgstr ""
622
 
623
- #: adrotate.php:475
624
  #, fuzzy
625
  msgid "Media uploading and management is available in AdRotate Pro."
626
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
627
 
628
- #: adrotate.php:477
629
  msgid "Upload new file"
630
  msgstr ""
631
 
632
- #: adrotate.php:478
633
  msgid "Accepted files:"
634
  msgstr ""
635
 
636
- #: adrotate.php:478
637
  msgid "For HTML5 ads you can also upload html and javascript files."
638
  msgstr ""
639
 
640
- #: adrotate.php:478
641
  msgid "Maximum size is 512Kb."
642
  msgstr ""
643
 
644
- #: adrotate.php:478
645
  msgid "Important:"
646
  msgstr ""
647
 
648
- #: adrotate.php:478
649
  msgid ""
650
  "Make sure your file has no spaces or special characters in the name. Replace "
651
  "spaces with a - or _."
652
  msgstr ""
653
 
654
- #: adrotate.php:478
655
  msgid ""
656
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
657
  "file so it knows about the changed name. For example for the javascript file."
658
  msgstr ""
659
 
660
- #: adrotate.php:481
661
  msgid ""
662
  "For responsive adverts make sure the filename is in the following format; "
663
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
664
  msgstr ""
665
 
666
- #: adrotate.php:482 dashboard/publisher/adverts-edit.php:311
667
  msgid ""
668
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
669
  "filename instead of \".full\" for the various viewports."
670
  msgstr ""
671
 
672
- #: adrotate.php:483 dashboard/publisher/groups-edit.php:312
673
- #: dashboard/publisher/groups-edit.php:320
674
  msgid "Example:"
675
  msgstr "Primer"
676
 
677
- #: adrotate.php:483
678
  msgid ""
679
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
680
  "for different viewports."
681
  msgstr ""
682
 
683
- #: adrotate.php:487
684
  msgid "Upload file"
685
  msgstr ""
686
 
687
- #: adrotate.php:487
688
  msgid "Click only once per file!"
689
  msgstr ""
690
 
691
- #: adrotate.php:490
692
  msgid "Available files in"
693
  msgstr ""
694
 
695
- #: adrotate.php:495 dashboard/publisher/groups-edit.php:55
696
  #: dashboard/publisher/groups-main.php:33
697
  msgid "Name"
698
  msgstr "Ime"
699
 
700
- #: adrotate.php:496
701
  #, fuzzy
702
  msgid "Actions"
703
  msgstr "Delo bulk-ovanja"
704
 
705
- #: adrotate.php:501 adrotate.php:502 adrotate.php:503 adrotate.php:504
706
- #: adrotate.php:505 adrotate.php:506 adrotate.php:507
707
  #: dashboard/publisher/adverts-disabled.php:22
708
  #: dashboard/publisher/adverts-error.php:21
709
  #: dashboard/publisher/adverts-main.php:22
710
  msgid "Delete"
711
  msgstr "Obrisati"
712
 
713
- #: adrotate.php:511
714
  msgid ""
715
  "Make sure the banner images are not in use by adverts when you delete them!"
716
  msgstr ""
717
 
718
- #: adrotate.php:511
719
  #, fuzzy
720
  msgid "Manage your banner folder from here with AdRotate Pro."
721
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
722
 
723
- #: adrotate.php:540
724
  msgid "AdRotate Settings"
725
  msgstr "AdRotate postavke"
726
 
727
- #: adrotate.php:612
728
- msgid "Update Options"
729
- msgstr "Update opcije"
730
-
731
  #: dashboard/adrotatepro.php:20
732
  #, fuzzy
733
  msgid "Satisfy your advertisers"
@@ -921,7 +916,7 @@ msgstr "Vaš pristup"
921
  msgid "Adverts that need you"
922
  msgstr "Oglasi koji su vam potrebni"
923
 
924
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
925
  #: dashboard/publisher/groups-main.php:34
926
  msgid "Adverts"
927
  msgstr "Oglasi"
@@ -964,7 +959,7 @@ msgid "Disabled Adverts"
964
  msgstr ""
965
 
966
  #: dashboard/publisher/adverts-disabled.php:21
967
- #: dashboard/publisher/adverts-edit.php:176
968
  msgid "Activate"
969
  msgstr "Aktiviraj"
970
 
@@ -985,7 +980,7 @@ msgstr ""
985
  "2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
986
 
987
  #: dashboard/publisher/adverts-disabled.php:37
988
- #: dashboard/publisher/adverts-edit.php:116
989
  #: dashboard/publisher/adverts-error.php:41
990
  #: dashboard/publisher/adverts-main.php:41
991
  msgid "Title"
@@ -993,7 +988,7 @@ msgstr "Naslov"
993
 
994
  #: dashboard/publisher/adverts-disabled.php:38
995
  #: dashboard/publisher/adverts-main.php:44
996
- #: dashboard/publisher/groups-edit.php:333
997
  #: dashboard/publisher/groups-main.php:36
998
  #, fuzzy
999
  msgid "Shown"
@@ -1003,7 +998,7 @@ msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
1003
  #: dashboard/publisher/adverts-main.php:46
1004
  #: dashboard/publisher/adverts-report.php:36
1005
  #: dashboard/publisher/adverts-report.php:57
1006
- #: dashboard/publisher/groups-edit.php:334
1007
  #: dashboard/publisher/groups-main.php:38
1008
  #: dashboard/publisher/groups-report.php:37
1009
  #: dashboard/publisher/groups-report.php:58
@@ -1045,34 +1040,28 @@ msgid "The AdCode cannot be empty!"
1045
  msgstr "AdCode ne može biti prazan !"
1046
 
1047
  #: dashboard/publisher/adverts-edit.php:51
1048
- msgid "You did not use %image% in your AdCode but did select a file to use!"
 
 
1049
  msgstr ""
1050
 
1051
  #: dashboard/publisher/adverts-edit.php:54
1052
- msgid "You did use %image% in your AdCode but did not select a file to use!"
1053
- msgstr ""
1054
-
1055
- #: dashboard/publisher/adverts-edit.php:57
1056
  msgid ""
1057
- "You did not use %image% in your AdCode. The responsive checkbox will be "
1058
- "ineffective."
1059
  msgstr ""
1060
 
1061
- #: dashboard/publisher/adverts-edit.php:60
1062
  msgid ""
1063
  "There is a problem saving the image. Please reset your image and re-save the "
1064
  "ad!"
1065
  msgstr ""
1066
 
1067
- #: dashboard/publisher/adverts-edit.php:63
1068
- msgid "Responsive is enabled but your banner image has the wrong name."
1069
- msgstr ""
1070
-
1071
- #: dashboard/publisher/adverts-edit.php:66
1072
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1073
  msgstr ""
1074
 
1075
- #: dashboard/publisher/adverts-edit.php:71
1076
  msgid ""
1077
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1078
  "the ad!"
@@ -1080,81 +1069,81 @@ msgstr ""
1080
  "AdRotate ne može da pronađe grešku , alioglas obeležen pogrešno , pokušajte "
1081
  "ponovo čuvanja oglas !"
1082
 
1083
- #: dashboard/publisher/adverts-edit.php:74
1084
  msgid "This ad is expired and currently not shown on your website!"
1085
  msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
1086
 
1087
- #: dashboard/publisher/adverts-edit.php:77
1088
  msgid "The ad will expire in less than 2 days!"
1089
  msgstr "Oglas ističe za manje od 2 dana !"
1090
 
1091
- #: dashboard/publisher/adverts-edit.php:80
1092
  msgid "This ad will expire in less than 7 days!"
1093
  msgstr "Ovaj oglas će isteći za manje od 7 dana !"
1094
 
1095
- #: dashboard/publisher/adverts-edit.php:83
1096
  msgid "This ad has been disabled and does not rotate on your site!"
1097
  msgstr "Ovaj oglas je onemogućen i ne rotira na vašem sajtu !"
1098
 
1099
- #: dashboard/publisher/adverts-edit.php:108
1100
  #, fuzzy
1101
  msgid "New Advert"
1102
  msgstr ""
1103
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1104
  "Default: 6."
1105
 
1106
- #: dashboard/publisher/adverts-edit.php:110
1107
  #, fuzzy
1108
  msgid "Edit Advert"
1109
  msgstr "Edituj"
1110
 
1111
- #: dashboard/publisher/adverts-edit.php:122
1112
  msgid "AdCode"
1113
  msgstr ""
1114
 
1115
- #: dashboard/publisher/adverts-edit.php:127
1116
  msgid "Basic Examples:"
1117
  msgstr "Osnovni Primeri :"
1118
 
1119
- #: dashboard/publisher/adverts-edit.php:134
1120
  msgid "Useful tags"
1121
  msgstr ""
1122
 
1123
- #: dashboard/publisher/adverts-edit.php:136
1124
  msgid "Insert the advert ID Number."
1125
  msgstr ""
1126
 
1127
- #: dashboard/publisher/adverts-edit.php:136
1128
- msgid "Required when selecting a image below."
1129
  msgstr ""
1130
 
1131
- #: dashboard/publisher/adverts-edit.php:136
1132
  msgid "Insert the advert name."
1133
  msgstr ""
1134
 
1135
- #: dashboard/publisher/adverts-edit.php:136
1136
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1137
  msgstr ""
1138
 
1139
- #: dashboard/publisher/adverts-edit.php:136
1140
  msgid "Add inside the <a> tag to open advert in a new window."
1141
  msgstr ""
1142
 
1143
- #: dashboard/publisher/adverts-edit.php:136
1144
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1145
  msgstr ""
1146
 
1147
- #: dashboard/publisher/adverts-edit.php:136
1148
  msgid ""
1149
  "Place the cursor in your AdCode where you want to add any of these tags and "
1150
  "click to add it."
1151
  msgstr ""
1152
 
1153
- #: dashboard/publisher/adverts-edit.php:141
1154
  msgid "Preview"
1155
  msgstr "Pregled"
1156
 
1157
- #: dashboard/publisher/adverts-edit.php:144
1158
  msgid ""
1159
  "Note: While this preview is an accurate one, it might look different then it "
1160
  "does on the website."
@@ -1162,41 +1151,41 @@ msgstr ""
1162
  "Napomena : Iako je ovaj pregled jejedan tačan , to bi moglo da izgleda "
1163
  "drugačije onda to čini na sajtu ."
1164
 
1165
- #: dashboard/publisher/adverts-edit.php:145
1166
  msgid ""
1167
  "This is because of CSS differences. Your themes CSS file is not active here!"
1168
  msgstr "To je zbog CSS razlika . Vaš teme CSS fajl nije aktivan ovde !"
1169
 
1170
- #: dashboard/publisher/adverts-edit.php:150
1171
  msgid "Banner asset"
1172
  msgstr ""
1173
 
1174
- #: dashboard/publisher/adverts-edit.php:153
1175
  msgid "WordPress media:"
1176
  msgstr ""
1177
 
1178
- #: dashboard/publisher/adverts-edit.php:153
1179
  #, fuzzy
1180
  msgid "Select Banner"
1181
  msgstr "Baner Folder"
1182
 
1183
- #: dashboard/publisher/adverts-edit.php:155
1184
  msgid "- OR -"
1185
  msgstr "- ILI -"
1186
 
1187
- #: dashboard/publisher/adverts-edit.php:157
1188
  msgid "Banner folder:"
1189
  msgstr "Folder banera:"
1190
 
1191
- #: dashboard/publisher/adverts-edit.php:158
1192
  msgid "No image selected"
1193
  msgstr "Nijedna slika nije izabrana"
1194
 
1195
- #: dashboard/publisher/adverts-edit.php:162
1196
- msgid "Use %image% in the adcode instead of the file path."
1197
  msgstr ""
1198
 
1199
- #: dashboard/publisher/adverts-edit.php:162
1200
  msgid ""
1201
  "Use either the text field or the dropdown. If the textfield has content that "
1202
  "field has priority."
@@ -1204,326 +1193,329 @@ msgstr ""
1204
  "Koristite ili polje za tekst ili dropdown. Ako polje teksta ima sadržaj koji "
1205
  "polje ima prioritet ."
1206
 
1207
- #: dashboard/publisher/adverts-edit.php:167
1208
- #: dashboard/settings/statistics.php:12
1209
  msgid "Statistics"
1210
  msgstr "Statistike"
1211
 
1212
- #: dashboard/publisher/adverts-edit.php:169
1213
  msgid "Enable click and impression tracking for this advert."
1214
  msgstr ""
1215
 
1216
- #: dashboard/publisher/adverts-edit.php:170
1217
  msgid ""
1218
  "Note: Clicktracking does not work for Javascript adverts such as those "
1219
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1220
  "always supported."
1221
  msgstr ""
1222
 
1223
- #: dashboard/publisher/adverts-edit.php:180
1224
  msgid "Yes, this ad will be used"
1225
  msgstr "Da , ovaj oglas će se koristiti"
1226
 
1227
- #: dashboard/publisher/adverts-edit.php:181
1228
  msgid "No, do not show this ad anywhere"
1229
  msgstr "Ne , ne pokazuju nigde ovaj oglas"
1230
 
1231
- #: dashboard/publisher/adverts-edit.php:188
1232
  #: dashboard/publisher/adverts-main.php:114
1233
- #: dashboard/publisher/groups-edit.php:75
1234
  #: dashboard/publisher/groups-main.php:89
1235
  #, fuzzy
1236
  msgid "Get more features with AdRotate Pro."
1237
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
1238
 
1239
- #: dashboard/publisher/adverts-edit.php:191
1240
- #: dashboard/publisher/adverts-edit.php:291
1241
- #: dashboard/publisher/adverts-edit.php:386
1242
- #: dashboard/publisher/adverts-edit.php:427
1243
  msgid "Save Advert"
1244
  msgstr "Sačuvaj oglas"
1245
 
1246
- #: dashboard/publisher/adverts-edit.php:192
1247
- #: dashboard/publisher/adverts-edit.php:292
1248
- #: dashboard/publisher/adverts-edit.php:387
1249
- #: dashboard/publisher/adverts-edit.php:428
1250
- #: dashboard/publisher/groups-edit.php:154
1251
- #: dashboard/publisher/groups-edit.php:301
1252
- #: dashboard/publisher/groups-edit.php:393
1253
  msgid "Cancel"
1254
  msgstr "Ukini"
1255
 
1256
- #: dashboard/publisher/adverts-edit.php:195
1257
- #: dashboard/publisher/adverts-edit.php:369
1258
- #: dashboard/publisher/groups-edit.php:136
1259
- #: dashboard/publisher/groups-edit.php:283
1260
  msgid "Usage"
1261
  msgstr "upotreba"
1262
 
1263
- #: dashboard/publisher/adverts-edit.php:199
1264
- #: dashboard/publisher/adverts-edit.php:373
1265
- #: dashboard/publisher/groups-edit.php:140
1266
- #: dashboard/publisher/groups-edit.php:287
1267
  msgid "Widget"
1268
  msgstr ""
1269
 
1270
- #: dashboard/publisher/adverts-edit.php:200
1271
- #: dashboard/publisher/adverts-edit.php:374
1272
  msgid ""
1273
- "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1274
- "and enter ID"
1275
  msgstr ""
1276
 
1277
- #: dashboard/publisher/adverts-edit.php:203
1278
- #: dashboard/publisher/adverts-edit.php:377
1279
- #: dashboard/publisher/groups-edit.php:144
1280
- #: dashboard/publisher/groups-edit.php:291
1281
  msgid "In a post or page"
1282
  msgstr ""
1283
 
1284
- #: dashboard/publisher/adverts-edit.php:205
1285
- #: dashboard/publisher/adverts-edit.php:379
1286
- #: dashboard/publisher/groups-edit.php:146
1287
- #: dashboard/publisher/groups-edit.php:293
1288
  msgid "Directly in a theme"
1289
  msgstr ""
1290
 
1291
- #: dashboard/publisher/adverts-edit.php:211
1292
  msgid "Schedule your advert"
1293
  msgstr ""
1294
 
1295
- #: dashboard/publisher/adverts-edit.php:215
1296
  msgid "Start date (day/month/year)"
1297
  msgstr ""
1298
 
1299
- #: dashboard/publisher/adverts-edit.php:236
1300
  msgid "End date (day/month/year)"
1301
  msgstr ""
1302
 
1303
- #: dashboard/publisher/adverts-edit.php:259
1304
  msgid "Start time (hh:mm)"
1305
  msgstr ""
1306
 
1307
- #: dashboard/publisher/adverts-edit.php:266
1308
  msgid "End time (hh:mm)"
1309
  msgstr ""
1310
 
1311
- #: dashboard/publisher/adverts-edit.php:276
1312
  msgid "Maximum Clicks"
1313
  msgstr ""
1314
 
1315
- #: dashboard/publisher/adverts-edit.php:277
1316
- #: dashboard/publisher/adverts-edit.php:279
1317
  msgid "Leave empty or 0 to skip this."
1318
  msgstr "Ostavite prazno ili 0 da preskoči ovo."
1319
 
1320
- #: dashboard/publisher/adverts-edit.php:278
1321
  msgid "Maximum Impressions"
1322
  msgstr ""
1323
 
1324
- #: dashboard/publisher/adverts-edit.php:283
1325
  msgid "Important"
1326
  msgstr ""
1327
 
1328
- #: dashboard/publisher/adverts-edit.php:284
1329
  msgid ""
1330
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1331
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1332
  "14:00 hours. 6AM is 6:00 hours."
1333
  msgstr ""
1334
 
1335
- #: dashboard/publisher/adverts-edit.php:288
1336
  msgid ""
1337
  "Create multiple and more advanced schedules for each advert with AdRotate "
1338
  "Pro."
1339
  msgstr ""
1340
 
1341
- #: dashboard/publisher/adverts-edit.php:288
1342
- #: dashboard/publisher/adverts-edit.php:323
1343
- #: dashboard/publisher/adverts-edit.php:367
1344
- #: dashboard/publisher/groups-edit.php:200
1345
  #, fuzzy
1346
  msgid "Upgrade today"
1347
  msgstr "Danas"
1348
 
1349
- #: dashboard/publisher/adverts-edit.php:295
1350
- #: dashboard/publisher/groups-edit.php:157
1351
  msgid "Advanced"
1352
  msgstr ""
1353
 
1354
- #: dashboard/publisher/adverts-edit.php:296
1355
  #, fuzzy
1356
  msgid "Everything below is optional."
1357
  msgstr "Naslov (opcionalno):"
1358
 
1359
- #: dashboard/publisher/adverts-edit.php:300
1360
- msgid "Mobile"
1361
  msgstr ""
1362
 
1363
- #: dashboard/publisher/adverts-edit.php:302
1364
- msgid "Show on;"
1365
- msgstr ""
 
 
1366
 
1367
- #: dashboard/publisher/adverts-edit.php:302
1368
- msgid "Computers"
1369
  msgstr ""
1370
 
1371
- #: dashboard/publisher/adverts-edit.php:302
1372
- msgid "Smartphones"
1373
- msgstr ""
 
1374
 
1375
- #: dashboard/publisher/adverts-edit.php:302
1376
- msgid "Tablets."
1377
  msgstr ""
1378
 
1379
- #: dashboard/publisher/adverts-edit.php:303
1380
- msgid "Also enable mobile support in the group this advert goes in."
 
 
 
 
 
1381
  msgstr ""
1382
 
1383
- #: dashboard/publisher/adverts-edit.php:307
1384
- msgid "Responsive"
1385
  msgstr ""
1386
 
1387
- #: dashboard/publisher/adverts-edit.php:309
1388
- #, fuzzy
1389
- msgid "Enable responsive support for this advert."
1390
- msgstr "Oglasi"
1391
 
1392
- #: dashboard/publisher/adverts-edit.php:310
1393
- msgid ""
1394
- "Upload your images to the banner folder and make sure the filename is in the "
1395
- "following format; \"imagename.full.ext\"."
1396
  msgstr ""
1397
 
1398
- #: dashboard/publisher/adverts-edit.php:312
1399
- #: dashboard/publisher/adverts-report.php:64
1400
- #: dashboard/publisher/groups-report.php:65
1401
- msgid "Note:"
1402
- msgstr "Beleška:"
1403
 
1404
- #: dashboard/publisher/adverts-edit.php:312
1405
  msgid ""
1406
- "This feature will not be developed any further. Consider switching to the "
1407
- "Mobile feature in AdRotate Pro as seen above!"
1408
  msgstr ""
1409
 
1410
- #: dashboard/publisher/adverts-edit.php:316
1411
- #: dashboard/publisher/groups-edit.php:194
1412
  msgid "Sortorder"
1413
  msgstr ""
1414
 
1415
- #: dashboard/publisher/adverts-edit.php:318
1416
- #: dashboard/publisher/groups-edit.php:196
1417
  msgid "For administrative purposes set a sortorder."
1418
  msgstr "Za administrativne svrhe postavili sortorder ."
1419
 
1420
- #: dashboard/publisher/adverts-edit.php:318
1421
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1422
  msgstr "Ostavite prazno ili 0 da preskočite ovo . Će podrazumevano ID oglasa ."
1423
 
1424
- #: dashboard/publisher/adverts-edit.php:323
1425
  msgid ""
1426
  "With AdRotate Pro you can easily select which devices the advert should show "
1427
  "on!"
1428
  msgstr ""
1429
 
1430
- #: dashboard/publisher/adverts-edit.php:325
1431
  msgid "Geo Targeting in AdRotate Pro"
1432
  msgstr ""
1433
 
1434
- #: dashboard/publisher/adverts-edit.php:326
1435
  msgid ""
1436
  "Assign the advert to a group and enable that group to use Geo Targeting."
1437
  msgstr ""
1438
 
1439
- #: dashboard/publisher/adverts-edit.php:330
1440
  msgid "Cities/States"
1441
  msgstr ""
1442
 
1443
- #: dashboard/publisher/adverts-edit.php:333
1444
  msgid ""
1445
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1446
  "states ISO codes are supported)"
1447
  msgstr ""
1448
 
1449
- #: dashboard/publisher/adverts-edit.php:333
1450
  msgid ""
1451
  "AdRotate does not check the validity of names so make sure you spell them "
1452
  "correctly!"
1453
  msgstr ""
1454
 
1455
- #: dashboard/publisher/adverts-edit.php:337
1456
  msgid "Countries"
1457
  msgstr ""
1458
 
1459
- #: dashboard/publisher/adverts-edit.php:362
1460
  #, fuzzy
1461
  msgid "Select the countries you want the adverts to show in."
1462
  msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
1463
 
1464
- #: dashboard/publisher/adverts-edit.php:362
1465
  msgid "Cities take priority and will be filtered first."
1466
  msgstr ""
1467
 
1468
- #: dashboard/publisher/adverts-edit.php:367
1469
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1470
  msgstr ""
1471
 
1472
- #: dashboard/publisher/adverts-edit.php:391
1473
  msgid "Select Groups"
1474
  msgstr "Izbor grupe"
1475
 
1476
- #: dashboard/publisher/adverts-edit.php:396
1477
  #, fuzzy
1478
  msgid "ID - Name"
1479
  msgstr "Ime"
1480
 
1481
- #: dashboard/publisher/adverts-edit.php:406
1482
  #: dashboard/publisher/groups-main.php:60
1483
- #: dashboard/settings/geotargeting.php:36
1484
  #, fuzzy
1485
  msgid "Default"
1486
  msgstr "Default - Prikazati po jedan oglas"
1487
 
1488
- #: dashboard/publisher/adverts-edit.php:407
1489
  #: dashboard/publisher/groups-main.php:61
1490
  #, fuzzy
1491
  msgid "Dynamic"
1492
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
1493
 
1494
- #: dashboard/publisher/adverts-edit.php:407
1495
  #: dashboard/publisher/groups-main.php:61
1496
  #, fuzzy
1497
  msgid "second rotation"
1498
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
1499
 
1500
- #: dashboard/publisher/adverts-edit.php:408
1501
  #: dashboard/publisher/groups-main.php:62
1502
  #, fuzzy
1503
  msgid "Block"
1504
  msgstr "Menadžmet blokiranih"
1505
 
1506
- #: dashboard/publisher/adverts-edit.php:408
1507
  #: dashboard/publisher/groups-main.php:62
1508
  #, fuzzy
1509
  msgid "grid"
1510
  msgstr ""
1511
  "Napravite mrežu za oglase. Popunjavanje 2 i 2 čini 2x2 mrežu. (Default: 2/2)"
1512
 
1513
- #: dashboard/publisher/adverts-edit.php:409
1514
- #: dashboard/publisher/groups-edit.php:202
1515
  #: dashboard/publisher/groups-main.php:63
1516
  #, fuzzy
1517
  msgid "Post Injection"
1518
  msgstr "U post ili stranicu:"
1519
 
1520
- #: dashboard/publisher/adverts-edit.php:410
1521
  #, fuzzy
1522
  msgid "Geolocation"
1523
  msgstr "GeoLocation"
1524
 
1525
- #: dashboard/publisher/adverts-edit.php:416
1526
- #: dashboard/publisher/groups-edit.php:61
1527
  #: dashboard/publisher/groups-main.php:70
1528
  msgid "Mode"
1529
  msgstr "Mod"
@@ -1563,7 +1555,7 @@ msgid "For 7 days"
1563
  msgstr "Za 7 dana"
1564
 
1565
  #: dashboard/publisher/adverts-error.php:71
1566
- #: dashboard/publisher/groups-edit.php:386
1567
  msgid "Configuration errors."
1568
  msgstr "Konfiguracione greške."
1569
 
@@ -1576,11 +1568,6 @@ msgstr ""
1576
  msgid "Export to XML"
1577
  msgstr "Izlazne opcije za"
1578
 
1579
- #: dashboard/publisher/adverts-main.php:42
1580
- #: dashboard/publisher/groups-edit.php:336
1581
- msgid "Weight"
1582
- msgstr "Težina"
1583
-
1584
  #: dashboard/publisher/adverts-main.php:45
1585
  #: dashboard/publisher/adverts-main.php:47
1586
  #: dashboard/publisher/groups-main.php:37
@@ -1619,6 +1606,13 @@ msgstr "Klik danas"
1619
  msgid "Monthly overview of clicks and impressions"
1620
  msgstr "Mesečni pregled klikova i utisaka"
1621
 
 
 
 
 
 
 
 
1622
  #: dashboard/publisher/adverts-report.php:64
1623
  #: dashboard/publisher/groups-report.php:65
1624
  msgid ""
@@ -1637,329 +1631,329 @@ msgstr "Dodati novi"
1637
  msgid "Edit Group"
1638
  msgstr "Edituj grupu"
1639
 
1640
- #: dashboard/publisher/groups-edit.php:64
1641
  msgid "Default - Show one ad at a time"
1642
  msgstr "Default - Prikazati po jedan oglas"
1643
 
1644
- #: dashboard/publisher/groups-edit.php:65
1645
  msgid "Dynamic Mode - Show a different ad every few seconds"
1646
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
1647
 
1648
- #: dashboard/publisher/groups-edit.php:66
1649
  msgid "Block Mode - Show a block of adverts"
1650
  msgstr ""
1651
 
1652
- #: dashboard/publisher/groups-edit.php:70
1653
  #, fuzzy
1654
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1655
  msgstr "AdRotate postavke"
1656
 
1657
- #: dashboard/publisher/groups-edit.php:77
1658
- #: dashboard/publisher/groups-edit.php:104
1659
  #, fuzzy
1660
  msgid "Dynamic and Block Mode"
1661
  msgstr "Blok mod - Prikaži blokove oglasa"
1662
 
1663
- #: dashboard/publisher/groups-edit.php:78
1664
  #, fuzzy
1665
  msgid "Only required if your group is in Dynamic or Block mode."
1666
  msgstr "Blok mod - Prikaži blokove oglasa"
1667
 
1668
- #: dashboard/publisher/groups-edit.php:82
1669
  msgid "Block size"
1670
  msgstr ""
1671
 
1672
- #: dashboard/publisher/groups-edit.php:88
1673
  msgid "rows"
1674
  msgstr "redovi"
1675
 
1676
- #: dashboard/publisher/groups-edit.php:92
1677
  msgid "columns"
1678
  msgstr "kolone"
1679
 
1680
- #: dashboard/publisher/groups-edit.php:95
1681
  #, fuzzy
1682
  msgid "Block Mode"
1683
  msgstr "Blok mod - Prikaži blokove oglasa"
1684
 
1685
- #: dashboard/publisher/groups-edit.php:95
1686
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1687
  msgstr ""
1688
 
1689
- #: dashboard/publisher/groups-edit.php:99
1690
  msgid "Advert size"
1691
  msgstr ""
1692
 
1693
- #: dashboard/publisher/groups-edit.php:101
1694
  msgid "pixel(s) wide"
1695
  msgstr "širina piksela"
1696
 
1697
- #: dashboard/publisher/groups-edit.php:101
1698
  msgid "pixel(s) high."
1699
  msgstr "visina piksela"
1700
 
1701
- #: dashboard/publisher/groups-edit.php:104
1702
  msgid ""
1703
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1704
  "recommended). Default: 125/125."
1705
  msgstr ""
1706
 
1707
- #: dashboard/publisher/groups-edit.php:108
1708
  #, fuzzy
1709
  msgid "Automated refresh"
1710
  msgstr ""
1711
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
1712
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
1713
 
1714
- #: dashboard/publisher/groups-edit.php:127
1715
  msgid "seconds."
1716
  msgstr "sekundi."
1717
 
1718
- #: dashboard/publisher/groups-edit.php:130
1719
  #, fuzzy
1720
  msgid "Dynamic Mode"
1721
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
1722
 
1723
- #: dashboard/publisher/groups-edit.php:130
1724
  msgid ""
1725
  "Load a new advert in this interval without reloading the page. Default: 6."
1726
  msgstr ""
1727
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1728
  "Default: 6."
1729
 
1730
- #: dashboard/publisher/groups-edit.php:141
1731
- #: dashboard/publisher/groups-edit.php:288
1732
  msgid ""
1733
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1734
  "Adverts\" and enter ID"
1735
  msgstr ""
1736
 
1737
- #: dashboard/publisher/groups-edit.php:153
1738
- #: dashboard/publisher/groups-edit.php:300
1739
- #: dashboard/publisher/groups-edit.php:392
1740
  #, fuzzy
1741
  msgid "Save Group"
1742
  msgstr "Sačuvati"
1743
 
1744
- #: dashboard/publisher/groups-edit.php:161
1745
  msgid "Advert Margin"
1746
  msgstr "Margina oglasa"
1747
 
1748
- #: dashboard/publisher/groups-edit.php:163
1749
  msgid "pixel(s)"
1750
  msgstr "pikseli"
1751
 
1752
- #: dashboard/publisher/groups-edit.php:166
1753
  #, fuzzy
1754
  msgid "A transparent area outside the advert in pixels. Default: 0."
1755
  msgstr "Nevidljiva granica van oglasa u pikselima. (Default: 1)"
1756
 
1757
- #: dashboard/publisher/groups-edit.php:166
1758
  #, fuzzy
1759
  msgid "Set to 0 to disable."
1760
  msgstr "Default:10 . Podesite na 0 da isključite ovaj tajmer ."
1761
 
1762
- #: dashboard/publisher/groups-edit.php:166
1763
  msgid "Margins are automatically disabled for blocks where required."
1764
  msgstr ""
1765
 
1766
- #: dashboard/publisher/groups-edit.php:170
1767
  #, fuzzy
1768
  msgid "Align the group"
1769
  msgstr "Gupni oglasi - Koristite grupni ID"
1770
 
1771
- #: dashboard/publisher/groups-edit.php:173
1772
  #, fuzzy
1773
  msgid "None (Default)"
1774
  msgstr "Default - Prikazati po jedan oglas"
1775
 
1776
- #: dashboard/publisher/groups-edit.php:174
1777
  msgid "Left"
1778
  msgstr ""
1779
 
1780
- #: dashboard/publisher/groups-edit.php:175
1781
  #, fuzzy
1782
  msgid "Right"
1783
  msgstr "Težina"
1784
 
1785
- #: dashboard/publisher/groups-edit.php:176
1786
  msgid "Center"
1787
  msgstr ""
1788
 
1789
- #: dashboard/publisher/groups-edit.php:180
1790
  msgid ""
1791
  "Align the group in your post or page. Using 'center' may affect your margin "
1792
  "setting. Not every theme supports this feature."
1793
  msgstr ""
1794
 
1795
- #: dashboard/publisher/groups-edit.php:184
1796
- #: dashboard/settings/advertisers.php:28
1797
  #, fuzzy
1798
  msgid "Geo Targeting"
1799
  msgstr "GeoTargeting"
1800
 
1801
- #: dashboard/publisher/groups-edit.php:185
1802
  msgid "Enable Geo Targeting for this group."
1803
  msgstr ""
1804
 
1805
- #: dashboard/publisher/groups-edit.php:186
1806
  #, fuzzy
1807
  msgid "Do not forget to tell the adverts for which areas they should show."
1808
  msgstr "Ne , ne pokazuju nigde ovaj oglas"
1809
 
1810
- #: dashboard/publisher/groups-edit.php:189
1811
  msgid "Mobile support"
1812
  msgstr ""
1813
 
1814
- #: dashboard/publisher/groups-edit.php:190
1815
  msgid "Enable mobile support for this group."
1816
  msgstr ""
1817
 
1818
- #: dashboard/publisher/groups-edit.php:191
1819
  msgid "Do not forget to put at least one mobile advert in this group."
1820
  msgstr ""
1821
 
1822
- #: dashboard/publisher/groups-edit.php:196
1823
  msgid "Leave empty or 0 to skip this. Will default to group id."
1824
  msgstr "Ostavite prazno ili 0 da preskočite ovo . Biće default ID grupe ."
1825
 
1826
- #: dashboard/publisher/groups-edit.php:200
1827
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1828
  msgstr ""
1829
 
1830
- #: dashboard/publisher/groups-edit.php:205
1831
  msgid "In categories?"
1832
  msgstr ""
1833
 
1834
- #: dashboard/publisher/groups-edit.php:209
1835
- #: dashboard/publisher/groups-edit.php:247
1836
- #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1837
  #, fuzzy
1838
  msgid "Disabled"
1839
  msgstr "Onemogući odgovore"
1840
 
1841
- #: dashboard/publisher/groups-edit.php:210
1842
- #: dashboard/publisher/groups-edit.php:248
1843
  #, fuzzy
1844
  msgid "Before content"
1845
  msgstr "Pre objavljenog sadržaja"
1846
 
1847
- #: dashboard/publisher/groups-edit.php:211
1848
- #: dashboard/publisher/groups-edit.php:249
1849
  #, fuzzy
1850
  msgid "After content"
1851
  msgstr "Pre i posle sadržaju"
1852
 
1853
- #: dashboard/publisher/groups-edit.php:212
1854
- #: dashboard/publisher/groups-edit.php:250
1855
  #, fuzzy
1856
  msgid "Before and after content"
1857
  msgstr "Pre i posle sadržaju"
1858
 
1859
- #: dashboard/publisher/groups-edit.php:213
1860
- #: dashboard/publisher/groups-edit.php:251
1861
  msgid "Inside the content..."
1862
  msgstr ""
1863
 
1864
- #: dashboard/publisher/groups-edit.php:219
1865
- #: dashboard/publisher/groups-edit.php:257
1866
  msgid "after the middle paragraph"
1867
  msgstr ""
1868
 
1869
- #: dashboard/publisher/groups-edit.php:220
1870
- #: dashboard/publisher/groups-edit.php:258
1871
  msgid "after the 1st paragraph"
1872
  msgstr ""
1873
 
1874
- #: dashboard/publisher/groups-edit.php:221
1875
- #: dashboard/publisher/groups-edit.php:259
1876
  msgid "after the 2nd paragraph"
1877
  msgstr ""
1878
 
1879
- #: dashboard/publisher/groups-edit.php:222
1880
- #: dashboard/publisher/groups-edit.php:260
1881
  msgid "after the 3rd paragraph"
1882
  msgstr ""
1883
 
1884
- #: dashboard/publisher/groups-edit.php:223
1885
- #: dashboard/publisher/groups-edit.php:261
1886
  msgid "after the 4th paragraph"
1887
  msgstr ""
1888
 
1889
- #: dashboard/publisher/groups-edit.php:224
1890
- #: dashboard/publisher/groups-edit.php:262
1891
  msgid "after the 5th paragraph"
1892
  msgstr ""
1893
 
1894
- #: dashboard/publisher/groups-edit.php:225
1895
- #: dashboard/publisher/groups-edit.php:263
1896
  msgid "after the 6th paragraph"
1897
  msgstr ""
1898
 
1899
- #: dashboard/publisher/groups-edit.php:226
1900
- #: dashboard/publisher/groups-edit.php:264
1901
  msgid "after the 7th paragraph"
1902
  msgstr ""
1903
 
1904
- #: dashboard/publisher/groups-edit.php:227
1905
- #: dashboard/publisher/groups-edit.php:265
1906
  msgid "after the 8th paragraph"
1907
  msgstr ""
1908
 
1909
- #: dashboard/publisher/groups-edit.php:233
1910
  msgid "Which categories?"
1911
  msgstr "Koje kategorije?"
1912
 
1913
- #: dashboard/publisher/groups-edit.php:238
1914
  msgid "Click the categories posts you want the adverts to show in."
1915
  msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
1916
 
1917
- #: dashboard/publisher/groups-edit.php:243
1918
  msgid "In pages?"
1919
  msgstr ""
1920
 
1921
- #: dashboard/publisher/groups-edit.php:271
1922
  msgid "Which pages?"
1923
  msgstr "Koje stranice ?"
1924
 
1925
- #: dashboard/publisher/groups-edit.php:276
1926
  msgid "Click the pages you want the adverts to show in."
1927
  msgstr "Izaberite stranice koje želite da reklama pokaže"
1928
 
1929
- #: dashboard/publisher/groups-edit.php:304
1930
  #, fuzzy
1931
  msgid "Wrapper code"
1932
  msgstr "Kod omotača (Opcionalno) - Obmotava se oko svakog posebnog oglasa"
1933
 
1934
- #: dashboard/publisher/groups-edit.php:305
1935
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1936
  msgstr ""
1937
 
1938
- #: dashboard/publisher/groups-edit.php:309
1939
  msgid "Before advert"
1940
  msgstr ""
1941
 
1942
- #: dashboard/publisher/groups-edit.php:313
1943
  msgid "Options:"
1944
  msgstr "Opcije :"
1945
 
1946
- #: dashboard/publisher/groups-edit.php:317
1947
  msgid "After advert"
1948
  msgstr ""
1949
 
1950
- #: dashboard/publisher/groups-edit.php:326
1951
  msgid "Select adverts"
1952
  msgstr ""
1953
 
1954
- #: dashboard/publisher/groups-edit.php:331
1955
  msgid "Choose adverts"
1956
  msgstr ""
1957
 
1958
- #: dashboard/publisher/groups-edit.php:337
1959
  msgid "Visible until"
1960
  msgstr "Vidljivo do"
1961
 
1962
- #: dashboard/publisher/groups-edit.php:379
1963
  msgid "No adverts created!"
1964
  msgstr ""
1965
 
@@ -1979,8 +1973,8 @@ msgstr "Vi ste na putu da izbrišete grupu"
1979
  msgid "This action can not be undone!"
1980
  msgstr "Ovo delo se ne može povratiti!"
1981
 
1982
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
1983
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
1984
  msgid "OK to continue, CANCEL to stop."
1985
  msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
1986
 
@@ -1993,165 +1987,180 @@ msgstr "Grupa nije napravljena!"
1993
  msgid "Statistics for group"
1994
  msgstr "Sttistike za"
1995
 
1996
- #: dashboard/settings/advertisers.php:12
1997
  msgid "Advertisers - Available in AdRotate Pro"
1998
  msgstr ""
1999
 
2000
- #: dashboard/settings/advertisers.php:13
2001
  #, fuzzy
2002
  msgid "Enable advertisers so they can review and manage their own ads."
2003
  msgstr "Omogući oglašivače"
2004
 
2005
- #: dashboard/settings/advertisers.php:16
2006
  msgid "Enable Advertisers"
2007
  msgstr "Omogući oglašivače"
2008
 
2009
- #: dashboard/settings/advertisers.php:18
2010
  msgid "Allow adverts to be coupled to users (Advertisers)."
2011
  msgstr "Dozvoli reklame, da se zajedno sa korisnicima ( oglašivači ) ."
2012
 
2013
- #: dashboard/settings/advertisers.php:22
2014
  msgid "Edit/update adverts"
2015
  msgstr "Edit/update oglasi"
2016
 
2017
- #: dashboard/settings/advertisers.php:24
2018
  msgid "Allow advertisers to add new or edit their adverts."
2019
  msgstr "Dozvoli oglašavačima da dodate nove ili izmeniti njihove reklame ."
2020
 
2021
- #: dashboard/settings/advertisers.php:30
 
 
 
 
 
 
 
 
2022
  msgid ""
2023
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2024
  "be enabled, too."
2025
  msgstr ""
2026
 
2027
- #: dashboard/settings/advertisers.php:34
2028
  msgid "Advertiser role"
2029
  msgstr "Uloga oglašivača"
2030
 
2031
- #: dashboard/settings/advertisers.php:36
2032
  msgid "Create a seperate user role for your advertisers."
2033
  msgstr ""
2034
 
2035
- #: dashboard/settings/advertisers.php:37
2036
  msgid ""
2037
  "Don't forget to give these users access to their advertiser dashboard via "
2038
  "the Roles tab."
2039
  msgstr ""
2040
 
2041
- #: dashboard/settings/general.php:12
 
 
 
 
 
 
 
2042
  msgid "General Settings"
2043
  msgstr ""
2044
 
2045
- #: dashboard/settings/general.php:13
2046
  msgid "General settings for AdRotate."
2047
  msgstr ""
2048
 
2049
- #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2050
  msgid "Some options are only available in AdRotate Pro!"
2051
  msgstr ""
2052
 
2053
- #: dashboard/settings/general.php:16
2054
  msgid "Shortcode in widgets"
2055
  msgstr ""
2056
 
2057
- #: dashboard/settings/general.php:17
2058
  msgid ""
2059
  "Enable this option to if your theme does not support shortcodes in the "
2060
  "WordPress text widget."
2061
  msgstr ""
2062
 
2063
- #: dashboard/settings/general.php:20
2064
  msgid "Disable live preview"
2065
  msgstr ""
2066
 
2067
- #: dashboard/settings/general.php:21
2068
  msgid ""
2069
  "Enable this option if you have faulty adverts that overflow their designated "
2070
  "area while creating/editing adverts."
2071
  msgstr ""
2072
 
2073
- #: dashboard/settings/general.php:24
2074
  msgid "Disable dynamic mode"
2075
  msgstr ""
2076
 
2077
- #: dashboard/settings/general.php:25
2078
  msgid ""
2079
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2080
  "you notice skipping or jumpy content."
2081
  msgstr ""
2082
 
2083
- #: dashboard/settings/general.php:28
2084
  #, fuzzy
2085
  msgid "Load jQuery"
2086
  msgstr ""
2087
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
2088
  "Default: 6."
2089
 
2090
- #: dashboard/settings/general.php:29
2091
  msgid ""
2092
  "Enable this option if your theme does not load jQuery. jQuery is required "
2093
  "for dynamic groups, statistics and some other features."
2094
  msgstr ""
2095
 
2096
- #: dashboard/settings/general.php:32
2097
  msgid "Load scripts in footer?"
2098
  msgstr ""
2099
 
2100
- #: dashboard/settings/general.php:33
2101
  msgid ""
2102
  "Enable this option if you want to load all AdRotate Javascripts in the "
2103
  "footer of your site."
2104
  msgstr ""
2105
 
2106
- #: dashboard/settings/general.php:36
2107
  msgid "Adblock disguise"
2108
  msgstr ""
2109
 
2110
- #: dashboard/settings/general.php:38
2111
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2112
  msgstr ""
2113
 
2114
- #: dashboard/settings/general.php:39
2115
  msgid ""
2116
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2117
  msgstr ""
2118
 
2119
- #: dashboard/settings/general.php:39
2120
  msgid ""
2121
  "To also apply this feature to widgets, use a text widget with a shortcode "
2122
  "instead of the AdRotate widget."
2123
  msgstr ""
2124
 
2125
- #: dashboard/settings/general.php:39
2126
  msgid ""
2127
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2128
  "feature will have little effect!"
2129
  msgstr ""
2130
 
2131
- #: dashboard/settings/general.php:44
2132
  msgid "Banner Folder"
2133
  msgstr "Baner Folder"
2134
 
2135
- #: dashboard/settings/general.php:45
2136
  #, fuzzy
2137
  msgid "Set a location where your banner images will be stored."
2138
  msgstr ""
2139
  "Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
2140
  "banners/)."
2141
 
2142
- #: dashboard/settings/general.php:48
2143
  #, fuzzy
2144
  msgid "Location"
2145
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
2146
 
2147
- #: dashboard/settings/general.php:50
2148
  #, fuzzy
2149
  msgid "(Default: wp-content/banners/)."
2150
  msgstr ""
2151
  "Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
2152
  "banners/)."
2153
 
2154
- #: dashboard/settings/general.php:51
2155
  msgid ""
2156
  "To try and trick ad blockers you could set the folder to something crazy "
2157
  "like:"
@@ -2159,7 +2168,7 @@ msgstr ""
2159
  "Da biste probali i prevarili blokatore oglasa možete da odredite folder u "
2160
  "nešto ludo kao što su :"
2161
 
2162
- #: dashboard/settings/general.php:52
2163
  msgid ""
2164
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2165
  "will show errors when the folder is missing."
@@ -2167,37 +2176,37 @@ msgstr ""
2167
  "Ovaj folder neće biti kreirani automatski ako se ona ne postoji . AdRotate "
2168
  "će pokazati greške kada folder nedostaje ."
2169
 
2170
- #: dashboard/settings/general.php:57
2171
  #, fuzzy
2172
  msgid "Bot filter"
2173
  msgstr "User- agent filter"
2174
 
2175
- #: dashboard/settings/general.php:58
2176
  msgid "The bot filter is used for the AdRotate stats tracker."
2177
  msgstr ""
2178
 
2179
- #: dashboard/settings/general.php:61
2180
  msgid "User-Agent Filter"
2181
  msgstr "User- agent filter"
2182
 
2183
- #: dashboard/settings/general.php:64
2184
  msgid ""
2185
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2186
  msgstr ""
2187
 
2188
- #: dashboard/settings/general.php:65
2189
  msgid ""
2190
  "Keep in mind that this might give false positives. The word 'fire' also "
2191
  "matches 'firefox', but not vice-versa. So be careful!"
2192
  msgstr ""
2193
 
2194
- #: dashboard/settings/general.php:66
2195
  msgid ""
2196
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2197
  "characters are stripped out."
2198
  msgstr ""
2199
 
2200
- #: dashboard/settings/general.php:67
2201
  msgid ""
2202
  "Additionally to the list specified here, empty User-Agents are blocked as "
2203
  "well."
@@ -2205,86 +2214,118 @@ msgstr ""
2205
  "Pored toga na spisku ovde , prazne korisnički agenti su blokirani , kao "
2206
  "dobro."
2207
 
2208
- #: dashboard/settings/general.php:67
2209
  msgid "Learn more about"
2210
  msgstr "Saznajte više o"
2211
 
2212
- #: dashboard/settings/general.php:67
2213
  msgid "user-agents"
2214
  msgstr "korisnici-agenti"
2215
 
2216
- #: dashboard/settings/geotargeting.php:12
2217
  msgid "Geo Targeting - Available in AdRotate Pro"
2218
  msgstr ""
2219
 
2220
- #: dashboard/settings/geotargeting.php:13
2221
  msgid "Target certain areas in the world for better advertising oppurtunities."
2222
  msgstr ""
2223
 
2224
- #: dashboard/settings/geotargeting.php:16
2225
  msgid "Which Geo Service"
2226
  msgstr ""
2227
 
2228
- #: dashboard/settings/geotargeting.php:25
2229
- msgid ""
2230
- "The most complete and accurate geo targeting you can get for only $20 USD "
2231
- "per 50000 lookups."
2232
  msgstr ""
2233
 
2234
- #: dashboard/settings/geotargeting.php:27
2235
- msgid "Free lookups every day, uses GeoLite2 databases from MaxMind!"
 
 
 
 
 
 
 
 
 
 
 
 
2236
  msgstr ""
2237
 
2238
  #: dashboard/settings/geotargeting.php:33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2239
  msgid "Geo Cookie Lifespan"
2240
  msgstr ""
2241
 
2242
- #: dashboard/settings/geotargeting.php:42
2243
  msgid "Hours."
2244
  msgstr ""
2245
 
2246
- #: dashboard/settings/geotargeting.php:43
2247
  msgid ""
2248
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2249
  "cookie last? A longer period is less accurate for mobile users but may "
2250
  "reduce the usage of your lookups drastically."
2251
  msgstr ""
2252
 
2253
- #: dashboard/settings/geotargeting.php:49
2254
  msgid "MaxMind City/Country"
2255
  msgstr ""
2256
 
2257
- #: dashboard/settings/geotargeting.php:52
2258
  msgid "Username/Email"
2259
  msgstr ""
2260
 
2261
- #: dashboard/settings/geotargeting.php:56
2262
  msgid "Password/License Key"
2263
  msgstr ""
2264
 
2265
- #: dashboard/settings/maintenance.php:12
2266
  msgid "Maintenance"
2267
  msgstr "Održavanje"
2268
 
2269
- #: dashboard/settings/maintenance.php:13
2270
  msgid ""
2271
  "Use these functions when you notice your database is slow, unresponsive and "
2272
  "sluggish."
2273
  msgstr ""
2274
 
2275
- #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2276
  msgid "Optimize Database"
2277
  msgstr "Optimizacija baze podataka"
2278
 
2279
- #: dashboard/settings/maintenance.php:18
2280
  msgid "You are about to optimize the AdRotate database."
2281
  msgstr "Na putu ste da optimizirate AdRotate bazu podataka ."
2282
 
2283
- #: dashboard/settings/maintenance.php:18
2284
  msgid "Did you make a backup of your database?"
2285
  msgstr "Da li ste napravili rezervnu kopiju baze podataka ?"
2286
 
2287
- #: dashboard/settings/maintenance.php:18
2288
  msgid ""
2289
  "This may take a moment and may cause your website to respond slow "
2290
  "temporarily!"
@@ -2292,11 +2333,11 @@ msgstr ""
2292
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
2293
  "sporo privremeno !"
2294
 
2295
- #: dashboard/settings/maintenance.php:19
2296
  msgid "Cleans up overhead data in the AdRotate tables."
2297
  msgstr "Čiste se režijski podaci u tabelama AdRotate ."
2298
 
2299
- #: dashboard/settings/maintenance.php:20
2300
  msgid ""
2301
  "Overhead data is accumulated garbage resulting from many changes you've "
2302
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2304,65 +2345,65 @@ msgstr ""
2304
  "Opšti podaci se akumulira smeća usled mnogih promena koje ste napravili . "
2305
  "Ovo može da varira od nule do nekoliko stotina KiB podataka ."
2306
 
2307
- #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2308
  msgid "Clean-up Database"
2309
  msgstr "Čišćenje baze"
2310
 
2311
- #: dashboard/settings/maintenance.php:26
2312
  #, fuzzy
2313
  msgid ""
2314
  "You are about to clean up your database. This may delete expired schedules "
2315
  "and older statistics."
2316
  msgstr "Čišćenje baze"
2317
 
2318
- #: dashboard/settings/maintenance.php:26
2319
  #, fuzzy
2320
  msgid "Are you sure you want to continue?"
2321
  msgstr "Popunite ID tipa koji želite da prikažete!"
2322
 
2323
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2324
  #, fuzzy
2325
  msgid "This might take a while and may slow down your site during this action!"
2326
  msgstr ""
2327
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
2328
  "sporo privremeno !"
2329
 
2330
- #: dashboard/settings/maintenance.php:27
2331
  #, fuzzy
2332
  msgid "Delete stats older than 356 days (Optional)."
2333
  msgstr "Uloga obrisati oglase i resetovanje ."
2334
 
2335
- #: dashboard/settings/maintenance.php:28
2336
  msgid ""
2337
  "AdRotate creates empty records when you start making ads, groups or "
2338
  "schedules. In rare occasions these records are faulty."
2339
  msgstr ""
2340
 
2341
- #: dashboard/settings/maintenance.php:28
2342
  msgid ""
2343
  "If you made an ad, group or schedule that does not save when you make it use "
2344
  "this button to delete those empty records."
2345
  msgstr ""
2346
 
2347
- #: dashboard/settings/maintenance.php:28
2348
  msgid ""
2349
  "Additionally you can clean up old schedules and/or statistics. This will "
2350
  "improve the speed of your site."
2351
  msgstr ""
2352
 
2353
- #: dashboard/settings/maintenance.php:32
2354
  msgid "Re-evaluate Ads"
2355
  msgstr "Ponovo ocenjeni oglasi"
2356
 
2357
- #: dashboard/settings/maintenance.php:34
2358
  msgid "Re-evaluate all ads"
2359
  msgstr "Ponovo ocenite sve oglase"
2360
 
2361
- #: dashboard/settings/maintenance.php:34
2362
  msgid "You are about to check all ads for errors."
2363
  msgstr "Vi ste o tome da proveri sve oglase za greške ."
2364
 
2365
- #: dashboard/settings/maintenance.php:35
2366
  msgid ""
2367
  "This will apply all evaluation rules to all ads to see if any error slipped "
2368
  "in. Normally you should not need this feature."
@@ -2370,7 +2411,7 @@ msgstr ""
2370
  "Ovo će primeniti sva pravila za ocenjivanje na sve oglase da vidim da li "
2371
  "bilo koja greška okliznuo unutra Normalno ne bi trebalo ovu funkciju ."
2372
 
2373
- #: dashboard/settings/maintenance.php:39
2374
  msgid ""
2375
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2376
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2383,11 +2424,11 @@ msgid ""
2383
  "is not a valid point in any case."
2384
  msgstr ""
2385
 
2386
- #: dashboard/settings/maintenance.php:41
2387
  msgid "Troubleshooting"
2388
  msgstr "Rešavanje problema"
2389
 
2390
- #: dashboard/settings/maintenance.php:42
2391
  msgid ""
2392
  "The below options are not meant for normal use and are only there for "
2393
  "developers to review saved settings or how ads are selected. These can be "
@@ -2395,55 +2436,39 @@ msgid ""
2395
  "SHOULD BE LEFT UNCHECKED!!"
2396
  msgstr ""
2397
 
2398
- #: dashboard/settings/maintenance.php:45
2399
  msgid "Developer Debug"
2400
  msgstr "Debug za programera"
2401
 
2402
- #: dashboard/settings/maintenance.php:47
2403
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2404
  msgstr ""
2405
 
2406
- #: dashboard/settings/maintenance.php:48
2407
  msgid "View advert specs and (some) stats in the dashboard."
2408
  msgstr ""
2409
 
2410
- #: dashboard/settings/maintenance.php:49
2411
  #, fuzzy
2412
  msgid ""
2413
  "Disable timers for clicks and impressions and enable a alert window for "
2414
  "clicktracking."
2415
  msgstr "Pratite klikove i prikaze ."
2416
 
2417
- #: dashboard/settings/maintenance.php:50
2418
  msgid "Temporarily disable encryption on the redirect url."
2419
  msgstr "Privremeno onemogući šifrovanje na URL adresu za preusmeravanje ."
2420
 
2421
- #: dashboard/settings/maintenance.php:55
2422
  msgid "Status and Versions"
2423
  msgstr ""
2424
 
2425
- #: dashboard/settings/maintenance.php:58
2426
- msgid "Current version:"
2427
- msgstr "Trenutna verzija :"
2428
-
2429
- #: dashboard/settings/maintenance.php:59
2430
- msgid "Previous version:"
2431
- msgstr "Prethodna verzija :"
2432
-
2433
  #: dashboard/settings/maintenance.php:62
2434
- msgid "Current database version:"
2435
- msgstr "Trenutna verzija baze podataka :"
2436
-
2437
- #: dashboard/settings/maintenance.php:63
2438
- msgid "Previous database version:"
2439
- msgstr "Prethodna verzija baze podataka :"
2440
-
2441
- #: dashboard/settings/maintenance.php:66
2442
  #, fuzzy
2443
  msgid "Current status of adverts"
2444
  msgstr "Trenutni raspored"
2445
 
2446
- #: dashboard/settings/maintenance.php:67
2447
  #, fuzzy
2448
  msgid "Normal"
2449
  msgstr ""
@@ -2452,59 +2477,93 @@ msgstr ""
2452
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
2453
  "normalnu upotrebu oni treba da budu levo neprovereni "
2454
 
2455
- #: dashboard/settings/maintenance.php:67
2456
  #, fuzzy
2457
  msgid "Error"
2458
  msgstr "Nepoznati error se ukazao."
2459
 
2460
- #: dashboard/settings/maintenance.php:67
2461
  #, fuzzy
2462
  msgid "Expired"
2463
  msgstr "Isteklo je."
2464
 
2465
- #: dashboard/settings/maintenance.php:67
2466
  #, fuzzy
2467
  msgid "Expires Soon"
2468
  msgstr "Ističe uskoro."
2469
 
2470
- #: dashboard/settings/maintenance.php:67
2471
  msgid "Unknown"
2472
  msgstr ""
2473
 
2474
- #: dashboard/settings/maintenance.php:70
2475
  msgid "Banners/assets Folder"
2476
  msgstr ""
2477
 
2478
- #: dashboard/settings/maintenance.php:72
2479
  msgid "Exists and appears writable"
2480
  msgstr ""
2481
 
2482
- #: dashboard/settings/maintenance.php:72
2483
  msgid "Not writable or does not exist"
2484
  msgstr ""
2485
 
 
 
 
 
2486
  #: dashboard/settings/maintenance.php:76
2487
- #, fuzzy
2488
- msgid "Ad evaluation next run:"
2489
- msgstr "Očistite Trackerdata u sledećem pokušaju :"
 
 
 
2490
 
2491
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
2492
- msgid "Not scheduled!"
2493
- msgstr "Nije planirano:"
2494
 
2495
- #: dashboard/settings/maintenance.php:80
2496
- msgid "Clean Trackerdata next run:"
2497
- msgstr "Očistite Trackerdata u sledećem pokušaju :"
2498
 
2499
- #: dashboard/settings/misc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2500
  msgid "Miscellaneous"
2501
  msgstr "Ostalo"
2502
 
2503
- #: dashboard/settings/misc.php:15
2504
  msgid "Widget alignment"
2505
  msgstr "Widget alignment"
2506
 
2507
- #: dashboard/settings/misc.php:16
2508
  msgid ""
2509
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2510
  "not always help!)"
@@ -2512,12 +2571,12 @@ msgstr ""
2512
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
2513
  "uvek ! )"
2514
 
2515
- #: dashboard/settings/misc.php:19
2516
  #, fuzzy
2517
  msgid "Widget padding"
2518
  msgstr "Blokiraj punjenje"
2519
 
2520
- #: dashboard/settings/misc.php:20
2521
  #, fuzzy
2522
  msgid ""
2523
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
@@ -2526,7 +2585,7 @@ msgstr ""
2526
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
2527
  "uvek ! )"
2528
 
2529
- #: dashboard/settings/misc.php:24
2530
  #, fuzzy
2531
  msgid "NOTICE:"
2532
  msgstr ""
@@ -2536,31 +2595,31 @@ msgstr ""
2536
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
2537
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
2538
 
2539
- #: dashboard/settings/misc.php:25
2540
  msgid ""
2541
  "You have enabled W3 Total Caching support but not defined the security hash."
2542
  msgstr ""
2543
 
2544
- #: dashboard/settings/misc.php:25
2545
  msgid ""
2546
  "AdRotate has generated the following line for you to add to your wp-config."
2547
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2548
  "add this line, check out the following guide;"
2549
  msgstr ""
2550
 
2551
- #: dashboard/settings/misc.php:25
2552
  msgid "Set up W3 Total Caching"
2553
  msgstr ""
2554
 
2555
- #: dashboard/settings/misc.php:29
2556
  msgid "W3 Total Caching"
2557
  msgstr "W3 Total Caching"
2558
 
2559
- #: dashboard/settings/misc.php:30
2560
  msgid "Check this box if you use W3 Total Caching on your site."
2561
  msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
2562
 
2563
- #: dashboard/settings/misc.php:34
2564
  msgid ""
2565
  "It may take a while for the ad to start rotating. The caching plugin needs "
2566
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2568,7 +2627,7 @@ msgstr ""
2568
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
2569
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
2570
 
2571
- #: dashboard/settings/misc.php:34
2572
  msgid ""
2573
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2574
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2576,349 +2635,413 @@ msgstr ""
2576
  "Hvatanje podrške radi samo za [kratke brojeve] i AdRotate Widget . Ako "
2577
  "koristite PHP Snippet treba da zamotate svoj PHP u isključenju svog koda."
2578
 
2579
- #: dashboard/settings/notifications.php:12
2580
  msgid "Notifications"
2581
  msgstr "Notifikacije"
2582
 
2583
- #: dashboard/settings/notifications.php:13
2584
  #, fuzzy
2585
  msgid "Set up who gets notifications if ads need your attention."
2586
  msgstr "Oglasi koje treba neposrednu pažnju"
2587
 
2588
- #: dashboard/settings/notifications.php:16
2589
  msgid "How to notify"
2590
  msgstr ""
2591
 
2592
- #: dashboard/settings/notifications.php:18
2593
  msgid "Dashboard banner."
2594
  msgstr ""
2595
 
2596
- #: dashboard/settings/notifications.php:19
2597
  #, fuzzy
2598
  msgid "Email message."
2599
  msgstr "Stranica oglašivača"
2600
 
2601
- #: dashboard/settings/notifications.php:20
2602
  msgid "Push notifications to your smartphone."
2603
  msgstr ""
2604
 
2605
- #: dashboard/settings/notifications.php:21
2606
  msgid ""
2607
  "Push notifications are delivered through Pushover, a notification service "
2608
  "for Android and iOS"
2609
  msgstr ""
2610
 
2611
- #: dashboard/settings/notifications.php:21
2612
  msgid ""
2613
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2614
  "information can be found on the pushover website;"
2615
  msgstr ""
2616
 
2617
- #: dashboard/settings/notifications.php:25
2618
  msgid "Test notification"
2619
  msgstr ""
2620
 
2621
- #: dashboard/settings/notifications.php:27
2622
  msgid "Test"
2623
  msgstr "Test"
2624
 
2625
- #: dashboard/settings/notifications.php:27
2626
  msgid ""
2627
  "Send a test notification to enabled methods. Before you test, save the "
2628
  "options first!"
2629
  msgstr ""
2630
 
2631
- #: dashboard/settings/notifications.php:32
2632
- msgid "Dashboard"
2633
  msgstr ""
2634
 
2635
- #: dashboard/settings/notifications.php:33
2636
  msgid ""
2637
  "These go in a dashboard banner visible to all users with access to AdRotate "
2638
  "on every WordPress dashboard page."
2639
  msgstr ""
2640
 
2641
- #: dashboard/settings/notifications.php:36
2642
- #: dashboard/settings/notifications.php:68
 
2643
  msgid "What"
2644
  msgstr ""
2645
 
2646
- #: dashboard/settings/notifications.php:38
2647
  msgid "Expired adverts."
2648
  msgstr ""
2649
 
2650
- #: dashboard/settings/notifications.php:39
2651
  msgid "Almost expired adverts."
2652
  msgstr ""
2653
 
2654
- #: dashboard/settings/notifications.php:44
2655
- msgid "Email"
2656
  msgstr ""
2657
 
2658
- #: dashboard/settings/notifications.php:45
2659
- #, fuzzy
2660
- msgid "Set up who gets notification emails."
2661
- msgstr "Oglasi koje treba neposrednu pažnju"
2662
-
2663
- #: dashboard/settings/notifications.php:48
2664
- #, fuzzy
2665
- msgid "Publishers"
2666
- msgstr ""
2667
- "Pregled globalna statistike , po oglasu / grupa / blok statistika . Vidljivo "
2668
- "samo izdavačima ."
2669
-
2670
  #: dashboard/settings/notifications.php:51
2671
  msgid ""
2672
- "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2673
- "list to a minimum!"
2674
  msgstr ""
2675
- "Razdvojene zarezom spisak adresa e-pošte . Maksimalan broj 5 adresa . Držite "
2676
- "ovu listu na minimum !"
2677
 
2678
- #: dashboard/settings/notifications.php:52
2679
- #, fuzzy
2680
- msgid ""
2681
- "Messages are sent once every 24 hours when needed. If this field is empty no "
2682
- "email notifications will be send."
2683
  msgstr ""
2684
- "Poruke se šalju jednom u 24 sata kada je to potrebno . Ako ovo polje je "
2685
- "praznofunkcija će biti onemogućena "
2686
 
2687
- #: dashboard/settings/notifications.php:56
2688
- msgid "Advertisers"
2689
- msgstr "Oglašivači"
 
 
 
 
 
 
2690
 
2691
  #: dashboard/settings/notifications.php:59
 
2692
  #, fuzzy
2693
- msgid ""
2694
- "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2695
- "This field may not be empty!"
2696
- msgstr ""
2697
- "Maksimalno 2 adrese. Odvojenu zarezima. Ovo polje ne može biti prazno !"
2698
 
2699
- #: dashboard/settings/notifications.php:64
2700
- msgid "Push"
 
 
 
 
 
 
 
 
 
2701
  msgstr ""
2702
 
2703
- #: dashboard/settings/notifications.php:65
2704
  msgid ""
2705
- "Receive information about what is happening with your AdRotate setup on your "
2706
- "smartphone via Pushover."
 
 
 
2707
  msgstr ""
2708
 
2709
- #: dashboard/settings/notifications.php:70
2710
- msgid "When you are running out of Geo Targeting Lookups."
 
2711
  msgstr ""
 
 
2712
 
2713
- #: dashboard/settings/notifications.php:71
2714
- msgid "Daily digest of any advert status other than normal."
 
 
2715
  msgstr ""
2716
 
2717
  #: dashboard/settings/notifications.php:72
2718
- msgid "Any advertiser saving an advert in your moderation queue."
 
 
 
 
 
 
2719
  msgstr ""
2720
 
2721
- #: dashboard/settings/notifications.php:73
2722
  #, fuzzy
2723
- msgid "A moderator approved an advert from the moderation queue."
2724
- msgstr "Odobri / odbaci reklame u red za uređivanje"
2725
 
2726
- #: dashboard/settings/notifications.php:74
2727
- #, fuzzy
2728
- msgid "A moderator rejected an advert from the moderation queue."
2729
- msgstr "Odobri / odbaci reklame u red za uređivanje"
 
2730
 
2731
- #: dashboard/settings/notifications.php:74
2732
  msgid ""
2733
- "If you have a lot of activity with many advertisers adding/changing adverts "
2734
- "you may get a lot of messages!"
 
 
2735
  msgstr ""
2736
 
2737
- #: dashboard/settings/notifications.php:79
2738
  #, fuzzy
2739
  msgid "User Key"
2740
  msgstr "korisnici-agenti"
2741
 
2742
- #: dashboard/settings/notifications.php:81
2743
  msgid "Get your user token"
2744
  msgstr ""
2745
 
2746
- #: dashboard/settings/notifications.php:81
2747
- #: dashboard/settings/notifications.php:87
2748
  msgid "here"
2749
  msgstr ""
2750
 
2751
- #: dashboard/settings/notifications.php:85
2752
  msgid "Api Token"
2753
  msgstr ""
2754
 
2755
- #: dashboard/settings/notifications.php:87
2756
  msgid "Create your"
2757
  msgstr ""
2758
 
2759
- #: dashboard/settings/notifications.php:87
2760
  msgid "App"
2761
  msgstr ""
2762
 
2763
- #: dashboard/settings/notifications.php:87
2764
  msgid "and get your API token"
2765
  msgstr ""
2766
 
2767
- #: dashboard/settings/roles.php:12
2768
  msgid "Roles"
2769
  msgstr ""
2770
 
2771
- #: dashboard/settings/roles.php:13
2772
  msgid "Who has access to what?"
2773
  msgstr ""
2774
 
2775
- #: dashboard/settings/roles.php:16
2776
  msgid "Manage/Add/Edit adverts"
2777
  msgstr "Upravljanje / Add / Edit reklame"
2778
 
2779
- #: dashboard/settings/roles.php:20
2780
  msgid "Role to see and add/edit ads."
2781
  msgstr "Uloga videti i add / edit oglase ."
2782
 
2783
- #: dashboard/settings/roles.php:24
2784
  msgid "Delete/Reset adverts"
2785
  msgstr "Brisanje / Reset reklame"
2786
 
2787
- #: dashboard/settings/roles.php:28
2788
  msgid "Role to delete ads and reset stats."
2789
  msgstr "Uloga obrisati oglase i resetovanje ."
2790
 
2791
- #: dashboard/settings/roles.php:32
2792
  msgid "Manage/Add/Edit groups"
2793
  msgstr "Upravljanje / Add / Edit grupama"
2794
 
2795
- #: dashboard/settings/roles.php:36
2796
  msgid "Role to see and add/edit groups."
2797
  msgstr "Uloga videti i add / edit grupe ."
2798
 
2799
- #: dashboard/settings/roles.php:40
2800
  msgid "Delete groups"
2801
  msgstr "Brisanje grupe"
2802
 
2803
- #: dashboard/settings/roles.php:44
2804
  msgid "Role to delete groups."
2805
  msgstr "Uloga za brisanje grupe ."
2806
 
2807
- #: dashboard/settings/statistics.php:13
2808
  msgid "Track statistics for your adverts."
2809
  msgstr ""
2810
 
2811
- #: dashboard/settings/statistics.php:16
2812
  msgid "How to track stats"
2813
  msgstr ""
2814
 
2815
- #: dashboard/settings/statistics.php:25
2816
  msgid "Tracks impressions and clicks internally"
2817
  msgstr ""
2818
 
2819
- #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2820
- #: dashboard/settings/statistics.php:29
2821
  msgid "manual"
2822
  msgstr ""
2823
 
2824
- #: dashboard/settings/statistics.php:26
2825
  msgid ""
2826
  "Click and Impression recording, Click and impression limits, impression "
2827
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2828
  "will only track impressions."
2829
  msgstr ""
2830
 
2831
- #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2832
  msgid "In AdRotate Pro!"
2833
  msgstr ""
2834
 
2835
- #: dashboard/settings/statistics.php:27
2836
  msgid ""
2837
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2838
  "attributes"
2839
  msgstr ""
2840
 
2841
- #: dashboard/settings/statistics.php:28
2842
  msgid ""
2843
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2844
  "Contents."
2845
  msgstr ""
2846
 
2847
- #: dashboard/settings/statistics.php:29
2848
  msgid ""
2849
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2850
  "uses onClick() and onload() in adverts"
2851
  msgstr ""
2852
 
2853
- #: dashboard/settings/statistics.php:30
2854
  msgid ""
2855
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2856
  "Banner."
2857
  msgstr ""
2858
 
2859
- #: dashboard/settings/statistics.php:36
2860
  msgid "Internal Tracker"
2861
  msgstr ""
2862
 
2863
- #: dashboard/settings/statistics.php:37
2864
  msgid ""
2865
  "The settings below are for the internal tracker and have no effect when "
2866
  "using Piwik/Google Analytics."
2867
  msgstr ""
2868
 
2869
- #: dashboard/settings/statistics.php:40
2870
  #, fuzzy
2871
  msgid "Logged in impressions"
2872
  msgstr "Pratite utiske ulogovanih korisniika (Preporučeno)"
2873
 
2874
- #: dashboard/settings/statistics.php:42
2875
  msgid "Track impressions from logged in users."
2876
  msgstr ""
2877
 
2878
- #: dashboard/settings/statistics.php:46
2879
  #, fuzzy
2880
  msgid "Logged in clicks"
2881
  msgstr "Pratite klikove ulogovani korisnici ."
2882
 
2883
- #: dashboard/settings/statistics.php:48
2884
  msgid "Track clicks from logged in users."
2885
  msgstr "Pratite klikove ulogovani korisnici ."
2886
 
2887
- #: dashboard/settings/statistics.php:52
2888
  msgid "Impression timer"
2889
  msgstr ""
2890
 
2891
- #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2892
  msgid "Seconds."
2893
  msgstr "Sekunde."
2894
 
2895
- #: dashboard/settings/statistics.php:55
2896
  #, fuzzy
2897
  msgid "Default: 60."
2898
  msgstr "Default - Prikazati po jedan oglas"
2899
 
2900
- #: dashboard/settings/statistics.php:55
2901
  #, fuzzy
2902
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2903
  msgstr ""
2904
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
2905
 
2906
- #: dashboard/settings/statistics.php:59
2907
  msgid "Click timer"
2908
  msgstr ""
2909
 
2910
- #: dashboard/settings/statistics.php:62
2911
  #, fuzzy
2912
  msgid "Default: 86400."
2913
  msgstr "Default - Prikazati po jedan oglas"
2914
 
2915
- #: dashboard/settings/statistics.php:62
2916
  #, fuzzy
2917
  msgid ""
2918
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2919
  msgstr ""
2920
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
2921
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2922
  #, fuzzy
2923
  #~ msgid "Get more features with AdRotate Pro"
2924
  #~ msgstr "Nabvite jos karakteristika! AdRotate Pro."
@@ -2942,10 +3065,6 @@ msgstr ""
2942
  #~ msgid "Email Notifications"
2943
  #~ msgstr "Email Obaveštenja"
2944
 
2945
- #, fuzzy
2946
- #~ msgid "Push Notifications"
2947
- #~ msgstr "Notifikacije"
2948
-
2949
  #~ msgid "active ad(s) expired."
2950
  #~ msgstr "aktivni ad-ovi su istekli."
2951
 
@@ -3035,10 +3154,6 @@ msgstr ""
3035
  #~ msgid "Barely visible"
3036
  #~ msgstr "Vidljivo do"
3037
 
3038
- #, fuzzy
3039
- #~ msgid "Less than average"
3040
- #~ msgstr "Oglas ističe za manje od 2 dana !"
3041
-
3042
  #, fuzzy
3043
  #~ msgid "Normal coverage"
3044
  #~ msgstr ""
@@ -3047,10 +3162,6 @@ msgstr ""
3047
  #~ "izabrani . To se može koristiti kao mera za rešavanje problema na "
3048
  #~ "zahtev , ali za normalnu upotrebu oni treba da budu levo neprovereni "
3049
 
3050
- #, fuzzy
3051
- #~ msgid "More than average"
3052
- #~ msgstr "Saznajte više"
3053
-
3054
  #, fuzzy
3055
  #~ msgid "Best visibility"
3056
  #~ msgstr "Vidljivo do"
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-17 23:25+0800\n"
6
+ "PO-Revision-Date: 2016-07-17 23:25+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
9
  "Language: sr_RS\n"
16
  "X-Generator: Poedit 1.8.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: adrotate-functions.php:842
20
  msgid "No files found"
21
  msgstr "Nijedan fajl nije pronadjen"
22
 
23
+ #: adrotate-functions.php:845
24
  msgid "Folder not found or not accessible"
25
  msgstr "Folder nije pronadjen ili nije prihvatljiv"
26
 
27
+ #: adrotate-functions.php:894
28
  msgid "Ad saved"
29
  msgstr ""
30
 
31
+ #: adrotate-functions.php:898
32
  msgid "Group saved"
33
  msgstr ""
34
 
35
+ #: adrotate-functions.php:902
36
  msgid "Ad(s) deleted"
37
  msgstr "Izbrisani oglasu"
38
 
39
+ #: adrotate-functions.php:906
40
  msgid "Group deleted"
41
  msgstr "Izbrisana grupa"
42
 
43
+ #: adrotate-functions.php:910
44
  msgid "Ad(s) statistics reset"
45
  msgstr "Statistički resestovani oglasi"
46
 
47
+ #: adrotate-functions.php:914
48
  msgid "Ad(s) renewed"
49
  msgstr "Ponovo obnovljeni oglasi"
50
 
51
+ #: adrotate-functions.php:918
52
  msgid "Ad(s) deactivated"
53
  msgstr "Deaktivirani oglasi"
54
 
55
+ #: adrotate-functions.php:922
56
  msgid "Ad(s) activated"
57
  msgstr "Aktivirani oglasi"
58
 
59
+ #: adrotate-functions.php:926
60
  msgid "Group including it's Ads deleted"
61
  msgstr "Grupa koja podrazumeva obrisane oglase"
62
 
63
+ #: adrotate-functions.php:930
64
  #, fuzzy
65
  msgid "Export created"
66
  msgstr "Izlazne opcije za"
67
 
68
+ #: adrotate-functions.php:935
69
  msgid "Settings saved"
70
  msgstr "Postavke sačuvane"
71
 
72
+ #: adrotate-functions.php:939
73
  msgid "Database optimized"
74
  msgstr "Baza podataka optimizirana"
75
 
76
+ #: adrotate-functions.php:943
77
  msgid "Database repaired"
78
  msgstr "Baza podataka popravljena"
79
 
80
+ #: adrotate-functions.php:947
81
  msgid "Ads evaluated and statuses have been corrected where required"
82
  msgstr "Oglasi procenjuju i statusi su ispravljene kada je to potrebno"
83
 
84
+ #: adrotate-functions.php:951
85
  msgid "Empty database records removed"
86
  msgstr "Prazni zapisi baze podataka uklanjaju"
87
 
88
+ #: adrotate-functions.php:956
89
  msgid "Action prohibited"
90
  msgstr "Zabranjeno delo"
91
 
92
+ #: adrotate-functions.php:960
93
  msgid ""
94
  "The ad was saved but has an issue which might prevent it from working "
95
  "properly. Review the colored ad."
96
  msgstr ""
97
 
98
+ #: adrotate-functions.php:964
99
  msgid "No data found in selected time period"
100
  msgstr "Nijedan podatak nije nadjen u odredjenom vremenskom periodu"
101
 
102
+ #: adrotate-functions.php:968
103
  msgid "Database can only be optimized or cleaned once every hour"
104
  msgstr "Baza podataka može biti optimizovana ili čiste jednom svaki sat"
105
 
106
+ #: adrotate-functions.php:972
107
  msgid "Form can not be (partially) empty!"
108
  msgstr ""
109
 
110
+ #: adrotate-functions.php:976
111
  msgid "No ads found."
112
  msgstr ""
113
 
114
+ #: adrotate-functions.php:980
115
  msgid "Unexpected error"
116
  msgstr ""
117
 
118
+ #: adrotate-manage-publisher.php:685
119
  msgid "AdRotate Advertiser"
120
  msgstr ""
121
 
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
  "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
  "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
+ #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
197
  msgid "Check adverts"
198
  msgstr ""
199
 
200
+ #: adrotate-output.php:675
201
  msgid ""
202
  "You have enable caching support but W3 Total Cache is not active on your "
203
  "site!"
204
  msgstr ""
205
 
206
+ #: adrotate-output.php:678
207
  msgid ""
208
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
209
  "not set."
210
  msgstr ""
211
 
212
+ #: adrotate-output.php:683
213
  msgid "Your AdRotate Banner folder is not writable or does not exist."
214
  msgstr ""
215
 
216
+ #: adrotate-output.php:723 dashboard/adrotatepro.php:99
217
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
218
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
219
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
220
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
221
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
222
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
223
+ #: dashboard/settings/geotargeting.php:35
224
  #, fuzzy
225
  msgid "Buy now"
226
  msgstr "Kupite odmah"
227
 
228
+ #: adrotate-output.php:724
229
  msgid ""
230
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
231
  "to the <strong>PRO</strong> version"
232
  msgstr ""
233
 
234
+ #: adrotate-output.php:724
235
  #, php-format
236
  msgid ""
237
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
238
  msgstr ""
239
 
240
+ #: adrotate-output.php:724
241
  msgid "Thank you for your purchase!"
242
  msgstr ""
243
 
244
+ #: adrotate-output.php:785
245
  msgid ""
246
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
247
  "this menu. Check out the"
248
  msgstr ""
249
 
250
+ #: adrotate-output.php:785
251
  msgid "manuals"
252
  msgstr "priručnici"
253
 
254
+ #: adrotate-output.php:785 adrotate-output.php:852
255
  msgid "and"
256
  msgstr ""
257
 
258
+ #: adrotate-output.php:785
259
  msgid "forums"
260
  msgstr ""
261
 
262
+ #: adrotate-output.php:815
263
  #, fuzzy
264
  msgid "Useful Links"
265
  msgstr "Korisni linkovi"
266
 
267
+ #: adrotate-output.php:816
268
  msgid "Useful links to learn more about AdRotate"
269
  msgstr ""
270
 
271
+ #: adrotate-output.php:818
272
  msgid "AdRotate website"
273
  msgstr ""
274
 
275
+ #: adrotate-output.php:819
276
  #, fuzzy
277
  msgid "Getting Started With AdRotate"
278
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
279
 
280
+ #: adrotate-output.php:820
281
  #, fuzzy
282
  msgid "AdRotate manuals"
283
  msgstr "AdRotate informacije"
284
 
285
+ #: adrotate-output.php:821
286
  #, fuzzy
287
  msgid "AdRotate Support Forum"
288
  msgstr "AdRotate prodavnica"
289
 
290
+ #: adrotate-output.php:844
291
  #, fuzzy
292
  msgid "Help AdRotate Grow"
293
  msgstr "Zaglavili ste se sa AdRotate ? Ja ću vam pomoći !"
294
 
295
+ #: adrotate-output.php:845
296
  msgid "Follow Arnan on Facebook"
297
  msgstr ""
298
 
299
+ #: adrotate-output.php:852
300
  msgid ""
301
  "A lot of users only think to review AdRotate when something goes wrong while "
302
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
303
  msgstr ""
304
 
305
+ #: adrotate-output.php:852
306
  msgid "If you find AdRotate useful please leave your honest"
307
  msgstr ""
308
 
309
+ #: adrotate-output.php:852
310
  msgid "rating"
311
  msgstr ""
312
 
313
+ #: adrotate-output.php:852
314
  #, fuzzy
315
  msgid "review"
316
  msgstr "Dajte ocenu i komentar"
317
 
318
+ #: adrotate-output.php:852
319
  msgid "on WordPress.org to help AdRotate grow in a positive way"
320
  msgstr ""
321
 
322
+ #: adrotate-output.php:885 dashboard/settings/notifications.php:50
323
+ #: dashboard/settings/notifications.php:80
324
  msgid "Available in AdRotate Pro"
325
  msgstr "Dostupno u AdRotate Pro"
326
 
327
+ #: adrotate-output.php:885
328
  #, fuzzy
329
  msgid "More information..."
330
  msgstr "Saznajte više"
331
 
332
+ #: adrotate-output.php:886
333
  msgid "This feature is available in AdRotate Pro"
334
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
335
 
336
+ #: adrotate-output.php:886
337
  msgid "Learn more"
338
  msgstr "Saznajte više"
339
 
340
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
341
+ #: dashboard/publisher/adverts-edit.php:235
342
  msgid "January"
343
  msgstr "Januar"
344
 
345
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
346
+ #: dashboard/publisher/adverts-edit.php:236
347
  msgid "February"
348
  msgstr "Februar"
349
 
350
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
351
+ #: dashboard/publisher/adverts-edit.php:237
352
  msgid "March"
353
  msgstr "Mart"
354
 
355
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
356
+ #: dashboard/publisher/adverts-edit.php:238
357
  msgid "April"
358
  msgstr "April"
359
 
360
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
361
+ #: dashboard/publisher/adverts-edit.php:239
362
  msgid "May"
363
  msgstr "Maj"
364
 
365
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
366
+ #: dashboard/publisher/adverts-edit.php:240
367
  msgid "June"
368
  msgstr "Jun"
369
 
370
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
371
+ #: dashboard/publisher/adverts-edit.php:241
372
  msgid "July"
373
  msgstr "Jul"
374
 
375
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
376
+ #: dashboard/publisher/adverts-edit.php:242
377
  msgid "August"
378
  msgstr "Avgust"
379
 
380
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
381
+ #: dashboard/publisher/adverts-edit.php:243
382
  msgid "September"
383
  msgstr "Septembar"
384
 
385
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
386
+ #: dashboard/publisher/adverts-edit.php:244
387
  msgid "October"
388
  msgstr "Oktobar"
389
 
390
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
391
+ #: dashboard/publisher/adverts-edit.php:245
392
  msgid "November"
393
  msgstr "Novembar"
394
 
395
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
396
+ #: dashboard/publisher/adverts-edit.php:246
397
  msgid "December"
398
  msgstr "Decembar"
399
 
455
  msgid "Fill in the ID of the type you want to display!"
456
  msgstr "Popunite ID tipa koji želite da prikažete!"
457
 
458
+ #: adrotate.php:102
459
  msgid "General Info"
460
  msgstr "Opšte informacije"
461
 
462
+ #: adrotate.php:103
463
  msgid "AdRotate Pro"
464
  msgstr "AdRotate Pro"
465
 
466
+ #: adrotate.php:104
467
  msgid "Manage Adverts"
468
  msgstr ""
469
 
470
+ #: adrotate.php:105 dashboard/publisher/groups-main.php:12
471
  msgid "Manage Groups"
472
  msgstr "Upravljajte grupama"
473
 
474
+ #: adrotate.php:106 adrotate.php:369
475
  #, fuzzy
476
  msgid "Manage Schedules"
477
  msgstr "Upravljati"
478
 
479
+ #: adrotate.php:107
480
  #, fuzzy
481
  msgid "Manage Media"
482
  msgstr "Media:"
483
 
484
+ #: adrotate.php:108
485
  msgid "Settings"
486
  msgstr "Postavke"
487
 
488
+ #: adrotate.php:128
489
  msgid "AdRotate Info"
490
  msgstr "AdRotate informacije"
491
 
492
+ #: adrotate.php:146
493
  #, fuzzy
494
  msgid "AdRotate Professional"
495
  msgstr "AdRotate promocije"
496
 
497
+ #: adrotate.php:186
498
  msgid "Advert Management"
499
  msgstr ""
500
 
501
+ #: adrotate.php:244 adrotate.php:311 adrotate.php:364
502
  msgid "Manage"
503
  msgstr "Upravljati"
504
 
505
+ #: adrotate.php:245 adrotate.php:312 adrotate.php:365
506
  msgid "Add New"
507
  msgstr "Dodati novi"
508
 
509
+ #: adrotate.php:305
510
  msgid "Group Management"
511
  msgstr "Menadžment grupe"
512
 
513
+ #: adrotate.php:314
514
  msgid "Report"
515
  msgstr "Izveštaj"
516
 
517
+ #: adrotate.php:360
518
  #, fuzzy
519
  msgid "Schedule Management available in AdRotate Pro"
520
  msgstr "Dostupno u AdRotate Pro"
521
 
522
+ #: adrotate.php:370
523
  #, fuzzy
524
  msgid ""
525
  "Schedule management and multiple schedules per advert is available in "
526
  "AdRotate Pro."
527
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
528
 
529
+ #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
530
  #: dashboard/publisher/adverts-main.php:114
531
+ #: dashboard/publisher/groups-edit.php:71
532
  #: dashboard/publisher/groups-main.php:89
533
  #, fuzzy
534
  msgid "More information"
535
  msgstr "Saznajte više"
536
 
537
+ #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
538
  #: dashboard/publisher/adverts-error.php:19
539
  #: dashboard/publisher/adverts-main.php:20
540
  #: dashboard/publisher/groups-main.php:20
541
  msgid "Bulk Actions"
542
  msgstr "Delo bulk-ovanja"
543
 
544
+ #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
545
  #: dashboard/publisher/adverts-error.php:29
546
  #: dashboard/publisher/adverts-main.php:30
547
  #: dashboard/publisher/groups-main.php:24
548
  msgid "Go"
549
  msgstr "Kreni"
550
 
551
+ #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
552
  #: dashboard/publisher/adverts-error.php:39
553
  #: dashboard/publisher/adverts-main.php:39
 
554
  #: dashboard/publisher/groups-main.php:32
555
  msgid "ID"
556
  msgstr "ID"
557
 
558
+ #: adrotate.php:388
559
  #, fuzzy
560
  msgid "Start"
561
  msgstr "Početno vreme (hh:mm):"
562
 
563
+ #: adrotate.php:388
564
  #, fuzzy
565
  msgid "End"
566
  msgstr "Završno vreme (hh:mm):"
567
 
568
+ #: adrotate.php:389
569
  msgid "Ads"
570
  msgstr "Oglasi"
571
 
572
+ #: adrotate.php:391
573
  #, fuzzy
574
  msgid "Max Impressions"
575
  msgstr "Utisci"
576
 
577
+ #: adrotate.php:392
578
  #, fuzzy
579
  msgid "Max Clicks"
580
  msgstr "Klikovi"
581
 
582
+ #: adrotate.php:422
583
  #, fuzzy
584
  msgid "No schedules created yet!"
585
  msgstr "Nijedan blok nije stvoren još uvek!"
586
 
587
+ #: adrotate.php:427
588
  #, fuzzy
589
  msgid "Easily manage your schedules from here with AdRotate Pro."
590
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
591
 
592
+ #: adrotate.php:427 adrotate.php:490
593
  #, fuzzy
594
  msgid "Upgrade today!"
595
  msgstr "Danas"
596
 
597
+ #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
598
+ #: dashboard/publisher/groups-edit.php:383
599
  msgid "Expires soon."
600
  msgstr "Ističe uskoro."
601
 
602
+ #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
603
+ #: dashboard/publisher/groups-edit.php:384
604
  msgid "Has expired."
605
  msgstr "Isteklo je."
606
 
607
+ #: adrotate.php:452
608
  #, fuzzy
609
  msgid "Media Management available in AdRotate Pro"
610
  msgstr "Dostupno u AdRotate Pro"
611
 
612
+ #: adrotate.php:454
613
  msgid "Upload images to the AdRotate Pro banners folder from here."
614
  msgstr ""
615
 
616
+ #: adrotate.php:454
617
  msgid ""
618
  "This is useful if you use responsive adverts with multiple images or have "
619
  "HTML5 adverts containing multiple files."
620
  msgstr ""
621
 
622
+ #: adrotate.php:454
623
  #, fuzzy
624
  msgid "Media uploading and management is available in AdRotate Pro."
625
  msgstr "Ova karakteristika je dostupna na AdRotate Pro"
626
 
627
+ #: adrotate.php:456
628
  msgid "Upload new file"
629
  msgstr ""
630
 
631
+ #: adrotate.php:457
632
  msgid "Accepted files:"
633
  msgstr ""
634
 
635
+ #: adrotate.php:457
636
  msgid "For HTML5 ads you can also upload html and javascript files."
637
  msgstr ""
638
 
639
+ #: adrotate.php:457
640
  msgid "Maximum size is 512Kb."
641
  msgstr ""
642
 
643
+ #: adrotate.php:457
644
  msgid "Important:"
645
  msgstr ""
646
 
647
+ #: adrotate.php:457
648
  msgid ""
649
  "Make sure your file has no spaces or special characters in the name. Replace "
650
  "spaces with a - or _."
651
  msgstr ""
652
 
653
+ #: adrotate.php:457
654
  msgid ""
655
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
656
  "file so it knows about the changed name. For example for the javascript file."
657
  msgstr ""
658
 
659
+ #: adrotate.php:460
660
  msgid ""
661
  "For responsive adverts make sure the filename is in the following format; "
662
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
663
  msgstr ""
664
 
665
+ #: adrotate.php:461
666
  msgid ""
667
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
668
  "filename instead of \".full\" for the various viewports."
669
  msgstr ""
670
 
671
+ #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
672
+ #: dashboard/publisher/groups-edit.php:316
673
  msgid "Example:"
674
  msgstr "Primer"
675
 
676
+ #: adrotate.php:462
677
  msgid ""
678
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
679
  "for different viewports."
680
  msgstr ""
681
 
682
+ #: adrotate.php:466
683
  msgid "Upload file"
684
  msgstr ""
685
 
686
+ #: adrotate.php:466
687
  msgid "Click only once per file!"
688
  msgstr ""
689
 
690
+ #: adrotate.php:469
691
  msgid "Available files in"
692
  msgstr ""
693
 
694
+ #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
695
  #: dashboard/publisher/groups-main.php:33
696
  msgid "Name"
697
  msgstr "Ime"
698
 
699
+ #: adrotate.php:475
700
  #, fuzzy
701
  msgid "Actions"
702
  msgstr "Delo bulk-ovanja"
703
 
704
+ #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
705
+ #: adrotate.php:484 adrotate.php:485 adrotate.php:486
706
  #: dashboard/publisher/adverts-disabled.php:22
707
  #: dashboard/publisher/adverts-error.php:21
708
  #: dashboard/publisher/adverts-main.php:22
709
  msgid "Delete"
710
  msgstr "Obrisati"
711
 
712
+ #: adrotate.php:490
713
  msgid ""
714
  "Make sure the banner images are not in use by adverts when you delete them!"
715
  msgstr ""
716
 
717
+ #: adrotate.php:490
718
  #, fuzzy
719
  msgid "Manage your banner folder from here with AdRotate Pro."
720
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
721
 
722
+ #: adrotate.php:516
723
  msgid "AdRotate Settings"
724
  msgstr "AdRotate postavke"
725
 
 
 
 
 
726
  #: dashboard/adrotatepro.php:20
727
  #, fuzzy
728
  msgid "Satisfy your advertisers"
916
  msgid "Adverts that need you"
917
  msgstr "Oglasi koji su vam potrebni"
918
 
919
+ #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
920
  #: dashboard/publisher/groups-main.php:34
921
  msgid "Adverts"
922
  msgstr "Oglasi"
959
  msgstr ""
960
 
961
  #: dashboard/publisher/adverts-disabled.php:21
962
+ #: dashboard/publisher/adverts-edit.php:170
963
  msgid "Activate"
964
  msgstr "Aktiviraj"
965
 
980
  "2pm je 14:00 sati . 6 prepodne je 6:00 sati ."
981
 
982
  #: dashboard/publisher/adverts-disabled.php:37
983
+ #: dashboard/publisher/adverts-edit.php:110
984
  #: dashboard/publisher/adverts-error.php:41
985
  #: dashboard/publisher/adverts-main.php:41
986
  msgid "Title"
988
 
989
  #: dashboard/publisher/adverts-disabled.php:38
990
  #: dashboard/publisher/adverts-main.php:44
991
+ #: dashboard/publisher/groups-edit.php:329
992
  #: dashboard/publisher/groups-main.php:36
993
  #, fuzzy
994
  msgid "Shown"
998
  #: dashboard/publisher/adverts-main.php:46
999
  #: dashboard/publisher/adverts-report.php:36
1000
  #: dashboard/publisher/adverts-report.php:57
1001
+ #: dashboard/publisher/groups-edit.php:330
1002
  #: dashboard/publisher/groups-main.php:38
1003
  #: dashboard/publisher/groups-report.php:37
1004
  #: dashboard/publisher/groups-report.php:58
1040
  msgstr "AdCode ne može biti prazan !"
1041
 
1042
  #: dashboard/publisher/adverts-edit.php:51
1043
+ msgid ""
1044
+ "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1045
+ "use!"
1046
  msgstr ""
1047
 
1048
  #: dashboard/publisher/adverts-edit.php:54
 
 
 
 
1049
  msgid ""
1050
+ "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1051
+ "use!"
1052
  msgstr ""
1053
 
1054
+ #: dashboard/publisher/adverts-edit.php:57
1055
  msgid ""
1056
  "There is a problem saving the image. Please reset your image and re-save the "
1057
  "ad!"
1058
  msgstr ""
1059
 
1060
+ #: dashboard/publisher/adverts-edit.php:60
 
 
 
 
1061
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1062
  msgstr ""
1063
 
1064
+ #: dashboard/publisher/adverts-edit.php:65
1065
  msgid ""
1066
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1067
  "the ad!"
1069
  "AdRotate ne može da pronađe grešku , alioglas obeležen pogrešno , pokušajte "
1070
  "ponovo čuvanja oglas !"
1071
 
1072
+ #: dashboard/publisher/adverts-edit.php:68
1073
  msgid "This ad is expired and currently not shown on your website!"
1074
  msgstr "Ovaj oglas je istekao i trenutno se ne prikazuje na sajtu!"
1075
 
1076
+ #: dashboard/publisher/adverts-edit.php:71
1077
  msgid "The ad will expire in less than 2 days!"
1078
  msgstr "Oglas ističe za manje od 2 dana !"
1079
 
1080
+ #: dashboard/publisher/adverts-edit.php:74
1081
  msgid "This ad will expire in less than 7 days!"
1082
  msgstr "Ovaj oglas će isteći za manje od 7 dana !"
1083
 
1084
+ #: dashboard/publisher/adverts-edit.php:77
1085
  msgid "This ad has been disabled and does not rotate on your site!"
1086
  msgstr "Ovaj oglas je onemogućen i ne rotira na vašem sajtu !"
1087
 
1088
+ #: dashboard/publisher/adverts-edit.php:102
1089
  #, fuzzy
1090
  msgid "New Advert"
1091
  msgstr ""
1092
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1093
  "Default: 6."
1094
 
1095
+ #: dashboard/publisher/adverts-edit.php:104
1096
  #, fuzzy
1097
  msgid "Edit Advert"
1098
  msgstr "Edituj"
1099
 
1100
+ #: dashboard/publisher/adverts-edit.php:116
1101
  msgid "AdCode"
1102
  msgstr ""
1103
 
1104
+ #: dashboard/publisher/adverts-edit.php:121
1105
  msgid "Basic Examples:"
1106
  msgstr "Osnovni Primeri :"
1107
 
1108
+ #: dashboard/publisher/adverts-edit.php:128
1109
  msgid "Useful tags"
1110
  msgstr ""
1111
 
1112
+ #: dashboard/publisher/adverts-edit.php:130
1113
  msgid "Insert the advert ID Number."
1114
  msgstr ""
1115
 
1116
+ #: dashboard/publisher/adverts-edit.php:130
1117
+ msgid "Required when selecting a asset below."
1118
  msgstr ""
1119
 
1120
+ #: dashboard/publisher/adverts-edit.php:130
1121
  msgid "Insert the advert name."
1122
  msgstr ""
1123
 
1124
+ #: dashboard/publisher/adverts-edit.php:130
1125
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1126
  msgstr ""
1127
 
1128
+ #: dashboard/publisher/adverts-edit.php:130
1129
  msgid "Add inside the <a> tag to open advert in a new window."
1130
  msgstr ""
1131
 
1132
+ #: dashboard/publisher/adverts-edit.php:130
1133
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1134
  msgstr ""
1135
 
1136
+ #: dashboard/publisher/adverts-edit.php:130
1137
  msgid ""
1138
  "Place the cursor in your AdCode where you want to add any of these tags and "
1139
  "click to add it."
1140
  msgstr ""
1141
 
1142
+ #: dashboard/publisher/adverts-edit.php:135
1143
  msgid "Preview"
1144
  msgstr "Pregled"
1145
 
1146
+ #: dashboard/publisher/adverts-edit.php:138
1147
  msgid ""
1148
  "Note: While this preview is an accurate one, it might look different then it "
1149
  "does on the website."
1151
  "Napomena : Iako je ovaj pregled jejedan tačan , to bi moglo da izgleda "
1152
  "drugačije onda to čini na sajtu ."
1153
 
1154
+ #: dashboard/publisher/adverts-edit.php:139
1155
  msgid ""
1156
  "This is because of CSS differences. Your themes CSS file is not active here!"
1157
  msgstr "To je zbog CSS razlika . Vaš teme CSS fajl nije aktivan ovde !"
1158
 
1159
+ #: dashboard/publisher/adverts-edit.php:144
1160
  msgid "Banner asset"
1161
  msgstr ""
1162
 
1163
+ #: dashboard/publisher/adverts-edit.php:147
1164
  msgid "WordPress media:"
1165
  msgstr ""
1166
 
1167
+ #: dashboard/publisher/adverts-edit.php:147
1168
  #, fuzzy
1169
  msgid "Select Banner"
1170
  msgstr "Baner Folder"
1171
 
1172
+ #: dashboard/publisher/adverts-edit.php:149
1173
  msgid "- OR -"
1174
  msgstr "- ILI -"
1175
 
1176
+ #: dashboard/publisher/adverts-edit.php:151
1177
  msgid "Banner folder:"
1178
  msgstr "Folder banera:"
1179
 
1180
+ #: dashboard/publisher/adverts-edit.php:152
1181
  msgid "No image selected"
1182
  msgstr "Nijedna slika nije izabrana"
1183
 
1184
+ #: dashboard/publisher/adverts-edit.php:156
1185
+ msgid "Use %asset% in the adcode instead of the file path."
1186
  msgstr ""
1187
 
1188
+ #: dashboard/publisher/adverts-edit.php:156
1189
  msgid ""
1190
  "Use either the text field or the dropdown. If the textfield has content that "
1191
  "field has priority."
1193
  "Koristite ili polje za tekst ili dropdown. Ako polje teksta ima sadržaj koji "
1194
  "polje ima prioritet ."
1195
 
1196
+ #: dashboard/publisher/adverts-edit.php:161
1197
+ #: dashboard/settings/statistics.php:17
1198
  msgid "Statistics"
1199
  msgstr "Statistike"
1200
 
1201
+ #: dashboard/publisher/adverts-edit.php:163
1202
  msgid "Enable click and impression tracking for this advert."
1203
  msgstr ""
1204
 
1205
+ #: dashboard/publisher/adverts-edit.php:164
1206
  msgid ""
1207
  "Note: Clicktracking does not work for Javascript adverts such as those "
1208
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1209
  "always supported."
1210
  msgstr ""
1211
 
1212
+ #: dashboard/publisher/adverts-edit.php:174
1213
  msgid "Yes, this ad will be used"
1214
  msgstr "Da , ovaj oglas će se koristiti"
1215
 
1216
+ #: dashboard/publisher/adverts-edit.php:175
1217
  msgid "No, do not show this ad anywhere"
1218
  msgstr "Ne , ne pokazuju nigde ovaj oglas"
1219
 
1220
+ #: dashboard/publisher/adverts-edit.php:182
1221
  #: dashboard/publisher/adverts-main.php:114
1222
+ #: dashboard/publisher/groups-edit.php:71
1223
  #: dashboard/publisher/groups-main.php:89
1224
  #, fuzzy
1225
  msgid "Get more features with AdRotate Pro."
1226
  msgstr "Nabvite jos karakteristika! AdRotate Pro."
1227
 
1228
+ #: dashboard/publisher/adverts-edit.php:185
1229
+ #: dashboard/publisher/adverts-edit.php:285
1230
+ #: dashboard/publisher/adverts-edit.php:408
1231
+ #: dashboard/publisher/adverts-edit.php:449
1232
  msgid "Save Advert"
1233
  msgstr "Sačuvaj oglas"
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:186
1236
+ #: dashboard/publisher/adverts-edit.php:286
1237
+ #: dashboard/publisher/adverts-edit.php:409
1238
+ #: dashboard/publisher/adverts-edit.php:450
1239
+ #: dashboard/publisher/groups-edit.php:150
1240
+ #: dashboard/publisher/groups-edit.php:297
1241
+ #: dashboard/publisher/groups-edit.php:389
1242
  msgid "Cancel"
1243
  msgstr "Ukini"
1244
 
1245
+ #: dashboard/publisher/adverts-edit.php:189
1246
+ #: dashboard/publisher/adverts-edit.php:391
1247
+ #: dashboard/publisher/groups-edit.php:132
1248
+ #: dashboard/publisher/groups-edit.php:279
1249
  msgid "Usage"
1250
  msgstr "upotreba"
1251
 
1252
+ #: dashboard/publisher/adverts-edit.php:193
1253
+ #: dashboard/publisher/adverts-edit.php:395
1254
+ #: dashboard/publisher/groups-edit.php:136
1255
+ #: dashboard/publisher/groups-edit.php:283
1256
  msgid "Widget"
1257
  msgstr ""
1258
 
1259
+ #: dashboard/publisher/adverts-edit.php:194
1260
+ #: dashboard/publisher/adverts-edit.php:396
1261
  msgid ""
1262
+ "Drag the AdRotate widget to the sidebar where you want to place the advert "
1263
+ "and select the advert or the group the advert is in."
1264
  msgstr ""
1265
 
1266
+ #: dashboard/publisher/adverts-edit.php:197
1267
+ #: dashboard/publisher/adverts-edit.php:399
1268
+ #: dashboard/publisher/groups-edit.php:140
1269
+ #: dashboard/publisher/groups-edit.php:287
1270
  msgid "In a post or page"
1271
  msgstr ""
1272
 
1273
+ #: dashboard/publisher/adverts-edit.php:199
1274
+ #: dashboard/publisher/adverts-edit.php:401
1275
+ #: dashboard/publisher/groups-edit.php:142
1276
+ #: dashboard/publisher/groups-edit.php:289
1277
  msgid "Directly in a theme"
1278
  msgstr ""
1279
 
1280
+ #: dashboard/publisher/adverts-edit.php:205
1281
  msgid "Schedule your advert"
1282
  msgstr ""
1283
 
1284
+ #: dashboard/publisher/adverts-edit.php:209
1285
  msgid "Start date (day/month/year)"
1286
  msgstr ""
1287
 
1288
+ #: dashboard/publisher/adverts-edit.php:230
1289
  msgid "End date (day/month/year)"
1290
  msgstr ""
1291
 
1292
+ #: dashboard/publisher/adverts-edit.php:253
1293
  msgid "Start time (hh:mm)"
1294
  msgstr ""
1295
 
1296
+ #: dashboard/publisher/adverts-edit.php:260
1297
  msgid "End time (hh:mm)"
1298
  msgstr ""
1299
 
1300
+ #: dashboard/publisher/adverts-edit.php:270
1301
  msgid "Maximum Clicks"
1302
  msgstr ""
1303
 
1304
+ #: dashboard/publisher/adverts-edit.php:271
1305
+ #: dashboard/publisher/adverts-edit.php:273
1306
  msgid "Leave empty or 0 to skip this."
1307
  msgstr "Ostavite prazno ili 0 da preskoči ovo."
1308
 
1309
+ #: dashboard/publisher/adverts-edit.php:272
1310
  msgid "Maximum Impressions"
1311
  msgstr ""
1312
 
1313
+ #: dashboard/publisher/adverts-edit.php:277
1314
  msgid "Important"
1315
  msgstr ""
1316
 
1317
+ #: dashboard/publisher/adverts-edit.php:278
1318
  msgid ""
1319
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1320
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1321
  "14:00 hours. 6AM is 6:00 hours."
1322
  msgstr ""
1323
 
1324
+ #: dashboard/publisher/adverts-edit.php:282
1325
  msgid ""
1326
  "Create multiple and more advanced schedules for each advert with AdRotate "
1327
  "Pro."
1328
  msgstr ""
1329
 
1330
+ #: dashboard/publisher/adverts-edit.php:282
1331
+ #: dashboard/publisher/adverts-edit.php:345
1332
+ #: dashboard/publisher/adverts-edit.php:389
1333
+ #: dashboard/publisher/groups-edit.php:196
1334
  #, fuzzy
1335
  msgid "Upgrade today"
1336
  msgstr "Danas"
1337
 
1338
+ #: dashboard/publisher/adverts-edit.php:289
1339
+ #: dashboard/publisher/groups-edit.php:153
1340
  msgid "Advanced"
1341
  msgstr ""
1342
 
1343
+ #: dashboard/publisher/adverts-edit.php:290
1344
  #, fuzzy
1345
  msgid "Everything below is optional."
1346
  msgstr "Naslov (opcionalno):"
1347
 
1348
+ #: dashboard/publisher/adverts-edit.php:290
1349
+ msgid "Available in AdRotate Pro!"
1350
  msgstr ""
1351
 
1352
+ #: dashboard/publisher/adverts-edit.php:295
1353
+ #: dashboard/publisher/adverts-main.php:42
1354
+ #: dashboard/publisher/groups-edit.php:332
1355
+ msgid "Weight"
1356
+ msgstr "Težina"
1357
 
1358
+ #: dashboard/publisher/adverts-edit.php:298
1359
+ msgid "Few impressions"
1360
  msgstr ""
1361
 
1362
+ #: dashboard/publisher/adverts-edit.php:303
1363
+ #, fuzzy
1364
+ msgid "Less than average"
1365
+ msgstr "Oglas ističe za manje od 2 dana !"
1366
 
1367
+ #: dashboard/publisher/adverts-edit.php:308
1368
+ msgid "Normal impressions"
1369
  msgstr ""
1370
 
1371
+ #: dashboard/publisher/adverts-edit.php:313
1372
+ #, fuzzy
1373
+ msgid "More than average"
1374
+ msgstr "Saznajte više"
1375
+
1376
+ #: dashboard/publisher/adverts-edit.php:318
1377
+ msgid "Many impressions"
1378
  msgstr ""
1379
 
1380
+ #: dashboard/publisher/adverts-edit.php:323
1381
+ msgid "Mobile"
1382
  msgstr ""
1383
 
1384
+ #: dashboard/publisher/adverts-edit.php:325
1385
+ msgid "Computers"
1386
+ msgstr ""
 
1387
 
1388
+ #: dashboard/publisher/adverts-edit.php:328
1389
+ msgid "Smartphones"
 
 
1390
  msgstr ""
1391
 
1392
+ #: dashboard/publisher/adverts-edit.php:331
1393
+ msgid "Tablets"
1394
+ msgstr ""
 
 
1395
 
1396
+ #: dashboard/publisher/adverts-edit.php:334
1397
  msgid ""
1398
+ "Also enable mobile support in the group this advert goes in or these are "
1399
+ "ignored."
1400
  msgstr ""
1401
 
1402
+ #: dashboard/publisher/adverts-edit.php:338
1403
+ #: dashboard/publisher/groups-edit.php:190
1404
  msgid "Sortorder"
1405
  msgstr ""
1406
 
1407
+ #: dashboard/publisher/adverts-edit.php:340
1408
+ #: dashboard/publisher/groups-edit.php:192
1409
  msgid "For administrative purposes set a sortorder."
1410
  msgstr "Za administrativne svrhe postavili sortorder ."
1411
 
1412
+ #: dashboard/publisher/adverts-edit.php:340
1413
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1414
  msgstr "Ostavite prazno ili 0 da preskočite ovo . Će podrazumevano ID oglasa ."
1415
 
1416
+ #: dashboard/publisher/adverts-edit.php:345
1417
  msgid ""
1418
  "With AdRotate Pro you can easily select which devices the advert should show "
1419
  "on!"
1420
  msgstr ""
1421
 
1422
+ #: dashboard/publisher/adverts-edit.php:347
1423
  msgid "Geo Targeting in AdRotate Pro"
1424
  msgstr ""
1425
 
1426
+ #: dashboard/publisher/adverts-edit.php:348
1427
  msgid ""
1428
  "Assign the advert to a group and enable that group to use Geo Targeting."
1429
  msgstr ""
1430
 
1431
+ #: dashboard/publisher/adverts-edit.php:352
1432
  msgid "Cities/States"
1433
  msgstr ""
1434
 
1435
+ #: dashboard/publisher/adverts-edit.php:355
1436
  msgid ""
1437
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1438
  "states ISO codes are supported)"
1439
  msgstr ""
1440
 
1441
+ #: dashboard/publisher/adverts-edit.php:355
1442
  msgid ""
1443
  "AdRotate does not check the validity of names so make sure you spell them "
1444
  "correctly!"
1445
  msgstr ""
1446
 
1447
+ #: dashboard/publisher/adverts-edit.php:359
1448
  msgid "Countries"
1449
  msgstr ""
1450
 
1451
+ #: dashboard/publisher/adverts-edit.php:384
1452
  #, fuzzy
1453
  msgid "Select the countries you want the adverts to show in."
1454
  msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
1455
 
1456
+ #: dashboard/publisher/adverts-edit.php:384
1457
  msgid "Cities take priority and will be filtered first."
1458
  msgstr ""
1459
 
1460
+ #: dashboard/publisher/adverts-edit.php:389
1461
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1462
  msgstr ""
1463
 
1464
+ #: dashboard/publisher/adverts-edit.php:413
1465
  msgid "Select Groups"
1466
  msgstr "Izbor grupe"
1467
 
1468
+ #: dashboard/publisher/adverts-edit.php:418
1469
  #, fuzzy
1470
  msgid "ID - Name"
1471
  msgstr "Ime"
1472
 
1473
+ #: dashboard/publisher/adverts-edit.php:428
1474
  #: dashboard/publisher/groups-main.php:60
1475
+ #: dashboard/settings/geotargeting.php:49
1476
  #, fuzzy
1477
  msgid "Default"
1478
  msgstr "Default - Prikazati po jedan oglas"
1479
 
1480
+ #: dashboard/publisher/adverts-edit.php:429
1481
  #: dashboard/publisher/groups-main.php:61
1482
  #, fuzzy
1483
  msgid "Dynamic"
1484
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
1485
 
1486
+ #: dashboard/publisher/adverts-edit.php:429
1487
  #: dashboard/publisher/groups-main.php:61
1488
  #, fuzzy
1489
  msgid "second rotation"
1490
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
1491
 
1492
+ #: dashboard/publisher/adverts-edit.php:430
1493
  #: dashboard/publisher/groups-main.php:62
1494
  #, fuzzy
1495
  msgid "Block"
1496
  msgstr "Menadžmet blokiranih"
1497
 
1498
+ #: dashboard/publisher/adverts-edit.php:430
1499
  #: dashboard/publisher/groups-main.php:62
1500
  #, fuzzy
1501
  msgid "grid"
1502
  msgstr ""
1503
  "Napravite mrežu za oglase. Popunjavanje 2 i 2 čini 2x2 mrežu. (Default: 2/2)"
1504
 
1505
+ #: dashboard/publisher/adverts-edit.php:431
1506
+ #: dashboard/publisher/groups-edit.php:198
1507
  #: dashboard/publisher/groups-main.php:63
1508
  #, fuzzy
1509
  msgid "Post Injection"
1510
  msgstr "U post ili stranicu:"
1511
 
1512
+ #: dashboard/publisher/adverts-edit.php:432
1513
  #, fuzzy
1514
  msgid "Geolocation"
1515
  msgstr "GeoLocation"
1516
 
1517
+ #: dashboard/publisher/adverts-edit.php:438
1518
+ #: dashboard/publisher/groups-edit.php:57
1519
  #: dashboard/publisher/groups-main.php:70
1520
  msgid "Mode"
1521
  msgstr "Mod"
1555
  msgstr "Za 7 dana"
1556
 
1557
  #: dashboard/publisher/adverts-error.php:71
1558
+ #: dashboard/publisher/groups-edit.php:382
1559
  msgid "Configuration errors."
1560
  msgstr "Konfiguracione greške."
1561
 
1568
  msgid "Export to XML"
1569
  msgstr "Izlazne opcije za"
1570
 
 
 
 
 
 
1571
  #: dashboard/publisher/adverts-main.php:45
1572
  #: dashboard/publisher/adverts-main.php:47
1573
  #: dashboard/publisher/groups-main.php:37
1606
  msgid "Monthly overview of clicks and impressions"
1607
  msgstr "Mesečni pregled klikova i utisaka"
1608
 
1609
+ #: dashboard/publisher/adverts-report.php:64
1610
+ #: dashboard/publisher/groups-report.php:65
1611
+ #: dashboard/settings/notifications.php:60
1612
+ #: dashboard/settings/notifications.php:90
1613
+ msgid "Note:"
1614
+ msgstr "Beleška:"
1615
+
1616
  #: dashboard/publisher/adverts-report.php:64
1617
  #: dashboard/publisher/groups-report.php:65
1618
  msgid ""
1631
  msgid "Edit Group"
1632
  msgstr "Edituj grupu"
1633
 
1634
+ #: dashboard/publisher/groups-edit.php:60
1635
  msgid "Default - Show one ad at a time"
1636
  msgstr "Default - Prikazati po jedan oglas"
1637
 
1638
+ #: dashboard/publisher/groups-edit.php:61
1639
  msgid "Dynamic Mode - Show a different ad every few seconds"
1640
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
1641
 
1642
+ #: dashboard/publisher/groups-edit.php:62
1643
  msgid "Block Mode - Show a block of adverts"
1644
  msgstr ""
1645
 
1646
+ #: dashboard/publisher/groups-edit.php:66
1647
  #, fuzzy
1648
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1649
  msgstr "AdRotate postavke"
1650
 
1651
+ #: dashboard/publisher/groups-edit.php:73
1652
+ #: dashboard/publisher/groups-edit.php:100
1653
  #, fuzzy
1654
  msgid "Dynamic and Block Mode"
1655
  msgstr "Blok mod - Prikaži blokove oglasa"
1656
 
1657
+ #: dashboard/publisher/groups-edit.php:74
1658
  #, fuzzy
1659
  msgid "Only required if your group is in Dynamic or Block mode."
1660
  msgstr "Blok mod - Prikaži blokove oglasa"
1661
 
1662
+ #: dashboard/publisher/groups-edit.php:78
1663
  msgid "Block size"
1664
  msgstr ""
1665
 
1666
+ #: dashboard/publisher/groups-edit.php:84
1667
  msgid "rows"
1668
  msgstr "redovi"
1669
 
1670
+ #: dashboard/publisher/groups-edit.php:88
1671
  msgid "columns"
1672
  msgstr "kolone"
1673
 
1674
+ #: dashboard/publisher/groups-edit.php:91
1675
  #, fuzzy
1676
  msgid "Block Mode"
1677
  msgstr "Blok mod - Prikaži blokove oglasa"
1678
 
1679
+ #: dashboard/publisher/groups-edit.php:91
1680
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1681
  msgstr ""
1682
 
1683
+ #: dashboard/publisher/groups-edit.php:95
1684
  msgid "Advert size"
1685
  msgstr ""
1686
 
1687
+ #: dashboard/publisher/groups-edit.php:97
1688
  msgid "pixel(s) wide"
1689
  msgstr "širina piksela"
1690
 
1691
+ #: dashboard/publisher/groups-edit.php:97
1692
  msgid "pixel(s) high."
1693
  msgstr "visina piksela"
1694
 
1695
+ #: dashboard/publisher/groups-edit.php:100
1696
  msgid ""
1697
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1698
  "recommended). Default: 125/125."
1699
  msgstr ""
1700
 
1701
+ #: dashboard/publisher/groups-edit.php:104
1702
  #, fuzzy
1703
  msgid "Automated refresh"
1704
  msgstr ""
1705
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
1706
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
1707
 
1708
+ #: dashboard/publisher/groups-edit.php:123
1709
  msgid "seconds."
1710
  msgstr "sekundi."
1711
 
1712
+ #: dashboard/publisher/groups-edit.php:126
1713
  #, fuzzy
1714
  msgid "Dynamic Mode"
1715
  msgstr "Dinamični mod-Prikaži drugačiji oglas svakih par sekundi"
1716
 
1717
+ #: dashboard/publisher/groups-edit.php:126
1718
  msgid ""
1719
  "Load a new advert in this interval without reloading the page. Default: 6."
1720
  msgstr ""
1721
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
1722
  "Default: 6."
1723
 
1724
+ #: dashboard/publisher/groups-edit.php:137
1725
+ #: dashboard/publisher/groups-edit.php:284
1726
  msgid ""
1727
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1728
  "Adverts\" and enter ID"
1729
  msgstr ""
1730
 
1731
+ #: dashboard/publisher/groups-edit.php:149
1732
+ #: dashboard/publisher/groups-edit.php:296
1733
+ #: dashboard/publisher/groups-edit.php:388
1734
  #, fuzzy
1735
  msgid "Save Group"
1736
  msgstr "Sačuvati"
1737
 
1738
+ #: dashboard/publisher/groups-edit.php:157
1739
  msgid "Advert Margin"
1740
  msgstr "Margina oglasa"
1741
 
1742
+ #: dashboard/publisher/groups-edit.php:159
1743
  msgid "pixel(s)"
1744
  msgstr "pikseli"
1745
 
1746
+ #: dashboard/publisher/groups-edit.php:162
1747
  #, fuzzy
1748
  msgid "A transparent area outside the advert in pixels. Default: 0."
1749
  msgstr "Nevidljiva granica van oglasa u pikselima. (Default: 1)"
1750
 
1751
+ #: dashboard/publisher/groups-edit.php:162
1752
  #, fuzzy
1753
  msgid "Set to 0 to disable."
1754
  msgstr "Default:10 . Podesite na 0 da isključite ovaj tajmer ."
1755
 
1756
+ #: dashboard/publisher/groups-edit.php:162
1757
  msgid "Margins are automatically disabled for blocks where required."
1758
  msgstr ""
1759
 
1760
+ #: dashboard/publisher/groups-edit.php:166
1761
  #, fuzzy
1762
  msgid "Align the group"
1763
  msgstr "Gupni oglasi - Koristite grupni ID"
1764
 
1765
+ #: dashboard/publisher/groups-edit.php:169
1766
  #, fuzzy
1767
  msgid "None (Default)"
1768
  msgstr "Default - Prikazati po jedan oglas"
1769
 
1770
+ #: dashboard/publisher/groups-edit.php:170
1771
  msgid "Left"
1772
  msgstr ""
1773
 
1774
+ #: dashboard/publisher/groups-edit.php:171
1775
  #, fuzzy
1776
  msgid "Right"
1777
  msgstr "Težina"
1778
 
1779
+ #: dashboard/publisher/groups-edit.php:172
1780
  msgid "Center"
1781
  msgstr ""
1782
 
1783
+ #: dashboard/publisher/groups-edit.php:176
1784
  msgid ""
1785
  "Align the group in your post or page. Using 'center' may affect your margin "
1786
  "setting. Not every theme supports this feature."
1787
  msgstr ""
1788
 
1789
+ #: dashboard/publisher/groups-edit.php:180
1790
+ #: dashboard/settings/advertisers.php:38
1791
  #, fuzzy
1792
  msgid "Geo Targeting"
1793
  msgstr "GeoTargeting"
1794
 
1795
+ #: dashboard/publisher/groups-edit.php:181
1796
  msgid "Enable Geo Targeting for this group."
1797
  msgstr ""
1798
 
1799
+ #: dashboard/publisher/groups-edit.php:182
1800
  #, fuzzy
1801
  msgid "Do not forget to tell the adverts for which areas they should show."
1802
  msgstr "Ne , ne pokazuju nigde ovaj oglas"
1803
 
1804
+ #: dashboard/publisher/groups-edit.php:185
1805
  msgid "Mobile support"
1806
  msgstr ""
1807
 
1808
+ #: dashboard/publisher/groups-edit.php:186
1809
  msgid "Enable mobile support for this group."
1810
  msgstr ""
1811
 
1812
+ #: dashboard/publisher/groups-edit.php:187
1813
  msgid "Do not forget to put at least one mobile advert in this group."
1814
  msgstr ""
1815
 
1816
+ #: dashboard/publisher/groups-edit.php:192
1817
  msgid "Leave empty or 0 to skip this. Will default to group id."
1818
  msgstr "Ostavite prazno ili 0 da preskočite ovo . Biće default ID grupe ."
1819
 
1820
+ #: dashboard/publisher/groups-edit.php:196
1821
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1822
  msgstr ""
1823
 
1824
+ #: dashboard/publisher/groups-edit.php:201
1825
  msgid "In categories?"
1826
  msgstr ""
1827
 
1828
+ #: dashboard/publisher/groups-edit.php:205
1829
+ #: dashboard/publisher/groups-edit.php:243
1830
+ #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1831
  #, fuzzy
1832
  msgid "Disabled"
1833
  msgstr "Onemogući odgovore"
1834
 
1835
+ #: dashboard/publisher/groups-edit.php:206
1836
+ #: dashboard/publisher/groups-edit.php:244
1837
  #, fuzzy
1838
  msgid "Before content"
1839
  msgstr "Pre objavljenog sadržaja"
1840
 
1841
+ #: dashboard/publisher/groups-edit.php:207
1842
+ #: dashboard/publisher/groups-edit.php:245
1843
  #, fuzzy
1844
  msgid "After content"
1845
  msgstr "Pre i posle sadržaju"
1846
 
1847
+ #: dashboard/publisher/groups-edit.php:208
1848
+ #: dashboard/publisher/groups-edit.php:246
1849
  #, fuzzy
1850
  msgid "Before and after content"
1851
  msgstr "Pre i posle sadržaju"
1852
 
1853
+ #: dashboard/publisher/groups-edit.php:209
1854
+ #: dashboard/publisher/groups-edit.php:247
1855
  msgid "Inside the content..."
1856
  msgstr ""
1857
 
1858
+ #: dashboard/publisher/groups-edit.php:215
1859
+ #: dashboard/publisher/groups-edit.php:253
1860
  msgid "after the middle paragraph"
1861
  msgstr ""
1862
 
1863
+ #: dashboard/publisher/groups-edit.php:216
1864
+ #: dashboard/publisher/groups-edit.php:254
1865
  msgid "after the 1st paragraph"
1866
  msgstr ""
1867
 
1868
+ #: dashboard/publisher/groups-edit.php:217
1869
+ #: dashboard/publisher/groups-edit.php:255
1870
  msgid "after the 2nd paragraph"
1871
  msgstr ""
1872
 
1873
+ #: dashboard/publisher/groups-edit.php:218
1874
+ #: dashboard/publisher/groups-edit.php:256
1875
  msgid "after the 3rd paragraph"
1876
  msgstr ""
1877
 
1878
+ #: dashboard/publisher/groups-edit.php:219
1879
+ #: dashboard/publisher/groups-edit.php:257
1880
  msgid "after the 4th paragraph"
1881
  msgstr ""
1882
 
1883
+ #: dashboard/publisher/groups-edit.php:220
1884
+ #: dashboard/publisher/groups-edit.php:258
1885
  msgid "after the 5th paragraph"
1886
  msgstr ""
1887
 
1888
+ #: dashboard/publisher/groups-edit.php:221
1889
+ #: dashboard/publisher/groups-edit.php:259
1890
  msgid "after the 6th paragraph"
1891
  msgstr ""
1892
 
1893
+ #: dashboard/publisher/groups-edit.php:222
1894
+ #: dashboard/publisher/groups-edit.php:260
1895
  msgid "after the 7th paragraph"
1896
  msgstr ""
1897
 
1898
+ #: dashboard/publisher/groups-edit.php:223
1899
+ #: dashboard/publisher/groups-edit.php:261
1900
  msgid "after the 8th paragraph"
1901
  msgstr ""
1902
 
1903
+ #: dashboard/publisher/groups-edit.php:229
1904
  msgid "Which categories?"
1905
  msgstr "Koje kategorije?"
1906
 
1907
+ #: dashboard/publisher/groups-edit.php:234
1908
  msgid "Click the categories posts you want the adverts to show in."
1909
  msgstr "Kliknite na poruke kategorije koje želite da se prikažu oglasi."
1910
 
1911
+ #: dashboard/publisher/groups-edit.php:239
1912
  msgid "In pages?"
1913
  msgstr ""
1914
 
1915
+ #: dashboard/publisher/groups-edit.php:267
1916
  msgid "Which pages?"
1917
  msgstr "Koje stranice ?"
1918
 
1919
+ #: dashboard/publisher/groups-edit.php:272
1920
  msgid "Click the pages you want the adverts to show in."
1921
  msgstr "Izaberite stranice koje želite da reklama pokaže"
1922
 
1923
+ #: dashboard/publisher/groups-edit.php:300
1924
  #, fuzzy
1925
  msgid "Wrapper code"
1926
  msgstr "Kod omotača (Opcionalno) - Obmotava se oko svakog posebnog oglasa"
1927
 
1928
+ #: dashboard/publisher/groups-edit.php:301
1929
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1930
  msgstr ""
1931
 
1932
+ #: dashboard/publisher/groups-edit.php:305
1933
  msgid "Before advert"
1934
  msgstr ""
1935
 
1936
+ #: dashboard/publisher/groups-edit.php:309
1937
  msgid "Options:"
1938
  msgstr "Opcije :"
1939
 
1940
+ #: dashboard/publisher/groups-edit.php:313
1941
  msgid "After advert"
1942
  msgstr ""
1943
 
1944
+ #: dashboard/publisher/groups-edit.php:322
1945
  msgid "Select adverts"
1946
  msgstr ""
1947
 
1948
+ #: dashboard/publisher/groups-edit.php:327
1949
  msgid "Choose adverts"
1950
  msgstr ""
1951
 
1952
+ #: dashboard/publisher/groups-edit.php:333
1953
  msgid "Visible until"
1954
  msgstr "Vidljivo do"
1955
 
1956
+ #: dashboard/publisher/groups-edit.php:375
1957
  msgid "No adverts created!"
1958
  msgstr ""
1959
 
1973
  msgid "This action can not be undone!"
1974
  msgstr "Ovo delo se ne može povratiti!"
1975
 
1976
+ #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1977
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
1978
  msgid "OK to continue, CANCEL to stop."
1979
  msgstr "OK da biste nastavili , CANCEL da se zaustavi ."
1980
 
1987
  msgid "Statistics for group"
1988
  msgstr "Sttistike za"
1989
 
1990
+ #: dashboard/settings/advertisers.php:16
1991
  msgid "Advertisers - Available in AdRotate Pro"
1992
  msgstr ""
1993
 
1994
+ #: dashboard/settings/advertisers.php:17
1995
  #, fuzzy
1996
  msgid "Enable advertisers so they can review and manage their own ads."
1997
  msgstr "Omogući oglašivače"
1998
 
1999
+ #: dashboard/settings/advertisers.php:20
2000
  msgid "Enable Advertisers"
2001
  msgstr "Omogući oglašivače"
2002
 
2003
+ #: dashboard/settings/advertisers.php:22
2004
  msgid "Allow adverts to be coupled to users (Advertisers)."
2005
  msgstr "Dozvoli reklame, da se zajedno sa korisnicima ( oglašivači ) ."
2006
 
2007
+ #: dashboard/settings/advertisers.php:26
2008
  msgid "Edit/update adverts"
2009
  msgstr "Edit/update oglasi"
2010
 
2011
+ #: dashboard/settings/advertisers.php:28
2012
  msgid "Allow advertisers to add new or edit their adverts."
2013
  msgstr "Dozvoli oglašavačima da dodate nove ili izmeniti njihove reklame ."
2014
 
2015
+ #: dashboard/settings/advertisers.php:32
2016
+ msgid "Mobile adverts"
2017
+ msgstr ""
2018
+
2019
+ #: dashboard/settings/advertisers.php:34
2020
+ msgid "Allow advertisers to specify on which devices their ads will show."
2021
+ msgstr ""
2022
+
2023
+ #: dashboard/settings/advertisers.php:40
2024
  msgid ""
2025
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2026
  "be enabled, too."
2027
  msgstr ""
2028
 
2029
+ #: dashboard/settings/advertisers.php:44
2030
  msgid "Advertiser role"
2031
  msgstr "Uloga oglašivača"
2032
 
2033
+ #: dashboard/settings/advertisers.php:46
2034
  msgid "Create a seperate user role for your advertisers."
2035
  msgstr ""
2036
 
2037
+ #: dashboard/settings/advertisers.php:47
2038
  msgid ""
2039
  "Don't forget to give these users access to their advertiser dashboard via "
2040
  "the Roles tab."
2041
  msgstr ""
2042
 
2043
+ #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2044
+ #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2045
+ #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2046
+ #: dashboard/settings/statistics.php:73
2047
+ msgid "Update Options"
2048
+ msgstr "Update opcije"
2049
+
2050
+ #: dashboard/settings/general.php:17
2051
  msgid "General Settings"
2052
  msgstr ""
2053
 
2054
+ #: dashboard/settings/general.php:18
2055
  msgid "General settings for AdRotate."
2056
  msgstr ""
2057
 
2058
+ #: dashboard/settings/general.php:18 dashboard/settings/statistics.php:18
2059
  msgid "Some options are only available in AdRotate Pro!"
2060
  msgstr ""
2061
 
2062
+ #: dashboard/settings/general.php:21
2063
  msgid "Shortcode in widgets"
2064
  msgstr ""
2065
 
2066
+ #: dashboard/settings/general.php:22
2067
  msgid ""
2068
  "Enable this option to if your theme does not support shortcodes in the "
2069
  "WordPress text widget."
2070
  msgstr ""
2071
 
2072
+ #: dashboard/settings/general.php:25
2073
  msgid "Disable live preview"
2074
  msgstr ""
2075
 
2076
+ #: dashboard/settings/general.php:26
2077
  msgid ""
2078
  "Enable this option if you have faulty adverts that overflow their designated "
2079
  "area while creating/editing adverts."
2080
  msgstr ""
2081
 
2082
+ #: dashboard/settings/general.php:29
2083
  msgid "Disable dynamic mode"
2084
  msgstr ""
2085
 
2086
+ #: dashboard/settings/general.php:30
2087
  msgid ""
2088
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2089
  "you notice skipping or jumpy content."
2090
  msgstr ""
2091
 
2092
+ #: dashboard/settings/general.php:33
2093
  #, fuzzy
2094
  msgid "Load jQuery"
2095
  msgstr ""
2096
  "Ubacite novu reklamu u ovom intervalu , bez ponovnog učitavanja stranice."
2097
  "Default: 6."
2098
 
2099
+ #: dashboard/settings/general.php:34
2100
  msgid ""
2101
  "Enable this option if your theme does not load jQuery. jQuery is required "
2102
  "for dynamic groups, statistics and some other features."
2103
  msgstr ""
2104
 
2105
+ #: dashboard/settings/general.php:37
2106
  msgid "Load scripts in footer?"
2107
  msgstr ""
2108
 
2109
+ #: dashboard/settings/general.php:38
2110
  msgid ""
2111
  "Enable this option if you want to load all AdRotate Javascripts in the "
2112
  "footer of your site."
2113
  msgstr ""
2114
 
2115
+ #: dashboard/settings/general.php:41
2116
  msgid "Adblock disguise"
2117
  msgstr ""
2118
 
2119
+ #: dashboard/settings/general.php:43
2120
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2121
  msgstr ""
2122
 
2123
+ #: dashboard/settings/general.php:44
2124
  msgid ""
2125
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2126
  msgstr ""
2127
 
2128
+ #: dashboard/settings/general.php:44
2129
  msgid ""
2130
  "To also apply this feature to widgets, use a text widget with a shortcode "
2131
  "instead of the AdRotate widget."
2132
  msgstr ""
2133
 
2134
+ #: dashboard/settings/general.php:44
2135
  msgid ""
2136
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2137
  "feature will have little effect!"
2138
  msgstr ""
2139
 
2140
+ #: dashboard/settings/general.php:49
2141
  msgid "Banner Folder"
2142
  msgstr "Baner Folder"
2143
 
2144
+ #: dashboard/settings/general.php:50
2145
  #, fuzzy
2146
  msgid "Set a location where your banner images will be stored."
2147
  msgstr ""
2148
  "Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
2149
  "banners/)."
2150
 
2151
+ #: dashboard/settings/general.php:53
2152
  #, fuzzy
2153
  msgid "Location"
2154
  msgstr "Ili nema banera, onemogućeni su ili nije kvalifikovan za ovu lokaciju!"
2155
 
2156
+ #: dashboard/settings/general.php:55
2157
  #, fuzzy
2158
  msgid "(Default: wp-content/banners/)."
2159
  msgstr ""
2160
  "Odredite lokaciju gde će se Vaš baner slike smestiti .(Default: /wp-content/"
2161
  "banners/)."
2162
 
2163
+ #: dashboard/settings/general.php:56
2164
  msgid ""
2165
  "To try and trick ad blockers you could set the folder to something crazy "
2166
  "like:"
2168
  "Da biste probali i prevarili blokatore oglasa možete da odredite folder u "
2169
  "nešto ludo kao što su :"
2170
 
2171
+ #: dashboard/settings/general.php:57
2172
  msgid ""
2173
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2174
  "will show errors when the folder is missing."
2176
  "Ovaj folder neće biti kreirani automatski ako se ona ne postoji . AdRotate "
2177
  "će pokazati greške kada folder nedostaje ."
2178
 
2179
+ #: dashboard/settings/general.php:62
2180
  #, fuzzy
2181
  msgid "Bot filter"
2182
  msgstr "User- agent filter"
2183
 
2184
+ #: dashboard/settings/general.php:63
2185
  msgid "The bot filter is used for the AdRotate stats tracker."
2186
  msgstr ""
2187
 
2188
+ #: dashboard/settings/general.php:66
2189
  msgid "User-Agent Filter"
2190
  msgstr "User- agent filter"
2191
 
2192
+ #: dashboard/settings/general.php:69
2193
  msgid ""
2194
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2195
  msgstr ""
2196
 
2197
+ #: dashboard/settings/general.php:70
2198
  msgid ""
2199
  "Keep in mind that this might give false positives. The word 'fire' also "
2200
  "matches 'firefox', but not vice-versa. So be careful!"
2201
  msgstr ""
2202
 
2203
+ #: dashboard/settings/general.php:71
2204
  msgid ""
2205
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2206
  "characters are stripped out."
2207
  msgstr ""
2208
 
2209
+ #: dashboard/settings/general.php:72
2210
  msgid ""
2211
  "Additionally to the list specified here, empty User-Agents are blocked as "
2212
  "well."
2214
  "Pored toga na spisku ovde , prazne korisnički agenti su blokirani , kao "
2215
  "dobro."
2216
 
2217
+ #: dashboard/settings/general.php:72
2218
  msgid "Learn more about"
2219
  msgstr "Saznajte više o"
2220
 
2221
+ #: dashboard/settings/general.php:72
2222
  msgid "user-agents"
2223
  msgstr "korisnici-agenti"
2224
 
2225
+ #: dashboard/settings/geotargeting.php:17
2226
  msgid "Geo Targeting - Available in AdRotate Pro"
2227
  msgstr ""
2228
 
2229
+ #: dashboard/settings/geotargeting.php:18
2230
  msgid "Target certain areas in the world for better advertising oppurtunities."
2231
  msgstr ""
2232
 
2233
+ #: dashboard/settings/geotargeting.php:21
2234
  msgid "Which Geo Service"
2235
  msgstr ""
2236
 
2237
+ #: dashboard/settings/geotargeting.php:28
2238
+ msgid "Experimental"
 
 
2239
  msgstr ""
2240
 
2241
+ #: dashboard/settings/geotargeting.php:31
2242
+ msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2243
+ msgstr ""
2244
+
2245
+ #: dashboard/settings/geotargeting.php:32
2246
+ #: dashboard/settings/geotargeting.php:36
2247
+ #: dashboard/settings/geotargeting.php:40
2248
+ msgid "Supports:"
2249
+ msgstr ""
2250
+
2251
+ #: dashboard/settings/geotargeting.php:33
2252
+ #: dashboard/settings/geotargeting.php:37
2253
+ #: dashboard/settings/geotargeting.php:41
2254
+ msgid "Scalability:"
2255
  msgstr ""
2256
 
2257
  #: dashboard/settings/geotargeting.php:33
2258
+ msgid "Suitable for small to medium websites."
2259
+ msgstr ""
2260
+
2261
+ #: dashboard/settings/geotargeting.php:35
2262
+ msgid ""
2263
+ "The most accurate geo targeting you can get for only $20 USD per 50000 "
2264
+ "lookups."
2265
+ msgstr ""
2266
+
2267
+ #: dashboard/settings/geotargeting.php:37
2268
+ msgid "Suitable for any size website as long as you have lookups."
2269
+ msgstr ""
2270
+
2271
+ #: dashboard/settings/geotargeting.php:39
2272
+ msgid "Basic geolocation included in every CloudFlare account."
2273
+ msgstr ""
2274
+
2275
+ #: dashboard/settings/geotargeting.php:41
2276
+ msgid "Suitable for any size website."
2277
+ msgstr ""
2278
+
2279
+ #: dashboard/settings/geotargeting.php:46
2280
  msgid "Geo Cookie Lifespan"
2281
  msgstr ""
2282
 
2283
+ #: dashboard/settings/geotargeting.php:55
2284
  msgid "Hours."
2285
  msgstr ""
2286
 
2287
+ #: dashboard/settings/geotargeting.php:56
2288
  msgid ""
2289
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2290
  "cookie last? A longer period is less accurate for mobile users but may "
2291
  "reduce the usage of your lookups drastically."
2292
  msgstr ""
2293
 
2294
+ #: dashboard/settings/geotargeting.php:62
2295
  msgid "MaxMind City/Country"
2296
  msgstr ""
2297
 
2298
+ #: dashboard/settings/geotargeting.php:65
2299
  msgid "Username/Email"
2300
  msgstr ""
2301
 
2302
+ #: dashboard/settings/geotargeting.php:69
2303
  msgid "Password/License Key"
2304
  msgstr ""
2305
 
2306
+ #: dashboard/settings/maintenance.php:16
2307
  msgid "Maintenance"
2308
  msgstr "Održavanje"
2309
 
2310
+ #: dashboard/settings/maintenance.php:17
2311
  msgid ""
2312
  "Use these functions when you notice your database is slow, unresponsive and "
2313
  "sluggish."
2314
  msgstr ""
2315
 
2316
+ #: dashboard/settings/maintenance.php:20 dashboard/settings/maintenance.php:22
2317
  msgid "Optimize Database"
2318
  msgstr "Optimizacija baze podataka"
2319
 
2320
+ #: dashboard/settings/maintenance.php:22
2321
  msgid "You are about to optimize the AdRotate database."
2322
  msgstr "Na putu ste da optimizirate AdRotate bazu podataka ."
2323
 
2324
+ #: dashboard/settings/maintenance.php:22
2325
  msgid "Did you make a backup of your database?"
2326
  msgstr "Da li ste napravili rezervnu kopiju baze podataka ?"
2327
 
2328
+ #: dashboard/settings/maintenance.php:22
2329
  msgid ""
2330
  "This may take a moment and may cause your website to respond slow "
2331
  "temporarily!"
2333
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
2334
  "sporo privremeno !"
2335
 
2336
+ #: dashboard/settings/maintenance.php:23
2337
  msgid "Cleans up overhead data in the AdRotate tables."
2338
  msgstr "Čiste se režijski podaci u tabelama AdRotate ."
2339
 
2340
+ #: dashboard/settings/maintenance.php:24
2341
  msgid ""
2342
  "Overhead data is accumulated garbage resulting from many changes you've "
2343
  "made. This can vary from nothing to hundreds of KiB of data."
2345
  "Opšti podaci se akumulira smeća usled mnogih promena koje ste napravili . "
2346
  "Ovo može da varira od nule do nekoliko stotina KiB podataka ."
2347
 
2348
+ #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
2349
  msgid "Clean-up Database"
2350
  msgstr "Čišćenje baze"
2351
 
2352
+ #: dashboard/settings/maintenance.php:30
2353
  #, fuzzy
2354
  msgid ""
2355
  "You are about to clean up your database. This may delete expired schedules "
2356
  "and older statistics."
2357
  msgstr "Čišćenje baze"
2358
 
2359
+ #: dashboard/settings/maintenance.php:30
2360
  #, fuzzy
2361
  msgid "Are you sure you want to continue?"
2362
  msgstr "Popunite ID tipa koji želite da prikažete!"
2363
 
2364
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
2365
  #, fuzzy
2366
  msgid "This might take a while and may slow down your site during this action!"
2367
  msgstr ""
2368
  "To može da potraje nekoliko trenutaka i može izazvati vaš sajt da reaguju "
2369
  "sporo privremeno !"
2370
 
2371
+ #: dashboard/settings/maintenance.php:31
2372
  #, fuzzy
2373
  msgid "Delete stats older than 356 days (Optional)."
2374
  msgstr "Uloga obrisati oglase i resetovanje ."
2375
 
2376
+ #: dashboard/settings/maintenance.php:32
2377
  msgid ""
2378
  "AdRotate creates empty records when you start making ads, groups or "
2379
  "schedules. In rare occasions these records are faulty."
2380
  msgstr ""
2381
 
2382
+ #: dashboard/settings/maintenance.php:32
2383
  msgid ""
2384
  "If you made an ad, group or schedule that does not save when you make it use "
2385
  "this button to delete those empty records."
2386
  msgstr ""
2387
 
2388
+ #: dashboard/settings/maintenance.php:32
2389
  msgid ""
2390
  "Additionally you can clean up old schedules and/or statistics. This will "
2391
  "improve the speed of your site."
2392
  msgstr ""
2393
 
2394
+ #: dashboard/settings/maintenance.php:36
2395
  msgid "Re-evaluate Ads"
2396
  msgstr "Ponovo ocenjeni oglasi"
2397
 
2398
+ #: dashboard/settings/maintenance.php:38
2399
  msgid "Re-evaluate all ads"
2400
  msgstr "Ponovo ocenite sve oglase"
2401
 
2402
+ #: dashboard/settings/maintenance.php:38
2403
  msgid "You are about to check all ads for errors."
2404
  msgstr "Vi ste o tome da proveri sve oglase za greške ."
2405
 
2406
+ #: dashboard/settings/maintenance.php:39
2407
  msgid ""
2408
  "This will apply all evaluation rules to all ads to see if any error slipped "
2409
  "in. Normally you should not need this feature."
2411
  "Ovo će primeniti sva pravila za ocenjivanje na sve oglase da vidim da li "
2412
  "bilo koja greška okliznuo unutra Normalno ne bi trebalo ovu funkciju ."
2413
 
2414
+ #: dashboard/settings/maintenance.php:43
2415
  msgid ""
2416
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2417
  "database. They only apply to your ads/groups and stats. Not to other "
2424
  "is not a valid point in any case."
2425
  msgstr ""
2426
 
2427
+ #: dashboard/settings/maintenance.php:45
2428
  msgid "Troubleshooting"
2429
  msgstr "Rešavanje problema"
2430
 
2431
+ #: dashboard/settings/maintenance.php:46
2432
  msgid ""
2433
  "The below options are not meant for normal use and are only there for "
2434
  "developers to review saved settings or how ads are selected. These can be "
2436
  "SHOULD BE LEFT UNCHECKED!!"
2437
  msgstr ""
2438
 
2439
+ #: dashboard/settings/maintenance.php:49
2440
  msgid "Developer Debug"
2441
  msgstr "Debug za programera"
2442
 
2443
+ #: dashboard/settings/maintenance.php:51
2444
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2445
  msgstr ""
2446
 
2447
+ #: dashboard/settings/maintenance.php:52
2448
  msgid "View advert specs and (some) stats in the dashboard."
2449
  msgstr ""
2450
 
2451
+ #: dashboard/settings/maintenance.php:53
2452
  #, fuzzy
2453
  msgid ""
2454
  "Disable timers for clicks and impressions and enable a alert window for "
2455
  "clicktracking."
2456
  msgstr "Pratite klikove i prikaze ."
2457
 
2458
+ #: dashboard/settings/maintenance.php:54
2459
  msgid "Temporarily disable encryption on the redirect url."
2460
  msgstr "Privremeno onemogući šifrovanje na URL adresu za preusmeravanje ."
2461
 
2462
+ #: dashboard/settings/maintenance.php:59
2463
  msgid "Status and Versions"
2464
  msgstr ""
2465
 
 
 
 
 
 
 
 
 
2466
  #: dashboard/settings/maintenance.php:62
 
 
 
 
 
 
 
 
2467
  #, fuzzy
2468
  msgid "Current status of adverts"
2469
  msgstr "Trenutni raspored"
2470
 
2471
+ #: dashboard/settings/maintenance.php:63
2472
  #, fuzzy
2473
  msgid "Normal"
2474
  msgstr ""
2477
  "To se može koristiti kao mera za rešavanje problema na zahtev , ali za "
2478
  "normalnu upotrebu oni treba da budu levo neprovereni "
2479
 
2480
+ #: dashboard/settings/maintenance.php:63
2481
  #, fuzzy
2482
  msgid "Error"
2483
  msgstr "Nepoznati error se ukazao."
2484
 
2485
+ #: dashboard/settings/maintenance.php:63
2486
  #, fuzzy
2487
  msgid "Expired"
2488
  msgstr "Isteklo je."
2489
 
2490
+ #: dashboard/settings/maintenance.php:63
2491
  #, fuzzy
2492
  msgid "Expires Soon"
2493
  msgstr "Ističe uskoro."
2494
 
2495
+ #: dashboard/settings/maintenance.php:63
2496
  msgid "Unknown"
2497
  msgstr ""
2498
 
2499
+ #: dashboard/settings/maintenance.php:66
2500
  msgid "Banners/assets Folder"
2501
  msgstr ""
2502
 
2503
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2504
  msgid "Exists and appears writable"
2505
  msgstr ""
2506
 
2507
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2508
  msgid "Not writable or does not exist"
2509
  msgstr ""
2510
 
2511
+ #: dashboard/settings/maintenance.php:70
2512
+ msgid "Reports Folder"
2513
+ msgstr ""
2514
+
2515
  #: dashboard/settings/maintenance.php:76
2516
+ msgid "Advert evaluation"
2517
+ msgstr ""
2518
+
2519
+ #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2520
+ msgid "Not scheduled! Re-activate the plugin from the plugins page."
2521
+ msgstr ""
2522
 
2523
+ #: dashboard/settings/maintenance.php:78
2524
+ msgid "Trackerdata cleanup"
2525
+ msgstr ""
2526
 
2527
+ #: dashboard/settings/maintenance.php:83
2528
+ msgid "Internal Versions"
2529
+ msgstr ""
2530
 
2531
+ #: dashboard/settings/maintenance.php:84
2532
+ msgid ""
2533
+ "Unless you experience database issues or a warning shows below, these "
2534
+ "numbers are not really relevant for troubleshooting. Support may ask for "
2535
+ "them to verify your database status."
2536
+ msgstr ""
2537
+
2538
+ #: dashboard/settings/maintenance.php:87
2539
+ msgid "AdRotate version"
2540
+ msgstr ""
2541
+
2542
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2543
+ msgid "Current:"
2544
+ msgstr ""
2545
+
2546
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2547
+ msgid "Should be:"
2548
+ msgstr ""
2549
+
2550
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2551
+ msgid "Previous:"
2552
+ msgstr ""
2553
+
2554
+ #: dashboard/settings/maintenance.php:89
2555
+ msgid "Database version"
2556
+ msgstr ""
2557
+
2558
+ #: dashboard/settings/misc.php:16
2559
  msgid "Miscellaneous"
2560
  msgstr "Ostalo"
2561
 
2562
+ #: dashboard/settings/misc.php:19
2563
  msgid "Widget alignment"
2564
  msgstr "Widget alignment"
2565
 
2566
+ #: dashboard/settings/misc.php:20
2567
  msgid ""
2568
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2569
  "not always help!)"
2571
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
2572
  "uvek ! )"
2573
 
2574
+ #: dashboard/settings/misc.php:23
2575
  #, fuzzy
2576
  msgid "Widget padding"
2577
  msgstr "Blokiraj punjenje"
2578
 
2579
+ #: dashboard/settings/misc.php:24
2580
  #, fuzzy
2581
  msgid ""
2582
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2585
  "Proverite ovo polje ako dodaci ne uskladi u vaš sidebar teme . ( Ne pomaže "
2586
  "uvek ! )"
2587
 
2588
+ #: dashboard/settings/misc.php:28
2589
  #, fuzzy
2590
  msgid "NOTICE:"
2591
  msgstr ""
2595
  "rezervnu kopiju ! Ove funkcije mogu da se koriste kada se osećate ili "
2596
  "primetite vaša baza podataka je spor , spor i ne reaguje ."
2597
 
2598
+ #: dashboard/settings/misc.php:29
2599
  msgid ""
2600
  "You have enabled W3 Total Caching support but not defined the security hash."
2601
  msgstr ""
2602
 
2603
+ #: dashboard/settings/misc.php:29
2604
  msgid ""
2605
  "AdRotate has generated the following line for you to add to your wp-config."
2606
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2607
  "add this line, check out the following guide;"
2608
  msgstr ""
2609
 
2610
+ #: dashboard/settings/misc.php:29
2611
  msgid "Set up W3 Total Caching"
2612
  msgstr ""
2613
 
2614
+ #: dashboard/settings/misc.php:33
2615
  msgid "W3 Total Caching"
2616
  msgstr "W3 Total Caching"
2617
 
2618
+ #: dashboard/settings/misc.php:34
2619
  msgid "Check this box if you use W3 Total Caching on your site."
2620
  msgstr "Proverite ovo polje ako koristite W3 Total Caching na vašem sajtu."
2621
 
2622
+ #: dashboard/settings/misc.php:38
2623
  msgid ""
2624
  "It may take a while for the ad to start rotating. The caching plugin needs "
2625
  "to refresh the cache. This can take up to a week if not done manually."
2627
  "To može potrajati dok oglas počne da se rotira . Hvatanje plugina mora da "
2628
  "osveži cache. To može da potraje i do nedelju dana, ako ne radi ručno "
2629
 
2630
+ #: dashboard/settings/misc.php:38
2631
  msgid ""
2632
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2633
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2635
  "Hvatanje podrške radi samo za [kratke brojeve] i AdRotate Widget . Ako "
2636
  "koristite PHP Snippet treba da zamotate svoj PHP u isključenju svog koda."
2637
 
2638
+ #: dashboard/settings/notifications.php:18
2639
  msgid "Notifications"
2640
  msgstr "Notifikacije"
2641
 
2642
+ #: dashboard/settings/notifications.php:19
2643
  #, fuzzy
2644
  msgid "Set up who gets notifications if ads need your attention."
2645
  msgstr "Oglasi koje treba neposrednu pažnju"
2646
 
2647
+ #: dashboard/settings/notifications.php:22
2648
  msgid "How to notify"
2649
  msgstr ""
2650
 
2651
+ #: dashboard/settings/notifications.php:24
2652
  msgid "Dashboard banner."
2653
  msgstr ""
2654
 
2655
+ #: dashboard/settings/notifications.php:25
2656
  #, fuzzy
2657
  msgid "Email message."
2658
  msgstr "Stranica oglašivača"
2659
 
2660
+ #: dashboard/settings/notifications.php:26
2661
  msgid "Push notifications to your smartphone."
2662
  msgstr ""
2663
 
2664
+ #: dashboard/settings/notifications.php:27
2665
  msgid ""
2666
  "Push notifications are delivered through Pushover, a notification service "
2667
  "for Android and iOS"
2668
  msgstr ""
2669
 
2670
+ #: dashboard/settings/notifications.php:27
2671
  msgid ""
2672
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2673
  "information can be found on the pushover website;"
2674
  msgstr ""
2675
 
2676
+ #: dashboard/settings/notifications.php:31
2677
  msgid "Test notification"
2678
  msgstr ""
2679
 
2680
+ #: dashboard/settings/notifications.php:33
2681
  msgid "Test"
2682
  msgstr "Test"
2683
 
2684
+ #: dashboard/settings/notifications.php:33
2685
  msgid ""
2686
  "Send a test notification to enabled methods. Before you test, save the "
2687
  "options first!"
2688
  msgstr ""
2689
 
2690
+ #: dashboard/settings/notifications.php:38
2691
+ msgid "Dashboard Banner"
2692
  msgstr ""
2693
 
2694
+ #: dashboard/settings/notifications.php:39
2695
  msgid ""
2696
  "These go in a dashboard banner visible to all users with access to AdRotate "
2697
  "on every WordPress dashboard page."
2698
  msgstr ""
2699
 
2700
+ #: dashboard/settings/notifications.php:42
2701
+ #: dashboard/settings/notifications.php:54
2702
+ #: dashboard/settings/notifications.php:84
2703
  msgid "What"
2704
  msgstr ""
2705
 
2706
+ #: dashboard/settings/notifications.php:44
2707
  msgid "Expired adverts."
2708
  msgstr ""
2709
 
2710
+ #: dashboard/settings/notifications.php:45
2711
  msgid "Almost expired adverts."
2712
  msgstr ""
2713
 
2714
+ #: dashboard/settings/notifications.php:50
2715
+ msgid "Email Message"
2716
  msgstr ""
2717
 
 
 
 
 
 
 
 
 
 
 
 
 
2718
  #: dashboard/settings/notifications.php:51
2719
  msgid ""
2720
+ "Receive email notifications about what is happening with your AdRotate setup."
 
2721
  msgstr ""
 
 
2722
 
2723
+ #: dashboard/settings/notifications.php:56
2724
+ #: dashboard/settings/notifications.php:86
2725
+ msgid "Daily digest of any advert status other than normal."
 
 
2726
  msgstr ""
 
 
2727
 
2728
+ #: dashboard/settings/notifications.php:57
2729
+ #: dashboard/settings/notifications.php:87
2730
+ msgid "When you are running out of Geo Targeting Lookups."
2731
+ msgstr ""
2732
+
2733
+ #: dashboard/settings/notifications.php:58
2734
+ #: dashboard/settings/notifications.php:88
2735
+ msgid "Any advertiser saving an advert in your moderation queue."
2736
+ msgstr ""
2737
 
2738
  #: dashboard/settings/notifications.php:59
2739
+ #: dashboard/settings/notifications.php:89
2740
  #, fuzzy
2741
+ msgid "A moderator approved an advert from the moderation queue."
2742
+ msgstr "Odobri / odbaci reklame u red za uređivanje"
 
 
 
2743
 
2744
+ #: dashboard/settings/notifications.php:60
2745
+ #: dashboard/settings/notifications.php:90
2746
+ #, fuzzy
2747
+ msgid "A moderator rejected an advert from the moderation queue."
2748
+ msgstr "Odobri / odbaci reklame u red za uređivanje"
2749
+
2750
+ #: dashboard/settings/notifications.php:60
2751
+ #: dashboard/settings/notifications.php:90
2752
+ msgid ""
2753
+ "If you have a lot of activity with many advertisers adding/changing adverts "
2754
+ "you may get a lot of messages!"
2755
  msgstr ""
2756
 
2757
+ #: dashboard/settings/notifications.php:60
2758
  msgid ""
2759
+ "Sending out a lot of email is sometimes seen as automated mailing and deemed "
2760
+ "spammy. This may result in automated filters such as those used in services "
2761
+ "like Google Gmail and Microsoft Hotmail/Outlook.com blocking your server. "
2762
+ "Make sure you whitelist the sending address in your email account once you "
2763
+ "start receiving notifications!"
2764
  msgstr ""
2765
 
2766
+ #: dashboard/settings/notifications.php:65
2767
+ #, fuzzy
2768
+ msgid "Publishers"
2769
  msgstr ""
2770
+ "Pregled globalna statistike , po oglasu / grupa / blok statistika . Vidljivo "
2771
+ "samo izdavačima ."
2772
 
2773
+ #: dashboard/settings/notifications.php:68
2774
+ msgid ""
2775
+ "Messages are sent once every 24 hours. Maximum of 5 addresses. Comma "
2776
+ "separated. This field may not be empty!"
2777
  msgstr ""
2778
 
2779
  #: dashboard/settings/notifications.php:72
2780
+ msgid "Advertisers"
2781
+ msgstr "Oglašivači"
2782
+
2783
+ #: dashboard/settings/notifications.php:75
2784
+ msgid ""
2785
+ "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2786
+ "This field may not be empty!"
2787
  msgstr ""
2788
 
2789
+ #: dashboard/settings/notifications.php:80
2790
  #, fuzzy
2791
+ msgid "Push Notifications"
2792
+ msgstr "Notifikacije"
2793
 
2794
+ #: dashboard/settings/notifications.php:81
2795
+ msgid ""
2796
+ "Receive information about what is happening with your AdRotate setup on your "
2797
+ "smartphone via Pushover."
2798
+ msgstr ""
2799
 
2800
+ #: dashboard/settings/notifications.php:90
2801
  msgid ""
2802
+ "Pushover has a monthly limit of 7500 messages, this should be plenty. If you "
2803
+ "run out, you will not receive push notifications until the quota is reset! "
2804
+ "Every message AdRotate sends, regardless of the number of receiving devices, "
2805
+ "counts as one message."
2806
  msgstr ""
2807
 
2808
+ #: dashboard/settings/notifications.php:95
2809
  #, fuzzy
2810
  msgid "User Key"
2811
  msgstr "korisnici-agenti"
2812
 
2813
+ #: dashboard/settings/notifications.php:97
2814
  msgid "Get your user token"
2815
  msgstr ""
2816
 
2817
+ #: dashboard/settings/notifications.php:97
2818
+ #: dashboard/settings/notifications.php:103
2819
  msgid "here"
2820
  msgstr ""
2821
 
2822
+ #: dashboard/settings/notifications.php:101
2823
  msgid "Api Token"
2824
  msgstr ""
2825
 
2826
+ #: dashboard/settings/notifications.php:103
2827
  msgid "Create your"
2828
  msgstr ""
2829
 
2830
+ #: dashboard/settings/notifications.php:103
2831
  msgid "App"
2832
  msgstr ""
2833
 
2834
+ #: dashboard/settings/notifications.php:103
2835
  msgid "and get your API token"
2836
  msgstr ""
2837
 
2838
+ #: dashboard/settings/roles.php:17
2839
  msgid "Roles"
2840
  msgstr ""
2841
 
2842
+ #: dashboard/settings/roles.php:18
2843
  msgid "Who has access to what?"
2844
  msgstr ""
2845
 
2846
+ #: dashboard/settings/roles.php:21
2847
  msgid "Manage/Add/Edit adverts"
2848
  msgstr "Upravljanje / Add / Edit reklame"
2849
 
2850
+ #: dashboard/settings/roles.php:25
2851
  msgid "Role to see and add/edit ads."
2852
  msgstr "Uloga videti i add / edit oglase ."
2853
 
2854
+ #: dashboard/settings/roles.php:29
2855
  msgid "Delete/Reset adverts"
2856
  msgstr "Brisanje / Reset reklame"
2857
 
2858
+ #: dashboard/settings/roles.php:33
2859
  msgid "Role to delete ads and reset stats."
2860
  msgstr "Uloga obrisati oglase i resetovanje ."
2861
 
2862
+ #: dashboard/settings/roles.php:37
2863
  msgid "Manage/Add/Edit groups"
2864
  msgstr "Upravljanje / Add / Edit grupama"
2865
 
2866
+ #: dashboard/settings/roles.php:41
2867
  msgid "Role to see and add/edit groups."
2868
  msgstr "Uloga videti i add / edit grupe ."
2869
 
2870
+ #: dashboard/settings/roles.php:45
2871
  msgid "Delete groups"
2872
  msgstr "Brisanje grupe"
2873
 
2874
+ #: dashboard/settings/roles.php:49
2875
  msgid "Role to delete groups."
2876
  msgstr "Uloga za brisanje grupe ."
2877
 
2878
+ #: dashboard/settings/statistics.php:18
2879
  msgid "Track statistics for your adverts."
2880
  msgstr ""
2881
 
2882
+ #: dashboard/settings/statistics.php:21
2883
  msgid "How to track stats"
2884
  msgstr ""
2885
 
2886
+ #: dashboard/settings/statistics.php:30
2887
  msgid "Tracks impressions and clicks internally"
2888
  msgstr ""
2889
 
2890
+ #: dashboard/settings/statistics.php:30 dashboard/settings/statistics.php:32
2891
+ #: dashboard/settings/statistics.php:34
2892
  msgid "manual"
2893
  msgstr ""
2894
 
2895
+ #: dashboard/settings/statistics.php:31
2896
  msgid ""
2897
  "Click and Impression recording, Click and impression limits, impression "
2898
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2899
  "will only track impressions."
2900
  msgstr ""
2901
 
2902
+ #: dashboard/settings/statistics.php:32 dashboard/settings/statistics.php:34
2903
  msgid "In AdRotate Pro!"
2904
  msgstr ""
2905
 
2906
+ #: dashboard/settings/statistics.php:32
2907
  msgid ""
2908
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2909
  "attributes"
2910
  msgstr ""
2911
 
2912
+ #: dashboard/settings/statistics.php:33
2913
  msgid ""
2914
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2915
  "Contents."
2916
  msgstr ""
2917
 
2918
+ #: dashboard/settings/statistics.php:34
2919
  msgid ""
2920
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2921
  "uses onClick() and onload() in adverts"
2922
  msgstr ""
2923
 
2924
+ #: dashboard/settings/statistics.php:35
2925
  msgid ""
2926
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2927
  "Banner."
2928
  msgstr ""
2929
 
2930
+ #: dashboard/settings/statistics.php:41
2931
  msgid "Internal Tracker"
2932
  msgstr ""
2933
 
2934
+ #: dashboard/settings/statistics.php:42
2935
  msgid ""
2936
  "The settings below are for the internal tracker and have no effect when "
2937
  "using Piwik/Google Analytics."
2938
  msgstr ""
2939
 
2940
+ #: dashboard/settings/statistics.php:45
2941
  #, fuzzy
2942
  msgid "Logged in impressions"
2943
  msgstr "Pratite utiske ulogovanih korisniika (Preporučeno)"
2944
 
2945
+ #: dashboard/settings/statistics.php:47
2946
  msgid "Track impressions from logged in users."
2947
  msgstr ""
2948
 
2949
+ #: dashboard/settings/statistics.php:51
2950
  #, fuzzy
2951
  msgid "Logged in clicks"
2952
  msgstr "Pratite klikove ulogovani korisnici ."
2953
 
2954
+ #: dashboard/settings/statistics.php:53
2955
  msgid "Track clicks from logged in users."
2956
  msgstr "Pratite klikove ulogovani korisnici ."
2957
 
2958
+ #: dashboard/settings/statistics.php:57
2959
  msgid "Impression timer"
2960
  msgstr ""
2961
 
2962
+ #: dashboard/settings/statistics.php:59 dashboard/settings/statistics.php:66
2963
  msgid "Seconds."
2964
  msgstr "Sekunde."
2965
 
2966
+ #: dashboard/settings/statistics.php:60
2967
  #, fuzzy
2968
  msgid "Default: 60."
2969
  msgstr "Default - Prikazati po jedan oglas"
2970
 
2971
+ #: dashboard/settings/statistics.php:60
2972
  #, fuzzy
2973
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2974
  msgstr ""
2975
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
2976
 
2977
+ #: dashboard/settings/statistics.php:64
2978
  msgid "Click timer"
2979
  msgstr ""
2980
 
2981
+ #: dashboard/settings/statistics.php:67
2982
  #, fuzzy
2983
  msgid "Default: 86400."
2984
  msgstr "Default - Prikazati po jedan oglas"
2985
 
2986
+ #: dashboard/settings/statistics.php:67
2987
  #, fuzzy
2988
  msgid ""
2989
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2990
  msgstr ""
2991
  "Ovaj broj ne može da bude prazan , negativan ili veći od 3600 ( 1 sat ) ."
2992
 
2993
+ #, fuzzy
2994
+ #~ msgid "Enable responsive support for this advert."
2995
+ #~ msgstr "Oglasi"
2996
+
2997
+ #~ msgid "Current version:"
2998
+ #~ msgstr "Trenutna verzija :"
2999
+
3000
+ #~ msgid "Previous version:"
3001
+ #~ msgstr "Prethodna verzija :"
3002
+
3003
+ #~ msgid "Current database version:"
3004
+ #~ msgstr "Trenutna verzija baze podataka :"
3005
+
3006
+ #~ msgid "Previous database version:"
3007
+ #~ msgstr "Prethodna verzija baze podataka :"
3008
+
3009
+ #, fuzzy
3010
+ #~ msgid "Ad evaluation next run:"
3011
+ #~ msgstr "Očistite Trackerdata u sledećem pokušaju :"
3012
+
3013
+ #~ msgid "Not scheduled!"
3014
+ #~ msgstr "Nije planirano:"
3015
+
3016
+ #~ msgid "Clean Trackerdata next run:"
3017
+ #~ msgstr "Očistite Trackerdata u sledećem pokušaju :"
3018
+
3019
+ #, fuzzy
3020
+ #~ msgid "Set up who gets notification emails."
3021
+ #~ msgstr "Oglasi koje treba neposrednu pažnju"
3022
+
3023
+ #~ msgid ""
3024
+ #~ "A comma separated list of email addresses. Maximum of 5 addresses. Keep "
3025
+ #~ "this list to a minimum!"
3026
+ #~ msgstr ""
3027
+ #~ "Razdvojene zarezom spisak adresa e-pošte . Maksimalan broj 5 adresa . "
3028
+ #~ "Držite ovu listu na minimum !"
3029
+
3030
+ #, fuzzy
3031
+ #~ msgid ""
3032
+ #~ "Messages are sent once every 24 hours when needed. If this field is empty "
3033
+ #~ "no email notifications will be send."
3034
+ #~ msgstr ""
3035
+ #~ "Poruke se šalju jednom u 24 sata kada je to potrebno . Ako ovo polje je "
3036
+ #~ "praznofunkcija će biti onemogućena "
3037
+
3038
+ #, fuzzy
3039
+ #~ msgid ""
3040
+ #~ "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
3041
+ #~ "This field may not be empty!"
3042
+ #~ msgstr ""
3043
+ #~ "Maksimalno 2 adrese. Odvojenu zarezima. Ovo polje ne može biti prazno !"
3044
+
3045
  #, fuzzy
3046
  #~ msgid "Get more features with AdRotate Pro"
3047
  #~ msgstr "Nabvite jos karakteristika! AdRotate Pro."
3065
  #~ msgid "Email Notifications"
3066
  #~ msgstr "Email Obaveštenja"
3067
 
 
 
 
 
3068
  #~ msgid "active ad(s) expired."
3069
  #~ msgstr "aktivni ad-ovi su istekli."
3070
 
3154
  #~ msgid "Barely visible"
3155
  #~ msgstr "Vidljivo do"
3156
 
 
 
 
 
3157
  #, fuzzy
3158
  #~ msgid "Normal coverage"
3159
  #~ msgstr ""
3162
  #~ "izabrani . To se može koristiti kao mera za rešavanje problema na "
3163
  #~ "zahtev , ali za normalnu upotrebu oni treba da budu levo neprovereni "
3164
 
 
 
 
 
3165
  #, fuzzy
3166
  #~ msgid "Best visibility"
3167
  #~ msgstr "Vidljivo do"
language/adrotate-sv_SV.mo CHANGED
Binary file
language/adrotate-sv_SV.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-05-30 14:27+0800\n"
6
- "PO-Revision-Date: 2016-05-30 14:27+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"
@@ -17,114 +17,114 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: adrotate-functions.php:844
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
- #: adrotate-functions.php:847
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
- #: adrotate-functions.php:896
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
- #: adrotate-functions.php:900
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
- #: adrotate-functions.php:904
37
  msgid "Ad(s) deleted"
38
  msgstr "Annons(er) raderas"
39
 
40
- #: adrotate-functions.php:908
41
  msgid "Group deleted"
42
  msgstr "Grupp raderad"
43
 
44
- #: adrotate-functions.php:912
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Annons(er) statistik återställning"
47
 
48
- #: adrotate-functions.php:916
49
  msgid "Ad(s) renewed"
50
  msgstr "Annons(er) förnyas"
51
 
52
- #: adrotate-functions.php:920
53
  msgid "Ad(s) deactivated"
54
  msgstr "Annons(er) avaktiveras"
55
 
56
- #: adrotate-functions.php:924
57
  msgid "Ad(s) activated"
58
  msgstr "Annons(er) aktiveras"
59
 
60
- #: adrotate-functions.php:928
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupp inklusive dess annonser raderade"
63
 
64
- #: adrotate-functions.php:932
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "export skapad"
68
 
69
- #: adrotate-functions.php:937
70
  msgid "Settings saved"
71
  msgstr "Inställningar sparas"
72
 
73
- #: adrotate-functions.php:941
74
  msgid "Database optimized"
75
  msgstr "Databas optimerad"
76
 
77
- #: adrotate-functions.php:945
78
  msgid "Database repaired"
79
  msgstr "Databas reparation"
80
 
81
- #: adrotate-functions.php:949
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:953
86
  msgid "Empty database records removed"
87
  msgstr "Tomma databasposter tas bort"
88
 
89
- #: adrotate-functions.php:958
90
  msgid "Action prohibited"
91
  msgstr "Åtgärden förbjuden"
92
 
93
- #: adrotate-functions.php:962
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:966
100
  msgid "No data found in selected time period"
101
  msgstr "Inga data finns i vald tidsperiod"
102
 
103
- #: adrotate-functions.php:970
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:974
108
  msgid "Form can not be (partially) empty!"
109
  msgstr ""
110
 
111
- #: adrotate-functions.php:978
112
  msgid "No ads found."
113
  msgstr ""
114
 
115
- #: adrotate-functions.php:982
116
  msgid "Unexpected error"
117
  msgstr ""
118
 
119
- #: adrotate-manage-publisher.php:678
120
  msgid "AdRotate Advertiser"
121
  msgstr ""
122
 
123
- #: adrotate-output.php:574
124
  msgid "Oh no! Something went wrong!"
125
  msgstr "Åh nej! Något gick fel!"
126
 
127
- #: adrotate-output.php:575
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 +133,18 @@ msgstr ""
133
  "klickat. Kontrollera att webbadressen som används är giltigt eller logga in "
134
  "via webbläsaren."
135
 
136
- #: adrotate-output.php:576
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:577
144
  msgid "Contact support if the issue persists:"
145
  msgstr "Kontakta support om problemet kvarstår:"
146
 
147
- #: adrotate-output.php:592
148
  msgid ""
149
  "Error, Ad is not available at this time due to schedule/geolocation "
150
  "restrictions or does not exist!"
@@ -152,7 +152,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:594
156
  msgid ""
157
  "Error, Ad is not available at this time due to schedule/geolocation "
158
  "restrictions!"
@@ -160,7 +160,7 @@ msgstr ""
160
  "Fel, Annonsen är inte tillgänglig just nu på grund av schema / "
161
  "geolokalisering begränsningar!"
162
 
163
- #: adrotate-output.php:601 adrotate-output.php:603
164
  msgid ""
165
  "Either there are no banners, they are disabled or none qualified for this "
166
  "location!"
@@ -168,19 +168,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:609
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:615
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:620
180
  msgid "Error, group does not exist! Check your syntax!"
181
  msgstr "Fel, gruppen existerar inte! Kontrollera din syntax!"
182
 
183
- #: adrotate-output.php:626
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,217 +188,217 @@ 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:626
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:632
196
  msgid "An unknown error occured."
197
  msgstr "Ett okänt fel uppstod."
198
 
199
- #: adrotate-output.php:651 adrotate-output.php:654 adrotate-output.php:658
200
- #: adrotate-output.php:663 adrotate-output.php:666 adrotate-output.php:669
201
  msgid "Check adverts"
202
  msgstr ""
203
 
204
- #: adrotate-output.php:674
205
  msgid ""
206
  "You have enable caching support but W3 Total Cache is not active on your "
207
  "site!"
208
  msgstr ""
209
 
210
- #: adrotate-output.php:677
211
  msgid ""
212
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
213
  "not set."
214
  msgstr ""
215
 
216
- #: adrotate-output.php:682
217
  msgid "Your AdRotate Banner folder is not writable or does not exist."
218
  msgstr ""
219
 
220
- #: adrotate-output.php:722 dashboard/adrotatepro.php:99
221
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
222
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
223
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
224
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
225
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
226
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
227
- #: dashboard/settings/geotargeting.php:25
228
  #, fuzzy
229
  msgid "Buy now"
230
  msgstr "Köp nu"
231
 
232
- #: adrotate-output.php:723
233
  msgid ""
234
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
235
  "to the <strong>PRO</strong> version"
236
  msgstr ""
237
 
238
- #: adrotate-output.php:723
239
  #, php-format
240
  msgid ""
241
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
242
  msgstr ""
243
 
244
- #: adrotate-output.php:723
245
  msgid "Thank you for your purchase!"
246
  msgstr ""
247
 
248
- #: adrotate-output.php:784
249
  msgid ""
250
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
251
  "this menu. Check out the"
252
  msgstr ""
253
 
254
- #: adrotate-output.php:784
255
  msgid "manuals"
256
  msgstr "manual"
257
 
258
- #: adrotate-output.php:784 adrotate-output.php:851
259
  msgid "and"
260
  msgstr ""
261
 
262
- #: adrotate-output.php:784
263
  msgid "forums"
264
  msgstr ""
265
 
266
- #: adrotate-output.php:814
267
  #, fuzzy
268
  msgid "Useful Links"
269
  msgstr "Nyttiga länkar"
270
 
271
- #: adrotate-output.php:815
272
  msgid "Useful links to learn more about AdRotate"
273
  msgstr ""
274
 
275
- #: adrotate-output.php:817
276
  msgid "AdRotate website"
277
  msgstr ""
278
 
279
- #: adrotate-output.php:818
280
  #, fuzzy
281
  msgid "Getting Started With AdRotate"
282
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
283
 
284
- #: adrotate-output.php:819
285
  #, fuzzy
286
  msgid "AdRotate manuals"
287
  msgstr "AdRotate Information"
288
 
289
- #: adrotate-output.php:820
290
  #, fuzzy
291
  msgid "AdRotate Support Forum"
292
  msgstr "AdRotate butik"
293
 
294
- #: adrotate-output.php:843
295
  #, fuzzy
296
  msgid "Help AdRotate Grow"
297
  msgstr "Fastnat med AdRotate? Jag hjälper!"
298
 
299
- #: adrotate-output.php:844
300
  msgid "Follow Arnan on Facebook"
301
  msgstr ""
302
 
303
- #: adrotate-output.php:851
304
  msgid ""
305
  "A lot of users only think to review AdRotate when something goes wrong while "
306
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
307
  msgstr ""
308
 
309
- #: adrotate-output.php:851
310
  msgid "If you find AdRotate useful please leave your honest"
311
  msgstr ""
312
 
313
- #: adrotate-output.php:851
314
  msgid "rating"
315
  msgstr ""
316
 
317
- #: adrotate-output.php:851
318
  #, fuzzy
319
  msgid "review"
320
  msgstr "Betygsätt och omdöme"
321
 
322
- #: adrotate-output.php:851
323
  msgid "on WordPress.org to help AdRotate grow in a positive way"
324
  msgstr ""
325
 
326
- #: adrotate-output.php:884 dashboard/settings/notifications.php:44
327
- #: dashboard/settings/notifications.php:64
328
  msgid "Available in AdRotate Pro"
329
  msgstr "Tillgänglig i AdRotate Pro"
330
 
331
- #: adrotate-output.php:884
332
  #, fuzzy
333
  msgid "More information..."
334
  msgstr "Mer info"
335
 
336
- #: adrotate-output.php:885
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:885
341
  #, fuzzy
342
  msgid "Learn more"
343
  msgstr "Läs mer om"
344
 
345
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
346
- #: dashboard/publisher/adverts-edit.php:241
347
  msgid "January"
348
  msgstr "Januari"
349
 
350
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
351
- #: dashboard/publisher/adverts-edit.php:242
352
  msgid "February"
353
  msgstr "Februari"
354
 
355
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
356
- #: dashboard/publisher/adverts-edit.php:243
357
  msgid "March"
358
  msgstr "Mars"
359
 
360
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
361
- #: dashboard/publisher/adverts-edit.php:244
362
  msgid "April"
363
  msgstr "April"
364
 
365
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
366
- #: dashboard/publisher/adverts-edit.php:245
367
  msgid "May"
368
  msgstr "Maj"
369
 
370
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
371
- #: dashboard/publisher/adverts-edit.php:246
372
  msgid "June"
373
  msgstr "Juni"
374
 
375
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:226
376
- #: dashboard/publisher/adverts-edit.php:247
377
  msgid "July"
378
  msgstr "Juli"
379
 
380
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:227
381
- #: dashboard/publisher/adverts-edit.php:248
382
  msgid "August"
383
  msgstr "Augusti"
384
 
385
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:228
386
- #: dashboard/publisher/adverts-edit.php:249
387
  msgid "September"
388
  msgstr "September"
389
 
390
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:229
391
- #: dashboard/publisher/adverts-edit.php:250
392
  msgid "October"
393
  msgstr "Oktober"
394
 
395
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:230
396
- #: dashboard/publisher/adverts-edit.php:251
397
  msgid "November"
398
  msgstr "November"
399
 
400
- #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:231
401
- #: dashboard/publisher/adverts-edit.php:252
402
  msgid "December"
403
  msgstr "December"
404
 
@@ -459,278 +459,273 @@ msgstr "ID:"
459
  msgid "Fill in the ID of the type you want to display!"
460
  msgstr "Fyll i ID för den typ som du vill visa!"
461
 
462
- #: adrotate.php:105
463
  msgid "General Info"
464
  msgstr "Allmän info"
465
 
466
- #: adrotate.php:106
467
  msgid "AdRotate Pro"
468
  msgstr "AdRotate Pro"
469
 
470
- #: adrotate.php:107
471
  msgid "Manage Adverts"
472
  msgstr ""
473
 
474
- #: adrotate.php:108 dashboard/publisher/groups-main.php:12
475
  msgid "Manage Groups"
476
  msgstr "Hantera Grupper"
477
 
478
- #: adrotate.php:109 adrotate.php:387
479
  #, fuzzy
480
  msgid "Manage Schedules"
481
  msgstr "Hantera"
482
 
483
- #: adrotate.php:110
484
  #, fuzzy
485
  msgid "Manage Media"
486
  msgstr "Media:"
487
 
488
- #: adrotate.php:111
489
  msgid "Settings"
490
  msgstr "Inställningar"
491
 
492
- #: adrotate.php:134
493
  msgid "AdRotate Info"
494
  msgstr "AdRotate Information"
495
 
496
- #: adrotate.php:155
497
  #, fuzzy
498
  msgid "AdRotate Professional"
499
  msgstr "AdRotate"
500
 
501
- #: adrotate.php:198
502
  msgid "Advert Management"
503
  msgstr ""
504
 
505
- #: adrotate.php:256 adrotate.php:326 adrotate.php:382
506
  msgid "Manage"
507
  msgstr "Hantera"
508
 
509
- #: adrotate.php:257 adrotate.php:327 adrotate.php:383
510
  msgid "Add New"
511
  msgstr "Lägg till ny"
512
 
513
- #: adrotate.php:320
514
  msgid "Group Management"
515
  msgstr "Grupp Hantering"
516
 
517
- #: adrotate.php:329
518
  msgid "Report"
519
  msgstr "Rapport"
520
 
521
- #: adrotate.php:378
522
  #, fuzzy
523
  msgid "Schedule Management available in AdRotate Pro"
524
  msgstr "Tillgänglig i AdRotate Pro"
525
 
526
- #: adrotate.php:388
527
  #, fuzzy
528
  msgid ""
529
  "Schedule management and multiple schedules per advert is available in "
530
  "AdRotate Pro."
531
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
532
 
533
- #: adrotate.php:388 adrotate.php:475 dashboard/publisher/adverts-edit.php:188
534
  #: dashboard/publisher/adverts-main.php:114
535
- #: dashboard/publisher/groups-edit.php:75
536
  #: dashboard/publisher/groups-main.php:89
537
  #, fuzzy
538
  msgid "More information"
539
  msgstr "Mer info"
540
 
541
- #: adrotate.php:395 dashboard/publisher/adverts-disabled.php:20
542
  #: dashboard/publisher/adverts-error.php:19
543
  #: dashboard/publisher/adverts-main.php:20
544
  #: dashboard/publisher/groups-main.php:20
545
  msgid "Bulk Actions"
546
  msgstr "Massåtgärder"
547
 
548
- #: adrotate.php:396 dashboard/publisher/adverts-disabled.php:25
549
  #: dashboard/publisher/adverts-error.php:29
550
  #: dashboard/publisher/adverts-main.php:30
551
  #: dashboard/publisher/groups-main.php:24
552
  msgid "Go"
553
  msgstr "Gå"
554
 
555
- #: adrotate.php:405 dashboard/publisher/adverts-disabled.php:35
556
  #: dashboard/publisher/adverts-error.php:39
557
  #: dashboard/publisher/adverts-main.php:39
558
- #: dashboard/publisher/groups-edit.php:51
559
  #: dashboard/publisher/groups-main.php:32
560
  msgid "ID"
561
  msgstr "ID"
562
 
563
- #: adrotate.php:406
564
  #, fuzzy
565
  msgid "Start"
566
  msgstr "Starttid (hh: mm):"
567
 
568
- #: adrotate.php:406
569
  #, fuzzy
570
  msgid "End"
571
  msgstr "Avsluta tid (hh: mm):"
572
 
573
- #: adrotate.php:407
574
  msgid "Ads"
575
  msgstr "Annonser"
576
 
577
- #: adrotate.php:409
578
  msgid "Max Impressions"
579
  msgstr "Max Intryck"
580
 
581
- #: adrotate.php:410
582
  msgid "Max Clicks"
583
  msgstr "Max Klick"
584
 
585
- #: adrotate.php:440
586
  #, fuzzy
587
  msgid "No schedules created yet!"
588
  msgstr "Inga block har skapats än!"
589
 
590
- #: adrotate.php:445
591
  #, fuzzy
592
  msgid "Easily manage your schedules from here with AdRotate Pro."
593
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
594
 
595
- #: adrotate.php:445 adrotate.php:511
596
  #, fuzzy
597
  msgid "Upgrade today!"
598
  msgstr "i dag"
599
 
600
- #: adrotate.php:448 dashboard/publisher/adverts-error.php:72
601
- #: dashboard/publisher/groups-edit.php:387
602
  msgid "Expires soon."
603
  msgstr "Utgår inom kort."
604
 
605
- #: adrotate.php:449 dashboard/publisher/adverts-error.php:73
606
- #: dashboard/publisher/groups-edit.php:388
607
  msgid "Has expired."
608
  msgstr "Har gått ut."
609
 
610
- #: adrotate.php:473
611
  #, fuzzy
612
  msgid "Media Management available in AdRotate Pro"
613
  msgstr "Tillgänglig i AdRotate Pro"
614
 
615
- #: adrotate.php:475
616
  msgid "Upload images to the AdRotate Pro banners folder from here."
617
  msgstr ""
618
 
619
- #: adrotate.php:475
620
  msgid ""
621
  "This is useful if you use responsive adverts with multiple images or have "
622
  "HTML5 adverts containing multiple files."
623
  msgstr ""
624
 
625
- #: adrotate.php:475
626
  #, fuzzy
627
  msgid "Media uploading and management is available in AdRotate Pro."
628
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
629
 
630
- #: adrotate.php:477
631
  msgid "Upload new file"
632
  msgstr ""
633
 
634
- #: adrotate.php:478
635
  msgid "Accepted files:"
636
  msgstr ""
637
 
638
- #: adrotate.php:478
639
  msgid "For HTML5 ads you can also upload html and javascript files."
640
  msgstr ""
641
 
642
- #: adrotate.php:478
643
  #, fuzzy
644
  msgid "Maximum size is 512Kb."
645
  msgstr "Maximal storlek är 512Kb."
646
 
647
- #: adrotate.php:478
648
  msgid "Important:"
649
  msgstr ""
650
 
651
- #: adrotate.php:478
652
  msgid ""
653
  "Make sure your file has no spaces or special characters in the name. Replace "
654
  "spaces with a - or _."
655
  msgstr ""
656
 
657
- #: adrotate.php:478
658
  msgid ""
659
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
660
  "file so it knows about the changed name. For example for the javascript file."
661
  msgstr ""
662
 
663
- #: adrotate.php:481
664
  msgid ""
665
  "For responsive adverts make sure the filename is in the following format; "
666
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
667
  msgstr ""
668
 
669
- #: adrotate.php:482 dashboard/publisher/adverts-edit.php:311
670
  msgid ""
671
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
672
  "filename instead of \".full\" for the various viewports."
673
  msgstr ""
674
 
675
- #: adrotate.php:483 dashboard/publisher/groups-edit.php:312
676
- #: dashboard/publisher/groups-edit.php:320
677
  msgid "Example:"
678
  msgstr "Exempel:"
679
 
680
- #: adrotate.php:483
681
  msgid ""
682
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
683
  "for different viewports."
684
  msgstr ""
685
 
686
- #: adrotate.php:487
687
  msgid "Upload file"
688
  msgstr ""
689
 
690
- #: adrotate.php:487
691
  msgid "Click only once per file!"
692
  msgstr ""
693
 
694
- #: adrotate.php:490
695
  msgid "Available files in"
696
  msgstr ""
697
 
698
- #: adrotate.php:495 dashboard/publisher/groups-edit.php:55
699
  #: dashboard/publisher/groups-main.php:33
700
  msgid "Name"
701
  msgstr "Namn"
702
 
703
- #: adrotate.php:496
704
  #, fuzzy
705
  msgid "Actions"
706
  msgstr "Massåtgärder"
707
 
708
- #: adrotate.php:501 adrotate.php:502 adrotate.php:503 adrotate.php:504
709
- #: adrotate.php:505 adrotate.php:506 adrotate.php:507
710
  #: dashboard/publisher/adverts-disabled.php:22
711
  #: dashboard/publisher/adverts-error.php:21
712
  #: dashboard/publisher/adverts-main.php:22
713
  msgid "Delete"
714
  msgstr "Radera"
715
 
716
- #: adrotate.php:511
717
  msgid ""
718
  "Make sure the banner images are not in use by adverts when you delete them!"
719
  msgstr ""
720
 
721
- #: adrotate.php:511
722
  #, fuzzy
723
  msgid "Manage your banner folder from here with AdRotate Pro."
724
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
725
 
726
- #: adrotate.php:540
727
  msgid "AdRotate Settings"
728
  msgstr "AdRotate Inställningar"
729
 
730
- #: adrotate.php:612
731
- msgid "Update Options"
732
- msgstr "Update Options"
733
-
734
  #: dashboard/adrotatepro.php:20
735
  #, fuzzy
736
  msgid "Satisfy your advertisers"
@@ -925,7 +920,7 @@ msgstr "Din installation"
925
  msgid "Adverts that need you"
926
  msgstr "Annonser som behöver dig"
927
 
928
- #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:397
929
  #: dashboard/publisher/groups-main.php:34
930
  msgid "Adverts"
931
  msgstr "Annonser"
@@ -968,7 +963,7 @@ msgid "Disabled Adverts"
968
  msgstr ""
969
 
970
  #: dashboard/publisher/adverts-disabled.php:21
971
- #: dashboard/publisher/adverts-edit.php:176
972
  msgid "Activate"
973
  msgstr "Aktivera"
974
 
@@ -989,7 +984,7 @@ msgstr ""
989
  "timmar. 14:00 är 14:00. 06:00 är 6:00 timmar."
990
 
991
  #: dashboard/publisher/adverts-disabled.php:37
992
- #: dashboard/publisher/adverts-edit.php:116
993
  #: dashboard/publisher/adverts-error.php:41
994
  #: dashboard/publisher/adverts-main.php:41
995
  msgid "Title"
@@ -997,7 +992,7 @@ msgstr "Titel"
997
 
998
  #: dashboard/publisher/adverts-disabled.php:38
999
  #: dashboard/publisher/adverts-main.php:44
1000
- #: dashboard/publisher/groups-edit.php:333
1001
  #: dashboard/publisher/groups-main.php:36
1002
  msgid "Shown"
1003
  msgstr "Visa"
@@ -1006,7 +1001,7 @@ msgstr "Visa"
1006
  #: dashboard/publisher/adverts-main.php:46
1007
  #: dashboard/publisher/adverts-report.php:36
1008
  #: dashboard/publisher/adverts-report.php:57
1009
- #: dashboard/publisher/groups-edit.php:334
1010
  #: dashboard/publisher/groups-main.php:38
1011
  #: dashboard/publisher/groups-report.php:37
1012
  #: dashboard/publisher/groups-report.php:58
@@ -1048,34 +1043,28 @@ msgid "The AdCode cannot be empty!"
1048
  msgstr "Den AdCode kan inte vara tomt!"
1049
 
1050
  #: dashboard/publisher/adverts-edit.php:51
1051
- msgid "You did not use %image% in your AdCode but did select a file to use!"
 
 
1052
  msgstr ""
1053
 
1054
  #: dashboard/publisher/adverts-edit.php:54
1055
- msgid "You did use %image% in your AdCode but did not select a file to use!"
1056
- msgstr ""
1057
-
1058
- #: dashboard/publisher/adverts-edit.php:57
1059
  msgid ""
1060
- "You did not use %image% in your AdCode. The responsive checkbox will be "
1061
- "ineffective."
1062
  msgstr ""
1063
 
1064
- #: dashboard/publisher/adverts-edit.php:60
1065
  msgid ""
1066
  "There is a problem saving the image. Please reset your image and re-save the "
1067
  "ad!"
1068
  msgstr ""
1069
 
1070
- #: dashboard/publisher/adverts-edit.php:63
1071
- msgid "Responsive is enabled but your banner image has the wrong name."
1072
- msgstr ""
1073
-
1074
- #: dashboard/publisher/adverts-edit.php:66
1075
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1076
  msgstr ""
1077
 
1078
- #: dashboard/publisher/adverts-edit.php:71
1079
  msgid ""
1080
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1081
  "the ad!"
@@ -1083,78 +1072,78 @@ msgstr ""
1083
  "AdRotate kan inte hitta något fel, men annonsen är märkt felaktiga, försök "
1084
  "åter spara annonsen!"
1085
 
1086
- #: dashboard/publisher/adverts-edit.php:74
1087
  msgid "This ad is expired and currently not shown on your website!"
1088
  msgstr ""
1089
  "Den här annonsen har gått ut och för tillfället inte visas på din webbplats!"
1090
 
1091
- #: dashboard/publisher/adverts-edit.php:77
1092
  msgid "The ad will expire in less than 2 days!"
1093
  msgstr "Annonsen går ut om mindre än 2 dagar!"
1094
 
1095
- #: dashboard/publisher/adverts-edit.php:80
1096
  msgid "This ad will expire in less than 7 days!"
1097
  msgstr "Annonsen går ut om mindre än 7 dagar!"
1098
 
1099
- #: dashboard/publisher/adverts-edit.php:83
1100
  msgid "This ad has been disabled and does not rotate on your site!"
1101
  msgstr "Den här annonsen har inaktiverats och inte roterar på din webbplats!"
1102
 
1103
- #: dashboard/publisher/adverts-edit.php:108
1104
  msgid "New Advert"
1105
  msgstr "Ny annons"
1106
 
1107
- #: dashboard/publisher/adverts-edit.php:110
1108
  msgid "Edit Advert"
1109
  msgstr "Redigera annons"
1110
 
1111
- #: dashboard/publisher/adverts-edit.php:122
1112
  msgid "AdCode"
1113
  msgstr ""
1114
 
1115
- #: dashboard/publisher/adverts-edit.php:127
1116
  msgid "Basic Examples:"
1117
  msgstr "Grundläggande Exempel:"
1118
 
1119
- #: dashboard/publisher/adverts-edit.php:134
1120
  msgid "Useful tags"
1121
  msgstr ""
1122
 
1123
- #: dashboard/publisher/adverts-edit.php:136
1124
  msgid "Insert the advert ID Number."
1125
  msgstr ""
1126
 
1127
- #: dashboard/publisher/adverts-edit.php:136
1128
- msgid "Required when selecting a image below."
1129
  msgstr ""
1130
 
1131
- #: dashboard/publisher/adverts-edit.php:136
1132
  msgid "Insert the advert name."
1133
  msgstr ""
1134
 
1135
- #: dashboard/publisher/adverts-edit.php:136
1136
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1137
  msgstr ""
1138
 
1139
- #: dashboard/publisher/adverts-edit.php:136
1140
  msgid "Add inside the <a> tag to open advert in a new window."
1141
  msgstr ""
1142
 
1143
- #: dashboard/publisher/adverts-edit.php:136
1144
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1145
  msgstr ""
1146
 
1147
- #: dashboard/publisher/adverts-edit.php:136
1148
  msgid ""
1149
  "Place the cursor in your AdCode where you want to add any of these tags and "
1150
  "click to add it."
1151
  msgstr ""
1152
 
1153
- #: dashboard/publisher/adverts-edit.php:141
1154
  msgid "Preview"
1155
  msgstr "Förhandsgranska"
1156
 
1157
- #: dashboard/publisher/adverts-edit.php:144
1158
  msgid ""
1159
  "Note: While this preview is an accurate one, it might look different then it "
1160
  "does on the website."
@@ -1162,41 +1151,41 @@ msgstr ""
1162
  "OBS: Även förhandsvisningen är en riktig en, kan det se annorlunda ut då den "
1163
  "gör på webbplatsen."
1164
 
1165
- #: dashboard/publisher/adverts-edit.php:145
1166
  msgid ""
1167
  "This is because of CSS differences. Your themes CSS file is not active here!"
1168
  msgstr ""
1169
  "Detta är på grund av CSS skillnader. Ditt teman CSS-fil är inte aktiv här!"
1170
 
1171
- #: dashboard/publisher/adverts-edit.php:150
1172
  msgid "Banner asset"
1173
  msgstr ""
1174
 
1175
- #: dashboard/publisher/adverts-edit.php:153
1176
  msgid "WordPress media:"
1177
  msgstr ""
1178
 
1179
- #: dashboard/publisher/adverts-edit.php:153
1180
  msgid "Select Banner"
1181
  msgstr "Välj Banner"
1182
 
1183
- #: dashboard/publisher/adverts-edit.php:155
1184
  msgid "- OR -"
1185
  msgstr "- ELLER -"
1186
 
1187
- #: dashboard/publisher/adverts-edit.php:157
1188
  msgid "Banner folder:"
1189
  msgstr "Banner folder:"
1190
 
1191
- #: dashboard/publisher/adverts-edit.php:158
1192
  msgid "No image selected"
1193
  msgstr "Ingen bild vald"
1194
 
1195
- #: dashboard/publisher/adverts-edit.php:162
1196
- msgid "Use %image% in the adcode instead of the file path."
1197
  msgstr ""
1198
 
1199
- #: dashboard/publisher/adverts-edit.php:162
1200
  msgid ""
1201
  "Use either the text field or the dropdown. If the textfield has content that "
1202
  "field has priority."
@@ -1204,249 +1193,250 @@ msgstr ""
1204
  "Använd antingen textfältet eller listrutan. Om textfältet har innehåll som "
1205
  "området har företräde."
1206
 
1207
- #: dashboard/publisher/adverts-edit.php:167
1208
- #: dashboard/settings/statistics.php:12
1209
  msgid "Statistics"
1210
  msgstr "Statistik"
1211
 
1212
- #: dashboard/publisher/adverts-edit.php:169
1213
  msgid "Enable click and impression tracking for this advert."
1214
  msgstr ""
1215
 
1216
- #: dashboard/publisher/adverts-edit.php:170
1217
  msgid ""
1218
  "Note: Clicktracking does not work for Javascript adverts such as those "
1219
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1220
  "always supported."
1221
  msgstr ""
1222
 
1223
- #: dashboard/publisher/adverts-edit.php:180
1224
  msgid "Yes, this ad will be used"
1225
  msgstr "Ja, kommer denna annons att användas"
1226
 
1227
- #: dashboard/publisher/adverts-edit.php:181
1228
  msgid "No, do not show this ad anywhere"
1229
  msgstr "Nej, inte visa denna annons någonstans"
1230
 
1231
- #: dashboard/publisher/adverts-edit.php:188
1232
  #: dashboard/publisher/adverts-main.php:114
1233
- #: dashboard/publisher/groups-edit.php:75
1234
  #: dashboard/publisher/groups-main.php:89
1235
  #, fuzzy
1236
  msgid "Get more features with AdRotate Pro."
1237
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1238
 
1239
- #: dashboard/publisher/adverts-edit.php:191
1240
- #: dashboard/publisher/adverts-edit.php:291
1241
- #: dashboard/publisher/adverts-edit.php:386
1242
- #: dashboard/publisher/adverts-edit.php:427
1243
  msgid "Save Advert"
1244
  msgstr "Spara annons"
1245
 
1246
- #: dashboard/publisher/adverts-edit.php:192
1247
- #: dashboard/publisher/adverts-edit.php:292
1248
- #: dashboard/publisher/adverts-edit.php:387
1249
- #: dashboard/publisher/adverts-edit.php:428
1250
- #: dashboard/publisher/groups-edit.php:154
1251
- #: dashboard/publisher/groups-edit.php:301
1252
- #: dashboard/publisher/groups-edit.php:393
1253
  msgid "Cancel"
1254
  msgstr "Avbryt"
1255
 
1256
- #: dashboard/publisher/adverts-edit.php:195
1257
- #: dashboard/publisher/adverts-edit.php:369
1258
- #: dashboard/publisher/groups-edit.php:136
1259
- #: dashboard/publisher/groups-edit.php:283
1260
  msgid "Usage"
1261
  msgstr "Användning"
1262
 
1263
- #: dashboard/publisher/adverts-edit.php:199
1264
- #: dashboard/publisher/adverts-edit.php:373
1265
- #: dashboard/publisher/groups-edit.php:140
1266
- #: dashboard/publisher/groups-edit.php:287
1267
  msgid "Widget"
1268
  msgstr ""
1269
 
1270
- #: dashboard/publisher/adverts-edit.php:200
1271
- #: dashboard/publisher/adverts-edit.php:374
1272
  msgid ""
1273
- "Drag the AdRotate widget to the sidebar you want it in, select \"Single Ad\" "
1274
- "and enter ID"
1275
  msgstr ""
1276
 
1277
- #: dashboard/publisher/adverts-edit.php:203
1278
- #: dashboard/publisher/adverts-edit.php:377
1279
- #: dashboard/publisher/groups-edit.php:144
1280
- #: dashboard/publisher/groups-edit.php:291
1281
  msgid "In a post or page"
1282
  msgstr ""
1283
 
1284
- #: dashboard/publisher/adverts-edit.php:205
1285
- #: dashboard/publisher/adverts-edit.php:379
1286
- #: dashboard/publisher/groups-edit.php:146
1287
- #: dashboard/publisher/groups-edit.php:293
1288
  msgid "Directly in a theme"
1289
  msgstr ""
1290
 
1291
- #: dashboard/publisher/adverts-edit.php:211
1292
  msgid "Schedule your advert"
1293
  msgstr ""
1294
 
1295
- #: dashboard/publisher/adverts-edit.php:215
1296
  msgid "Start date (day/month/year)"
1297
  msgstr ""
1298
 
1299
- #: dashboard/publisher/adverts-edit.php:236
1300
  msgid "End date (day/month/year)"
1301
  msgstr ""
1302
 
1303
- #: dashboard/publisher/adverts-edit.php:259
1304
  msgid "Start time (hh:mm)"
1305
  msgstr ""
1306
 
1307
- #: dashboard/publisher/adverts-edit.php:266
1308
  msgid "End time (hh:mm)"
1309
  msgstr ""
1310
 
1311
- #: dashboard/publisher/adverts-edit.php:276
1312
  msgid "Maximum Clicks"
1313
  msgstr ""
1314
 
1315
- #: dashboard/publisher/adverts-edit.php:277
1316
- #: dashboard/publisher/adverts-edit.php:279
1317
  msgid "Leave empty or 0 to skip this."
1318
  msgstr "Lämna tomt eller 0 för att hoppa över detta."
1319
 
1320
- #: dashboard/publisher/adverts-edit.php:278
1321
  msgid "Maximum Impressions"
1322
  msgstr ""
1323
 
1324
- #: dashboard/publisher/adverts-edit.php:283
1325
  msgid "Important"
1326
  msgstr ""
1327
 
1328
- #: dashboard/publisher/adverts-edit.php:284
1329
  msgid ""
1330
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1331
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1332
  "14:00 hours. 6AM is 6:00 hours."
1333
  msgstr ""
1334
 
1335
- #: dashboard/publisher/adverts-edit.php:288
1336
  msgid ""
1337
  "Create multiple and more advanced schedules for each advert with AdRotate "
1338
  "Pro."
1339
  msgstr ""
1340
 
1341
- #: dashboard/publisher/adverts-edit.php:288
1342
- #: dashboard/publisher/adverts-edit.php:323
1343
- #: dashboard/publisher/adverts-edit.php:367
1344
- #: dashboard/publisher/groups-edit.php:200
1345
  #, fuzzy
1346
  msgid "Upgrade today"
1347
  msgstr "i dag"
1348
 
1349
- #: dashboard/publisher/adverts-edit.php:295
1350
- #: dashboard/publisher/groups-edit.php:157
1351
  msgid "Advanced"
1352
  msgstr "Utökad"
1353
 
1354
- #: dashboard/publisher/adverts-edit.php:296
1355
  msgid "Everything below is optional."
1356
  msgstr "Allt nedan är frivillig."
1357
 
1358
- #: dashboard/publisher/adverts-edit.php:300
1359
- msgid "Mobile"
1360
  msgstr ""
1361
 
1362
- #: dashboard/publisher/adverts-edit.php:302
1363
- msgid "Show on;"
1364
- msgstr ""
 
 
1365
 
1366
- #: dashboard/publisher/adverts-edit.php:302
1367
- msgid "Computers"
1368
  msgstr ""
1369
 
1370
- #: dashboard/publisher/adverts-edit.php:302
1371
- msgid "Smartphones"
1372
- msgstr ""
1373
 
1374
- #: dashboard/publisher/adverts-edit.php:302
1375
- msgid "Tablets."
1376
  msgstr ""
1377
 
1378
- #: dashboard/publisher/adverts-edit.php:303
1379
- msgid "Also enable mobile support in the group this advert goes in."
 
 
 
 
1380
  msgstr ""
1381
 
1382
- #: dashboard/publisher/adverts-edit.php:307
1383
- msgid "Responsive"
1384
  msgstr ""
1385
 
1386
- #: dashboard/publisher/adverts-edit.php:309
1387
- #, fuzzy
1388
- msgid "Enable responsive support for this advert."
1389
- msgstr "Aktivera klickspårning för denna annons."
1390
 
1391
- #: dashboard/publisher/adverts-edit.php:310
1392
- msgid ""
1393
- "Upload your images to the banner folder and make sure the filename is in the "
1394
- "following format; \"imagename.full.ext\"."
1395
  msgstr ""
1396
 
1397
- #: dashboard/publisher/adverts-edit.php:312
1398
- #: dashboard/publisher/adverts-report.php:64
1399
- #: dashboard/publisher/groups-report.php:65
1400
- msgid "Note:"
1401
- msgstr "Notera:"
1402
 
1403
- #: dashboard/publisher/adverts-edit.php:312
1404
  msgid ""
1405
- "This feature will not be developed any further. Consider switching to the "
1406
- "Mobile feature in AdRotate Pro as seen above!"
1407
  msgstr ""
1408
 
1409
- #: dashboard/publisher/adverts-edit.php:316
1410
- #: dashboard/publisher/groups-edit.php:194
1411
  msgid "Sortorder"
1412
  msgstr ""
1413
 
1414
- #: dashboard/publisher/adverts-edit.php:318
1415
- #: dashboard/publisher/groups-edit.php:196
1416
  msgid "For administrative purposes set a sortorder."
1417
  msgstr "För administrativa ändamål sätt en sortorder."
1418
 
1419
- #: dashboard/publisher/adverts-edit.php:318
1420
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1421
  msgstr ""
1422
  "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till annons-ID."
1423
 
1424
- #: dashboard/publisher/adverts-edit.php:323
1425
  msgid ""
1426
  "With AdRotate Pro you can easily select which devices the advert should show "
1427
  "on!"
1428
  msgstr ""
1429
 
1430
- #: dashboard/publisher/adverts-edit.php:325
1431
  msgid "Geo Targeting in AdRotate Pro"
1432
  msgstr ""
1433
 
1434
- #: dashboard/publisher/adverts-edit.php:326
1435
  msgid ""
1436
  "Assign the advert to a group and enable that group to use Geo Targeting."
1437
  msgstr ""
1438
 
1439
- #: dashboard/publisher/adverts-edit.php:330
1440
  msgid "Cities/States"
1441
  msgstr ""
1442
 
1443
- #: dashboard/publisher/adverts-edit.php:333
1444
  msgid ""
1445
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1446
  "states ISO codes are supported)"
1447
  msgstr ""
1448
 
1449
- #: dashboard/publisher/adverts-edit.php:333
1450
  #, fuzzy
1451
  msgid ""
1452
  "AdRotate does not check the validity of names so make sure you spell them "
@@ -1455,55 +1445,55 @@ msgstr ""
1455
  "AdRotate kan inte kontrollera giltigheten av namn så se till att stava dem "
1456
  "rätt!"
1457
 
1458
- #: dashboard/publisher/adverts-edit.php:337
1459
  msgid "Countries"
1460
  msgstr ""
1461
 
1462
- #: dashboard/publisher/adverts-edit.php:362
1463
  #, fuzzy
1464
  msgid "Select the countries you want the adverts to show in."
1465
  msgstr "Välj de länder som du vill att annonser för att visa i."
1466
 
1467
- #: dashboard/publisher/adverts-edit.php:362
1468
  #, fuzzy
1469
  msgid "Cities take priority and will be filtered first."
1470
  msgstr "Städer prioriteras och kommer att filtreras först."
1471
 
1472
- #: dashboard/publisher/adverts-edit.php:367
1473
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1474
  msgstr ""
1475
 
1476
- #: dashboard/publisher/adverts-edit.php:391
1477
  msgid "Select Groups"
1478
  msgstr "Välj Grupper"
1479
 
1480
- #: dashboard/publisher/adverts-edit.php:396
1481
  msgid "ID - Name"
1482
  msgstr "ID - Namn"
1483
 
1484
- #: dashboard/publisher/adverts-edit.php:406
1485
  #: dashboard/publisher/groups-main.php:60
1486
- #: dashboard/settings/geotargeting.php:36
1487
  msgid "Default"
1488
  msgstr "Default"
1489
 
1490
- #: dashboard/publisher/adverts-edit.php:407
1491
  #: dashboard/publisher/groups-main.php:61
1492
  msgid "Dynamic"
1493
  msgstr "Dynamic"
1494
 
1495
- #: dashboard/publisher/adverts-edit.php:407
1496
  #: dashboard/publisher/groups-main.php:61
1497
  #, fuzzy
1498
  msgid "second rotation"
1499
  msgstr "Geo Location"
1500
 
1501
- #: dashboard/publisher/adverts-edit.php:408
1502
  #: dashboard/publisher/groups-main.php:62
1503
  msgid "Block"
1504
  msgstr "Block"
1505
 
1506
- #: dashboard/publisher/adverts-edit.php:408
1507
  #: dashboard/publisher/groups-main.php:62
1508
  #, fuzzy
1509
  msgid "grid"
@@ -1511,18 +1501,18 @@ msgstr ""
1511
  "Gör ett rutnät för dina annonser. Fylla i 2 och 2 gör ett 2x2 rutnät. "
1512
  "(Standard: 2/2)"
1513
 
1514
- #: dashboard/publisher/adverts-edit.php:409
1515
- #: dashboard/publisher/groups-edit.php:202
1516
  #: dashboard/publisher/groups-main.php:63
1517
  msgid "Post Injection"
1518
  msgstr "Post injektion"
1519
 
1520
- #: dashboard/publisher/adverts-edit.php:410
1521
  msgid "Geolocation"
1522
  msgstr "Geolocation"
1523
 
1524
- #: dashboard/publisher/adverts-edit.php:416
1525
- #: dashboard/publisher/groups-edit.php:61
1526
  #: dashboard/publisher/groups-main.php:70
1527
  msgid "Mode"
1528
  msgstr "läge"
@@ -1562,7 +1552,7 @@ msgid "For 7 days"
1562
  msgstr "För 7 dagar"
1563
 
1564
  #: dashboard/publisher/adverts-error.php:71
1565
- #: dashboard/publisher/groups-edit.php:386
1566
  msgid "Configuration errors."
1567
  msgstr "Konfigurations fel."
1568
 
@@ -1575,11 +1565,6 @@ msgstr ""
1575
  msgid "Export to XML"
1576
  msgstr "Exportera"
1577
 
1578
- #: dashboard/publisher/adverts-main.php:42
1579
- #: dashboard/publisher/groups-edit.php:336
1580
- msgid "Weight"
1581
- msgstr "Vikt"
1582
-
1583
  #: dashboard/publisher/adverts-main.php:45
1584
  #: dashboard/publisher/adverts-main.php:47
1585
  #: dashboard/publisher/groups-main.php:37
@@ -1617,6 +1602,13 @@ msgstr "Klick idag"
1617
  msgid "Monthly overview of clicks and impressions"
1618
  msgstr "Månads översikt av klick och visningar"
1619
 
 
 
 
 
 
 
 
1620
  #: dashboard/publisher/adverts-report.php:64
1621
  #: dashboard/publisher/groups-report.php:65
1622
  msgid ""
@@ -1634,321 +1626,321 @@ msgstr "Ny grupp"
1634
  msgid "Edit Group"
1635
  msgstr "Redigera grupp"
1636
 
1637
- #: dashboard/publisher/groups-edit.php:64
1638
  msgid "Default - Show one ad at a time"
1639
  msgstr "Standard - Visa en annons i taget"
1640
 
1641
- #: dashboard/publisher/groups-edit.php:65
1642
  msgid "Dynamic Mode - Show a different ad every few seconds"
1643
  msgstr "Dynamiskt läge - Visa en annan annons med några sekunders"
1644
 
1645
- #: dashboard/publisher/groups-edit.php:66
1646
  msgid "Block Mode - Show a block of adverts"
1647
  msgstr ""
1648
 
1649
- #: dashboard/publisher/groups-edit.php:70
1650
  #, fuzzy
1651
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1652
  msgstr ""
1653
  "'Dynamic' och 'block' läge kräver 'jQuery' och 'jQuery Showoff' att laddas. "
1654
  "Du kan aktivera detta i AdRotate inställningar."
1655
 
1656
- #: dashboard/publisher/groups-edit.php:77
1657
- #: dashboard/publisher/groups-edit.php:104
1658
  msgid "Dynamic and Block Mode"
1659
  msgstr "Dynamisk och Blockläge"
1660
 
1661
- #: dashboard/publisher/groups-edit.php:78
1662
  msgid "Only required if your group is in Dynamic or Block mode."
1663
  msgstr "Krävs endast om din grupp är i dynamisk eller Blockera läget."
1664
 
1665
- #: dashboard/publisher/groups-edit.php:82
1666
  msgid "Block size"
1667
  msgstr ""
1668
 
1669
- #: dashboard/publisher/groups-edit.php:88
1670
  msgid "rows"
1671
  msgstr "rader"
1672
 
1673
- #: dashboard/publisher/groups-edit.php:92
1674
  msgid "columns"
1675
  msgstr "kolumner"
1676
 
1677
- #: dashboard/publisher/groups-edit.php:95
1678
  msgid "Block Mode"
1679
  msgstr "Blockläge"
1680
 
1681
- #: dashboard/publisher/groups-edit.php:95
1682
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1683
  msgstr ""
1684
 
1685
- #: dashboard/publisher/groups-edit.php:99
1686
  msgid "Advert size"
1687
  msgstr ""
1688
 
1689
- #: dashboard/publisher/groups-edit.php:101
1690
  msgid "pixel(s) wide"
1691
  msgstr "bildpunkt (er) bredd"
1692
 
1693
- #: dashboard/publisher/groups-edit.php:101
1694
  msgid "pixel(s) high."
1695
  msgstr "bildpunkter (er) hög."
1696
 
1697
- #: dashboard/publisher/groups-edit.php:104
1698
  msgid ""
1699
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1700
  "recommended). Default: 125/125."
1701
  msgstr ""
1702
 
1703
- #: dashboard/publisher/groups-edit.php:108
1704
  msgid "Automated refresh"
1705
  msgstr "Automatisk uppdatering"
1706
 
1707
- #: dashboard/publisher/groups-edit.php:127
1708
  msgid "seconds."
1709
  msgstr "sekunder."
1710
 
1711
- #: dashboard/publisher/groups-edit.php:130
1712
  msgid "Dynamic Mode"
1713
  msgstr "Dynamiskt läge"
1714
 
1715
- #: dashboard/publisher/groups-edit.php:130
1716
  msgid ""
1717
  "Load a new advert in this interval without reloading the page. Default: 6."
1718
  msgstr ""
1719
  "Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
1720
 
1721
- #: dashboard/publisher/groups-edit.php:141
1722
- #: dashboard/publisher/groups-edit.php:288
1723
  msgid ""
1724
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1725
  "Adverts\" and enter ID"
1726
  msgstr ""
1727
 
1728
- #: dashboard/publisher/groups-edit.php:153
1729
- #: dashboard/publisher/groups-edit.php:300
1730
- #: dashboard/publisher/groups-edit.php:392
1731
  #, fuzzy
1732
  msgid "Save Group"
1733
  msgstr "Spara"
1734
 
1735
- #: dashboard/publisher/groups-edit.php:161
1736
  msgid "Advert Margin"
1737
  msgstr "Annons Marginal"
1738
 
1739
- #: dashboard/publisher/groups-edit.php:163
1740
  msgid "pixel(s)"
1741
  msgstr "bildpunkt (er)"
1742
 
1743
- #: dashboard/publisher/groups-edit.php:166
1744
  #, fuzzy
1745
  msgid "A transparent area outside the advert in pixels. Default: 0."
1746
  msgstr "En transparant border utanför annonsen i pixlar. Standard: 1."
1747
 
1748
- #: dashboard/publisher/groups-edit.php:166
1749
  #, fuzzy
1750
  msgid "Set to 0 to disable."
1751
  msgstr "Standard: 10. Sätt till 0 för att inaktivera denna timer."
1752
 
1753
- #: dashboard/publisher/groups-edit.php:166
1754
  msgid "Margins are automatically disabled for blocks where required."
1755
  msgstr ""
1756
 
1757
- #: dashboard/publisher/groups-edit.php:170
1758
  #, fuzzy
1759
  msgid "Align the group"
1760
  msgstr "Annonser i grupp"
1761
 
1762
- #: dashboard/publisher/groups-edit.php:173
1763
  #, fuzzy
1764
  msgid "None (Default)"
1765
  msgstr "Default"
1766
 
1767
- #: dashboard/publisher/groups-edit.php:174
1768
  msgid "Left"
1769
  msgstr ""
1770
 
1771
- #: dashboard/publisher/groups-edit.php:175
1772
  #, fuzzy
1773
  msgid "Right"
1774
  msgstr "Vikt"
1775
 
1776
- #: dashboard/publisher/groups-edit.php:176
1777
  msgid "Center"
1778
  msgstr ""
1779
 
1780
- #: dashboard/publisher/groups-edit.php:180
1781
  msgid ""
1782
  "Align the group in your post or page. Using 'center' may affect your margin "
1783
  "setting. Not every theme supports this feature."
1784
  msgstr ""
1785
 
1786
- #: dashboard/publisher/groups-edit.php:184
1787
- #: dashboard/settings/advertisers.php:28
1788
  msgid "Geo Targeting"
1789
  msgstr "Geo Targeting"
1790
 
1791
- #: dashboard/publisher/groups-edit.php:185
1792
  msgid "Enable Geo Targeting for this group."
1793
  msgstr ""
1794
 
1795
- #: dashboard/publisher/groups-edit.php:186
1796
  msgid "Do not forget to tell the adverts for which areas they should show."
1797
  msgstr "Glöm inte att tala om för de annonser för vilka områden de ska visa."
1798
 
1799
- #: dashboard/publisher/groups-edit.php:189
1800
  msgid "Mobile support"
1801
  msgstr ""
1802
 
1803
- #: dashboard/publisher/groups-edit.php:190
1804
  msgid "Enable mobile support for this group."
1805
  msgstr ""
1806
 
1807
- #: dashboard/publisher/groups-edit.php:191
1808
  msgid "Do not forget to put at least one mobile advert in this group."
1809
  msgstr ""
1810
 
1811
- #: dashboard/publisher/groups-edit.php:196
1812
  msgid "Leave empty or 0 to skip this. Will default to group id."
1813
  msgstr ""
1814
  "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till grupp-ID."
1815
 
1816
- #: dashboard/publisher/groups-edit.php:200
1817
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1818
  msgstr ""
1819
 
1820
- #: dashboard/publisher/groups-edit.php:205
1821
  msgid "In categories?"
1822
  msgstr ""
1823
 
1824
- #: dashboard/publisher/groups-edit.php:209
1825
- #: dashboard/publisher/groups-edit.php:247
1826
- #: dashboard/settings/geotargeting.php:19 dashboard/settings/statistics.php:19
1827
  #, fuzzy
1828
  msgid "Disabled"
1829
  msgstr "Inaktivera annonser"
1830
 
1831
- #: dashboard/publisher/groups-edit.php:210
1832
- #: dashboard/publisher/groups-edit.php:248
1833
  #, fuzzy
1834
  msgid "Before content"
1835
  msgstr "Innan publicerat innehåll"
1836
 
1837
- #: dashboard/publisher/groups-edit.php:211
1838
- #: dashboard/publisher/groups-edit.php:249
1839
  #, fuzzy
1840
  msgid "After content"
1841
  msgstr "Före och efter innehållet"
1842
 
1843
- #: dashboard/publisher/groups-edit.php:212
1844
- #: dashboard/publisher/groups-edit.php:250
1845
  #, fuzzy
1846
  msgid "Before and after content"
1847
  msgstr "Före och efter innehållet"
1848
 
1849
- #: dashboard/publisher/groups-edit.php:213
1850
- #: dashboard/publisher/groups-edit.php:251
1851
  msgid "Inside the content..."
1852
  msgstr ""
1853
 
1854
- #: dashboard/publisher/groups-edit.php:219
1855
- #: dashboard/publisher/groups-edit.php:257
1856
  msgid "after the middle paragraph"
1857
  msgstr ""
1858
 
1859
- #: dashboard/publisher/groups-edit.php:220
1860
- #: dashboard/publisher/groups-edit.php:258
1861
  msgid "after the 1st paragraph"
1862
  msgstr ""
1863
 
1864
- #: dashboard/publisher/groups-edit.php:221
1865
- #: dashboard/publisher/groups-edit.php:259
1866
  msgid "after the 2nd paragraph"
1867
  msgstr ""
1868
 
1869
- #: dashboard/publisher/groups-edit.php:222
1870
- #: dashboard/publisher/groups-edit.php:260
1871
  msgid "after the 3rd paragraph"
1872
  msgstr ""
1873
 
1874
- #: dashboard/publisher/groups-edit.php:223
1875
- #: dashboard/publisher/groups-edit.php:261
1876
  msgid "after the 4th paragraph"
1877
  msgstr ""
1878
 
1879
- #: dashboard/publisher/groups-edit.php:224
1880
- #: dashboard/publisher/groups-edit.php:262
1881
  msgid "after the 5th paragraph"
1882
  msgstr ""
1883
 
1884
- #: dashboard/publisher/groups-edit.php:225
1885
- #: dashboard/publisher/groups-edit.php:263
1886
  msgid "after the 6th paragraph"
1887
  msgstr ""
1888
 
1889
- #: dashboard/publisher/groups-edit.php:226
1890
- #: dashboard/publisher/groups-edit.php:264
1891
  msgid "after the 7th paragraph"
1892
  msgstr ""
1893
 
1894
- #: dashboard/publisher/groups-edit.php:227
1895
- #: dashboard/publisher/groups-edit.php:265
1896
  msgid "after the 8th paragraph"
1897
  msgstr ""
1898
 
1899
- #: dashboard/publisher/groups-edit.php:233
1900
  msgid "Which categories?"
1901
  msgstr "Vilka kategorier?"
1902
 
1903
- #: dashboard/publisher/groups-edit.php:238
1904
  msgid "Click the categories posts you want the adverts to show in."
1905
  msgstr "Klicka på kategorierna inlägg du vill att annonser för att visa i."
1906
 
1907
- #: dashboard/publisher/groups-edit.php:243
1908
  msgid "In pages?"
1909
  msgstr ""
1910
 
1911
- #: dashboard/publisher/groups-edit.php:271
1912
  msgid "Which pages?"
1913
  msgstr "Vilka sidor?"
1914
 
1915
- #: dashboard/publisher/groups-edit.php:276
1916
  msgid "Click the pages you want the adverts to show in."
1917
  msgstr "Klicka på de sidor du vill annonserna att visa i."
1918
 
1919
- #: dashboard/publisher/groups-edit.php:304
1920
  msgid "Wrapper code"
1921
  msgstr "Wrapper kod"
1922
 
1923
- #: dashboard/publisher/groups-edit.php:305
1924
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1925
  msgstr ""
1926
 
1927
- #: dashboard/publisher/groups-edit.php:309
1928
  msgid "Before advert"
1929
  msgstr ""
1930
 
1931
- #: dashboard/publisher/groups-edit.php:313
1932
  msgid "Options:"
1933
  msgstr "Options:"
1934
 
1935
- #: dashboard/publisher/groups-edit.php:317
1936
  msgid "After advert"
1937
  msgstr ""
1938
 
1939
- #: dashboard/publisher/groups-edit.php:326
1940
  msgid "Select adverts"
1941
  msgstr ""
1942
 
1943
- #: dashboard/publisher/groups-edit.php:331
1944
  msgid "Choose adverts"
1945
  msgstr ""
1946
 
1947
- #: dashboard/publisher/groups-edit.php:337
1948
  msgid "Visible until"
1949
  msgstr "Synlig tills"
1950
 
1951
- #: dashboard/publisher/groups-edit.php:379
1952
  msgid "No adverts created!"
1953
  msgstr ""
1954
 
@@ -1968,8 +1960,8 @@ msgstr "Du håller på att ta bort en grupp"
1968
  msgid "This action can not be undone!"
1969
  msgstr "Denna åtgärd kan inte ångras!"
1970
 
1971
- #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:18
1972
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
1973
  msgid "OK to continue, CANCEL to stop."
1974
  msgstr "OK för att fortsätta, CANCEL för att avbryta."
1975
 
@@ -1981,165 +1973,180 @@ msgstr "Inga grupper skapas!"
1981
  msgid "Statistics for group"
1982
  msgstr "Statistik för grupp"
1983
 
1984
- #: dashboard/settings/advertisers.php:12
1985
  msgid "Advertisers - Available in AdRotate Pro"
1986
  msgstr ""
1987
 
1988
- #: dashboard/settings/advertisers.php:13
1989
  #, fuzzy
1990
  msgid "Enable advertisers so they can review and manage their own ads."
1991
  msgstr "Aktivera Annonsörer"
1992
 
1993
- #: dashboard/settings/advertisers.php:16
1994
  msgid "Enable Advertisers"
1995
  msgstr "Aktivera Annonsörer"
1996
 
1997
- #: dashboard/settings/advertisers.php:18
1998
  msgid "Allow adverts to be coupled to users (Advertisers)."
1999
  msgstr "Tillåt reklam för att kopplas till användare (annonsörer)."
2000
 
2001
- #: dashboard/settings/advertisers.php:22
2002
  msgid "Edit/update adverts"
2003
  msgstr "Edit / update annonser"
2004
 
2005
- #: dashboard/settings/advertisers.php:24
2006
  msgid "Allow advertisers to add new or edit their adverts."
2007
  msgstr "Tillåt annonsörer att lägga till nya eller redigera sina annonser."
2008
 
2009
- #: dashboard/settings/advertisers.php:30
 
 
 
 
 
 
 
 
2010
  msgid ""
2011
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2012
  "be enabled, too."
2013
  msgstr ""
2014
 
2015
- #: dashboard/settings/advertisers.php:34
2016
  msgid "Advertiser role"
2017
  msgstr "Annonsören role"
2018
 
2019
- #: dashboard/settings/advertisers.php:36
2020
  msgid "Create a seperate user role for your advertisers."
2021
  msgstr ""
2022
 
2023
- #: dashboard/settings/advertisers.php:37
2024
  msgid ""
2025
  "Don't forget to give these users access to their advertiser dashboard via "
2026
  "the Roles tab."
2027
  msgstr ""
2028
 
2029
- #: dashboard/settings/general.php:12
 
 
 
 
 
 
 
2030
  msgid "General Settings"
2031
  msgstr ""
2032
 
2033
- #: dashboard/settings/general.php:13
2034
  msgid "General settings for AdRotate."
2035
  msgstr ""
2036
 
2037
- #: dashboard/settings/general.php:13 dashboard/settings/statistics.php:13
2038
  msgid "Some options are only available in AdRotate Pro!"
2039
  msgstr ""
2040
 
2041
- #: dashboard/settings/general.php:16
2042
  msgid "Shortcode in widgets"
2043
  msgstr ""
2044
 
2045
- #: dashboard/settings/general.php:17
2046
  msgid ""
2047
  "Enable this option to if your theme does not support shortcodes in the "
2048
  "WordPress text widget."
2049
  msgstr ""
2050
 
2051
- #: dashboard/settings/general.php:20
2052
  msgid "Disable live preview"
2053
  msgstr ""
2054
 
2055
- #: dashboard/settings/general.php:21
2056
  msgid ""
2057
  "Enable this option if you have faulty adverts that overflow their designated "
2058
  "area while creating/editing adverts."
2059
  msgstr ""
2060
 
2061
- #: dashboard/settings/general.php:24
2062
  msgid "Disable dynamic mode"
2063
  msgstr ""
2064
 
2065
- #: dashboard/settings/general.php:25
2066
  msgid ""
2067
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2068
  "you notice skipping or jumpy content."
2069
  msgstr ""
2070
 
2071
- #: dashboard/settings/general.php:28
2072
  #, fuzzy
2073
  msgid "Load jQuery"
2074
  msgstr ""
2075
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
2076
  "om andra plugins eller teman redan läsa här."
2077
 
2078
- #: dashboard/settings/general.php:29
2079
  msgid ""
2080
  "Enable this option if your theme does not load jQuery. jQuery is required "
2081
  "for dynamic groups, statistics and some other features."
2082
  msgstr ""
2083
 
2084
- #: dashboard/settings/general.php:32
2085
  msgid "Load scripts in footer?"
2086
  msgstr ""
2087
 
2088
- #: dashboard/settings/general.php:33
2089
  msgid ""
2090
  "Enable this option if you want to load all AdRotate Javascripts in the "
2091
  "footer of your site."
2092
  msgstr ""
2093
 
2094
- #: dashboard/settings/general.php:36
2095
  msgid "Adblock disguise"
2096
  msgstr ""
2097
 
2098
- #: dashboard/settings/general.php:38
2099
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2100
  msgstr ""
2101
 
2102
- #: dashboard/settings/general.php:39
2103
  msgid ""
2104
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2105
  msgstr ""
2106
 
2107
- #: dashboard/settings/general.php:39
2108
  msgid ""
2109
  "To also apply this feature to widgets, use a text widget with a shortcode "
2110
  "instead of the AdRotate widget."
2111
  msgstr ""
2112
 
2113
- #: dashboard/settings/general.php:39
2114
  msgid ""
2115
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2116
  "feature will have little effect!"
2117
  msgstr ""
2118
 
2119
- #: dashboard/settings/general.php:44
2120
  msgid "Banner Folder"
2121
  msgstr "Banner Folder"
2122
 
2123
- #: dashboard/settings/general.php:45
2124
  #, fuzzy
2125
  msgid "Set a location where your banner images will be stored."
2126
  msgstr ""
2127
  "Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
2128
  "banners /)."
2129
 
2130
- #: dashboard/settings/general.php:48
2131
  #, fuzzy
2132
  msgid "Location"
2133
  msgstr "Geo Location"
2134
 
2135
- #: dashboard/settings/general.php:50
2136
  #, fuzzy
2137
  msgid "(Default: wp-content/banners/)."
2138
  msgstr ""
2139
  "Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
2140
  "banners /)."
2141
 
2142
- #: dashboard/settings/general.php:51
2143
  msgid ""
2144
  "To try and trick ad blockers you could set the folder to something crazy "
2145
  "like:"
@@ -2147,7 +2154,7 @@ msgstr ""
2147
  "Att försöka lura annons blockerare som du kan ställa in mappen till något "
2148
  "galet som:"
2149
 
2150
- #: dashboard/settings/general.php:52
2151
  msgid ""
2152
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2153
  "will show errors when the folder is missing."
@@ -2155,123 +2162,155 @@ msgstr ""
2155
  "Denna mapp kommer inte automatiskt att skapas om den inte existerar. "
2156
  "AdRotate visar fel när mappen saknas."
2157
 
2158
- #: dashboard/settings/general.php:57
2159
  #, fuzzy
2160
  msgid "Bot filter"
2161
  msgstr "User-Agent Filter"
2162
 
2163
- #: dashboard/settings/general.php:58
2164
  msgid "The bot filter is used for the AdRotate stats tracker."
2165
  msgstr ""
2166
 
2167
- #: dashboard/settings/general.php:61
2168
  msgid "User-Agent Filter"
2169
  msgstr "User-Agent Filter"
2170
 
2171
- #: dashboard/settings/general.php:64
2172
  msgid ""
2173
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2174
  msgstr ""
2175
 
2176
- #: dashboard/settings/general.php:65
2177
  msgid ""
2178
  "Keep in mind that this might give false positives. The word 'fire' also "
2179
  "matches 'firefox', but not vice-versa. So be careful!"
2180
  msgstr ""
2181
 
2182
- #: dashboard/settings/general.php:66
2183
  msgid ""
2184
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2185
  "characters are stripped out."
2186
  msgstr ""
2187
 
2188
- #: dashboard/settings/general.php:67
2189
  msgid ""
2190
  "Additionally to the list specified here, empty User-Agents are blocked as "
2191
  "well."
2192
  msgstr ""
2193
  "Ytterligare till listan anges här, tomma user-agents blockerades också."
2194
 
2195
- #: dashboard/settings/general.php:67
2196
  msgid "Learn more about"
2197
  msgstr "Läs mer om"
2198
 
2199
- #: dashboard/settings/general.php:67
2200
  msgid "user-agents"
2201
  msgstr "user-agents"
2202
 
2203
- #: dashboard/settings/geotargeting.php:12
2204
  msgid "Geo Targeting - Available in AdRotate Pro"
2205
  msgstr ""
2206
 
2207
- #: dashboard/settings/geotargeting.php:13
2208
  msgid "Target certain areas in the world for better advertising oppurtunities."
2209
  msgstr ""
2210
 
2211
- #: dashboard/settings/geotargeting.php:16
2212
  msgid "Which Geo Service"
2213
  msgstr ""
2214
 
2215
- #: dashboard/settings/geotargeting.php:25
2216
- msgid ""
2217
- "The most complete and accurate geo targeting you can get for only $20 USD "
2218
- "per 50000 lookups."
 
 
2219
  msgstr ""
2220
 
2221
- #: dashboard/settings/geotargeting.php:27
2222
- msgid "Free lookups every day, uses GeoLite2 databases from MaxMind!"
 
 
 
 
 
 
 
 
2223
  msgstr ""
2224
 
2225
  #: dashboard/settings/geotargeting.php:33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2226
  msgid "Geo Cookie Lifespan"
2227
  msgstr ""
2228
 
2229
- #: dashboard/settings/geotargeting.php:42
2230
  msgid "Hours."
2231
  msgstr ""
2232
 
2233
- #: dashboard/settings/geotargeting.php:43
2234
  msgid ""
2235
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2236
  "cookie last? A longer period is less accurate for mobile users but may "
2237
  "reduce the usage of your lookups drastically."
2238
  msgstr ""
2239
 
2240
- #: dashboard/settings/geotargeting.php:49
2241
  msgid "MaxMind City/Country"
2242
  msgstr ""
2243
 
2244
- #: dashboard/settings/geotargeting.php:52
2245
  msgid "Username/Email"
2246
  msgstr ""
2247
 
2248
- #: dashboard/settings/geotargeting.php:56
2249
  msgid "Password/License Key"
2250
  msgstr ""
2251
 
2252
- #: dashboard/settings/maintenance.php:12
2253
  msgid "Maintenance"
2254
  msgstr "Underhåll"
2255
 
2256
- #: dashboard/settings/maintenance.php:13
2257
  msgid ""
2258
  "Use these functions when you notice your database is slow, unresponsive and "
2259
  "sluggish."
2260
  msgstr ""
2261
 
2262
- #: dashboard/settings/maintenance.php:16 dashboard/settings/maintenance.php:18
2263
  msgid "Optimize Database"
2264
  msgstr "Optimera Databas"
2265
 
2266
- #: dashboard/settings/maintenance.php:18
2267
  msgid "You are about to optimize the AdRotate database."
2268
  msgstr "Du håller på att optimera AdRotate databasen."
2269
 
2270
- #: dashboard/settings/maintenance.php:18
2271
  msgid "Did you make a backup of your database?"
2272
  msgstr "Har du gjort en säkerhetskopia av din databas?"
2273
 
2274
- #: dashboard/settings/maintenance.php:18
2275
  msgid ""
2276
  "This may take a moment and may cause your website to respond slow "
2277
  "temporarily!"
@@ -2279,11 +2318,11 @@ msgstr ""
2279
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
2280
  "tillfälligt!"
2281
 
2282
- #: dashboard/settings/maintenance.php:19
2283
  msgid "Cleans up overhead data in the AdRotate tables."
2284
  msgstr "Rensar övervakningsdata i AdRotate tabeller."
2285
 
2286
- #: dashboard/settings/maintenance.php:20
2287
  msgid ""
2288
  "Overhead data is accumulated garbage resulting from many changes you've "
2289
  "made. This can vary from nothing to hundreds of KiB of data."
@@ -2291,11 +2330,11 @@ msgstr ""
2291
  "Övervaknings uppgifter samlas skräp till följd av många ändringar du har "
2292
  "gjort. Denna kan variera från ingenting till hundratals KiB of data."
2293
 
2294
- #: dashboard/settings/maintenance.php:24 dashboard/settings/maintenance.php:26
2295
  msgid "Clean-up Database"
2296
  msgstr "Städa upp Databas"
2297
 
2298
- #: dashboard/settings/maintenance.php:26
2299
  msgid ""
2300
  "You are about to clean up your database. This may delete expired schedules "
2301
  "and older statistics."
@@ -2303,55 +2342,55 @@ msgstr ""
2303
  "Du håller på att städa upp din databas. Detta kan ta bort utgångna scheman "
2304
  "och äldre statistik."
2305
 
2306
- #: dashboard/settings/maintenance.php:26
2307
  msgid "Are you sure you want to continue?"
2308
  msgstr "Är du säker på att du vill fortsätta?"
2309
 
2310
- #: dashboard/settings/maintenance.php:26 dashboard/settings/maintenance.php:34
2311
  #, fuzzy
2312
  msgid "This might take a while and may slow down your site during this action!"
2313
  msgstr ""
2314
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
2315
  "tillfälligt!"
2316
 
2317
- #: dashboard/settings/maintenance.php:27
2318
  msgid "Delete stats older than 356 days (Optional)."
2319
  msgstr "Radera statistik äldre än 356 dagar (tillval)."
2320
 
2321
- #: dashboard/settings/maintenance.php:28
2322
  msgid ""
2323
  "AdRotate creates empty records when you start making ads, groups or "
2324
  "schedules. In rare occasions these records are faulty."
2325
  msgstr ""
2326
 
2327
- #: dashboard/settings/maintenance.php:28
2328
  msgid ""
2329
  "If you made an ad, group or schedule that does not save when you make it use "
2330
  "this button to delete those empty records."
2331
  msgstr ""
2332
 
2333
- #: dashboard/settings/maintenance.php:28
2334
  msgid ""
2335
  "Additionally you can clean up old schedules and/or statistics. This will "
2336
  "improve the speed of your site."
2337
  msgstr ""
2338
 
2339
- #: dashboard/settings/maintenance.php:32
2340
  #, fuzzy
2341
  msgid "Re-evaluate Ads"
2342
  msgstr "Omvärdera annonser"
2343
 
2344
- #: dashboard/settings/maintenance.php:34
2345
  #, fuzzy
2346
  msgid "Re-evaluate all ads"
2347
  msgstr "Omvärdera alla annonser"
2348
 
2349
- #: dashboard/settings/maintenance.php:34
2350
  #, fuzzy
2351
  msgid "You are about to check all ads for errors."
2352
  msgstr "Du håller på att kolla alla annonser för fel."
2353
 
2354
- #: dashboard/settings/maintenance.php:35
2355
  #, fuzzy
2356
  msgid ""
2357
  "This will apply all evaluation rules to all ads to see if any error slipped "
@@ -2360,7 +2399,7 @@ msgstr ""
2360
  "Detta kommer att gälla alla regler utvärderings alla annonser för att se om "
2361
  "något fel halkade in. Normalt ska du inte behöva den här funktionen."
2362
 
2363
- #: dashboard/settings/maintenance.php:39
2364
  msgid ""
2365
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2366
  "database. They only apply to your ads/groups and stats. Not to other "
@@ -2373,11 +2412,11 @@ msgid ""
2373
  "is not a valid point in any case."
2374
  msgstr ""
2375
 
2376
- #: dashboard/settings/maintenance.php:41
2377
  msgid "Troubleshooting"
2378
  msgstr "Felsökning"
2379
 
2380
- #: dashboard/settings/maintenance.php:42
2381
  msgid ""
2382
  "The below options are not meant for normal use and are only there for "
2383
  "developers to review saved settings or how ads are selected. These can be "
@@ -2385,107 +2424,125 @@ msgid ""
2385
  "SHOULD BE LEFT UNCHECKED!!"
2386
  msgstr ""
2387
 
2388
- #: dashboard/settings/maintenance.php:45
2389
  msgid "Developer Debug"
2390
  msgstr "Utvecklar Debug"
2391
 
2392
- #: dashboard/settings/maintenance.php:47
2393
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2394
  msgstr ""
2395
 
2396
- #: dashboard/settings/maintenance.php:48
2397
  msgid "View advert specs and (some) stats in the dashboard."
2398
  msgstr ""
2399
 
2400
- #: dashboard/settings/maintenance.php:49
2401
  #, fuzzy
2402
  msgid ""
2403
  "Disable timers for clicks and impressions and enable a alert window for "
2404
  "clicktracking."
2405
  msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
2406
 
2407
- #: dashboard/settings/maintenance.php:50
2408
  msgid "Temporarily disable encryption on the redirect url."
2409
  msgstr "Inaktivera tillfälligt kryptering på omdirigera url."
2410
 
2411
- #: dashboard/settings/maintenance.php:55
2412
  msgid "Status and Versions"
2413
  msgstr ""
2414
 
2415
- #: dashboard/settings/maintenance.php:58
2416
- msgid "Current version:"
2417
- msgstr "Aktuell version:"
2418
-
2419
- #: dashboard/settings/maintenance.php:59
2420
- msgid "Previous version:"
2421
- msgstr "Tidigare version:"
2422
-
2423
  #: dashboard/settings/maintenance.php:62
2424
- msgid "Current database version:"
2425
- msgstr "Nuvarande databasversion:"
2426
-
2427
- #: dashboard/settings/maintenance.php:63
2428
- msgid "Previous database version:"
2429
- msgstr "Tidigare databasversion:"
2430
-
2431
- #: dashboard/settings/maintenance.php:66
2432
  msgid "Current status of adverts"
2433
  msgstr "Aktuell status för annonser"
2434
 
2435
- #: dashboard/settings/maintenance.php:67
2436
  msgid "Normal"
2437
  msgstr "Normal"
2438
 
2439
- #: dashboard/settings/maintenance.php:67
2440
  msgid "Error"
2441
  msgstr "Error"
2442
 
2443
- #: dashboard/settings/maintenance.php:67
2444
  msgid "Expired"
2445
  msgstr "Utgånget"
2446
 
2447
- #: dashboard/settings/maintenance.php:67
2448
  msgid "Expires Soon"
2449
  msgstr "Utgår snart"
2450
 
2451
- #: dashboard/settings/maintenance.php:67
2452
  msgid "Unknown"
2453
  msgstr ""
2454
 
2455
- #: dashboard/settings/maintenance.php:70
2456
  msgid "Banners/assets Folder"
2457
  msgstr ""
2458
 
2459
- #: dashboard/settings/maintenance.php:72
2460
  msgid "Exists and appears writable"
2461
  msgstr ""
2462
 
2463
- #: dashboard/settings/maintenance.php:72
2464
  msgid "Not writable or does not exist"
2465
  msgstr ""
2466
 
 
 
 
 
2467
  #: dashboard/settings/maintenance.php:76
2468
- #, fuzzy
2469
- msgid "Ad evaluation next run:"
2470
- msgstr "Annons Meddelanden nästa körning:"
2471
 
2472
- #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:81
2473
- msgid "Not scheduled!"
2474
- msgstr "Inte planerat!"
2475
 
2476
- #: dashboard/settings/maintenance.php:80
2477
- msgid "Clean Trackerdata next run:"
2478
- msgstr "Rensa Trackerdata nästa körning:"
 
 
 
 
2479
 
2480
- #: dashboard/settings/misc.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2481
  msgid "Miscellaneous"
2482
  msgstr "Diverse"
2483
 
2484
- #: dashboard/settings/misc.php:15
2485
  msgid "Widget alignment"
2486
  msgstr "widget inriktnings"
2487
 
2488
- #: dashboard/settings/misc.php:16
2489
  msgid ""
2490
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2491
  "not always help!)"
@@ -2493,11 +2550,11 @@ msgstr ""
2493
  "Markera denna ruta om dina prylar inte rikta in dina teman sidofältet. (Inte "
2494
  "alltid hjälper!)"
2495
 
2496
- #: dashboard/settings/misc.php:19
2497
  msgid "Widget padding"
2498
  msgstr "widget padding"
2499
 
2500
- #: dashboard/settings/misc.php:20
2501
  msgid ""
2502
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2503
  "not always work!)"
@@ -2505,36 +2562,36 @@ msgstr ""
2505
  "Aktivera detta för att ta bort utfyllnaden (mellanslag) runt annonser i "
2506
  "widgets. (Fungerar inte alltid!)"
2507
 
2508
- #: dashboard/settings/misc.php:24
2509
  #, fuzzy
2510
  msgid "NOTICE:"
2511
  msgstr "Meddelande"
2512
 
2513
- #: dashboard/settings/misc.php:25
2514
  msgid ""
2515
  "You have enabled W3 Total Caching support but not defined the security hash."
2516
  msgstr ""
2517
 
2518
- #: dashboard/settings/misc.php:25
2519
  msgid ""
2520
  "AdRotate has generated the following line for you to add to your wp-config."
2521
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2522
  "add this line, check out the following guide;"
2523
  msgstr ""
2524
 
2525
- #: dashboard/settings/misc.php:25
2526
  msgid "Set up W3 Total Caching"
2527
  msgstr ""
2528
 
2529
- #: dashboard/settings/misc.php:29
2530
  msgid "W3 Total Caching"
2531
  msgstr "W3 Total Caching"
2532
 
2533
- #: dashboard/settings/misc.php:30
2534
  msgid "Check this box if you use W3 Total Caching on your site."
2535
  msgstr "Markera denna ruta om du använder W3 Total Caching på din webbplats."
2536
 
2537
- #: dashboard/settings/misc.php:34
2538
  msgid ""
2539
  "It may take a while for the ad to start rotating. The caching plugin needs "
2540
  "to refresh the cache. This can take up to a week if not done manually."
@@ -2543,7 +2600,7 @@ msgstr ""
2543
  "behöver uppdatera cachen. Detta kan ta upp till en vecka om det inte görs "
2544
  "manuellt."
2545
 
2546
- #: dashboard/settings/misc.php:34
2547
  msgid ""
2548
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2549
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
@@ -2551,348 +2608,412 @@ msgstr ""
2551
  "Caching stöd fungerar bara för [shortcodes] och AdRotate Widget. Om du "
2552
  "använder ett PHP Snippet måste du svepa din PHP i utanförskap koden själv."
2553
 
2554
- #: dashboard/settings/notifications.php:12
2555
  msgid "Notifications"
2556
  msgstr "Meddelanden"
2557
 
2558
- #: dashboard/settings/notifications.php:13
2559
  #, fuzzy
2560
  msgid "Set up who gets notifications if ads need your attention."
2561
  msgstr "Annonser som behöver uppmärksammas"
2562
 
2563
- #: dashboard/settings/notifications.php:16
2564
  msgid "How to notify"
2565
  msgstr ""
2566
 
2567
- #: dashboard/settings/notifications.php:18
2568
  msgid "Dashboard banner."
2569
  msgstr ""
2570
 
2571
- #: dashboard/settings/notifications.php:19
2572
  #, fuzzy
2573
  msgid "Email message."
2574
  msgstr "E-post eller Remote sida:"
2575
 
2576
- #: dashboard/settings/notifications.php:20
2577
  msgid "Push notifications to your smartphone."
2578
  msgstr ""
2579
 
2580
- #: dashboard/settings/notifications.php:21
2581
  msgid ""
2582
  "Push notifications are delivered through Pushover, a notification service "
2583
  "for Android and iOS"
2584
  msgstr ""
2585
 
2586
- #: dashboard/settings/notifications.php:21
2587
  msgid ""
2588
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2589
  "information can be found on the pushover website;"
2590
  msgstr ""
2591
 
2592
- #: dashboard/settings/notifications.php:25
2593
  msgid "Test notification"
2594
  msgstr ""
2595
 
2596
- #: dashboard/settings/notifications.php:27
2597
  msgid "Test"
2598
  msgstr "Test"
2599
 
2600
- #: dashboard/settings/notifications.php:27
2601
  msgid ""
2602
  "Send a test notification to enabled methods. Before you test, save the "
2603
  "options first!"
2604
  msgstr ""
2605
 
2606
- #: dashboard/settings/notifications.php:32
2607
- msgid "Dashboard"
2608
  msgstr ""
2609
 
2610
- #: dashboard/settings/notifications.php:33
2611
  msgid ""
2612
  "These go in a dashboard banner visible to all users with access to AdRotate "
2613
  "on every WordPress dashboard page."
2614
  msgstr ""
2615
 
2616
- #: dashboard/settings/notifications.php:36
2617
- #: dashboard/settings/notifications.php:68
 
2618
  msgid "What"
2619
  msgstr ""
2620
 
2621
- #: dashboard/settings/notifications.php:38
2622
  msgid "Expired adverts."
2623
  msgstr ""
2624
 
2625
- #: dashboard/settings/notifications.php:39
2626
  msgid "Almost expired adverts."
2627
  msgstr ""
2628
 
2629
- #: dashboard/settings/notifications.php:44
2630
- msgid "Email"
2631
  msgstr ""
2632
 
2633
- #: dashboard/settings/notifications.php:45
2634
- #, fuzzy
2635
- msgid "Set up who gets notification emails."
2636
- msgstr "Annonser som behöver uppmärksammas"
2637
-
2638
- #: dashboard/settings/notifications.php:48
2639
- #, fuzzy
2640
- msgid "Publishers"
2641
- msgstr ""
2642
- "Gå igenom global statistik, per annons / grupp / block-statistik. Synlig "
2643
- "endast till förlag."
2644
-
2645
  #: dashboard/settings/notifications.php:51
2646
  msgid ""
2647
- "A comma separated list of email addresses. Maximum of 5 addresses. Keep this "
2648
- "list to a minimum!"
2649
  msgstr ""
2650
- "En kommaseparerad lista med e-postadresser. Maximalt av 5 adresser. Spara "
2651
- "denna lista till ett minimum!"
2652
 
2653
- #: dashboard/settings/notifications.php:52
2654
- #, fuzzy
2655
- msgid ""
2656
- "Messages are sent once every 24 hours when needed. If this field is empty no "
2657
- "email notifications will be send."
2658
  msgstr ""
2659
- "Meddelanden skickas en gång per 24 timmar när det behövs. Om detta fält är "
2660
- "tomt funktionen avaktiveras."
2661
 
2662
- #: dashboard/settings/notifications.php:56
2663
- msgid "Advertisers"
2664
- msgstr "Annonsörer"
 
 
 
 
 
 
2665
 
2666
  #: dashboard/settings/notifications.php:59
 
2667
  #, fuzzy
2668
- msgid ""
2669
- "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
2670
- "This field may not be empty!"
2671
- msgstr "Max 2 adresser. Kommaseparerad. Detta fält kan inte vara tomt!"
 
 
 
 
2672
 
2673
- #: dashboard/settings/notifications.php:64
2674
- msgid "Push"
 
 
 
2675
  msgstr ""
2676
 
2677
- #: dashboard/settings/notifications.php:65
2678
  msgid ""
2679
- "Receive information about what is happening with your AdRotate setup on your "
2680
- "smartphone via Pushover."
 
 
 
2681
  msgstr ""
2682
 
2683
- #: dashboard/settings/notifications.php:70
2684
- msgid "When you are running out of Geo Targeting Lookups."
 
2685
  msgstr ""
 
 
2686
 
2687
- #: dashboard/settings/notifications.php:71
2688
- msgid "Daily digest of any advert status other than normal."
 
 
2689
  msgstr ""
2690
 
2691
  #: dashboard/settings/notifications.php:72
2692
- msgid "Any advertiser saving an advert in your moderation queue."
 
 
 
 
 
 
2693
  msgstr ""
2694
 
2695
- #: dashboard/settings/notifications.php:73
2696
  #, fuzzy
2697
- msgid "A moderator approved an advert from the moderation queue."
2698
- msgstr "Godkänn / avvisa annonser i moderation Queue"
2699
 
2700
- #: dashboard/settings/notifications.php:74
2701
- #, fuzzy
2702
- msgid "A moderator rejected an advert from the moderation queue."
2703
- msgstr "Godkänn / avvisa annonser i moderation Queue"
 
2704
 
2705
- #: dashboard/settings/notifications.php:74
2706
  msgid ""
2707
- "If you have a lot of activity with many advertisers adding/changing adverts "
2708
- "you may get a lot of messages!"
 
 
2709
  msgstr ""
2710
 
2711
- #: dashboard/settings/notifications.php:79
2712
  #, fuzzy
2713
  msgid "User Key"
2714
  msgstr "Licensnyckel"
2715
 
2716
- #: dashboard/settings/notifications.php:81
2717
  msgid "Get your user token"
2718
  msgstr ""
2719
 
2720
- #: dashboard/settings/notifications.php:81
2721
- #: dashboard/settings/notifications.php:87
2722
  msgid "here"
2723
  msgstr ""
2724
 
2725
- #: dashboard/settings/notifications.php:85
2726
  msgid "Api Token"
2727
  msgstr ""
2728
 
2729
- #: dashboard/settings/notifications.php:87
2730
  msgid "Create your"
2731
  msgstr ""
2732
 
2733
- #: dashboard/settings/notifications.php:87
2734
  msgid "App"
2735
  msgstr ""
2736
 
2737
- #: dashboard/settings/notifications.php:87
2738
  msgid "and get your API token"
2739
  msgstr ""
2740
 
2741
- #: dashboard/settings/roles.php:12
2742
  msgid "Roles"
2743
  msgstr ""
2744
 
2745
- #: dashboard/settings/roles.php:13
2746
  msgid "Who has access to what?"
2747
  msgstr ""
2748
 
2749
- #: dashboard/settings/roles.php:16
2750
  msgid "Manage/Add/Edit adverts"
2751
  msgstr "Hantera / Lägg till / redigera annonser"
2752
 
2753
- #: dashboard/settings/roles.php:20
2754
  msgid "Role to see and add/edit ads."
2755
  msgstr "Role för att se och lägga till / redigera annonser."
2756
 
2757
- #: dashboard/settings/roles.php:24
2758
  msgid "Delete/Reset adverts"
2759
  msgstr "Radera / Reset annonser"
2760
 
2761
- #: dashboard/settings/roles.php:28
2762
  msgid "Role to delete ads and reset stats."
2763
  msgstr "Role att ta bort annonser och återställ statistik."
2764
 
2765
- #: dashboard/settings/roles.php:32
2766
  msgid "Manage/Add/Edit groups"
2767
  msgstr "Hantera / Lägg till / Redigera grupper"
2768
 
2769
- #: dashboard/settings/roles.php:36
2770
  msgid "Role to see and add/edit groups."
2771
  msgstr "Role för att se och lägga till / redigera grupp."
2772
 
2773
- #: dashboard/settings/roles.php:40
2774
  msgid "Delete groups"
2775
  msgstr "Ta bort grupper"
2776
 
2777
- #: dashboard/settings/roles.php:44
2778
  msgid "Role to delete groups."
2779
  msgstr "Role att ta bort grupper."
2780
 
2781
- #: dashboard/settings/statistics.php:13
2782
  msgid "Track statistics for your adverts."
2783
  msgstr ""
2784
 
2785
- #: dashboard/settings/statistics.php:16
2786
  msgid "How to track stats"
2787
  msgstr ""
2788
 
2789
- #: dashboard/settings/statistics.php:25
2790
  msgid "Tracks impressions and clicks internally"
2791
  msgstr ""
2792
 
2793
- #: dashboard/settings/statistics.php:25 dashboard/settings/statistics.php:27
2794
- #: dashboard/settings/statistics.php:29
2795
  msgid "manual"
2796
  msgstr ""
2797
 
2798
- #: dashboard/settings/statistics.php:26
2799
  msgid ""
2800
  "Click and Impression recording, Click and impression limits, impression "
2801
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2802
  "will only track impressions."
2803
  msgstr ""
2804
 
2805
- #: dashboard/settings/statistics.php:27 dashboard/settings/statistics.php:29
2806
  msgid "In AdRotate Pro!"
2807
  msgstr ""
2808
 
2809
- #: dashboard/settings/statistics.php:27
2810
  msgid ""
2811
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2812
  "attributes"
2813
  msgstr ""
2814
 
2815
- #: dashboard/settings/statistics.php:28
2816
  msgid ""
2817
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2818
  "Contents."
2819
  msgstr ""
2820
 
2821
- #: dashboard/settings/statistics.php:29
2822
  msgid ""
2823
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2824
  "uses onClick() and onload() in adverts"
2825
  msgstr ""
2826
 
2827
- #: dashboard/settings/statistics.php:30
2828
  msgid ""
2829
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2830
  "Banner."
2831
  msgstr ""
2832
 
2833
- #: dashboard/settings/statistics.php:36
2834
  msgid "Internal Tracker"
2835
  msgstr ""
2836
 
2837
- #: dashboard/settings/statistics.php:37
2838
  msgid ""
2839
  "The settings below are for the internal tracker and have no effect when "
2840
  "using Piwik/Google Analytics."
2841
  msgstr ""
2842
 
2843
- #: dashboard/settings/statistics.php:40
2844
  #, fuzzy
2845
  msgid "Logged in impressions"
2846
  msgstr "Spåra visningar från inloggade användare (rekommenderas)."
2847
 
2848
- #: dashboard/settings/statistics.php:42
2849
  msgid "Track impressions from logged in users."
2850
  msgstr ""
2851
 
2852
- #: dashboard/settings/statistics.php:46
2853
  #, fuzzy
2854
  msgid "Logged in clicks"
2855
  msgstr "Spår klick från inloggade användare."
2856
 
2857
- #: dashboard/settings/statistics.php:48
2858
  msgid "Track clicks from logged in users."
2859
  msgstr "Spår klick från inloggade användare."
2860
 
2861
- #: dashboard/settings/statistics.php:52
2862
  msgid "Impression timer"
2863
  msgstr ""
2864
 
2865
- #: dashboard/settings/statistics.php:54 dashboard/settings/statistics.php:61
2866
  msgid "Seconds."
2867
  msgstr "Sekunder."
2868
 
2869
- #: dashboard/settings/statistics.php:55
2870
  #, fuzzy
2871
  msgid "Default: 60."
2872
  msgstr "Default"
2873
 
2874
- #: dashboard/settings/statistics.php:55
2875
  #, fuzzy
2876
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2877
  msgstr ""
2878
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
2879
 
2880
- #: dashboard/settings/statistics.php:59
2881
  msgid "Click timer"
2882
  msgstr ""
2883
 
2884
- #: dashboard/settings/statistics.php:62
2885
  #, fuzzy
2886
  msgid "Default: 86400."
2887
  msgstr "Default"
2888
 
2889
- #: dashboard/settings/statistics.php:62
2890
  #, fuzzy
2891
  msgid ""
2892
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2893
  msgstr ""
2894
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
2895
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2896
  #, fuzzy
2897
  #~ msgid "Get more features with AdRotate Pro"
2898
  #~ msgstr "Få fler funktioner! Skaffa AdRotate Pro."
@@ -2916,10 +3037,6 @@ msgstr ""
2916
  #~ msgid "Email Notifications"
2917
  #~ msgstr "E-postmeddelanden"
2918
 
2919
- #, fuzzy
2920
- #~ msgid "Push Notifications"
2921
- #~ msgstr "Meddelanden"
2922
-
2923
  #~ msgid "active ad(s) expired."
2924
  #~ msgstr "aktiv annons (er) gått ut."
2925
 
@@ -3010,15 +3127,9 @@ msgstr ""
3010
  #~ msgid "Barely visible"
3011
  #~ msgstr "Knappt synlig"
3012
 
3013
- #~ msgid "Less than average"
3014
- #~ msgstr "Mindre än genomsnittet"
3015
-
3016
  #~ msgid "Normal coverage"
3017
  #~ msgstr "Normal täckning"
3018
 
3019
- #~ msgid "More than average"
3020
- #~ msgstr "Mer än genomsnittet"
3021
-
3022
  #~ msgid "Best visibility"
3023
  #~ msgstr "Bästa synlighet"
3024
 
2
  msgstr ""
3
  "Project-Id-Version: AdRotate\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-17 23:25+0800\n"
6
+ "PO-Revision-Date: 2016-07-17 23:25+0800\n"
7
  "Last-Translator: Arnan de Gans <info@ajdg.net>\n"
8
  "Language-Team: Arnan de Gans from AJdG Solutions <info@adrotateplugin.com>\n"
9
  "Language: sv_SE\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: adrotate-functions.php:842
21
  msgid "No files found"
22
  msgstr "Inga filer hittades"
23
 
24
+ #: adrotate-functions.php:845
25
  msgid "Folder not found or not accessible"
26
  msgstr "Folder inte hittas eller inte tillgänglig"
27
 
28
+ #: adrotate-functions.php:894
29
  msgid "Ad saved"
30
  msgstr ""
31
 
32
+ #: adrotate-functions.php:898
33
  msgid "Group saved"
34
  msgstr ""
35
 
36
+ #: adrotate-functions.php:902
37
  msgid "Ad(s) deleted"
38
  msgstr "Annons(er) raderas"
39
 
40
+ #: adrotate-functions.php:906
41
  msgid "Group deleted"
42
  msgstr "Grupp raderad"
43
 
44
+ #: adrotate-functions.php:910
45
  msgid "Ad(s) statistics reset"
46
  msgstr "Annons(er) statistik återställning"
47
 
48
+ #: adrotate-functions.php:914
49
  msgid "Ad(s) renewed"
50
  msgstr "Annons(er) förnyas"
51
 
52
+ #: adrotate-functions.php:918
53
  msgid "Ad(s) deactivated"
54
  msgstr "Annons(er) avaktiveras"
55
 
56
+ #: adrotate-functions.php:922
57
  msgid "Ad(s) activated"
58
  msgstr "Annons(er) aktiveras"
59
 
60
+ #: adrotate-functions.php:926
61
  msgid "Group including it's Ads deleted"
62
  msgstr "Grupp inklusive dess annonser raderade"
63
 
64
+ #: adrotate-functions.php:930
65
  #, fuzzy
66
  msgid "Export created"
67
  msgstr "export skapad"
68
 
69
+ #: adrotate-functions.php:935
70
  msgid "Settings saved"
71
  msgstr "Inställningar sparas"
72
 
73
+ #: adrotate-functions.php:939
74
  msgid "Database optimized"
75
  msgstr "Databas optimerad"
76
 
77
+ #: adrotate-functions.php:943
78
  msgid "Database repaired"
79
  msgstr "Databas reparation"
80
 
81
+ #: adrotate-functions.php:947
82
  msgid "Ads evaluated and statuses have been corrected where required"
83
  msgstr "annonser utvärderas och status har rättats till vid behov"
84
 
85
+ #: adrotate-functions.php:951
86
  msgid "Empty database records removed"
87
  msgstr "Tomma databasposter tas bort"
88
 
89
+ #: adrotate-functions.php:956
90
  msgid "Action prohibited"
91
  msgstr "Åtgärden förbjuden"
92
 
93
+ #: adrotate-functions.php:960
94
  msgid ""
95
  "The ad was saved but has an issue which might prevent it from working "
96
  "properly. Review the colored ad."
97
  msgstr ""
98
 
99
+ #: adrotate-functions.php:964
100
  msgid "No data found in selected time period"
101
  msgstr "Inga data finns i vald tidsperiod"
102
 
103
+ #: adrotate-functions.php:968
104
  msgid "Database can only be optimized or cleaned once every hour"
105
  msgstr "Databas kan endast optimeras eller rengöras en gång i timmen"
106
 
107
+ #: adrotate-functions.php:972
108
  msgid "Form can not be (partially) empty!"
109
  msgstr ""
110
 
111
+ #: adrotate-functions.php:976
112
  msgid "No ads found."
113
  msgstr ""
114
 
115
+ #: adrotate-functions.php:980
116
  msgid "Unexpected error"
117
  msgstr ""
118
 
119
+ #: adrotate-manage-publisher.php:685
120
  msgid "AdRotate Advertiser"
121
  msgstr ""
122
 
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
  "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
  "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
  "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
  "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
  "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
+ #: adrotate-output.php:664 adrotate-output.php:667 adrotate-output.php:670
201
  msgid "Check adverts"
202
  msgstr ""
203
 
204
+ #: adrotate-output.php:675
205
  msgid ""
206
  "You have enable caching support but W3 Total Cache is not active on your "
207
  "site!"
208
  msgstr ""
209
 
210
+ #: adrotate-output.php:678
211
  msgid ""
212
  "You have enable caching support but the W3TC_DYNAMIC_SECURITY definition is "
213
  "not set."
214
  msgstr ""
215
 
216
+ #: adrotate-output.php:683
217
  msgid "Your AdRotate Banner folder is not writable or does not exist."
218
  msgstr ""
219
 
220
+ #: adrotate-output.php:723 dashboard/adrotatepro.php:99
221
  #: dashboard/adrotatepro.php:100 dashboard/adrotatepro.php:101
222
  #: dashboard/adrotatepro.php:102 dashboard/adrotatepro.php:111
223
  #: dashboard/adrotatepro.php:112 dashboard/adrotatepro.php:113
224
  #: dashboard/adrotatepro.php:114 dashboard/info.php:82 dashboard/info.php:83
225
  #: dashboard/info.php:84 dashboard/info.php:85 dashboard/info.php:89
226
  #: dashboard/info.php:90 dashboard/info.php:91 dashboard/info.php:92
227
+ #: dashboard/settings/geotargeting.php:35
228
  #, fuzzy
229
  msgid "Buy now"
230
  msgstr "Köp nu"
231
 
232
+ #: adrotate-output.php:724
233
  msgid ""
234
  "You've been using <strong>AdRotate</strong> for a while now. Why not upgrade "
235
  "to the <strong>PRO</strong> version"
236
  msgstr ""
237
 
238
+ #: adrotate-output.php:724
239
  #, php-format
240
  msgid ""
241
  "Use discount code <b>getadrotatepro</b> for 10% off on any AdRotate license!"
242
  msgstr ""
243
 
244
+ #: adrotate-output.php:724
245
  msgid "Thank you for your purchase!"
246
  msgstr ""
247
 
248
+ #: adrotate-output.php:785
249
  msgid ""
250
  "Welcome, and thanks for using AdRotate. Everything related to AdRotate is in "
251
  "this menu. Check out the"
252
  msgstr ""
253
 
254
+ #: adrotate-output.php:785
255
  msgid "manuals"
256
  msgstr "manual"
257
 
258
+ #: adrotate-output.php:785 adrotate-output.php:852
259
  msgid "and"
260
  msgstr ""
261
 
262
+ #: adrotate-output.php:785
263
  msgid "forums"
264
  msgstr ""
265
 
266
+ #: adrotate-output.php:815
267
  #, fuzzy
268
  msgid "Useful Links"
269
  msgstr "Nyttiga länkar"
270
 
271
+ #: adrotate-output.php:816
272
  msgid "Useful links to learn more about AdRotate"
273
  msgstr ""
274
 
275
+ #: adrotate-output.php:818
276
  msgid "AdRotate website"
277
  msgstr ""
278
 
279
+ #: adrotate-output.php:819
280
  #, fuzzy
281
  msgid "Getting Started With AdRotate"
282
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
283
 
284
+ #: adrotate-output.php:820
285
  #, fuzzy
286
  msgid "AdRotate manuals"
287
  msgstr "AdRotate Information"
288
 
289
+ #: adrotate-output.php:821
290
  #, fuzzy
291
  msgid "AdRotate Support Forum"
292
  msgstr "AdRotate butik"
293
 
294
+ #: adrotate-output.php:844
295
  #, fuzzy
296
  msgid "Help AdRotate Grow"
297
  msgstr "Fastnat med AdRotate? Jag hjälper!"
298
 
299
+ #: adrotate-output.php:845
300
  msgid "Follow Arnan on Facebook"
301
  msgstr ""
302
 
303
+ #: adrotate-output.php:852
304
  msgid ""
305
  "A lot of users only think to review AdRotate when something goes wrong while "
306
  "thousands of people use AdRotate satisfactory. Don't let this go unnoticed."
307
  msgstr ""
308
 
309
+ #: adrotate-output.php:852
310
  msgid "If you find AdRotate useful please leave your honest"
311
  msgstr ""
312
 
313
+ #: adrotate-output.php:852
314
  msgid "rating"
315
  msgstr ""
316
 
317
+ #: adrotate-output.php:852
318
  #, fuzzy
319
  msgid "review"
320
  msgstr "Betygsätt och omdöme"
321
 
322
+ #: adrotate-output.php:852
323
  msgid "on WordPress.org to help AdRotate grow in a positive way"
324
  msgstr ""
325
 
326
+ #: adrotate-output.php:885 dashboard/settings/notifications.php:50
327
+ #: dashboard/settings/notifications.php:80
328
  msgid "Available in AdRotate Pro"
329
  msgstr "Tillgänglig i AdRotate Pro"
330
 
331
+ #: adrotate-output.php:885
332
  #, fuzzy
333
  msgid "More information..."
334
  msgstr "Mer info"
335
 
336
+ #: adrotate-output.php:886
337
  msgid "This feature is available in AdRotate Pro"
338
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
339
 
340
+ #: adrotate-output.php:886
341
  #, fuzzy
342
  msgid "Learn more"
343
  msgstr "Läs mer om"
344
 
345
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:214
346
+ #: dashboard/publisher/adverts-edit.php:235
347
  msgid "January"
348
  msgstr "Januari"
349
 
350
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:215
351
+ #: dashboard/publisher/adverts-edit.php:236
352
  msgid "February"
353
  msgstr "Februari"
354
 
355
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:216
356
+ #: dashboard/publisher/adverts-edit.php:237
357
  msgid "March"
358
  msgstr "Mars"
359
 
360
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:217
361
+ #: dashboard/publisher/adverts-edit.php:238
362
  msgid "April"
363
  msgstr "April"
364
 
365
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:218
366
+ #: dashboard/publisher/adverts-edit.php:239
367
  msgid "May"
368
  msgstr "Maj"
369
 
370
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:219
371
+ #: dashboard/publisher/adverts-edit.php:240
372
  msgid "June"
373
  msgstr "Juni"
374
 
375
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:220
376
+ #: dashboard/publisher/adverts-edit.php:241
377
  msgid "July"
378
  msgstr "Juli"
379
 
380
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:221
381
+ #: dashboard/publisher/adverts-edit.php:242
382
  msgid "August"
383
  msgstr "Augusti"
384
 
385
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:222
386
+ #: dashboard/publisher/adverts-edit.php:243
387
  msgid "September"
388
  msgstr "September"
389
 
390
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:223
391
+ #: dashboard/publisher/adverts-edit.php:244
392
  msgid "October"
393
  msgstr "Oktober"
394
 
395
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:224
396
+ #: dashboard/publisher/adverts-edit.php:245
397
  msgid "November"
398
  msgstr "November"
399
 
400
+ #: adrotate-statistics.php:217 dashboard/publisher/adverts-edit.php:225
401
+ #: dashboard/publisher/adverts-edit.php:246
402
  msgid "December"
403
  msgstr "December"
404
 
459
  msgid "Fill in the ID of the type you want to display!"
460
  msgstr "Fyll i ID för den typ som du vill visa!"
461
 
462
+ #: adrotate.php:102
463
  msgid "General Info"
464
  msgstr "Allmän info"
465
 
466
+ #: adrotate.php:103
467
  msgid "AdRotate Pro"
468
  msgstr "AdRotate Pro"
469
 
470
+ #: adrotate.php:104
471
  msgid "Manage Adverts"
472
  msgstr ""
473
 
474
+ #: adrotate.php:105 dashboard/publisher/groups-main.php:12
475
  msgid "Manage Groups"
476
  msgstr "Hantera Grupper"
477
 
478
+ #: adrotate.php:106 adrotate.php:369
479
  #, fuzzy
480
  msgid "Manage Schedules"
481
  msgstr "Hantera"
482
 
483
+ #: adrotate.php:107
484
  #, fuzzy
485
  msgid "Manage Media"
486
  msgstr "Media:"
487
 
488
+ #: adrotate.php:108
489
  msgid "Settings"
490
  msgstr "Inställningar"
491
 
492
+ #: adrotate.php:128
493
  msgid "AdRotate Info"
494
  msgstr "AdRotate Information"
495
 
496
+ #: adrotate.php:146
497
  #, fuzzy
498
  msgid "AdRotate Professional"
499
  msgstr "AdRotate"
500
 
501
+ #: adrotate.php:186
502
  msgid "Advert Management"
503
  msgstr ""
504
 
505
+ #: adrotate.php:244 adrotate.php:311 adrotate.php:364
506
  msgid "Manage"
507
  msgstr "Hantera"
508
 
509
+ #: adrotate.php:245 adrotate.php:312 adrotate.php:365
510
  msgid "Add New"
511
  msgstr "Lägg till ny"
512
 
513
+ #: adrotate.php:305
514
  msgid "Group Management"
515
  msgstr "Grupp Hantering"
516
 
517
+ #: adrotate.php:314
518
  msgid "Report"
519
  msgstr "Rapport"
520
 
521
+ #: adrotate.php:360
522
  #, fuzzy
523
  msgid "Schedule Management available in AdRotate Pro"
524
  msgstr "Tillgänglig i AdRotate Pro"
525
 
526
+ #: adrotate.php:370
527
  #, fuzzy
528
  msgid ""
529
  "Schedule management and multiple schedules per advert is available in "
530
  "AdRotate Pro."
531
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
532
 
533
+ #: adrotate.php:370 adrotate.php:454 dashboard/publisher/adverts-edit.php:182
534
  #: dashboard/publisher/adverts-main.php:114
535
+ #: dashboard/publisher/groups-edit.php:71
536
  #: dashboard/publisher/groups-main.php:89
537
  #, fuzzy
538
  msgid "More information"
539
  msgstr "Mer info"
540
 
541
+ #: adrotate.php:377 dashboard/publisher/adverts-disabled.php:20
542
  #: dashboard/publisher/adverts-error.php:19
543
  #: dashboard/publisher/adverts-main.php:20
544
  #: dashboard/publisher/groups-main.php:20
545
  msgid "Bulk Actions"
546
  msgstr "Massåtgärder"
547
 
548
+ #: adrotate.php:378 dashboard/publisher/adverts-disabled.php:25
549
  #: dashboard/publisher/adverts-error.php:29
550
  #: dashboard/publisher/adverts-main.php:30
551
  #: dashboard/publisher/groups-main.php:24
552
  msgid "Go"
553
  msgstr "Gå"
554
 
555
+ #: adrotate.php:387 dashboard/publisher/adverts-disabled.php:35
556
  #: dashboard/publisher/adverts-error.php:39
557
  #: dashboard/publisher/adverts-main.php:39
 
558
  #: dashboard/publisher/groups-main.php:32
559
  msgid "ID"
560
  msgstr "ID"
561
 
562
+ #: adrotate.php:388
563
  #, fuzzy
564
  msgid "Start"
565
  msgstr "Starttid (hh: mm):"
566
 
567
+ #: adrotate.php:388
568
  #, fuzzy
569
  msgid "End"
570
  msgstr "Avsluta tid (hh: mm):"
571
 
572
+ #: adrotate.php:389
573
  msgid "Ads"
574
  msgstr "Annonser"
575
 
576
+ #: adrotate.php:391
577
  msgid "Max Impressions"
578
  msgstr "Max Intryck"
579
 
580
+ #: adrotate.php:392
581
  msgid "Max Clicks"
582
  msgstr "Max Klick"
583
 
584
+ #: adrotate.php:422
585
  #, fuzzy
586
  msgid "No schedules created yet!"
587
  msgstr "Inga block har skapats än!"
588
 
589
+ #: adrotate.php:427
590
  #, fuzzy
591
  msgid "Easily manage your schedules from here with AdRotate Pro."
592
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
593
 
594
+ #: adrotate.php:427 adrotate.php:490
595
  #, fuzzy
596
  msgid "Upgrade today!"
597
  msgstr "i dag"
598
 
599
+ #: adrotate.php:430 dashboard/publisher/adverts-error.php:72
600
+ #: dashboard/publisher/groups-edit.php:383
601
  msgid "Expires soon."
602
  msgstr "Utgår inom kort."
603
 
604
+ #: adrotate.php:431 dashboard/publisher/adverts-error.php:73
605
+ #: dashboard/publisher/groups-edit.php:384
606
  msgid "Has expired."
607
  msgstr "Har gått ut."
608
 
609
+ #: adrotate.php:452
610
  #, fuzzy
611
  msgid "Media Management available in AdRotate Pro"
612
  msgstr "Tillgänglig i AdRotate Pro"
613
 
614
+ #: adrotate.php:454
615
  msgid "Upload images to the AdRotate Pro banners folder from here."
616
  msgstr ""
617
 
618
+ #: adrotate.php:454
619
  msgid ""
620
  "This is useful if you use responsive adverts with multiple images or have "
621
  "HTML5 adverts containing multiple files."
622
  msgstr ""
623
 
624
+ #: adrotate.php:454
625
  #, fuzzy
626
  msgid "Media uploading and management is available in AdRotate Pro."
627
  msgstr "Den här funktionen är tillgänglig i AdRotate Pro"
628
 
629
+ #: adrotate.php:456
630
  msgid "Upload new file"
631
  msgstr ""
632
 
633
+ #: adrotate.php:457
634
  msgid "Accepted files:"
635
  msgstr ""
636
 
637
+ #: adrotate.php:457
638
  msgid "For HTML5 ads you can also upload html and javascript files."
639
  msgstr ""
640
 
641
+ #: adrotate.php:457
642
  #, fuzzy
643
  msgid "Maximum size is 512Kb."
644
  msgstr "Maximal storlek är 512Kb."
645
 
646
+ #: adrotate.php:457
647
  msgid "Important:"
648
  msgstr ""
649
 
650
+ #: adrotate.php:457
651
  msgid ""
652
  "Make sure your file has no spaces or special characters in the name. Replace "
653
  "spaces with a - or _."
654
  msgstr ""
655
 
656
+ #: adrotate.php:457
657
  msgid ""
658
  "If you remove spaces from filenames for HTML5 adverts also edit the html "
659
  "file so it knows about the changed name. For example for the javascript file."
660
  msgstr ""
661
 
662
+ #: adrotate.php:460
663
  msgid ""
664
  "For responsive adverts make sure the filename is in the following format; "
665
  "\"imagename.full.ext\". A full set of sized images is strongly recommended."
666
  msgstr ""
667
 
668
+ #: adrotate.php:461
669
  msgid ""
670
  "For smaller size images use \".320\", \".480\", \".768\" or \".1024\" in the "
671
  "filename instead of \".full\" for the various viewports."
672
  msgstr ""
673
 
674
+ #: adrotate.php:462 dashboard/publisher/groups-edit.php:308
675
+ #: dashboard/publisher/groups-edit.php:316
676
  msgid "Example:"
677
  msgstr "Exempel:"
678
 
679
+ #: adrotate.php:462
680
  msgid ""
681
  "image.full.jpg, image.320.jpg and image.768.jpg will serve the same advert "
682
  "for different viewports."
683
  msgstr ""
684
 
685
+ #: adrotate.php:466
686
  msgid "Upload file"
687
  msgstr ""
688
 
689
+ #: adrotate.php:466
690
  msgid "Click only once per file!"
691
  msgstr ""
692
 
693
+ #: adrotate.php:469
694
  msgid "Available files in"
695
  msgstr ""
696
 
697
+ #: adrotate.php:474 dashboard/publisher/groups-edit.php:51
698
  #: dashboard/publisher/groups-main.php:33
699
  msgid "Name"
700
  msgstr "Namn"
701
 
702
+ #: adrotate.php:475
703
  #, fuzzy
704
  msgid "Actions"
705
  msgstr "Massåtgärder"
706
 
707
+ #: adrotate.php:480 adrotate.php:481 adrotate.php:482 adrotate.php:483
708
+ #: adrotate.php:484 adrotate.php:485 adrotate.php:486
709
  #: dashboard/publisher/adverts-disabled.php:22
710
  #: dashboard/publisher/adverts-error.php:21
711
  #: dashboard/publisher/adverts-main.php:22
712
  msgid "Delete"
713
  msgstr "Radera"
714
 
715
+ #: adrotate.php:490
716
  msgid ""
717
  "Make sure the banner images are not in use by adverts when you delete them!"
718
  msgstr ""
719
 
720
+ #: adrotate.php:490
721
  #, fuzzy
722
  msgid "Manage your banner folder from here with AdRotate Pro."
723
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
724
 
725
+ #: adrotate.php:516
726
  msgid "AdRotate Settings"
727
  msgstr "AdRotate Inställningar"
728
 
 
 
 
 
729
  #: dashboard/adrotatepro.php:20
730
  #, fuzzy
731
  msgid "Satisfy your advertisers"
920
  msgid "Adverts that need you"
921
  msgstr "Annonser som behöver dig"
922
 
923
+ #: dashboard/info.php:37 dashboard/publisher/adverts-edit.php:419
924
  #: dashboard/publisher/groups-main.php:34
925
  msgid "Adverts"
926
  msgstr "Annonser"
963
  msgstr ""
964
 
965
  #: dashboard/publisher/adverts-disabled.php:21
966
+ #: dashboard/publisher/adverts-edit.php:170
967
  msgid "Activate"
968
  msgstr "Aktivera"
969
 
984
  "timmar. 14:00 är 14:00. 06:00 är 6:00 timmar."
985
 
986
  #: dashboard/publisher/adverts-disabled.php:37
987
+ #: dashboard/publisher/adverts-edit.php:110
988
  #: dashboard/publisher/adverts-error.php:41
989
  #: dashboard/publisher/adverts-main.php:41
990
  msgid "Title"
992
 
993
  #: dashboard/publisher/adverts-disabled.php:38
994
  #: dashboard/publisher/adverts-main.php:44
995
+ #: dashboard/publisher/groups-edit.php:329
996
  #: dashboard/publisher/groups-main.php:36
997
  msgid "Shown"
998
  msgstr "Visa"
1001
  #: dashboard/publisher/adverts-main.php:46
1002
  #: dashboard/publisher/adverts-report.php:36
1003
  #: dashboard/publisher/adverts-report.php:57
1004
+ #: dashboard/publisher/groups-edit.php:330
1005
  #: dashboard/publisher/groups-main.php:38
1006
  #: dashboard/publisher/groups-report.php:37
1007
  #: dashboard/publisher/groups-report.php:58
1043
  msgstr "Den AdCode kan inte vara tomt!"
1044
 
1045
  #: dashboard/publisher/adverts-edit.php:51
1046
+ msgid ""
1047
+ "You did not use %asset% (or %image%) in your AdCode but did select a file to "
1048
+ "use!"
1049
  msgstr ""
1050
 
1051
  #: dashboard/publisher/adverts-edit.php:54
 
 
 
 
1052
  msgid ""
1053
+ "You did use %asset% (or %image%) in your AdCode but did not select a file to "
1054
+ "use!"
1055
  msgstr ""
1056
 
1057
+ #: dashboard/publisher/adverts-edit.php:57
1058
  msgid ""
1059
  "There is a problem saving the image. Please reset your image and re-save the "
1060
  "ad!"
1061
  msgstr ""
1062
 
1063
+ #: dashboard/publisher/adverts-edit.php:60
 
 
 
 
1064
  msgid "Tracking is enabled but no valid link/tag was found in the adcode!"
1065
  msgstr ""
1066
 
1067
+ #: dashboard/publisher/adverts-edit.php:65
1068
  msgid ""
1069
  "AdRotate cannot find an error but the ad is marked erroneous, try re-saving "
1070
  "the ad!"
1072
  "AdRotate kan inte hitta något fel, men annonsen är märkt felaktiga, försök "
1073
  "åter spara annonsen!"
1074
 
1075
+ #: dashboard/publisher/adverts-edit.php:68
1076
  msgid "This ad is expired and currently not shown on your website!"
1077
  msgstr ""
1078
  "Den här annonsen har gått ut och för tillfället inte visas på din webbplats!"
1079
 
1080
+ #: dashboard/publisher/adverts-edit.php:71
1081
  msgid "The ad will expire in less than 2 days!"
1082
  msgstr "Annonsen går ut om mindre än 2 dagar!"
1083
 
1084
+ #: dashboard/publisher/adverts-edit.php:74
1085
  msgid "This ad will expire in less than 7 days!"
1086
  msgstr "Annonsen går ut om mindre än 7 dagar!"
1087
 
1088
+ #: dashboard/publisher/adverts-edit.php:77
1089
  msgid "This ad has been disabled and does not rotate on your site!"
1090
  msgstr "Den här annonsen har inaktiverats och inte roterar på din webbplats!"
1091
 
1092
+ #: dashboard/publisher/adverts-edit.php:102
1093
  msgid "New Advert"
1094
  msgstr "Ny annons"
1095
 
1096
+ #: dashboard/publisher/adverts-edit.php:104
1097
  msgid "Edit Advert"
1098
  msgstr "Redigera annons"
1099
 
1100
+ #: dashboard/publisher/adverts-edit.php:116
1101
  msgid "AdCode"
1102
  msgstr ""
1103
 
1104
+ #: dashboard/publisher/adverts-edit.php:121
1105
  msgid "Basic Examples:"
1106
  msgstr "Grundläggande Exempel:"
1107
 
1108
+ #: dashboard/publisher/adverts-edit.php:128
1109
  msgid "Useful tags"
1110
  msgstr ""
1111
 
1112
+ #: dashboard/publisher/adverts-edit.php:130
1113
  msgid "Insert the advert ID Number."
1114
  msgstr ""
1115
 
1116
+ #: dashboard/publisher/adverts-edit.php:130
1117
+ msgid "Required when selecting a asset below."
1118
  msgstr ""
1119
 
1120
+ #: dashboard/publisher/adverts-edit.php:130
1121
  msgid "Insert the advert name."
1122
  msgstr ""
1123
 
1124
+ #: dashboard/publisher/adverts-edit.php:130
1125
  msgid "Insert a random seed. Useful for DFP/DoubleClick type adverts."
1126
  msgstr ""
1127
 
1128
+ #: dashboard/publisher/adverts-edit.php:130
1129
  msgid "Add inside the <a> tag to open advert in a new window."
1130
  msgstr ""
1131
 
1132
+ #: dashboard/publisher/adverts-edit.php:130
1133
  msgid "Add inside the <a> tag to tell crawlers to ignore this link"
1134
  msgstr ""
1135
 
1136
+ #: dashboard/publisher/adverts-edit.php:130
1137
  msgid ""
1138
  "Place the cursor in your AdCode where you want to add any of these tags and "
1139
  "click to add it."
1140
  msgstr ""
1141
 
1142
+ #: dashboard/publisher/adverts-edit.php:135
1143
  msgid "Preview"
1144
  msgstr "Förhandsgranska"
1145
 
1146
+ #: dashboard/publisher/adverts-edit.php:138
1147
  msgid ""
1148
  "Note: While this preview is an accurate one, it might look different then it "
1149
  "does on the website."
1151
  "OBS: Även förhandsvisningen är en riktig en, kan det se annorlunda ut då den "
1152
  "gör på webbplatsen."
1153
 
1154
+ #: dashboard/publisher/adverts-edit.php:139
1155
  msgid ""
1156
  "This is because of CSS differences. Your themes CSS file is not active here!"
1157
  msgstr ""
1158
  "Detta är på grund av CSS skillnader. Ditt teman CSS-fil är inte aktiv här!"
1159
 
1160
+ #: dashboard/publisher/adverts-edit.php:144
1161
  msgid "Banner asset"
1162
  msgstr ""
1163
 
1164
+ #: dashboard/publisher/adverts-edit.php:147
1165
  msgid "WordPress media:"
1166
  msgstr ""
1167
 
1168
+ #: dashboard/publisher/adverts-edit.php:147
1169
  msgid "Select Banner"
1170
  msgstr "Välj Banner"
1171
 
1172
+ #: dashboard/publisher/adverts-edit.php:149
1173
  msgid "- OR -"
1174
  msgstr "- ELLER -"
1175
 
1176
+ #: dashboard/publisher/adverts-edit.php:151
1177
  msgid "Banner folder:"
1178
  msgstr "Banner folder:"
1179
 
1180
+ #: dashboard/publisher/adverts-edit.php:152
1181
  msgid "No image selected"
1182
  msgstr "Ingen bild vald"
1183
 
1184
+ #: dashboard/publisher/adverts-edit.php:156
1185
+ msgid "Use %asset% in the adcode instead of the file path."
1186
  msgstr ""
1187
 
1188
+ #: dashboard/publisher/adverts-edit.php:156
1189
  msgid ""
1190
  "Use either the text field or the dropdown. If the textfield has content that "
1191
  "field has priority."
1193
  "Använd antingen textfältet eller listrutan. Om textfältet har innehåll som "
1194
  "området har företräde."
1195
 
1196
+ #: dashboard/publisher/adverts-edit.php:161
1197
+ #: dashboard/settings/statistics.php:17
1198
  msgid "Statistics"
1199
  msgstr "Statistik"
1200
 
1201
+ #: dashboard/publisher/adverts-edit.php:163
1202
  msgid "Enable click and impression tracking for this advert."
1203
  msgstr ""
1204
 
1205
+ #: dashboard/publisher/adverts-edit.php:164
1206
  msgid ""
1207
  "Note: Clicktracking does not work for Javascript adverts such as those "
1208
  "provided by Google AdSense/DFP/DoubleClick. HTML5/Flash adverts are not "
1209
  "always supported."
1210
  msgstr ""
1211
 
1212
+ #: dashboard/publisher/adverts-edit.php:174
1213
  msgid "Yes, this ad will be used"
1214
  msgstr "Ja, kommer denna annons att användas"
1215
 
1216
+ #: dashboard/publisher/adverts-edit.php:175
1217
  msgid "No, do not show this ad anywhere"
1218
  msgstr "Nej, inte visa denna annons någonstans"
1219
 
1220
+ #: dashboard/publisher/adverts-edit.php:182
1221
  #: dashboard/publisher/adverts-main.php:114
1222
+ #: dashboard/publisher/groups-edit.php:71
1223
  #: dashboard/publisher/groups-main.php:89
1224
  #, fuzzy
1225
  msgid "Get more features with AdRotate Pro."
1226
  msgstr "Få fler funktioner! Skaffa AdRotate Pro."
1227
 
1228
+ #: dashboard/publisher/adverts-edit.php:185
1229
+ #: dashboard/publisher/adverts-edit.php:285
1230
+ #: dashboard/publisher/adverts-edit.php:408
1231
+ #: dashboard/publisher/adverts-edit.php:449
1232
  msgid "Save Advert"
1233
  msgstr "Spara annons"
1234
 
1235
+ #: dashboard/publisher/adverts-edit.php:186
1236
+ #: dashboard/publisher/adverts-edit.php:286
1237
+ #: dashboard/publisher/adverts-edit.php:409
1238
+ #: dashboard/publisher/adverts-edit.php:450
1239
+ #: dashboard/publisher/groups-edit.php:150
1240
+ #: dashboard/publisher/groups-edit.php:297
1241
+ #: dashboard/publisher/groups-edit.php:389
1242
  msgid "Cancel"
1243
  msgstr "Avbryt"
1244
 
1245
+ #: dashboard/publisher/adverts-edit.php:189
1246
+ #: dashboard/publisher/adverts-edit.php:391
1247
+ #: dashboard/publisher/groups-edit.php:132
1248
+ #: dashboard/publisher/groups-edit.php:279
1249
  msgid "Usage"
1250
  msgstr "Användning"
1251
 
1252
+ #: dashboard/publisher/adverts-edit.php:193
1253
+ #: dashboard/publisher/adverts-edit.php:395
1254
+ #: dashboard/publisher/groups-edit.php:136
1255
+ #: dashboard/publisher/groups-edit.php:283
1256
  msgid "Widget"
1257
  msgstr ""
1258
 
1259
+ #: dashboard/publisher/adverts-edit.php:194
1260
+ #: dashboard/publisher/adverts-edit.php:396
1261
  msgid ""
1262
+ "Drag the AdRotate widget to the sidebar where you want to place the advert "
1263
+ "and select the advert or the group the advert is in."
1264
  msgstr ""
1265
 
1266
+ #: dashboard/publisher/adverts-edit.php:197
1267
+ #: dashboard/publisher/adverts-edit.php:399
1268
+ #: dashboard/publisher/groups-edit.php:140
1269
+ #: dashboard/publisher/groups-edit.php:287
1270
  msgid "In a post or page"
1271
  msgstr ""
1272
 
1273
+ #: dashboard/publisher/adverts-edit.php:199
1274
+ #: dashboard/publisher/adverts-edit.php:401
1275
+ #: dashboard/publisher/groups-edit.php:142
1276
+ #: dashboard/publisher/groups-edit.php:289
1277
  msgid "Directly in a theme"
1278
  msgstr ""
1279
 
1280
+ #: dashboard/publisher/adverts-edit.php:205
1281
  msgid "Schedule your advert"
1282
  msgstr ""
1283
 
1284
+ #: dashboard/publisher/adverts-edit.php:209
1285
  msgid "Start date (day/month/year)"
1286
  msgstr ""
1287
 
1288
+ #: dashboard/publisher/adverts-edit.php:230
1289
  msgid "End date (day/month/year)"
1290
  msgstr ""
1291
 
1292
+ #: dashboard/publisher/adverts-edit.php:253
1293
  msgid "Start time (hh:mm)"
1294
  msgstr ""
1295
 
1296
+ #: dashboard/publisher/adverts-edit.php:260
1297
  msgid "End time (hh:mm)"
1298
  msgstr ""
1299
 
1300
+ #: dashboard/publisher/adverts-edit.php:270
1301
  msgid "Maximum Clicks"
1302
  msgstr ""
1303
 
1304
+ #: dashboard/publisher/adverts-edit.php:271
1305
+ #: dashboard/publisher/adverts-edit.php:273
1306
  msgid "Leave empty or 0 to skip this."
1307
  msgstr "Lämna tomt eller 0 för att hoppa över detta."
1308
 
1309
+ #: dashboard/publisher/adverts-edit.php:272
1310
  msgid "Maximum Impressions"
1311
  msgstr ""
1312
 
1313
+ #: dashboard/publisher/adverts-edit.php:277
1314
  msgid "Important"
1315
  msgstr ""
1316
 
1317
+ #: dashboard/publisher/adverts-edit.php:278
1318
  msgid ""
1319
  "Note: Time uses a 24 hour clock. When you are used to the AM/PM system keep "
1320
  "this in mind: If the start or end time is after lunch, add 12 hours. 2PM is "
1321
  "14:00 hours. 6AM is 6:00 hours."
1322
  msgstr ""
1323
 
1324
+ #: dashboard/publisher/adverts-edit.php:282
1325
  msgid ""
1326
  "Create multiple and more advanced schedules for each advert with AdRotate "
1327
  "Pro."
1328
  msgstr ""
1329
 
1330
+ #: dashboard/publisher/adverts-edit.php:282
1331
+ #: dashboard/publisher/adverts-edit.php:345
1332
+ #: dashboard/publisher/adverts-edit.php:389
1333
+ #: dashboard/publisher/groups-edit.php:196
1334
  #, fuzzy
1335
  msgid "Upgrade today"
1336
  msgstr "i dag"
1337
 
1338
+ #: dashboard/publisher/adverts-edit.php:289
1339
+ #: dashboard/publisher/groups-edit.php:153
1340
  msgid "Advanced"
1341
  msgstr "Utökad"
1342
 
1343
+ #: dashboard/publisher/adverts-edit.php:290
1344
  msgid "Everything below is optional."
1345
  msgstr "Allt nedan är frivillig."
1346
 
1347
+ #: dashboard/publisher/adverts-edit.php:290
1348
+ msgid "Available in AdRotate Pro!"
1349
  msgstr ""
1350
 
1351
+ #: dashboard/publisher/adverts-edit.php:295
1352
+ #: dashboard/publisher/adverts-main.php:42
1353
+ #: dashboard/publisher/groups-edit.php:332
1354
+ msgid "Weight"
1355
+ msgstr "Vikt"
1356
 
1357
+ #: dashboard/publisher/adverts-edit.php:298
1358
+ msgid "Few impressions"
1359
  msgstr ""
1360
 
1361
+ #: dashboard/publisher/adverts-edit.php:303
1362
+ msgid "Less than average"
1363
+ msgstr "Mindre än genomsnittet"
1364
 
1365
+ #: dashboard/publisher/adverts-edit.php:308
1366
+ msgid "Normal impressions"
1367
  msgstr ""
1368
 
1369
+ #: dashboard/publisher/adverts-edit.php:313
1370
+ msgid "More than average"
1371
+ msgstr "Mer än genomsnittet"
1372
+
1373
+ #: dashboard/publisher/adverts-edit.php:318
1374
+ msgid "Many impressions"
1375
  msgstr ""
1376
 
1377
+ #: dashboard/publisher/adverts-edit.php:323
1378
+ msgid "Mobile"
1379
  msgstr ""
1380
 
1381
+ #: dashboard/publisher/adverts-edit.php:325
1382
+ msgid "Computers"
1383
+ msgstr ""
 
1384
 
1385
+ #: dashboard/publisher/adverts-edit.php:328
1386
+ msgid "Smartphones"
 
 
1387
  msgstr ""
1388
 
1389
+ #: dashboard/publisher/adverts-edit.php:331
1390
+ msgid "Tablets"
1391
+ msgstr ""
 
 
1392
 
1393
+ #: dashboard/publisher/adverts-edit.php:334
1394
  msgid ""
1395
+ "Also enable mobile support in the group this advert goes in or these are "
1396
+ "ignored."
1397
  msgstr ""
1398
 
1399
+ #: dashboard/publisher/adverts-edit.php:338
1400
+ #: dashboard/publisher/groups-edit.php:190
1401
  msgid "Sortorder"
1402
  msgstr ""
1403
 
1404
+ #: dashboard/publisher/adverts-edit.php:340
1405
+ #: dashboard/publisher/groups-edit.php:192
1406
  msgid "For administrative purposes set a sortorder."
1407
  msgstr "För administrativa ändamål sätt en sortorder."
1408
 
1409
+ #: dashboard/publisher/adverts-edit.php:340
1410
  msgid "Leave empty or 0 to skip this. Will default to ad id."
1411
  msgstr ""
1412
  "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till annons-ID."
1413
 
1414
+ #: dashboard/publisher/adverts-edit.php:345
1415
  msgid ""
1416
  "With AdRotate Pro you can easily select which devices the advert should show "
1417
  "on!"
1418
  msgstr ""
1419
 
1420
+ #: dashboard/publisher/adverts-edit.php:347
1421
  msgid "Geo Targeting in AdRotate Pro"
1422
  msgstr ""
1423
 
1424
+ #: dashboard/publisher/adverts-edit.php:348
1425
  msgid ""
1426
  "Assign the advert to a group and enable that group to use Geo Targeting."
1427
  msgstr ""
1428
 
1429
+ #: dashboard/publisher/adverts-edit.php:352
1430
  msgid "Cities/States"
1431
  msgstr ""
1432
 
1433
+ #: dashboard/publisher/adverts-edit.php:355
1434
  msgid ""
1435
  "A comma separated list of cities (or the Metro ID) and/or states (Also the "
1436
  "states ISO codes are supported)"
1437
  msgstr ""
1438
 
1439
+ #: dashboard/publisher/adverts-edit.php:355
1440
  #, fuzzy
1441
  msgid ""
1442
  "AdRotate does not check the validity of names so make sure you spell them "
1445
  "AdRotate kan inte kontrollera giltigheten av namn så se till att stava dem "
1446
  "rätt!"
1447
 
1448
+ #: dashboard/publisher/adverts-edit.php:359
1449
  msgid "Countries"
1450
  msgstr ""
1451
 
1452
+ #: dashboard/publisher/adverts-edit.php:384
1453
  #, fuzzy
1454
  msgid "Select the countries you want the adverts to show in."
1455
  msgstr "Välj de länder som du vill att annonser för att visa i."
1456
 
1457
+ #: dashboard/publisher/adverts-edit.php:384
1458
  #, fuzzy
1459
  msgid "Cities take priority and will be filtered first."
1460
  msgstr "Städer prioriteras och kommer att filtreras först."
1461
 
1462
+ #: dashboard/publisher/adverts-edit.php:389
1463
  msgid "Target your audience with Geo Targeting in AdRotate Pro"
1464
  msgstr ""
1465
 
1466
+ #: dashboard/publisher/adverts-edit.php:413
1467
  msgid "Select Groups"
1468
  msgstr "Välj Grupper"
1469
 
1470
+ #: dashboard/publisher/adverts-edit.php:418
1471
  msgid "ID - Name"
1472
  msgstr "ID - Namn"
1473
 
1474
+ #: dashboard/publisher/adverts-edit.php:428
1475
  #: dashboard/publisher/groups-main.php:60
1476
+ #: dashboard/settings/geotargeting.php:49
1477
  msgid "Default"
1478
  msgstr "Default"
1479
 
1480
+ #: dashboard/publisher/adverts-edit.php:429
1481
  #: dashboard/publisher/groups-main.php:61
1482
  msgid "Dynamic"
1483
  msgstr "Dynamic"
1484
 
1485
+ #: dashboard/publisher/adverts-edit.php:429
1486
  #: dashboard/publisher/groups-main.php:61
1487
  #, fuzzy
1488
  msgid "second rotation"
1489
  msgstr "Geo Location"
1490
 
1491
+ #: dashboard/publisher/adverts-edit.php:430
1492
  #: dashboard/publisher/groups-main.php:62
1493
  msgid "Block"
1494
  msgstr "Block"
1495
 
1496
+ #: dashboard/publisher/adverts-edit.php:430
1497
  #: dashboard/publisher/groups-main.php:62
1498
  #, fuzzy
1499
  msgid "grid"
1501
  "Gör ett rutnät för dina annonser. Fylla i 2 och 2 gör ett 2x2 rutnät. "
1502
  "(Standard: 2/2)"
1503
 
1504
+ #: dashboard/publisher/adverts-edit.php:431
1505
+ #: dashboard/publisher/groups-edit.php:198
1506
  #: dashboard/publisher/groups-main.php:63
1507
  msgid "Post Injection"
1508
  msgstr "Post injektion"
1509
 
1510
+ #: dashboard/publisher/adverts-edit.php:432
1511
  msgid "Geolocation"
1512
  msgstr "Geolocation"
1513
 
1514
+ #: dashboard/publisher/adverts-edit.php:438
1515
+ #: dashboard/publisher/groups-edit.php:57
1516
  #: dashboard/publisher/groups-main.php:70
1517
  msgid "Mode"
1518
  msgstr "läge"
1552
  msgstr "För 7 dagar"
1553
 
1554
  #: dashboard/publisher/adverts-error.php:71
1555
+ #: dashboard/publisher/groups-edit.php:382
1556
  msgid "Configuration errors."
1557
  msgstr "Konfigurations fel."
1558
 
1565
  msgid "Export to XML"
1566
  msgstr "Exportera"
1567
 
 
 
 
 
 
1568
  #: dashboard/publisher/adverts-main.php:45
1569
  #: dashboard/publisher/adverts-main.php:47
1570
  #: dashboard/publisher/groups-main.php:37
1602
  msgid "Monthly overview of clicks and impressions"
1603
  msgstr "Månads översikt av klick och visningar"
1604
 
1605
+ #: dashboard/publisher/adverts-report.php:64
1606
+ #: dashboard/publisher/groups-report.php:65
1607
+ #: dashboard/settings/notifications.php:60
1608
+ #: dashboard/settings/notifications.php:90
1609
+ msgid "Note:"
1610
+ msgstr "Notera:"
1611
+
1612
  #: dashboard/publisher/adverts-report.php:64
1613
  #: dashboard/publisher/groups-report.php:65
1614
  msgid ""
1626
  msgid "Edit Group"
1627
  msgstr "Redigera grupp"
1628
 
1629
+ #: dashboard/publisher/groups-edit.php:60
1630
  msgid "Default - Show one ad at a time"
1631
  msgstr "Standard - Visa en annons i taget"
1632
 
1633
+ #: dashboard/publisher/groups-edit.php:61
1634
  msgid "Dynamic Mode - Show a different ad every few seconds"
1635
  msgstr "Dynamiskt läge - Visa en annan annons med några sekunders"
1636
 
1637
+ #: dashboard/publisher/groups-edit.php:62
1638
  msgid "Block Mode - Show a block of adverts"
1639
  msgstr ""
1640
 
1641
+ #: dashboard/publisher/groups-edit.php:66
1642
  #, fuzzy
1643
  msgid "Dynamic mode requires jQuery. You can enable this in AdRotate Settings."
1644
  msgstr ""
1645
  "'Dynamic' och 'block' läge kräver 'jQuery' och 'jQuery Showoff' att laddas. "
1646
  "Du kan aktivera detta i AdRotate inställningar."
1647
 
1648
+ #: dashboard/publisher/groups-edit.php:73
1649
+ #: dashboard/publisher/groups-edit.php:100
1650
  msgid "Dynamic and Block Mode"
1651
  msgstr "Dynamisk och Blockläge"
1652
 
1653
+ #: dashboard/publisher/groups-edit.php:74
1654
  msgid "Only required if your group is in Dynamic or Block mode."
1655
  msgstr "Krävs endast om din grupp är i dynamisk eller Blockera läget."
1656
 
1657
+ #: dashboard/publisher/groups-edit.php:78
1658
  msgid "Block size"
1659
  msgstr ""
1660
 
1661
+ #: dashboard/publisher/groups-edit.php:84
1662
  msgid "rows"
1663
  msgstr "rader"
1664
 
1665
+ #: dashboard/publisher/groups-edit.php:88
1666
  msgid "columns"
1667
  msgstr "kolumner"
1668
 
1669
+ #: dashboard/publisher/groups-edit.php:91
1670
  msgid "Block Mode"
1671
  msgstr "Blockläge"
1672
 
1673
+ #: dashboard/publisher/groups-edit.php:91
1674
  msgid "Larger blocks will degrade your sites performance! Default: 2/2."
1675
  msgstr ""
1676
 
1677
+ #: dashboard/publisher/groups-edit.php:95
1678
  msgid "Advert size"
1679
  msgstr ""
1680
 
1681
+ #: dashboard/publisher/groups-edit.php:97
1682
  msgid "pixel(s) wide"
1683
  msgstr "bildpunkt (er) bredd"
1684
 
1685
+ #: dashboard/publisher/groups-edit.php:97
1686
  msgid "pixel(s) high."
1687
  msgstr "bildpunkter (er) hög."
1688
 
1689
+ #: dashboard/publisher/groups-edit.php:100
1690
  msgid ""
1691
  "Define the maximum size of the adverts in pixels. Size can be 'auto' (Not "
1692
  "recommended). Default: 125/125."
1693
  msgstr ""
1694
 
1695
+ #: dashboard/publisher/groups-edit.php:104
1696
  msgid "Automated refresh"
1697
  msgstr "Automatisk uppdatering"
1698
 
1699
+ #: dashboard/publisher/groups-edit.php:123
1700
  msgid "seconds."
1701
  msgstr "sekunder."
1702
 
1703
+ #: dashboard/publisher/groups-edit.php:126
1704
  msgid "Dynamic Mode"
1705
  msgstr "Dynamiskt läge"
1706
 
1707
+ #: dashboard/publisher/groups-edit.php:126
1708
  msgid ""
1709
  "Load a new advert in this interval without reloading the page. Default: 6."
1710
  msgstr ""
1711
  "Ladda en ny annons i detta intervall utan att ladda om sidan. Standard: 6."
1712
 
1713
+ #: dashboard/publisher/groups-edit.php:137
1714
+ #: dashboard/publisher/groups-edit.php:284
1715
  msgid ""
1716
  "Drag the AdRotate widget to the sidebar you want it in, select \"Group of "
1717
  "Adverts\" and enter ID"
1718
  msgstr ""
1719
 
1720
+ #: dashboard/publisher/groups-edit.php:149
1721
+ #: dashboard/publisher/groups-edit.php:296
1722
+ #: dashboard/publisher/groups-edit.php:388
1723
  #, fuzzy
1724
  msgid "Save Group"
1725
  msgstr "Spara"
1726
 
1727
+ #: dashboard/publisher/groups-edit.php:157
1728
  msgid "Advert Margin"
1729
  msgstr "Annons Marginal"
1730
 
1731
+ #: dashboard/publisher/groups-edit.php:159
1732
  msgid "pixel(s)"
1733
  msgstr "bildpunkt (er)"
1734
 
1735
+ #: dashboard/publisher/groups-edit.php:162
1736
  #, fuzzy
1737
  msgid "A transparent area outside the advert in pixels. Default: 0."
1738
  msgstr "En transparant border utanför annonsen i pixlar. Standard: 1."
1739
 
1740
+ #: dashboard/publisher/groups-edit.php:162
1741
  #, fuzzy
1742
  msgid "Set to 0 to disable."
1743
  msgstr "Standard: 10. Sätt till 0 för att inaktivera denna timer."
1744
 
1745
+ #: dashboard/publisher/groups-edit.php:162
1746
  msgid "Margins are automatically disabled for blocks where required."
1747
  msgstr ""
1748
 
1749
+ #: dashboard/publisher/groups-edit.php:166
1750
  #, fuzzy
1751
  msgid "Align the group"
1752
  msgstr "Annonser i grupp"
1753
 
1754
+ #: dashboard/publisher/groups-edit.php:169
1755
  #, fuzzy
1756
  msgid "None (Default)"
1757
  msgstr "Default"
1758
 
1759
+ #: dashboard/publisher/groups-edit.php:170
1760
  msgid "Left"
1761
  msgstr ""
1762
 
1763
+ #: dashboard/publisher/groups-edit.php:171
1764
  #, fuzzy
1765
  msgid "Right"
1766
  msgstr "Vikt"
1767
 
1768
+ #: dashboard/publisher/groups-edit.php:172
1769
  msgid "Center"
1770
  msgstr ""
1771
 
1772
+ #: dashboard/publisher/groups-edit.php:176
1773
  msgid ""
1774
  "Align the group in your post or page. Using 'center' may affect your margin "
1775
  "setting. Not every theme supports this feature."
1776
  msgstr ""
1777
 
1778
+ #: dashboard/publisher/groups-edit.php:180
1779
+ #: dashboard/settings/advertisers.php:38
1780
  msgid "Geo Targeting"
1781
  msgstr "Geo Targeting"
1782
 
1783
+ #: dashboard/publisher/groups-edit.php:181
1784
  msgid "Enable Geo Targeting for this group."
1785
  msgstr ""
1786
 
1787
+ #: dashboard/publisher/groups-edit.php:182
1788
  msgid "Do not forget to tell the adverts for which areas they should show."
1789
  msgstr "Glöm inte att tala om för de annonser för vilka områden de ska visa."
1790
 
1791
+ #: dashboard/publisher/groups-edit.php:185
1792
  msgid "Mobile support"
1793
  msgstr ""
1794
 
1795
+ #: dashboard/publisher/groups-edit.php:186
1796
  msgid "Enable mobile support for this group."
1797
  msgstr ""
1798
 
1799
+ #: dashboard/publisher/groups-edit.php:187
1800
  msgid "Do not forget to put at least one mobile advert in this group."
1801
  msgstr ""
1802
 
1803
+ #: dashboard/publisher/groups-edit.php:192
1804
  msgid "Leave empty or 0 to skip this. Will default to group id."
1805
  msgstr ""
1806
  "Lämna tomt eller 0 för att hoppa över detta. Går automatiskt till grupp-ID."
1807
 
1808
+ #: dashboard/publisher/groups-edit.php:196
1809
  msgid "Set up mobile support and use Geo Targeting in AdRotate Pro"
1810
  msgstr ""
1811
 
1812
+ #: dashboard/publisher/groups-edit.php:201
1813
  msgid "In categories?"
1814
  msgstr ""
1815
 
1816
+ #: dashboard/publisher/groups-edit.php:205
1817
+ #: dashboard/publisher/groups-edit.php:243
1818
+ #: dashboard/settings/geotargeting.php:24 dashboard/settings/statistics.php:24
1819
  #, fuzzy
1820
  msgid "Disabled"
1821
  msgstr "Inaktivera annonser"
1822
 
1823
+ #: dashboard/publisher/groups-edit.php:206
1824
+ #: dashboard/publisher/groups-edit.php:244
1825
  #, fuzzy
1826
  msgid "Before content"
1827
  msgstr "Innan publicerat innehåll"
1828
 
1829
+ #: dashboard/publisher/groups-edit.php:207
1830
+ #: dashboard/publisher/groups-edit.php:245
1831
  #, fuzzy
1832
  msgid "After content"
1833
  msgstr "Före och efter innehållet"
1834
 
1835
+ #: dashboard/publisher/groups-edit.php:208
1836
+ #: dashboard/publisher/groups-edit.php:246
1837
  #, fuzzy
1838
  msgid "Before and after content"
1839
  msgstr "Före och efter innehållet"
1840
 
1841
+ #: dashboard/publisher/groups-edit.php:209
1842
+ #: dashboard/publisher/groups-edit.php:247
1843
  msgid "Inside the content..."
1844
  msgstr ""
1845
 
1846
+ #: dashboard/publisher/groups-edit.php:215
1847
+ #: dashboard/publisher/groups-edit.php:253
1848
  msgid "after the middle paragraph"
1849
  msgstr ""
1850
 
1851
+ #: dashboard/publisher/groups-edit.php:216
1852
+ #: dashboard/publisher/groups-edit.php:254
1853
  msgid "after the 1st paragraph"
1854
  msgstr ""
1855
 
1856
+ #: dashboard/publisher/groups-edit.php:217
1857
+ #: dashboard/publisher/groups-edit.php:255
1858
  msgid "after the 2nd paragraph"
1859
  msgstr ""
1860
 
1861
+ #: dashboard/publisher/groups-edit.php:218
1862
+ #: dashboard/publisher/groups-edit.php:256
1863
  msgid "after the 3rd paragraph"
1864
  msgstr ""
1865
 
1866
+ #: dashboard/publisher/groups-edit.php:219
1867
+ #: dashboard/publisher/groups-edit.php:257
1868
  msgid "after the 4th paragraph"
1869
  msgstr ""
1870
 
1871
+ #: dashboard/publisher/groups-edit.php:220
1872
+ #: dashboard/publisher/groups-edit.php:258
1873
  msgid "after the 5th paragraph"
1874
  msgstr ""
1875
 
1876
+ #: dashboard/publisher/groups-edit.php:221
1877
+ #: dashboard/publisher/groups-edit.php:259
1878
  msgid "after the 6th paragraph"
1879
  msgstr ""
1880
 
1881
+ #: dashboard/publisher/groups-edit.php:222
1882
+ #: dashboard/publisher/groups-edit.php:260
1883
  msgid "after the 7th paragraph"
1884
  msgstr ""
1885
 
1886
+ #: dashboard/publisher/groups-edit.php:223
1887
+ #: dashboard/publisher/groups-edit.php:261
1888
  msgid "after the 8th paragraph"
1889
  msgstr ""
1890
 
1891
+ #: dashboard/publisher/groups-edit.php:229
1892
  msgid "Which categories?"
1893
  msgstr "Vilka kategorier?"
1894
 
1895
+ #: dashboard/publisher/groups-edit.php:234
1896
  msgid "Click the categories posts you want the adverts to show in."
1897
  msgstr "Klicka på kategorierna inlägg du vill att annonser för att visa i."
1898
 
1899
+ #: dashboard/publisher/groups-edit.php:239
1900
  msgid "In pages?"
1901
  msgstr ""
1902
 
1903
+ #: dashboard/publisher/groups-edit.php:267
1904
  msgid "Which pages?"
1905
  msgstr "Vilka sidor?"
1906
 
1907
+ #: dashboard/publisher/groups-edit.php:272
1908
  msgid "Click the pages you want the adverts to show in."
1909
  msgstr "Klicka på de sidor du vill annonserna att visa i."
1910
 
1911
+ #: dashboard/publisher/groups-edit.php:300
1912
  msgid "Wrapper code"
1913
  msgstr "Wrapper kod"
1914
 
1915
+ #: dashboard/publisher/groups-edit.php:301
1916
  msgid "Wraps around each advert. HTML/JavaScript allowed, use with care!"
1917
  msgstr ""
1918
 
1919
+ #: dashboard/publisher/groups-edit.php:305
1920
  msgid "Before advert"
1921
  msgstr ""
1922
 
1923
+ #: dashboard/publisher/groups-edit.php:309
1924
  msgid "Options:"
1925
  msgstr "Options:"
1926
 
1927
+ #: dashboard/publisher/groups-edit.php:313
1928
  msgid "After advert"
1929
  msgstr ""
1930
 
1931
+ #: dashboard/publisher/groups-edit.php:322
1932
  msgid "Select adverts"
1933
  msgstr ""
1934
 
1935
+ #: dashboard/publisher/groups-edit.php:327
1936
  msgid "Choose adverts"
1937
  msgstr ""
1938
 
1939
+ #: dashboard/publisher/groups-edit.php:333
1940
  msgid "Visible until"
1941
  msgstr "Synlig tills"
1942
 
1943
+ #: dashboard/publisher/groups-edit.php:375
1944
  msgid "No adverts created!"
1945
  msgstr ""
1946
 
1960
  msgid "This action can not be undone!"
1961
  msgstr "Denna åtgärd kan inte ångras!"
1962
 
1963
+ #: dashboard/publisher/groups-main.php:24 dashboard/settings/maintenance.php:22
1964
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
1965
  msgid "OK to continue, CANCEL to stop."
1966
  msgstr "OK för att fortsätta, CANCEL för att avbryta."
1967
 
1973
  msgid "Statistics for group"
1974
  msgstr "Statistik för grupp"
1975
 
1976
+ #: dashboard/settings/advertisers.php:16
1977
  msgid "Advertisers - Available in AdRotate Pro"
1978
  msgstr ""
1979
 
1980
+ #: dashboard/settings/advertisers.php:17
1981
  #, fuzzy
1982
  msgid "Enable advertisers so they can review and manage their own ads."
1983
  msgstr "Aktivera Annonsörer"
1984
 
1985
+ #: dashboard/settings/advertisers.php:20
1986
  msgid "Enable Advertisers"
1987
  msgstr "Aktivera Annonsörer"
1988
 
1989
+ #: dashboard/settings/advertisers.php:22
1990
  msgid "Allow adverts to be coupled to users (Advertisers)."
1991
  msgstr "Tillåt reklam för att kopplas till användare (annonsörer)."
1992
 
1993
+ #: dashboard/settings/advertisers.php:26
1994
  msgid "Edit/update adverts"
1995
  msgstr "Edit / update annonser"
1996
 
1997
+ #: dashboard/settings/advertisers.php:28
1998
  msgid "Allow advertisers to add new or edit their adverts."
1999
  msgstr "Tillåt annonsörer att lägga till nya eller redigera sina annonser."
2000
 
2001
+ #: dashboard/settings/advertisers.php:32
2002
+ msgid "Mobile adverts"
2003
+ msgstr ""
2004
+
2005
+ #: dashboard/settings/advertisers.php:34
2006
+ msgid "Allow advertisers to specify on which devices their ads will show."
2007
+ msgstr ""
2008
+
2009
+ #: dashboard/settings/advertisers.php:40
2010
  msgid ""
2011
  "Allow advertisers to specify where their ads will show. Geo Targeting has to "
2012
  "be enabled, too."
2013
  msgstr ""
2014
 
2015
+ #: dashboard/settings/advertisers.php:44
2016
  msgid "Advertiser role"
2017
  msgstr "Annonsören role"
2018
 
2019
+ #: dashboard/settings/advertisers.php:46
2020
  msgid "Create a seperate user role for your advertisers."
2021
  msgstr ""
2022
 
2023
+ #: dashboard/settings/advertisers.php:47
2024
  msgid ""
2025
  "Don't forget to give these users access to their advertiser dashboard via "
2026
  "the Roles tab."
2027
  msgstr ""
2028
 
2029
+ #: dashboard/settings/advertisers.php:53 dashboard/settings/general.php:78
2030
+ #: dashboard/settings/maintenance.php:95 dashboard/settings/misc.php:43
2031
+ #: dashboard/settings/notifications.php:109 dashboard/settings/roles.php:55
2032
+ #: dashboard/settings/statistics.php:73
2033
+ msgid "Update Options"
2034
+ msgstr "Update Options"
2035
+
2036
+ #: dashboard/settings/general.php:17
2037
  msgid "General Settings"
2038
  msgstr ""
2039
 
2040
+ #: dashboard/settings/general.php:18
2041
  msgid "General settings for AdRotate."
2042
  msgstr ""
2043
 
2044
+ #: dashboard/settings/general.php:18 dashboard/settings/statistics.php:18
2045
  msgid "Some options are only available in AdRotate Pro!"
2046
  msgstr ""
2047
 
2048
+ #: dashboard/settings/general.php:21
2049
  msgid "Shortcode in widgets"
2050
  msgstr ""
2051
 
2052
+ #: dashboard/settings/general.php:22
2053
  msgid ""
2054
  "Enable this option to if your theme does not support shortcodes in the "
2055
  "WordPress text widget."
2056
  msgstr ""
2057
 
2058
+ #: dashboard/settings/general.php:25
2059
  msgid "Disable live preview"
2060
  msgstr ""
2061
 
2062
+ #: dashboard/settings/general.php:26
2063
  msgid ""
2064
  "Enable this option if you have faulty adverts that overflow their designated "
2065
  "area while creating/editing adverts."
2066
  msgstr ""
2067
 
2068
+ #: dashboard/settings/general.php:29
2069
  msgid "Disable dynamic mode"
2070
  msgstr ""
2071
 
2072
+ #: dashboard/settings/general.php:30
2073
  msgid ""
2074
  "Enable this option to disable dynamic mode in groups for mobile devices if "
2075
  "you notice skipping or jumpy content."
2076
  msgstr ""
2077
 
2078
+ #: dashboard/settings/general.php:33
2079
  #, fuzzy
2080
  msgid "Load jQuery"
2081
  msgstr ""
2082
  "Den jQuery Showoff Library (0.1.2 +) krävs för dynamiska grupper. Inaktivera "
2083
  "om andra plugins eller teman redan läsa här."
2084
 
2085
+ #: dashboard/settings/general.php:34
2086
  msgid ""
2087
  "Enable this option if your theme does not load jQuery. jQuery is required "
2088
  "for dynamic groups, statistics and some other features."
2089
  msgstr ""
2090
 
2091
+ #: dashboard/settings/general.php:37
2092
  msgid "Load scripts in footer?"
2093
  msgstr ""
2094
 
2095
+ #: dashboard/settings/general.php:38
2096
  msgid ""
2097
  "Enable this option if you want to load all AdRotate Javascripts in the "
2098
  "footer of your site."
2099
  msgstr ""
2100
 
2101
+ #: dashboard/settings/general.php:41
2102
  msgid "Adblock disguise"
2103
  msgstr ""
2104
 
2105
+ #: dashboard/settings/general.php:43
2106
  msgid "Leave empty to disable. Use only lowercaps letters. For example:"
2107
  msgstr ""
2108
 
2109
+ #: dashboard/settings/general.php:44
2110
  msgid ""
2111
  "Try and avoid adblock plugins in most modern browsers when using shortcodes."
2112
  msgstr ""
2113
 
2114
+ #: dashboard/settings/general.php:44
2115
  msgid ""
2116
  "To also apply this feature to widgets, use a text widget with a shortcode "
2117
  "instead of the AdRotate widget."
2118
  msgstr ""
2119
 
2120
+ #: dashboard/settings/general.php:44
2121
  msgid ""
2122
  "Avoid the use of obvious keywords or filenames in your adverts or this "
2123
  "feature will have little effect!"
2124
  msgstr ""
2125
 
2126
+ #: dashboard/settings/general.php:49
2127
  msgid "Banner Folder"
2128
  msgstr "Banner Folder"
2129
 
2130
+ #: dashboard/settings/general.php:50
2131
  #, fuzzy
2132
  msgid "Set a location where your banner images will be stored."
2133
  msgstr ""
2134
  "Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
2135
  "banners /)."
2136
 
2137
+ #: dashboard/settings/general.php:53
2138
  #, fuzzy
2139
  msgid "Location"
2140
  msgstr "Geo Location"
2141
 
2142
+ #: dashboard/settings/general.php:55
2143
  #, fuzzy
2144
  msgid "(Default: wp-content/banners/)."
2145
  msgstr ""
2146
  "Ange en plats där din banner bilder lagras. (Standard: / wp-content/"
2147
  "banners /)."
2148
 
2149
+ #: dashboard/settings/general.php:56
2150
  msgid ""
2151
  "To try and trick ad blockers you could set the folder to something crazy "
2152
  "like:"
2154
  "Att försöka lura annons blockerare som du kan ställa in mappen till något "
2155
  "galet som:"
2156
 
2157
+ #: dashboard/settings/general.php:57
2158
  msgid ""
2159
  "This folder will not be automatically created if it doesn't exist. AdRotate "
2160
  "will show errors when the folder is missing."
2162
  "Denna mapp kommer inte automatiskt att skapas om den inte existerar. "
2163
  "AdRotate visar fel när mappen saknas."
2164
 
2165
+ #: dashboard/settings/general.php:62
2166
  #, fuzzy
2167
  msgid "Bot filter"
2168
  msgstr "User-Agent Filter"
2169
 
2170
+ #: dashboard/settings/general.php:63
2171
  msgid "The bot filter is used for the AdRotate stats tracker."
2172
  msgstr ""
2173
 
2174
+ #: dashboard/settings/general.php:66
2175
  msgid "User-Agent Filter"
2176
  msgstr "User-Agent Filter"
2177
 
2178
+ #: dashboard/settings/general.php:69
2179
  msgid ""
2180
  "A comma separated list of keywords. Filter out bots/crawlers/user-agents."
2181
  msgstr ""
2182
 
2183
+ #: dashboard/settings/general.php:70
2184
  msgid ""
2185
  "Keep in mind that this might give false positives. The word 'fire' also "
2186
  "matches 'firefox', but not vice-versa. So be careful!"
2187
  msgstr ""
2188
 
2189
+ #: dashboard/settings/general.php:71
2190
  msgid ""
2191
  "Only words with alphanumeric characters and [ - _ ] are allowed. All other "
2192
  "characters are stripped out."
2193
  msgstr ""
2194
 
2195
+ #: dashboard/settings/general.php:72
2196
  msgid ""
2197
  "Additionally to the list specified here, empty User-Agents are blocked as "
2198
  "well."
2199
  msgstr ""
2200
  "Ytterligare till listan anges här, tomma user-agents blockerades också."
2201
 
2202
+ #: dashboard/settings/general.php:72
2203
  msgid "Learn more about"
2204
  msgstr "Läs mer om"
2205
 
2206
+ #: dashboard/settings/general.php:72
2207
  msgid "user-agents"
2208
  msgstr "user-agents"
2209
 
2210
+ #: dashboard/settings/geotargeting.php:17
2211
  msgid "Geo Targeting - Available in AdRotate Pro"
2212
  msgstr ""
2213
 
2214
+ #: dashboard/settings/geotargeting.php:18
2215
  msgid "Target certain areas in the world for better advertising oppurtunities."
2216
  msgstr ""
2217
 
2218
+ #: dashboard/settings/geotargeting.php:21
2219
  msgid "Which Geo Service"
2220
  msgstr ""
2221
 
2222
+ #: dashboard/settings/geotargeting.php:28
2223
+ msgid "Experimental"
2224
+ msgstr ""
2225
+
2226
+ #: dashboard/settings/geotargeting.php:31
2227
+ msgid "30000 free lookups every day, uses GeoLite2 databases from MaxMind!"
2228
  msgstr ""
2229
 
2230
+ #: dashboard/settings/geotargeting.php:32
2231
+ #: dashboard/settings/geotargeting.php:36
2232
+ #: dashboard/settings/geotargeting.php:40
2233
+ msgid "Supports:"
2234
+ msgstr ""
2235
+
2236
+ #: dashboard/settings/geotargeting.php:33
2237
+ #: dashboard/settings/geotargeting.php:37
2238
+ #: dashboard/settings/geotargeting.php:41
2239
+ msgid "Scalability:"
2240
  msgstr ""
2241
 
2242
  #: dashboard/settings/geotargeting.php:33
2243
+ msgid "Suitable for small to medium websites."
2244
+ msgstr ""
2245
+
2246
+ #: dashboard/settings/geotargeting.php:35
2247
+ msgid ""
2248
+ "The most accurate geo targeting you can get for only $20 USD per 50000 "
2249
+ "lookups."
2250
+ msgstr ""
2251
+
2252
+ #: dashboard/settings/geotargeting.php:37
2253
+ msgid "Suitable for any size website as long as you have lookups."
2254
+ msgstr ""
2255
+
2256
+ #: dashboard/settings/geotargeting.php:39
2257
+ msgid "Basic geolocation included in every CloudFlare account."
2258
+ msgstr ""
2259
+
2260
+ #: dashboard/settings/geotargeting.php:41
2261
+ msgid "Suitable for any size website."
2262
+ msgstr ""
2263
+
2264
+ #: dashboard/settings/geotargeting.php:46
2265
  msgid "Geo Cookie Lifespan"
2266
  msgstr ""
2267
 
2268
+ #: dashboard/settings/geotargeting.php:55
2269
  msgid "Hours."
2270
  msgstr ""
2271
 
2272
+ #: dashboard/settings/geotargeting.php:56
2273
  msgid ""
2274
  "Geo Data is stored in a cookie to reduce lookups. How long should this "
2275
  "cookie last? A longer period is less accurate for mobile users but may "
2276
  "reduce the usage of your lookups drastically."
2277
  msgstr ""
2278
 
2279
+ #: dashboard/settings/geotargeting.php:62
2280
  msgid "MaxMind City/Country"
2281
  msgstr ""
2282
 
2283
+ #: dashboard/settings/geotargeting.php:65
2284
  msgid "Username/Email"
2285
  msgstr ""
2286
 
2287
+ #: dashboard/settings/geotargeting.php:69
2288
  msgid "Password/License Key"
2289
  msgstr ""
2290
 
2291
+ #: dashboard/settings/maintenance.php:16
2292
  msgid "Maintenance"
2293
  msgstr "Underhåll"
2294
 
2295
+ #: dashboard/settings/maintenance.php:17
2296
  msgid ""
2297
  "Use these functions when you notice your database is slow, unresponsive and "
2298
  "sluggish."
2299
  msgstr ""
2300
 
2301
+ #: dashboard/settings/maintenance.php:20 dashboard/settings/maintenance.php:22
2302
  msgid "Optimize Database"
2303
  msgstr "Optimera Databas"
2304
 
2305
+ #: dashboard/settings/maintenance.php:22
2306
  msgid "You are about to optimize the AdRotate database."
2307
  msgstr "Du håller på att optimera AdRotate databasen."
2308
 
2309
+ #: dashboard/settings/maintenance.php:22
2310
  msgid "Did you make a backup of your database?"
2311
  msgstr "Har du gjort en säkerhetskopia av din databas?"
2312
 
2313
+ #: dashboard/settings/maintenance.php:22
2314
  msgid ""
2315
  "This may take a moment and may cause your website to respond slow "
2316
  "temporarily!"
2318
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
2319
  "tillfälligt!"
2320
 
2321
+ #: dashboard/settings/maintenance.php:23
2322
  msgid "Cleans up overhead data in the AdRotate tables."
2323
  msgstr "Rensar övervakningsdata i AdRotate tabeller."
2324
 
2325
+ #: dashboard/settings/maintenance.php:24
2326
  msgid ""
2327
  "Overhead data is accumulated garbage resulting from many changes you've "
2328
  "made. This can vary from nothing to hundreds of KiB of data."
2330
  "Övervaknings uppgifter samlas skräp till följd av många ändringar du har "
2331
  "gjort. Denna kan variera från ingenting till hundratals KiB of data."
2332
 
2333
+ #: dashboard/settings/maintenance.php:28 dashboard/settings/maintenance.php:30
2334
  msgid "Clean-up Database"
2335
  msgstr "Städa upp Databas"
2336
 
2337
+ #: dashboard/settings/maintenance.php:30
2338
  msgid ""
2339
  "You are about to clean up your database. This may delete expired schedules "
2340
  "and older statistics."
2342
  "Du håller på att städa upp din databas. Detta kan ta bort utgångna scheman "
2343
  "och äldre statistik."
2344
 
2345
+ #: dashboard/settings/maintenance.php:30
2346
  msgid "Are you sure you want to continue?"
2347
  msgstr "Är du säker på att du vill fortsätta?"
2348
 
2349
+ #: dashboard/settings/maintenance.php:30 dashboard/settings/maintenance.php:38
2350
  #, fuzzy
2351
  msgid "This might take a while and may slow down your site during this action!"
2352
  msgstr ""
2353
  "Detta kan ta en stund och kan göra din webbplats för att svara långsamt "
2354
  "tillfälligt!"
2355
 
2356
+ #: dashboard/settings/maintenance.php:31
2357
  msgid "Delete stats older than 356 days (Optional)."
2358
  msgstr "Radera statistik äldre än 356 dagar (tillval)."
2359
 
2360
+ #: dashboard/settings/maintenance.php:32
2361
  msgid ""
2362
  "AdRotate creates empty records when you start making ads, groups or "
2363
  "schedules. In rare occasions these records are faulty."
2364
  msgstr ""
2365
 
2366
+ #: dashboard/settings/maintenance.php:32
2367
  msgid ""
2368
  "If you made an ad, group or schedule that does not save when you make it use "
2369
  "this button to delete those empty records."
2370
  msgstr ""
2371
 
2372
+ #: dashboard/settings/maintenance.php:32
2373
  msgid ""
2374
  "Additionally you can clean up old schedules and/or statistics. This will "
2375
  "improve the speed of your site."
2376
  msgstr ""
2377
 
2378
+ #: dashboard/settings/maintenance.php:36
2379
  #, fuzzy
2380
  msgid "Re-evaluate Ads"
2381
  msgstr "Omvärdera annonser"
2382
 
2383
+ #: dashboard/settings/maintenance.php:38
2384
  #, fuzzy
2385
  msgid "Re-evaluate all ads"
2386
  msgstr "Omvärdera alla annonser"
2387
 
2388
+ #: dashboard/settings/maintenance.php:38
2389
  #, fuzzy
2390
  msgid "You are about to check all ads for errors."
2391
  msgstr "Du håller på att kolla alla annonser för fel."
2392
 
2393
+ #: dashboard/settings/maintenance.php:39
2394
  #, fuzzy
2395
  msgid ""
2396
  "This will apply all evaluation rules to all ads to see if any error slipped "
2399
  "Detta kommer att gälla alla regler utvärderings alla annonser för att se om "
2400
  "något fel halkade in. Normalt ska du inte behöva den här funktionen."
2401
 
2402
+ #: dashboard/settings/maintenance.php:43
2403
  msgid ""
2404
  "DISCLAIMER: The above functions are intented to be used to OPTIMIZE your "
2405
  "database. They only apply to your ads/groups and stats. Not to other "
2412
  "is not a valid point in any case."
2413
  msgstr ""
2414
 
2415
+ #: dashboard/settings/maintenance.php:45
2416
  msgid "Troubleshooting"
2417
  msgstr "Felsökning"
2418
 
2419
+ #: dashboard/settings/maintenance.php:46
2420
  msgid ""
2421
  "The below options are not meant for normal use and are only there for "
2422
  "developers to review saved settings or how ads are selected. These can be "
2424
  "SHOULD BE LEFT UNCHECKED!!"
2425
  msgstr ""
2426
 
2427
+ #: dashboard/settings/maintenance.php:49
2428
  msgid "Developer Debug"
2429
  msgstr "Utvecklar Debug"
2430
 
2431
+ #: dashboard/settings/maintenance.php:51
2432
  msgid "Troubleshoot ads and how they are selected. Visible on the front-end."
2433
  msgstr ""
2434
 
2435
+ #: dashboard/settings/maintenance.php:52
2436
  msgid "View advert specs and (some) stats in the dashboard."
2437
  msgstr ""
2438
 
2439
+ #: dashboard/settings/maintenance.php:53
2440
  #, fuzzy
2441
  msgid ""
2442
  "Disable timers for clicks and impressions and enable a alert window for "
2443
  "clicktracking."
2444
  msgstr "Du har satt en annonsör men inte gjorde det möjligt clicktracking!"
2445
 
2446
+ #: dashboard/settings/maintenance.php:54
2447
  msgid "Temporarily disable encryption on the redirect url."
2448
  msgstr "Inaktivera tillfälligt kryptering på omdirigera url."
2449
 
2450
+ #: dashboard/settings/maintenance.php:59
2451
  msgid "Status and Versions"
2452
  msgstr ""
2453
 
 
 
 
 
 
 
 
 
2454
  #: dashboard/settings/maintenance.php:62
 
 
 
 
 
 
 
 
2455
  msgid "Current status of adverts"
2456
  msgstr "Aktuell status för annonser"
2457
 
2458
+ #: dashboard/settings/maintenance.php:63
2459
  msgid "Normal"
2460
  msgstr "Normal"
2461
 
2462
+ #: dashboard/settings/maintenance.php:63
2463
  msgid "Error"
2464
  msgstr "Error"
2465
 
2466
+ #: dashboard/settings/maintenance.php:63
2467
  msgid "Expired"
2468
  msgstr "Utgånget"
2469
 
2470
+ #: dashboard/settings/maintenance.php:63
2471
  msgid "Expires Soon"
2472
  msgstr "Utgår snart"
2473
 
2474
+ #: dashboard/settings/maintenance.php:63
2475
  msgid "Unknown"
2476
  msgstr ""
2477
 
2478
+ #: dashboard/settings/maintenance.php:66
2479
  msgid "Banners/assets Folder"
2480
  msgstr ""
2481
 
2482
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2483
  msgid "Exists and appears writable"
2484
  msgstr ""
2485
 
2486
+ #: dashboard/settings/maintenance.php:68 dashboard/settings/maintenance.php:72
2487
  msgid "Not writable or does not exist"
2488
  msgstr ""
2489
 
2490
+ #: dashboard/settings/maintenance.php:70
2491
+ msgid "Reports Folder"
2492
+ msgstr ""
2493
+
2494
  #: dashboard/settings/maintenance.php:76
2495
+ msgid "Advert evaluation"
2496
+ msgstr ""
 
2497
 
2498
+ #: dashboard/settings/maintenance.php:77 dashboard/settings/maintenance.php:79
2499
+ msgid "Not scheduled! Re-activate the plugin from the plugins page."
2500
+ msgstr ""
2501
 
2502
+ #: dashboard/settings/maintenance.php:78
2503
+ msgid "Trackerdata cleanup"
2504
+ msgstr ""
2505
+
2506
+ #: dashboard/settings/maintenance.php:83
2507
+ msgid "Internal Versions"
2508
+ msgstr ""
2509
 
2510
+ #: dashboard/settings/maintenance.php:84
2511
+ msgid ""
2512
+ "Unless you experience database issues or a warning shows below, these "
2513
+ "numbers are not really relevant for troubleshooting. Support may ask for "
2514
+ "them to verify your database status."
2515
+ msgstr ""
2516
+
2517
+ #: dashboard/settings/maintenance.php:87
2518
+ msgid "AdRotate version"
2519
+ msgstr ""
2520
+
2521
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2522
+ msgid "Current:"
2523
+ msgstr ""
2524
+
2525
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2526
+ msgid "Should be:"
2527
+ msgstr ""
2528
+
2529
+ #: dashboard/settings/maintenance.php:88 dashboard/settings/maintenance.php:90
2530
+ msgid "Previous:"
2531
+ msgstr ""
2532
+
2533
+ #: dashboard/settings/maintenance.php:89
2534
+ msgid "Database version"
2535
+ msgstr ""
2536
+
2537
+ #: dashboard/settings/misc.php:16
2538
  msgid "Miscellaneous"
2539
  msgstr "Diverse"
2540
 
2541
+ #: dashboard/settings/misc.php:19
2542
  msgid "Widget alignment"
2543
  msgstr "widget inriktnings"
2544
 
2545
+ #: dashboard/settings/misc.php:20
2546
  msgid ""
2547
  "Check this box if your widgets do not align in your themes sidebar. (Does "
2548
  "not always help!)"
2550
  "Markera denna ruta om dina prylar inte rikta in dina teman sidofältet. (Inte "
2551
  "alltid hjälper!)"
2552
 
2553
+ #: dashboard/settings/misc.php:23
2554
  msgid "Widget padding"
2555
  msgstr "widget padding"
2556
 
2557
+ #: dashboard/settings/misc.php:24
2558
  msgid ""
2559
  "Enable this to remove the padding (blank space) around ads in widgets. (Does "
2560
  "not always work!)"
2562
  "Aktivera detta för att ta bort utfyllnaden (mellanslag) runt annonser i "
2563
  "widgets. (Fungerar inte alltid!)"
2564
 
2565
+ #: dashboard/settings/misc.php:28
2566
  #, fuzzy
2567
  msgid "NOTICE:"
2568
  msgstr "Meddelande"
2569
 
2570
+ #: dashboard/settings/misc.php:29
2571
  msgid ""
2572
  "You have enabled W3 Total Caching support but not defined the security hash."
2573
  msgstr ""
2574
 
2575
+ #: dashboard/settings/misc.php:29
2576
  msgid ""
2577
  "AdRotate has generated the following line for you to add to your wp-config."
2578
  "php around line 52 (below the WordPress nonces). If you do not know how to "
2579
  "add this line, check out the following guide;"
2580
  msgstr ""
2581
 
2582
+ #: dashboard/settings/misc.php:29
2583
  msgid "Set up W3 Total Caching"
2584
  msgstr ""
2585
 
2586
+ #: dashboard/settings/misc.php:33
2587
  msgid "W3 Total Caching"
2588
  msgstr "W3 Total Caching"
2589
 
2590
+ #: dashboard/settings/misc.php:34
2591
  msgid "Check this box if you use W3 Total Caching on your site."
2592
  msgstr "Markera denna ruta om du använder W3 Total Caching på din webbplats."
2593
 
2594
+ #: dashboard/settings/misc.php:38
2595
  msgid ""
2596
  "It may take a while for the ad to start rotating. The caching plugin needs "
2597
  "to refresh the cache. This can take up to a week if not done manually."
2600
  "behöver uppdatera cachen. Detta kan ta upp till en vecka om det inte görs "
2601
  "manuellt."
2602
 
2603
+ #: dashboard/settings/misc.php:38
2604
  msgid ""
2605
  "Caching support only works for [shortcodes] and the AdRotate Widget. If you "
2606
  "use a PHP Snippet you need to wrap your PHP in the exclusion code yourself."
2608
  "Caching stöd fungerar bara för [shortcodes] och AdRotate Widget. Om du "
2609
  "använder ett PHP Snippet måste du svepa din PHP i utanförskap koden själv."
2610
 
2611
+ #: dashboard/settings/notifications.php:18
2612
  msgid "Notifications"
2613
  msgstr "Meddelanden"
2614
 
2615
+ #: dashboard/settings/notifications.php:19
2616
  #, fuzzy
2617
  msgid "Set up who gets notifications if ads need your attention."
2618
  msgstr "Annonser som behöver uppmärksammas"
2619
 
2620
+ #: dashboard/settings/notifications.php:22
2621
  msgid "How to notify"
2622
  msgstr ""
2623
 
2624
+ #: dashboard/settings/notifications.php:24
2625
  msgid "Dashboard banner."
2626
  msgstr ""
2627
 
2628
+ #: dashboard/settings/notifications.php:25
2629
  #, fuzzy
2630
  msgid "Email message."
2631
  msgstr "E-post eller Remote sida:"
2632
 
2633
+ #: dashboard/settings/notifications.php:26
2634
  msgid "Push notifications to your smartphone."
2635
  msgstr ""
2636
 
2637
+ #: dashboard/settings/notifications.php:27
2638
  msgid ""
2639
  "Push notifications are delivered through Pushover, a notification service "
2640
  "for Android and iOS"
2641
  msgstr ""
2642
 
2643
+ #: dashboard/settings/notifications.php:27
2644
  msgid ""
2645
  "The Pushover App is a one time purchase for either Android and/or iOS. More "
2646
  "information can be found on the pushover website;"
2647
  msgstr ""
2648
 
2649
+ #: dashboard/settings/notifications.php:31
2650
  msgid "Test notification"
2651
  msgstr ""
2652
 
2653
+ #: dashboard/settings/notifications.php:33
2654
  msgid "Test"
2655
  msgstr "Test"
2656
 
2657
+ #: dashboard/settings/notifications.php:33
2658
  msgid ""
2659
  "Send a test notification to enabled methods. Before you test, save the "
2660
  "options first!"
2661
  msgstr ""
2662
 
2663
+ #: dashboard/settings/notifications.php:38
2664
+ msgid "Dashboard Banner"
2665
  msgstr ""
2666
 
2667
+ #: dashboard/settings/notifications.php:39
2668
  msgid ""
2669
  "These go in a dashboard banner visible to all users with access to AdRotate "
2670
  "on every WordPress dashboard page."
2671
  msgstr ""
2672
 
2673
+ #: dashboard/settings/notifications.php:42
2674
+ #: dashboard/settings/notifications.php:54
2675
+ #: dashboard/settings/notifications.php:84
2676
  msgid "What"
2677
  msgstr ""
2678
 
2679
+ #: dashboard/settings/notifications.php:44
2680
  msgid "Expired adverts."
2681
  msgstr ""
2682
 
2683
+ #: dashboard/settings/notifications.php:45
2684
  msgid "Almost expired adverts."
2685
  msgstr ""
2686
 
2687
+ #: dashboard/settings/notifications.php:50
2688
+ msgid "Email Message"
2689
  msgstr ""
2690
 
 
 
 
 
 
 
 
 
 
 
 
 
2691
  #: dashboard/settings/notifications.php:51
2692
  msgid ""
2693
+ "Receive email notifications about what is happening with your AdRotate setup."
 
2694
  msgstr ""
 
 
2695
 
2696
+ #: dashboard/settings/notifications.php:56
2697
+ #: dashboard/settings/notifications.php:86
2698
+ msgid "Daily digest of any advert status other than normal."
 
 
2699
  msgstr ""
 
 
2700
 
2701
+ #: dashboard/settings/notifications.php:57
2702
+ #: dashboard/settings/notifications.php:87
2703
+ msgid "When you are running out of Geo Targeting Lookups."
2704
+ msgstr ""
2705
+
2706
+ #: dashboard/settings/notifications.php:58
2707
+ #: dashboard/settings/notifications.php:88
2708
+ msgid "Any advertiser saving an advert in your moderation queue."
2709
+ msgstr ""
2710
 
2711
  #: dashboard/settings/notifications.php:59
2712
+ #: dashboard/settings/notifications.php:89
2713
  #, fuzzy
2714
+ msgid "A moderator approved an advert from the moderation queue."
2715
+ msgstr "Godkänn / avvisa annonser i moderation Queue"
2716
+
2717
+ #: dashboard/settings/notifications.php:60
2718
+ #: dashboard/settings/notifications.php:90
2719
+ #, fuzzy
2720
+ msgid "A moderator rejected an advert from the moderation queue."
2721
+ msgstr "Godkänn / avvisa annonser i moderation Queue"
2722
 
2723
+ #: dashboard/settings/notifications.php:60
2724
+ #: dashboard/settings/notifications.php:90
2725
+ msgid ""
2726
+ "If you have a lot of activity with many advertisers adding/changing adverts "
2727
+ "you may get a lot of messages!"
2728
  msgstr ""
2729
 
2730
+ #: dashboard/settings/notifications.php:60
2731
  msgid ""
2732
+ "Sending out a lot of email is sometimes seen as automated mailing and deemed "
2733
+ "spammy. This may result in automated filters such as those used in services "
2734
+ "like Google Gmail and Microsoft Hotmail/Outlook.com blocking your server. "
2735
+ "Make sure you whitelist the sending address in your email account once you "
2736
+ "start receiving notifications!"
2737
  msgstr ""
2738
 
2739
+ #: dashboard/settings/notifications.php:65
2740
+ #, fuzzy
2741
+ msgid "Publishers"
2742
  msgstr ""
2743
+ "Gå igenom global statistik, per annons / grupp / block-statistik. Synlig "
2744
+ "endast till förlag."
2745
 
2746
+ #: dashboard/settings/notifications.php:68
2747
+ msgid ""
2748
+ "Messages are sent once every 24 hours. Maximum of 5 addresses. Comma "
2749
+ "separated. This field may not be empty!"
2750
  msgstr ""
2751
 
2752
  #: dashboard/settings/notifications.php:72
2753
+ msgid "Advertisers"
2754
+ msgstr "Annonsörer"
2755
+
2756
+ #: dashboard/settings/notifications.php:75
2757
+ msgid ""
2758
+ "Who gets email from advertisers. Maximum of 5 addresses. Comma separated. "
2759
+ "This field may not be empty!"
2760
  msgstr ""
2761
 
2762
+ #: dashboard/settings/notifications.php:80
2763
  #, fuzzy
2764
+ msgid "Push Notifications"
2765
+ msgstr "Meddelanden"
2766
 
2767
+ #: dashboard/settings/notifications.php:81
2768
+ msgid ""
2769
+ "Receive information about what is happening with your AdRotate setup on your "
2770
+ "smartphone via Pushover."
2771
+ msgstr ""
2772
 
2773
+ #: dashboard/settings/notifications.php:90
2774
  msgid ""
2775
+ "Pushover has a monthly limit of 7500 messages, this should be plenty. If you "
2776
+ "run out, you will not receive push notifications until the quota is reset! "
2777
+ "Every message AdRotate sends, regardless of the number of receiving devices, "
2778
+ "counts as one message."
2779
  msgstr ""
2780
 
2781
+ #: dashboard/settings/notifications.php:95
2782
  #, fuzzy
2783
  msgid "User Key"
2784
  msgstr "Licensnyckel"
2785
 
2786
+ #: dashboard/settings/notifications.php:97
2787
  msgid "Get your user token"
2788
  msgstr ""
2789
 
2790
+ #: dashboard/settings/notifications.php:97
2791
+ #: dashboard/settings/notifications.php:103
2792
  msgid "here"
2793
  msgstr ""
2794
 
2795
+ #: dashboard/settings/notifications.php:101
2796
  msgid "Api Token"
2797
  msgstr ""
2798
 
2799
+ #: dashboard/settings/notifications.php:103
2800
  msgid "Create your"
2801
  msgstr ""
2802
 
2803
+ #: dashboard/settings/notifications.php:103
2804
  msgid "App"
2805
  msgstr ""
2806
 
2807
+ #: dashboard/settings/notifications.php:103
2808
  msgid "and get your API token"
2809
  msgstr ""
2810
 
2811
+ #: dashboard/settings/roles.php:17
2812
  msgid "Roles"
2813
  msgstr ""
2814
 
2815
+ #: dashboard/settings/roles.php:18
2816
  msgid "Who has access to what?"
2817
  msgstr ""
2818
 
2819
+ #: dashboard/settings/roles.php:21
2820
  msgid "Manage/Add/Edit adverts"
2821
  msgstr "Hantera / Lägg till / redigera annonser"
2822
 
2823
+ #: dashboard/settings/roles.php:25
2824
  msgid "Role to see and add/edit ads."
2825
  msgstr "Role för att se och lägga till / redigera annonser."
2826
 
2827
+ #: dashboard/settings/roles.php:29
2828
  msgid "Delete/Reset adverts"
2829
  msgstr "Radera / Reset annonser"
2830
 
2831
+ #: dashboard/settings/roles.php:33
2832
  msgid "Role to delete ads and reset stats."
2833
  msgstr "Role att ta bort annonser och återställ statistik."
2834
 
2835
+ #: dashboard/settings/roles.php:37
2836
  msgid "Manage/Add/Edit groups"
2837
  msgstr "Hantera / Lägg till / Redigera grupper"
2838
 
2839
+ #: dashboard/settings/roles.php:41
2840
  msgid "Role to see and add/edit groups."
2841
  msgstr "Role för att se och lägga till / redigera grupp."
2842
 
2843
+ #: dashboard/settings/roles.php:45
2844
  msgid "Delete groups"
2845
  msgstr "Ta bort grupper"
2846
 
2847
+ #: dashboard/settings/roles.php:49
2848
  msgid "Role to delete groups."
2849
  msgstr "Role att ta bort grupper."
2850
 
2851
+ #: dashboard/settings/statistics.php:18
2852
  msgid "Track statistics for your adverts."
2853
  msgstr ""
2854
 
2855
+ #: dashboard/settings/statistics.php:21
2856
  msgid "How to track stats"
2857
  msgstr ""
2858
 
2859
+ #: dashboard/settings/statistics.php:30
2860
  msgid "Tracks impressions and clicks internally"
2861
  msgstr ""
2862
 
2863
+ #: dashboard/settings/statistics.php:30 dashboard/settings/statistics.php:32
2864
+ #: dashboard/settings/statistics.php:34
2865
  msgid "manual"
2866
  msgstr ""
2867
 
2868
+ #: dashboard/settings/statistics.php:31
2869
  msgid ""
2870
  "Click and Impression recording, Click and impression limits, impression "
2871
  "spread for schedules, local stats display. Javascript/HTML5/Flash adverts "
2872
  "will only track impressions."
2873
  msgstr ""
2874
 
2875
+ #: dashboard/settings/statistics.php:32 dashboard/settings/statistics.php:34
2876
  msgid "In AdRotate Pro!"
2877
  msgstr ""
2878
 
2879
+ #: dashboard/settings/statistics.php:32
2880
  msgid ""
2881
  "Requires Piwik Analytics tracker installed in your sites footer! Uses data "
2882
  "attributes"
2883
  msgstr ""
2884
 
2885
+ #: dashboard/settings/statistics.php:33
2886
  msgid ""
2887
  "Click and Impression recording via Cookie, stats are displayed in Actions > "
2888
  "Contents."
2889
  msgstr ""
2890
 
2891
+ #: dashboard/settings/statistics.php:34
2892
  msgid ""
2893
  "Requires Google Universal Analytics tracker installed in your sites footer! "
2894
  "uses onClick() and onload() in adverts"
2895
  msgstr ""
2896
 
2897
+ #: dashboard/settings/statistics.php:35
2898
  msgid ""
2899
  "Click and Impression recording via Cookie, stats are displayed in Events > "
2900
  "Banner."
2901
  msgstr ""
2902
 
2903
+ #: dashboard/settings/statistics.php:41
2904
  msgid "Internal Tracker"
2905
  msgstr ""
2906
 
2907
+ #: dashboard/settings/statistics.php:42
2908
  msgid ""
2909
  "The settings below are for the internal tracker and have no effect when "
2910
  "using Piwik/Google Analytics."
2911
  msgstr ""
2912
 
2913
+ #: dashboard/settings/statistics.php:45
2914
  #, fuzzy
2915
  msgid "Logged in impressions"
2916
  msgstr "Spåra visningar från inloggade användare (rekommenderas)."
2917
 
2918
+ #: dashboard/settings/statistics.php:47
2919
  msgid "Track impressions from logged in users."
2920
  msgstr ""
2921
 
2922
+ #: dashboard/settings/statistics.php:51
2923
  #, fuzzy
2924
  msgid "Logged in clicks"
2925
  msgstr "Spår klick från inloggade användare."
2926
 
2927
+ #: dashboard/settings/statistics.php:53
2928
  msgid "Track clicks from logged in users."
2929
  msgstr "Spår klick från inloggade användare."
2930
 
2931
+ #: dashboard/settings/statistics.php:57
2932
  msgid "Impression timer"
2933
  msgstr ""
2934
 
2935
+ #: dashboard/settings/statistics.php:59 dashboard/settings/statistics.php:66
2936
  msgid "Seconds."
2937
  msgstr "Sekunder."
2938
 
2939
+ #: dashboard/settings/statistics.php:60
2940
  #, fuzzy
2941
  msgid "Default: 60."
2942
  msgstr "Default"
2943
 
2944
+ #: dashboard/settings/statistics.php:60
2945
  #, fuzzy
2946
  msgid "This number may not be empty, be lower than 10 or exceed 3600 (1 hour)."
2947
  msgstr ""
2948
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
2949
 
2950
+ #: dashboard/settings/statistics.php:64
2951
  msgid "Click timer"
2952
  msgstr ""
2953
 
2954
+ #: dashboard/settings/statistics.php:67
2955
  #, fuzzy
2956
  msgid "Default: 86400."
2957
  msgstr "Default"
2958
 
2959
+ #: dashboard/settings/statistics.php:67
2960
  #, fuzzy
2961
  msgid ""
2962
  "This number may not be empty, be lower than 60 or exceed 86400 (24 hours)."
2963
  msgstr ""
2964
  "Detta nummer kan inte vara tom, negativa eller överstiga 3600 (1 timme)."
2965
 
2966
+ #, fuzzy
2967
+ #~ msgid "Enable responsive support for this advert."
2968
+ #~ msgstr "Aktivera klickspårning för denna annons."
2969
+
2970
+ #~ msgid "Current version:"
2971
+ #~ msgstr "Aktuell version:"
2972
+
2973
+ #~ msgid "Previous version:"
2974
+ #~ msgstr "Tidigare version:"
2975
+
2976
+ #~ msgid "Current database version:"
2977
+ #~ msgstr "Nuvarande databasversion:"
2978
+
2979
+ #~ msgid "Previous database version:"
2980
+ #~ msgstr "Tidigare databasversion:"
2981
+
2982
+ #, fuzzy
2983
+ #~ msgid "Ad evaluation next run:"
2984
+ #~ msgstr "Annons Meddelanden nästa körning:"
2985
+
2986
+ #~ msgid "Not scheduled!"
2987
+ #~ msgstr "Inte planerat!"
2988
+
2989
+ #~ msgid "Clean Trackerdata next run:"
2990
+ #~ msgstr "Rensa Trackerdata nästa körning:"
2991
+
2992
+ #, fuzzy
2993
+ #~ msgid "Set up who gets notification emails."
2994
+ #~ msgstr "Annonser som behöver uppmärksammas"
2995
+
2996
+ #~ msgid ""
2997
+ #~ "A comma separated list of email addresses. Maximum of 5 addresses. Keep "
2998
+ #~ "this list to a minimum!"
2999
+ #~ msgstr ""
3000
+ #~ "En kommaseparerad lista med e-postadresser. Maximalt av 5 adresser. Spara "
3001
+ #~ "denna lista till ett minimum!"
3002
+
3003
+ #, fuzzy
3004
+ #~ msgid ""
3005
+ #~ "Messages are sent once every 24 hours when needed. If this field is empty "
3006
+ #~ "no email notifications will be send."
3007
+ #~ msgstr ""
3008
+ #~ "Meddelanden skickas en gång per 24 timmar när det behövs. Om detta fält "
3009
+ #~ "är tomt funktionen avaktiveras."
3010
+
3011
+ #, fuzzy
3012
+ #~ msgid ""
3013
+ #~ "Who gets email from advertisers. Maximum of 2 addresses. Comma seperated. "
3014
+ #~ "This field may not be empty!"
3015
+ #~ msgstr "Max 2 adresser. Kommaseparerad. Detta fält kan inte vara tomt!"
3016
+
3017
  #, fuzzy
3018
  #~ msgid "Get more features with AdRotate Pro"
3019
  #~ msgstr "Få fler funktioner! Skaffa AdRotate Pro."
3037
  #~ msgid "Email Notifications"
3038
  #~ msgstr "E-postmeddelanden"
3039
 
 
 
 
 
3040
  #~ msgid "active ad(s) expired."
3041
  #~ msgstr "aktiv annons (er) gått ut."
3042
 
3127
  #~ msgid "Barely visible"
3128
  #~ msgstr "Knappt synlig"
3129
 
 
 
 
3130
  #~ msgid "Normal coverage"
3131
  #~ msgstr "Normal täckning"
3132
 
 
 
 
3133
  #~ msgid "Best visibility"
3134
  #~ msgstr "Bästa synlighet"
3135
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: adegans
3
  Donate link: http://meandmymac.net/donate/?utm_campaign=donations&utm_medium=readme&utm_source=adrotate-free
4
  Tags: ads, banner, commercial, admin, advertise, adrotator, plugin, random, rotator, ad, advertising, advertisement, block, blocks, advertiser, publisher, adsense, geo, geolocation, geotarget, chitika, clickbank, broadstreet, banner manager,advert manager, campaign manager, export, import, telize, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, popular, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages, 2015
5
  Requires at least: 3.8
6
- Tested up to: 4.5.2
7
- Stable tag: 3.15.4
8
  License: GPLv3
9
 
10
  The popular choice for monetizing your website with adverts while keeping things simple. Start making money today!
@@ -92,12 +92,35 @@ You can also post your questions on the [forum](https://ajdg.solutions/forums/?u
92
 
93
  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)!
94
 
95
- = 3.15.4 FREE =
96
- * [new] Support for if the wp-content folder has a different name
97
-
98
- = 3.22.1 PRO =
99
- * [fix] Folder list not working when adding/editing adverts
100
- * [fix] Advertiser name blank in moderation queue
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
 
102
  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).
103
 
@@ -105,8 +128,13 @@ NOTE: Unsolicited offers, parnterships, job offers, promotional emails or produc
105
 
106
  == Upgrade Notice ==
107
 
108
- = 3.15.4 FREE =
109
- * [new] Support for if the wp-content folder has a different name
 
 
 
 
 
110
 
111
  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).
112
 
3
  Donate link: http://meandmymac.net/donate/?utm_campaign=donations&utm_medium=readme&utm_source=adrotate-free
4
  Tags: ads, banner, commercial, admin, advertise, adrotator, plugin, random, rotator, ad, advertising, advertisement, block, blocks, advertiser, publisher, adsense, geo, geolocation, geotarget, chitika, clickbank, broadstreet, banner manager,advert manager, campaign manager, export, import, telize, maxmind, referrer, email, menu, statistics, stats, report, advert, adverts, popular, best, great, 2014, geoselect, geobytes, schedules, schedule, monetize, header, widget, javascript, jquery, tracking, clicks, impressions, rotate, zone, zones, sidebar, footer, content, posts, pages, 2015
5
  Requires at least: 3.8
6
+ Tested up to: 4.5.3
7
+ Stable tag: 3.15.5
8
  License: GPLv3
9
 
10
  The popular choice for monetizing your website with adverts while keeping things simple. Start making money today!
92
 
93
  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)!
94
 
95
+ = 3.15.5 FREE =
96
+ * [change] Updated database for AdRotate Pro 4.0
97
+ * [change] Dashboard tweaks
98
+ * [fix] Notification settings not always saving correctly
99
+ * [fix] AdRotate Logo path no longer using WP_CONTENT_URL
100
+ * [fix] Redirect for using Maintenance functions
101
+ * [i18n] New and updated translation strings
102
+
103
+ = 4.0 PRO =
104
+ * [new] CloudFlare Geo Support for countries
105
+ * [new] Advertiser overview and management options
106
+ * [new] Per advertiser permissions
107
+ * [new] Much more error states in the notification bar
108
+ * [new] Re-did email notifications to be more informative
109
+ * [fix] Mobile icons not always correct for advertiser dashboard
110
+ * [fix] Redirect for using Maintenance functions
111
+ * [fix] Notification for support emails not always working
112
+ * [fix] No longer list archived and binned adverts in groups
113
+ * [fix] CPM for single adverts now counted correctly
114
+ * [fix] Can no longer select the same group as fallback
115
+ * [fix] No longer list archived and binned adverts in schedules
116
+ * [fix] Geo Targeting for advertisers now saves correctly
117
+ * [change] Better asset control for advertisers
118
+ * [change] Responsive feature depreciated, use mobile feature instead
119
+ * [change] Smaller geo cookie/$_SESSION header
120
+ * [change] Updated push notifications to be more informative
121
+ * [change] Impression spread is now per hour instead of per day
122
+ * [change] Dashboard tweaks
123
+ * [i18n] New and updated translation strings
124
 
125
  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).
126
 
128
 
129
  == Upgrade Notice ==
130
 
131
+ = 3.15.5 FREE =
132
+ * [change] Updated database for AdRotate Pro 4.0
133
+ * [change] Dashboard tweaks
134
+ * [fix] Notification settings not always saving correctly
135
+ * [fix] AdRotate Logo path no longer using WP_CONTENT_URL
136
+ * [fix] Redirect for using Maintenance functions
137
+ * [i18n] New and updated translation strings
138
 
139
  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).
140