Ad Inserter – WordPress Ads Management with AdSense Header Integration - Version 2.7.5

Version Description

  • Few minor bug fixes, cosmetic changes and code improvements
Download this release

Release Info

Developer spacetime
Plugin Icon 128x128 Ad Inserter – WordPress Ads Management with AdSense Header Integration
Version 2.7.5
Comparing to
See all releases

Code changes from version 2.7.4 to 2.7.5

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.7.4
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
@@ -17,6 +17,12 @@ Requires PHP: 5.6
17
 
18
  Change Log
19
 
 
 
 
 
 
 
20
  Ad Inserter 2.7.4 - 2021-09-16
21
  - Updated Google API
22
  - Improved labels for AdSense Auto ads
@@ -2025,6 +2031,11 @@ function ai_wp_enqueue_scripts_hook () {
2025
 
2026
  if (!get_disable_css_code () && (get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0)) {
2027
  wp_enqueue_style ('dashicons');
 
 
 
 
 
2028
  }
2029
 
2030
  if (!get_disable_js_code () && $ai_wp_data [AI_ANIMATION]) {
@@ -2778,7 +2789,7 @@ function add_footer_inline_scripts () {
2778
  }
2779
 
2780
  if ($ai_wp_data [AI_STICKY_WIDGETS] && get_sticky_widget_mode() == AI_STICKY_WIDGET_MODE_JS) {
2781
- // echo ai_get_js ('ResizeSensor');
2782
  echo ai_get_js ('theia-sticky-sidebar');
2783
  }
2784
 
@@ -5798,7 +5809,8 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
5798
  $option == AI_OPTION_AFTER_DAYS ||
5799
  $option == AI_OPTION_START_DATE ||
5800
  $option == AI_OPTION_END_DATE ||
5801
- $option == AI_OPTION_FALLBACK ||
 
5802
  $option == AI_OPTION_EXCERPT_NUMBER ||
5803
  $option == AI_OPTION_WAIT_FOR_DELAY ||
5804
  $option == AI_OPTION_HORIZONTAL_MARGIN ||
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.7.5
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
17
 
18
  Change Log
19
 
20
+ Ad Inserter 2.7.5 - 2021-10-20
21
+ - Added support for fallback block for limits (Pro only)
22
+ - Added support to optimize rotation shares by CTR (Pro only)
23
+ - Added support to animate out sticky ads (Pro only)
24
+ - Few minor bug fixes, cosmetic changes and code improvements
25
+
26
  Ad Inserter 2.7.4 - 2021-09-16
27
  - Updated Google API
28
  - Improved labels for AdSense Auto ads
2031
 
2032
  if (!get_disable_css_code () && (get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0)) {
2033
  wp_enqueue_style ('dashicons');
2034
+
2035
+ if (get_remote_debugging () && isset ($_GET [AI_URL_DEBUG]) && $_GET [AI_URL_DEBUG]) {
2036
+ wp_enqueue_style ('ai-dashicons', includes_url ('css/dashicons.min.css'), array (), $wp_version);
2037
+ wp_enqueue_style ('ai-admin-bar', includes_url ('css/admin-bar.min.css'), array (), $wp_version);
2038
+ }
2039
  }
2040
 
2041
  if (!get_disable_js_code () && $ai_wp_data [AI_ANIMATION]) {
2789
  }
2790
 
2791
  if ($ai_wp_data [AI_STICKY_WIDGETS] && get_sticky_widget_mode() == AI_STICKY_WIDGET_MODE_JS) {
2792
+ echo ai_get_js ('ResizeSensor');
2793
  echo ai_get_js ('theia-sticky-sidebar');
2794
  }
2795
 
5809
  $option == AI_OPTION_AFTER_DAYS ||
5810
  $option == AI_OPTION_START_DATE ||
5811
  $option == AI_OPTION_END_DATE ||
5812
+ $option == AI_OPTION_SCHEDULING_FALLBACK ||
5813
+ $option == AI_OPTION_LIMITS_FALLBACK ||
5814
  $option == AI_OPTION_EXCERPT_NUMBER ||
5815
  $option == AI_OPTION_WAIT_FOR_DELAY ||
5816
  $option == AI_OPTION_HORIZONTAL_MARGIN ||
class.php CHANGED
@@ -564,12 +564,12 @@ abstract class ai_BaseCodeBlock {
564
 
565
  if ($this->fallback != 0 && $this->fallback <= 96 && $this->fallback != $this->number) {
566
 
567
- $globals_name = AI_SCHEDULING_FALLBACK_DEPTH_NAME;
568
  if (!isset ($ad_inserter_globals [$globals_name])) {
569
  $ad_inserter_globals [$globals_name] = 0;
570
  }
571
 
572
- if ($ad_inserter_globals [$globals_name] < 2) {
573
  $ad_inserter_globals [$globals_name] ++;
574
 
575
  $fallback_code = $block_object [$this->fallback]->ai_getCode ();
@@ -710,7 +710,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
710
  $this->wp_options [AI_OPTION_ANIMATION_TRIGGER_VALUE] = DEFAULT_ANIMATION_TRIGGER_VALUE;
711
  $this->wp_options [AI_OPTION_ANIMATION_TRIGGER_OFFSET] = DEFAULT_ANIMATION_TRIGGER_OFFSET;
712
  $this->wp_options [AI_OPTION_ANIMATION_TRIGGER_DELAY] = DEFAULT_ANIMATION_TRIGGER_DELAY;
 
713
  $this->wp_options [AI_OPTION_ANIMATION_TRIGGER_ONCE] = DEFAULT_ANIMATION_TRIGGER_ONCE;
 
 
 
 
714
  }
715
  $this->wp_options [AI_OPTION_GENERAL_TAG] = DEFAULT_GENERAL_TAG;
716
  $this->wp_options [AI_OPTION_SCHEDULING] = AI_SCHEDULING_OFF;
@@ -720,7 +725,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
720
  $this->wp_options [AI_OPTION_START_TIME] = AD_EMPTY_DATA;
721
  $this->wp_options [AI_OPTION_END_TIME] = AD_EMPTY_DATA;
722
  $this->wp_options [AI_OPTION_WEEKDAYS] = DEFAULT_WEEKDAYS;
723
- $this->wp_options [AI_OPTION_FALLBACK] = AD_EMPTY_DATA;
724
  $this->wp_options [AI_OPTION_ADB_BLOCK_ACTION] = DEFAULT_ADB_BLOCK_ACTION;
725
  $this->wp_options [AI_OPTION_ADB_BLOCK_REPLACEMENT] = AD_EMPTY_DATA;
726
  $this->wp_options [AI_OPTION_MAXIMUM_INSERTIONS] = AD_EMPTY_DATA;
@@ -792,6 +797,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
792
  $this->wp_options [AI_OPTION_LIMIT_CLICKS_PER_TIME_PERIOD] = DEFAULT_LIMIT_CLICKS_PER_TIME_PERIOD;
793
  $this->wp_options [AI_OPTION_LIMIT_CLICKS_TIME_PERIOD] = DEFAULT_LIMIT_CLICKS_TIME_PERIOD;
794
  $this->wp_options [AI_OPTION_TRIGGER_CLICK_FRAUD_PROTECTION] = DEFAULT_TRIGGER_CLICK_FRAUD_PROTECTION;
 
795
 
796
  for ($viewport = 1; $viewport <= 6; $viewport ++) {
797
  $this->wp_options [AI_OPTION_DETECT_VIEWPORT . '_' . $viewport] = AI_DISABLED;
@@ -1496,9 +1502,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1496
  $ai_wp_data [AI_TRIGGER_ELEMENTS][$this->number] = $px;
1497
  $sticky_parameters .= ' data-aos-anchor="#ai-position-'.$this->number.'" data-aos-anchor-placement="top-top"';
1498
  break;
1499
- case AI_TRIGGER_ELEMENT_VISIBLE:
1500
  $sticky_parameters .= ' data-aos-anchor="'.$this->get_animation_trigger_value ().'"';
1501
  break;
 
 
 
1502
  }
1503
 
1504
  $offset = $this->get_animation_trigger_offset ();
@@ -1519,8 +1528,47 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1519
  $sticky_parameters .= ' data-aos-delay="'.$delay.'"';
1520
  }
1521
 
1522
- if ($this->get_animation_trigger_once ()) {
1523
- $sticky_parameters .= ' data-aos-once="true"';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1524
  }
1525
  }
1526
  }
@@ -3062,6 +3110,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3062
  switch (get_dynamic_blocks ()) {
3063
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW:
3064
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT:
 
3065
  $check_client_side_limits = $this->get_max_impressions () || $this->get_max_clicks ();
3066
  break;
3067
  default:
@@ -3310,6 +3359,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3310
  } else array_unshift ($rotate_parameters, array ('name' => ''));
3311
 
3312
  $shares = false;
 
 
 
 
3313
  $times = false;
3314
  $scheduling = false;
3315
  $groups = false;
@@ -3318,7 +3371,6 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3318
  $version_shares = array ();
3319
  $version_times = array ();
3320
  $version_scheduling = array ();
3321
- // $version_insert = array ();
3322
  $version_groups = array ();
3323
 
3324
  foreach ($rotate_parameters as $index => $option) {
@@ -3339,9 +3391,29 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3339
  // Just in case there will be a ROTATE group option
3340
  $version_groups []= '';
3341
 
3342
- $option_share = isset ($option ['share']) && is_numeric ($option ['share']);
3343
- if ($option_share) $shares = true;
3344
- $version_shares []= $option_share ? intval ($option ['share']) : - 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3345
 
3346
  $option_time = isset ($option ['time']) && is_numeric ($option ['time']);
3347
  if ($option_time) $times = true;
@@ -3374,6 +3446,52 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3374
  $total_share = 0;
3375
  $no_share = 0;
3376
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3377
  foreach ($version_shares as $index => $share) {
3378
  if ($share < 0) $no_share ++; else $total_share += $share;
3379
  }
@@ -3925,7 +4043,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3925
  $scheduling_days_in_week_raw = $this->get_schedule_weekdays ();
3926
  $scheduling_days_in_week = base64_encode ($scheduling_days_in_week_raw);
3927
  $scheduling_type = $this->get_scheduling();
3928
- $scheduling_fallback_block = intval ($this->get_fallback());
3929
  break;
3930
  }
3931
  }
@@ -3953,20 +4071,23 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3953
  $fallback_code = '';
3954
  $fallback_code_data = '';
3955
  $fallback_block_data = 0;
 
3956
  $fallback_tracking_data = '';
3957
  if ($scheduling_type !== null) {
3958
  $fallback_block = $scheduling_fallback_block;
3959
 
3960
  if ($fallback_block != $this->number && $fallback_block >= 1 && $fallback_block <= 96) {
3961
 
3962
- $globals_name = AI_SCHEDULING_FALLBACK_DEPTH_NAME;
3963
  if (!isset ($ad_inserter_globals [$globals_name])) {
3964
  $ad_inserter_globals [$globals_name] = 0;
3965
  }
3966
 
3967
- if ($ad_inserter_globals [$globals_name] < 2) {
3968
  $ad_inserter_globals [$globals_name] ++;
3969
 
 
 
3970
  $fallback_block_data = $fallback_block;
3971
  $fallback_obj = $block_object [$fallback_block];
3972
  $fallback_code = $fallback_obj->ai_getProcessedCode ();
@@ -3984,7 +4105,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3984
  if ($this->client_side_cookie_check && $url_parameters != '') $url_parameter_attributes = " parameter-list='$url_parameters' parameter-list-type='$url_parameter_list_type'"; else $url_parameter_attributes = '';
3985
  if ( $referers != '') $referer_attributes = " referer-list='$referers' referer-list-type='$referer_list_type'"; else $referer_attributes = '';
3986
  if ( $clients != '') $client_attributes = " client-list='$clients' client-list-type='$client_list_type'"; else $client_attributes = '';
3987
- if ($scheduling_type !== null ) $scheduling_attributes = " scheduling-start='$scheduling_start_time' scheduling-end='$scheduling_end_time' scheduling-days='$scheduling_days_in_week' scheduling-type='$scheduling_type_code' gmt='$gmt' scheduling-fallback='$fallback_block_data' fallback-tracking='$fallback_tracking_data'"; else $scheduling_attributes = '';
3988
 
3989
 
3990
  // Deprecated
@@ -4119,7 +4240,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
4119
  $w3tc_status = ' if (!$ai_enabled) ai_w3tc_log_run (\' FAILED\', \'color: red;\');';
4120
  } else $w3tc_status = '';
4121
 
4122
- $fallback_block = intval ($this->get_fallback());
4123
  if ($fallback_block != $this->number && $fallback_block >= 1 && $fallback_block <= 96) {
4124
  $fallback_obj = $block_object [$fallback_block];
4125
  $fallback_obj->hide_debug_labels = true;
@@ -4408,22 +4529,48 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
4408
  }
4409
 
4410
 
4411
- // COOKIE
4412
  if ($check_block_code && !$ai_wp_data [AI_FORCE_SERVERSIDE_CODE] && !$ai_wp_data [AI_WP_AMP_PAGE]) {
4413
  // Check for cookie
4414
  if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC')) {
 
4415
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
4416
- $this->w3tc_debug []= 'PROCESS COOKIE';
4417
  $this->generate_w3tc_code_from_html ($processed_code);
4418
- $this->w3tc_code .= 'if ($ai_enabled) ai_w3tc_log_run (\'PROCESS COOKIE\');';
4419
  $w3tc_status = ' if (!$ai_enabled) ai_w3tc_log_run (\' FAILED\', \'color: red;\');';
4420
  } else $w3tc_status = '';
4421
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4422
  $this->generate_w3tc_code_from_html ($processed_code);
4423
 
4424
- $this->w3tc_code .= $ai_check_block_w3tc_code; // ???
4425
- // $this->w3tc_code .= 'if ($ai_enabled) {$ai_enabled = ai_check_block (' . $this->number . '); if (!$ai_enabled) echo base64_decode (\''.base64_encode ("<div>{$ai_check_block_html_code}</div>\n").'\');'.$w3tc_status.'};';
4426
- $this->w3tc_code .= 'if ($ai_enabled) {$ai_enabled = ai_check_block (' . $this->number . ');'.$w3tc_status.'};';
4427
 
4428
  $processed_code = $this->generate_html_from_w3tc_code ();
4429
 
@@ -4431,6 +4578,37 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
4431
  $debug_html_code = '';
4432
  $block_id = $this->number . '-' . rand (1000, 9999) . rand (1000, 9999);
4433
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4434
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
4435
  $debug_label = new ai_block_labels ('ai-debug-cookie');
4436
 
@@ -4444,7 +4622,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
4444
  $debug_html_code .
4445
  "<div class='no-visibility-check ai-check-{$block_id}' data-insertion='after' data-selector='.ai-check-{$block_id}' data-code='" .
4446
  base64_encode (ai_strip_w3tc_markers (ai_strip_js_markers ($processed_code))) .
4447
- "' data-block='{$this->number}'>{$ai_check_block_html_code}</div>\n";
4448
 
4449
  if (!get_disable_js_code ()) {
4450
  $js_code = "{$ai_check_block_js_code}ai_check_and_insert_block ({$this->number}, 'ai-check-{$block_id}');";
@@ -4552,7 +4730,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
4552
  $code = $this->additional_code_before . $processed_code . $this->additional_code_after;
4553
 
4554
  // $this->additional_code_after may contain W3TC code because of ai_adb_block_actions ()
4555
- if ($this->w3tc_code != '' || strpos ($this->additional_code_after, '<!-- mfunc') !== false) {
4556
  $code = $this->regenerate_w3tc_code ($code);
4557
  $this->additional_code_before = '';
4558
  $this->additional_code_after = '';
@@ -4583,7 +4761,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
4583
  $ai_total_hook_php_time += microtime (true) - $hook_start_time;
4584
 
4585
  return $code;
4586
- }
4587
 
4588
  public function get_code_for_single_insertion ($include_viewport_classes = true, $hidden_widgets = false, $code_only = false) {
4589
  global $ai_wp_data, $block_object, $ad_inserter_globals, $ai_total_hook_php_time, $filter_hooks;
@@ -5322,6 +5500,11 @@ echo '</body>
5322
  return $option;
5323
  }
5324
 
 
 
 
 
 
5325
 
5326
  public function get_horizontal_margin (){
5327
  $option = isset ($this->wp_options [AI_OPTION_HORIZONTAL_MARGIN]) ? $this->wp_options [AI_OPTION_HORIZONTAL_MARGIN] : DEFAULT_HORIZONTAL_MARGIN;
@@ -5358,11 +5541,36 @@ echo '</body>
5358
  return $option;
5359
  }
5360
 
 
 
 
 
5361
  public function get_animation_trigger_once () {
5362
  $option = isset ($this->wp_options [AI_OPTION_ANIMATION_TRIGGER_ONCE]) ? $this->wp_options [AI_OPTION_ANIMATION_TRIGGER_ONCE] : DEFAULT_ANIMATION_TRIGGER_ONCE;
5363
  return $option;
5364
  }
5365
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5366
  public function get_ad_general_tag(){
5367
  $option = isset ($this->wp_options [AI_OPTION_GENERAL_TAG]) ? $this->wp_options [AI_OPTION_GENERAL_TAG] : DEFAULT_GENERAL_TAG;
5368
  // if ($option == '') $option = DEFAULT_GENERAL_TAG;
@@ -5424,8 +5632,8 @@ echo '</body>
5424
  return $option;
5425
  }
5426
 
5427
- public function get_fallback(){
5428
- $option = isset ($this->wp_options [AI_OPTION_FALLBACK]) ? $this->wp_options [AI_OPTION_FALLBACK] : "";
5429
  return $option;
5430
  }
5431
 
@@ -8230,10 +8438,10 @@ echo '</body>
8230
  if (!$insertion_enabled) {
8231
  if (!isset ($ai_wp_data [AI_FALLBACK_LEVEL])) $ai_wp_data [AI_FALLBACK_LEVEL] = 1; else $ai_wp_data [AI_FALLBACK_LEVEL] ++;
8232
 
8233
- $fallback = intval ($this->get_fallback());
8234
  if ($fallback != $this->number && $fallback != 0 && $fallback <= 96 && $ai_wp_data [AI_FALLBACK_LEVEL] <= 2) {
8235
  $fallback_obj = $block_object [$fallback];
8236
- if ($fallback_obj->check_scheduling ($server_side_check)) {
8237
  $this->fallback = $fallback_obj->fallback != 0 ? $fallback_obj->fallback : $fallback;
8238
  $insertion_enabled = true;
8239
  }
@@ -8259,10 +8467,10 @@ echo '</body>
8259
  if (!$insertion_enabled) {
8260
  if (!isset ($ai_wp_data [AI_FALLBACK_LEVEL])) $ai_wp_data [AI_FALLBACK_LEVEL] = 1; else $ai_wp_data [AI_FALLBACK_LEVEL] ++;
8261
 
8262
- $fallback = intval ($this->get_fallback());
8263
  if ($fallback != $this->number && $fallback != 0 && $fallback <= 96 && $ai_wp_data [AI_FALLBACK_LEVEL] <= 2) {
8264
  $fallback_obj = $block_object [$fallback];
8265
- if ($fallback_obj->check_scheduling ($server_side_check)) {
8266
  $this->fallback = $fallback_obj->fallback != 0 ? $fallback_obj->fallback : $fallback;
8267
  $insertion_enabled = true;
8268
  }
@@ -8296,7 +8504,7 @@ echo '</body>
8296
  if (!$insertion_enabled) {
8297
  if (!isset ($ai_wp_data [AI_FALLBACK_LEVEL])) $ai_wp_data [AI_FALLBACK_LEVEL] = 1; else $ai_wp_data [AI_FALLBACK_LEVEL] ++;
8298
 
8299
- $fallback = intval ($this->get_fallback());
8300
  if ($fallback != $this->number && $fallback != 0 && $fallback <= 96 && $ai_wp_data [AI_FALLBACK_LEVEL] <= 2) {
8301
  $this->fallback = $fallback;
8302
  return true;
@@ -8337,7 +8545,7 @@ echo '</body>
8337
  if (!$insertion_enabled) {
8338
  if (!isset ($ai_wp_data [AI_FALLBACK_LEVEL])) $ai_wp_data [AI_FALLBACK_LEVEL] = 1; else $ai_wp_data [AI_FALLBACK_LEVEL] ++;
8339
 
8340
- $fallback = intval ($this->get_fallback());
8341
  if ($fallback != $this->number && $fallback != 0 && $fallback <= 96 && $ai_wp_data [AI_FALLBACK_LEVEL] <= 2) {
8342
  $this->fallback = $fallback;
8343
  return true;
@@ -8514,7 +8722,7 @@ echo '</body>
8514
  if ($display_for_users == AI_DISPLAY_ADMINISTRATORS && ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != AI_USER_ADMINISTRATOR) return false;
8515
 
8516
  if (function_exists ('ai_check_impression_and_click_limits')) {
8517
- if (!ai_check_impression_and_click_limits ($this->number)) return false;
8518
  }
8519
 
8520
  return true;
@@ -9571,7 +9779,15 @@ class ai_code_generator {
9571
  $option_scheduling = '';
9572
  } else {
9573
  $option_name = isset ($rotate_parameters [$index - 1]['name']) ? $rotate_parameters [$index - 1]['name'] : '';
9574
- $option_share = isset ($rotate_parameters [$index - 1]['share']) && is_numeric ($rotate_parameters [$index - 1]['share']) ? intval ($rotate_parameters [$index - 1]['share']) : '';
 
 
 
 
 
 
 
 
9575
  $option_time = isset ($rotate_parameters [$index - 1]['time']) && is_numeric ($rotate_parameters [$index - 1]['time']) ? intval ($rotate_parameters [$index - 1]['time']) : '';
9576
  $option_scheduling = isset ($rotate_parameters [$index - 1]['scheduling']) && strpos ($rotate_parameters [$index - 1]['scheduling'], '%') !== false && strpos ($rotate_parameters [$index - 1]['scheduling'], '=') !== false ? $rotate_parameters [$index - 1]['scheduling'] : '';
9577
  }
564
 
565
  if ($this->fallback != 0 && $this->fallback <= 96 && $this->fallback != $this->number) {
566
 
567
+ $globals_name = AI_FALLBACK_DEPTH_NAME;
568
  if (!isset ($ad_inserter_globals [$globals_name])) {
569
  $ad_inserter_globals [$globals_name] = 0;
570
  }
571
 
572
+ if ($ad_inserter_globals [$globals_name] < 3) {
573
  $ad_inserter_globals [$globals_name] ++;
574
 
575
  $fallback_code = $block_object [$this->fallback]->ai_getCode ();
710
  $this->wp_options [AI_OPTION_ANIMATION_TRIGGER_VALUE] = DEFAULT_ANIMATION_TRIGGER_VALUE;
711
  $this->wp_options [AI_OPTION_ANIMATION_TRIGGER_OFFSET] = DEFAULT_ANIMATION_TRIGGER_OFFSET;
712
  $this->wp_options [AI_OPTION_ANIMATION_TRIGGER_DELAY] = DEFAULT_ANIMATION_TRIGGER_DELAY;
713
+
714
  $this->wp_options [AI_OPTION_ANIMATION_TRIGGER_ONCE] = DEFAULT_ANIMATION_TRIGGER_ONCE;
715
+
716
+ $this->wp_options [AI_OPTION_ANIMATION_OUT_TRIGGER] = AI_TRIGGER_ENABLED;
717
+ $this->wp_options [AI_OPTION_ANIMATION_OUT_TRIGGER_VALUE] = DEFAULT_ANIMATION_TRIGGER_VALUE;
718
+ $this->wp_options [AI_OPTION_ANIMATION_OUT_TRIGGER_OFFSET] = DEFAULT_ANIMATION_TRIGGER_OFFSET;
719
  }
720
  $this->wp_options [AI_OPTION_GENERAL_TAG] = DEFAULT_GENERAL_TAG;
721
  $this->wp_options [AI_OPTION_SCHEDULING] = AI_SCHEDULING_OFF;
725
  $this->wp_options [AI_OPTION_START_TIME] = AD_EMPTY_DATA;
726
  $this->wp_options [AI_OPTION_END_TIME] = AD_EMPTY_DATA;
727
  $this->wp_options [AI_OPTION_WEEKDAYS] = DEFAULT_WEEKDAYS;
728
+ $this->wp_options [AI_OPTION_SCHEDULING_FALLBACK] = AD_EMPTY_DATA;
729
  $this->wp_options [AI_OPTION_ADB_BLOCK_ACTION] = DEFAULT_ADB_BLOCK_ACTION;
730
  $this->wp_options [AI_OPTION_ADB_BLOCK_REPLACEMENT] = AD_EMPTY_DATA;
731
  $this->wp_options [AI_OPTION_MAXIMUM_INSERTIONS] = AD_EMPTY_DATA;
797
  $this->wp_options [AI_OPTION_LIMIT_CLICKS_PER_TIME_PERIOD] = DEFAULT_LIMIT_CLICKS_PER_TIME_PERIOD;
798
  $this->wp_options [AI_OPTION_LIMIT_CLICKS_TIME_PERIOD] = DEFAULT_LIMIT_CLICKS_TIME_PERIOD;
799
  $this->wp_options [AI_OPTION_TRIGGER_CLICK_FRAUD_PROTECTION] = DEFAULT_TRIGGER_CLICK_FRAUD_PROTECTION;
800
+ $this->wp_options [AI_OPTION_LIMITS_FALLBACK] = AD_EMPTY_DATA;
801
 
802
  for ($viewport = 1; $viewport <= 6; $viewport ++) {
803
  $this->wp_options [AI_OPTION_DETECT_VIEWPORT . '_' . $viewport] = AI_DISABLED;
1502
  $ai_wp_data [AI_TRIGGER_ELEMENTS][$this->number] = $px;
1503
  $sticky_parameters .= ' data-aos-anchor="#ai-position-'.$this->number.'" data-aos-anchor-placement="top-top"';
1504
  break;
1505
+ case AI_TRIGGER_ELEMENT_SCROLLS_IN:
1506
  $sticky_parameters .= ' data-aos-anchor="'.$this->get_animation_trigger_value ().'"';
1507
  break;
1508
+ case AI_TRIGGER_ELEMENT_SCROLLS_OUT:
1509
+ $sticky_parameters .= ' data-aos-anchor="'.$this->get_animation_trigger_value ().'" data-aos-anchor-placement="bottom-top" ';
1510
+ break;
1511
  }
1512
 
1513
  $offset = $this->get_animation_trigger_offset ();
1528
  $sticky_parameters .= ' data-aos-delay="'.$delay.'"';
1529
  }
1530
 
1531
+ switch ($this->get_animation_out_trigger ()) {
1532
+ case AI_TRIGGER_DISABLED:
1533
+ $sticky_parameters .= ' data-aos-once="true"';
1534
+ break;
1535
+ case AI_TRIGGER_ENABLED:
1536
+ break;
1537
+ case AI_TRIGGER_ELEMENT_SCROLLS_OUT:
1538
+ $sticky_parameters .= ' data-aos-anchor-out="'.$this->get_animation_out_trigger_value ().'" data-aos-anchor-placement-out="bottom-top" data-aos-mirror="true"';
1539
+ break;
1540
+ case AI_TRIGGER_PAGE_SCROLLED_PC:
1541
+ $pc = $this->get_animation_out_trigger_value ();
1542
+ if (!is_numeric ($pc)) $pc = 0;
1543
+ $pc = intval ($pc);
1544
+ if ($pc < 0) $pc = 0;
1545
+ if ($pc > 100) $pc = 100;
1546
+ $pc = number_format ($pc / 100, 2);
1547
+ if (!isset ($ai_wp_data [AI_TRIGGER_ELEMENTS])) $ai_wp_data [AI_TRIGGER_ELEMENTS] = array ();
1548
+ $ai_wp_data [AI_TRIGGER_ELEMENTS][$this->number . '-out'] = $pc;
1549
+ $sticky_parameters .= ' data-aos-anchor-out="#ai-position-'.$this->number.'-out" data-aos-anchor-placement-out="top-top" data-aos-mirror="true"';
1550
+ break;
1551
+ case AI_TRIGGER_PAGE_SCROLLED_PX:
1552
+ $px = $this->get_animation_out_trigger_value ();
1553
+ if (!is_numeric ($px)) $px = 0;
1554
+ $px = intval ($px);
1555
+ if ($px < 0) $px = 0;
1556
+ if (!isset ($ai_wp_data [AI_TRIGGER_ELEMENTS])) $ai_wp_data [AI_TRIGGER_ELEMENTS] = array ();
1557
+ $ai_wp_data [AI_TRIGGER_ELEMENTS][$this->number . '-out'] = $px;
1558
+ $sticky_parameters .= ' data-aos-anchor-out="#ai-position-'.$this->number.'-out" data-aos-anchor-placement-out="top-top" data-aos-mirror="true"';
1559
+ break;
1560
+ case AI_TRIGGER_ELEMENT_SCROLLS_IN:
1561
+ $sticky_parameters .= ' data-aos-anchor-out="'.$this->get_animation_out_trigger_value ().'" data-aos-mirror="true"';
1562
+ break;
1563
+ }
1564
+
1565
+ $offset = $this->get_animation_out_trigger_offset ();
1566
+ if (is_numeric ($offset)) {
1567
+ $offset = intval ($offset);
1568
+ if ($offset < -1000) $offset = - 1000;
1569
+ elseif ($offset > 1000) $offset = 1000;
1570
+
1571
+ $sticky_parameters .= ' data-aos-offset-out="'.$offset.'"';
1572
  }
1573
  }
1574
  }
3110
  switch (get_dynamic_blocks ()) {
3111
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW:
3112
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT:
3113
+ case AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC:
3114
  $check_client_side_limits = $this->get_max_impressions () || $this->get_max_clicks ();
3115
  break;
3116
  default:
3359
  } else array_unshift ($rotate_parameters, array ('name' => ''));
3360
 
3361
  $shares = false;
3362
+ $ctr_shares = false;
3363
+ $ctr_min_impressions = 1000;
3364
+ $ctr_days = 30;
3365
+ $ctr_top_share = 75;
3366
  $times = false;
3367
  $scheduling = false;
3368
  $groups = false;
3371
  $version_shares = array ();
3372
  $version_times = array ();
3373
  $version_scheduling = array ();
 
3374
  $version_groups = array ();
3375
 
3376
  foreach ($rotate_parameters as $index => $option) {
3391
  // Just in case there will be a ROTATE group option
3392
  $version_groups []= '';
3393
 
3394
+ if (isset ($option ['share']) && strpos ($share_option = strtolower ($option ['share']), 'ctr') === 0 && function_exists ('ai_get_impressions_and_clicks')) {
3395
+ $ctr_options = explode (':', $share_option);
3396
+
3397
+ if (isset ($ctr_options [1]) && $ctr_options [1] > 0 && $ctr_options [1] < 366) {
3398
+ $ctr_days = (int) $ctr_options [1];
3399
+ }
3400
+
3401
+ if (isset ($ctr_options [2]) && $ctr_options [2] > 1 && $ctr_options [2] < 10000000) {
3402
+ $ctr_min_impressions = (int) $ctr_options [2];
3403
+ }
3404
+
3405
+ if (isset ($ctr_options [3]) && $ctr_options [3] > 1 && $ctr_options [3] < 100) {
3406
+ $ctr_top_share = (int) $ctr_options [3];
3407
+ }
3408
+
3409
+ $shares = true;
3410
+ $ctr_shares = true;
3411
+ $version_shares []= - 1;
3412
+ } else {
3413
+ $option_share = isset ($option ['share']) && is_numeric ($option ['share']);
3414
+ if ($option_share) $shares = true;
3415
+ $version_shares []= $option_share ? intval ($option ['share']) : - 1;
3416
+ }
3417
 
3418
  $option_time = isset ($option ['time']) && is_numeric ($option ['time']);
3419
  if ($option_time) $times = true;
3446
  $total_share = 0;
3447
  $no_share = 0;
3448
 
3449
+ if ($ctr_shares) {
3450
+ $disabled_shares = 0;
3451
+ foreach ($version_shares as $index => $share) {
3452
+ if ($share == 0) {
3453
+ $disabled_shares ++;
3454
+ }
3455
+ }
3456
+
3457
+ if ($disabled_shares < count ($rotate_parameters) - 1) {
3458
+ // Default state (no CTR data yet) is equal shares
3459
+ foreach ($version_shares as $index => $share) {
3460
+ if ($share != 0) {
3461
+ $version_shares [$index] = number_format (100 / (count ($rotate_parameters) - $disabled_shares), 2);
3462
+ }
3463
+ }
3464
+
3465
+ if (count ($rotate_parameters) > 1 && $this->get_tracking () && get_internal_tracking ()) {
3466
+ $tracking_data = ai_get_impressions_and_clicks ($this->number, $ctr_days, false, true);
3467
+
3468
+ if ($tracking_data [2] >= $ctr_min_impressions) {
3469
+
3470
+ $max_ctr = 0;
3471
+ $max_ctr_option = 0;
3472
+ foreach ($tracking_data [4] as $option => $ctr) {
3473
+ if ($option == 0) continue;
3474
+ if ($ctr > $max_ctr) {
3475
+ $max_ctr = $ctr;
3476
+ $max_ctr_option = $option;
3477
+ }
3478
+ }
3479
+
3480
+ // We have a winner
3481
+ if ($max_ctr_option != 0) {
3482
+ foreach ($version_shares as $index => $share) {
3483
+ if ($version_shares [$index] != 0) {
3484
+ if ($index + 1 == $max_ctr_option) $version_shares [$index] = $ctr_top_share;
3485
+ else $version_shares [$index] = number_format ((100 - $ctr_top_share) / (count ($rotate_parameters) - $disabled_shares - 1), 2);
3486
+ }
3487
+ }
3488
+ }
3489
+ }
3490
+ } else $ctr_shares = false;
3491
+ }
3492
+
3493
+ }
3494
+
3495
  foreach ($version_shares as $index => $share) {
3496
  if ($share < 0) $no_share ++; else $total_share += $share;
3497
  }
4043
  $scheduling_days_in_week_raw = $this->get_schedule_weekdays ();
4044
  $scheduling_days_in_week = base64_encode ($scheduling_days_in_week_raw);
4045
  $scheduling_type = $this->get_scheduling();
4046
+ $scheduling_fallback_block = intval ($this->get_scheduling_fallback());
4047
  break;
4048
  }
4049
  }
4071
  $fallback_code = '';
4072
  $fallback_code_data = '';
4073
  $fallback_block_data = 0;
4074
+ $fallback_level = '';
4075
  $fallback_tracking_data = '';
4076
  if ($scheduling_type !== null) {
4077
  $fallback_block = $scheduling_fallback_block;
4078
 
4079
  if ($fallback_block != $this->number && $fallback_block >= 1 && $fallback_block <= 96) {
4080
 
4081
+ $globals_name = AI_FALLBACK_DEPTH_NAME;
4082
  if (!isset ($ad_inserter_globals [$globals_name])) {
4083
  $ad_inserter_globals [$globals_name] = 0;
4084
  }
4085
 
4086
+ if ($ad_inserter_globals [$globals_name] < 3) {
4087
  $ad_inserter_globals [$globals_name] ++;
4088
 
4089
+ $fallback_level = $ad_inserter_globals [$globals_name];
4090
+
4091
  $fallback_block_data = $fallback_block;
4092
  $fallback_obj = $block_object [$fallback_block];
4093
  $fallback_code = $fallback_obj->ai_getProcessedCode ();
4105
  if ($this->client_side_cookie_check && $url_parameters != '') $url_parameter_attributes = " parameter-list='$url_parameters' parameter-list-type='$url_parameter_list_type'"; else $url_parameter_attributes = '';
4106
  if ( $referers != '') $referer_attributes = " referer-list='$referers' referer-list-type='$referer_list_type'"; else $referer_attributes = '';
4107
  if ( $clients != '') $client_attributes = " client-list='$clients' client-list-type='$client_list_type'"; else $client_attributes = '';
4108
+ if ($scheduling_type !== null ) $scheduling_attributes = " scheduling-start='$scheduling_start_time' scheduling-end='$scheduling_end_time' scheduling-days='$scheduling_days_in_week' scheduling-type='$scheduling_type_code' gmt='$gmt' scheduling-fallback='$fallback_block_data' fallback_level='$fallback_level' fallback-tracking='$fallback_tracking_data'"; else $scheduling_attributes = '';
4109
 
4110
 
4111
  // Deprecated
4240
  $w3tc_status = ' if (!$ai_enabled) ai_w3tc_log_run (\' FAILED\', \'color: red;\');';
4241
  } else $w3tc_status = '';
4242
 
4243
+ $fallback_block = intval ($this->get_scheduling_fallback());
4244
  if ($fallback_block != $this->number && $fallback_block >= 1 && $fallback_block <= 96) {
4245
  $fallback_obj = $block_object [$fallback_block];
4246
  $fallback_obj->hide_debug_labels = true;
4529
  }
4530
 
4531
 
4532
+ // LIMITS + COOKIE
4533
  if ($check_block_code && !$ai_wp_data [AI_FORCE_SERVERSIDE_CODE] && !$ai_wp_data [AI_WP_AMP_PAGE]) {
4534
  // Check for cookie
4535
  if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC')) {
4536
+
4537
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
4538
+ $this->w3tc_debug []= 'PROCESS LIMITS AND COOKIE';
4539
  $this->generate_w3tc_code_from_html ($processed_code);
4540
+ $this->w3tc_code .= 'if ($ai_enabled) ai_w3tc_log_run (\'PROCESS LIMITS AND COOKIE\');';
4541
  $w3tc_status = ' if (!$ai_enabled) ai_w3tc_log_run (\' FAILED\', \'color: red;\');';
4542
  } else $w3tc_status = '';
4543
 
4544
+ $fallback_block = intval ($this->get_limits_fallback ());
4545
+ if ($fallback_block != $this->number && $fallback_block >= 1 && $fallback_block <= 96) {
4546
+
4547
+ $fallback_obj = $block_object [$fallback_block];
4548
+ $fallback_obj->hide_debug_labels = true;
4549
+ $fallback_block_code = base64_encode ($fallback_obj->ai_getProcessedCode ()); // Encode HTML + W3TC PHP
4550
+ $fallback_obj->hide_debug_labels = false;
4551
+
4552
+ if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
4553
+ $w3tc_fallback_status = ' ai_w3tc_log_run (\' FALLBACK BLOCK: ' . $fallback_block . '\');';
4554
+
4555
+ array_unshift ($fallback_obj->w3tc_debug, 'FALLBACK BLOCK ' . $fallback_block);
4556
+ $fallback_obj->w3tc_debug []= 'FALLBACK BLOCK END';
4557
+
4558
+ $this->w3tc_debug = array_merge ($this->w3tc_debug, $fallback_obj->w3tc_debug);
4559
+ } else $w3tc_fallback_status = '';
4560
+
4561
+
4562
+
4563
+ if ($fallback_obj->get_tracking ()) {
4564
+ $fallback_tracking_block = $fallback_block;
4565
+ } else $fallback_tracking_block = '0';
4566
+
4567
+ $fallback_code = ' if (!$ai_enabled) {'.$w3tc_fallback_status.' $ai_enabled = true; if (!isset ($ai_index)) $ai_index = 0; $ai_fallback = '.$fallback_tracking_block.'; $ai_code = ai_w3tc_execute_php (base64_decode (\''. $fallback_block_code . '\'), $ai_index, $ai_fallback);}';
4568
+ } else $fallback_code = '';
4569
+
4570
  $this->generate_w3tc_code_from_html ($processed_code);
4571
 
4572
+ $this->w3tc_code .= $ai_check_block_w3tc_code;
4573
+ $this->w3tc_code .= 'if ($ai_enabled) {$ai_enabled = ai_check_impression_and_click_limits (' . $this->number . ', false); if ($ai_enabled) {$ai_enabled = ai_check_block (' . $this->number . ');}; '. $w3tc_status . $fallback_code . '};';
 
4574
 
4575
  $processed_code = $this->generate_html_from_w3tc_code ();
4576
 
4578
  $debug_html_code = '';
4579
  $block_id = $this->number . '-' . rand (1000, 9999) . rand (1000, 9999);
4580
 
4581
+ $fallback_data = '';
4582
+ $fallback_block = $this->get_limits_fallback ();
4583
+ if ($fallback_block != $this->number && $fallback_block >= 1 && $fallback_block <= 96) {
4584
+
4585
+ $globals_name = AI_FALLBACK_DEPTH_NAME;
4586
+ if (!isset ($ad_inserter_globals [$globals_name])) {
4587
+ $ad_inserter_globals [$globals_name] = 0;
4588
+ }
4589
+
4590
+ if ($ad_inserter_globals [$globals_name] < 3) {
4591
+ $ad_inserter_globals [$globals_name] ++;
4592
+
4593
+ $fallback_level = $ad_inserter_globals [$globals_name];
4594
+
4595
+ $fallback_obj = $block_object [$fallback_block];
4596
+ $fallback_code = $fallback_obj->ai_getProcessedCode ();
4597
+
4598
+ $fallback_tracking_block = $fallback_obj->get_tracking () ? $fallback_obj->number : 0;
4599
+ $fallback_tracking_data = base64_encode ("[{$fallback_tracking_block},{$fallback_obj->code_version},\"{$fallback_obj->get_ad_name ()}\",\"{$fallback_obj->version_name}\"]");
4600
+
4601
+ if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
4602
+ $debug_fallback = new ai_block_labels ('ai-debug-fallback');
4603
+ $debug_fallback_code = $debug_fallback->bar ('', '', _x ('FALLBACK', 'alternative block', 'ad-inserter') . " = {$fallback_block}", '');
4604
+ } else $debug_fallback_code = '';
4605
+
4606
+ $fallback_data = " data-fallback-code='" . base64_encode ($debug_fallback_code . $fallback_code) . "' limits-fallback='$fallback_block' fallback_level='$fallback_level' fallback-tracking='$fallback_tracking_data'";
4607
+
4608
+ $ad_inserter_globals [$globals_name] --;
4609
+ }
4610
+ }
4611
+
4612
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
4613
  $debug_label = new ai_block_labels ('ai-debug-cookie');
4614
 
4622
  $debug_html_code .
4623
  "<div class='no-visibility-check ai-check-{$block_id}' data-insertion='after' data-selector='.ai-check-{$block_id}' data-code='" .
4624
  base64_encode (ai_strip_w3tc_markers (ai_strip_js_markers ($processed_code))) .
4625
+ "'{$fallback_data} data-block='{$this->number}'>{$ai_check_block_html_code}</div>\n";
4626
 
4627
  if (!get_disable_js_code ()) {
4628
  $js_code = "{$ai_check_block_js_code}ai_check_and_insert_block ({$this->number}, 'ai-check-{$block_id}');";
4730
  $code = $this->additional_code_before . $processed_code . $this->additional_code_after;
4731
 
4732
  // $this->additional_code_after may contain W3TC code because of ai_adb_block_actions ()
4733
+ if ($this->w3tc_code != '' || strpos ($this->additional_code_after, '<!-- mfunc') !== false) {
4734
  $code = $this->regenerate_w3tc_code ($code);
4735
  $this->additional_code_before = '';
4736
  $this->additional_code_after = '';
4761
  $ai_total_hook_php_time += microtime (true) - $hook_start_time;
4762
 
4763
  return $code;
4764
+ } // ai_getProcessedCode
4765
 
4766
  public function get_code_for_single_insertion ($include_viewport_classes = true, $hidden_widgets = false, $code_only = false) {
4767
  global $ai_wp_data, $block_object, $ad_inserter_globals, $ai_total_hook_php_time, $filter_hooks;
5500
  return $option;
5501
  }
5502
 
5503
+ public function get_limits_fallback () {
5504
+ $option = isset ($this->wp_options [AI_OPTION_LIMITS_FALLBACK]) ? $this->wp_options [AI_OPTION_LIMITS_FALLBACK] : "";
5505
+ return $option;
5506
+ }
5507
+
5508
 
5509
  public function get_horizontal_margin (){
5510
  $option = isset ($this->wp_options [AI_OPTION_HORIZONTAL_MARGIN]) ? $this->wp_options [AI_OPTION_HORIZONTAL_MARGIN] : DEFAULT_HORIZONTAL_MARGIN;
5541
  return $option;
5542
  }
5543
 
5544
+
5545
+
5546
+
5547
+ // Deprecated
5548
  public function get_animation_trigger_once () {
5549
  $option = isset ($this->wp_options [AI_OPTION_ANIMATION_TRIGGER_ONCE]) ? $this->wp_options [AI_OPTION_ANIMATION_TRIGGER_ONCE] : DEFAULT_ANIMATION_TRIGGER_ONCE;
5550
  return $option;
5551
  }
5552
 
5553
+ public function get_animation_out_trigger () {
5554
+ if ($this->get_animation_trigger_once ()) {
5555
+ return AI_TRIGGER_DISABLED;
5556
+ }
5557
+ $option = isset ($this->wp_options [AI_OPTION_ANIMATION_OUT_TRIGGER]) ? $this->wp_options [AI_OPTION_ANIMATION_OUT_TRIGGER] : AI_TRIGGER_ENABLED;
5558
+ return $option;
5559
+ }
5560
+
5561
+ public function get_animation_out_trigger_value () {
5562
+ $option = isset ($this->wp_options [AI_OPTION_ANIMATION_OUT_TRIGGER_VALUE]) ? $this->wp_options [AI_OPTION_ANIMATION_OUT_TRIGGER_VALUE] : DEFAULT_ANIMATION_TRIGGER_VALUE;
5563
+ return $option;
5564
+ }
5565
+
5566
+ public function get_animation_out_trigger_offset () {
5567
+ $option = isset ($this->wp_options [AI_OPTION_ANIMATION_OUT_TRIGGER_OFFSET]) ? $this->wp_options [AI_OPTION_ANIMATION_OUT_TRIGGER_OFFSET] : DEFAULT_ANIMATION_TRIGGER_OFFSET;
5568
+ return $option;
5569
+ }
5570
+
5571
+
5572
+
5573
+
5574
  public function get_ad_general_tag(){
5575
  $option = isset ($this->wp_options [AI_OPTION_GENERAL_TAG]) ? $this->wp_options [AI_OPTION_GENERAL_TAG] : DEFAULT_GENERAL_TAG;
5576
  // if ($option == '') $option = DEFAULT_GENERAL_TAG;
5632
  return $option;
5633
  }
5634
 
5635
+ public function get_scheduling_fallback(){
5636
+ $option = isset ($this->wp_options [AI_OPTION_SCHEDULING_FALLBACK]) ? $this->wp_options [AI_OPTION_SCHEDULING_FALLBACK] : "";
5637
  return $option;
5638
  }
5639
 
8438
  if (!$insertion_enabled) {
8439
  if (!isset ($ai_wp_data [AI_FALLBACK_LEVEL])) $ai_wp_data [AI_FALLBACK_LEVEL] = 1; else $ai_wp_data [AI_FALLBACK_LEVEL] ++;
8440
 
8441
+ $fallback = intval ($this->get_scheduling_fallback());
8442
  if ($fallback != $this->number && $fallback != 0 && $fallback <= 96 && $ai_wp_data [AI_FALLBACK_LEVEL] <= 2) {
8443
  $fallback_obj = $block_object [$fallback];
8444
+ if ($fallback_obj->check_scheduling ($server_side_check) && ai_check_impression_and_click_limits ($fallback, true)) {
8445
  $this->fallback = $fallback_obj->fallback != 0 ? $fallback_obj->fallback : $fallback;
8446
  $insertion_enabled = true;
8447
  }
8467
  if (!$insertion_enabled) {
8468
  if (!isset ($ai_wp_data [AI_FALLBACK_LEVEL])) $ai_wp_data [AI_FALLBACK_LEVEL] = 1; else $ai_wp_data [AI_FALLBACK_LEVEL] ++;
8469
 
8470
+ $fallback = intval ($this->get_scheduling_fallback());
8471
  if ($fallback != $this->number && $fallback != 0 && $fallback <= 96 && $ai_wp_data [AI_FALLBACK_LEVEL] <= 2) {
8472
  $fallback_obj = $block_object [$fallback];
8473
+ if ($fallback_obj->check_scheduling ($server_side_check) && ai_check_impression_and_click_limits ($fallback, true)) {
8474
  $this->fallback = $fallback_obj->fallback != 0 ? $fallback_obj->fallback : $fallback;
8475
  $insertion_enabled = true;
8476
  }
8504
  if (!$insertion_enabled) {
8505
  if (!isset ($ai_wp_data [AI_FALLBACK_LEVEL])) $ai_wp_data [AI_FALLBACK_LEVEL] = 1; else $ai_wp_data [AI_FALLBACK_LEVEL] ++;
8506
 
8507
+ $fallback = intval ($this->get_scheduling_fallback());
8508
  if ($fallback != $this->number && $fallback != 0 && $fallback <= 96 && $ai_wp_data [AI_FALLBACK_LEVEL] <= 2) {
8509
  $this->fallback = $fallback;
8510
  return true;
8545
  if (!$insertion_enabled) {
8546
  if (!isset ($ai_wp_data [AI_FALLBACK_LEVEL])) $ai_wp_data [AI_FALLBACK_LEVEL] = 1; else $ai_wp_data [AI_FALLBACK_LEVEL] ++;
8547
 
8548
+ $fallback = intval ($this->get_scheduling_fallback());
8549
  if ($fallback != $this->number && $fallback != 0 && $fallback <= 96 && $ai_wp_data [AI_FALLBACK_LEVEL] <= 2) {
8550
  $this->fallback = $fallback;
8551
  return true;
8722
  if ($display_for_users == AI_DISPLAY_ADMINISTRATORS && ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != AI_USER_ADMINISTRATOR) return false;
8723
 
8724
  if (function_exists ('ai_check_impression_and_click_limits')) {
8725
+ if ($server_side_check && !ai_check_impression_and_click_limits ($this->number)) return false;
8726
  }
8727
 
8728
  return true;
9779
  $option_scheduling = '';
9780
  } else {
9781
  $option_name = isset ($rotate_parameters [$index - 1]['name']) ? $rotate_parameters [$index - 1]['name'] : '';
9782
+ if (isset ($rotate_parameters [$index - 1]['share'])) {
9783
+ if (is_numeric ($rotate_parameters [$index - 1]['share'])) {
9784
+ $option_share = intval ($rotate_parameters [$index - 1]['share']);
9785
+ }
9786
+ elseif (strpos (strtolower ($rotate_parameters [$index - 1]['share']), 'ctr') === 0) {
9787
+ $option_share = $rotate_parameters [$index - 1]['share'];
9788
+ } else $option_share = '';
9789
+ }
9790
+ // $option_share = isset ($rotate_parameters [$index - 1]['share']) && is_numeric ($rotate_parameters [$index - 1]['share']) ? intval ($rotate_parameters [$index - 1]['share']) : '';
9791
  $option_time = isset ($rotate_parameters [$index - 1]['time']) && is_numeric ($rotate_parameters [$index - 1]['time']) ? intval ($rotate_parameters [$index - 1]['time']) : '';
9792
  $option_scheduling = isset ($rotate_parameters [$index - 1]['scheduling']) && strpos ($rotate_parameters [$index - 1]['scheduling'], '%') !== false && strpos ($rotate_parameters [$index - 1]['scheduling'], '=') !== false ? $rotate_parameters [$index - 1]['scheduling'] : '';
9793
  }
constants.php CHANGED
@@ -31,7 +31,7 @@ if (!defined( 'AD_INSERTER_NAME'))
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
- define ('AD_INSERTER_VERSION', '2.7.4');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
@@ -134,7 +134,8 @@ define ('AI_OPTION_END_DATE', 'end_date');
134
  define ('AI_OPTION_START_TIME', 'start_time');
135
  define ('AI_OPTION_END_TIME', 'end_time');
136
  define ('AI_OPTION_WEEKDAYS', 'weekdays');
137
- define ('AI_OPTION_FALLBACK', 'fallback');
 
138
  define ('AI_OPTION_MAXIMUM_INSERTIONS', 'maximum_insertions');
139
  define ('AI_OPTION_ID_LIST', 'id_list');
140
  define ('AI_OPTION_ID_LIST_TYPE', 'id_list_type');
@@ -188,7 +189,13 @@ define ('AI_OPTION_ANIMATION_TRIGGER', 'animation-trigger');
188
  define ('AI_OPTION_ANIMATION_TRIGGER_VALUE', 'animation-trigger-value');
189
  define ('AI_OPTION_ANIMATION_TRIGGER_OFFSET', 'animation-trigger-offset');
190
  define ('AI_OPTION_ANIMATION_TRIGGER_DELAY', 'animation-trigger-delay');
 
191
  define ('AI_OPTION_ANIMATION_TRIGGER_ONCE', 'animation-trigger-once');
 
 
 
 
 
192
  define ('AI_OPTION_BACKGROUND', 'background');
193
  define ('AI_OPTION_BACKGROUND_COLOR', 'background-color');
194
  define ('AI_OPTION_BACKGROUND_IMAGE', 'background-image');
@@ -459,7 +466,11 @@ define('AI_TEXT_ENG_TURN', 'Turn');
459
  define('AI_TRIGGER_PAGE_LOADED', 0);
460
  define('AI_TRIGGER_PAGE_SCROLLED_PC', 1);
461
  define('AI_TRIGGER_PAGE_SCROLLED_PX', 2);
462
- define('AI_TRIGGER_ELEMENT_VISIBLE', 3);
 
 
 
 
463
 
464
  define('AI_TEXT_ENG_PAGE_LOADED', 'Page loaded');
465
  define('AI_TEXT_ENG_PAGE_SCROLLED_PC', 'Page scrolled (%)');
@@ -790,7 +801,8 @@ define ('AI_WIDGET_COUNTER_NAME', 'AI_WIDGET_COUNTER_');
790
  define ('AI_POST_COUNTER_NAME', 'AI_THE_POST_COUNTER');
791
  define ('AI_COMMENT_COUNTER_NAME', 'AI_COMMENT_COUNTER');
792
  define ('AI_ADB_FALLBACK_DEPTH_NAME', 'AI_ADB_FALLBACK_DEPTH');
793
- define ('AI_SCHEDULING_FALLBACK_DEPTH_NAME', 'AI_SCHEDULING_FALLBACK_DEPTH');
 
794
 
795
  //Settings
796
  define ('AI_ENABLED', '1');
@@ -802,7 +814,7 @@ define ('AI_TRANSIENT_RATING', 'ai-rating');
802
  define ('AI_TRANSIENT_RATING_EXPIRATION', 48 * 3600);
803
 
804
  define ('AI_TRANSIENT_STATISTICS', 'ai-statistics');
805
- define ('AI_TRANSIENT_STATISTICS_EXPIRATION', 60 * 60);
806
 
807
  define ('AI_TRANSIENT_CFP_IP_ADDRESS', 'ai-cfp-');
808
 
@@ -1169,6 +1181,7 @@ define ('AI_AMP_CSS', 72);
1169
  define ('AI_DYNAMIC_BLOCKS', 73);
1170
  define ('AI_IP_TO_COUNTRY', 74); // Used in Ip2Country.php
1171
  define ('AI_CLIENT_SIDE_FILTER_CHECKS', 75);
 
1172
 
1173
  define ('AI_CONTEXT_NONE', 0);
1174
  define ('AI_CONTEXT_CONTENT', 1);
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
+ define ('AD_INSERTER_VERSION', '2.7.5');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
134
  define ('AI_OPTION_START_TIME', 'start_time');
135
  define ('AI_OPTION_END_TIME', 'end_time');
136
  define ('AI_OPTION_WEEKDAYS', 'weekdays');
137
+ define ('AI_OPTION_SCHEDULING_FALLBACK', 'fallback');
138
+ define ('AI_OPTION_LIMITS_FALLBACK', 'limits_fallback');
139
  define ('AI_OPTION_MAXIMUM_INSERTIONS', 'maximum_insertions');
140
  define ('AI_OPTION_ID_LIST', 'id_list');
141
  define ('AI_OPTION_ID_LIST_TYPE', 'id_list_type');
189
  define ('AI_OPTION_ANIMATION_TRIGGER_VALUE', 'animation-trigger-value');
190
  define ('AI_OPTION_ANIMATION_TRIGGER_OFFSET', 'animation-trigger-offset');
191
  define ('AI_OPTION_ANIMATION_TRIGGER_DELAY', 'animation-trigger-delay');
192
+
193
  define ('AI_OPTION_ANIMATION_TRIGGER_ONCE', 'animation-trigger-once');
194
+
195
+ define ('AI_OPTION_ANIMATION_OUT_TRIGGER', 'animation-out-trigger');
196
+ define ('AI_OPTION_ANIMATION_OUT_TRIGGER_VALUE', 'animation-out-trigger-value');
197
+ define ('AI_OPTION_ANIMATION_OUT_TRIGGER_OFFSET','animation-out-trigger-offset');
198
+
199
  define ('AI_OPTION_BACKGROUND', 'background');
200
  define ('AI_OPTION_BACKGROUND_COLOR', 'background-color');
201
  define ('AI_OPTION_BACKGROUND_IMAGE', 'background-image');
466
  define('AI_TRIGGER_PAGE_LOADED', 0);
467
  define('AI_TRIGGER_PAGE_SCROLLED_PC', 1);
468
  define('AI_TRIGGER_PAGE_SCROLLED_PX', 2);
469
+ define('AI_TRIGGER_ELEMENT_SCROLLS_IN', 3);
470
+ // Animate out
471
+ define('AI_TRIGGER_DISABLED', 4);
472
+ define('AI_TRIGGER_ENABLED', 5);
473
+ define('AI_TRIGGER_ELEMENT_SCROLLS_OUT', 6);
474
 
475
  define('AI_TEXT_ENG_PAGE_LOADED', 'Page loaded');
476
  define('AI_TEXT_ENG_PAGE_SCROLLED_PC', 'Page scrolled (%)');
801
  define ('AI_POST_COUNTER_NAME', 'AI_THE_POST_COUNTER');
802
  define ('AI_COMMENT_COUNTER_NAME', 'AI_COMMENT_COUNTER');
803
  define ('AI_ADB_FALLBACK_DEPTH_NAME', 'AI_ADB_FALLBACK_DEPTH');
804
+ define ('AI_FALLBACK_DEPTH_NAME', 'AI_FALLBACK_DEPTH');
805
+ define ('AI_LIMITS_FALLBACK_DEPTH_NAME', 'AI_LIMITS_FALLBACK_DEPTH');
806
 
807
  //Settings
808
  define ('AI_ENABLED', '1');
814
  define ('AI_TRANSIENT_RATING_EXPIRATION', 48 * 3600);
815
 
816
  define ('AI_TRANSIENT_STATISTICS', 'ai-statistics');
817
+ define ('AI_TRANSIENT_STATISTICS_EXPIRATION', 20 * 60);
818
 
819
  define ('AI_TRANSIENT_CFP_IP_ADDRESS', 'ai-cfp-');
820
 
1181
  define ('AI_DYNAMIC_BLOCKS', 73);
1182
  define ('AI_IP_TO_COUNTRY', 74); // Used in Ip2Country.php
1183
  define ('AI_CLIENT_SIDE_FILTER_CHECKS', 75);
1184
+ define ('AI_LIMITS_FALLBACK_LEVEL', 76);
1185
 
1186
  define ('AI_CONTEXT_NONE', 0);
1187
  define ('AI_CONTEXT_CONTENT', 1);
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.7.4"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
1
  #ai-data {
2
+ font-family: "2.7.5"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
includes/js/ResizeSensor.js CHANGED
@@ -173,4 +173,4 @@
173
 
174
  })();
175
 
176
- //# sourceMappingURL=maps/ResizeSensor.js.map
173
 
174
  })();
175
 
176
+
includes/js/ai-cookie.js CHANGED
@@ -395,6 +395,9 @@ ai_check_block = function (block) {
395
 
396
  ai_check_and_insert_block = function (block, id) {
397
 
 
 
 
398
  if (block == null) {
399
  return true;
400
  }
@@ -403,7 +406,29 @@ ai_check_and_insert_block = function (block, id) {
403
  if (ai_block_divs.length) {
404
  var ai_block_div = ai_block_divs [0];
405
  var wrapping_div = ai_block_div.closest ('.AI_FUNCT_GET_BLOCK_CLASS_NAME');
406
- if (ai_check_block (block)) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
407
  ai_insert_code (ai_block_div);
408
  if (wrapping_div) {
409
 
@@ -456,7 +481,7 @@ ai_check_and_insert_block = function (block, id) {
456
 
457
  function ai_load_cookie () {
458
 
459
- var ai_debug = typeof ai_debugging !== 'undefined'; // 2
460
  // var ai_debug = false;
461
 
462
  var ai_cookie_name = 'aiBLOCKS';
@@ -475,7 +500,7 @@ function ai_load_cookie () {
475
 
476
  function ai_get_cookie (block, property) {
477
 
478
- var ai_debug = typeof ai_debugging !== 'undefined'; // 3
479
  // var ai_debug = false;
480
 
481
  var value = '';
@@ -503,7 +528,7 @@ function ai_set_cookie (block, property, value) {
503
  }
504
 
505
  var ai_cookie_name = 'aiBLOCKS';
506
- var ai_debug = typeof ai_debugging !== 'undefined'; // 4
507
  // var ai_debug = false;
508
 
509
  if (ai_debug) console.log ('AI COOKIE SET block:', block, 'property:', property, 'value:', value);
395
 
396
  ai_check_and_insert_block = function (block, id) {
397
 
398
+ var ai_debug = typeof ai_debugging !== 'undefined'; // 2
399
+ // var ai_debug = false;
400
+
401
  if (block == null) {
402
  return true;
403
  }
406
  if (ai_block_divs.length) {
407
  var ai_block_div = ai_block_divs [0];
408
  var wrapping_div = ai_block_div.closest ('.AI_FUNCT_GET_BLOCK_CLASS_NAME');
409
+
410
+ var insert_block = ai_check_block (block);
411
+
412
+ if (!insert_block) {
413
+ // if (ai_debug) console.log ('AI CHECK FAILED, !insert_block', block);
414
+ // Check for a fallback block
415
+ if (parseInt (ai_block_div.getAttribute ('limits-fallback')) != 0 && ai_block_div.hasAttribute ('data-fallback-code')) {
416
+
417
+ if (ai_debug) console.log ('AI CHECK FAILED, INSERTING FALLBACK BLOCK', ai_block_div.getAttribute ('limits-fallback'));
418
+
419
+ ai_block_div.setAttribute ('data-code', ai_block_div.getAttribute ('data-fallback-code'));
420
+
421
+ if (wrapping_div.hasAttribute ('data-ai')) {
422
+ if (ai_block_div.hasAttribute ('fallback-tracking') && ai_block_div.hasAttribute ('fallback_level')) {
423
+ wrapping_div.setAttribute ('data-ai-' + ai_block_div.getAttribute ('fallback_level'), ai_block_div.getAttribute ('fallback-tracking'));
424
+ }
425
+ }
426
+
427
+ insert_block = true;
428
+ }
429
+ }
430
+
431
+ if (insert_block) {
432
  ai_insert_code (ai_block_div);
433
  if (wrapping_div) {
434
 
481
 
482
  function ai_load_cookie () {
483
 
484
+ var ai_debug = typeof ai_debugging !== 'undefined'; // 3
485
  // var ai_debug = false;
486
 
487
  var ai_cookie_name = 'aiBLOCKS';
500
 
501
  function ai_get_cookie (block, property) {
502
 
503
+ var ai_debug = typeof ai_debugging !== 'undefined'; // 4
504
  // var ai_debug = false;
505
 
506
  var value = '';
528
  }
529
 
530
  var ai_cookie_name = 'aiBLOCKS';
531
+ var ai_debug = typeof ai_debugging !== 'undefined'; // 5
532
  // var ai_debug = false;
533
 
534
  if (ai_debug) console.log ('AI COOKIE SET block:', block, 'property:', property, 'value:', value);
includes/js/ai-cookie.min.js CHANGED
@@ -1,15 +1,16 @@
1
- (function(a){if("function"===typeof define&&define.amd){define(a);var c=!0}"object"===typeof exports&&(module.exports=a(),c=!0);if(!c){var e=window.Cookies,b=window.Cookies=a();b.noConflict=function(){window.Cookies=e;return b}}})(function(){function a(){for(var e=0,b={};e<arguments.length;e++){var f=arguments[e],d;for(d in f)b[d]=f[d]}return b}function c(e){function b(){}function f(h,k,g){if("undefined"!==typeof document){g=a({path:"/",sameSite:"Lax"},b.defaults,g);"number"===typeof g.expires&&(g.expires=
2
- new Date(1*new Date+864E5*g.expires));g.expires=g.expires?g.expires.toUTCString():"";try{var l=JSON.stringify(k);/^[\{\[]/.test(l)&&(k=l)}catch(p){}k=e.write?e.write(k,h):encodeURIComponent(String(k)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent);h=encodeURIComponent(String(h)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);l="";for(var n in g)g[n]&&(l+="; "+n,!0!==g[n]&&(l+="="+g[n].split(";")[0]));return document.cookie=
3
- h+"="+k+l}}function d(h,k){if("undefined"!==typeof document){for(var g={},l=document.cookie?document.cookie.split("; "):[],n=0;n<l.length;n++){var p=l[n].split("="),m=p.slice(1).join("=");k||'"'!==m.charAt(0)||(m=m.slice(1,-1));try{var q=p[0].replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);m=(e.read||e)(m,q)||m.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);if(k)try{m=JSON.parse(m)}catch(r){}g[q]=m;if(h===q)break}catch(r){}}return h?g[h]:g}}b.set=f;b.get=function(h){return d(h,!1)};b.getJSON=function(h){return d(h,
4
  !0)};b.remove=function(h,k){f(h,"",a(k,{expires:-1}))};b.defaults={};b.withConverter=c;return b}return c(function(){})});AiCookies=Cookies.noConflict();
5
- ai_check_block=function(a){if(null==a)return!0;var c=AiCookies.getJSON("aiBLOCKS");ai_debug_cookie_status="";null==c&&(c={});"undefined"!==typeof ai_delay_showing_pageviews&&(c.hasOwnProperty(a)||(c[a]={}),c[a].hasOwnProperty("d")||(c[a].d=ai_delay_showing_pageviews));if(c.hasOwnProperty(a)){for(var e in c[a]){if("x"==e){var b="",f=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in f.dataset&&(b=f.dataset.aiHash);f="";c[a].hasOwnProperty("h")&&(f=c[a].h);var d=new Date;d=c[a][e]-
6
- Math.round(d.getTime()/1E3);if(0<d&&f==b)return ai_debug_cookie_status=a="closed for "+d+" s = "+Math.round(1E4*d/3600/24)/1E4+" days",!1;ai_set_cookie(a,"x","");c[a].hasOwnProperty("i")||c[a].hasOwnProperty("c")||ai_set_cookie(a,"h","")}else if("d"==e){if(0!=c[a][e])return ai_debug_cookie_status=a="delayed for "+c[a][e]+" pageviews",!1}else if("i"==e){b="";f=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in f.dataset&&(b=f.dataset.aiHash);f="";c[a].hasOwnProperty("h")&&(f=c[a].h);
7
- if(0==c[a][e]&&f==b)return ai_debug_cookie_status=a="max impressions reached",!1;if(0>c[a][e]&&f==b){d=new Date;d=-c[a][e]-Math.round(d.getTime()/1E3);if(0<d)return ai_debug_cookie_status=a="max imp. reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1;ai_set_cookie(a,"i","");c[a].hasOwnProperty("c")||c[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("ipt"==e&&0==c[a][e]&&(d=new Date,b=Math.round(d.getTime()/1E3),d=c[a].it-b,0<d))return ai_debug_cookie_status=a="max imp. per time reached ("+
8
- Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1;if("c"==e){b="";f=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in f.dataset&&(b=f.dataset.aiHash);f="";c[a].hasOwnProperty("h")&&(f=c[a].h);if(0==c[a][e]&&f==b)return ai_debug_cookie_status=a="max clicks reached",!1;if(0>c[a][e]&&f==b){d=new Date;d=-c[a][e]-Math.round(d.getTime()/1E3);if(0<d)return ai_debug_cookie_status=a="max clicks reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1;ai_set_cookie(a,"c","");c[a].hasOwnProperty("i")||
9
- c[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("cpt"==e&&0==c[a][e]&&(d=new Date,b=Math.round(d.getTime()/1E3),d=c[a].ct-b,0<d))return ai_debug_cookie_status=a="max clicks per time reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1}if(c.hasOwnProperty("G")&&c.G.hasOwnProperty("cpt")&&0==c.G.cpt&&(d=new Date,b=Math.round(d.getTime()/1E3),d=c.G.ct-b,0<d))return ai_debug_cookie_status=a="max global clicks per time reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1}ai_debug_cookie_status=
10
  "OK";return!0};
11
- ai_check_and_insert_block=function(a,c){if(null==a)return!0;var e=document.getElementsByClassName(c);if(e.length){e=e[0];var b=e.closest(".AI_FUNCT_GET_BLOCK_CLASS_NAME");if(ai_check_block(a)){if(ai_insert_code(e),b){var f=b.querySelectorAll(".ai-debug-block");b&&f.length&&(b.classList.remove("ai-list-block"),b.classList.remove("ai-list-block-ip"),b.classList.remove("ai-list-block-filter"),b.style.visibility="",b.classList.contains("ai-remove-position")&&(b.style.position=""))}}else{f=e.closest("div[data-ai]");
12
- if(null!=f&&"undefined"!=typeof f.getAttribute("data-ai")){var d=JSON.parse(b64d(f.getAttribute("data-ai")));"undefined"!==typeof d&&d.constructor===Array&&(d[1]="",f.setAttribute("data-ai",b64e(JSON.stringify(d))))}f=b.querySelectorAll(".ai-debug-block");b&&f.length&&(b.classList.remove("ai-list-block"),b.classList.remove("ai-list-block-ip"),b.classList.remove("ai-list-block-filter"),b.style.visibility="",b.classList.contains("ai-remove-position")&&(b.style.position=""))}e.classList.remove(c)}e=
13
- document.querySelectorAll("."+c+"-dbg");b=0;for(f=e.length;b<f;b++)d=e[b],d.querySelector(".ai-status").textContent=ai_debug_cookie_status,d.querySelector(".ai-cookie-data").textContent=ai_get_cookie_text(a),d.classList.remove(c+"-dbg")};function ai_load_cookie(){var a=AiCookies.getJSON("aiBLOCKS");null==a&&(a={});return a}function ai_get_cookie(a,c){var e="",b=ai_load_cookie();b.hasOwnProperty(a)&&b[a].hasOwnProperty(c)&&(e=b[a][c]);return e}
14
- function ai_set_cookie(a,c,e){var b=ai_load_cookie();if(""===e){if(b.hasOwnProperty(a)){delete b[a][c];a:{c=b[a];for(f in c)if(c.hasOwnProperty(f)){var f=!1;break a}f=!0}f&&delete b[a]}}else b.hasOwnProperty(a)||(b[a]={}),b[a][c]=e;0===Object.keys(b).length&&b.constructor===Object?AiCookies.remove("aiBLOCKS"):AiCookies.set("aiBLOCKS",b,{expires:365,path:"/"});return b}
15
- ai_get_cookie_text=function(a){var c=AiCookies.getJSON("aiBLOCKS");null==c&&(c={});var e="";c.hasOwnProperty("G")&&(e="G["+JSON.stringify(c.G).replace(/"/g,"").replace("{","").replace("}","")+"] ");var b="";c.hasOwnProperty(a)&&(b=JSON.stringify(c[a]).replace(/"/g,"").replace("{","").replace("}",""));return e+b};
 
1
+ (function(a){if("function"===typeof define&&define.amd){define(a);var c=!0}"object"===typeof exports&&(module.exports=a(),c=!0);if(!c){var d=window.Cookies,b=window.Cookies=a();b.noConflict=function(){window.Cookies=d;return b}}})(function(){function a(){for(var d=0,b={};d<arguments.length;d++){var f=arguments[d],e;for(e in f)b[e]=f[e]}return b}function c(d){function b(){}function f(h,k,g){if("undefined"!==typeof document){g=a({path:"/",sameSite:"Lax"},b.defaults,g);"number"===typeof g.expires&&(g.expires=
2
+ new Date(1*new Date+864E5*g.expires));g.expires=g.expires?g.expires.toUTCString():"";try{var l=JSON.stringify(k);/^[\{\[]/.test(l)&&(k=l)}catch(p){}k=d.write?d.write(k,h):encodeURIComponent(String(k)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent);h=encodeURIComponent(String(h)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);l="";for(var n in g)g[n]&&(l+="; "+n,!0!==g[n]&&(l+="="+g[n].split(";")[0]));return document.cookie=
3
+ h+"="+k+l}}function e(h,k){if("undefined"!==typeof document){for(var g={},l=document.cookie?document.cookie.split("; "):[],n=0;n<l.length;n++){var p=l[n].split("="),m=p.slice(1).join("=");k||'"'!==m.charAt(0)||(m=m.slice(1,-1));try{var q=p[0].replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);m=(d.read||d)(m,q)||m.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);if(k)try{m=JSON.parse(m)}catch(r){}g[q]=m;if(h===q)break}catch(r){}}return h?g[h]:g}}b.set=f;b.get=function(h){return e(h,!1)};b.getJSON=function(h){return e(h,
4
  !0)};b.remove=function(h,k){f(h,"",a(k,{expires:-1}))};b.defaults={};b.withConverter=c;return b}return c(function(){})});AiCookies=Cookies.noConflict();
5
+ ai_check_block=function(a){if(null==a)return!0;var c=AiCookies.getJSON("aiBLOCKS");ai_debug_cookie_status="";null==c&&(c={});"undefined"!==typeof ai_delay_showing_pageviews&&(c.hasOwnProperty(a)||(c[a]={}),c[a].hasOwnProperty("d")||(c[a].d=ai_delay_showing_pageviews));if(c.hasOwnProperty(a)){for(var d in c[a]){if("x"==d){var b="",f=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in f.dataset&&(b=f.dataset.aiHash);f="";c[a].hasOwnProperty("h")&&(f=c[a].h);var e=new Date;e=c[a][d]-
6
+ Math.round(e.getTime()/1E3);if(0<e&&f==b)return ai_debug_cookie_status=a="closed for "+e+" s = "+Math.round(1E4*e/3600/24)/1E4+" days",!1;ai_set_cookie(a,"x","");c[a].hasOwnProperty("i")||c[a].hasOwnProperty("c")||ai_set_cookie(a,"h","")}else if("d"==d){if(0!=c[a][d])return ai_debug_cookie_status=a="delayed for "+c[a][d]+" pageviews",!1}else if("i"==d){b="";f=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in f.dataset&&(b=f.dataset.aiHash);f="";c[a].hasOwnProperty("h")&&(f=c[a].h);
7
+ if(0==c[a][d]&&f==b)return ai_debug_cookie_status=a="max impressions reached",!1;if(0>c[a][d]&&f==b){e=new Date;e=-c[a][d]-Math.round(e.getTime()/1E3);if(0<e)return ai_debug_cookie_status=a="max imp. reached ("+Math.round(1E4*e/24/3600)/1E4+" days = "+e+" s)",!1;ai_set_cookie(a,"i","");c[a].hasOwnProperty("c")||c[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("ipt"==d&&0==c[a][d]&&(e=new Date,b=Math.round(e.getTime()/1E3),e=c[a].it-b,0<e))return ai_debug_cookie_status=a="max imp. per time reached ("+
8
+ Math.round(1E4*e/24/3600)/1E4+" days = "+e+" s)",!1;if("c"==d){b="";f=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in f.dataset&&(b=f.dataset.aiHash);f="";c[a].hasOwnProperty("h")&&(f=c[a].h);if(0==c[a][d]&&f==b)return ai_debug_cookie_status=a="max clicks reached",!1;if(0>c[a][d]&&f==b){e=new Date;e=-c[a][d]-Math.round(e.getTime()/1E3);if(0<e)return ai_debug_cookie_status=a="max clicks reached ("+Math.round(1E4*e/24/3600)/1E4+" days = "+e+" s)",!1;ai_set_cookie(a,"c","");c[a].hasOwnProperty("i")||
9
+ c[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("cpt"==d&&0==c[a][d]&&(e=new Date,b=Math.round(e.getTime()/1E3),e=c[a].ct-b,0<e))return ai_debug_cookie_status=a="max clicks per time reached ("+Math.round(1E4*e/24/3600)/1E4+" days = "+e+" s)",!1}if(c.hasOwnProperty("G")&&c.G.hasOwnProperty("cpt")&&0==c.G.cpt&&(e=new Date,b=Math.round(e.getTime()/1E3),e=c.G.ct-b,0<e))return ai_debug_cookie_status=a="max global clicks per time reached ("+Math.round(1E4*e/24/3600)/1E4+" days = "+e+" s)",!1}ai_debug_cookie_status=
10
  "OK";return!0};
11
+ ai_check_and_insert_block=function(a,c){if(null==a)return!0;var d=document.getElementsByClassName(c);if(d.length){d=d[0];var b=d.closest(".AI_FUNCT_GET_BLOCK_CLASS_NAME"),f=ai_check_block(a);!f&&0!=parseInt(d.getAttribute("limits-fallback"))&&d.hasAttribute("data-fallback-code")&&(d.setAttribute("data-code",d.getAttribute("data-fallback-code")),b.hasAttribute("data-ai")&&d.hasAttribute("fallback-tracking")&&d.hasAttribute("fallback_level")&&b.setAttribute("data-ai-"+d.getAttribute("fallback_level"),d.getAttribute("fallback-tracking")),
12
+ f=!0);if(f)ai_insert_code(d),b&&(f=b.querySelectorAll(".ai-debug-block"),b&&f.length&&(b.classList.remove("ai-list-block"),b.classList.remove("ai-list-block-ip"),b.classList.remove("ai-list-block-filter"),b.style.visibility="",b.classList.contains("ai-remove-position")&&(b.style.position="")));else{f=d.closest("div[data-ai]");if(null!=f&&"undefined"!=typeof f.getAttribute("data-ai")){var e=JSON.parse(b64d(f.getAttribute("data-ai")));"undefined"!==typeof e&&e.constructor===Array&&(e[1]="",f.setAttribute("data-ai",
13
+ b64e(JSON.stringify(e))))}f=b.querySelectorAll(".ai-debug-block");b&&f.length&&(b.classList.remove("ai-list-block"),b.classList.remove("ai-list-block-ip"),b.classList.remove("ai-list-block-filter"),b.style.visibility="",b.classList.contains("ai-remove-position")&&(b.style.position=""))}d.classList.remove(c)}d=document.querySelectorAll("."+c+"-dbg");b=0;for(f=d.length;b<f;b++)e=d[b],e.querySelector(".ai-status").textContent=ai_debug_cookie_status,e.querySelector(".ai-cookie-data").textContent=ai_get_cookie_text(a),
14
+ e.classList.remove(c+"-dbg")};function ai_load_cookie(){var a=AiCookies.getJSON("aiBLOCKS");null==a&&(a={});return a}function ai_get_cookie(a,c){var d="",b=ai_load_cookie();b.hasOwnProperty(a)&&b[a].hasOwnProperty(c)&&(d=b[a][c]);return d}
15
+ function ai_set_cookie(a,c,d){var b=ai_load_cookie();if(""===d){if(b.hasOwnProperty(a)){delete b[a][c];a:{c=b[a];for(f in c)if(c.hasOwnProperty(f)){var f=!1;break a}f=!0}f&&delete b[a]}}else b.hasOwnProperty(a)||(b[a]={}),b[a][c]=d;0===Object.keys(b).length&&b.constructor===Object?AiCookies.remove("aiBLOCKS"):AiCookies.set("aiBLOCKS",b,{expires:365,path:"/"});return b}
16
+ ai_get_cookie_text=function(a){var c=AiCookies.getJSON("aiBLOCKS");null==c&&(c={});var d="";c.hasOwnProperty("G")&&(d="G["+JSON.stringify(c.G).replace(/"/g,"").replace("{","").replace("}","")+"] ");var b="";c.hasOwnProperty(a)&&(b=JSON.stringify(c[a]).replace(/"/g,"").replace("{","").replace("}",""));return d+b};
includes/js/ai-lists.js CHANGED
@@ -835,7 +835,7 @@ jQuery (function ($) {
835
 
836
  if (!enable_block && scheduling_fallback != 0) {
837
  debug_bar.removeClass ('ai-debug-scheduling').addClass ('ai-debug-fallback');
838
- debug_bar.find ('.ai-debug-name.ai-scheduling-status').text (ai_front.fallback + '=' + scheduling_fallback);
839
 
840
  if (ai_debug) console.log ("AI SCHEDULING fallback block", scheduling_fallback);
841
  }
@@ -873,7 +873,7 @@ jQuery (function ($) {
873
  }
874
 
875
  var fallback_div = $(this).next ('.ai-fallback');
876
- fallback_div.removeClass ('ai-fallback');
877
 
878
  if (typeof $(this).data ('fallback-code') != 'undefined') {
879
  var block_code = b64d ($(this).data ('fallback-code'));
@@ -885,7 +885,7 @@ jQuery (function ($) {
885
  ai_process_element (this);
886
  } else {
887
  $(this).hide (); // .ai-list-data
888
- if (!block_wrapping_div.find ('.ai-debug-block').length) {
889
  block_wrapping_div.hide ();
890
  }
891
  }
@@ -893,15 +893,16 @@ jQuery (function ($) {
893
  var tracking_data = block_wrapping_div.attr ('data-ai');
894
  if (typeof tracking_data !== typeof undefined && tracking_data !== false) {
895
  var fallback_tracking_data = $(this).attr ('fallback-tracking');
 
896
  if (typeof fallback_tracking_data !== typeof undefined && fallback_tracking_data !== false) {
897
- block_wrapping_div.attr ('data-ai', fallback_tracking_data);
898
  }
899
  }
900
  } else {
901
  $(this).hide (); // .ai-list-data
902
- if (!block_wrapping_div.find ('.ai-debug-block').length) {
903
- block_wrapping_div.hide ();
904
- }
905
 
906
  block_wrapping_div.removeAttr ('data-ai').removeClass ('ai-track');
907
 
@@ -910,7 +911,10 @@ jQuery (function ($) {
910
  if (block_wrapping_div.hasClass ('ai-remove-position')) {
911
  block_wrapping_div.css ({"position": ""});
912
  }
913
- } else block_wrapping_div.hide ();
 
 
 
914
  }
915
  } else {
916
  block_wrapping_div.css ({"visibility": ""});
835
 
836
  if (!enable_block && scheduling_fallback != 0) {
837
  debug_bar.removeClass ('ai-debug-scheduling').addClass ('ai-debug-fallback');
838
+ debug_bar.find ('.ai-debug-name.ai-scheduling-status').text (ai_front.fallback + ' = ' + scheduling_fallback);
839
 
840
  if (ai_debug) console.log ("AI SCHEDULING fallback block", scheduling_fallback);
841
  }
873
  }
874
 
875
  var fallback_div = $(this).next ('.ai-fallback');
876
+ fallback_div.removeClass ('ai-fallback'); // Make it visible
877
 
878
  if (typeof $(this).data ('fallback-code') != 'undefined') {
879
  var block_code = b64d ($(this).data ('fallback-code'));
885
  ai_process_element (this);
886
  } else {
887
  $(this).hide (); // .ai-list-data
888
+ if (!block_wrapping_div.find ('.ai-debug-block').length && block_wrapping_div.attr ('style').indexOf ('height:') == - 1) {
889
  block_wrapping_div.hide ();
890
  }
891
  }
893
  var tracking_data = block_wrapping_div.attr ('data-ai');
894
  if (typeof tracking_data !== typeof undefined && tracking_data !== false) {
895
  var fallback_tracking_data = $(this).attr ('fallback-tracking');
896
+
897
  if (typeof fallback_tracking_data !== typeof undefined && fallback_tracking_data !== false) {
898
+ block_wrapping_div.attr ('data-ai-' + $(this).attr ('fallback_level'), fallback_tracking_data);
899
  }
900
  }
901
  } else {
902
  $(this).hide (); // .ai-list-data
903
+ // if (!block_wrapping_div.find ('.ai-debug-block').length) {
904
+ // block_wrapping_div.hide ();
905
+ // }
906
 
907
  block_wrapping_div.removeAttr ('data-ai').removeClass ('ai-track');
908
 
911
  if (block_wrapping_div.hasClass ('ai-remove-position')) {
912
  block_wrapping_div.css ({"position": ""});
913
  }
914
+ } else
915
+ if (block_wrapping_div.attr ('style').indexOf ('height:') == - 1) {
916
+ block_wrapping_div.hide ();
917
+ }
918
  }
919
  } else {
920
  block_wrapping_div.css ({"visibility": ""});
includes/js/ai-lists.min.js CHANGED
@@ -1,25 +1,25 @@
1
- var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.createTemplateTagFirstArg=function(a){return a.raw=a};$jscomp.createTemplateTagFirstArgWithRaw=function(a,n){a.raw=n;return a};$jscomp.arrayIteratorImpl=function(a){var n=0;return function(){return n<a.length?{done:!1,value:a[n++]}:{done:!0}}};$jscomp.arrayIterator=function(a){return{next:$jscomp.arrayIteratorImpl(a)}};$jscomp.makeIterator=function(a){var n="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return n?n.call(a):$jscomp.arrayIterator(a)};
2
- jQuery(function(a){function n(d){d=d.match(ba);return null!=d&&1<d.length&&"string"===typeof d[1]&&0<d[1].length?d[1].toLowerCase():null}function B(d){return d.includes(":")?(d=d.split(":"),1E3*(3600*parseInt(d[0])+60*parseInt(d[1])+parseInt(d[2]))):null}function t(d){try{var l=Date.parse(d);isNaN(l)&&(l=null)}catch(F){l=null}if(null==l&&d.includes(" ")){d=d.split(" ");try{l=Date.parse(d[0]),l+=B(d[1]),isNaN(l)&&(l=null)}catch(F){l=null}}return l}function G(){(jQuery("#ai-iab-tcf-bar").length||jQuery(".ai-list-manual").length)&&
3
- "function"==typeof __tcfapi&&"function"==typeof ai_load_blocks&&"undefined"==typeof ai_iab_tcf_callback_installed&&(__tcfapi("addEventListener",2,function(d,l){l&&"useractioncomplete"===d.eventStatus&&(ai_tcData=d,ai_load_blocks(),jQuery("#ai-iab-tcf-status").text("IAB TCF 2.0 DATA LOADED"),jQuery("#ai-iab-tcf-bar").addClass("status-ok").removeClass("status-error"))}),ai_iab_tcf_callback_installed=!0)}function u(d){d=("; "+document.cookie).split("; "+d+"=");if(2===d.length)return d.pop().split(";").shift()}
4
- function m(d){if(u(d)){var l=window.location.hostname;u(d)&&(document.cookie=d+"=;path=/"+(l?";domain="+l:"")+";expires=Thu, 01 Jan 1970 00:00:01 GMT");document.cookie=d+"=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;"}}Array.prototype.includes||(Array.prototype.includes=function(d){return!!~this.indexOf(d)});var ba=/:\/\/(.[^/:]+)/i;ai_process_lists=function(d){function l(e,c,k){if(0==e.length){if("!@!"==k)return!0;c!=k&&("true"==k.toLowerCase()?k=!0:"false"==k.toLowerCase()&&(k=!1));return c==
5
- k}if("object"!=typeof c&&"array"!=typeof c)return!1;var f=e[0];e=e.slice(1);if("*"==f)for(c=$jscomp.makeIterator(Object.entries(c)),f=c.next();!f.done;f=c.next()){if(f=$jscomp.makeIterator(f.value),f.next(),f=f.next().value,l(e,f,k))return!0}else if(f in c)return l(e,c[f],k);return!1}function F(e,c,k){if("object"!=typeof e||-1==c.indexOf("["))return!1;c=c.replace(/]| /gi,"").split("[");return l(c,e,k)}function ca(){"function"==typeof __tcfapi&&(a("#ai-iab-tcf-status").text("IAB TCF 2.0 DETECTED"),
6
- __tcfapi("getTCData",2,function(e,c){c?(a("#ai-iab-tcf-bar").addClass("status-ok"),"tcloaded"==e.eventStatus||"useractioncomplete"==e.eventStatus?(ai_tcData=e,e.gdprApplies?a("#ai-iab-tcf-status").text("IAB TCF 2.0 DATA LOADED"):jQuery("#ai-iab-tcf-status").text("IAB TCF 2.0 GDPR DOES NOT APPLY"),a("#ai-iab-tcf-bar").addClass("status-ok").removeClass("status-error"),setTimeout(function(){ai_process_lists()},10)):"cmpuishown"==e.eventStatus&&(ai_cmpuishown=!0,a("#ai-iab-tcf-status").text("IAB TCF 2.0 CMP UI SHOWN"),
7
- a("#ai-iab-tcf-bar").addClass("status-ok").removeClass("status-error"))):(a("#ai-iab-tcf-status").text("IAB TCF 2.0 __tcfapi getTCData failed"),a("#ai-iab-tcf-bar").removeClass("status-ok").addClass("status-error"))}))}function K(e){"function"==typeof __tcfapi?("undefined"==typeof ai_iab_tcf_callback_installed&&G(),"undefined"==typeof ai_tcData_requested&&(ai_tcData_requested=!0,ca(),url_parameters_need_tcData=!0)):e&&(a("#ai-iab-tcf-bar").addClass("status-error").removeClass("status-ok"),a("#ai-iab-tcf-status").text("IAB TCF 2.0 MISSING: __tcfapi function not found"))}
8
- d=null==d?a("div.ai-list-data, meta.ai-list-data"):d.filter(".ai-list-data");if(d.length){d.removeClass("ai-list-data");var J=document.cookie.split(";");J.forEach(function(e,c){J[c]=e.trim()});var V=getAllUrlParams(window.location.search);if(null!=V.referrer)var w=V.referrer;else w=document.referrer,""!=w&&(w=n(w));var R=window.navigator.userAgent,S=R.toLowerCase(),W=navigator.language,L=W.toLowerCase();if("undefined"!==typeof MobileDetect)var X=new MobileDetect(R);d.each(function(){var e=a(this).closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME"),
9
- c=!0,k=a(this).attr("referer-list");if("undefined"!=typeof k){k=b64d(k).split(",");var f=a(this).attr("referer-list-type"),C=!1;a.each(k,function(A,g){if(""==g)return!0;if("*"==g.charAt(0))if("*"==g.charAt(g.length-1)){if(g=g.substr(1,g.length-2),-1!=w.indexOf(g))return C=!0,!1}else{if(g=g.substr(1),w.substr(-g.length)==g)return C=!0,!1}else if("*"==g.charAt(g.length-1)){if(g=g.substr(0,g.length-1),0==w.indexOf(g))return C=!0,!1}else if("#"==g){if(""==w)return C=!0,!1}else if(g==w)return C=!0,!1});
10
- switch(f){case "B":C&&(c=!1);break;case "W":C||(c=!1)}}if(c&&(k=a(this).attr("client-list"),"undefined"!=typeof k&&"undefined"!==typeof X))switch(k=b64d(k).split(","),f=a(this).attr("client-list-type"),r=!1,a.each(k,function(A,g){if(""==g.trim())return!0;var M=g.split("&&");a.each(M,function(da,b){var x=!0,q=!1;b=b.trim();"!!"==b.substring(0,2)&&(x=!1,b=b.substring(2));"language:"==b.substring(0,9)&&(q=!0,b=b.substring(9).toLowerCase());var p=!1;q?"*"==b.charAt(0)?"*"==b.charAt(b.length-1)?(b=b.substr(1,
11
- b.length-2).toLowerCase(),-1!=L.indexOf(b)&&(p=!0)):(b=b.substr(1).toLowerCase(),L.substr(-b.length)==b&&(p=!0)):"*"==b.charAt(b.length-1)?(b=b.substr(0,b.length-1).toLowerCase(),0==L.indexOf(b)&&(p=!0)):b==L&&(p=!0):"*"==b.charAt(0)?"*"==b.charAt(b.length-1)?(b=b.substr(1,b.length-2).toLowerCase(),-1!=S.indexOf(b)&&(p=!0)):(b=b.substr(1).toLowerCase(),S.substr(-b.length)==b&&(p=!0)):"*"==b.charAt(b.length-1)?(b=b.substr(0,b.length-1).toLowerCase(),0==S.indexOf(b)&&(p=!0)):X.is(b)&&(p=!0);r=p?x:!x;
12
- if(!r)return!1});if(r)return!1}),f){case "B":r&&(c=!1);break;case "W":r||(c=!1)}var N=k=!1;if(c){var h=a(this).attr("parameter-list");if("undefined"!=typeof h){h=b64d(h);f=a(this).attr("parameter-list-type");h=h.replace("tcf-gdpr","tcf-v2[gdprApplies]=true");h=h.replace("tcf-no-gdpr","tcf-v2[gdprApplies]=false");h=h.replace("tcf-google","tcf-v2[vendor][consents][755]=true && tcf-v2[purpose][consents][1]=true");h=h.replace("tcf-media.net","tcf-v2[vendor][consents][142]=true && tcf-v2[purpose][consents][1]=true");
13
- h=h.replace("tcf-amazon","tcf-v2[vendor][consents][793]=true && tcf-v2[purpose][consents][1]=true");h=h.replace("tcf-ezoic","tcf-v2[vendor][consents][347]=true && tcf-v2[purpose][consents][1]=true");h=h.split(",");var Y=[];J.forEach(function(A){A=A.split("=");try{var g=JSON.parse(decodeURIComponent(A[1]))}catch(M){g=decodeURIComponent(A[1])}Y[A[0]]=g});var r=!1,O=a(this);a.each(h,function(A,g){var M=g.split("&&");a.each(M,function(da,b){var x=!0;b=b.trim();"!!"==b.substring(0,2)&&(x=!1,b=b.substring(2));
14
- var q=b,p="!@!",Z=-1!=b.indexOf("["),aa=(0==b.indexOf("tcf-v2")||0==b.indexOf("euconsent-v2"))&&-1!=b.indexOf("[");-1!=b.indexOf("=")&&(p=b.split("="),q=p[0],p=p[1],Z=-1!=q.indexOf("["),aa=(0==q.indexOf("tcf-v2")||0==q.indexOf("euconsent-v2"))&&-1!=q.indexOf("["));if(aa)a("#ai-iab-tcf-bar").show(),"object"==typeof ai_tcData?(a("#ai-iab-tcf-bar").addClass("status-ok"),q=q.replace(/]| /gi,"").split("["),q.shift(),r=(q=l(q,ai_tcData,p))?x:!x):(O.addClass("ai-list-data"),N=!0,"function"==typeof __tcfapi?
15
- K(!1):"undefined"==typeof ai_tcData_retrying&&(ai_tcData_retrying=!0,setTimeout(function(){"function"==typeof __tcfapi?K(!1):setTimeout(function(){"function"==typeof __tcfapi?K(!1):setTimeout(function(){K(!0)},3E3)},1E3)},600)));else if(Z)r=(q=F(Y,q,p))?x:!x;else{var T=!1;"!@!"==p?J.every(function(ea){return ea.split("=")[0]==b?(T=!0,!1):!0}):T=-1!=J.indexOf(b);r=T?x:!x}if(!r)return!1});if(r)return!1});r&&(N=!1);switch(f){case "B":r&&(c=!1);break;case "W":r||(c=!1)}a(this).hasClass("ai-list-manual")&&
16
- (c?(O.removeClass("ai-list-data"),O.removeClass("ai-list-manual")):(k=!0,O.addClass("ai-list-data")));if(!k&&!N&&(f=a(this).data("debug-info"),"undefined"!=typeof f&&(f=a("."+f),0!=f.length))){var v=f.parent();v.hasClass("ai-debug-info")&&v.remove()}}}v=a(this).prevAll(".ai-debug-bar.ai-debug-lists");f=""==w?"#":w;v.find(".ai-debug-name.ai-list-info").text(f).attr("title",R+"\n"+W);v.find(".ai-debug-name.ai-list-status").text(c?ai_front.visible:ai_front.hidden);f=!1;if(c){var D=a(this).attr("scheduling-start");
17
- h=a(this).attr("scheduling-end");var H=a(this).attr("scheduling-days");if("undefined"!=typeof D&&"undefined"!=typeof h&&"undefined"!=typeof H){f=!0;var y=b64d(D),P=b64d(h),U=parseInt(a(this).attr("scheduling-fallback")),Q=parseInt(a(this).attr("gmt"));y.includes("-")||P.includes("-")?(h=t(y)+Q,D=t(P)+Q):(h=B(y),D=B(P));H=b64d(H).split(",");v=a(this).attr("scheduling-type");var z=(new Date).getTime()+Q,E=new Date(z),I=E.getDay();y.includes("-")||P.includes("-")||(y=(new Date(E.getFullYear(),E.getMonth(),
18
- E.getDate())).getTime()+Q,z-=y,0>z&&(z+=864E5));0==I?I=6:I--;y=z>=h&&z<D&&H.includes(I.toString());switch(v){case "B":y=!y}y||(c=!1);E=E.toISOString().split(".")[0].replace("T"," ");v=a(this).prevAll(".ai-debug-bar.ai-debug-scheduling");v.find(".ai-debug-name.ai-scheduling-info").text(E+" "+I+" current_time:"+Math.floor(z.toString()/1E3)+" start_date:"+Math.floor(h/1E3).toString()+" ="+(z>=h).toString()+" end_date:"+Math.floor(D/1E3).toString()+" =:"+(z<D).toString()+" days:"+H.toString()+" =:"+
19
- H.includes(I.toString()).toString());v.find(".ai-debug-name.ai-scheduling-status").text(c?ai_front.visible:ai_front.hidden);c||0==U||(v.removeClass("ai-debug-scheduling").addClass("ai-debug-fallback"),v.find(".ai-debug-name.ai-scheduling-status").text(ai_front.fallback+"="+U))}}if(k||N)return!0;a(this).css({visibility:"",position:"",width:"",height:"","z-index":""});c?(e.css({visibility:""}),e.hasClass("ai-remove-position")&&e.css({position:""}),"undefined"!=typeof a(this).data("code")&&(c=b64d(a(this).data("code")),
20
- 0!=a(this).closest("head").length?(a(this).after(c),a(this).remove()):a(this).append(c),ai_process_element(this))):f&&!y&&0!=U?(e.css({visibility:""}),e.hasClass("ai-remove-position")&&e.css({position:""}),a(this).next(".ai-fallback").removeClass("ai-fallback"),"undefined"!=typeof a(this).data("fallback-code")?(c=b64d(a(this).data("fallback-code")),a(this).append(c),ai_process_element(this)):(a(this).hide(),e.find(".ai-debug-block").length||e.hide()),c=e.attr("data-ai"),"undefined"!==typeof c&&!1!==
21
- c&&(c=a(this).attr("fallback-tracking"),"undefined"!==typeof c&&!1!==c&&e.attr("data-ai",c))):(a(this).hide(),e.find(".ai-debug-block").length||e.hide(),e.removeAttr("data-ai").removeClass("ai-track"),e.find(".ai-debug-block").length?(e.css({visibility:""}).removeClass("ai-close"),e.hasClass("ai-remove-position")&&e.css({position:""})):e.hide());a(this).attr("data-code","");a(this).attr("data-fallback-code","");e.removeClass("ai-list-block")})}};a(document).ready(function(d){setTimeout(function(){ai_process_lists();
22
- setTimeout(function(){G();if("function"==typeof ai_load_blocks){var l=function(F){"cmplzEnableScripts"!=F.type&&"all"!==F.consentLevel||ai_load_blocks()};jQuery(document).on("cmplzEnableScripts",l);jQuery(document).on("cmplz_event_marketing",l)}},50);jQuery(".ai-debug-page-type").dblclick(function(){jQuery("#ai-iab-tcf-status").text("CONSENT COOKIES");jQuery("#ai-iab-tcf-bar").show()});jQuery("#ai-iab-tcf-bar").click(function(){m("euconsent-v2");m("__lxG__consent__v2");m("__lxG__consent__v2_daisybit");
23
- m("__lxG__consent__v2_gdaisybit");m("CookieLawInfoConsent");m("cookielawinfo-checkbox-advertisement");m("cookielawinfo-checkbox-analytics");m("cookielawinfo-checkbox-necessary");m("complianz_policy_id");m("complianz_consent_status");m("cmplz_marketing");m("cmplz_consent_status");m("cmplz_preferences");m("cmplz_statistics-anonymous");m("cmplz_choice");m("moove_gdpr_popup");m("real_cookie_banner-blog:1-tcf");m("real_cookie_banner-blog:1");jQuery("#ai-iab-tcf-status").text("CONSENT COOKIES DELETED")})},
24
- 5)})});function ai_process_element(a){setTimeout(function(){"function"==typeof ai_process_rotations_in_element&&ai_process_rotations_in_element(a);"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data",a));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data",a));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check",a));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks(a)},5)}
25
- function getAllUrlParams(a){var n=a?a.split("?")[1]:window.location.search.slice(1);a={};if(n){n=n.split("#")[0];n=n.split("&");for(var B=0;B<n.length;B++){var t=n[B].split("="),G=void 0,u=t[0].replace(/\[\d*\]/,function(m){G=m.slice(1,-1);return""});t="undefined"===typeof t[1]?"":t[1];u=u.toLowerCase();t=t.toLowerCase();a[u]?("string"===typeof a[u]&&(a[u]=[a[u]]),"undefined"===typeof G?a[u].push(t):a[u][G]=t):a[u]=t}}return a};
1
+ var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.createTemplateTagFirstArg=function(a){return a.raw=a};$jscomp.createTemplateTagFirstArgWithRaw=function(a,n){a.raw=n;return a};$jscomp.arrayIteratorImpl=function(a){var n=0;return function(){return n<a.length?{done:!1,value:a[n++]}:{done:!0}}};$jscomp.arrayIterator=function(a){return{next:$jscomp.arrayIteratorImpl(a)}};$jscomp.makeIterator=function(a){var n="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return n?n.call(a):$jscomp.arrayIterator(a)};
2
+ jQuery(function(a){function n(d){d=d.match(ba);return null!=d&&1<d.length&&"string"===typeof d[1]&&0<d[1].length?d[1].toLowerCase():null}function B(d){return d.includes(":")?(d=d.split(":"),1E3*(3600*parseInt(d[0])+60*parseInt(d[1])+parseInt(d[2]))):null}function t(d){try{var l=Date.parse(d);isNaN(l)&&(l=null)}catch(F){l=null}if(null==l&&d.includes(" ")){d=d.split(" ");try{l=Date.parse(d[0]),l+=B(d[1]),isNaN(l)&&(l=null)}catch(F){l=null}}return l}function G(){(jQuery("#ai-iab-tcf-bar").length||jQuery(".ai-list-manual").length)&&
3
+ "function"==typeof __tcfapi&&"function"==typeof ai_load_blocks&&"undefined"==typeof ai_iab_tcf_callback_installed&&(__tcfapi("addEventListener",2,function(d,l){l&&"useractioncomplete"===d.eventStatus&&(ai_tcData=d,ai_load_blocks(),jQuery("#ai-iab-tcf-status").text("IAB TCF 2.0 DATA LOADED"),jQuery("#ai-iab-tcf-bar").addClass("status-ok").removeClass("status-error"))}),ai_iab_tcf_callback_installed=!0)}function u(d){d=("; "+document.cookie).split("; "+d+"=");if(2===d.length)return d.pop().split(";").shift()}
4
+ function m(d){if(u(d)){var l=window.location.hostname;u(d)&&(document.cookie=d+"=;path=/"+(l?";domain="+l:"")+";expires=Thu, 01 Jan 1970 00:00:01 GMT");document.cookie=d+"=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;"}}Array.prototype.includes||(Array.prototype.includes=function(d){return!!~this.indexOf(d)});var ba=RegExp(":\\/\\/(.[^/:]+)","i");ai_process_lists=function(d){function l(e,c,k){if(0==e.length){if("!@!"==k)return!0;c!=k&&("true"==k.toLowerCase()?k=!0:"false"==k.toLowerCase()&&(k=
5
+ !1));return c==k}if("object"!=typeof c&&"array"!=typeof c)return!1;var f=e[0];e=e.slice(1);if("*"==f)for(c=$jscomp.makeIterator(Object.entries(c)),f=c.next();!f.done;f=c.next()){if(f=$jscomp.makeIterator(f.value),f.next(),f=f.next().value,l(e,f,k))return!0}else if(f in c)return l(e,c[f],k);return!1}function F(e,c,k){if("object"!=typeof e||-1==c.indexOf("["))return!1;c=c.replace(/]| /gi,"").split("[");return l(c,e,k)}function ca(){"function"==typeof __tcfapi&&(a("#ai-iab-tcf-status").text("IAB TCF 2.0 DETECTED"),
6
+ __tcfapi("getTCData",2,function(e,c){c?(a("#ai-iab-tcf-bar").addClass("status-ok"),"tcloaded"==e.eventStatus||"useractioncomplete"==e.eventStatus?(ai_tcData=e,e.gdprApplies?a("#ai-iab-tcf-status").text("IAB TCF 2.0 DATA LOADED"):jQuery("#ai-iab-tcf-status").text("IAB TCF 2.0 GDPR DOES NOT APPLY"),a("#ai-iab-tcf-bar").addClass("status-ok").removeClass("status-error"),setTimeout(function(){ai_process_lists()},10)):"cmpuishown"==e.eventStatus&&(ai_cmpuishown=!0,a("#ai-iab-tcf-status").text("IAB TCF 2.0 CMP UI SHOWN"),
7
+ a("#ai-iab-tcf-bar").addClass("status-ok").removeClass("status-error"))):(a("#ai-iab-tcf-status").text("IAB TCF 2.0 __tcfapi getTCData failed"),a("#ai-iab-tcf-bar").removeClass("status-ok").addClass("status-error"))}))}function K(e){"function"==typeof __tcfapi?("undefined"==typeof ai_iab_tcf_callback_installed&&G(),"undefined"==typeof ai_tcData_requested&&(ai_tcData_requested=!0,ca(),url_parameters_need_tcData=!0)):e&&(a("#ai-iab-tcf-bar").addClass("status-error").removeClass("status-ok"),a("#ai-iab-tcf-status").text("IAB TCF 2.0 MISSING: __tcfapi function not found"))}
8
+ d=null==d?a("div.ai-list-data, meta.ai-list-data"):d.filter(".ai-list-data");if(d.length){d.removeClass("ai-list-data");var J=document.cookie.split(";");J.forEach(function(e,c){J[c]=e.trim()});var V=getAllUrlParams(window.location.search);if(null!=V.referrer)var w=V.referrer;else w=document.referrer,""!=w&&(w=n(w));var R=window.navigator.userAgent,S=R.toLowerCase(),W=navigator.language,L=W.toLowerCase();if("undefined"!==typeof MobileDetect)var X=new MobileDetect(R);d.each(function(){var e=a(this).closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME"),
9
+ c=!0,k=a(this).attr("referer-list");if("undefined"!=typeof k){k=b64d(k).split(",");var f=a(this).attr("referer-list-type"),C=!1;a.each(k,function(A,g){if(""==g)return!0;if("*"==g.charAt(0))if("*"==g.charAt(g.length-1)){if(g=g.substr(1,g.length-2),-1!=w.indexOf(g))return C=!0,!1}else{if(g=g.substr(1),w.substr(-g.length)==g)return C=!0,!1}else if("*"==g.charAt(g.length-1)){if(g=g.substr(0,g.length-1),0==w.indexOf(g))return C=!0,!1}else if("#"==g){if(""==w)return C=!0,!1}else if(g==w)return C=!0,!1});
10
+ switch(f){case "B":C&&(c=!1);break;case "W":C||(c=!1)}}if(c&&(k=a(this).attr("client-list"),"undefined"!=typeof k&&"undefined"!==typeof X))switch(k=b64d(k).split(","),f=a(this).attr("client-list-type"),r=!1,a.each(k,function(A,g){if(""==g.trim())return!0;var M=g.split("&&");a.each(M,function(da,b){var x=!0,q=!1;b=b.trim();"!!"==b.substring(0,2)&&(x=!1,b=b.substring(2));"language:"==b.substring(0,9)&&(q=!0,b=b.substring(9).toLowerCase());var p=!1;q?"*"==b.charAt(0)?"*"==b.charAt(b.length-1)?(b=b.substr(1,
11
+ b.length-2).toLowerCase(),-1!=L.indexOf(b)&&(p=!0)):(b=b.substr(1).toLowerCase(),L.substr(-b.length)==b&&(p=!0)):"*"==b.charAt(b.length-1)?(b=b.substr(0,b.length-1).toLowerCase(),0==L.indexOf(b)&&(p=!0)):b==L&&(p=!0):"*"==b.charAt(0)?"*"==b.charAt(b.length-1)?(b=b.substr(1,b.length-2).toLowerCase(),-1!=S.indexOf(b)&&(p=!0)):(b=b.substr(1).toLowerCase(),S.substr(-b.length)==b&&(p=!0)):"*"==b.charAt(b.length-1)?(b=b.substr(0,b.length-1).toLowerCase(),0==S.indexOf(b)&&(p=!0)):X.is(b)&&(p=!0);r=p?x:!x;
12
+ if(!r)return!1});if(r)return!1}),f){case "B":r&&(c=!1);break;case "W":r||(c=!1)}var N=k=!1;if(c){var h=a(this).attr("parameter-list");if("undefined"!=typeof h){h=b64d(h);f=a(this).attr("parameter-list-type");h=h.replace("tcf-gdpr","tcf-v2[gdprApplies]=true");h=h.replace("tcf-no-gdpr","tcf-v2[gdprApplies]=false");h=h.replace("tcf-google","tcf-v2[vendor][consents][755]=true && tcf-v2[purpose][consents][1]=true");h=h.replace("tcf-media.net","tcf-v2[vendor][consents][142]=true && tcf-v2[purpose][consents][1]=true");
13
+ h=h.replace("tcf-amazon","tcf-v2[vendor][consents][793]=true && tcf-v2[purpose][consents][1]=true");h=h.replace("tcf-ezoic","tcf-v2[vendor][consents][347]=true && tcf-v2[purpose][consents][1]=true");h=h.split(",");var Y=[];J.forEach(function(A){A=A.split("=");try{var g=JSON.parse(decodeURIComponent(A[1]))}catch(M){g=decodeURIComponent(A[1])}Y[A[0]]=g});var r=!1,O=a(this);a.each(h,function(A,g){var M=g.split("&&");a.each(M,function(da,b){var x=!0;b=b.trim();"!!"==b.substring(0,2)&&(x=!1,b=b.substring(2));
14
+ var q=b,p="!@!",Z=-1!=b.indexOf("["),aa=(0==b.indexOf("tcf-v2")||0==b.indexOf("euconsent-v2"))&&-1!=b.indexOf("[");-1!=b.indexOf("=")&&(p=b.split("="),q=p[0],p=p[1],Z=-1!=q.indexOf("["),aa=(0==q.indexOf("tcf-v2")||0==q.indexOf("euconsent-v2"))&&-1!=q.indexOf("["));if(aa)a("#ai-iab-tcf-bar").show(),"object"==typeof ai_tcData?(a("#ai-iab-tcf-bar").addClass("status-ok"),q=q.replace(/]| /gi,"").split("["),q.shift(),r=(q=l(q,ai_tcData,p))?x:!x):(O.addClass("ai-list-data"),N=!0,"function"==typeof __tcfapi?
15
+ K(!1):"undefined"==typeof ai_tcData_retrying&&(ai_tcData_retrying=!0,setTimeout(function(){"function"==typeof __tcfapi?K(!1):setTimeout(function(){"function"==typeof __tcfapi?K(!1):setTimeout(function(){K(!0)},3E3)},1E3)},600)));else if(Z)r=(q=F(Y,q,p))?x:!x;else{var T=!1;"!@!"==p?J.every(function(ea){return ea.split("=")[0]==b?(T=!0,!1):!0}):T=-1!=J.indexOf(b);r=T?x:!x}if(!r)return!1});if(r)return!1});r&&(N=!1);switch(f){case "B":r&&(c=!1);break;case "W":r||(c=!1)}a(this).hasClass("ai-list-manual")&&
16
+ (c?(O.removeClass("ai-list-data"),O.removeClass("ai-list-manual")):(k=!0,O.addClass("ai-list-data")));if(!k&&!N&&(f=a(this).data("debug-info"),"undefined"!=typeof f&&(f=a("."+f),0!=f.length))){var v=f.parent();v.hasClass("ai-debug-info")&&v.remove()}}}v=a(this).prevAll(".ai-debug-bar.ai-debug-lists");f=""==w?"#":w;v.find(".ai-debug-name.ai-list-info").text(f).attr("title",R+"\n"+W);v.find(".ai-debug-name.ai-list-status").text(c?ai_front.visible:ai_front.hidden);f=!1;if(c){var D=a(this).attr("scheduling-start");
17
+ h=a(this).attr("scheduling-end");var H=a(this).attr("scheduling-days");if("undefined"!=typeof D&&"undefined"!=typeof h&&"undefined"!=typeof H){f=!0;var y=b64d(D),P=b64d(h),U=parseInt(a(this).attr("scheduling-fallback")),Q=parseInt(a(this).attr("gmt"));y.includes("-")||P.includes("-")?(h=t(y)+Q,D=t(P)+Q):(h=B(y),D=B(P));H=b64d(H).split(",");v=a(this).attr("scheduling-type");var z=(new Date).getTime()+Q,E=new Date(z),I=E.getDay();y.includes("-")||P.includes("-")||(y=(new Date(E.getFullYear(),E.getMonth(),
18
+ E.getDate())).getTime()+Q,z-=y,0>z&&(z+=864E5));0==I?I=6:I--;y=z>=h&&z<D&&H.includes(I.toString());switch(v){case "B":y=!y}y||(c=!1);E=E.toISOString().split(".")[0].replace("T"," ");v=a(this).prevAll(".ai-debug-bar.ai-debug-scheduling");v.find(".ai-debug-name.ai-scheduling-info").text(E+" "+I+" current_time:"+Math.floor(z.toString()/1E3)+" start_date:"+Math.floor(h/1E3).toString()+" ="+(z>=h).toString()+" end_date:"+Math.floor(D/1E3).toString()+" =:"+(z<D).toString()+" days:"+H.toString()+" =:"+
19
+ H.includes(I.toString()).toString());v.find(".ai-debug-name.ai-scheduling-status").text(c?ai_front.visible:ai_front.hidden);c||0==U||(v.removeClass("ai-debug-scheduling").addClass("ai-debug-fallback"),v.find(".ai-debug-name.ai-scheduling-status").text(ai_front.fallback+" = "+U))}}if(k||N)return!0;a(this).css({visibility:"",position:"",width:"",height:"","z-index":""});c?(e.css({visibility:""}),e.hasClass("ai-remove-position")&&e.css({position:""}),"undefined"!=typeof a(this).data("code")&&(c=b64d(a(this).data("code")),
20
+ 0!=a(this).closest("head").length?(a(this).after(c),a(this).remove()):a(this).append(c),ai_process_element(this))):f&&!y&&0!=U?(e.css({visibility:""}),e.hasClass("ai-remove-position")&&e.css({position:""}),a(this).next(".ai-fallback").removeClass("ai-fallback"),"undefined"!=typeof a(this).data("fallback-code")?(c=b64d(a(this).data("fallback-code")),a(this).append(c),ai_process_element(this)):(a(this).hide(),e.find(".ai-debug-block").length||-1!=e.attr("style").indexOf("height:")||e.hide()),c=e.attr("data-ai"),
21
+ "undefined"!==typeof c&&!1!==c&&(c=a(this).attr("fallback-tracking"),"undefined"!==typeof c&&!1!==c&&e.attr("data-ai-"+a(this).attr("fallback_level"),c))):(a(this).hide(),e.removeAttr("data-ai").removeClass("ai-track"),e.find(".ai-debug-block").length?(e.css({visibility:""}).removeClass("ai-close"),e.hasClass("ai-remove-position")&&e.css({position:""})):-1==e.attr("style").indexOf("height:")&&e.hide());a(this).attr("data-code","");a(this).attr("data-fallback-code","");e.removeClass("ai-list-block")})}};
22
+ a(document).ready(function(d){setTimeout(function(){ai_process_lists();setTimeout(function(){G();if("function"==typeof ai_load_blocks){var l=function(F){"cmplzEnableScripts"!=F.type&&"all"!==F.consentLevel||ai_load_blocks()};jQuery(document).on("cmplzEnableScripts",l);jQuery(document).on("cmplz_event_marketing",l)}},50);jQuery(".ai-debug-page-type").dblclick(function(){jQuery("#ai-iab-tcf-status").text("CONSENT COOKIES");jQuery("#ai-iab-tcf-bar").show()});jQuery("#ai-iab-tcf-bar").click(function(){m("euconsent-v2");
23
+ m("__lxG__consent__v2");m("__lxG__consent__v2_daisybit");m("__lxG__consent__v2_gdaisybit");m("CookieLawInfoConsent");m("cookielawinfo-checkbox-advertisement");m("cookielawinfo-checkbox-analytics");m("cookielawinfo-checkbox-necessary");m("complianz_policy_id");m("complianz_consent_status");m("cmplz_marketing");m("cmplz_consent_status");m("cmplz_preferences");m("cmplz_statistics-anonymous");m("cmplz_choice");m("moove_gdpr_popup");m("real_cookie_banner-blog:1-tcf");m("real_cookie_banner-blog:1");jQuery("#ai-iab-tcf-status").text("CONSENT COOKIES DELETED")})},
24
+ 5)})});function ai_process_element(a){setTimeout(function(){"function"==typeof ai_process_rotations_in_element&&ai_process_rotations_in_element(a);"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data",a));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data",a));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check",a));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks(a)},5)}
25
+ function getAllUrlParams(a){var n=a?a.split("?")[1]:window.location.search.slice(1);a={};if(n){n=n.split("#")[0];n=n.split("&");for(var B=0;B<n.length;B++){var t=n[B].split("="),G=void 0,u=t[0].replace(/\[\d*\]/,function(m){G=m.slice(1,-1);return""});t="undefined"===typeof t[1]?"":t[1];u=u.toLowerCase();t=t.toLowerCase();a[u]?("string"===typeof a[u]&&(a[u]=[a[u]]),"undefined"===typeof G?a[u].push(t):a[u][G]=t):a[u]=t}}return a};
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.7.4"
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
1
+ var javascript_version = "2.7.5"
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
js/ad-inserter.min.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version="2.7.4",ignore_key=!0,start=1,end=16,active_tab=1,active_tab_0=0,tabs_to_configure=[],debug=!1,debug_title=!1,save_enabled=!0,current_tab=0,next_tab=0,syntax_highlighting=!1,settings_page="",dateFormat="yy-mm-dd",timeFormat="H:i:s",list_search_reload=!1,website_list_search_reload=!1,AI_DISABLED=0,AI_BEFORE_POST=1,AI_AFTER_POST=2,AI_BEFORE_CONTENT=3,AI_AFTER_CONTENT=4,AI_BEFORE_PARAGRAPH=5,AI_AFTER_PARAGRAPH=6,AI_BEFORE_EXCERPT=7,AI_AFTER_EXCERPT=8,AI_BETWEEN_POSTS=9,AI_BEFORE_COMMENTS=
2
  10,AI_BETWEEN_COMMENTS=11,AI_AFTER_COMMENTS=12,AI_FOOTER=13,AI_ABOVE_HEADER=14,AI_BEFORE_HTML_ELEMENT=15,AI_AFTER_HTML_ELEMENT=16,AI_INSIDE_HTML_ELEMENT=17,AI_BEFORE_IMAGE=18,AI_AFTER_IMAGE=19,AI_ALIGNMENT_DEFAULT=0,AI_ALIGNMENT_LEFT=1,AI_ALIGNMENT_RIGHT=2,AI_ALIGNMENT_CENTER=3,AI_ALIGNMENT_FLOAT_LEFT=4,AI_ALIGNMENT_FLOAT_RIGHT=5,AI_ALIGNMENT_NO_WRAPPING=6,AI_ALIGNMENT_CUSTOM_CSS=7,AI_ALIGNMENT_STICKY_LEFT=8,AI_ALIGNMENT_STICKY_RIGHT=9,AI_ALIGNMENT_STICKY_TOP=10,AI_ALIGNMENT_STICKY_BOTTOM=11,AI_ALIGNMENT_STICKY=
3
  12,AI_ADB_ACTION_NONE=0,AI_ADB_ACTION_MESSAGE=1,AI_ADB_ACTION_REDIRECTION=2,AI_ADB_BLOCK_ACTION_DO_NOTHING=0,AI_ADB_BLOCK_ACTION_REPLACE=1,AI_ADB_BLOCK_ACTION_SHOW=2,AI_ADB_BLOCK_ACTION_HIDE=3,AI_CODE_UNKNOWN=100,AI_CODE_BANNER=0,AI_CODE_ADSENSE=1,AI_CODE_AMAZON=2,AI_ADSENSE_STANDARD=0,AI_ADSENSE_LINK=1,AI_ADSENSE_IN_ARTICLE=2,AI_ADSENSE_IN_FEED=3,AI_ADSENSE_MATCHED_CONTENT=4,AI_ADSENSE_SIZE_FIXED=0,AI_ADSENSE_SIZE_RESPONSIVE=1,AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT=2,AI_HTML_INSERTION_CLIENT_SIDE=0,AI_HTML_INSERTION_SEREVR_SIDE=
4
  2,AI_STICK_TO_THE_LEFT=0,AI_STICK_TO_THE_CONTENT_LEFT=1,AI_STICK_HORIZONTAL_CENTER=2,AI_STICK_TO_THE_CONTENT_RIGHT=3,AI_STICK_TO_THE_RIGHT=4,AI_STICK_TO_THE_TOP=0,AI_STICK_VERTICAL_CENTER=1,AI_SCROLL_WITH_THE_CONTENT=2,AI_STICK_TO_THE_BOTTOM=3,AI_ANIMATION_NONE=0,AI_BACKGROUND_REPEAT_DEFAULT=0,AI_BACKGROUND_REPEAT_NO=1,AI_BACKGROUND_REPEAT_YES=2,AI_BACKGROUND_REPEAT_HORIZONTALY=3,AI_BACKGROUND_REPEAT_VERTICALLY=4,AI_BACKGROUND_REPEAT_SPACE=5,AI_BACKGROUND_REPEAT_ROUND=6,AI_BACKGROUND_SIZE_DEFAULT=
1
+ var javascript_version="2.7.5",ignore_key=!0,start=1,end=16,active_tab=1,active_tab_0=0,tabs_to_configure=[],debug=!1,debug_title=!1,save_enabled=!0,current_tab=0,next_tab=0,syntax_highlighting=!1,settings_page="",dateFormat="yy-mm-dd",timeFormat="H:i:s",list_search_reload=!1,website_list_search_reload=!1,AI_DISABLED=0,AI_BEFORE_POST=1,AI_AFTER_POST=2,AI_BEFORE_CONTENT=3,AI_AFTER_CONTENT=4,AI_BEFORE_PARAGRAPH=5,AI_AFTER_PARAGRAPH=6,AI_BEFORE_EXCERPT=7,AI_AFTER_EXCERPT=8,AI_BETWEEN_POSTS=9,AI_BEFORE_COMMENTS=
2
  10,AI_BETWEEN_COMMENTS=11,AI_AFTER_COMMENTS=12,AI_FOOTER=13,AI_ABOVE_HEADER=14,AI_BEFORE_HTML_ELEMENT=15,AI_AFTER_HTML_ELEMENT=16,AI_INSIDE_HTML_ELEMENT=17,AI_BEFORE_IMAGE=18,AI_AFTER_IMAGE=19,AI_ALIGNMENT_DEFAULT=0,AI_ALIGNMENT_LEFT=1,AI_ALIGNMENT_RIGHT=2,AI_ALIGNMENT_CENTER=3,AI_ALIGNMENT_FLOAT_LEFT=4,AI_ALIGNMENT_FLOAT_RIGHT=5,AI_ALIGNMENT_NO_WRAPPING=6,AI_ALIGNMENT_CUSTOM_CSS=7,AI_ALIGNMENT_STICKY_LEFT=8,AI_ALIGNMENT_STICKY_RIGHT=9,AI_ALIGNMENT_STICKY_TOP=10,AI_ALIGNMENT_STICKY_BOTTOM=11,AI_ALIGNMENT_STICKY=
3
  12,AI_ADB_ACTION_NONE=0,AI_ADB_ACTION_MESSAGE=1,AI_ADB_ACTION_REDIRECTION=2,AI_ADB_BLOCK_ACTION_DO_NOTHING=0,AI_ADB_BLOCK_ACTION_REPLACE=1,AI_ADB_BLOCK_ACTION_SHOW=2,AI_ADB_BLOCK_ACTION_HIDE=3,AI_CODE_UNKNOWN=100,AI_CODE_BANNER=0,AI_CODE_ADSENSE=1,AI_CODE_AMAZON=2,AI_ADSENSE_STANDARD=0,AI_ADSENSE_LINK=1,AI_ADSENSE_IN_ARTICLE=2,AI_ADSENSE_IN_FEED=3,AI_ADSENSE_MATCHED_CONTENT=4,AI_ADSENSE_SIZE_FIXED=0,AI_ADSENSE_SIZE_RESPONSIVE=1,AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT=2,AI_HTML_INSERTION_CLIENT_SIDE=0,AI_HTML_INSERTION_SEREVR_SIDE=
4
  2,AI_STICK_TO_THE_LEFT=0,AI_STICK_TO_THE_CONTENT_LEFT=1,AI_STICK_HORIZONTAL_CENTER=2,AI_STICK_TO_THE_CONTENT_RIGHT=3,AI_STICK_TO_THE_RIGHT=4,AI_STICK_TO_THE_TOP=0,AI_STICK_VERTICAL_CENTER=1,AI_SCROLL_WITH_THE_CONTENT=2,AI_STICK_TO_THE_BOTTOM=3,AI_ANIMATION_NONE=0,AI_BACKGROUND_REPEAT_DEFAULT=0,AI_BACKGROUND_REPEAT_NO=1,AI_BACKGROUND_REPEAT_YES=2,AI_BACKGROUND_REPEAT_HORIZONTALY=3,AI_BACKGROUND_REPEAT_VERTICALLY=4,AI_BACKGROUND_REPEAT_SPACE=5,AI_BACKGROUND_REPEAT_ROUND=6,AI_BACKGROUND_SIZE_DEFAULT=
languages/ad-inserter-it_IT.mo CHANGED
Binary file
languages/ad-inserter-it_IT.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.6.18\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
  "POT-Creation-Date: 2020-12-04 11:30:45+00:00\n"
8
- "PO-Revision-Date: 2020-12-04 15:50+0100\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: Angelo Giammarresi - info@wocmultimedia.com\n"
11
  "Language: it_IT\n"
@@ -5124,7 +5124,7 @@ msgid ""
5124
  "Auto ads, %s %s AMP ads %s"
5125
  msgstr ""
5126
  "%s Nuovo su %s AdSense? %s %s %s Collega il tuo sito %s - %s annunci In-"
5127
- "feed, %s %s annunci automatici, %s %s annunci AMP %"
5128
 
5129
  #. translators: %s: HTML tags
5130
  #: settings.php:5203
5
  "Project-Id-Version: Ad Inserter 2.6.18\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
  "POT-Creation-Date: 2020-12-04 11:30:45+00:00\n"
8
+ "PO-Revision-Date: 2021-09-25 17:35+0200\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: Angelo Giammarresi - info@wocmultimedia.com\n"
11
  "Language: it_IT\n"
5124
  "Auto ads, %s %s AMP ads %s"
5125
  msgstr ""
5126
  "%s Nuovo su %s AdSense? %s %s %s Collega il tuo sito %s - %s annunci In-"
5127
+ "feed, %s %s annunci automatici, %s %s annunci AMP %s"
5128
 
5129
  #. translators: %s: HTML tags
5130
  #: settings.php:5203
languages/ad-inserter-sl_SI.mo CHANGED
Binary file
languages/ad-inserter-sl_SI.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2021-07-28 12:19:00+00:00\n"
8
- "PO-Revision-Date: 2021-07-28 14:22+0200\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
@@ -16,134 +16,134 @@ msgstr ""
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
- #: ad-inserter.php:266
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:282
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:289
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:375
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:382
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:391
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:398
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:409
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
- #: ad-inserter.php:416
60
  msgctxt "Menu item"
61
  msgid "Show Log"
62
  msgstr "Pokaži beležko"
63
 
64
  #. translators: Debugging position name Before HTML element
65
- #: ad-inserter.php:1086
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
- #: ad-inserter.php:1091
71
  msgid "After"
72
  msgstr "Za"
73
 
74
  #. translators: Debugging position name Prepend content of HTML element (before
75
  #. the content of the HTML element)
76
- #: ad-inserter.php:1096 strings.php:104
77
  msgid "Prepend content"
78
  msgstr "Dodaj pred vsebino"
79
 
80
  #. translators: Debugging position name Append content of HTML element (after
81
  #. the content of the HTML element)
82
- #: ad-inserter.php:1101 strings.php:105
83
  msgid "Append content"
84
  msgstr "Dodaj za vsebino"
85
 
86
  #. translators: Debugging position name Replace content of HTML element
87
- #: ad-inserter.php:1106 strings.php:106
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
- #: ad-inserter.php:1111 strings.php:169
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
- #: ad-inserter.php:1158
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
- #: ad-inserter.php:1162
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
- #: ad-inserter.php:1460
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
- #: ad-inserter.php:1814 ad-inserter.php:3133
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
- #: ad-inserter.php:2474
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
- #: ad-inserter.php:2474
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
- #: ad-inserter.php:2475
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
- #: ad-inserter.php:2476
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
- #: ad-inserter.php:2477
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
- #: ad-inserter.php:2478
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
- #: ad-inserter.php:2479
142
  msgid "AD BLOCKING DETECTED - NO ACTION"
143
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
144
 
145
  #. Translators: 1: number of blocks, 2: Ad Inserter
146
- #: ad-inserter.php:2828
147
  msgid "Hey, you are now using %1$s %2$s block."
148
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
149
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
@@ -151,24 +151,24 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
151
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
152
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
153
 
154
- #: ad-inserter.php:2831
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
- #: ad-inserter.php:2835
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
- #: ad-inserter.php:2840
164
  msgid "Hey, you are using %s and I hope you're happy with it."
165
  msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
166
 
167
- #: ad-inserter.php:2843
168
  msgid "OK, but please help me with the settings first"
169
  msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
170
 
171
- #: ad-inserter.php:2856
172
  msgid ""
173
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
174
  "like saying 'Thank you'. Somebody will be happy."
@@ -176,7 +176,7 @@ msgstr ""
176
  "Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
177
  "je kot bi rekli 'Hvala'. Nekdo bo vsesel."
178
 
179
- #: ad-inserter.php:2858
180
  msgid ""
181
  "Positive reviews are a great incentive to fix bugs and to add new features "
182
  "for better monetization of your website."
@@ -184,28 +184,28 @@ msgstr ""
184
  "Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
185
  "funkcij za boljšo monetizacijo vašega spletnega mesta."
186
 
187
- #: ad-inserter.php:2864
188
  msgid "Sure"
189
  msgstr "Seveda"
190
 
191
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
192
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
193
- #: ad-inserter.php:2881 ad-inserter.php:2916
194
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
195
  msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
196
 
197
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
198
- #: ad-inserter.php:2888
199
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
200
  msgstr ""
201
  "Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
202
 
203
- #: ad-inserter.php:2898
204
  msgctxt "Menu item"
205
  msgid "Settings"
206
  msgstr "Nastavitve"
207
 
208
- #: ad-inserter.php:2930
209
  msgid ""
210
  "Load settings page in safe mode to avoid collisions with other plugins or "
211
  "theme"
@@ -213,79 +213,79 @@ msgstr ""
213
  "Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
214
  "drugimi vtičniki ali temo"
215
 
216
- #: ad-inserter.php:2930
217
  msgid "Safe mode"
218
  msgstr "Varni način"
219
 
220
  #. translators: %s: Ad Inserter
221
- #: ad-inserter.php:3025
222
  msgctxt "Meta box name"
223
  msgid "%s Individual Exceptions"
224
  msgstr "Posamezne Izjeme za %s"
225
 
226
- #: ad-inserter.php:3054 ad-inserter.php:11345 class.php:2454
227
  #: includes/preview.php:2343 includes/preview.php:2388
228
- #: includes/preview.php:2425 settings.php:4429 strings.php:3
229
  msgid "Block"
230
  msgstr "Blok"
231
 
232
- #: ad-inserter.php:3055 includes/functions.php:4486 settings.php:4430
233
- #: settings.php:4515
234
  msgid "Name"
235
  msgstr "Ime"
236
 
237
- #: ad-inserter.php:3058 settings.php:1233
238
  msgid "Default insertion"
239
  msgstr "Privzeto vstavljanje"
240
 
241
  #. translators: For this post or page
242
- #: ad-inserter.php:3061
243
  msgctxt "Page"
244
  msgid "For this"
245
  msgstr "Za to"
246
 
247
- #: ad-inserter.php:3062
248
  msgctxt "Post"
249
  msgid "For this"
250
  msgstr "Za ta"
251
 
252
- #: ad-inserter.php:3074
253
  msgctxt "Enabled/disabled on all"
254
  msgid "pages"
255
  msgstr "straneh"
256
 
257
- #: ad-inserter.php:3077
258
  msgctxt "Enabled/disabled on all"
259
  msgid "posts"
260
  msgstr "prispevkih"
261
 
262
- #: ad-inserter.php:3094 ad-inserter.php:3106 strings.php:175
263
  msgid "Enabled"
264
  msgstr "Omogočeno"
265
 
266
  #. translators: Menu items
267
- #: ad-inserter.php:3094 ad-inserter.php:3106
268
- #: includes/functions-check-now.php:2402 includes/functions.php:2857
269
- #: strings.php:16
270
  msgid "Disabled"
271
  msgstr "Onemogočeno"
272
 
273
- #: ad-inserter.php:3096
274
  msgid "No individual exceptions"
275
  msgstr "Ni posameznih izjem"
276
 
277
  #. translators: Not enabled for pages or posts
278
- #: ad-inserter.php:3098
279
  msgid "Not enabled for"
280
  msgstr "Ni omogočeno za"
281
 
282
  #. translators: No individual exceptions enabled for pages or posts
283
- #: ad-inserter.php:3126
284
  msgid "No block has individual exceptions enabled"
285
  msgstr "Noben blok nima omogočenih posameznih izjem"
286
 
287
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
288
- #: ad-inserter.php:3131
289
  msgid ""
290
  "Default insertion can be configured for each block on %1$s page - button "
291
  "next to %2$s checkbox."
@@ -293,11 +293,11 @@ msgstr ""
293
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
294
  "poleg kljukice za vklop %2$s."
295
 
296
- #: ad-inserter.php:3134 settings.php:1211
297
  msgid "Tag / Archive pages"
298
  msgstr "Strani oznak / arhiva"
299
 
300
- #: ad-inserter.php:3136
301
  msgid ""
302
  "When individual exceptions for a block are enabled, a checkbox will be "
303
  "listed here to change default insertion for this post or page."
@@ -305,7 +305,7 @@ msgstr ""
305
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
306
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
307
 
308
- #: ad-inserter.php:3137
309
  msgid ""
310
  "This way you can individually enable or disable blocks on specific posts or "
311
  "pages."
@@ -313,61 +313,61 @@ msgstr ""
313
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
314
  "prispevku ali strani."
315
 
316
- #: ad-inserter.php:3139
317
  msgid "For more information check page %s"
318
  msgstr "Za več informacij poglejte stran %s"
319
 
320
  #. translators: Ad Inserter Exceptions documentation page
321
- #: ad-inserter.php:3141
322
  msgid "Individual Exceptions"
323
  msgstr "Posamezne Izjeme"
324
 
325
- #: ad-inserter.php:3188
326
  msgid "STATIC PAGE"
327
  msgstr "STATIČNA STRAN"
328
 
329
- #: ad-inserter.php:3191
330
  msgid "POST"
331
  msgstr "PRISPEVEK"
332
 
333
- #: ad-inserter.php:3194
334
  msgid "HOMEPAGE"
335
  msgstr "DOMAČA STRAN"
336
 
337
- #: ad-inserter.php:3197
338
  msgid "CATEGORY PAGE"
339
  msgstr "STRAN KATEGORIJE"
340
 
341
- #: ad-inserter.php:3200
342
  msgid "SEARCH PAGE"
343
  msgstr "STRAN ISKANJE"
344
 
345
- #: ad-inserter.php:3203
346
  msgid "ARCHIVE PAGE"
347
  msgstr "STRAN ARHIVA"
348
 
349
- #: ad-inserter.php:3206
350
  msgid "ERROR 404 PAGE"
351
  msgstr "STRAN NAPAKA 404"
352
 
353
- #: ad-inserter.php:3209
354
  msgid "AJAX CALL"
355
  msgstr "AJAX KLIC"
356
 
357
- #: ad-inserter.php:3212
358
  msgid "UNKNOWN PAGE TYPE"
359
  msgstr "NEZNAN TIP STRANI"
360
 
361
- #: ad-inserter.php:3229
362
  msgid "Click to delete ad blocking detection cokies"
363
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
364
 
365
- #: ad-inserter.php:3230
366
  msgid "AD BLOCKING STATUS UNKNOWN"
367
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
368
 
369
  #. translators: %s: AdSense Auto Ads
370
- #: ad-inserter.php:3259
371
  msgid ""
372
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
373
  "positions"
@@ -375,11 +375,11 @@ msgstr ""
375
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
376
  "položaje"
377
 
378
- #: ad-inserter.php:3397
379
  msgid "Code for insertion"
380
  msgstr "Koda za vstavljanje"
381
 
382
- #: ad-inserter.php:3397
383
  msgid "character"
384
  msgid_plural "characters"
385
  msgstr[0] "znak"
@@ -387,16 +387,16 @@ msgstr[1] "znaka"
387
  msgstr[2] "znaki"
388
  msgstr[3] "znakov"
389
 
390
- #: ad-inserter.php:3413
391
  msgid "Header code"
392
  msgstr "Koda v glavi"
393
 
394
- #: ad-inserter.php:3413
395
  msgctxt "Header code"
396
  msgid "DISABLED"
397
  msgstr "ONEMOGOČENA"
398
 
399
- #: ad-inserter.php:3413 ad-inserter.php:3669
400
  msgid "character inserted"
401
  msgid_plural "characters inserted"
402
  msgstr[0] "znak vstavljen"
@@ -404,48 +404,48 @@ msgstr[1] "znaka vstavljena"
404
  msgstr[2] "znaki vstavljeni"
405
  msgstr[3] "znakov vstavljenih"
406
 
407
- #: ad-inserter.php:3431
408
- msgid "Click to delete the cokie for the consents"
409
  msgstr "Klikni za brisanje piškotka za soglasja"
410
 
411
- #: ad-inserter.php:3669
412
  msgid "Footer code"
413
  msgstr "Koda v nogi"
414
 
415
- #: ad-inserter.php:3669
416
  msgctxt "Footer code"
417
  msgid "DISABLED"
418
  msgstr "ONEMOGOČENA"
419
 
420
- #: ad-inserter.php:3680
421
  msgid "JAVASCRIPT NOT WORKING"
422
  msgstr "JAVASCRIPT NE DELA"
423
 
424
- #: ad-inserter.php:3680
425
  msgid "NO JAVASCRIPT ERRORS"
426
  msgstr "BREZ JAVASCRIPT NAPAK"
427
 
428
- #: ad-inserter.php:3680
429
  msgid "JAVASCRIPT ERRORS"
430
  msgstr "JAVASCRIPT NAPAKE"
431
 
432
  #. translators: block name (block with default settings)
433
- #: ad-inserter.php:6485
434
  msgctxt "Block name"
435
  msgid "Default"
436
  msgstr "Privzeti"
437
 
438
  #. translators: %s: Ad Inserter
439
- #: ad-inserter.php:6929 ad-inserter.php:7244
440
  msgid "Invalid data received - %s settings not saved."
441
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
442
 
443
  #. translators: %s: Ad Inserter
444
- #: ad-inserter.php:7214
445
  msgid "Error importing %s settings."
446
  msgstr "Napaka pri uvozu %s nastavitev."
447
 
448
- #: ad-inserter.php:7215
449
  msgid "Error importing settings for block"
450
  msgid_plural "Error importing settings for blocks:"
451
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -453,16 +453,16 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
453
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
454
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
455
 
456
- #: ad-inserter.php:7242
457
  msgid "Settings saved."
458
  msgstr "Nastavitve shranjene."
459
 
460
- #: ad-inserter.php:7264
461
  msgid "Settings cleared."
462
  msgstr "Nastavitve ponastavljene."
463
 
464
  #. Translators: Post/Static page must have between X and Y words
465
- #: ad-inserter.php:7640 ad-inserter.php:7642 ad-inserter.php:7665
466
  #: settings.php:2240
467
  msgid "word"
468
  msgid_plural "words"
@@ -471,43 +471,43 @@ msgstr[1] "besedi"
471
  msgstr[2] "besede"
472
  msgstr[3] "besed"
473
 
474
- #: ad-inserter.php:7679 ad-inserter.php:7806
475
  msgid "HTML TAGS REMOVED"
476
  msgstr "HTML ZNAČKE ODSTRANJENE"
477
 
478
- #: ad-inserter.php:7885
479
  msgid "BEFORE COMMENTS"
480
  msgstr "PRED KOMENTARJI"
481
 
482
- #: ad-inserter.php:8010
483
  msgid "AFTER COMMENTS"
484
  msgstr "PO KOMETARJIH"
485
 
486
- #: ad-inserter.php:8087
487
  msgid "BETWEEN COMMENTS"
488
  msgstr "MED KOMENTARJI"
489
 
490
- #: ad-inserter.php:10623 ad-inserter.php:10712
491
  msgctxt "category name"
492
  msgid "Uncategorized"
493
  msgstr "Nekategorizirano"
494
 
495
- #: ad-inserter.php:10943
496
  msgid "requires WordPress 4.6 or newer"
497
  msgstr "potrebuje WordPress 4.6 ali novejši"
498
 
499
- #: ad-inserter.php:10943
500
  msgid "Please update!"
501
  msgstr "Prosimo, posodobite!"
502
 
503
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
504
  #. name with HTML tags will be added)
505
- #: ad-inserter.php:11213
506
  msgid "Thank you for installing"
507
  msgstr "Hvala za namestitev vtičnika"
508
 
509
  #. translators: Opt-in message: %s: HTML tags
510
- #: ad-inserter.php:11215
511
  msgid ""
512
  "We would like to %s track its usage %s on your site. This is completely "
513
  "optional and can be disabled at any time."
@@ -515,7 +515,7 @@ msgstr ""
515
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
516
  "izbirno in se lahko izključi kadarkoli."
517
 
518
- #: ad-inserter.php:11217
519
  msgid ""
520
  "We don't record any sensitive data, only information regarding the WordPress "
521
  "environment and plugin usage, which will help us to make improvements to the "
@@ -525,7 +525,7 @@ msgstr ""
525
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
526
 
527
  #. translators: Deactivation message: %s: HTML tags
528
- #: ad-inserter.php:11257
529
  msgid ""
530
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
531
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -536,50 +536,50 @@ msgstr ""
536
  "nam %s in poskušali vam bomo pomagati."
537
 
538
  #. translators: %s: Ad Inserter
539
- #: ad-inserter.php:11303
540
  msgid "%s block."
541
  msgstr "%s blok."
542
 
543
  #. translators: widget title
544
- #: ad-inserter.php:11319 ad-inserter.php:11354
545
  msgid "Processing log"
546
  msgstr "Dnevnik procesiranja"
547
 
548
  #. translators: widget title
549
- #: ad-inserter.php:11321 ad-inserter.php:11355
550
  msgid "Dummy widget"
551
  msgstr "Prazen gradnik"
552
 
553
  #. translators: widget title
554
- #: ad-inserter.php:11323 ad-inserter.php:11353
555
  msgid "Debugging tools"
556
  msgstr "Orodja za razhroščevanje"
557
 
558
  #. translators: block status (widget title)
559
- #: ad-inserter.php:11330
560
  msgctxt "block"
561
  msgid "PAUSED"
562
  msgstr "USTAVLJEN"
563
 
564
- #: ad-inserter.php:11331
565
  msgid "WIDGET DISABLED"
566
  msgstr "GRADNIK ONEMOGOČEN"
567
 
568
- #: ad-inserter.php:11332
569
  msgid "Unknown block"
570
  msgstr "Neznan blok"
571
 
572
- #: ad-inserter.php:11340 includes/functions-check-now.php:3262
573
- #: includes/functions.php:4964 settings.php:1263
574
  msgid "Title"
575
  msgstr "Naslov"
576
 
577
- #: ad-inserter.php:11362
578
  msgctxt "Widget"
579
  msgid "Sticky"
580
  msgstr "Lepljiv"
581
 
582
- #: ad-inserter.php:11413
583
  msgid ""
584
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
585
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -588,7 +588,7 @@ msgstr ""
588
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
589
  "Inserter Pro."
590
 
591
- #: ad-inserter.php:11414
592
  msgid ""
593
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
594
  "will clear all settings that are available only in the Pro version "
@@ -599,164 +599,169 @@ msgstr ""
599
  "različici (dodatne nastavitve blokov in vtičnika)!"
600
 
601
  #. translators: %s: Ad Inserter
602
- #: class.php:602 class.php:611 class.php:614
603
  msgid "PHP error in %s block"
604
  msgstr "PHP napaka v bloku %s"
605
 
606
- #: class.php:2404
607
  msgid "Counters"
608
  msgstr "Števci"
609
 
610
- #: class.php:2408
611
  msgid "Content"
612
  msgstr "Vsebina"
613
 
614
- #: class.php:2413
615
  msgid "Excerpt"
616
  msgstr "Izvleček"
617
 
618
- #: class.php:2418 strings.php:17
619
  msgid "Before post"
620
  msgstr "Pred prispevkom"
621
 
622
- #: class.php:2423 strings.php:18
623
  msgid "After post"
624
  msgstr "Za prispevkom"
625
 
626
- #: class.php:2428 strings.php:25
627
  msgid "Between posts"
628
  msgstr "Med prispevki"
629
 
630
- #: class.php:2433 settings.php:1974 settings.php:4447
631
  msgid "Widget"
632
  msgstr "Gradnik"
633
 
634
- #: class.php:2438 settings.php:4445
635
  msgid "PHP function call"
636
  msgstr "Klic PHP funkcije"
637
 
638
  #. Translators: %s: custom hook name
639
- #: class.php:2448
640
  msgid "Custom hook %s call"
641
  msgstr "Klic ročice po meri %s"
642
 
643
- #: class.php:2484
644
  msgid "AJAX REQUEST"
645
  msgstr "AJAX ZAHTEVEK"
646
 
647
- #: class.php:2487
648
  msgid "Ajax request for block in iframe"
649
  msgstr "Ajax zahtevek za blok v iframe-u"
650
 
651
- #: class.php:2521
652
  msgid "Ajax request url, click to open it in a new tab"
653
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
654
 
655
- #: class.php:2524
656
  msgid "IN THE LOOP"
657
  msgstr "V ZANKI"
658
 
659
- #: class.php:2524
660
  msgid "YES"
661
  msgstr "DA"
662
 
663
- #: class.php:2524
664
  msgid "NO"
665
  msgstr "NE"
666
 
667
- #: class.php:2559
668
  msgid "BLOCK"
669
  msgstr "BLOK"
670
 
671
- #: class.php:2559
672
  msgctxt "block or widget"
673
  msgid "INSERTED BUT NOT VISIBLE"
674
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
675
 
676
- #: class.php:2790
677
  msgctxt "viewports"
678
  msgid "ALL"
679
  msgstr "VSI"
680
 
681
- #: class.php:2823 class.php:2864 class.php:4343 strings.php:281
682
  msgctxt "Block"
683
  msgid "HIDDEN"
684
  msgstr "SKRIT"
685
 
686
- #: class.php:2871 class.php:4346 strings.php:280
687
  msgctxt "Block"
688
  msgid "VISIBLE"
689
  msgstr "VIDEN"
690
 
691
- #: class.php:3484 class.php:3571
692
  msgid "ACTIVE GROUPS"
693
  msgstr "AKTIVNE SKUPINE"
694
 
695
- #: class.php:4029
696
  msgid "start='%s' end='%s' days='%s' type='%s'"
697
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
698
 
699
- #: class.php:4037
700
  msgid "parameters='%s' type='%s'"
701
  msgstr "parametri='%s' tip='%s'"
702
 
703
  #. translators: %s: list parameters and type
704
- #: class.php:4039
705
  msgid "referers='%s' type='%s'"
706
  msgstr "napotitelji='%s' tip='%s'"
707
 
708
  #. translators: %s: list parameters and type
709
- #: class.php:4041
710
  msgid "clients='%s' type='%s'"
711
  msgstr "odjemalci='%s' tip='%s'"
712
 
713
  #. translators: %s: list parameters and type
714
- #: class.php:4226
715
  msgid "countries='%s' type='%s'"
716
  msgstr "države='%s' tip='%s'"
717
 
718
  #. translators: %s: list parameters and type
719
- #: class.php:4228
720
  msgid "ip addresses='%s' type='%s'"
721
  msgstr "ip naslovi='%s' tip='%s'"
722
 
723
- #: class.php:4343 class.php:4346
724
  msgid "viewport='%s' type='%s'"
725
  msgstr "pogled='%s' tip='%s'"
726
 
727
- #: class.php:4939 strings.php:274
 
 
 
 
 
728
  msgid "BEFORE"
729
  msgstr "PRED"
730
 
731
- #: class.php:4947 strings.php:276
732
  msgid "PREPEND CONTENT"
733
  msgstr "DODAJ PRED VSEBINO"
734
 
735
- #: class.php:4951 strings.php:277
736
  msgid "APPEND CONTENT"
737
  msgstr "DODAJ ZA VSEBINO"
738
 
739
- #: class.php:4955 strings.php:278
740
  msgid "REPLACE CONTENT"
741
  msgstr "NADOMESTI VSEBINO"
742
 
743
- #: class.php:4959 strings.php:279
744
  msgid "REPLACE ELEMENT"
745
  msgstr "NADOMESTI ELEMENT"
746
 
747
- #: class.php:4970 strings.php:275
748
  msgid "AFTER"
749
  msgstr "ZA"
750
 
751
- #: class.php:5040 includes/preview.php:2388 includes/preview.php:2425
752
  msgid "Code"
753
  msgstr "Koda"
754
 
755
- #: class.php:5043
756
  msgid "for block"
757
  msgstr "za blok"
758
 
759
- #: class.php:9152
760
  msgid ""
761
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
762
  "extension for PHP."
@@ -765,7 +770,7 @@ msgstr ""
765
  "namestiti DOM razširitev za PHP."
766
 
767
  #: includes/editor.php:4 includes/placeholders.php:350
768
- #: includes/preview.php:2329 strings.php:287
769
  msgid "Use"
770
  msgstr "Uporabi"
771
 
@@ -774,7 +779,7 @@ msgid "Reset"
774
  msgstr "Ponastavi"
775
 
776
  #: includes/editor.php:6 includes/placeholders.php:352
777
- #: includes/preview.php:2332 settings.php:3776 strings.php:228 strings.php:286
778
  msgid "Cancel"
779
  msgstr "Prekliči"
780
 
@@ -800,17 +805,17 @@ msgstr "Napaka pri nalaganju strani"
800
  msgid "PAGE BLOCKED"
801
  msgstr "STRAN BLOKIRANA"
802
 
803
- #: includes/functions-check-now.php:288 includes/functions.php:323
804
  msgid "%d of %d names shown"
805
  msgstr "Prikazanih %d od %d imen"
806
 
807
  #. translators: %s: name filter
808
- #: includes/functions-check-now.php:307 includes/functions.php:342
809
  msgid "No name matches filter"
810
  msgstr "Noben podatek ne ustreza filtru"
811
 
812
  #. translators: %s: Ad Inserter Pro
813
- #: includes/functions-check-now.php:396 includes/functions.php:428
814
  msgid ""
815
  "Import %s settings when saving - if checked, the encoded settings below will "
816
  "be imported for all blocks and settings"
@@ -818,39 +823,39 @@ msgstr ""
818
  "Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
819
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
820
 
821
- #: includes/functions-check-now.php:396 includes/functions.php:428
822
  msgid "Import Settings for"
823
  msgstr "Uvozi Nastavitve za"
824
 
825
- #: includes/functions-check-now.php:400 includes/functions.php:432
826
  msgid "Saved settings for"
827
  msgstr "Shranjene nastavitve za"
828
 
829
- #: includes/functions-check-now.php:420 includes/functions.php:455
830
  msgid "License Key"
831
  msgstr "Licenčni Ključ"
832
 
833
- #: includes/functions-check-now.php:423 includes/functions.php:458
834
  msgid "License Key for"
835
  msgstr "Licenčni Ključ za"
836
 
837
- #: includes/functions-check-now.php:425 includes/functions.php:460
838
  msgid "Open license page"
839
  msgstr "Odpri licenčno stran"
840
 
841
- #: includes/functions-check-now.php:432 includes/functions.php:467
842
  msgid "Hide license key"
843
  msgstr "Skrij licenčni ključ"
844
 
845
- #: includes/functions-check-now.php:432 includes/functions.php:467
846
  msgid "Hide key"
847
  msgstr "Skrij ključ"
848
 
849
- #: includes/functions-check-now.php:447 includes/functions.php:484
850
  msgid "Main content element"
851
  msgstr "Glavni element vsebine"
852
 
853
- #: includes/functions-check-now.php:450 includes/functions.php:487
854
  msgid ""
855
  "Main content element (#id or .class) for 'Stick to the content' position. "
856
  "Leave empty unless position is not properly calculated."
@@ -858,79 +863,79 @@ msgstr ""
858
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
859
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
860
 
861
- #: includes/functions-check-now.php:451 includes/functions.php:488
862
  #: settings.php:1420 settings.php:1460 settings.php:2919
863
  msgid "Open HTML element selector"
864
  msgstr "Odpri izbirnik HTML elementa"
865
 
866
- #: includes/functions-check-now.php:456 includes/functions.php:493
867
  msgid "Lazy loading offset"
868
  msgstr "Zamik za leno nalaganje"
869
 
870
- #: includes/functions-check-now.php:459 includes/functions.php:496
871
  msgid "Offset of the block from the visible viewport when it should be loaded"
872
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
873
 
874
- #: includes/functions-check-now.php:470 includes/functions.php:508
875
  msgid "Export / Import Block Settings"
876
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
877
 
878
- #: includes/functions-check-now.php:485 includes/functions.php:525
879
  msgid "Track impressions and clicks for this block"
880
  msgstr "Sledi prikazom in klikom za ta blok"
881
 
882
- #: includes/functions-check-now.php:485 includes/functions.php:525
883
  msgid " - global tracking disabled"
884
  msgstr " - globalno sledenje onemogočeno"
885
 
886
- #: includes/functions-check-now.php:492 includes/functions.php:533
887
- #: includes/functions.php:4658
888
  msgid "Generate PDF report"
889
  msgstr "Generiraj PDF poročilo"
890
 
891
- #: includes/functions-check-now.php:497 includes/functions.php:547
892
  msgid "Open public report"
893
  msgstr "Odpri javno poročilo"
894
 
895
- #: includes/functions-check-now.php:511 includes/functions.php:561
896
  msgid "Toggle Ad Blocking Statistics"
897
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
898
 
899
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
900
- #: includes/functions.php:569 includes/functions.php:4639
901
  msgid "Toggle Statistics"
902
  msgstr "Preklopi Statistiko"
903
 
904
- #: includes/functions-check-now.php:528 includes/functions.php:578
905
  msgid "Pin list"
906
  msgstr "Pripni seznam"
907
 
908
  #. translators: %s: Ad Inserter Pro
909
- #: includes/functions-check-now.php:543 includes/functions.php:601
910
  msgid "%s license key is not set. Continue?"
911
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
912
 
913
  #. translators: %s: Ad Inserter Pro
914
- #: includes/functions-check-now.php:547 includes/functions.php:605
915
  msgid "Invalid %s license key. Continue?"
916
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
917
 
918
  #. translators: %s: Ad Inserter Pro
919
- #: includes/functions-check-now.php:551 includes/functions.php:609
920
  msgid "%s license overused. Continue?"
921
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
922
 
923
- #: includes/functions-check-now.php:555 includes/functions.php:619
924
  #: settings.php:1168 settings.php:2352
925
  msgid "Save Settings"
926
  msgstr "Shrani Nastavitve"
927
 
928
- #: includes/functions-check-now.php:615 includes/functions.php:687
929
  #: includes/preview.php:2520
930
  msgid "Horizontal position"
931
  msgstr "Vodoravni položaj"
932
 
933
- #: includes/functions-check-now.php:638 includes/functions.php:712
934
  msgid ""
935
  "Horizontal margin from the content or screen edge, empty means default value "
936
  "from CSS"
@@ -938,12 +943,12 @@ msgstr ""
938
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
939
  "iz CSS"
940
 
941
- #: includes/functions-check-now.php:646 includes/functions.php:720
942
  #: includes/preview.php:2580
943
  msgid "Vertical position"
944
  msgstr "Navpični položaj"
945
 
946
- #: includes/functions-check-now.php:661 includes/functions.php:735
947
  msgid ""
948
  "Vertical margin from the top or bottom screen edge, empty means default "
949
  "value from CSS"
@@ -951,16 +956,16 @@ msgstr ""
951
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
952
  "iz CSS"
953
 
954
- #: includes/functions-check-now.php:686 includes/functions.php:765
955
  #: includes/preview.php:2635
956
  msgid "Animation"
957
  msgstr "Animacija"
958
 
959
- #: includes/functions-check-now.php:704 includes/functions.php:784
960
  msgid "Trigger"
961
  msgstr "Sporžilec"
962
 
963
- #: includes/functions-check-now.php:713 includes/functions.php:793
964
  msgid ""
965
  "Trigger value: page scroll in %, page scroll in px or element with selector "
966
  "(#id or .class) becomes visible"
@@ -968,54 +973,56 @@ msgstr ""
968
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
969
  "selektorjem (#id ali .razred) postane viden"
970
 
971
- #: includes/functions-check-now.php:717 includes/functions.php:797
 
972
  msgid "Offset"
973
  msgstr "Zamik"
974
 
975
- #: includes/functions-check-now.php:717 includes/functions.php:797
 
976
  msgid "Offset of trigger element"
977
  msgstr "Zamik sprožilnega elementa"
978
 
979
- #: includes/functions-check-now.php:721 includes/functions.php:801
980
- #: settings.php:1475
981
  msgid "Delay"
982
  msgstr "Zakasnitev"
983
 
984
- #: includes/functions-check-now.php:721 includes/functions.php:801
985
  msgid "Delay animation after trigger condition"
986
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
987
 
988
- #: includes/functions-check-now.php:725 includes/functions.php:805
989
  msgid "Trigger once"
990
  msgstr "Sproži enkrat"
991
 
992
- #: includes/functions-check-now.php:727 includes/functions.php:807
993
  msgid "Trigger animation only once"
994
  msgstr "Sproži animacijo samo enkrat"
995
 
996
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
997
- #: includes/functions-check-now.php:2546 includes/functions.php:915
998
- #: includes/functions.php:3004 includes/functions.php:3020
999
  msgid "Tracking is globally disabled"
1000
  msgstr "Sledenje je globalno onemogočeno"
1001
 
1002
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
1003
- #: includes/functions-check-now.php:2550 includes/functions.php:919
1004
- #: includes/functions.php:3008 includes/functions.php:3024
1005
  msgid "Tracking for this block is disabled"
1006
  msgstr "Sledenje za ta blok je onemogočeno"
1007
 
1008
- #: includes/functions-check-now.php:780 includes/functions.php:926
1009
  msgid "Double click to toggle controls in public reports"
1010
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1011
 
1012
- #: includes/functions-check-now.php:786 includes/functions.php:932
1013
- #: includes/functions.php:4212 settings.php:3696 settings.php:3732
1014
- #: settings.php:3793 strings.php:242
1015
  msgid "Loading..."
1016
  msgstr "Nalagam..."
1017
 
1018
- #: includes/functions-check-now.php:807 includes/functions.php:953
1019
  msgid ""
1020
  "Clear statistics data for the selected range - clear both dates to delete "
1021
  "all data for this block"
@@ -1023,71 +1030,71 @@ msgstr ""
1023
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
1024
  "brisanje vseh podatkov za ta blok"
1025
 
1026
- #: includes/functions-check-now.php:811 includes/functions.php:957
1027
  msgid "Auto refresh data for the selected range every 60 seconds"
1028
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1029
 
1030
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1031
- #: includes/functions.php:960 includes/functions.php:7861
1032
  msgid "Load data for last month"
1033
  msgstr "Naloži podatke za zadnji mesec"
1034
 
1035
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1036
- #: includes/functions.php:960 includes/functions.php:7861
1037
  msgid "Last Month"
1038
  msgstr "Zadnji Mesec"
1039
 
1040
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1041
- #: includes/functions.php:963 includes/functions.php:7864
1042
  msgid "Load data for this month"
1043
  msgstr "Naloži podatke za ta mesec"
1044
 
1045
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1046
- #: includes/functions.php:963 includes/functions.php:7864
1047
  msgid "This Month"
1048
  msgstr "Ta Mesec"
1049
 
1050
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1051
- #: includes/functions.php:966 includes/functions.php:7867
1052
  msgid "Load data for this year"
1053
  msgstr "Naloži podatke za to leto"
1054
 
1055
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1056
- #: includes/functions.php:966 includes/functions.php:7867
1057
  msgid "This Year"
1058
  msgstr "To Leto"
1059
 
1060
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1061
- #: includes/functions.php:969 includes/functions.php:7870
1062
  msgid "Load data for the last 15 days"
1063
  msgstr "Naloži podatke za zadnjih 15 dni"
1064
 
1065
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1066
- #: includes/functions.php:972 includes/functions.php:7873
1067
  msgid "Load data for the last 30 days"
1068
  msgstr "Naloži podatke za zadnjih 30 dni"
1069
 
1070
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1071
- #: includes/functions.php:975 includes/functions.php:7876
1072
  msgid "Load data for the last 90 days"
1073
  msgstr "Naloži podatke za zadnjih 90 dni"
1074
 
1075
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1076
- #: includes/functions.php:978 includes/functions.php:7879
1077
  msgid "Load data for the last 180 days"
1078
  msgstr "Naloži podatke za zadnjih 180 dni"
1079
 
1080
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1081
- #: includes/functions.php:981 includes/functions.php:7882
1082
  msgid "Load data for the last 365 days"
1083
  msgstr "Naloži podatke za zadnjih 365 dni"
1084
 
1085
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1086
- #: includes/functions.php:991 includes/functions.php:7892
1087
  msgid "Load data for the selected range"
1088
  msgstr "Naloži podatke za izbrano obdobje"
1089
 
1090
- #: includes/functions-check-now.php:861 includes/functions.php:1008
1091
  msgid ""
1092
  "Import settings when saving - if checked, the encoded settings below will be "
1093
  "imported for this block"
@@ -1095,11 +1102,11 @@ msgstr ""
1095
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1096
  "nastavitve spodaj uvozile za ta blok"
1097
 
1098
- #: includes/functions-check-now.php:861 includes/functions.php:1008
1099
  msgid "Import settings for block"
1100
  msgstr "Uvozi nastavitve za blok"
1101
 
1102
- #: includes/functions-check-now.php:865 includes/functions.php:1012
1103
  msgid ""
1104
  "Import block name when saving - if checked and 'Import settings for block' "
1105
  "is also checked, the name from encoded settings below will be imported for "
@@ -1109,41 +1116,41 @@ msgstr ""
1109
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1110
  "uvozilo za ta blok"
1111
 
1112
- #: includes/functions-check-now.php:865 includes/functions.php:1012
1113
  msgid "Import block name"
1114
  msgstr "Uvozi ime bloka"
1115
 
1116
- #: includes/functions-check-now.php:869 includes/functions.php:1016
1117
  msgid "Saved settings for block"
1118
  msgstr "Shranjene nastavitve za blok"
1119
 
1120
- #: includes/functions-check-now.php:882 includes/functions.php:1031
1121
  msgid "Export / Import Ad Inserter Pro Settings"
1122
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1123
 
1124
- #: includes/functions-check-now.php:892 includes/functions.php:1050
1125
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1126
  msgstr ""
1127
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1128
  "bloke?"
1129
 
1130
- #: includes/functions-check-now.php:894 includes/functions.php:1052
1131
  msgid "Clear All Statistics Data"
1132
  msgstr "Pobriši Vse Podatke o Statistiki"
1133
 
1134
- #: includes/functions-check-now.php:921 includes/functions.php:1086
1135
  msgid "Toggle country/city editor"
1136
  msgstr "Preklopi urejevalnik držav/mest"
1137
 
1138
- #: includes/functions-check-now.php:927 includes/functions.php:1092
1139
  msgid "IP Addresses"
1140
  msgstr "IP Naslovi"
1141
 
1142
- #: includes/functions-check-now.php:930 includes/functions.php:1095
1143
  msgid "Toggle IP address editor"
1144
  msgstr "Preklopi urejevalnik IP nslovov"
1145
 
1146
- #: includes/functions-check-now.php:933 includes/functions.php:1098
1147
  msgid ""
1148
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1149
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
@@ -1159,25 +1166,25 @@ msgstr "Črni seznam IP naslovov"
1159
  msgid "Whitelist IP addresses"
1160
  msgstr "Beli seznam IP naslovov"
1161
 
1162
- #: includes/functions-check-now.php:952 includes/functions.php:1114
1163
  msgid "Countries"
1164
  msgstr "Države"
1165
 
1166
- #: includes/functions-check-now.php:953 includes/functions.php:1115
1167
  msgid "Cities"
1168
  msgstr "Mesta"
1169
 
1170
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1171
- #: includes/functions.php:1119 includes/functions.php:4604
1172
  msgid "Toggle country editor"
1173
  msgstr "Preklopi urejevalnik držav"
1174
 
1175
- #: includes/functions-check-now.php:960 includes/functions.php:1122
1176
  msgid "Toggle city editor"
1177
  msgstr "Preklopi urejevalnik mest"
1178
 
1179
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1180
- #: includes/functions.php:1126 includes/functions.php:4607
1181
  msgid "Comma separated country ISO Alpha-2 codes"
1182
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1183
 
@@ -1190,12 +1197,12 @@ msgid "Whitelist countries"
1190
  msgstr "Beli seznam držav"
1191
 
1192
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1193
- #: includes/functions.php:1633 includes/functions.php:1968
1194
  msgid "Enter license key"
1195
  msgstr "Vnesite licenčni ključ"
1196
 
1197
  #. translators: %s: Ad Inserter Pro
1198
- #: includes/functions-check-now.php:1389 includes/functions.php:1639
1199
  msgid ""
1200
  "%s license key is not set. Plugin functionality is limited and updates are "
1201
  "disabled."
@@ -1204,55 +1211,55 @@ msgstr ""
1204
  "posodobitve onemogočene."
1205
 
1206
  #. translators: %s: Ad Inserter Pro
1207
- #: includes/functions-check-now.php:1403 includes/functions.php:1653
1208
  msgid "Warning: %s plugin update server is not accessible"
1209
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1210
 
1211
  #. translators: updates are not available
1212
- #: includes/functions-check-now.php:1405 includes/functions.php:1655
1213
  msgid "updates"
1214
  msgstr "posodobitve"
1215
 
1216
  #. translators: updates are not available
1217
- #: includes/functions-check-now.php:1407 includes/functions.php:1657
1218
  msgid "are not available"
1219
  msgstr "niso na razpolago"
1220
 
1221
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1222
- #: includes/functions.php:1662 includes/functions.php:1977
1223
  msgid "Check license key"
1224
  msgstr "Preverite licenčni ključ"
1225
 
1226
  #. translators: %s: Ad Inserter Pro
1227
- #: includes/functions-check-now.php:1418 includes/functions.php:1668
1228
  msgid "Invalid %s license key."
1229
  msgstr "Neveljaven %s licenčni ključ."
1230
 
1231
  #. translators: %s: Ad Inserter Pro
1232
- #: includes/functions-check-now.php:1427 includes/functions.php:1677
1233
  msgid "%s license expired. Plugin updates are disabled."
1234
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1235
 
1236
- #: includes/functions-check-now.php:1428 includes/functions.php:1678
1237
  msgid "Renew license"
1238
  msgstr "Obnovite licenco"
1239
 
1240
  #. translators: %s: Ad Inserter Pro
1241
- #: includes/functions-check-now.php:1436 includes/functions.php:1686
1242
  msgid "%s license overused. Plugin updates are disabled."
1243
  msgstr ""
1244
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1245
 
1246
- #: includes/functions-check-now.php:1437 includes/functions.php:1687
1247
  msgid "Manage licenses"
1248
  msgstr "Upravljajte z licencami"
1249
 
1250
- #: includes/functions-check-now.php:1437 includes/functions.php:1687
1251
  msgid "Upgrade license"
1252
  msgstr "Nadgradite licenco"
1253
 
1254
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1255
- #: includes/functions-check-now.php:1684 includes/functions.php:1970
1256
  msgid ""
1257
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1258
  "limited and updates are disabled."
@@ -1261,12 +1268,12 @@ msgstr ""
1261
  "so omejene in posodobitve onemogočene."
1262
 
1263
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1264
- #: includes/functions-check-now.php:1693 includes/functions.php:1979
1265
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1266
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1267
 
1268
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1269
- #: includes/functions-check-now.php:1709 includes/functions.php:1995
1270
  msgid ""
1271
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1272
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1276,7 +1283,7 @@ msgstr ""
1276
  "pogrešate. %3$s"
1277
 
1278
  #. translators: 1, 3: HTML tags, 2: percentage
1279
- #: includes/functions-check-now.php:1716 includes/functions.php:2002
1280
  msgid ""
1281
  "During the license period and 30 days after the license has expired we offer "
1282
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
@@ -1284,24 +1291,24 @@ msgstr ""
1284
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1285
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1286
 
1287
- #: includes/functions-check-now.php:1726 includes/functions.php:2012
1288
  msgid "No, thank you."
1289
  msgstr "Ne, hvala."
1290
 
1291
- #: includes/functions-check-now.php:1729 includes/functions.php:2015
1292
  msgid "Not now, maybe later."
1293
  msgstr "Ne zdaj, mogoče kasneje."
1294
 
1295
- #: includes/functions-check-now.php:1743 includes/functions.php:2029
1296
  msgid "Renew the licence"
1297
  msgstr "Obnovi licenco"
1298
 
1299
- #: includes/functions-check-now.php:1745 includes/functions.php:2031
1300
  msgid "Update license status"
1301
  msgstr "Posodobi status licence"
1302
 
1303
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1304
- #: includes/functions-check-now.php:1756 includes/functions.php:2044
1305
  msgid ""
1306
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1307
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1311,105 +1318,105 @@ msgstr ""
1311
  "Nadgradite licenco %7$s"
1312
 
1313
  #. Translators: %s: HTML tag
1314
- #: includes/functions-check-now.php:1778 includes/functions.php:2104
1315
  msgid "Warning: %s MaxMind IP geolocation database not found."
1316
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1317
 
1318
- #: includes/functions-check-now.php:2331 includes/functions.php:2786
1319
  msgid "Geolocation"
1320
  msgstr "Geolokacija"
1321
 
1322
- #: includes/functions-check-now.php:2335 includes/functions.php:2790
1323
- #: settings.php:4434
1324
  msgid "Exceptions"
1325
  msgstr "Izjeme"
1326
 
1327
- #: includes/functions-check-now.php:2340 includes/functions.php:2795
1328
  msgid "Multisite"
1329
  msgstr "Multisite"
1330
 
1331
- #: includes/functions-check-now.php:2345 includes/functions.php:2800
1332
- #: settings.php:4440
1333
  msgid "Tracking"
1334
  msgstr "Sledenje"
1335
 
1336
  #. translators: %d: days, hours, minutes
1337
- #: includes/functions-check-now.php:2376 includes/functions.php:2834
1338
  msgid "Scheduled in %d days %d hours %d minutes"
1339
  msgstr "Planirano v %d dneh %d urah %d minutah"
1340
 
1341
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1342
  #. HTML code for long dash separator
1343
- #: includes/functions-check-now.php:2385 includes/functions.php:2843
1344
  msgid "Active %s expires in %d days %d hours %d minutes"
1345
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1346
 
1347
- #: includes/functions-check-now.php:2389 includes/functions.php:2847
1348
  msgid "Expired"
1349
  msgstr "Poteklo"
1350
 
1351
- #: includes/functions-check-now.php:2397 includes/functions.php:2873
1352
  #: settings.php:1530 settings.php:1545 settings.php:1667 settings.php:2238
1353
  msgid "and"
1354
  msgstr "in"
1355
 
1356
- #: includes/functions-check-now.php:2400 includes/functions.php:2855
1357
  msgid "fallback"
1358
  msgstr "rezerva"
1359
 
1360
- #: includes/functions-check-now.php:2401 includes/functions.php:2856
1361
  msgid "Block to be used when scheduling expires"
1362
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1363
 
1364
- #: includes/functions-check-now.php:2426 includes/functions.php:2895
1365
  msgid "Load in iframe"
1366
  msgstr "Naloži v iframe-u"
1367
 
1368
- #: includes/functions-check-now.php:2430 includes/functions.php:2899
1369
  #: includes/placeholders.php:387 settings.php:1128 settings.php:2265
1370
  msgid "Width"
1371
  msgstr "Širina"
1372
 
1373
- #: includes/functions-check-now.php:2431 includes/functions.php:2900
1374
  msgid "iframe width, empty means full width (100%)"
1375
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1376
 
1377
- #: includes/functions-check-now.php:2437 includes/functions.php:2906
1378
  #: includes/placeholders.php:382 settings.php:1134 settings.php:2269
1379
  msgid "Height"
1380
  msgstr "Višina"
1381
 
1382
- #: includes/functions-check-now.php:2438 includes/functions.php:2907
1383
  msgid "iframe height, empty means adjust it to iframe content height"
1384
  msgstr ""
1385
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1386
 
1387
- #: includes/functions-check-now.php:2445 includes/functions.php:2914
1388
  msgid "Ad label in iframe"
1389
  msgstr "Oznaka oglasa v iframe-u"
1390
 
1391
- #: includes/functions-check-now.php:2450 includes/functions.php:2919
1392
  msgid "Preview iframe code"
1393
  msgstr "Predpreglej kodo iframe"
1394
 
1395
- #: includes/functions-check-now.php:2450 includes/functions.php:2919
1396
  #: includes/preview.php:2341 settings.php:1163 settings.php:2990
1397
  msgid "Preview"
1398
  msgstr "Predogled"
1399
 
1400
- #: includes/functions-check-now.php:2464 includes/functions.php:2935
1401
- #: settings.php:4441
1402
  msgid "Limits"
1403
  msgstr "Omejitve"
1404
 
1405
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1406
- #: includes/functions-check-now.php:4430 includes/functions.php:2940
1407
- #: includes/functions.php:6415 includes/functions.php:6480 settings.php:2402
1408
  msgid "Ad Blocking"
1409
  msgstr "Blokiranje Oglasov"
1410
 
1411
  #. translators: 1, 2 and 3, 4: HTML tags
1412
- #: includes/functions-check-now.php:2478 includes/functions.php:2951
1413
  msgid ""
1414
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1415
  "for tracking!"
@@ -1419,7 +1426,7 @@ msgstr ""
1419
 
1420
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1421
  #. header
1422
- #: includes/functions-check-now.php:2487 includes/functions.php:2960
1423
  msgid ""
1424
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1425
  "enabled and automatic insertion %6$s!"
@@ -1427,7 +1434,7 @@ msgstr ""
1427
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1428
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1429
 
1430
- #: includes/functions-check-now.php:2554 includes/functions.php:3028
1431
  msgid "Click fraud protection is globally disabled"
1432
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1433
 
@@ -1436,14 +1443,14 @@ msgid "Max clicks per time period are not defined"
1436
  msgstr "Največje število klikov na časovno enoto ni definirano"
1437
 
1438
  #. Translators: Max n impressions
1439
- #: includes/functions-check-now.php:2572 includes/functions.php:3042
1440
  msgid "General limits"
1441
  msgstr "Splošne omejitve"
1442
 
1443
  #. Translators: Max n impressions per x days
1444
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1445
- #: includes/functions-check-now.php:2675 includes/functions.php:3048
1446
- #: includes/functions.php:3060 includes/functions.php:3145
1447
  msgid "Current value"
1448
  msgstr "Trenutna vrednost"
1449
 
@@ -1459,14 +1466,14 @@ msgstr "Trenutna vrednost"
1459
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1460
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1461
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1462
- #: includes/functions.php:3067 includes/functions.php:3077
1463
- #: includes/functions.php:3096 includes/functions.php:3106
1464
- #: includes/functions.php:3152 includes/functions.php:3161
1465
- #: includes/functions.php:3179 includes/functions.php:3188 settings.php:2150
1466
  msgid "Max"
1467
  msgstr "Največ"
1468
 
1469
- #: includes/functions-check-now.php:2598 includes/functions.php:3068
1470
  msgid ""
1471
  "Maximum number of impressions for this block. Empty means no general "
1472
  "impression limit."
@@ -1480,8 +1487,8 @@ msgstr ""
1480
  #. Translators: Max n impressions per x days
1481
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1482
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1483
- #: includes/functions.php:3070 includes/functions.php:3080
1484
- #: includes/functions.php:3155 includes/functions.php:3164
1485
  msgid "impression"
1486
  msgid_plural "impressions"
1487
  msgstr[0] "prikaz"
@@ -1489,7 +1496,7 @@ msgstr[1] "prikaza"
1489
  msgstr[2] "prikazi"
1490
  msgstr[3] "prikazov"
1491
 
1492
- #: includes/functions-check-now.php:2608 includes/functions.php:3078
1493
  msgid ""
1494
  "Maximum number of impressions per time period. Empty means no time limit."
1495
  msgstr ""
@@ -1502,14 +1509,14 @@ msgstr ""
1502
  #. Translators: Max n clicks per x days
1503
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1504
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1505
- #: includes/functions.php:3084 includes/functions.php:3113
1506
- #: includes/functions.php:3168 includes/functions.php:3195
1507
- #: includes/functions.php:4874
1508
  msgid "per"
1509
  msgstr "na"
1510
 
1511
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1512
- #: includes/functions.php:3085 includes/functions.php:3114
1513
  msgid "Time period in days. Empty means no time limit."
1514
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1515
 
@@ -1521,11 +1528,11 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1521
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1522
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1523
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1524
- #: includes/functions.php:3087 includes/functions.php:3116
1525
- #: includes/functions.php:3171 includes/functions.php:3198
1526
- #: includes/functions.php:3306 includes/functions.php:4877
1527
- #: includes/functions.php:4887 strings.php:218 strings.php:219 strings.php:220
1528
- #: strings.php:221 strings.php:222 strings.php:223
1529
  msgid "day"
1530
  msgid_plural "days"
1531
  msgstr[0] "dan"
@@ -1533,7 +1540,7 @@ msgstr[1] "dni"
1533
  msgstr[2] "dni"
1534
  msgstr[3] "dni"
1535
 
1536
- #: includes/functions-check-now.php:2627 includes/functions.php:3097
1537
  msgid ""
1538
  "Maximum number of clicks on this block. Empty means no general click limit."
1539
  msgstr ""
@@ -1546,10 +1553,10 @@ msgstr ""
1546
  #. Translators: Max n clicks per x days
1547
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1548
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1549
- #: includes/functions-check-now.php:4578 includes/functions.php:3099
1550
- #: includes/functions.php:3109 includes/functions.php:3182
1551
- #: includes/functions.php:3191 includes/functions.php:4874
1552
- #: includes/functions.php:6755
1553
  msgid "click"
1554
  msgid_plural "clicks"
1555
  msgstr[0] "klik"
@@ -1557,18 +1564,18 @@ msgstr[1] "klika"
1557
  msgstr[2] "kliki"
1558
  msgstr[3] "klikov"
1559
 
1560
- #: includes/functions-check-now.php:2637 includes/functions.php:3107
1561
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1562
  msgstr ""
1563
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1564
  "omejitev."
1565
 
1566
- #: includes/functions-check-now.php:2662 includes/functions.php:3132
1567
  msgid "Individual visitor limits"
1568
  msgstr "Omejitve posameznih obiskovalcev"
1569
 
1570
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1571
- #: includes/functions.php:3136 includes/functions.php:3138
1572
  msgid ""
1573
  "When specified number of clicks on this block for a visitor will be reached "
1574
  "in the specified time period, all blocks that have click fraud protection "
@@ -1580,11 +1587,11 @@ msgstr ""
1580
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1581
  "pred goljufijo s kliki."
1582
 
1583
- #: includes/functions-check-now.php:2668 includes/functions.php:3138
1584
  msgid "Trigger click fraud protection"
1585
  msgstr "Sproži zaščito pred goljufijo s kliki"
1586
 
1587
- #: includes/functions-check-now.php:2683 includes/functions.php:3153
1588
  msgid ""
1589
  "Maximum number of impressions of this block for each visitor. Empty means no "
1590
  "impression limit."
@@ -1592,7 +1599,7 @@ msgstr ""
1592
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1593
  "pomeni brez omejitev prikazov."
1594
 
1595
- #: includes/functions-check-now.php:2692 includes/functions.php:3162
1596
  msgid ""
1597
  "Maximum number of impressions per time period for each visitor. Empty means "
1598
  "no impression limit per time period for visitors."
@@ -1601,8 +1608,8 @@ msgstr ""
1601
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1602
 
1603
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1604
- #: includes/functions.php:3169 includes/functions.php:3196
1605
- #: includes/functions.php:4877
1606
  msgid ""
1607
  "Time period in days. Use decimal value (with decimal point) for shorter "
1608
  "periods. Empty means no time limit."
@@ -1610,7 +1617,7 @@ msgstr ""
1610
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1611
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1612
 
1613
- #: includes/functions-check-now.php:2710 includes/functions.php:3180
1614
  msgid ""
1615
  "Maximum number of clicks on this block for each visitor. Empty means no "
1616
  "click limit."
@@ -1618,8 +1625,8 @@ msgstr ""
1618
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1619
  "brez omejitev klikov."
1620
 
1621
- #: includes/functions-check-now.php:2719 includes/functions.php:3189
1622
- #: includes/functions.php:4874
1623
  msgid ""
1624
  "Maximum number of clicks per time period for each visitor. Empty means no "
1625
  "click limit per time period for visitors."
@@ -1627,33 +1634,33 @@ msgstr ""
1627
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1628
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1629
 
1630
- #: includes/functions-check-now.php:2745 includes/functions.php:3215
1631
  msgid "When ad blocking is detected"
1632
  msgstr "Ko je blokiranje oglasov zaznano"
1633
 
1634
- #: includes/functions-check-now.php:2754 includes/functions.php:3224
1635
  msgid "replacement"
1636
  msgstr "nadomestek"
1637
 
1638
- #: includes/functions-check-now.php:2755 includes/functions.php:3225
1639
  msgid "Block to be shown when ad blocking is detected"
1640
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1641
 
1642
- #: includes/functions-check-now.php:2756 includes/functions.php:3226
1643
  msgctxt "replacement"
1644
  msgid "None"
1645
  msgstr "Noben"
1646
 
1647
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1648
- #: includes/functions.php:3243 includes/functions.php:8105
1649
  msgid "Close button"
1650
  msgstr "Gumb Zapri"
1651
 
1652
- #: includes/functions-check-now.php:2825 includes/functions.php:3297
1653
  msgid "Auto close after"
1654
  msgstr "Ssamodejno zapri po"
1655
 
1656
- #: includes/functions-check-now.php:2826 includes/functions.php:3298
1657
  msgid ""
1658
  "Time in seconds in which the ad will automatically close. Leave empty to "
1659
  "disable auto closing."
@@ -1662,11 +1669,11 @@ msgstr ""
1662
  "izključitev samodejnega zapiranja."
1663
 
1664
  #. Translators: Don't show for x days
1665
- #: includes/functions-check-now.php:2831 includes/functions.php:3303
1666
  msgid "Don't show for"
1667
  msgstr "Ne prikaži"
1668
 
1669
- #: includes/functions-check-now.php:2832 includes/functions.php:3304
1670
  msgid ""
1671
  "Time in days in which closed ad will not be shown again. Use decimal value "
1672
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1677,11 +1684,11 @@ msgstr ""
1677
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1678
 
1679
  #. Translators: Delay showing for x pageviews
1680
- #: includes/functions-check-now.php:2852 includes/functions.php:3326
1681
  msgid "Delay showing for"
1682
  msgstr "Zakasni prikaz za"
1683
 
1684
- #: includes/functions-check-now.php:2853 includes/functions.php:3327
1685
  msgid ""
1686
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1687
  "empty to insert the code for the first pageview."
@@ -1692,7 +1699,7 @@ msgstr ""
1692
  #. Translators: Delay showing for x pageviews
1693
  #. Translators: Show every x pageviews
1694
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1695
- #: includes/functions.php:3329 includes/functions.php:3336
1696
  msgid "pageview"
1697
  msgid_plural "pageviews"
1698
  msgstr[0] "ogled strani"
@@ -1701,7 +1708,7 @@ msgstr[2] "oglede strani"
1701
  msgstr[3] "ogledov strani"
1702
 
1703
  #. Translators: Show every x pageviews
1704
- #: includes/functions-check-now.php:2859 includes/functions.php:3333
1705
  msgid "Show every"
1706
  msgid_plural "Show every"
1707
  msgstr[0] "Prikaži vsak"
@@ -1709,7 +1716,7 @@ msgstr[1] "Prikaži vsaka"
1709
  msgstr[2] "Prikaži vsake"
1710
  msgstr[3] "Prikaži vsakih"
1711
 
1712
- #: includes/functions-check-now.php:2860 includes/functions.php:3334
1713
  msgid ""
1714
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1715
  "for every pageview."
@@ -1717,29 +1724,29 @@ msgstr ""
1717
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1718
  "vstavljanje kode pri vsakem ogledu strani."
1719
 
1720
- #: includes/functions-check-now.php:2879 includes/functions.php:3359
1721
  #: settings.php:893
1722
  msgid "Lazy loading"
1723
  msgstr "Leno nalaganje"
1724
 
1725
  #. Translators: %s MaxMind
1726
- #: includes/functions-check-now.php:2936 includes/functions.php:4528
1727
  msgid "This product includes GeoLite2 data created by %s"
1728
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1729
 
1730
- #: includes/functions-check-now.php:2947 includes/functions.php:4541
1731
  msgid "IP geolocation database"
1732
  msgstr "Podatkovna baza za IP geolokacijo"
1733
 
1734
- #: includes/functions-check-now.php:2950 includes/functions.php:4544
1735
  msgid "Select IP geolocation database."
1736
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1737
 
1738
- #: includes/functions-check-now.php:2961 includes/functions.php:4555
1739
  msgid "Automatic database updates"
1740
  msgstr "Samodejna posodobitev podatkovne baze"
1741
 
1742
- #: includes/functions-check-now.php:2964 includes/functions.php:4558
1743
  msgid ""
1744
  "Automatically download and update free GeoLite2 IP geolocation database by "
1745
  "MaxMind"
@@ -1747,11 +1754,11 @@ msgstr ""
1747
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1748
  "podatkovno bazo MaxMind"
1749
 
1750
- #: includes/functions-check-now.php:2972 includes/functions.php:4575
1751
  msgid "Database"
1752
  msgstr "Podatkovna baza"
1753
 
1754
- #: includes/functions-check-now.php:2975 includes/functions.php:4578
1755
  msgid ""
1756
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1757
  msgstr ""
@@ -1759,15 +1766,15 @@ msgstr ""
1759
  "podatkovne baze"
1760
 
1761
  #. translators: %d: group number
1762
- #: includes/functions-check-now.php:2993 includes/functions.php:4596
1763
  msgid "Group %d"
1764
  msgstr "Skupina %d"
1765
 
1766
- #: includes/functions-check-now.php:2999 includes/functions.php:4602
1767
  msgid "countries"
1768
  msgstr "države"
1769
 
1770
- #: includes/functions-check-now.php:3044 includes/functions.php:4647
1771
  msgid ""
1772
  "Enable impression and click tracking. You also need to enable tracking for "
1773
  "each block you want to track."
@@ -1779,29 +1786,29 @@ msgstr ""
1779
  msgid "Generate report"
1780
  msgstr "Generiraj poročilo"
1781
 
1782
- #: includes/functions-check-now.php:3059 includes/functions.php:4666
1783
  msgid "Impression and Click Tracking"
1784
  msgstr "Sledenje Prikazov in Klikov"
1785
 
1786
- #: includes/functions-check-now.php:3060 includes/functions.php:4667
1787
  #: settings.php:2869
1788
  msgctxt "ad blocking detection"
1789
  msgid "NOT ENABLED"
1790
  msgstr "NI OMOGOČENO"
1791
 
1792
- #: includes/functions-check-now.php:3076 includes/functions.php:4683
1793
  msgid "Internal"
1794
  msgstr "Notranje"
1795
 
1796
- #: includes/functions-check-now.php:3080 includes/functions.php:4687
1797
  msgid "Track impressions and clicks with internal tracking and statistics"
1798
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1799
 
1800
- #: includes/functions-check-now.php:3085 includes/functions.php:4692
1801
  msgid "External"
1802
  msgstr "Zunanje"
1803
 
1804
- #: includes/functions-check-now.php:3089 includes/functions.php:4696
1805
  msgid ""
1806
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1807
  "code installed)"
@@ -1809,27 +1816,27 @@ msgstr ""
1809
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1810
  "kodo za sledenje)"
1811
 
1812
- #: includes/functions-check-now.php:3094 includes/functions.php:4701
1813
  msgid "Track Pageviews"
1814
  msgstr "Sledi Ogledom Strani"
1815
 
1816
- #: includes/functions-check-now.php:3100 includes/functions.php:4707
1817
  msgid "Track Pageviews by Device (as configured for viewports)"
1818
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1819
 
1820
- #: includes/functions-check-now.php:3110 includes/functions.php:4717
1821
  msgid "Track for Logged in Users"
1822
  msgstr "Sledi za Prijavljene Upor."
1823
 
1824
- #: includes/functions-check-now.php:3116 includes/functions.php:4723
1825
  msgid "Track impressions and clicks from logged in users"
1826
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1827
 
1828
- #: includes/functions-check-now.php:3126 includes/functions.php:4733
1829
  msgid "Click Detection"
1830
  msgstr "Zaznavanje klikov"
1831
 
1832
- #: includes/functions-check-now.php:3132 includes/functions.php:4739
1833
  msgid ""
1834
  "Standard method detects clicks only on banners with links, Advanced method "
1835
  "can detect clicks on any kind of ads, but it is slightly less accurate"
@@ -1837,19 +1844,19 @@ msgstr ""
1837
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1838
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1839
 
1840
- #: includes/functions-check-now.php:3151 includes/functions.php:4860
1841
  msgid "Click fraud protection"
1842
  msgstr "Zaščita pred goljufijo s kliki"
1843
 
1844
- #: includes/functions-check-now.php:3155 includes/functions.php:4864
1845
  msgid "Globally enable click fraud protection for selected blocks."
1846
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1847
 
1848
- #: includes/functions-check-now.php:3161 includes/functions.php:4884
1849
  msgid "Protection time"
1850
  msgstr "Čas zaščite"
1851
 
1852
- #: includes/functions-check-now.php:3162 includes/functions.php:4887
1853
  msgid ""
1854
  "Time period in days in which blocks with enabled click fraud protection will "
1855
  "be hidden. Use decimal value (with decimal point) for shorter periods."
@@ -1858,7 +1865,7 @@ msgstr ""
1858
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1859
  "za krajša obdobja."
1860
 
1861
- #: includes/functions-check-now.php:3181 includes/functions.php:4767
1862
  msgid "Report header image"
1863
  msgstr "Slika v glavi poročila"
1864
 
@@ -1872,16 +1879,16 @@ msgstr ""
1872
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1873
  "ponastavitev na privzeto sliko."
1874
 
1875
- #: includes/functions-check-now.php:3185 includes/functions.php:4771
1876
- #: strings.php:254
1877
  msgid "Select or upload header image"
1878
  msgstr "Izberi ali naloži sliko glave"
1879
 
1880
- #: includes/functions-check-now.php:3190 includes/functions.php:4776
1881
  msgid "Report header title"
1882
  msgstr "Naslov v glavi poročila"
1883
 
1884
- #: includes/functions-check-now.php:3193 includes/functions.php:4779
1885
  msgid ""
1886
  "Title to be displayed in the header of the statistics report. Text or HTML "
1887
  "code, clear to reset to default text."
@@ -1889,11 +1896,11 @@ msgstr ""
1889
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1890
  "pobrišite za ponastavitev na privzeto besedilo."
1891
 
1892
- #: includes/functions-check-now.php:3198 includes/functions.php:4784
1893
  msgid "Report header description"
1894
  msgstr "Opis v glavi poročila"
1895
 
1896
- #: includes/functions-check-now.php:3201 includes/functions.php:4787
1897
  msgid ""
1898
  "Description to be displayed in the header of the statistics report. Text or "
1899
  "HTML code, clear to reset to default text."
@@ -1901,11 +1908,11 @@ msgstr ""
1901
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1902
  "pobrišite za ponastavitev na privzeto besedilo."
1903
 
1904
- #: includes/functions-check-now.php:3206 includes/functions.php:4792
1905
  msgid "Report footer"
1906
  msgstr "Noga poročila"
1907
 
1908
- #: includes/functions-check-now.php:3209 includes/functions.php:4795
1909
  msgid ""
1910
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1911
  "to default text."
@@ -1913,117 +1920,117 @@ msgstr ""
1913
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1914
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1915
 
1916
- #: includes/functions-check-now.php:3214 includes/functions.php:4800
1917
  msgid "Public report key"
1918
  msgstr "Ključ za javno poročilo"
1919
 
1920
- #: includes/functions-check-now.php:3217 includes/functions.php:4803
1921
  msgid "String to generate unique report IDs. Clear to reset to default value."
1922
  msgstr ""
1923
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1924
  "privzeto vrednost."
1925
 
1926
- #: includes/functions-check-now.php:3249 includes/functions.php:4943
1927
  msgid "Are you sure you want to clear all exceptions for block"
1928
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1929
 
1930
- #: includes/functions-check-now.php:3250 includes/functions.php:4944
1931
  msgid "Clear all exceptions for block"
1932
  msgstr "Pobriši vse izjeme za blok"
1933
 
1934
- #: includes/functions-check-now.php:3257 includes/functions.php:4957
1935
  msgid "Are you sure you want to clear all exceptions?"
1936
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1937
 
1938
- #: includes/functions-check-now.php:3257 includes/functions.php:4957
1939
  msgid "Clear all exceptions for all blocks"
1940
  msgstr "Pobriši vse izjeme za vse bloke"
1941
 
1942
- #: includes/functions-check-now.php:3262 includes/functions.php:4964
1943
- #: settings.php:4027 settings.php:4517
1944
  msgid "Type"
1945
  msgstr "Vrsta"
1946
 
1947
- #: includes/functions-check-now.php:3280 includes/functions.php:4982
1948
  msgid "View"
1949
  msgstr "Poglej"
1950
 
1951
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1952
- #: includes/functions-check-now.php:3292 includes/functions.php:4983
1953
- #: includes/functions.php:4990 includes/functions.php:4994
1954
  #: includes/placeholders.php:351 includes/preview.php:2711 settings.php:1406
1955
  #: settings.php:3782
1956
  msgid "Edit"
1957
  msgstr "Uredi"
1958
 
1959
- #: includes/functions-check-now.php:3311 includes/functions.php:5016
1960
  msgid "Are you sure you want to clear all exceptions for"
1961
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1962
 
1963
- #: includes/functions-check-now.php:3312 includes/functions.php:5017
1964
  msgid "Clear all exceptions for"
1965
  msgstr "Pobriši vse izjeme za"
1966
 
1967
- #: includes/functions-check-now.php:3325 includes/functions.php:5033
1968
  msgid "No exceptions"
1969
  msgstr "Brez izjem"
1970
 
1971
  #. translators: %s: Ad Inserter Pro
1972
- #: includes/functions-check-now.php:3336 includes/functions.php:5044
1973
  msgid "%s options for network blogs"
1974
  msgstr "%s izbire za omrežne bloge"
1975
 
1976
  #. translators: %s: Ad Inserter Pro
1977
- #: includes/functions-check-now.php:3341 includes/functions.php:5049
1978
  msgid "Enable %s widgets for sub-sites"
1979
  msgstr "Omogoči %s gradnik za pod-spletišča"
1980
 
1981
- #: includes/functions-check-now.php:3341 includes/functions.php:5049
1982
  msgid "Widgets"
1983
  msgstr "Gradniki"
1984
 
1985
- #: includes/functions-check-now.php:3346 includes/functions.php:5054
1986
  msgid "Enable PHP code processing for sub-sites"
1987
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1988
 
1989
- #: includes/functions-check-now.php:3346 includes/functions.php:5054
1990
  msgid "PHP Processing"
1991
  msgstr "PHP Procesiranje"
1992
 
1993
  #. translators: %s: Ad Inserter Pro
1994
- #: includes/functions-check-now.php:3351 includes/functions.php:5059
1995
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1996
  msgstr ""
1997
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
1998
 
1999
- #: includes/functions-check-now.php:3351 includes/functions.php:5059
2000
  msgid "Post/Page exceptions"
2001
  msgstr "Izjeme prispevkov/strani"
2002
 
2003
  #. translators: %s: Ad Inserter Pro
2004
- #: includes/functions-check-now.php:3356 includes/functions.php:5064
2005
  msgid "Enable %s settings page for sub-sites"
2006
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2007
 
2008
- #: includes/functions-check-now.php:3356 includes/functions.php:5064
2009
  msgid "Settings page"
2010
  msgstr "Stran z nastavitvami"
2011
 
2012
  #. translators: %s: Ad Inserter Pro
2013
- #: includes/functions-check-now.php:3361 includes/functions.php:5069
2014
  msgid "Enable %s settings of main site to be used for all blogs"
2015
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2016
 
2017
- #: includes/functions-check-now.php:3361 includes/functions.php:5069
2018
  msgid "Main site settings used for all blogs"
2019
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2020
 
2021
- #: includes/functions-check-now.php:3372 includes/functions.php:5087
2022
  #: settings.php:2868
2023
  msgid "Ad Blocking Detection"
2024
  msgstr "Zaznavanje Blokiranja Oglasov"
2025
 
2026
- #: includes/functions-check-now.php:3378 includes/functions.php:5093
2027
  msgid ""
2028
  "Standard method is reliable but should be used only if Advanced method does "
2029
  "not work. Advanced method recreates files used for detection with random "
@@ -2036,78 +2043,78 @@ msgstr ""
2036
  "dostopna"
2037
 
2038
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
2039
- #: includes/functions-check-now.php:4140 includes/functions.php:6046
2040
- #: includes/functions.php:6154 includes/functions.php:6179
2041
  msgid "AD BLOCKING"
2042
  msgstr "BLOKIRANJE OGLASOV"
2043
 
2044
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
2045
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
2046
- #: includes/functions.php:6047 includes/functions.php:6090
2047
- #: includes/functions.php:6148 includes/functions.php:6180
2048
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2049
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2050
 
2051
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
2052
- #: includes/functions-check-now.php:4147 includes/functions.php:6050
2053
- #: includes/functions.php:6147 includes/functions.php:6186
2054
  msgid "NO AD BLOCKING"
2055
  msgstr "NI BLOKIRANJA OGLASOV"
2056
 
2057
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
2058
- #: includes/functions.php:6089 includes/functions.php:6096
2059
  msgid "AD BLOCKING REPLACEMENT"
2060
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2061
 
2062
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
2063
- #: includes/functions.php:6268 includes/functions.php:6479
2064
  msgid "Pageviews"
2065
  msgstr "Ogledi strani"
2066
 
2067
- #: includes/functions-check-now.php:4366 includes/functions.php:6414
2068
  msgctxt "Version"
2069
  msgid "Unknown"
2070
  msgstr "Neznana"
2071
 
2072
- #: includes/functions-check-now.php:4366 includes/functions.php:6414
2073
  msgctxt "Times"
2074
  msgid "DISPLAYED"
2075
  msgstr "PRIKAZANO"
2076
 
2077
- #: includes/functions-check-now.php:4366 includes/functions.php:6414
2078
  msgid "No version"
2079
  msgstr "Brez različice"
2080
 
2081
- #: includes/functions-check-now.php:4367 includes/functions.php:6415
2082
  msgctxt "Times"
2083
  msgid "BLOCKED"
2084
  msgstr "BLOKIRANO"
2085
 
2086
- #: includes/functions-check-now.php:4429 includes/functions.php:6479
2087
  msgid "Impressions"
2088
  msgstr "Prikazi"
2089
 
2090
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
2091
- #: includes/functions-check-now.php:4486 includes/functions.php:6480
2092
- #: includes/functions.php:6481 includes/functions.php:6663
2093
  msgid "Clicks"
2094
  msgstr "Kliki"
2095
 
2096
- #: includes/functions-check-now.php:4431 includes/functions.php:6481
2097
  msgid "events"
2098
  msgstr "dogodki"
2099
 
2100
- #: includes/functions-check-now.php:4432 includes/functions.php:6482
2101
  msgid "Ad Blocking Share"
2102
  msgstr "Delež blokiranja oglasov"
2103
 
2104
  #. translators: CTR as Click Through Rate
2105
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
2106
- #: includes/functions.php:6482 includes/functions.php:6669
2107
  msgid "CTR"
2108
  msgstr "CTR"
2109
 
2110
- #: includes/functions-check-now.php:4574 includes/functions.php:6751
2111
  msgid "pageviews"
2112
  msgid_plural "pageviews"
2113
  msgstr[0] "ogled strani"
@@ -2115,7 +2122,7 @@ msgstr[1] "ogleda strani"
2115
  msgstr[2] "oglede strani"
2116
  msgstr[3] "ogledov strani"
2117
 
2118
- #: includes/functions-check-now.php:4574 includes/functions.php:6751
2119
  msgid "impressions"
2120
  msgid_plural "impressions"
2121
  msgstr[0] "prikaz"
@@ -2123,7 +2130,7 @@ msgstr[1] "prikaza"
2123
  msgstr[2] "prikazi"
2124
  msgstr[3] "prikazov"
2125
 
2126
- #: includes/functions-check-now.php:4578 includes/functions.php:6755
2127
  msgid "event"
2128
  msgid_plural "events"
2129
  msgstr[0] "dogodek"
@@ -2131,128 +2138,144 @@ msgstr[1] "dogodka"
2131
  msgstr[2] "dogodki"
2132
  msgstr[3] "dogodkov"
2133
 
2134
- #: includes/functions-check-now.php:4673 includes/functions.php:6850
2135
  msgctxt "Pageviews / Impressions"
2136
  msgid "Average"
2137
  msgstr "Povprečni"
2138
 
2139
- #: includes/functions-check-now.php:4694 includes/functions.php:6871
2140
  msgctxt "Ad Blocking / Clicks"
2141
  msgid "Average"
2142
  msgstr "Povprečno"
2143
 
2144
- #: includes/functions-check-now.php:4718 includes/functions.php:6895
2145
  msgctxt "Ad Blocking Share / CTR"
2146
  msgid "Average"
2147
  msgstr "Povprečni"
2148
 
2149
  #. Translators: %s: Ad Inserter Pro
2150
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
2151
- #: includes/functions-check-now.php:5335 includes/functions.php:7169
2152
- #: includes/functions.php:7266 includes/functions.php:7806 strings.php:203
2153
  msgid "%s Report"
2154
  msgstr "%s Poročilo"
2155
 
2156
- #: includes/functions-check-now.php:5241 includes/functions.php:7711
2157
  msgid "for last month"
2158
  msgstr "za zadnji mesec"
2159
 
2160
- #: includes/functions-check-now.php:5246 includes/functions.php:7716
2161
  msgid "for this month"
2162
  msgstr "za ta mesec"
2163
 
2164
- #: includes/functions-check-now.php:5251 includes/functions.php:7721
2165
  msgid "for this year"
2166
  msgstr "za to leto"
2167
 
2168
- #: includes/functions-check-now.php:5256 includes/functions.php:7726
2169
  msgid "for the last 15 days"
2170
  msgstr "za zadnjih 15 dni"
2171
 
2172
- #: includes/functions-check-now.php:5261 includes/functions.php:7731
2173
  msgid "for the last 30 days"
2174
  msgstr "za zadnjih 30 dni"
2175
 
2176
- #: includes/functions-check-now.php:5266 includes/functions.php:7736
2177
  msgid "for the last 90 days"
2178
  msgstr "za zadnjih 90 dni"
2179
 
2180
- #: includes/functions-check-now.php:5271 includes/functions.php:7741
2181
  msgid "for the last 180 days"
2182
  msgstr "za zadnjih 180 dni"
2183
 
2184
- #: includes/functions-check-now.php:5276 includes/functions.php:7746
2185
  msgid "for the last 365 days"
2186
  msgstr "za zadnjih 365 dni"
2187
 
2188
- #: includes/functions.php:540 includes/functions.php:4654
2189
  msgid "Generate CSV report"
2190
  msgstr "Generiraj CSV poročilo"
2191
 
2192
  #. translators: %s: Ad Inserter Pro
2193
- #: includes/functions.php:613
2194
  msgid "Invalid %s version. Continue?"
2195
  msgstr "Neveljavna izdaja %s. Nadaljujem?"
2196
 
2197
- #: includes/functions.php:817 includes/preview.php:2653
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2198
  msgid "Background"
2199
  msgstr "Ozadje"
2200
 
2201
  #. translators: %s HTML body tag
2202
- #: includes/functions.php:824
2203
  msgid "Set %s background"
2204
  msgstr "Nastavi ozadje za %s"
2205
 
2206
- #: includes/functions.php:837
2207
  msgid "Image to be used for the background"
2208
  msgstr "Slika, ki bo uporabljena za ozadje"
2209
 
2210
- #: includes/functions.php:842
2211
  msgid "Color"
2212
  msgstr "Barva"
2213
 
2214
- #: includes/functions.php:843 includes/preview.php:2472
2215
  msgid "Color to be used for the background"
2216
  msgstr "Barva, ki bo uporabljena za ozadje"
2217
 
2218
- #: includes/functions.php:846 includes/preview.php:2477
2219
  msgid "Image size"
2220
  msgstr "Velikost slike"
2221
 
2222
- #: includes/functions.php:856
2223
  msgid "Repeat"
2224
  msgstr "Ponavljanje"
2225
 
2226
- #: includes/functions.php:869
2227
  msgid "Select image"
2228
  msgstr "Izberi sliko"
2229
 
2230
- #: includes/functions.php:1103 includes/functions.php:1131 settings.php:1793
2231
  #: settings.php:1816 settings.php:1839 settings.php:1862 settings.php:1885
2232
  #: settings.php:1908 settings.php:1930 settings.php:1952
2233
  msgid "Click to select black or white list"
2234
  msgstr "Klikni za za izbor črnega ali belega seznama"
2235
 
2236
  #. translators: %s: Ad Inserter Pro
2237
- #: includes/functions.php:1695
2238
  msgid "Invalid %s version."
2239
  msgstr "Neveljavna izdaja %s."
2240
 
2241
- #: includes/functions.php:1696
2242
  msgid "Check license"
2243
  msgstr "Preverite licenco"
2244
 
2245
- #: includes/functions.php:1711
2246
  msgid "License"
2247
  msgstr "Licenca"
2248
 
2249
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2250
- #: includes/functions.php:2056
2251
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2252
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2253
 
2254
  #. Translators: %s: HTML tags
2255
- #: includes/functions.php:2109
2256
  msgid ""
2257
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2258
  "account %s and create license key."
@@ -2260,51 +2283,59 @@ msgstr ""
2260
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2261
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2262
 
2263
- #: includes/functions.php:2871
2264
  msgid "Start date"
2265
  msgstr "Začetni datum"
2266
 
2267
- #: includes/functions.php:2871
2268
  msgid "Enter date in format yyyy-mm-dd"
2269
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2270
 
2271
- #: includes/functions.php:2871
2272
  msgid "empty means every day as defined by hours and days in week"
2273
  msgstr "prazno pomeni vsak dan kot določeno z urami in dnevi v tednu"
2274
 
2275
- #: includes/functions.php:2872
2276
  msgid "Start time"
2277
  msgstr "Začetni čas"
2278
 
2279
- #: includes/functions.php:2872
2280
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2281
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2282
 
2283
- #: includes/functions.php:2874
2284
  msgid "End date"
2285
  msgstr "Končni datum"
2286
 
2287
- #: includes/functions.php:2875
2288
  msgid "End time"
2289
  msgstr "Končni čas"
2290
 
2291
- #: includes/functions.php:2878
2292
  msgid "Select wanted days in week"
2293
  msgstr "Izberite želene dneve v tednu"
2294
 
2295
- #: includes/functions.php:3214
 
 
 
 
 
 
 
 
2296
  msgid "Ad blocking detection is disabled"
2297
  msgstr "%s Zaznavanje blokiranja oglasov je onemogočeno %s"
2298
 
2299
- #: includes/functions.php:3364
2300
  msgid "Protected"
2301
  msgstr "Zaščiten"
2302
 
2303
- #: includes/functions.php:3367
2304
  msgid "Manual loading"
2305
  msgstr "Ročno nalaganje"
2306
 
2307
- #: includes/functions.php:3458
2308
  msgid "IP address blocked"
2309
  msgid_plural "IP addresses blocked"
2310
  msgstr[0] "blokiran IP naslov"
@@ -2312,148 +2343,148 @@ msgstr[1] "blokirana IP naslova"
2312
  msgstr[2] "blokirani IP naslovi"
2313
  msgstr[3] "blokiranih IP naslovov"
2314
 
2315
- #: includes/functions.php:3461 includes/functions.php:3510
2316
  msgid "No IP address blocked"
2317
  msgstr "Noben IP naslov ni blokiran"
2318
 
2319
- #: includes/functions.php:3523
2320
  msgid "Blocked IP address"
2321
  msgstr "Blokirani IP naslovi"
2322
 
2323
- #: includes/functions.php:3523
2324
  msgid "Country"
2325
  msgstr "Država"
2326
 
2327
- #: includes/functions.php:3523
2328
  msgid "Time to expiration"
2329
  msgstr "Čas do poteka"
2330
 
2331
- #: includes/functions.php:3525 strings.php:225
2332
  msgid "Delete"
2333
  msgstr "Pobriši"
2334
 
2335
- #: includes/functions.php:3540
2336
  msgid "Delete IP address"
2337
  msgstr "Briši IP naslov"
2338
 
2339
- #: includes/functions.php:4097
2340
  msgid "CONNECTED"
2341
  msgstr "POVEZAN"
2342
 
2343
- #: includes/functions.php:4098
2344
  msgid "Disconnect website"
2345
  msgstr "Razveži spletno mesto"
2346
 
2347
- #: includes/functions.php:4114
2348
  msgid "MANAGED BY"
2349
  msgstr "UPRAVLJAN S STRANI"
2350
 
2351
- #: includes/functions.php:4135
2352
  msgid "Remote managenent"
2353
  msgstr "Oddaljeno upravljanje"
2354
 
2355
- #: includes/functions.php:4139
2356
  msgid "Allow to connect and manage plugin settings"
2357
  msgstr "Dovoli povezavo in upravljanje z nastavitvami vtičnika"
2358
 
2359
- #: includes/functions.php:4141
2360
  msgid "String to allow plugin management. Clear to reset to default value."
2361
  msgstr ""
2362
  "Niz za dovolitev upravjanja z vtičnikom. Pobrišite za ponastavitev na "
2363
  "privzeto vrednost."
2364
 
2365
- #: includes/functions.php:4149
2366
  msgid "Check remote IP address"
2367
  msgstr "Preveri oddaljeni IP naslov"
2368
 
2369
- #: includes/functions.php:4153
2370
  msgid "Check IP address of remote management website"
2371
  msgstr "Preveri IP naslov oddaljenega spletnega mesta za upravljanje"
2372
 
2373
- #: includes/functions.php:4155
2374
  msgid "Allowed IP addresses of remote management websites"
2375
  msgstr "Dovoljeni IP naslovi oddaljenih spletnih mest za upravljanje"
2376
 
2377
  #. Translators: %s: Ad Inserter Pro
2378
- #: includes/functions.php:4178
2379
  msgid "Manage %s on other websites"
2380
  msgstr "Upravljajte %s na drugih spletnih mestih"
2381
 
2382
- #: includes/functions.php:4193
2383
  msgid "Add website"
2384
  msgstr "Dodaj spletno mesto"
2385
 
2386
- #: includes/functions.php:4197
2387
  msgid "Rearrange website order"
2388
  msgstr "Preuredi vrstni red spletnih mest"
2389
 
2390
- #: includes/functions.php:4201
2391
  msgid "Cancel changes"
2392
  msgstr "Prekliči spremembe"
2393
 
2394
- #: includes/functions.php:4205
2395
  msgid "Save changes"
2396
  msgstr "Shrani spremembe"
2397
 
2398
- #: includes/functions.php:4303 includes/functions.php:4306
2399
- #: includes/functions.php:4309 includes/functions.php:4314
2400
  msgid "Invalid data received from"
2401
  msgstr "Prejeti neveljavni podatki od"
2402
 
2403
- #: includes/functions.php:4313 includes/functions.php:4317
2404
  msgid "Error connecting to"
2405
  msgstr "Napaka pri povezovanju na"
2406
 
2407
- #: includes/functions.php:4313
2408
  msgid "No data received"
2409
  msgstr "Nobenih podatkov ni bilo prejetih"
2410
 
2411
- #: includes/functions.php:4358
2412
  msgid "Error saving websites"
2413
  msgstr "Napaka pri shranjevanju spletnih mest"
2414
 
2415
- #: includes/functions.php:4398
2416
  msgid "Can't connect to itself"
2417
  msgstr "Ne morem se povezati nase"
2418
 
2419
- #: includes/functions.php:4449
2420
  msgid "Connect website"
2421
  msgstr "Pveži spletno mesto"
2422
 
2423
- #: includes/functions.php:4453
2424
  msgid "Delete website"
2425
  msgstr "Izbriši spletno mesto"
2426
 
2427
- #: includes/functions.php:4469
2428
  msgid "Key"
2429
  msgstr "Ključ"
2430
 
2431
- #: includes/functions.php:4487
2432
  msgid "Address"
2433
  msgstr "Naslov"
2434
 
2435
- #: includes/functions.php:4500
2436
  msgid "No website configured"
2437
  msgstr "Nobeno spletno mesto ni nastavljeno"
2438
 
2439
- #: includes/functions.php:4501
2440
  msgid "No website matches search keywords"
2441
  msgstr "Nobeno spletno mesto ne ustreza iskalnim ključnim besedam"
2442
 
2443
  #. Translators: %s HTML tags
2444
- #: includes/functions.php:4530
2445
  msgid "Create and manage %s MaxMind license key %s"
2446
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2447
 
2448
- #: includes/functions.php:4566
2449
  msgid "MaxMind license key"
2450
  msgstr "MaxMind licenčni ključ"
2451
 
2452
- #: includes/functions.php:4569
2453
  msgid "Enter license key obtained from MaxMind"
2454
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2455
 
2456
- #: includes/functions.php:4770
2457
  msgid ""
2458
  "Image or logo to be displayed in the header of the statistics report. "
2459
  "Absolute path starting with '/' or relative path to the image file. Clear to "
@@ -2463,11 +2494,11 @@ msgstr ""
2463
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
2464
  "ponastavitev na privzeto sliko."
2465
 
2466
- #: includes/functions.php:4818
2467
  msgid "Event category"
2468
  msgstr "Kategorija dogodka"
2469
 
2470
- #: includes/functions.php:4821
2471
  msgid ""
2472
  "Category name used for external tracking events. You can use tags to get the "
2473
  "event, the number or the name of the block that caused the event."
@@ -2475,11 +2506,11 @@ msgstr ""
2475
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2476
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2477
 
2478
- #: includes/functions.php:4826
2479
  msgid "Event action"
2480
  msgstr "Akcija dogodka"
2481
 
2482
- #: includes/functions.php:4829
2483
  msgid ""
2484
  "Action name used for external tracking events. You can use tags to get the "
2485
  "event, the number or the name of the block that caused the event."
@@ -2487,11 +2518,11 @@ msgstr ""
2487
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2488
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2489
 
2490
- #: includes/functions.php:4834
2491
  msgid "Event label"
2492
  msgstr "Oznaka dogodka"
2493
 
2494
- #: includes/functions.php:4837
2495
  msgid ""
2496
  "Label name used for external tracking events. You can use tags to get the "
2497
  "event, the number or the name of the block that caused the event."
@@ -2499,35 +2530,35 @@ msgstr ""
2499
  "Ime oznake uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2500
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2501
 
2502
- #: includes/functions.php:4870
2503
  msgid "Global visitor limits"
2504
  msgstr "Globalne omejitve obiskovalca"
2505
 
2506
- #: includes/functions.php:4893
2507
  msgid "Block IP address"
2508
  msgstr "Blokiraj IP naslov"
2509
 
2510
- #: includes/functions.php:4898
2511
  msgid "Block visitor's IP address when protection is activated"
2512
  msgstr "Blokiraj obiskovalčev IP naslov, ko je aktivirana zaščita"
2513
 
2514
- #: includes/functions.php:4900
2515
  msgid "Click to show blocked IP addresses"
2516
  msgstr "Kliknite za prikaz blokiranih IP naslovov"
2517
 
2518
  #. translators: %s: Ad Inserter Pro
2519
- #: includes/functions.php:5074
2520
  msgid "Show link to %s settings page for each site on the Sites page"
2521
  msgstr ""
2522
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2523
  "Spletišča"
2524
 
2525
  #. translators: %s: Ad Inserter Pro
2526
- #: includes/functions.php:5074
2527
  msgid "Show link to %s on the Sites page"
2528
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2529
 
2530
- #: includes/functions.php:5116 settings.php:3166
2531
  msgid ""
2532
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2533
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -2542,15 +2573,15 @@ msgstr ""
2542
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
2543
  "vedno omogočeno."
2544
 
2545
- #: includes/functions.php:5118 settings.php:3168
2546
  msgid "Remote debugging"
2547
  msgstr "Oddaljeno razhroščevanje"
2548
 
2549
- #: includes/functions.php:6562
2550
  msgid "Date"
2551
  msgstr "Datum"
2552
 
2553
- #: includes/functions.php:7030 includes/functions.php:7041
2554
  msgid "File %s missing."
2555
  msgstr "Datoteka %s ni najdena."
2556
 
@@ -2578,7 +2609,7 @@ msgstr "Zapri urejevalnik polnila"
2578
  msgid "Placeholder"
2579
  msgstr "Polnilo"
2580
 
2581
- #: includes/placeholders.php:361 settings.php:966 settings.php:4518
2582
  msgid "Size"
2583
  msgstr "Velikost"
2584
 
@@ -3059,7 +3090,7 @@ msgstr ""
3059
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
3060
  "prazne za enakomerno porazdelitev deležev različic."
3061
 
3062
- #: settings.php:309 settings.php:2107 settings.php:4436
3063
  msgid "Scheduling"
3064
  msgstr "Urnik"
3065
 
@@ -3116,7 +3147,7 @@ msgstr "Odpri vizualni HTML urejevalnik"
3116
  msgid "Clear block"
3117
  msgstr "Počisti blok"
3118
 
3119
- #: settings.php:798 settings.php:4389
3120
  msgid "Copy block"
3121
  msgstr "Kopiraj blok"
3122
 
@@ -3868,7 +3899,7 @@ msgid "Enable shortcode for manual insertion of this block in posts and pages"
3868
  msgstr ""
3869
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3870
 
3871
- #: settings.php:1986 settings.php:4446
3872
  msgid "Shortcode"
3873
  msgstr "Kratka koda"
3874
 
@@ -4737,7 +4768,7 @@ msgid ""
4737
  msgstr ""
4738
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4739
 
4740
- #: settings.php:3641 strings.php:250
4741
  msgid "Position not checked yet"
4742
  msgstr "Položaj še ni bil preverjen"
4743
 
@@ -4745,7 +4776,7 @@ msgstr "Položaj še ni bil preverjen"
4745
  msgid "Toggle active/all blocks"
4746
  msgstr "Preklopi aktive/vse bloke"
4747
 
4748
- #: settings.php:3682 strings.php:237
4749
  msgid "Rearrange block order"
4750
  msgstr "Preuredi vrstni red blokov"
4751
 
@@ -4765,7 +4796,7 @@ msgstr "Ponovno naloži oglasne enote AdSense"
4765
  msgid "Clear authorization to access AdSense account"
4766
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4767
 
4768
- #: settings.php:3726 settings.php:4603 settings.php:4670 strings.php:245
4769
  msgid "Google AdSense Homepage"
4770
  msgstr "Google AdSense Domača Stran"
4771
 
@@ -4786,7 +4817,7 @@ msgstr "Odpri %s"
4786
  msgid "Reload ads.txt file"
4787
  msgstr "Ponovno naloži datoteko ads.txt"
4788
 
4789
- #: settings.php:3782 settings.php:4735
4790
  msgid "Save"
4791
  msgstr "Shrani"
4792
 
@@ -4795,7 +4826,7 @@ msgstr "Shrani"
4795
  msgid "ads.txt file: %s virtual ads.txt file"
4796
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4797
 
4798
- #: settings.php:3967 settings.php:3987 strings.php:224
4799
  msgid "Warning"
4800
  msgstr "Opozorilo"
4801
 
@@ -4854,57 +4885,57 @@ msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4854
  msgid "Account ID found in block but not present in ads.txt"
4855
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4856
 
4857
- #: settings.php:4386
4858
  msgid "Preview block"
4859
  msgstr "Predogled bloka"
4860
 
4861
- #: settings.php:4393
4862
  msgid "Pause block"
4863
  msgstr "Ustavite blok"
4864
 
4865
- #: settings.php:4432
4866
  msgid "Automatic insertion"
4867
  msgstr "Samodejno vstavljanje"
4868
 
4869
  #. translators: %s HTML tags
4870
- #: settings.php:4433 settings.php:5768
4871
  msgid "PHP code processing"
4872
  msgstr "Procesiranje PHP kode"
4873
 
4874
- #: settings.php:4435
4875
  msgid "Device detection"
4876
  msgstr "Zaznavanje naprave"
4877
 
4878
- #: settings.php:4458
4879
  msgid "No active block"
4880
  msgstr "Noben aktiven blok"
4881
 
4882
- #: settings.php:4459
4883
  msgid "No block matches search keywords"
4884
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
4885
 
4886
- #: settings.php:4514
4887
  msgid "Ad unit"
4888
  msgstr "Enota"
4889
 
4890
- #: settings.php:4516
4891
  msgid "Slot ID"
4892
  msgstr "ID mesta"
4893
 
4894
- #: settings.php:4542
4895
  msgid "Copy AdSense code"
4896
  msgstr "Kopiraj kodo AdSense"
4897
 
4898
- #: settings.php:4545
4899
  msgid "Preview AdSense ad"
4900
  msgstr "Predogled oglasa AdSense"
4901
 
4902
- #: settings.php:4548
4903
  msgid "Get AdSense code"
4904
  msgstr "Pridobi kodo AdSense"
4905
 
4906
  #. translators: %s: HTML tags
4907
- #: settings.php:4580
4908
  msgid ""
4909
  "Please %s clear authorization %s with the button %s above and once again "
4910
  "authorize access to your AdSense account."
@@ -4912,16 +4943,16 @@ msgstr ""
4912
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4913
  "avtorizirajte dostop do vašega računa AdSense."
4914
 
4915
- #: settings.php:4599
4916
  msgid "AdSense Integration"
4917
  msgstr "Integracija AdSense"
4918
 
4919
- #: settings.php:4601
4920
  msgid "AdSense Integration - Step 2"
4921
  msgstr "Integracija AdSense - Korak 2"
4922
 
4923
  #. translators: %s: HTML tags
4924
- #: settings.php:4607
4925
  msgid ""
4926
  "Authorize %s to access your AdSense account. Click on the %s Get "
4927
  "Authorization Code %s button to open a new window where you can allow "
@@ -4934,7 +4965,7 @@ msgstr ""
4934
  "Avtoriziraj. %s"
4935
 
4936
  #. translators: %s: HTML tags
4937
- #: settings.php:4614
4938
  msgid ""
4939
  "If you get error, can't access ad units or would like to use own Google API "
4940
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4945,7 +4976,7 @@ msgstr ""
4945
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
4946
 
4947
  #. translators: %s: HTML tags
4948
- #: settings.php:4616
4949
  msgid ""
4950
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4951
  "Authorization Code %s button to open a new window where you can allow "
@@ -4958,7 +4989,7 @@ msgstr ""
4958
  "gumb %s Avtoriziraj. %s"
4959
 
4960
  #. translators: %s: HTML tags
4961
- #: settings.php:4623
4962
  msgid ""
4963
  "If you get error %s invalid client %s click on the button %s Clear and "
4964
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -4966,32 +4997,32 @@ msgstr ""
4966
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
4967
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
4968
 
4969
- #: settings.php:4634
4970
  msgid "Get Authorization Code"
4971
  msgstr "Pridobi Avtoriazcijsko Kodo"
4972
 
4973
- #: settings.php:4637
4974
  msgid "Enter Authorization Code"
4975
  msgstr "Vnesi Avorizacijsko Kodo"
4976
 
4977
- #: settings.php:4647
4978
  msgid "Use own API IDs"
4979
  msgstr "Uporabi lastne API ID-je"
4980
 
4981
- #: settings.php:4649
4982
  msgid "Clear and return to Step 1"
4983
  msgstr "Odstrani in se vrni na Korak 1"
4984
 
4985
- #: settings.php:4653
4986
  msgid "Authorize"
4987
  msgstr "Avtoriziraj"
4988
 
4989
- #: settings.php:4669
4990
  msgid "AdSense Integration - Step 1"
4991
  msgstr "Integracija AdSense - Korak 1"
4992
 
4993
  #. translators: %s: Ad Inserter
4994
- #: settings.php:4673
4995
  msgid ""
4996
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4997
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -5004,12 +5035,12 @@ msgstr ""
5004
  "Odjemalca in Skrivnost Odjemalca."
5005
 
5006
  #. translators: %s: HTML tags
5007
- #: settings.php:4682
5008
  msgid "Go to %s Google APIs and Services console %s"
5009
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
5010
 
5011
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
5012
- #: settings.php:4683
5013
  msgid ""
5014
  "Create %1$s project - if the project and IDs are already created click on "
5015
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
@@ -5018,7 +5049,7 @@ msgstr ""
5018
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
5019
 
5020
  #. translators: %s: HTML tags
5021
- #: settings.php:4684
5022
  msgid ""
5023
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
5024
  "create a new project"
@@ -5027,12 +5058,12 @@ msgstr ""
5027
  "ustvaritev novega projekta"
5028
 
5029
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
5030
- #: settings.php:4685
5031
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
5032
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
5033
 
5034
  #. translators: %s: HTML tags
5035
- #: settings.php:4686
5036
  msgid ""
5037
  "Click on project selection, wait for the project to be created and then and "
5038
  "select %s as the current project"
@@ -5041,44 +5072,44 @@ msgstr ""
5041
  "izberite %s kot trenutni projekt"
5042
 
5043
  #. translators: %s: HTML tags
5044
- #: settings.php:4687
5045
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
5046
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
5047
 
5048
  #. translators: %s: HTML tags
5049
- #: settings.php:4688
5050
  msgid "Search for adsense and enable %s"
5051
  msgstr "Poiščite adsense in omogočite %s"
5052
 
5053
  #. translators: %s: HTML tags
5054
- #: settings.php:4689
5055
  msgid "Click on %s CREATE CREDENTIALS %s"
5056
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
5057
 
5058
  #. translators: %s: HTML tags
5059
- #: settings.php:4690
5060
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
5061
  msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
5062
 
5063
  #. translators: %s: HTML tags
5064
- #: settings.php:4691
5065
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
5066
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
5067
 
5068
  #. translators: %s: HTML tags
5069
- #: settings.php:4692
5070
  msgid "For %s What data will you be accessing? %s select %s User data %s"
5071
  msgstr ""
5072
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
5073
  "podatki %s"
5074
 
5075
  #. translators: %s: HTML tags
5076
- #: settings.php:4693
5077
  msgid "Click on %s What credentials do I need? %s"
5078
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
5079
 
5080
  #. translators: %s: HTML tags
5081
- #: settings.php:4694
5082
  msgid ""
5083
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
5084
  "Consent Screen %s"
@@ -5087,13 +5118,13 @@ msgstr ""
5087
  "Nastavite Zaslon za Soglasje %s"
5088
 
5089
  #. translators: %s: HTML tags
5090
- #: settings.php:4695
5091
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
5092
  msgstr ""
5093
  "Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
5094
 
5095
  #. translators: %s: HTML tags
5096
- #: settings.php:4696
5097
  msgid ""
5098
  "For %s App name %s enter %s and for %s User support email %s select your "
5099
  "Google account email address"
@@ -5102,7 +5133,7 @@ msgstr ""
5102
  "vaš email naslov Google računa"
5103
 
5104
  #. translators: %s: HTML tags
5105
- #: settings.php:4697
5106
  msgid ""
5107
  "For %s Developer contact information %s enter your email address and click "
5108
  "on %s SAVE AND CONTINUE %s"
@@ -5111,7 +5142,7 @@ msgstr ""
5111
  "na %s SHRANI IN NADALJUJ %s"
5112
 
5113
  #. translators: %s: HTML tags
5114
- #: settings.php:4698
5115
  msgid ""
5116
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
5117
  "add your Google account email address"
@@ -5120,7 +5151,7 @@ msgstr ""
5120
  "UPORABNIKE %s in dodajte email naslov vašga Google računa"
5121
 
5122
  #. translators: %s: HTML tags
5123
- #: settings.php:4699
5124
  msgid ""
5125
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
5126
  msgstr ""
@@ -5128,7 +5159,7 @@ msgstr ""
5128
  "NADZORNO PLOŠČO %s"
5129
 
5130
  #. translators: %s: HTML tags
5131
- #: settings.php:4700
5132
  msgid ""
5133
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5134
  "Ad Inserter client %s and then click on %s REFRESH %s"
@@ -5137,14 +5168,14 @@ msgstr ""
5137
  "vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
5138
 
5139
  #. translators: %s: HTML tags
5140
- #: settings.php:4701
5141
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
5142
  msgstr ""
5143
  "Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
5144
  "OPRAVLJENO %s"
5145
 
5146
  #. translators: %s: HTML tags
5147
- #: settings.php:4702
5148
  msgid ""
5149
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5150
  "secret %s"
@@ -5152,65 +5183,65 @@ msgstr ""
5152
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5153
  "%s Skrivnost odjemalca %s"
5154
 
5155
- #: settings.php:4703
5156
  msgid "Copy them to the appropriate fields below"
5157
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5158
 
5159
- #: settings.php:4709
5160
  msgid "Client ID"
5161
  msgstr "ID odjemalca"
5162
 
5163
- #: settings.php:4712
5164
  msgid "Enter Client ID"
5165
  msgstr "Vnesite ID odjemalca"
5166
 
5167
- #: settings.php:4717
5168
  msgid "Client secret"
5169
  msgstr "Skrivnost odjemalca"
5170
 
5171
- #: settings.php:4720
5172
  msgid "Enter Client secret"
5173
  msgstr "Vnesite Skrivnost odjemalca"
5174
 
5175
- #: settings.php:4730
5176
  msgid "Use default API IDs"
5177
  msgstr "Uporabi privzete API ID-je"
5178
 
5179
- #: settings.php:4831
5180
  msgid "All posts"
5181
  msgstr "Vsi prispevki"
5182
 
5183
- #: settings.php:4832
5184
  msgid "All static pages"
5185
  msgstr "Vse statične strani"
5186
 
5187
- #: settings.php:5396 settings.php:5409 settings.php:5423 settings.php:5437
5188
- #: settings.php:5451
5189
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5190
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5191
 
5192
- #: settings.php:5401 settings.php:5414 settings.php:5428 settings.php:5442
5193
- #: settings.php:5456 settings.php:5651 settings.php:5654 settings.php:5656
5194
- #: settings.php:5665 settings.php:5674 settings.php:5679 settings.php:5687
5195
- #: settings.php:5688 settings.php:5691 settings.php:5694 settings.php:5698
5196
- #: settings.php:5708 settings.php:5712
5197
  msgid "Looking for AdSense alternative?"
5198
  msgstr "Iščete alternativo za AdSense?"
5199
 
5200
- #: settings.php:5468
5201
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5202
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5203
 
5204
- #: settings.php:5473 settings.php:5648 settings.php:5669 settings.php:5697
5205
- #: settings.php:5716
5206
  msgid "Use Infolinks ads with Adsense to earn more"
5207
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5208
 
5209
- #: settings.php:5494 settings.php:5544
5210
  msgid "Support plugin development"
5211
  msgstr "Podprite razvoj vtičnika"
5212
 
5213
- #: settings.php:5499 settings.php:5545
5214
  msgid ""
5215
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5216
  "reviewing the plugin on WordPres"
@@ -5218,12 +5249,12 @@ msgstr ""
5218
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5219
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5220
 
5221
- #: settings.php:5499
5222
  msgctxt "Review Ad Inserter"
5223
  msgid "Review"
5224
  msgstr "Ocenite"
5225
 
5226
- #: settings.php:5504
5227
  msgid ""
5228
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5229
  "rating the plugin on WordPres"
@@ -5231,12 +5262,12 @@ msgstr ""
5231
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5232
  "razširiti novico z oceno vtičnika na WordPress-u"
5233
 
5234
- #: settings.php:5504
5235
  msgctxt "Rate Ad Inserter"
5236
  msgid "Rate"
5237
  msgstr "Ocenite"
5238
 
5239
- #: settings.php:5509
5240
  msgid ""
5241
  "Support free Ad Inserter development. If you are making money with Ad "
5242
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -5245,16 +5276,16 @@ msgstr ""
5245
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5246
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5247
 
5248
- #: settings.php:5509
5249
  msgid "Donate"
5250
  msgstr "Donirajte"
5251
 
5252
- #: settings.php:5516 settings.php:5560
5253
  msgid "Average rating of the plugin - Thank you!"
5254
  msgstr "Povprečna ocena vtičnika - Hvala!"
5255
 
5256
  #. translators: %s: Ad Inserter, HTML tags
5257
- #: settings.php:5527
5258
  msgid ""
5259
  "You've been using %s for a while now, and I hope you're happy with it. "
5260
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -5269,24 +5300,24 @@ msgstr ""
5269
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5270
  "bi rekli 'Hvala'."
5271
 
5272
- #: settings.php:5545
5273
  msgid "Review"
5274
  msgstr "Ocena"
5275
 
5276
- #: settings.php:5549
5277
  msgid "Ad Inserter on Twitter"
5278
  msgstr "Ad Inserter na Twitter-ju"
5279
 
5280
- #: settings.php:5550
5281
  msgid "Ad Inserter on Facebook"
5282
  msgstr "Ad Inserter na Facebook-u"
5283
 
5284
- #: settings.php:5553
5285
  msgid "Follow Ad Inserter"
5286
  msgstr "Sledi Ad Inserter-ju"
5287
 
5288
  #. translators: %s: HTML tags
5289
- #: settings.php:5580
5290
  msgid ""
5291
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5292
  "and %s Common Settings %s pages"
@@ -5295,7 +5326,7 @@ msgstr ""
5295
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5296
 
5297
  #. translators: %s: HTML tags
5298
- #: settings.php:5592
5299
  msgid ""
5300
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5301
  "Auto ads, %s %s AMP ads %s"
@@ -5304,7 +5335,7 @@ msgstr ""
5304
  "viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
5305
 
5306
  #. translators: %s: HTML tags
5307
- #: settings.php:5609
5308
  msgid ""
5309
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5310
  "purchase you refer to us"
@@ -5313,7 +5344,7 @@ msgstr ""
5313
  "nakup, ki nam ga posredujete"
5314
 
5315
  #. translators: %s: HTML tags
5316
- #: settings.php:5616
5317
  msgid ""
5318
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5319
  "diagnose and fix the problem."
@@ -5322,7 +5353,7 @@ msgstr ""
5322
  "navodili za diagnozo in rešitvami za težave."
5323
 
5324
  #. translators: %s: HTML tags
5325
- #: settings.php:5620
5326
  msgid ""
5327
  "If you need any kind of help or support, please do not hesitate to open a "
5328
  "thread on the %s support forum. %s"
@@ -5330,57 +5361,57 @@ msgstr ""
5330
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5331
  "nit na %s podpornem forumu. %s"
5332
 
5333
- #: settings.php:5647 settings.php:5717 settings.php:5721
5334
  msgid "Code preview with visual CSS editor"
5335
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5336
 
5337
- #: settings.php:5650 settings.php:5678
5338
  msgid "Ad blocking detection and content protection"
5339
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5340
 
5341
- #: settings.php:5653 settings.php:5706
5342
  msgid "A/B testing - Track ad impressions and clicks"
5343
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5344
 
5345
- #: settings.php:5670
5346
  msgid "Insert ads on AMP pages"
5347
  msgstr "Vstavite oglase na AMP straneh"
5348
 
5349
- #: settings.php:5729
5350
  msgid "Looking for Pro Ad Management plugin?"
5351
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5352
 
5353
- #: settings.php:5730
5354
  msgid "To Optimally Monetize your WordPress website?"
5355
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5356
 
5357
  #. Translators: %s: price of Ad Inserter Pro
5358
- #: settings.php:5731
5359
  msgid "Different license types starting from %s"
5360
  msgstr "Različni tipi licenc začenši od %s"
5361
 
5362
  #. translators: %s HTML tags
5363
- #: settings.php:5734
5364
  msgid "%s AdSense Integration %s"
5365
  msgstr "%s Integracija AdSense %s"
5366
 
5367
  #. translators: %s HTML tags
5368
- #: settings.php:5735
5369
  msgid "Syntax highlighting %s editor %s"
5370
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5371
 
5372
  #. translators: %s HTML tags
5373
- #: settings.php:5736
5374
  msgid "%s Code preview %s with visual CSS editor"
5375
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5376
 
5377
  #. translators: %s HTML tags
5378
- #: settings.php:5737
5379
  msgid "Simple user interface - all settings on a single page"
5380
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5381
 
5382
  #. translators: %s HTML tags
5383
- #: settings.php:5738
5384
  msgid ""
5385
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5386
  "image / excerpt"
@@ -5389,27 +5420,27 @@ msgstr ""
5389
  "%s / sliko / izvlečkom"
5390
 
5391
  #. translators: %s HTML tags
5392
- #: settings.php:5739
5393
  msgid "%s Automatic insertion %s between posts on blog pages"
5394
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5395
 
5396
  #. translators: %s HTML tags
5397
- #: settings.php:5740
5398
  msgid "%s Automatic insertion %s before, between and after comments"
5399
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5400
 
5401
  #. translators: %s HTML tags
5402
- #: settings.php:5741
5403
  msgid "%s Automatic insertion %s after %s or before %s tag"
5404
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5405
 
5406
  #. translators: %s HTML tags
5407
- #: settings.php:5742
5408
  msgid "Automatic insertion at %s custom hook positions %s"
5409
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5410
 
5411
  #. translators: %s HTML tags
5412
- #: settings.php:5743
5413
  msgid ""
5414
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5415
  "selectors)"
@@ -5418,17 +5449,17 @@ msgstr ""
5418
  "selektorjev)"
5419
 
5420
  #. translators: %s HTML tags
5421
- #: settings.php:5744
5422
  msgid "%s Insertion exceptions %s for individual posts and pages"
5423
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5424
 
5425
  #. translators: %s HTML tags
5426
- #: settings.php:5745
5427
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5428
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5429
 
5430
  #. translators: %s HTML tags
5431
- #: settings.php:5746
5432
  msgid ""
5433
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5434
  "scrolls)"
@@ -5437,24 +5468,24 @@ msgstr ""
5437
  "se stran pomika)"
5438
 
5439
  #. translators: %s HTML tags
5440
- #: settings.php:5747
5441
  msgid "%s Background ads %s with one or left and right background images"
5442
  msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
5443
 
5444
  #. translators: %s HTML tags
5445
- #: settings.php:5748
5446
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5447
  msgstr ""
5448
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5449
 
5450
  #. translators: %s HTML tags
5451
- #: settings.php:5749
5452
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5453
  msgstr ""
5454
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5455
 
5456
  #. translators: %s HTML tags
5457
- #: settings.php:5750
5458
  msgid ""
5459
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5460
  "visible)"
@@ -5463,7 +5494,7 @@ msgstr ""
5463
  "postane viden)"
5464
 
5465
  #. translators: %s HTML tags
5466
- #: settings.php:5751
5467
  msgid ""
5468
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5469
  msgstr ""
@@ -5471,12 +5502,12 @@ msgstr ""
5471
  "strani)"
5472
 
5473
  #. translators: %s HTML tags
5474
- #: settings.php:5752
5475
  msgid "Block %s alignment and style %s customizations"
5476
  msgstr "%s Poravnave in slogi %s bloka po meri"
5477
 
5478
  #. translators: %s HTML tags
5479
- #: settings.php:5753
5480
  msgid ""
5481
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5482
  "TOS)"
@@ -5484,7 +5515,7 @@ msgstr ""
5484
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5485
 
5486
  #. translators: %s HTML tags
5487
- #: settings.php:5754
5488
  msgid ""
5489
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5490
  "feeds"
@@ -5493,17 +5524,17 @@ msgstr ""
5493
  "virih"
5494
 
5495
  #. translators: %s HTML tags
5496
- #: settings.php:5755
5497
  msgid "%s Ad rotation %s (works also with caching)"
5498
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5499
 
5500
  #. translators: %s HTML tags
5501
- #: settings.php:5756
5502
  msgid "Create, edit and check %s ads.txt %s file"
5503
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5504
 
5505
  #. translators: %s HTML tags
5506
- #: settings.php:5757
5507
  msgid ""
5508
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5509
  "AdSense)"
@@ -5512,86 +5543,86 @@ msgstr ""
5512
  "AdSense)"
5513
 
5514
  #. translators: %s HTML tags
5515
- #: settings.php:5758
5516
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5517
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5518
 
5519
  #. translators: %s HTML tags
5520
- #: settings.php:5759
5521
  msgid "%s Public web reports %s for clients, export to PDF"
5522
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5523
 
5524
  #. translators: %s HTML tags
5525
- #: settings.php:5760
5526
  msgid "Support for %s A/B testing %s"
5527
  msgstr "Podpora za %s A/B testiranje %s"
5528
 
5529
  #. translators: %s HTML tags
5530
- #: settings.php:5761
5531
  msgid "Frequency capping - %s limit impressions or clicks %s"
5532
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5533
 
5534
  #. translators: %s HTML tags
5535
- #: settings.php:5762
5536
  msgid "Click fraud %s protection %s"
5537
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5538
 
5539
  #. translators: %s HTML tags
5540
- #: settings.php:5763
5541
  msgid "Support for %s GDPR consent cookie checks %s"
5542
  msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
5543
 
5544
  #. translators: %s HTML tags
5545
- #: settings.php:5764
5546
  msgid "Support for %s lazy loading %s"
5547
  msgstr "Podpora za %s leno nalaganje %s"
5548
 
5549
  #. translators: %s HTML tags
5550
- #: settings.php:5765
5551
  msgid "Support for ads on %s AMP pages %s"
5552
  msgstr "Podpora za oglase na %s AMP straneh %s"
5553
 
5554
  #. translators: %s HTML tags
5555
- #: settings.php:5766
5556
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5557
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5558
 
5559
  #. translators: %s HTML tags
5560
- #: settings.php:5767
5561
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5562
  msgstr ""
5563
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5564
 
5565
  #. translators: %s HTML tags
5566
- #: settings.php:5769
5567
  msgid "%s Banner %s code generator"
5568
  msgstr "Generator kode za %s pasice %s"
5569
 
5570
  #. translators: %s HTML tags
5571
- #: settings.php:5770
5572
  msgid "Support for %s header and footer %s code"
5573
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5574
 
5575
  #. translators: %s HTML tags
5576
- #: settings.php:5771
5577
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5578
  msgstr ""
5579
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5580
 
5581
  #. translators: %s HTML tags
5582
- #: settings.php:5772
5583
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5584
  msgstr ""
5585
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5586
  "strežnika"
5587
 
5588
  #. translators: %s HTML tags
5589
- #: settings.php:5773
5590
  msgid "Client-side %s mobile device detection %s (works with caching)"
5591
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5592
 
5593
  #. translators: %s HTML tags
5594
- #: settings.php:5774
5595
  msgid ""
5596
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5597
  "protection"
@@ -5600,12 +5631,12 @@ msgstr ""
5600
  "vsebine"
5601
 
5602
  #. translators: %s HTML tags
5603
- #: settings.php:5775
5604
  msgid "%s Ad blocking statistics %s"
5605
  msgstr "%s Statistika blokiranja oglasov %s"
5606
 
5607
  #. translators: %s HTML tags
5608
- #: settings.php:5776
5609
  msgid ""
5610
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5611
  "referrers, operating systems, browsers"
@@ -5614,75 +5645,75 @@ msgstr ""
5614
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5615
 
5616
  #. translators: %s HTML tags
5617
- #: settings.php:5777
5618
  msgid ""
5619
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5620
  msgstr ""
5621
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5622
 
5623
  #. translators: %s HTML tags
5624
- #: settings.php:5778
5625
  msgid "%s Multisite options %s to limit settings on the sites"
5626
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5627
 
5628
  #. translators: %s HTML tags
5629
- #: settings.php:5779
5630
  msgid "%s Import/Export %s block or plugin settings"
5631
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5632
 
5633
  #. translators: %s HTML tags
5634
- #: settings.php:5780
5635
  msgid "%s Insertion scheduling %s with fallback option"
5636
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5637
 
5638
  #. translators: %s HTML tags
5639
- #: settings.php:5781
5640
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5641
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5642
 
5643
  #. translators: %s HTML tags
5644
- #: settings.php:5782
5645
  msgid "Simple troubleshooting with many %s debugging functions %s"
5646
  msgstr ""
5647
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5648
 
5649
  #. translators: %s HTML tags
5650
- #: settings.php:5783
5651
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5652
  msgstr ""
5653
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5654
 
5655
  #. translators: %s HTML tags
5656
- #: settings.php:5784
5657
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5658
  msgstr ""
5659
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5660
 
5661
  #. translators: %s HTML tags
5662
- #: settings.php:5785
5663
  msgid ""
5664
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5665
  msgstr ""
5666
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5667
 
5668
  #. translators: %s HTML tags
5669
- #: settings.php:5786
5670
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5671
  msgstr ""
5672
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5673
 
5674
  #. translators: %s HTML tags
5675
- #: settings.php:5787
5676
  msgid "No ads on the settings page"
5677
  msgstr "Stran z nastavitvami brez oglasov"
5678
 
5679
  #. translators: %s HTML tags
5680
- #: settings.php:5788
5681
  msgid "Premium support"
5682
  msgstr "Vrhunska podpora"
5683
 
5684
  #. translators: %s HTML tags
5685
- #: settings.php:5791
5686
  msgid ""
5687
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5688
  "website with many advertising features to automatically insert adverts on "
@@ -5709,82 +5740,82 @@ msgstr ""
5709
  "bodo ohranile)."
5710
 
5711
  #. translators: %s HTML tags
5712
- #: settings.php:5804
5713
  msgid "Looking for %s Pro Ad Management plugin? %s"
5714
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5715
 
5716
  #. translators: %s HTML tags
5717
- #: settings.php:5809
5718
  msgid "Ads between posts"
5719
  msgstr "Oglasi med prispevki"
5720
 
5721
  #. translators: %s HTML tags
5722
- #: settings.php:5810
5723
  msgid "Ads between comments"
5724
  msgstr "Oglasi med komentarji"
5725
 
5726
  #. translators: %s HTML tags
5727
- #: settings.php:5811
5728
  msgid "Support via email"
5729
  msgstr "Podpora prek elektronske pošte"
5730
 
5731
  #. translators: %s HTML tags
5732
- #: settings.php:5817
5733
  msgid "%s Sticky positions %s"
5734
  msgstr "%s Lepljivi položaji %s"
5735
 
5736
  #. translators: %s HTML tags
5737
- #: settings.php:5818
5738
  msgid "%s Limit insertions %s"
5739
  msgstr "%s Omeji vstavljanja %s"
5740
 
5741
  #. translators: %s HTML tags
5742
- #: settings.php:5819
5743
  msgid "%s Clearance %s options"
5744
  msgstr "Možnosti %s izogibanja %s"
5745
 
5746
  #. translators: %s HTML tags
5747
- #: settings.php:5825
5748
  msgid "Ad rotation"
5749
  msgstr "Vrtenje oglasov"
5750
 
5751
  #. translators: %s HTML tags
5752
- #: settings.php:5826
5753
  msgid "%s A/B testing %s"
5754
  msgstr "%s A/B testiranje %s"
5755
 
5756
  #. translators: %s HTML tags
5757
- #: settings.php:5827
5758
  msgid "%s Ad tracking %s"
5759
  msgstr "%s Sledenje oglasom %s"
5760
 
5761
  #. translators: %s HTML tags
5762
- #: settings.php:5833
5763
  msgid "Support for %s AMP pages %s"
5764
  msgstr "Podpora za %s AMP strani %s"
5765
 
5766
  #. translators: %s HTML tags
5767
- #: settings.php:5834
5768
  msgid "%s Ad blocking detection %s"
5769
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5770
 
5771
  #. translators: %s HTML tags
5772
- #: settings.php:5835
5773
  msgid "%s Mobile device detection %s"
5774
  msgstr "%s Zaznavanje mobilne naprave %s"
5775
 
5776
  #. translators: %s HTML tags
5777
- #: settings.php:5842
5778
  msgid "64 code blocks"
5779
  msgstr "64 kodnih blokov"
5780
 
5781
  #. translators: %s HTML tags
5782
- #: settings.php:5843
5783
  msgid "%s GEO targeting %s"
5784
  msgstr "%s GEO ciljanje %s"
5785
 
5786
  #. translators: %s HTML tags
5787
- #: settings.php:5844
5788
  msgid "%s Scheduling %s"
5789
  msgstr "%s Urnik %s"
5790
 
@@ -6232,291 +6263,295 @@ msgid "Page scrolled (px)"
6232
  msgstr "Stran pomaknjena (px)"
6233
 
6234
  #: strings.php:136
6235
- msgid "Element visible"
6236
- msgstr "Element viden"
 
 
 
 
6237
 
6238
- #: strings.php:138
6239
  msgctxt "image repeat"
6240
  msgid "Default"
6241
  msgstr "Privzeto"
6242
 
6243
- #: strings.php:139
6244
  msgid "No"
6245
  msgstr "Ne"
6246
 
6247
- #: strings.php:140
6248
  msgid "Yes"
6249
  msgstr "Da"
6250
 
6251
- #: strings.php:141
6252
  msgid "Horizontally"
6253
  msgstr "Vodoravno"
6254
 
6255
- #: strings.php:142
6256
  msgid "Vertically"
6257
  msgstr "Navpično"
6258
 
6259
- #: strings.php:143
6260
  msgid "Space"
6261
  msgstr "Prostor"
6262
 
6263
- #: strings.php:144
6264
  msgid "Round"
6265
  msgstr "Zaokroženo"
6266
 
6267
- #: strings.php:146
6268
  msgctxt "image size"
6269
  msgid "Default"
6270
  msgstr "Privzeta"
6271
 
6272
- #: strings.php:147
6273
  msgid "Cover"
6274
  msgstr "Pokrij"
6275
 
6276
- #: strings.php:148
6277
  msgctxt "image size"
6278
  msgid "Fit"
6279
  msgstr "Prilagodi"
6280
 
6281
- #: strings.php:149
6282
  msgid "Fill"
6283
  msgstr "Zapolni"
6284
 
6285
- #: strings.php:151
6286
  msgid "Insert immediately"
6287
  msgstr "Vstavi takoj"
6288
 
6289
- #: strings.php:152
6290
  msgid "Delay insertion"
6291
  msgstr "Zakasni vstavljanje"
6292
 
6293
- #: strings.php:153
6294
  msgid "Insert between dates"
6295
  msgstr "Vstavi med datumoma"
6296
 
6297
- #: strings.php:154
6298
  msgid "Insert outside dates"
6299
  msgstr "Vstavi izven datumov"
6300
 
6301
- #: strings.php:155
6302
  msgid "Insert only"
6303
  msgstr "Vstavi samo"
6304
 
6305
- #: strings.php:156
6306
  msgid "Insert for posts published between dates"
6307
  msgstr "Vstavi samo za prispevke objavljene med datumoma"
6308
 
6309
- #: strings.php:157
6310
  msgid "Insert for posts published outside dates"
6311
  msgstr "Vstavi samo za prispevke objavljene izven datumov"
6312
 
6313
- #: strings.php:159
6314
  msgctxt "functions"
6315
  msgid "Standard"
6316
  msgstr "Običajne"
6317
 
6318
- #: strings.php:160
6319
  msgctxt "detection"
6320
  msgid "Standard"
6321
  msgstr "Običajno"
6322
 
6323
- #: strings.php:161
6324
  msgctxt "functions"
6325
  msgid "Multibyte"
6326
  msgstr "Večznakovne"
6327
 
6328
- #: strings.php:163
6329
  msgctxt "action"
6330
  msgid "None"
6331
  msgstr "Nobena"
6332
 
6333
- #: strings.php:164
6334
  msgctxt "button"
6335
  msgid "None"
6336
  msgstr "Noben"
6337
 
6338
- #: strings.php:165
6339
  msgid "Popup Message"
6340
  msgstr "Pojavno Sporočilo"
6341
 
6342
- #: strings.php:166
6343
  msgid "Redirection"
6344
  msgstr "Preusmeritev"
6345
 
6346
- #: strings.php:168
6347
  msgid "Do nothing"
6348
  msgstr "Ne naredi ničesar"
6349
 
6350
- #: strings.php:170
6351
  msgctxt "Action when ad blocking detected"
6352
  msgid "Show"
6353
  msgstr "Pokaži"
6354
 
6355
- #: strings.php:171
6356
  msgctxt "Action when ad blocking detected"
6357
  msgid "Hide"
6358
  msgstr "Skrij"
6359
 
6360
- #: strings.php:173
6361
  msgctxt "tracking"
6362
  msgid "Internal"
6363
  msgstr "Interno"
6364
 
6365
- #: strings.php:174
6366
  msgctxt "detection"
6367
  msgid "Advanced"
6368
  msgstr "Napredno"
6369
 
6370
- #: strings.php:177
6371
  msgctxt "Manual loading"
6372
  msgid "Auto"
6373
  msgstr "Samodejno"
6374
 
6375
- #: strings.php:178
6376
  msgctxt "Manual loading"
6377
  msgid "Always"
6378
  msgstr "Vedno"
6379
 
6380
- #: strings.php:180
6381
  msgid "Top right"
6382
  msgstr "Zgoraj desno"
6383
 
6384
- #: strings.php:181
6385
  msgid "Top left"
6386
  msgstr "Zgoraj levo"
6387
 
6388
- #: strings.php:182
6389
  msgid "Bottom right"
6390
  msgstr "Spodaj desno"
6391
 
6392
- #: strings.php:183
6393
  msgid "Bottom left"
6394
  msgstr "Spodaj levo"
6395
 
6396
- #: strings.php:185
6397
  msgctxt "AdSense Ad Type"
6398
  msgid "Standard"
6399
  msgstr "Običajni"
6400
 
6401
- #: strings.php:186
6402
  msgctxt "AdSense Ad Type"
6403
  msgid "Link"
6404
  msgstr "Povezave"
6405
 
6406
- #: strings.php:187
6407
  msgctxt "AdSense Ad Type"
6408
  msgid "In-article"
6409
  msgstr "V članku"
6410
 
6411
- #: strings.php:188
6412
  msgctxt "AdSense Ad Type"
6413
  msgid "In-feed"
6414
  msgstr "V viru"
6415
 
6416
- #: strings.php:189
6417
  msgctxt "AdSense Ad Type"
6418
  msgid "Matched content"
6419
  msgstr "Prilagojena vsebina"
6420
 
6421
- #: strings.php:190
6422
  msgctxt "AdSense Ad Type"
6423
  msgid "Auto Ads"
6424
  msgstr "Samodejni"
6425
 
6426
- #: strings.php:191
6427
  msgctxt "AdSense Ad Type"
6428
  msgid "AMP Only"
6429
  msgstr "Samo AMP"
6430
 
6431
- #: strings.php:193
6432
  msgctxt "AMP ad"
6433
  msgid "Disabled"
6434
  msgstr "Onemogočen"
6435
 
6436
- #: strings.php:194
6437
  msgid "Above the fold"
6438
  msgstr "Nad pregibom"
6439
 
6440
- #: strings.php:195
6441
  msgid "Below the fold"
6442
  msgstr "Pod pregibom"
6443
 
6444
- #: strings.php:196
6445
  msgctxt "AMP ad"
6446
  msgid "Sticky"
6447
  msgstr "Lepljiv"
6448
 
6449
- #: strings.php:198
6450
  msgctxt "size"
6451
  msgid "Fixed"
6452
  msgstr "Fiksna"
6453
 
6454
- #: strings.php:199
6455
  msgctxt "size"
6456
  msgid "Responsive"
6457
  msgstr "Odzivna"
6458
 
6459
- #: strings.php:200
6460
  msgctxt "size"
6461
  msgid "Fixed by viewport"
6462
  msgstr "Fiksna glede na pogled"
6463
 
6464
- #: strings.php:204
6465
  msgid "Impressions and clicks"
6466
  msgstr "Prikazi in Kliki"
6467
 
6468
- #: strings.php:205
6469
  msgid "Advanced WordPress Ad Management Plugin"
6470
  msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
6471
 
6472
- #: strings.php:211
6473
  msgctxt "Button"
6474
  msgid "Hide"
6475
  msgstr "Skrij"
6476
 
6477
- #: strings.php:212
6478
  msgctxt "Button"
6479
  msgid "Show"
6480
  msgstr "Pokaži"
6481
 
6482
- #: strings.php:213
6483
  msgid "Insertion expired"
6484
  msgstr "Vstavljanje poteklo"
6485
 
6486
- #: strings.php:214
6487
  msgid "Duration"
6488
  msgstr "Trajanje"
6489
 
6490
- #: strings.php:215
6491
  msgid "Invalid end date - must be after start date"
6492
  msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
6493
 
6494
- #: strings.php:216
6495
  msgid "Invalid start date - only data for 1 year back is available"
6496
  msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
6497
 
6498
- #: strings.php:217
6499
  msgid "Invalid date range - only data for 1 year can be displayed"
6500
  msgstr ""
6501
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
6502
 
6503
- #: strings.php:226
6504
  msgid "Delete all"
6505
  msgstr "Pobriši vse"
6506
 
6507
- #: strings.php:227
6508
  msgid "Switch"
6509
  msgstr "Preklopi"
6510
 
6511
- #: strings.php:229
6512
  msgid "OK"
6513
  msgstr "V redu"
6514
 
6515
- #: strings.php:230
6516
  msgid "Delete all statistics data?"
6517
  msgstr "Pobrišem vse podatke o statistiki?"
6518
 
6519
- #: strings.php:231
6520
  msgid ""
6521
  "Rotation code editor active. Click on the rotation button to generate code."
6522
  msgstr ""
@@ -6524,66 +6559,66 @@ msgstr ""
6524
  "generiranje kode."
6525
 
6526
  #. translators: %s: dates
6527
- #: strings.php:234
6528
  msgid "Delete statistics data between %s and %s?"
6529
  msgstr "Pobrišem podatke o statistiki med %s in %s?"
6530
 
6531
- #: strings.php:235
6532
  msgid "Delete website?"
6533
  msgstr "Izbrišem spletno mesto?"
6534
 
6535
- #: strings.php:236
6536
  msgid "Cancel block order rearrangement"
6537
  msgstr "Prekliči preureditev vrstnega reda blokov"
6538
 
6539
- #: strings.php:238
6540
  msgid "downloading..."
6541
  msgstr "prenašam..."
6542
 
6543
- #: strings.php:239
6544
  msgid "download error"
6545
  msgstr "napaka pri prenosu"
6546
 
6547
- #: strings.php:240
6548
  msgid "update error"
6549
  msgstr "napaka pri posodobitvi"
6550
 
6551
- #: strings.php:241
6552
  msgid "Updating..."
6553
  msgstr "Posodabljam..."
6554
 
6555
- #: strings.php:243
6556
  msgid "ERROR"
6557
  msgstr "NAPAKA"
6558
 
6559
- #: strings.php:244
6560
  msgid "Error reloading settings"
6561
  msgstr "Napaka pri nalaganju nastavitev"
6562
 
6563
- #: strings.php:246
6564
  msgctxt "Search field placeholder"
6565
  msgid "Search..."
6566
  msgstr "Išči..."
6567
 
6568
- #: strings.php:247
6569
  msgctxt "Search field placeholder"
6570
  msgid "Filter..."
6571
  msgstr "Filter..."
6572
 
6573
- #: strings.php:248
6574
  msgid "Use filter to limit names in the list"
6575
  msgstr "Uporabite filter za omejitev imen v seznamu"
6576
 
6577
- #: strings.php:249
6578
  msgctxt "Button"
6579
  msgid "Filter"
6580
  msgstr "Filter"
6581
 
6582
- #: strings.php:251
6583
  msgid "Position not available"
6584
  msgstr "Položaj ni na razpolago"
6585
 
6586
- #: strings.php:252
6587
  msgid ""
6588
  "Theme check | Selected position for automatic insertion might not be not "
6589
  "available on this page type"
@@ -6591,105 +6626,100 @@ msgstr ""
6591
  "Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
6592
  "razpolago na tem tipu strani"
6593
 
6594
- #: strings.php:253
6595
  msgid "Position available"
6596
  msgstr "Položaj na razpolago"
6597
 
6598
- #: strings.php:255
6599
  msgid "Select or upload banner image"
6600
  msgstr "Izberi ali naloži sliko pasice"
6601
 
6602
- #: strings.php:256
6603
  msgid "Select or upload background image"
6604
  msgstr "Izberi ali naloži sliko ozadja"
6605
 
6606
- #: strings.php:257
6607
  msgid "Use this image"
6608
  msgstr "Uporabi to sliko"
6609
 
6610
- #: strings.php:258
6611
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
6612
  msgstr ""
6613
  "Preklop na fizično datoteko ads.txt bo izbrisal navidezno datoreko ads.txt."
6614
 
6615
- #: strings.php:260
6616
  msgctxt "Monday"
6617
  msgid "MO"
6618
  msgstr "PO"
6619
 
6620
- #: strings.php:261
6621
  msgctxt "Tuesday"
6622
  msgid "TU"
6623
  msgstr "TO"
6624
 
6625
- #: strings.php:262
6626
  msgctxt "Wednesday"
6627
  msgid "WE"
6628
  msgstr "SR"
6629
 
6630
- #: strings.php:263
6631
  msgctxt "Thursday"
6632
  msgid "TH"
6633
  msgstr "ČE"
6634
 
6635
- #: strings.php:264
6636
  msgctxt "Friday"
6637
  msgid "FR"
6638
  msgstr "PE"
6639
 
6640
- #: strings.php:265
6641
  msgctxt "Saturday"
6642
  msgid "SA"
6643
  msgstr "SO"
6644
 
6645
- #: strings.php:266
6646
  msgctxt "Sunday"
6647
  msgid "SU"
6648
  msgstr "NE"
6649
 
6650
- #: strings.php:282
6651
- msgctxt "Scheduling"
6652
- msgid "FALLBACK"
6653
- msgstr "REZERVA"
6654
-
6655
- #: strings.php:283
6656
  msgid "Automatically placed by AdSense Auto ads code"
6657
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
6658
 
6659
- #: strings.php:288
6660
  msgid "Add"
6661
  msgstr "Dodaj"
6662
 
6663
- #: strings.php:289
6664
  msgctxt "Element"
6665
  msgid "Parent"
6666
  msgstr "Nadrejeni"
6667
 
6668
- #: strings.php:290
6669
  msgid "Cancel element selection"
6670
  msgstr "Prekliči izbor HTML elementa"
6671
 
6672
- #: strings.php:291
6673
  msgid "Select parent element"
6674
  msgstr "Izberi nadrejeni element"
6675
 
6676
- #: strings.php:292
6677
  msgid "CSS selector"
6678
  msgstr "CSS selektor"
6679
 
6680
- #: strings.php:293
6681
  msgid "Use current selector"
6682
  msgstr "Uporabi trenutni selektor"
6683
 
6684
- #: strings.php:294
6685
  msgid "ELEMENT"
6686
  msgstr "ELEMENT"
6687
 
6688
- #: strings.php:295
6689
  msgid "PATH"
6690
  msgstr "POT"
6691
 
6692
- #: strings.php:296
6693
  msgid "SELECTOR"
6694
  msgstr "SELEKTOR"
6695
 
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2021-10-22 16:27:39+00:00\n"
8
+ "PO-Revision-Date: 2021-10-22 18:31+0200\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
+ #: ad-inserter.php:281
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:297
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:304
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:390
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:397
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:406
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:413
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:424
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
+ #: ad-inserter.php:431
60
  msgctxt "Menu item"
61
  msgid "Show Log"
62
  msgstr "Pokaži beležko"
63
 
64
  #. translators: Debugging position name Before HTML element
65
+ #: ad-inserter.php:1101
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
+ #: ad-inserter.php:1106
71
  msgid "After"
72
  msgstr "Za"
73
 
74
  #. translators: Debugging position name Prepend content of HTML element (before
75
  #. the content of the HTML element)
76
+ #: ad-inserter.php:1111 strings.php:104
77
  msgid "Prepend content"
78
  msgstr "Dodaj pred vsebino"
79
 
80
  #. translators: Debugging position name Append content of HTML element (after
81
  #. the content of the HTML element)
82
+ #: ad-inserter.php:1116 strings.php:105
83
  msgid "Append content"
84
  msgstr "Dodaj za vsebino"
85
 
86
  #. translators: Debugging position name Replace content of HTML element
87
+ #: ad-inserter.php:1121 strings.php:106
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
+ #: ad-inserter.php:1126 strings.php:170
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
+ #: ad-inserter.php:1173
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
+ #: ad-inserter.php:1177
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
+ #: ad-inserter.php:1475
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
+ #: ad-inserter.php:1829 ad-inserter.php:3266
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
+ #: ad-inserter.php:2570
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
+ #: ad-inserter.php:2570
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
+ #: ad-inserter.php:2571
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
+ #: ad-inserter.php:2572
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
+ #: ad-inserter.php:2573
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
+ #: ad-inserter.php:2574
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
+ #: ad-inserter.php:2575
142
  msgid "AD BLOCKING DETECTED - NO ACTION"
143
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
144
 
145
  #. Translators: 1: number of blocks, 2: Ad Inserter
146
+ #: ad-inserter.php:2961
147
  msgid "Hey, you are now using %1$s %2$s block."
148
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
149
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
151
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
152
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
153
 
154
+ #: ad-inserter.php:2964
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
+ #: ad-inserter.php:2968
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
+ #: ad-inserter.php:2973
164
  msgid "Hey, you are using %s and I hope you're happy with it."
165
  msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
166
 
167
+ #: ad-inserter.php:2976
168
  msgid "OK, but please help me with the settings first"
169
  msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
170
 
171
+ #: ad-inserter.php:2989
172
  msgid ""
173
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
174
  "like saying 'Thank you'. Somebody will be happy."
176
  "Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
177
  "je kot bi rekli 'Hvala'. Nekdo bo vsesel."
178
 
179
+ #: ad-inserter.php:2991
180
  msgid ""
181
  "Positive reviews are a great incentive to fix bugs and to add new features "
182
  "for better monetization of your website."
184
  "Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
185
  "funkcij za boljšo monetizacijo vašega spletnega mesta."
186
 
187
+ #: ad-inserter.php:2997
188
  msgid "Sure"
189
  msgstr "Seveda"
190
 
191
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
192
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
193
+ #: ad-inserter.php:3014 ad-inserter.php:3049
194
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
195
  msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
196
 
197
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
198
+ #: ad-inserter.php:3021
199
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
200
  msgstr ""
201
  "Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
202
 
203
+ #: ad-inserter.php:3031
204
  msgctxt "Menu item"
205
  msgid "Settings"
206
  msgstr "Nastavitve"
207
 
208
+ #: ad-inserter.php:3063
209
  msgid ""
210
  "Load settings page in safe mode to avoid collisions with other plugins or "
211
  "theme"
213
  "Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
214
  "drugimi vtičniki ali temo"
215
 
216
+ #: ad-inserter.php:3063
217
  msgid "Safe mode"
218
  msgstr "Varni način"
219
 
220
  #. translators: %s: Ad Inserter
221
+ #: ad-inserter.php:3158
222
  msgctxt "Meta box name"
223
  msgid "%s Individual Exceptions"
224
  msgstr "Posamezne Izjeme za %s"
225
 
226
+ #: ad-inserter.php:3187 ad-inserter.php:11490 class.php:2509
227
  #: includes/preview.php:2343 includes/preview.php:2388
228
+ #: includes/preview.php:2425 settings.php:4439 strings.php:3
229
  msgid "Block"
230
  msgstr "Blok"
231
 
232
+ #: ad-inserter.php:3188 includes/functions.php:4594 settings.php:4440
233
+ #: settings.php:4530
234
  msgid "Name"
235
  msgstr "Ime"
236
 
237
+ #: ad-inserter.php:3191 settings.php:1233
238
  msgid "Default insertion"
239
  msgstr "Privzeto vstavljanje"
240
 
241
  #. translators: For this post or page
242
+ #: ad-inserter.php:3194
243
  msgctxt "Page"
244
  msgid "For this"
245
  msgstr "Za to"
246
 
247
+ #: ad-inserter.php:3195
248
  msgctxt "Post"
249
  msgid "For this"
250
  msgstr "Za ta"
251
 
252
+ #: ad-inserter.php:3207
253
  msgctxt "Enabled/disabled on all"
254
  msgid "pages"
255
  msgstr "straneh"
256
 
257
+ #: ad-inserter.php:3210
258
  msgctxt "Enabled/disabled on all"
259
  msgid "posts"
260
  msgstr "prispevkih"
261
 
262
+ #: ad-inserter.php:3227 ad-inserter.php:3239 strings.php:176
263
  msgid "Enabled"
264
  msgstr "Omogočeno"
265
 
266
  #. translators: Menu items
267
+ #: ad-inserter.php:3227 ad-inserter.php:3239
268
+ #: includes/functions-check-now.php:2402 includes/functions.php:2932
269
+ #: includes/functions.php:3295 strings.php:16
270
  msgid "Disabled"
271
  msgstr "Onemogočeno"
272
 
273
+ #: ad-inserter.php:3229
274
  msgid "No individual exceptions"
275
  msgstr "Ni posameznih izjem"
276
 
277
  #. translators: Not enabled for pages or posts
278
+ #: ad-inserter.php:3231
279
  msgid "Not enabled for"
280
  msgstr "Ni omogočeno za"
281
 
282
  #. translators: No individual exceptions enabled for pages or posts
283
+ #: ad-inserter.php:3259
284
  msgid "No block has individual exceptions enabled"
285
  msgstr "Noben blok nima omogočenih posameznih izjem"
286
 
287
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
288
+ #: ad-inserter.php:3264
289
  msgid ""
290
  "Default insertion can be configured for each block on %1$s page - button "
291
  "next to %2$s checkbox."
293
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
294
  "poleg kljukice za vklop %2$s."
295
 
296
+ #: ad-inserter.php:3267 settings.php:1211
297
  msgid "Tag / Archive pages"
298
  msgstr "Strani oznak / arhiva"
299
 
300
+ #: ad-inserter.php:3269
301
  msgid ""
302
  "When individual exceptions for a block are enabled, a checkbox will be "
303
  "listed here to change default insertion for this post or page."
305
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
306
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
307
 
308
+ #: ad-inserter.php:3270
309
  msgid ""
310
  "This way you can individually enable or disable blocks on specific posts or "
311
  "pages."
313
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
314
  "prispevku ali strani."
315
 
316
+ #: ad-inserter.php:3272
317
  msgid "For more information check page %s"
318
  msgstr "Za več informacij poglejte stran %s"
319
 
320
  #. translators: Ad Inserter Exceptions documentation page
321
+ #: ad-inserter.php:3274
322
  msgid "Individual Exceptions"
323
  msgstr "Posamezne Izjeme"
324
 
325
+ #: ad-inserter.php:3321
326
  msgid "STATIC PAGE"
327
  msgstr "STATIČNA STRAN"
328
 
329
+ #: ad-inserter.php:3324
330
  msgid "POST"
331
  msgstr "PRISPEVEK"
332
 
333
+ #: ad-inserter.php:3327
334
  msgid "HOMEPAGE"
335
  msgstr "DOMAČA STRAN"
336
 
337
+ #: ad-inserter.php:3330
338
  msgid "CATEGORY PAGE"
339
  msgstr "STRAN KATEGORIJE"
340
 
341
+ #: ad-inserter.php:3333
342
  msgid "SEARCH PAGE"
343
  msgstr "STRAN ISKANJE"
344
 
345
+ #: ad-inserter.php:3336
346
  msgid "ARCHIVE PAGE"
347
  msgstr "STRAN ARHIVA"
348
 
349
+ #: ad-inserter.php:3339
350
  msgid "ERROR 404 PAGE"
351
  msgstr "STRAN NAPAKA 404"
352
 
353
+ #: ad-inserter.php:3342
354
  msgid "AJAX CALL"
355
  msgstr "AJAX KLIC"
356
 
357
+ #: ad-inserter.php:3345
358
  msgid "UNKNOWN PAGE TYPE"
359
  msgstr "NEZNAN TIP STRANI"
360
 
361
+ #: ad-inserter.php:3362
362
  msgid "Click to delete ad blocking detection cokies"
363
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
364
 
365
+ #: ad-inserter.php:3363
366
  msgid "AD BLOCKING STATUS UNKNOWN"
367
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
368
 
369
  #. translators: %s: AdSense Auto Ads
370
+ #: ad-inserter.php:3392
371
  msgid ""
372
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
373
  "positions"
375
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
376
  "položaje"
377
 
378
+ #: ad-inserter.php:3538
379
  msgid "Code for insertion"
380
  msgstr "Koda za vstavljanje"
381
 
382
+ #: ad-inserter.php:3538
383
  msgid "character"
384
  msgid_plural "characters"
385
  msgstr[0] "znak"
387
  msgstr[2] "znaki"
388
  msgstr[3] "znakov"
389
 
390
+ #: ad-inserter.php:3554
391
  msgid "Header code"
392
  msgstr "Koda v glavi"
393
 
394
+ #: ad-inserter.php:3554
395
  msgctxt "Header code"
396
  msgid "DISABLED"
397
  msgstr "ONEMOGOČENA"
398
 
399
+ #: ad-inserter.php:3554 ad-inserter.php:3810
400
  msgid "character inserted"
401
  msgid_plural "characters inserted"
402
  msgstr[0] "znak vstavljen"
404
  msgstr[2] "znaki vstavljeni"
405
  msgstr[3] "znakov vstavljenih"
406
 
407
+ #: ad-inserter.php:3572
408
+ msgid "Click to delete the cookie for the consents"
409
  msgstr "Klikni za brisanje piškotka za soglasja"
410
 
411
+ #: ad-inserter.php:3810
412
  msgid "Footer code"
413
  msgstr "Koda v nogi"
414
 
415
+ #: ad-inserter.php:3810
416
  msgctxt "Footer code"
417
  msgid "DISABLED"
418
  msgstr "ONEMOGOČENA"
419
 
420
+ #: ad-inserter.php:3821
421
  msgid "JAVASCRIPT NOT WORKING"
422
  msgstr "JAVASCRIPT NE DELA"
423
 
424
+ #: ad-inserter.php:3821
425
  msgid "NO JAVASCRIPT ERRORS"
426
  msgstr "BREZ JAVASCRIPT NAPAK"
427
 
428
+ #: ad-inserter.php:3821
429
  msgid "JAVASCRIPT ERRORS"
430
  msgstr "JAVASCRIPT NAPAKE"
431
 
432
  #. translators: block name (block with default settings)
433
+ #: ad-inserter.php:6630
434
  msgctxt "Block name"
435
  msgid "Default"
436
  msgstr "Privzeti"
437
 
438
  #. translators: %s: Ad Inserter
439
+ #: ad-inserter.php:7074 ad-inserter.php:7389
440
  msgid "Invalid data received - %s settings not saved."
441
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
442
 
443
  #. translators: %s: Ad Inserter
444
+ #: ad-inserter.php:7359
445
  msgid "Error importing %s settings."
446
  msgstr "Napaka pri uvozu %s nastavitev."
447
 
448
+ #: ad-inserter.php:7360
449
  msgid "Error importing settings for block"
450
  msgid_plural "Error importing settings for blocks:"
451
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
453
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
454
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
455
 
456
+ #: ad-inserter.php:7387
457
  msgid "Settings saved."
458
  msgstr "Nastavitve shranjene."
459
 
460
+ #: ad-inserter.php:7409
461
  msgid "Settings cleared."
462
  msgstr "Nastavitve ponastavljene."
463
 
464
  #. Translators: Post/Static page must have between X and Y words
465
+ #: ad-inserter.php:7785 ad-inserter.php:7787 ad-inserter.php:7810
466
  #: settings.php:2240
467
  msgid "word"
468
  msgid_plural "words"
471
  msgstr[2] "besede"
472
  msgstr[3] "besed"
473
 
474
+ #: ad-inserter.php:7824 ad-inserter.php:7951
475
  msgid "HTML TAGS REMOVED"
476
  msgstr "HTML ZNAČKE ODSTRANJENE"
477
 
478
+ #: ad-inserter.php:8030
479
  msgid "BEFORE COMMENTS"
480
  msgstr "PRED KOMENTARJI"
481
 
482
+ #: ad-inserter.php:8155
483
  msgid "AFTER COMMENTS"
484
  msgstr "PO KOMETARJIH"
485
 
486
+ #: ad-inserter.php:8232
487
  msgid "BETWEEN COMMENTS"
488
  msgstr "MED KOMENTARJI"
489
 
490
+ #: ad-inserter.php:10768 ad-inserter.php:10857
491
  msgctxt "category name"
492
  msgid "Uncategorized"
493
  msgstr "Nekategorizirano"
494
 
495
+ #: ad-inserter.php:11088
496
  msgid "requires WordPress 4.6 or newer"
497
  msgstr "potrebuje WordPress 4.6 ali novejši"
498
 
499
+ #: ad-inserter.php:11088
500
  msgid "Please update!"
501
  msgstr "Prosimo, posodobite!"
502
 
503
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
504
  #. name with HTML tags will be added)
505
+ #: ad-inserter.php:11358
506
  msgid "Thank you for installing"
507
  msgstr "Hvala za namestitev vtičnika"
508
 
509
  #. translators: Opt-in message: %s: HTML tags
510
+ #: ad-inserter.php:11360
511
  msgid ""
512
  "We would like to %s track its usage %s on your site. This is completely "
513
  "optional and can be disabled at any time."
515
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
516
  "izbirno in se lahko izključi kadarkoli."
517
 
518
+ #: ad-inserter.php:11362
519
  msgid ""
520
  "We don't record any sensitive data, only information regarding the WordPress "
521
  "environment and plugin usage, which will help us to make improvements to the "
525
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
526
 
527
  #. translators: Deactivation message: %s: HTML tags
528
+ #: ad-inserter.php:11402
529
  msgid ""
530
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
531
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
536
  "nam %s in poskušali vam bomo pomagati."
537
 
538
  #. translators: %s: Ad Inserter
539
+ #: ad-inserter.php:11448
540
  msgid "%s block."
541
  msgstr "%s blok."
542
 
543
  #. translators: widget title
544
+ #: ad-inserter.php:11464 ad-inserter.php:11499
545
  msgid "Processing log"
546
  msgstr "Dnevnik procesiranja"
547
 
548
  #. translators: widget title
549
+ #: ad-inserter.php:11466 ad-inserter.php:11500
550
  msgid "Dummy widget"
551
  msgstr "Prazen gradnik"
552
 
553
  #. translators: widget title
554
+ #: ad-inserter.php:11468 ad-inserter.php:11498
555
  msgid "Debugging tools"
556
  msgstr "Orodja za razhroščevanje"
557
 
558
  #. translators: block status (widget title)
559
+ #: ad-inserter.php:11475
560
  msgctxt "block"
561
  msgid "PAUSED"
562
  msgstr "USTAVLJEN"
563
 
564
+ #: ad-inserter.php:11476
565
  msgid "WIDGET DISABLED"
566
  msgstr "GRADNIK ONEMOGOČEN"
567
 
568
+ #: ad-inserter.php:11477
569
  msgid "Unknown block"
570
  msgstr "Neznan blok"
571
 
572
+ #: ad-inserter.php:11485 includes/functions-check-now.php:3262
573
+ #: includes/functions.php:5072 settings.php:1263
574
  msgid "Title"
575
  msgstr "Naslov"
576
 
577
+ #: ad-inserter.php:11507
578
  msgctxt "Widget"
579
  msgid "Sticky"
580
  msgstr "Lepljiv"
581
 
582
+ #: ad-inserter.php:11558
583
  msgid ""
584
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
585
  "Inserter you need to first deactivate Ad Inserter Pro."
588
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
589
  "Inserter Pro."
590
 
591
+ #: ad-inserter.php:11559
592
  msgid ""
593
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
594
  "will clear all settings that are available only in the Pro version "
599
  "različici (dodatne nastavitve blokov in vtičnika)!"
600
 
601
  #. translators: %s: Ad Inserter
602
+ #: class.php:609 class.php:618 class.php:621
603
  msgid "PHP error in %s block"
604
  msgstr "PHP napaka v bloku %s"
605
 
606
+ #: class.php:2459
607
  msgid "Counters"
608
  msgstr "Števci"
609
 
610
+ #: class.php:2463
611
  msgid "Content"
612
  msgstr "Vsebina"
613
 
614
+ #: class.php:2468
615
  msgid "Excerpt"
616
  msgstr "Izvleček"
617
 
618
+ #: class.php:2473 strings.php:17
619
  msgid "Before post"
620
  msgstr "Pred prispevkom"
621
 
622
+ #: class.php:2478 strings.php:18
623
  msgid "After post"
624
  msgstr "Za prispevkom"
625
 
626
+ #: class.php:2483 strings.php:25
627
  msgid "Between posts"
628
  msgstr "Med prispevki"
629
 
630
+ #: class.php:2488 settings.php:1974 settings.php:4457
631
  msgid "Widget"
632
  msgstr "Gradnik"
633
 
634
+ #: class.php:2493 settings.php:4455
635
  msgid "PHP function call"
636
  msgstr "Klic PHP funkcije"
637
 
638
  #. Translators: %s: custom hook name
639
+ #: class.php:2503
640
  msgid "Custom hook %s call"
641
  msgstr "Klic ročice po meri %s"
642
 
643
+ #: class.php:2539
644
  msgid "AJAX REQUEST"
645
  msgstr "AJAX ZAHTEVEK"
646
 
647
+ #: class.php:2542
648
  msgid "Ajax request for block in iframe"
649
  msgstr "Ajax zahtevek za blok v iframe-u"
650
 
651
+ #: class.php:2576
652
  msgid "Ajax request url, click to open it in a new tab"
653
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
654
 
655
+ #: class.php:2579
656
  msgid "IN THE LOOP"
657
  msgstr "V ZANKI"
658
 
659
+ #: class.php:2579
660
  msgid "YES"
661
  msgstr "DA"
662
 
663
+ #: class.php:2579
664
  msgid "NO"
665
  msgstr "NE"
666
 
667
+ #: class.php:2614
668
  msgid "BLOCK"
669
  msgstr "BLOK"
670
 
671
+ #: class.php:2614
672
  msgctxt "block or widget"
673
  msgid "INSERTED BUT NOT VISIBLE"
674
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
675
 
676
+ #: class.php:2845
677
  msgctxt "viewports"
678
  msgid "ALL"
679
  msgstr "VSI"
680
 
681
+ #: class.php:2878 class.php:2919 class.php:4477 strings.php:282
682
  msgctxt "Block"
683
  msgid "HIDDEN"
684
  msgstr "SKRIT"
685
 
686
+ #: class.php:2926 class.php:4480 strings.php:281
687
  msgctxt "Block"
688
  msgid "VISIBLE"
689
  msgstr "VIDEN"
690
 
691
+ #: class.php:3609 class.php:3696
692
  msgid "ACTIVE GROUPS"
693
  msgstr "AKTIVNE SKUPINE"
694
 
695
+ #: class.php:4163
696
  msgid "start='%s' end='%s' days='%s' type='%s'"
697
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
698
 
699
+ #: class.php:4171
700
  msgid "parameters='%s' type='%s'"
701
  msgstr "parametri='%s' tip='%s'"
702
 
703
  #. translators: %s: list parameters and type
704
+ #: class.php:4173
705
  msgid "referers='%s' type='%s'"
706
  msgstr "napotitelji='%s' tip='%s'"
707
 
708
  #. translators: %s: list parameters and type
709
+ #: class.php:4175
710
  msgid "clients='%s' type='%s'"
711
  msgstr "odjemalci='%s' tip='%s'"
712
 
713
  #. translators: %s: list parameters and type
714
+ #: class.php:4360
715
  msgid "countries='%s' type='%s'"
716
  msgstr "države='%s' tip='%s'"
717
 
718
  #. translators: %s: list parameters and type
719
+ #: class.php:4362
720
  msgid "ip addresses='%s' type='%s'"
721
  msgstr "ip naslovi='%s' tip='%s'"
722
 
723
+ #: class.php:4477 class.php:4480
724
  msgid "viewport='%s' type='%s'"
725
  msgstr "pogled='%s' tip='%s'"
726
 
727
+ #: class.php:4603 strings.php:283
728
+ msgctxt "alternative block"
729
+ msgid "FALLBACK"
730
+ msgstr "REZERVA"
731
+
732
+ #: class.php:5130 strings.php:275
733
  msgid "BEFORE"
734
  msgstr "PRED"
735
 
736
+ #: class.php:5138 strings.php:277
737
  msgid "PREPEND CONTENT"
738
  msgstr "DODAJ PRED VSEBINO"
739
 
740
+ #: class.php:5142 strings.php:278
741
  msgid "APPEND CONTENT"
742
  msgstr "DODAJ ZA VSEBINO"
743
 
744
+ #: class.php:5146 strings.php:279
745
  msgid "REPLACE CONTENT"
746
  msgstr "NADOMESTI VSEBINO"
747
 
748
+ #: class.php:5150 strings.php:280
749
  msgid "REPLACE ELEMENT"
750
  msgstr "NADOMESTI ELEMENT"
751
 
752
+ #: class.php:5161 strings.php:276
753
  msgid "AFTER"
754
  msgstr "ZA"
755
 
756
+ #: class.php:5231 includes/preview.php:2388 includes/preview.php:2425
757
  msgid "Code"
758
  msgstr "Koda"
759
 
760
+ #: class.php:5234
761
  msgid "for block"
762
  msgstr "za blok"
763
 
764
+ #: class.php:9375
765
  msgid ""
766
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
767
  "extension for PHP."
770
  "namestiti DOM razširitev za PHP."
771
 
772
  #: includes/editor.php:4 includes/placeholders.php:350
773
+ #: includes/preview.php:2329 strings.php:288
774
  msgid "Use"
775
  msgstr "Uporabi"
776
 
779
  msgstr "Ponastavi"
780
 
781
  #: includes/editor.php:6 includes/placeholders.php:352
782
+ #: includes/preview.php:2332 settings.php:3776 strings.php:229 strings.php:287
783
  msgid "Cancel"
784
  msgstr "Prekliči"
785
 
805
  msgid "PAGE BLOCKED"
806
  msgstr "STRAN BLOKIRANA"
807
 
808
+ #: includes/functions-check-now.php:288 includes/functions.php:325
809
  msgid "%d of %d names shown"
810
  msgstr "Prikazanih %d od %d imen"
811
 
812
  #. translators: %s: name filter
813
+ #: includes/functions-check-now.php:307 includes/functions.php:344
814
  msgid "No name matches filter"
815
  msgstr "Noben podatek ne ustreza filtru"
816
 
817
  #. translators: %s: Ad Inserter Pro
818
+ #: includes/functions-check-now.php:396 includes/functions.php:430
819
  msgid ""
820
  "Import %s settings when saving - if checked, the encoded settings below will "
821
  "be imported for all blocks and settings"
823
  "Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
824
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
825
 
826
+ #: includes/functions-check-now.php:396 includes/functions.php:430
827
  msgid "Import Settings for"
828
  msgstr "Uvozi Nastavitve za"
829
 
830
+ #: includes/functions-check-now.php:400 includes/functions.php:434
831
  msgid "Saved settings for"
832
  msgstr "Shranjene nastavitve za"
833
 
834
+ #: includes/functions-check-now.php:420 includes/functions.php:457
835
  msgid "License Key"
836
  msgstr "Licenčni Ključ"
837
 
838
+ #: includes/functions-check-now.php:423 includes/functions.php:460
839
  msgid "License Key for"
840
  msgstr "Licenčni Ključ za"
841
 
842
+ #: includes/functions-check-now.php:425 includes/functions.php:462
843
  msgid "Open license page"
844
  msgstr "Odpri licenčno stran"
845
 
846
+ #: includes/functions-check-now.php:432 includes/functions.php:469
847
  msgid "Hide license key"
848
  msgstr "Skrij licenčni ključ"
849
 
850
+ #: includes/functions-check-now.php:432 includes/functions.php:469
851
  msgid "Hide key"
852
  msgstr "Skrij ključ"
853
 
854
+ #: includes/functions-check-now.php:447 includes/functions.php:486
855
  msgid "Main content element"
856
  msgstr "Glavni element vsebine"
857
 
858
+ #: includes/functions-check-now.php:450 includes/functions.php:489
859
  msgid ""
860
  "Main content element (#id or .class) for 'Stick to the content' position. "
861
  "Leave empty unless position is not properly calculated."
863
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
864
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
865
 
866
+ #: includes/functions-check-now.php:451 includes/functions.php:490
867
  #: settings.php:1420 settings.php:1460 settings.php:2919
868
  msgid "Open HTML element selector"
869
  msgstr "Odpri izbirnik HTML elementa"
870
 
871
+ #: includes/functions-check-now.php:456 includes/functions.php:495
872
  msgid "Lazy loading offset"
873
  msgstr "Zamik za leno nalaganje"
874
 
875
+ #: includes/functions-check-now.php:459 includes/functions.php:498
876
  msgid "Offset of the block from the visible viewport when it should be loaded"
877
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
878
 
879
+ #: includes/functions-check-now.php:470 includes/functions.php:510
880
  msgid "Export / Import Block Settings"
881
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
882
 
883
+ #: includes/functions-check-now.php:485 includes/functions.php:527
884
  msgid "Track impressions and clicks for this block"
885
  msgstr "Sledi prikazom in klikom za ta blok"
886
 
887
+ #: includes/functions-check-now.php:485 includes/functions.php:527
888
  msgid " - global tracking disabled"
889
  msgstr " - globalno sledenje onemogočeno"
890
 
891
+ #: includes/functions-check-now.php:492 includes/functions.php:535
892
+ #: includes/functions.php:4766
893
  msgid "Generate PDF report"
894
  msgstr "Generiraj PDF poročilo"
895
 
896
+ #: includes/functions-check-now.php:497 includes/functions.php:549
897
  msgid "Open public report"
898
  msgstr "Odpri javno poročilo"
899
 
900
+ #: includes/functions-check-now.php:511 includes/functions.php:563
901
  msgid "Toggle Ad Blocking Statistics"
902
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
903
 
904
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
905
+ #: includes/functions.php:571 includes/functions.php:4747
906
  msgid "Toggle Statistics"
907
  msgstr "Preklopi Statistiko"
908
 
909
+ #: includes/functions-check-now.php:528 includes/functions.php:580
910
  msgid "Pin list"
911
  msgstr "Pripni seznam"
912
 
913
  #. translators: %s: Ad Inserter Pro
914
+ #: includes/functions-check-now.php:543 includes/functions.php:603
915
  msgid "%s license key is not set. Continue?"
916
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
917
 
918
  #. translators: %s: Ad Inserter Pro
919
+ #: includes/functions-check-now.php:547 includes/functions.php:607
920
  msgid "Invalid %s license key. Continue?"
921
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
922
 
923
  #. translators: %s: Ad Inserter Pro
924
+ #: includes/functions-check-now.php:551 includes/functions.php:611
925
  msgid "%s license overused. Continue?"
926
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
927
 
928
+ #: includes/functions-check-now.php:555 includes/functions.php:621
929
  #: settings.php:1168 settings.php:2352
930
  msgid "Save Settings"
931
  msgstr "Shrani Nastavitve"
932
 
933
+ #: includes/functions-check-now.php:615 includes/functions.php:689
934
  #: includes/preview.php:2520
935
  msgid "Horizontal position"
936
  msgstr "Vodoravni položaj"
937
 
938
+ #: includes/functions-check-now.php:638 includes/functions.php:714
939
  msgid ""
940
  "Horizontal margin from the content or screen edge, empty means default value "
941
  "from CSS"
943
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
944
  "iz CSS"
945
 
946
+ #: includes/functions-check-now.php:646 includes/functions.php:722
947
  #: includes/preview.php:2580
948
  msgid "Vertical position"
949
  msgstr "Navpični položaj"
950
 
951
+ #: includes/functions-check-now.php:661 includes/functions.php:737
952
  msgid ""
953
  "Vertical margin from the top or bottom screen edge, empty means default "
954
  "value from CSS"
956
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
957
  "iz CSS"
958
 
959
+ #: includes/functions-check-now.php:686 includes/functions.php:768
960
  #: includes/preview.php:2635
961
  msgid "Animation"
962
  msgstr "Animacija"
963
 
964
+ #: includes/functions-check-now.php:704
965
  msgid "Trigger"
966
  msgstr "Sporžilec"
967
 
968
+ #: includes/functions-check-now.php:713
969
  msgid ""
970
  "Trigger value: page scroll in %, page scroll in px or element with selector "
971
  "(#id or .class) becomes visible"
973
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
974
  "selektorjem (#id ali .razred) postane viden"
975
 
976
+ #: includes/functions-check-now.php:717 includes/functions.php:803
977
+ #: includes/functions.php:830
978
  msgid "Offset"
979
  msgstr "Zamik"
980
 
981
+ #: includes/functions-check-now.php:717 includes/functions.php:803
982
+ #: includes/functions.php:830
983
  msgid "Offset of trigger element"
984
  msgstr "Zamik sprožilnega elementa"
985
 
986
+ #: includes/functions-check-now.php:721 includes/functions.php:807
987
+ #: includes/functions.php:834 settings.php:1475
988
  msgid "Delay"
989
  msgstr "Zakasnitev"
990
 
991
+ #: includes/functions-check-now.php:721 includes/functions.php:807
992
  msgid "Delay animation after trigger condition"
993
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
994
 
995
+ #: includes/functions-check-now.php:725
996
  msgid "Trigger once"
997
  msgstr "Sproži enkrat"
998
 
999
+ #: includes/functions-check-now.php:727
1000
  msgid "Trigger animation only once"
1001
  msgstr "Sproži animacijo samo enkrat"
1002
 
1003
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
1004
+ #: includes/functions-check-now.php:2546 includes/functions.php:942
1005
+ #: includes/functions.php:3084 includes/functions.php:3100
1006
  msgid "Tracking is globally disabled"
1007
  msgstr "Sledenje je globalno onemogočeno"
1008
 
1009
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
1010
+ #: includes/functions-check-now.php:2550 includes/functions.php:946
1011
+ #: includes/functions.php:3088 includes/functions.php:3104
1012
  msgid "Tracking for this block is disabled"
1013
  msgstr "Sledenje za ta blok je onemogočeno"
1014
 
1015
+ #: includes/functions-check-now.php:780 includes/functions.php:953
1016
  msgid "Double click to toggle controls in public reports"
1017
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1018
 
1019
+ #: includes/functions-check-now.php:786 includes/functions.php:959
1020
+ #: includes/functions.php:4316 settings.php:3696 settings.php:3732
1021
+ #: settings.php:3793 strings.php:243
1022
  msgid "Loading..."
1023
  msgstr "Nalagam..."
1024
 
1025
+ #: includes/functions-check-now.php:807 includes/functions.php:980
1026
  msgid ""
1027
  "Clear statistics data for the selected range - clear both dates to delete "
1028
  "all data for this block"
1030
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
1031
  "brisanje vseh podatkov za ta blok"
1032
 
1033
+ #: includes/functions-check-now.php:811 includes/functions.php:984
1034
  msgid "Auto refresh data for the selected range every 60 seconds"
1035
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1036
 
1037
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1038
+ #: includes/functions.php:987 includes/functions.php:7984
1039
  msgid "Load data for last month"
1040
  msgstr "Naloži podatke za zadnji mesec"
1041
 
1042
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1043
+ #: includes/functions.php:987 includes/functions.php:7984
1044
  msgid "Last Month"
1045
  msgstr "Zadnji Mesec"
1046
 
1047
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1048
+ #: includes/functions.php:990 includes/functions.php:7987
1049
  msgid "Load data for this month"
1050
  msgstr "Naloži podatke za ta mesec"
1051
 
1052
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1053
+ #: includes/functions.php:990 includes/functions.php:7987
1054
  msgid "This Month"
1055
  msgstr "Ta Mesec"
1056
 
1057
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1058
+ #: includes/functions.php:993 includes/functions.php:7990
1059
  msgid "Load data for this year"
1060
  msgstr "Naloži podatke za to leto"
1061
 
1062
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1063
+ #: includes/functions.php:993 includes/functions.php:7990
1064
  msgid "This Year"
1065
  msgstr "To Leto"
1066
 
1067
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1068
+ #: includes/functions.php:996 includes/functions.php:7993
1069
  msgid "Load data for the last 15 days"
1070
  msgstr "Naloži podatke za zadnjih 15 dni"
1071
 
1072
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1073
+ #: includes/functions.php:999 includes/functions.php:7996
1074
  msgid "Load data for the last 30 days"
1075
  msgstr "Naloži podatke za zadnjih 30 dni"
1076
 
1077
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1078
+ #: includes/functions.php:1002 includes/functions.php:7999
1079
  msgid "Load data for the last 90 days"
1080
  msgstr "Naloži podatke za zadnjih 90 dni"
1081
 
1082
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1083
+ #: includes/functions.php:1005 includes/functions.php:8002
1084
  msgid "Load data for the last 180 days"
1085
  msgstr "Naloži podatke za zadnjih 180 dni"
1086
 
1087
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1088
+ #: includes/functions.php:1008 includes/functions.php:8005
1089
  msgid "Load data for the last 365 days"
1090
  msgstr "Naloži podatke za zadnjih 365 dni"
1091
 
1092
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1093
+ #: includes/functions.php:1018 includes/functions.php:8015
1094
  msgid "Load data for the selected range"
1095
  msgstr "Naloži podatke za izbrano obdobje"
1096
 
1097
+ #: includes/functions-check-now.php:861 includes/functions.php:1035
1098
  msgid ""
1099
  "Import settings when saving - if checked, the encoded settings below will be "
1100
  "imported for this block"
1102
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1103
  "nastavitve spodaj uvozile za ta blok"
1104
 
1105
+ #: includes/functions-check-now.php:861 includes/functions.php:1035
1106
  msgid "Import settings for block"
1107
  msgstr "Uvozi nastavitve za blok"
1108
 
1109
+ #: includes/functions-check-now.php:865 includes/functions.php:1039
1110
  msgid ""
1111
  "Import block name when saving - if checked and 'Import settings for block' "
1112
  "is also checked, the name from encoded settings below will be imported for "
1116
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1117
  "uvozilo za ta blok"
1118
 
1119
+ #: includes/functions-check-now.php:865 includes/functions.php:1039
1120
  msgid "Import block name"
1121
  msgstr "Uvozi ime bloka"
1122
 
1123
+ #: includes/functions-check-now.php:869 includes/functions.php:1043
1124
  msgid "Saved settings for block"
1125
  msgstr "Shranjene nastavitve za blok"
1126
 
1127
+ #: includes/functions-check-now.php:882 includes/functions.php:1058
1128
  msgid "Export / Import Ad Inserter Pro Settings"
1129
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1130
 
1131
+ #: includes/functions-check-now.php:892 includes/functions.php:1077
1132
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1133
  msgstr ""
1134
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1135
  "bloke?"
1136
 
1137
+ #: includes/functions-check-now.php:894 includes/functions.php:1079
1138
  msgid "Clear All Statistics Data"
1139
  msgstr "Pobriši Vse Podatke o Statistiki"
1140
 
1141
+ #: includes/functions-check-now.php:921 includes/functions.php:1113
1142
  msgid "Toggle country/city editor"
1143
  msgstr "Preklopi urejevalnik držav/mest"
1144
 
1145
+ #: includes/functions-check-now.php:927 includes/functions.php:1119
1146
  msgid "IP Addresses"
1147
  msgstr "IP Naslovi"
1148
 
1149
+ #: includes/functions-check-now.php:930 includes/functions.php:1122
1150
  msgid "Toggle IP address editor"
1151
  msgstr "Preklopi urejevalnik IP nslovov"
1152
 
1153
+ #: includes/functions-check-now.php:933 includes/functions.php:1125
1154
  msgid ""
1155
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1156
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1166
  msgid "Whitelist IP addresses"
1167
  msgstr "Beli seznam IP naslovov"
1168
 
1169
+ #: includes/functions-check-now.php:952 includes/functions.php:1141
1170
  msgid "Countries"
1171
  msgstr "Države"
1172
 
1173
+ #: includes/functions-check-now.php:953 includes/functions.php:1142
1174
  msgid "Cities"
1175
  msgstr "Mesta"
1176
 
1177
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1178
+ #: includes/functions.php:1146 includes/functions.php:4712
1179
  msgid "Toggle country editor"
1180
  msgstr "Preklopi urejevalnik držav"
1181
 
1182
+ #: includes/functions-check-now.php:960 includes/functions.php:1149
1183
  msgid "Toggle city editor"
1184
  msgstr "Preklopi urejevalnik mest"
1185
 
1186
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1187
+ #: includes/functions.php:1153 includes/functions.php:4715
1188
  msgid "Comma separated country ISO Alpha-2 codes"
1189
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1190
 
1197
  msgstr "Beli seznam držav"
1198
 
1199
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1200
+ #: includes/functions.php:1708 includes/functions.php:2043
1201
  msgid "Enter license key"
1202
  msgstr "Vnesite licenčni ključ"
1203
 
1204
  #. translators: %s: Ad Inserter Pro
1205
+ #: includes/functions-check-now.php:1389 includes/functions.php:1714
1206
  msgid ""
1207
  "%s license key is not set. Plugin functionality is limited and updates are "
1208
  "disabled."
1211
  "posodobitve onemogočene."
1212
 
1213
  #. translators: %s: Ad Inserter Pro
1214
+ #: includes/functions-check-now.php:1403 includes/functions.php:1728
1215
  msgid "Warning: %s plugin update server is not accessible"
1216
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1217
 
1218
  #. translators: updates are not available
1219
+ #: includes/functions-check-now.php:1405 includes/functions.php:1730
1220
  msgid "updates"
1221
  msgstr "posodobitve"
1222
 
1223
  #. translators: updates are not available
1224
+ #: includes/functions-check-now.php:1407 includes/functions.php:1732
1225
  msgid "are not available"
1226
  msgstr "niso na razpolago"
1227
 
1228
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1229
+ #: includes/functions.php:1737 includes/functions.php:2052
1230
  msgid "Check license key"
1231
  msgstr "Preverite licenčni ključ"
1232
 
1233
  #. translators: %s: Ad Inserter Pro
1234
+ #: includes/functions-check-now.php:1418 includes/functions.php:1743
1235
  msgid "Invalid %s license key."
1236
  msgstr "Neveljaven %s licenčni ključ."
1237
 
1238
  #. translators: %s: Ad Inserter Pro
1239
+ #: includes/functions-check-now.php:1427 includes/functions.php:1752
1240
  msgid "%s license expired. Plugin updates are disabled."
1241
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1242
 
1243
+ #: includes/functions-check-now.php:1428 includes/functions.php:1753
1244
  msgid "Renew license"
1245
  msgstr "Obnovite licenco"
1246
 
1247
  #. translators: %s: Ad Inserter Pro
1248
+ #: includes/functions-check-now.php:1436 includes/functions.php:1761
1249
  msgid "%s license overused. Plugin updates are disabled."
1250
  msgstr ""
1251
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1252
 
1253
+ #: includes/functions-check-now.php:1437 includes/functions.php:1762
1254
  msgid "Manage licenses"
1255
  msgstr "Upravljajte z licencami"
1256
 
1257
+ #: includes/functions-check-now.php:1437 includes/functions.php:1762
1258
  msgid "Upgrade license"
1259
  msgstr "Nadgradite licenco"
1260
 
1261
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1262
+ #: includes/functions-check-now.php:1684 includes/functions.php:2045
1263
  msgid ""
1264
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1265
  "limited and updates are disabled."
1268
  "so omejene in posodobitve onemogočene."
1269
 
1270
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1271
+ #: includes/functions-check-now.php:1693 includes/functions.php:2054
1272
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1273
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1274
 
1275
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1276
+ #: includes/functions-check-now.php:1709 includes/functions.php:2070
1277
  msgid ""
1278
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1279
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1283
  "pogrešate. %3$s"
1284
 
1285
  #. translators: 1, 3: HTML tags, 2: percentage
1286
+ #: includes/functions-check-now.php:1716 includes/functions.php:2077
1287
  msgid ""
1288
  "During the license period and 30 days after the license has expired we offer "
1289
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1291
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1292
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1293
 
1294
+ #: includes/functions-check-now.php:1726 includes/functions.php:2087
1295
  msgid "No, thank you."
1296
  msgstr "Ne, hvala."
1297
 
1298
+ #: includes/functions-check-now.php:1729 includes/functions.php:2090
1299
  msgid "Not now, maybe later."
1300
  msgstr "Ne zdaj, mogoče kasneje."
1301
 
1302
+ #: includes/functions-check-now.php:1743 includes/functions.php:2104
1303
  msgid "Renew the licence"
1304
  msgstr "Obnovi licenco"
1305
 
1306
+ #: includes/functions-check-now.php:1745 includes/functions.php:2106
1307
  msgid "Update license status"
1308
  msgstr "Posodobi status licence"
1309
 
1310
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1311
+ #: includes/functions-check-now.php:1756 includes/functions.php:2119
1312
  msgid ""
1313
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1314
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1318
  "Nadgradite licenco %7$s"
1319
 
1320
  #. Translators: %s: HTML tag
1321
+ #: includes/functions-check-now.php:1778 includes/functions.php:2179
1322
  msgid "Warning: %s MaxMind IP geolocation database not found."
1323
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1324
 
1325
+ #: includes/functions-check-now.php:2331 includes/functions.php:2861
1326
  msgid "Geolocation"
1327
  msgstr "Geolokacija"
1328
 
1329
+ #: includes/functions-check-now.php:2335 includes/functions.php:2865
1330
+ #: settings.php:4444
1331
  msgid "Exceptions"
1332
  msgstr "Izjeme"
1333
 
1334
+ #: includes/functions-check-now.php:2340 includes/functions.php:2870
1335
  msgid "Multisite"
1336
  msgstr "Multisite"
1337
 
1338
+ #: includes/functions-check-now.php:2345 includes/functions.php:2875
1339
+ #: settings.php:4450
1340
  msgid "Tracking"
1341
  msgstr "Sledenje"
1342
 
1343
  #. translators: %d: days, hours, minutes
1344
+ #: includes/functions-check-now.php:2376 includes/functions.php:2909
1345
  msgid "Scheduled in %d days %d hours %d minutes"
1346
  msgstr "Planirano v %d dneh %d urah %d minutah"
1347
 
1348
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1349
  #. HTML code for long dash separator
1350
+ #: includes/functions-check-now.php:2385 includes/functions.php:2918
1351
  msgid "Active %s expires in %d days %d hours %d minutes"
1352
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1353
 
1354
+ #: includes/functions-check-now.php:2389 includes/functions.php:2922
1355
  msgid "Expired"
1356
  msgstr "Poteklo"
1357
 
1358
+ #: includes/functions-check-now.php:2397 includes/functions.php:2948
1359
  #: settings.php:1530 settings.php:1545 settings.php:1667 settings.php:2238
1360
  msgid "and"
1361
  msgstr "in"
1362
 
1363
+ #: includes/functions-check-now.php:2400 includes/functions.php:2930
1364
  msgid "fallback"
1365
  msgstr "rezerva"
1366
 
1367
+ #: includes/functions-check-now.php:2401 includes/functions.php:2931
1368
  msgid "Block to be used when scheduling expires"
1369
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1370
 
1371
+ #: includes/functions-check-now.php:2426 includes/functions.php:2970
1372
  msgid "Load in iframe"
1373
  msgstr "Naloži v iframe-u"
1374
 
1375
+ #: includes/functions-check-now.php:2430 includes/functions.php:2974
1376
  #: includes/placeholders.php:387 settings.php:1128 settings.php:2265
1377
  msgid "Width"
1378
  msgstr "Širina"
1379
 
1380
+ #: includes/functions-check-now.php:2431 includes/functions.php:2975
1381
  msgid "iframe width, empty means full width (100%)"
1382
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1383
 
1384
+ #: includes/functions-check-now.php:2437 includes/functions.php:2981
1385
  #: includes/placeholders.php:382 settings.php:1134 settings.php:2269
1386
  msgid "Height"
1387
  msgstr "Višina"
1388
 
1389
+ #: includes/functions-check-now.php:2438 includes/functions.php:2982
1390
  msgid "iframe height, empty means adjust it to iframe content height"
1391
  msgstr ""
1392
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1393
 
1394
+ #: includes/functions-check-now.php:2445 includes/functions.php:2989
1395
  msgid "Ad label in iframe"
1396
  msgstr "Oznaka oglasa v iframe-u"
1397
 
1398
+ #: includes/functions-check-now.php:2450 includes/functions.php:2994
1399
  msgid "Preview iframe code"
1400
  msgstr "Predpreglej kodo iframe"
1401
 
1402
+ #: includes/functions-check-now.php:2450 includes/functions.php:2994
1403
  #: includes/preview.php:2341 settings.php:1163 settings.php:2990
1404
  msgid "Preview"
1405
  msgstr "Predogled"
1406
 
1407
+ #: includes/functions-check-now.php:2464 includes/functions.php:3010
1408
+ #: settings.php:4451
1409
  msgid "Limits"
1410
  msgstr "Omejitve"
1411
 
1412
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1413
+ #: includes/functions-check-now.php:4430 includes/functions.php:3015
1414
+ #: includes/functions.php:6538 includes/functions.php:6603 settings.php:2402
1415
  msgid "Ad Blocking"
1416
  msgstr "Blokiranje Oglasov"
1417
 
1418
  #. translators: 1, 2 and 3, 4: HTML tags
1419
+ #: includes/functions-check-now.php:2478 includes/functions.php:3026
1420
  msgid ""
1421
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1422
  "for tracking!"
1426
 
1427
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1428
  #. header
1429
+ #: includes/functions-check-now.php:2487 includes/functions.php:3035
1430
  msgid ""
1431
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1432
  "enabled and automatic insertion %6$s!"
1434
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1435
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1436
 
1437
+ #: includes/functions-check-now.php:2554 includes/functions.php:3108
1438
  msgid "Click fraud protection is globally disabled"
1439
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1440
 
1443
  msgstr "Največje število klikov na časovno enoto ni definirano"
1444
 
1445
  #. Translators: Max n impressions
1446
+ #: includes/functions-check-now.php:2572 includes/functions.php:3122
1447
  msgid "General limits"
1448
  msgstr "Splošne omejitve"
1449
 
1450
  #. Translators: Max n impressions per x days
1451
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1452
+ #: includes/functions-check-now.php:2675 includes/functions.php:3128
1453
+ #: includes/functions.php:3140 includes/functions.php:3225
1454
  msgid "Current value"
1455
  msgstr "Trenutna vrednost"
1456
 
1466
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1467
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1468
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1469
+ #: includes/functions.php:3147 includes/functions.php:3157
1470
+ #: includes/functions.php:3176 includes/functions.php:3186
1471
+ #: includes/functions.php:3232 includes/functions.php:3241
1472
+ #: includes/functions.php:3259 includes/functions.php:3268 settings.php:2150
1473
  msgid "Max"
1474
  msgstr "Največ"
1475
 
1476
+ #: includes/functions-check-now.php:2598 includes/functions.php:3148
1477
  msgid ""
1478
  "Maximum number of impressions for this block. Empty means no general "
1479
  "impression limit."
1487
  #. Translators: Max n impressions per x days
1488
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1489
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1490
+ #: includes/functions.php:3150 includes/functions.php:3160
1491
+ #: includes/functions.php:3235 includes/functions.php:3244
1492
  msgid "impression"
1493
  msgid_plural "impressions"
1494
  msgstr[0] "prikaz"
1496
  msgstr[2] "prikazi"
1497
  msgstr[3] "prikazov"
1498
 
1499
+ #: includes/functions-check-now.php:2608 includes/functions.php:3158
1500
  msgid ""
1501
  "Maximum number of impressions per time period. Empty means no time limit."
1502
  msgstr ""
1509
  #. Translators: Max n clicks per x days
1510
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1511
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1512
+ #: includes/functions.php:3164 includes/functions.php:3193
1513
+ #: includes/functions.php:3248 includes/functions.php:3275
1514
+ #: includes/functions.php:4982
1515
  msgid "per"
1516
  msgstr "na"
1517
 
1518
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1519
+ #: includes/functions.php:3165 includes/functions.php:3194
1520
  msgid "Time period in days. Empty means no time limit."
1521
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1522
 
1528
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1529
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1530
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1531
+ #: includes/functions.php:3167 includes/functions.php:3196
1532
+ #: includes/functions.php:3251 includes/functions.php:3278
1533
+ #: includes/functions.php:3410 includes/functions.php:4985
1534
+ #: includes/functions.php:4995 strings.php:219 strings.php:220 strings.php:221
1535
+ #: strings.php:222 strings.php:223 strings.php:224
1536
  msgid "day"
1537
  msgid_plural "days"
1538
  msgstr[0] "dan"
1540
  msgstr[2] "dni"
1541
  msgstr[3] "dni"
1542
 
1543
+ #: includes/functions-check-now.php:2627 includes/functions.php:3177
1544
  msgid ""
1545
  "Maximum number of clicks on this block. Empty means no general click limit."
1546
  msgstr ""
1553
  #. Translators: Max n clicks per x days
1554
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1555
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1556
+ #: includes/functions-check-now.php:4578 includes/functions.php:3179
1557
+ #: includes/functions.php:3189 includes/functions.php:3262
1558
+ #: includes/functions.php:3271 includes/functions.php:4982
1559
+ #: includes/functions.php:6878
1560
  msgid "click"
1561
  msgid_plural "clicks"
1562
  msgstr[0] "klik"
1564
  msgstr[2] "kliki"
1565
  msgstr[3] "klikov"
1566
 
1567
+ #: includes/functions-check-now.php:2637 includes/functions.php:3187
1568
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1569
  msgstr ""
1570
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1571
  "omejitev."
1572
 
1573
+ #: includes/functions-check-now.php:2662 includes/functions.php:3212
1574
  msgid "Individual visitor limits"
1575
  msgstr "Omejitve posameznih obiskovalcev"
1576
 
1577
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1578
+ #: includes/functions.php:3216 includes/functions.php:3218
1579
  msgid ""
1580
  "When specified number of clicks on this block for a visitor will be reached "
1581
  "in the specified time period, all blocks that have click fraud protection "
1587
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1588
  "pred goljufijo s kliki."
1589
 
1590
+ #: includes/functions-check-now.php:2668 includes/functions.php:3218
1591
  msgid "Trigger click fraud protection"
1592
  msgstr "Sproži zaščito pred goljufijo s kliki"
1593
 
1594
+ #: includes/functions-check-now.php:2683 includes/functions.php:3233
1595
  msgid ""
1596
  "Maximum number of impressions of this block for each visitor. Empty means no "
1597
  "impression limit."
1599
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1600
  "pomeni brez omejitev prikazov."
1601
 
1602
+ #: includes/functions-check-now.php:2692 includes/functions.php:3242
1603
  msgid ""
1604
  "Maximum number of impressions per time period for each visitor. Empty means "
1605
  "no impression limit per time period for visitors."
1608
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1609
 
1610
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1611
+ #: includes/functions.php:3249 includes/functions.php:3276
1612
+ #: includes/functions.php:4985
1613
  msgid ""
1614
  "Time period in days. Use decimal value (with decimal point) for shorter "
1615
  "periods. Empty means no time limit."
1617
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1618
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1619
 
1620
+ #: includes/functions-check-now.php:2710 includes/functions.php:3260
1621
  msgid ""
1622
  "Maximum number of clicks on this block for each visitor. Empty means no "
1623
  "click limit."
1625
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1626
  "brez omejitev klikov."
1627
 
1628
+ #: includes/functions-check-now.php:2719 includes/functions.php:3269
1629
+ #: includes/functions.php:4982
1630
  msgid ""
1631
  "Maximum number of clicks per time period for each visitor. Empty means no "
1632
  "click limit per time period for visitors."
1634
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1635
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1636
 
1637
+ #: includes/functions-check-now.php:2745 includes/functions.php:3319
1638
  msgid "When ad blocking is detected"
1639
  msgstr "Ko je blokiranje oglasov zaznano"
1640
 
1641
+ #: includes/functions-check-now.php:2754 includes/functions.php:3328
1642
  msgid "replacement"
1643
  msgstr "nadomestek"
1644
 
1645
+ #: includes/functions-check-now.php:2755 includes/functions.php:3329
1646
  msgid "Block to be shown when ad blocking is detected"
1647
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1648
 
1649
+ #: includes/functions-check-now.php:2756 includes/functions.php:3330
1650
  msgctxt "replacement"
1651
  msgid "None"
1652
  msgstr "Noben"
1653
 
1654
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1655
+ #: includes/functions.php:3347 includes/functions.php:8228
1656
  msgid "Close button"
1657
  msgstr "Gumb Zapri"
1658
 
1659
+ #: includes/functions-check-now.php:2825 includes/functions.php:3401
1660
  msgid "Auto close after"
1661
  msgstr "Ssamodejno zapri po"
1662
 
1663
+ #: includes/functions-check-now.php:2826 includes/functions.php:3402
1664
  msgid ""
1665
  "Time in seconds in which the ad will automatically close. Leave empty to "
1666
  "disable auto closing."
1669
  "izključitev samodejnega zapiranja."
1670
 
1671
  #. Translators: Don't show for x days
1672
+ #: includes/functions-check-now.php:2831 includes/functions.php:3407
1673
  msgid "Don't show for"
1674
  msgstr "Ne prikaži"
1675
 
1676
+ #: includes/functions-check-now.php:2832 includes/functions.php:3408
1677
  msgid ""
1678
  "Time in days in which closed ad will not be shown again. Use decimal value "
1679
  "(with decimal point) for shorter time period or leave empty to show it again "
1684
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1685
 
1686
  #. Translators: Delay showing for x pageviews
1687
+ #: includes/functions-check-now.php:2852 includes/functions.php:3430
1688
  msgid "Delay showing for"
1689
  msgstr "Zakasni prikaz za"
1690
 
1691
+ #: includes/functions-check-now.php:2853 includes/functions.php:3431
1692
  msgid ""
1693
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1694
  "empty to insert the code for the first pageview."
1699
  #. Translators: Delay showing for x pageviews
1700
  #. Translators: Show every x pageviews
1701
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1702
+ #: includes/functions.php:3433 includes/functions.php:3440
1703
  msgid "pageview"
1704
  msgid_plural "pageviews"
1705
  msgstr[0] "ogled strani"
1708
  msgstr[3] "ogledov strani"
1709
 
1710
  #. Translators: Show every x pageviews
1711
+ #: includes/functions-check-now.php:2859 includes/functions.php:3437
1712
  msgid "Show every"
1713
  msgid_plural "Show every"
1714
  msgstr[0] "Prikaži vsak"
1716
  msgstr[2] "Prikaži vsake"
1717
  msgstr[3] "Prikaži vsakih"
1718
 
1719
+ #: includes/functions-check-now.php:2860 includes/functions.php:3438
1720
  msgid ""
1721
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1722
  "for every pageview."
1724
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1725
  "vstavljanje kode pri vsakem ogledu strani."
1726
 
1727
+ #: includes/functions-check-now.php:2879 includes/functions.php:3463
1728
  #: settings.php:893
1729
  msgid "Lazy loading"
1730
  msgstr "Leno nalaganje"
1731
 
1732
  #. Translators: %s MaxMind
1733
+ #: includes/functions-check-now.php:2936 includes/functions.php:4636
1734
  msgid "This product includes GeoLite2 data created by %s"
1735
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1736
 
1737
+ #: includes/functions-check-now.php:2947 includes/functions.php:4649
1738
  msgid "IP geolocation database"
1739
  msgstr "Podatkovna baza za IP geolokacijo"
1740
 
1741
+ #: includes/functions-check-now.php:2950 includes/functions.php:4652
1742
  msgid "Select IP geolocation database."
1743
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1744
 
1745
+ #: includes/functions-check-now.php:2961 includes/functions.php:4663
1746
  msgid "Automatic database updates"
1747
  msgstr "Samodejna posodobitev podatkovne baze"
1748
 
1749
+ #: includes/functions-check-now.php:2964 includes/functions.php:4666
1750
  msgid ""
1751
  "Automatically download and update free GeoLite2 IP geolocation database by "
1752
  "MaxMind"
1754
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1755
  "podatkovno bazo MaxMind"
1756
 
1757
+ #: includes/functions-check-now.php:2972 includes/functions.php:4683
1758
  msgid "Database"
1759
  msgstr "Podatkovna baza"
1760
 
1761
+ #: includes/functions-check-now.php:2975 includes/functions.php:4686
1762
  msgid ""
1763
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1764
  msgstr ""
1766
  "podatkovne baze"
1767
 
1768
  #. translators: %d: group number
1769
+ #: includes/functions-check-now.php:2993 includes/functions.php:4704
1770
  msgid "Group %d"
1771
  msgstr "Skupina %d"
1772
 
1773
+ #: includes/functions-check-now.php:2999 includes/functions.php:4710
1774
  msgid "countries"
1775
  msgstr "države"
1776
 
1777
+ #: includes/functions-check-now.php:3044 includes/functions.php:4755
1778
  msgid ""
1779
  "Enable impression and click tracking. You also need to enable tracking for "
1780
  "each block you want to track."
1786
  msgid "Generate report"
1787
  msgstr "Generiraj poročilo"
1788
 
1789
+ #: includes/functions-check-now.php:3059 includes/functions.php:4774
1790
  msgid "Impression and Click Tracking"
1791
  msgstr "Sledenje Prikazov in Klikov"
1792
 
1793
+ #: includes/functions-check-now.php:3060 includes/functions.php:4775
1794
  #: settings.php:2869
1795
  msgctxt "ad blocking detection"
1796
  msgid "NOT ENABLED"
1797
  msgstr "NI OMOGOČENO"
1798
 
1799
+ #: includes/functions-check-now.php:3076 includes/functions.php:4791
1800
  msgid "Internal"
1801
  msgstr "Notranje"
1802
 
1803
+ #: includes/functions-check-now.php:3080 includes/functions.php:4795
1804
  msgid "Track impressions and clicks with internal tracking and statistics"
1805
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1806
 
1807
+ #: includes/functions-check-now.php:3085 includes/functions.php:4800
1808
  msgid "External"
1809
  msgstr "Zunanje"
1810
 
1811
+ #: includes/functions-check-now.php:3089 includes/functions.php:4804
1812
  msgid ""
1813
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1814
  "code installed)"
1816
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1817
  "kodo za sledenje)"
1818
 
1819
+ #: includes/functions-check-now.php:3094 includes/functions.php:4809
1820
  msgid "Track Pageviews"
1821
  msgstr "Sledi Ogledom Strani"
1822
 
1823
+ #: includes/functions-check-now.php:3100 includes/functions.php:4815
1824
  msgid "Track Pageviews by Device (as configured for viewports)"
1825
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1826
 
1827
+ #: includes/functions-check-now.php:3110 includes/functions.php:4825
1828
  msgid "Track for Logged in Users"
1829
  msgstr "Sledi za Prijavljene Upor."
1830
 
1831
+ #: includes/functions-check-now.php:3116 includes/functions.php:4831
1832
  msgid "Track impressions and clicks from logged in users"
1833
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1834
 
1835
+ #: includes/functions-check-now.php:3126 includes/functions.php:4841
1836
  msgid "Click Detection"
1837
  msgstr "Zaznavanje klikov"
1838
 
1839
+ #: includes/functions-check-now.php:3132 includes/functions.php:4847
1840
  msgid ""
1841
  "Standard method detects clicks only on banners with links, Advanced method "
1842
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1844
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1845
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1846
 
1847
+ #: includes/functions-check-now.php:3151 includes/functions.php:4968
1848
  msgid "Click fraud protection"
1849
  msgstr "Zaščita pred goljufijo s kliki"
1850
 
1851
+ #: includes/functions-check-now.php:3155 includes/functions.php:4972
1852
  msgid "Globally enable click fraud protection for selected blocks."
1853
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1854
 
1855
+ #: includes/functions-check-now.php:3161 includes/functions.php:4992
1856
  msgid "Protection time"
1857
  msgstr "Čas zaščite"
1858
 
1859
+ #: includes/functions-check-now.php:3162 includes/functions.php:4995
1860
  msgid ""
1861
  "Time period in days in which blocks with enabled click fraud protection will "
1862
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1865
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1866
  "za krajša obdobja."
1867
 
1868
+ #: includes/functions-check-now.php:3181 includes/functions.php:4875
1869
  msgid "Report header image"
1870
  msgstr "Slika v glavi poročila"
1871
 
1879
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1880
  "ponastavitev na privzeto sliko."
1881
 
1882
+ #: includes/functions-check-now.php:3185 includes/functions.php:4879
1883
+ #: strings.php:255
1884
  msgid "Select or upload header image"
1885
  msgstr "Izberi ali naloži sliko glave"
1886
 
1887
+ #: includes/functions-check-now.php:3190 includes/functions.php:4884
1888
  msgid "Report header title"
1889
  msgstr "Naslov v glavi poročila"
1890
 
1891
+ #: includes/functions-check-now.php:3193 includes/functions.php:4887
1892
  msgid ""
1893
  "Title to be displayed in the header of the statistics report. Text or HTML "
1894
  "code, clear to reset to default text."
1896
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1897
  "pobrišite za ponastavitev na privzeto besedilo."
1898
 
1899
+ #: includes/functions-check-now.php:3198 includes/functions.php:4892
1900
  msgid "Report header description"
1901
  msgstr "Opis v glavi poročila"
1902
 
1903
+ #: includes/functions-check-now.php:3201 includes/functions.php:4895
1904
  msgid ""
1905
  "Description to be displayed in the header of the statistics report. Text or "
1906
  "HTML code, clear to reset to default text."
1908
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1909
  "pobrišite za ponastavitev na privzeto besedilo."
1910
 
1911
+ #: includes/functions-check-now.php:3206 includes/functions.php:4900
1912
  msgid "Report footer"
1913
  msgstr "Noga poročila"
1914
 
1915
+ #: includes/functions-check-now.php:3209 includes/functions.php:4903
1916
  msgid ""
1917
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1918
  "to default text."
1920
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1921
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1922
 
1923
+ #: includes/functions-check-now.php:3214 includes/functions.php:4908
1924
  msgid "Public report key"
1925
  msgstr "Ključ za javno poročilo"
1926
 
1927
+ #: includes/functions-check-now.php:3217 includes/functions.php:4911
1928
  msgid "String to generate unique report IDs. Clear to reset to default value."
1929
  msgstr ""
1930
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1931
  "privzeto vrednost."
1932
 
1933
+ #: includes/functions-check-now.php:3249 includes/functions.php:5051
1934
  msgid "Are you sure you want to clear all exceptions for block"
1935
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1936
 
1937
+ #: includes/functions-check-now.php:3250 includes/functions.php:5052
1938
  msgid "Clear all exceptions for block"
1939
  msgstr "Pobriši vse izjeme za blok"
1940
 
1941
+ #: includes/functions-check-now.php:3257 includes/functions.php:5065
1942
  msgid "Are you sure you want to clear all exceptions?"
1943
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1944
 
1945
+ #: includes/functions-check-now.php:3257 includes/functions.php:5065
1946
  msgid "Clear all exceptions for all blocks"
1947
  msgstr "Pobriši vse izjeme za vse bloke"
1948
 
1949
+ #: includes/functions-check-now.php:3262 includes/functions.php:5072
1950
+ #: settings.php:4027 settings.php:4532
1951
  msgid "Type"
1952
  msgstr "Vrsta"
1953
 
1954
+ #: includes/functions-check-now.php:3280 includes/functions.php:5090
1955
  msgid "View"
1956
  msgstr "Poglej"
1957
 
1958
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1959
+ #: includes/functions-check-now.php:3292 includes/functions.php:5091
1960
+ #: includes/functions.php:5098 includes/functions.php:5102
1961
  #: includes/placeholders.php:351 includes/preview.php:2711 settings.php:1406
1962
  #: settings.php:3782
1963
  msgid "Edit"
1964
  msgstr "Uredi"
1965
 
1966
+ #: includes/functions-check-now.php:3311 includes/functions.php:5124
1967
  msgid "Are you sure you want to clear all exceptions for"
1968
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1969
 
1970
+ #: includes/functions-check-now.php:3312 includes/functions.php:5125
1971
  msgid "Clear all exceptions for"
1972
  msgstr "Pobriši vse izjeme za"
1973
 
1974
+ #: includes/functions-check-now.php:3325 includes/functions.php:5141
1975
  msgid "No exceptions"
1976
  msgstr "Brez izjem"
1977
 
1978
  #. translators: %s: Ad Inserter Pro
1979
+ #: includes/functions-check-now.php:3336 includes/functions.php:5152
1980
  msgid "%s options for network blogs"
1981
  msgstr "%s izbire za omrežne bloge"
1982
 
1983
  #. translators: %s: Ad Inserter Pro
1984
+ #: includes/functions-check-now.php:3341 includes/functions.php:5157
1985
  msgid "Enable %s widgets for sub-sites"
1986
  msgstr "Omogoči %s gradnik za pod-spletišča"
1987
 
1988
+ #: includes/functions-check-now.php:3341 includes/functions.php:5157
1989
  msgid "Widgets"
1990
  msgstr "Gradniki"
1991
 
1992
+ #: includes/functions-check-now.php:3346 includes/functions.php:5162
1993
  msgid "Enable PHP code processing for sub-sites"
1994
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1995
 
1996
+ #: includes/functions-check-now.php:3346 includes/functions.php:5162
1997
  msgid "PHP Processing"
1998
  msgstr "PHP Procesiranje"
1999
 
2000
  #. translators: %s: Ad Inserter Pro
2001
+ #: includes/functions-check-now.php:3351 includes/functions.php:5167
2002
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2003
  msgstr ""
2004
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2005
 
2006
+ #: includes/functions-check-now.php:3351 includes/functions.php:5167
2007
  msgid "Post/Page exceptions"
2008
  msgstr "Izjeme prispevkov/strani"
2009
 
2010
  #. translators: %s: Ad Inserter Pro
2011
+ #: includes/functions-check-now.php:3356 includes/functions.php:5172
2012
  msgid "Enable %s settings page for sub-sites"
2013
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2014
 
2015
+ #: includes/functions-check-now.php:3356 includes/functions.php:5172
2016
  msgid "Settings page"
2017
  msgstr "Stran z nastavitvami"
2018
 
2019
  #. translators: %s: Ad Inserter Pro
2020
+ #: includes/functions-check-now.php:3361 includes/functions.php:5177
2021
  msgid "Enable %s settings of main site to be used for all blogs"
2022
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2023
 
2024
+ #: includes/functions-check-now.php:3361 includes/functions.php:5177
2025
  msgid "Main site settings used for all blogs"
2026
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2027
 
2028
+ #: includes/functions-check-now.php:3372 includes/functions.php:5195
2029
  #: settings.php:2868
2030
  msgid "Ad Blocking Detection"
2031
  msgstr "Zaznavanje Blokiranja Oglasov"
2032
 
2033
+ #: includes/functions-check-now.php:3378 includes/functions.php:5201
2034
  msgid ""
2035
  "Standard method is reliable but should be used only if Advanced method does "
2036
  "not work. Advanced method recreates files used for detection with random "
2043
  "dostopna"
2044
 
2045
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
2046
+ #: includes/functions-check-now.php:4140 includes/functions.php:6169
2047
+ #: includes/functions.php:6277 includes/functions.php:6302
2048
  msgid "AD BLOCKING"
2049
  msgstr "BLOKIRANJE OGLASOV"
2050
 
2051
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
2052
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
2053
+ #: includes/functions.php:6170 includes/functions.php:6213
2054
+ #: includes/functions.php:6271 includes/functions.php:6303
2055
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2056
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2057
 
2058
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
2059
+ #: includes/functions-check-now.php:4147 includes/functions.php:6173
2060
+ #: includes/functions.php:6270 includes/functions.php:6309
2061
  msgid "NO AD BLOCKING"
2062
  msgstr "NI BLOKIRANJA OGLASOV"
2063
 
2064
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
2065
+ #: includes/functions.php:6212 includes/functions.php:6219
2066
  msgid "AD BLOCKING REPLACEMENT"
2067
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2068
 
2069
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
2070
+ #: includes/functions.php:6391 includes/functions.php:6602
2071
  msgid "Pageviews"
2072
  msgstr "Ogledi strani"
2073
 
2074
+ #: includes/functions-check-now.php:4366 includes/functions.php:6537
2075
  msgctxt "Version"
2076
  msgid "Unknown"
2077
  msgstr "Neznana"
2078
 
2079
+ #: includes/functions-check-now.php:4366 includes/functions.php:6537
2080
  msgctxt "Times"
2081
  msgid "DISPLAYED"
2082
  msgstr "PRIKAZANO"
2083
 
2084
+ #: includes/functions-check-now.php:4366 includes/functions.php:6537
2085
  msgid "No version"
2086
  msgstr "Brez različice"
2087
 
2088
+ #: includes/functions-check-now.php:4367 includes/functions.php:6538
2089
  msgctxt "Times"
2090
  msgid "BLOCKED"
2091
  msgstr "BLOKIRANO"
2092
 
2093
+ #: includes/functions-check-now.php:4429 includes/functions.php:6602
2094
  msgid "Impressions"
2095
  msgstr "Prikazi"
2096
 
2097
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
2098
+ #: includes/functions-check-now.php:4486 includes/functions.php:6603
2099
+ #: includes/functions.php:6604 includes/functions.php:6786
2100
  msgid "Clicks"
2101
  msgstr "Kliki"
2102
 
2103
+ #: includes/functions-check-now.php:4431 includes/functions.php:6604
2104
  msgid "events"
2105
  msgstr "dogodki"
2106
 
2107
+ #: includes/functions-check-now.php:4432 includes/functions.php:6605
2108
  msgid "Ad Blocking Share"
2109
  msgstr "Delež blokiranja oglasov"
2110
 
2111
  #. translators: CTR as Click Through Rate
2112
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
2113
+ #: includes/functions.php:6605 includes/functions.php:6792
2114
  msgid "CTR"
2115
  msgstr "CTR"
2116
 
2117
+ #: includes/functions-check-now.php:4574 includes/functions.php:6874
2118
  msgid "pageviews"
2119
  msgid_plural "pageviews"
2120
  msgstr[0] "ogled strani"
2122
  msgstr[2] "oglede strani"
2123
  msgstr[3] "ogledov strani"
2124
 
2125
+ #: includes/functions-check-now.php:4574 includes/functions.php:6874
2126
  msgid "impressions"
2127
  msgid_plural "impressions"
2128
  msgstr[0] "prikaz"
2130
  msgstr[2] "prikazi"
2131
  msgstr[3] "prikazov"
2132
 
2133
+ #: includes/functions-check-now.php:4578 includes/functions.php:6878
2134
  msgid "event"
2135
  msgid_plural "events"
2136
  msgstr[0] "dogodek"
2138
  msgstr[2] "dogodki"
2139
  msgstr[3] "dogodkov"
2140
 
2141
+ #: includes/functions-check-now.php:4673 includes/functions.php:6973
2142
  msgctxt "Pageviews / Impressions"
2143
  msgid "Average"
2144
  msgstr "Povprečni"
2145
 
2146
+ #: includes/functions-check-now.php:4694 includes/functions.php:6994
2147
  msgctxt "Ad Blocking / Clicks"
2148
  msgid "Average"
2149
  msgstr "Povprečno"
2150
 
2151
+ #: includes/functions-check-now.php:4718 includes/functions.php:7018
2152
  msgctxt "Ad Blocking Share / CTR"
2153
  msgid "Average"
2154
  msgstr "Povprečni"
2155
 
2156
  #. Translators: %s: Ad Inserter Pro
2157
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
2158
+ #: includes/functions-check-now.php:5335 includes/functions.php:7292
2159
+ #: includes/functions.php:7389 includes/functions.php:7929 strings.php:204
2160
  msgid "%s Report"
2161
  msgstr "%s Poročilo"
2162
 
2163
+ #: includes/functions-check-now.php:5241 includes/functions.php:7834
2164
  msgid "for last month"
2165
  msgstr "za zadnji mesec"
2166
 
2167
+ #: includes/functions-check-now.php:5246 includes/functions.php:7839
2168
  msgid "for this month"
2169
  msgstr "za ta mesec"
2170
 
2171
+ #: includes/functions-check-now.php:5251 includes/functions.php:7844
2172
  msgid "for this year"
2173
  msgstr "za to leto"
2174
 
2175
+ #: includes/functions-check-now.php:5256 includes/functions.php:7849
2176
  msgid "for the last 15 days"
2177
  msgstr "za zadnjih 15 dni"
2178
 
2179
+ #: includes/functions-check-now.php:5261 includes/functions.php:7854
2180
  msgid "for the last 30 days"
2181
  msgstr "za zadnjih 30 dni"
2182
 
2183
+ #: includes/functions-check-now.php:5266 includes/functions.php:7859
2184
  msgid "for the last 90 days"
2185
  msgstr "za zadnjih 90 dni"
2186
 
2187
+ #: includes/functions-check-now.php:5271 includes/functions.php:7864
2188
  msgid "for the last 180 days"
2189
  msgstr "za zadnjih 180 dni"
2190
 
2191
+ #: includes/functions-check-now.php:5276 includes/functions.php:7869
2192
  msgid "for the last 365 days"
2193
  msgstr "za zadnjih 365 dni"
2194
 
2195
+ #: includes/functions.php:542 includes/functions.php:4762
2196
  msgid "Generate CSV report"
2197
  msgstr "Generiraj CSV poročilo"
2198
 
2199
  #. translators: %s: Ad Inserter Pro
2200
+ #: includes/functions.php:615
2201
  msgid "Invalid %s version. Continue?"
2202
  msgstr "Neveljavna izdaja %s. Nadaljujem?"
2203
 
2204
+ #: includes/functions.php:787
2205
+ msgid "Show"
2206
+ msgstr "Pokaži"
2207
+
2208
+ #: includes/functions.php:799 includes/functions.php:826
2209
+ msgid ""
2210
+ "Trigger value: page scroll in %, page scroll in px or element with selector "
2211
+ "(#id or .class) scrolls in or out of screen"
2212
+ msgstr ""
2213
+ "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
2214
+ "selektorjem (#id ali .razred) se pomakne izven zaslona"
2215
+
2216
+ #: includes/functions.php:813
2217
+ msgid "Hide"
2218
+ msgstr "Skrij"
2219
+
2220
+ #: includes/functions.php:844 includes/preview.php:2653
2221
  msgid "Background"
2222
  msgstr "Ozadje"
2223
 
2224
  #. translators: %s HTML body tag
2225
+ #: includes/functions.php:851
2226
  msgid "Set %s background"
2227
  msgstr "Nastavi ozadje za %s"
2228
 
2229
+ #: includes/functions.php:864
2230
  msgid "Image to be used for the background"
2231
  msgstr "Slika, ki bo uporabljena za ozadje"
2232
 
2233
+ #: includes/functions.php:869
2234
  msgid "Color"
2235
  msgstr "Barva"
2236
 
2237
+ #: includes/functions.php:870 includes/preview.php:2472
2238
  msgid "Color to be used for the background"
2239
  msgstr "Barva, ki bo uporabljena za ozadje"
2240
 
2241
+ #: includes/functions.php:873 includes/preview.php:2477
2242
  msgid "Image size"
2243
  msgstr "Velikost slike"
2244
 
2245
+ #: includes/functions.php:883
2246
  msgid "Repeat"
2247
  msgstr "Ponavljanje"
2248
 
2249
+ #: includes/functions.php:896
2250
  msgid "Select image"
2251
  msgstr "Izberi sliko"
2252
 
2253
+ #: includes/functions.php:1130 includes/functions.php:1158 settings.php:1793
2254
  #: settings.php:1816 settings.php:1839 settings.php:1862 settings.php:1885
2255
  #: settings.php:1908 settings.php:1930 settings.php:1952
2256
  msgid "Click to select black or white list"
2257
  msgstr "Klikni za za izbor črnega ali belega seznama"
2258
 
2259
  #. translators: %s: Ad Inserter Pro
2260
+ #: includes/functions.php:1770
2261
  msgid "Invalid %s version."
2262
  msgstr "Neveljavna izdaja %s."
2263
 
2264
+ #: includes/functions.php:1771
2265
  msgid "Check license"
2266
  msgstr "Preverite licenco"
2267
 
2268
+ #: includes/functions.php:1786
2269
  msgid "License"
2270
  msgstr "Licenca"
2271
 
2272
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2273
+ #: includes/functions.php:2131
2274
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2275
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2276
 
2277
  #. Translators: %s: HTML tags
2278
+ #: includes/functions.php:2184
2279
  msgid ""
2280
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2281
  "account %s and create license key."
2283
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2284
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2285
 
2286
+ #: includes/functions.php:2946
2287
  msgid "Start date"
2288
  msgstr "Začetni datum"
2289
 
2290
+ #: includes/functions.php:2946
2291
  msgid "Enter date in format yyyy-mm-dd"
2292
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2293
 
2294
+ #: includes/functions.php:2946
2295
  msgid "empty means every day as defined by hours and days in week"
2296
  msgstr "prazno pomeni vsak dan kot določeno z urami in dnevi v tednu"
2297
 
2298
+ #: includes/functions.php:2947
2299
  msgid "Start time"
2300
  msgstr "Začetni čas"
2301
 
2302
+ #: includes/functions.php:2947
2303
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2304
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2305
 
2306
+ #: includes/functions.php:2949
2307
  msgid "End date"
2308
  msgstr "Končni datum"
2309
 
2310
+ #: includes/functions.php:2950
2311
  msgid "End time"
2312
  msgstr "Končni čas"
2313
 
2314
+ #: includes/functions.php:2953
2315
  msgid "Select wanted days in week"
2316
  msgstr "Izberite želene dneve v tednu"
2317
 
2318
+ #: includes/functions.php:3293
2319
+ msgid "Fallback"
2320
+ msgstr "Rezerva"
2321
+
2322
+ #: includes/functions.php:3294
2323
+ msgid "Block to be used when a limit is reached"
2324
+ msgstr "Blok, ki naj bo prikazan, ko je dosežena meja"
2325
+
2326
+ #: includes/functions.php:3318
2327
  msgid "Ad blocking detection is disabled"
2328
  msgstr "%s Zaznavanje blokiranja oglasov je onemogočeno %s"
2329
 
2330
+ #: includes/functions.php:3468
2331
  msgid "Protected"
2332
  msgstr "Zaščiten"
2333
 
2334
+ #: includes/functions.php:3471
2335
  msgid "Manual loading"
2336
  msgstr "Ročno nalaganje"
2337
 
2338
+ #: includes/functions.php:3562
2339
  msgid "IP address blocked"
2340
  msgid_plural "IP addresses blocked"
2341
  msgstr[0] "blokiran IP naslov"
2343
  msgstr[2] "blokirani IP naslovi"
2344
  msgstr[3] "blokiranih IP naslovov"
2345
 
2346
+ #: includes/functions.php:3565 includes/functions.php:3614
2347
  msgid "No IP address blocked"
2348
  msgstr "Noben IP naslov ni blokiran"
2349
 
2350
+ #: includes/functions.php:3627
2351
  msgid "Blocked IP address"
2352
  msgstr "Blokirani IP naslovi"
2353
 
2354
+ #: includes/functions.php:3627
2355
  msgid "Country"
2356
  msgstr "Država"
2357
 
2358
+ #: includes/functions.php:3627
2359
  msgid "Time to expiration"
2360
  msgstr "Čas do poteka"
2361
 
2362
+ #: includes/functions.php:3629 strings.php:226
2363
  msgid "Delete"
2364
  msgstr "Pobriši"
2365
 
2366
+ #: includes/functions.php:3644
2367
  msgid "Delete IP address"
2368
  msgstr "Briši IP naslov"
2369
 
2370
+ #: includes/functions.php:4201
2371
  msgid "CONNECTED"
2372
  msgstr "POVEZAN"
2373
 
2374
+ #: includes/functions.php:4202
2375
  msgid "Disconnect website"
2376
  msgstr "Razveži spletno mesto"
2377
 
2378
+ #: includes/functions.php:4218
2379
  msgid "MANAGED BY"
2380
  msgstr "UPRAVLJAN S STRANI"
2381
 
2382
+ #: includes/functions.php:4239
2383
  msgid "Remote managenent"
2384
  msgstr "Oddaljeno upravljanje"
2385
 
2386
+ #: includes/functions.php:4243
2387
  msgid "Allow to connect and manage plugin settings"
2388
  msgstr "Dovoli povezavo in upravljanje z nastavitvami vtičnika"
2389
 
2390
+ #: includes/functions.php:4245
2391
  msgid "String to allow plugin management. Clear to reset to default value."
2392
  msgstr ""
2393
  "Niz za dovolitev upravjanja z vtičnikom. Pobrišite za ponastavitev na "
2394
  "privzeto vrednost."
2395
 
2396
+ #: includes/functions.php:4253
2397
  msgid "Check remote IP address"
2398
  msgstr "Preveri oddaljeni IP naslov"
2399
 
2400
+ #: includes/functions.php:4257
2401
  msgid "Check IP address of remote management website"
2402
  msgstr "Preveri IP naslov oddaljenega spletnega mesta za upravljanje"
2403
 
2404
+ #: includes/functions.php:4259
2405
  msgid "Allowed IP addresses of remote management websites"
2406
  msgstr "Dovoljeni IP naslovi oddaljenih spletnih mest za upravljanje"
2407
 
2408
  #. Translators: %s: Ad Inserter Pro
2409
+ #: includes/functions.php:4282
2410
  msgid "Manage %s on other websites"
2411
  msgstr "Upravljajte %s na drugih spletnih mestih"
2412
 
2413
+ #: includes/functions.php:4297
2414
  msgid "Add website"
2415
  msgstr "Dodaj spletno mesto"
2416
 
2417
+ #: includes/functions.php:4301
2418
  msgid "Rearrange website order"
2419
  msgstr "Preuredi vrstni red spletnih mest"
2420
 
2421
+ #: includes/functions.php:4305
2422
  msgid "Cancel changes"
2423
  msgstr "Prekliči spremembe"
2424
 
2425
+ #: includes/functions.php:4309
2426
  msgid "Save changes"
2427
  msgstr "Shrani spremembe"
2428
 
2429
+ #: includes/functions.php:4411 includes/functions.php:4414
2430
+ #: includes/functions.php:4417 includes/functions.php:4422
2431
  msgid "Invalid data received from"
2432
  msgstr "Prejeti neveljavni podatki od"
2433
 
2434
+ #: includes/functions.php:4421 includes/functions.php:4425
2435
  msgid "Error connecting to"
2436
  msgstr "Napaka pri povezovanju na"
2437
 
2438
+ #: includes/functions.php:4421
2439
  msgid "No data received"
2440
  msgstr "Nobenih podatkov ni bilo prejetih"
2441
 
2442
+ #: includes/functions.php:4466
2443
  msgid "Error saving websites"
2444
  msgstr "Napaka pri shranjevanju spletnih mest"
2445
 
2446
+ #: includes/functions.php:4506
2447
  msgid "Can't connect to itself"
2448
  msgstr "Ne morem se povezati nase"
2449
 
2450
+ #: includes/functions.php:4557
2451
  msgid "Connect website"
2452
  msgstr "Pveži spletno mesto"
2453
 
2454
+ #: includes/functions.php:4561
2455
  msgid "Delete website"
2456
  msgstr "Izbriši spletno mesto"
2457
 
2458
+ #: includes/functions.php:4577
2459
  msgid "Key"
2460
  msgstr "Ključ"
2461
 
2462
+ #: includes/functions.php:4595
2463
  msgid "Address"
2464
  msgstr "Naslov"
2465
 
2466
+ #: includes/functions.php:4608
2467
  msgid "No website configured"
2468
  msgstr "Nobeno spletno mesto ni nastavljeno"
2469
 
2470
+ #: includes/functions.php:4609
2471
  msgid "No website matches search keywords"
2472
  msgstr "Nobeno spletno mesto ne ustreza iskalnim ključnim besedam"
2473
 
2474
  #. Translators: %s HTML tags
2475
+ #: includes/functions.php:4638
2476
  msgid "Create and manage %s MaxMind license key %s"
2477
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2478
 
2479
+ #: includes/functions.php:4674
2480
  msgid "MaxMind license key"
2481
  msgstr "MaxMind licenčni ključ"
2482
 
2483
+ #: includes/functions.php:4677
2484
  msgid "Enter license key obtained from MaxMind"
2485
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2486
 
2487
+ #: includes/functions.php:4878
2488
  msgid ""
2489
  "Image or logo to be displayed in the header of the statistics report. "
2490
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2494
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
2495
  "ponastavitev na privzeto sliko."
2496
 
2497
+ #: includes/functions.php:4926
2498
  msgid "Event category"
2499
  msgstr "Kategorija dogodka"
2500
 
2501
+ #: includes/functions.php:4929
2502
  msgid ""
2503
  "Category name used for external tracking events. You can use tags to get the "
2504
  "event, the number or the name of the block that caused the event."
2506
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2507
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2508
 
2509
+ #: includes/functions.php:4934
2510
  msgid "Event action"
2511
  msgstr "Akcija dogodka"
2512
 
2513
+ #: includes/functions.php:4937
2514
  msgid ""
2515
  "Action name used for external tracking events. You can use tags to get the "
2516
  "event, the number or the name of the block that caused the event."
2518
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2519
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2520
 
2521
+ #: includes/functions.php:4942
2522
  msgid "Event label"
2523
  msgstr "Oznaka dogodka"
2524
 
2525
+ #: includes/functions.php:4945
2526
  msgid ""
2527
  "Label name used for external tracking events. You can use tags to get the "
2528
  "event, the number or the name of the block that caused the event."
2530
  "Ime oznake uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2531
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2532
 
2533
+ #: includes/functions.php:4978
2534
  msgid "Global visitor limits"
2535
  msgstr "Globalne omejitve obiskovalca"
2536
 
2537
+ #: includes/functions.php:5001
2538
  msgid "Block IP address"
2539
  msgstr "Blokiraj IP naslov"
2540
 
2541
+ #: includes/functions.php:5006
2542
  msgid "Block visitor's IP address when protection is activated"
2543
  msgstr "Blokiraj obiskovalčev IP naslov, ko je aktivirana zaščita"
2544
 
2545
+ #: includes/functions.php:5008
2546
  msgid "Click to show blocked IP addresses"
2547
  msgstr "Kliknite za prikaz blokiranih IP naslovov"
2548
 
2549
  #. translators: %s: Ad Inserter Pro
2550
+ #: includes/functions.php:5182
2551
  msgid "Show link to %s settings page for each site on the Sites page"
2552
  msgstr ""
2553
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2554
  "Spletišča"
2555
 
2556
  #. translators: %s: Ad Inserter Pro
2557
+ #: includes/functions.php:5182
2558
  msgid "Show link to %s on the Sites page"
2559
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2560
 
2561
+ #: includes/functions.php:5224 settings.php:3166
2562
  msgid ""
2563
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2564
  "tags, processing) by url parameters for non-logged in users. Enable this "
2573
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
2574
  "vedno omogočeno."
2575
 
2576
+ #: includes/functions.php:5226 settings.php:3168
2577
  msgid "Remote debugging"
2578
  msgstr "Oddaljeno razhroščevanje"
2579
 
2580
+ #: includes/functions.php:6685
2581
  msgid "Date"
2582
  msgstr "Datum"
2583
 
2584
+ #: includes/functions.php:7153 includes/functions.php:7164
2585
  msgid "File %s missing."
2586
  msgstr "Datoteka %s ni najdena."
2587
 
2609
  msgid "Placeholder"
2610
  msgstr "Polnilo"
2611
 
2612
+ #: includes/placeholders.php:361 settings.php:966 settings.php:4533
2613
  msgid "Size"
2614
  msgstr "Velikost"
2615
 
3090
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
3091
  "prazne za enakomerno porazdelitev deležev različic."
3092
 
3093
+ #: settings.php:309 settings.php:2107 settings.php:4446
3094
  msgid "Scheduling"
3095
  msgstr "Urnik"
3096
 
3147
  msgid "Clear block"
3148
  msgstr "Počisti blok"
3149
 
3150
+ #: settings.php:798 settings.php:4399
3151
  msgid "Copy block"
3152
  msgstr "Kopiraj blok"
3153
 
3899
  msgstr ""
3900
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3901
 
3902
+ #: settings.php:1986 settings.php:4456
3903
  msgid "Shortcode"
3904
  msgstr "Kratka koda"
3905
 
4768
  msgstr ""
4769
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4770
 
4771
+ #: settings.php:3641 strings.php:251
4772
  msgid "Position not checked yet"
4773
  msgstr "Položaj še ni bil preverjen"
4774
 
4776
  msgid "Toggle active/all blocks"
4777
  msgstr "Preklopi aktive/vse bloke"
4778
 
4779
+ #: settings.php:3682 strings.php:238
4780
  msgid "Rearrange block order"
4781
  msgstr "Preuredi vrstni red blokov"
4782
 
4796
  msgid "Clear authorization to access AdSense account"
4797
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4798
 
4799
+ #: settings.php:3726 settings.php:4619 settings.php:4686 strings.php:246
4800
  msgid "Google AdSense Homepage"
4801
  msgstr "Google AdSense Domača Stran"
4802
 
4817
  msgid "Reload ads.txt file"
4818
  msgstr "Ponovno naloži datoteko ads.txt"
4819
 
4820
+ #: settings.php:3782 settings.php:4751
4821
  msgid "Save"
4822
  msgstr "Shrani"
4823
 
4826
  msgid "ads.txt file: %s virtual ads.txt file"
4827
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4828
 
4829
+ #: settings.php:3967 settings.php:3987 strings.php:225
4830
  msgid "Warning"
4831
  msgstr "Opozorilo"
4832
 
4885
  msgid "Account ID found in block but not present in ads.txt"
4886
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4887
 
4888
+ #: settings.php:4396
4889
  msgid "Preview block"
4890
  msgstr "Predogled bloka"
4891
 
4892
+ #: settings.php:4403
4893
  msgid "Pause block"
4894
  msgstr "Ustavite blok"
4895
 
4896
+ #: settings.php:4442
4897
  msgid "Automatic insertion"
4898
  msgstr "Samodejno vstavljanje"
4899
 
4900
  #. translators: %s HTML tags
4901
+ #: settings.php:4443 settings.php:5785
4902
  msgid "PHP code processing"
4903
  msgstr "Procesiranje PHP kode"
4904
 
4905
+ #: settings.php:4445
4906
  msgid "Device detection"
4907
  msgstr "Zaznavanje naprave"
4908
 
4909
+ #: settings.php:4468
4910
  msgid "No active block"
4911
  msgstr "Noben aktiven blok"
4912
 
4913
+ #: settings.php:4469
4914
  msgid "No block matches search keywords"
4915
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
4916
 
4917
+ #: settings.php:4529
4918
  msgid "Ad unit"
4919
  msgstr "Enota"
4920
 
4921
+ #: settings.php:4531
4922
  msgid "Slot ID"
4923
  msgstr "ID mesta"
4924
 
4925
+ #: settings.php:4558
4926
  msgid "Copy AdSense code"
4927
  msgstr "Kopiraj kodo AdSense"
4928
 
4929
+ #: settings.php:4561
4930
  msgid "Preview AdSense ad"
4931
  msgstr "Predogled oglasa AdSense"
4932
 
4933
+ #: settings.php:4564
4934
  msgid "Get AdSense code"
4935
  msgstr "Pridobi kodo AdSense"
4936
 
4937
  #. translators: %s: HTML tags
4938
+ #: settings.php:4596
4939
  msgid ""
4940
  "Please %s clear authorization %s with the button %s above and once again "
4941
  "authorize access to your AdSense account."
4943
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4944
  "avtorizirajte dostop do vašega računa AdSense."
4945
 
4946
+ #: settings.php:4615
4947
  msgid "AdSense Integration"
4948
  msgstr "Integracija AdSense"
4949
 
4950
+ #: settings.php:4617
4951
  msgid "AdSense Integration - Step 2"
4952
  msgstr "Integracija AdSense - Korak 2"
4953
 
4954
  #. translators: %s: HTML tags
4955
+ #: settings.php:4623
4956
  msgid ""
4957
  "Authorize %s to access your AdSense account. Click on the %s Get "
4958
  "Authorization Code %s button to open a new window where you can allow "
4965
  "Avtoriziraj. %s"
4966
 
4967
  #. translators: %s: HTML tags
4968
+ #: settings.php:4630
4969
  msgid ""
4970
  "If you get error, can't access ad units or would like to use own Google API "
4971
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4976
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
4977
 
4978
  #. translators: %s: HTML tags
4979
+ #: settings.php:4632
4980
  msgid ""
4981
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4982
  "Authorization Code %s button to open a new window where you can allow "
4989
  "gumb %s Avtoriziraj. %s"
4990
 
4991
  #. translators: %s: HTML tags
4992
+ #: settings.php:4639
4993
  msgid ""
4994
  "If you get error %s invalid client %s click on the button %s Clear and "
4995
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4997
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
4998
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
4999
 
5000
+ #: settings.php:4650
5001
  msgid "Get Authorization Code"
5002
  msgstr "Pridobi Avtoriazcijsko Kodo"
5003
 
5004
+ #: settings.php:4653
5005
  msgid "Enter Authorization Code"
5006
  msgstr "Vnesi Avorizacijsko Kodo"
5007
 
5008
+ #: settings.php:4663
5009
  msgid "Use own API IDs"
5010
  msgstr "Uporabi lastne API ID-je"
5011
 
5012
+ #: settings.php:4665
5013
  msgid "Clear and return to Step 1"
5014
  msgstr "Odstrani in se vrni na Korak 1"
5015
 
5016
+ #: settings.php:4669
5017
  msgid "Authorize"
5018
  msgstr "Avtoriziraj"
5019
 
5020
+ #: settings.php:4685
5021
  msgid "AdSense Integration - Step 1"
5022
  msgstr "Integracija AdSense - Korak 1"
5023
 
5024
  #. translators: %s: Ad Inserter
5025
+ #: settings.php:4689
5026
  msgid ""
5027
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
5028
  "To do this you need to authorize %s to access your AdSense account. The "
5035
  "Odjemalca in Skrivnost Odjemalca."
5036
 
5037
  #. translators: %s: HTML tags
5038
+ #: settings.php:4698
5039
  msgid "Go to %s Google APIs and Services console %s"
5040
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
5041
 
5042
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
5043
+ #: settings.php:4699
5044
  msgid ""
5045
  "Create %1$s project - if the project and IDs are already created click on "
5046
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
5049
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
5050
 
5051
  #. translators: %s: HTML tags
5052
+ #: settings.php:4700
5053
  msgid ""
5054
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
5055
  "create a new project"
5058
  "ustvaritev novega projekta"
5059
 
5060
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
5061
+ #: settings.php:4701
5062
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
5063
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
5064
 
5065
  #. translators: %s: HTML tags
5066
+ #: settings.php:4702
5067
  msgid ""
5068
  "Click on project selection, wait for the project to be created and then and "
5069
  "select %s as the current project"
5072
  "izberite %s kot trenutni projekt"
5073
 
5074
  #. translators: %s: HTML tags
5075
+ #: settings.php:4703
5076
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
5077
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
5078
 
5079
  #. translators: %s: HTML tags
5080
+ #: settings.php:4704
5081
  msgid "Search for adsense and enable %s"
5082
  msgstr "Poiščite adsense in omogočite %s"
5083
 
5084
  #. translators: %s: HTML tags
5085
+ #: settings.php:4705
5086
  msgid "Click on %s CREATE CREDENTIALS %s"
5087
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
5088
 
5089
  #. translators: %s: HTML tags
5090
+ #: settings.php:4706
5091
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
5092
  msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
5093
 
5094
  #. translators: %s: HTML tags
5095
+ #: settings.php:4707
5096
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
5097
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
5098
 
5099
  #. translators: %s: HTML tags
5100
+ #: settings.php:4708
5101
  msgid "For %s What data will you be accessing? %s select %s User data %s"
5102
  msgstr ""
5103
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
5104
  "podatki %s"
5105
 
5106
  #. translators: %s: HTML tags
5107
+ #: settings.php:4709
5108
  msgid "Click on %s What credentials do I need? %s"
5109
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
5110
 
5111
  #. translators: %s: HTML tags
5112
+ #: settings.php:4710
5113
  msgid ""
5114
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
5115
  "Consent Screen %s"
5118
  "Nastavite Zaslon za Soglasje %s"
5119
 
5120
  #. translators: %s: HTML tags
5121
+ #: settings.php:4711
5122
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
5123
  msgstr ""
5124
  "Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
5125
 
5126
  #. translators: %s: HTML tags
5127
+ #: settings.php:4712
5128
  msgid ""
5129
  "For %s App name %s enter %s and for %s User support email %s select your "
5130
  "Google account email address"
5133
  "vaš email naslov Google računa"
5134
 
5135
  #. translators: %s: HTML tags
5136
+ #: settings.php:4713
5137
  msgid ""
5138
  "For %s Developer contact information %s enter your email address and click "
5139
  "on %s SAVE AND CONTINUE %s"
5142
  "na %s SHRANI IN NADALJUJ %s"
5143
 
5144
  #. translators: %s: HTML tags
5145
+ #: settings.php:4714
5146
  msgid ""
5147
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
5148
  "add your Google account email address"
5151
  "UPORABNIKE %s in dodajte email naslov vašga Google računa"
5152
 
5153
  #. translators: %s: HTML tags
5154
+ #: settings.php:4715
5155
  msgid ""
5156
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
5157
  msgstr ""
5159
  "NADZORNO PLOŠČO %s"
5160
 
5161
  #. translators: %s: HTML tags
5162
+ #: settings.php:4716
5163
  msgid ""
5164
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5165
  "Ad Inserter client %s and then click on %s REFRESH %s"
5168
  "vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
5169
 
5170
  #. translators: %s: HTML tags
5171
+ #: settings.php:4717
5172
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
5173
  msgstr ""
5174
  "Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
5175
  "OPRAVLJENO %s"
5176
 
5177
  #. translators: %s: HTML tags
5178
+ #: settings.php:4718
5179
  msgid ""
5180
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5181
  "secret %s"
5183
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5184
  "%s Skrivnost odjemalca %s"
5185
 
5186
+ #: settings.php:4719
5187
  msgid "Copy them to the appropriate fields below"
5188
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5189
 
5190
+ #: settings.php:4725
5191
  msgid "Client ID"
5192
  msgstr "ID odjemalca"
5193
 
5194
+ #: settings.php:4728
5195
  msgid "Enter Client ID"
5196
  msgstr "Vnesite ID odjemalca"
5197
 
5198
+ #: settings.php:4733
5199
  msgid "Client secret"
5200
  msgstr "Skrivnost odjemalca"
5201
 
5202
+ #: settings.php:4736
5203
  msgid "Enter Client secret"
5204
  msgstr "Vnesite Skrivnost odjemalca"
5205
 
5206
+ #: settings.php:4746
5207
  msgid "Use default API IDs"
5208
  msgstr "Uporabi privzete API ID-je"
5209
 
5210
+ #: settings.php:4847
5211
  msgid "All posts"
5212
  msgstr "Vsi prispevki"
5213
 
5214
+ #: settings.php:4848
5215
  msgid "All static pages"
5216
  msgstr "Vse statične strani"
5217
 
5218
+ #: settings.php:5413 settings.php:5426 settings.php:5440 settings.php:5454
5219
+ #: settings.php:5468
5220
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5221
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5222
 
5223
+ #: settings.php:5418 settings.php:5431 settings.php:5445 settings.php:5459
5224
+ #: settings.php:5473 settings.php:5668 settings.php:5671 settings.php:5673
5225
+ #: settings.php:5682 settings.php:5691 settings.php:5696 settings.php:5704
5226
+ #: settings.php:5705 settings.php:5708 settings.php:5711 settings.php:5715
5227
+ #: settings.php:5725 settings.php:5729
5228
  msgid "Looking for AdSense alternative?"
5229
  msgstr "Iščete alternativo za AdSense?"
5230
 
5231
+ #: settings.php:5485
5232
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5233
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5234
 
5235
+ #: settings.php:5490 settings.php:5665 settings.php:5686 settings.php:5714
5236
+ #: settings.php:5733
5237
  msgid "Use Infolinks ads with Adsense to earn more"
5238
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5239
 
5240
+ #: settings.php:5511 settings.php:5561
5241
  msgid "Support plugin development"
5242
  msgstr "Podprite razvoj vtičnika"
5243
 
5244
+ #: settings.php:5516 settings.php:5562
5245
  msgid ""
5246
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5247
  "reviewing the plugin on WordPres"
5249
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5250
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5251
 
5252
+ #: settings.php:5516
5253
  msgctxt "Review Ad Inserter"
5254
  msgid "Review"
5255
  msgstr "Ocenite"
5256
 
5257
+ #: settings.php:5521
5258
  msgid ""
5259
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5260
  "rating the plugin on WordPres"
5262
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5263
  "razširiti novico z oceno vtičnika na WordPress-u"
5264
 
5265
+ #: settings.php:5521
5266
  msgctxt "Rate Ad Inserter"
5267
  msgid "Rate"
5268
  msgstr "Ocenite"
5269
 
5270
+ #: settings.php:5526
5271
  msgid ""
5272
  "Support free Ad Inserter development. If you are making money with Ad "
5273
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
5276
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5277
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5278
 
5279
+ #: settings.php:5526
5280
  msgid "Donate"
5281
  msgstr "Donirajte"
5282
 
5283
+ #: settings.php:5533 settings.php:5577
5284
  msgid "Average rating of the plugin - Thank you!"
5285
  msgstr "Povprečna ocena vtičnika - Hvala!"
5286
 
5287
  #. translators: %s: Ad Inserter, HTML tags
5288
+ #: settings.php:5544
5289
  msgid ""
5290
  "You've been using %s for a while now, and I hope you're happy with it. "
5291
  "Positive %s reviews %s are a great way to show your appreciation for my "
5300
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5301
  "bi rekli 'Hvala'."
5302
 
5303
+ #: settings.php:5562
5304
  msgid "Review"
5305
  msgstr "Ocena"
5306
 
5307
+ #: settings.php:5566
5308
  msgid "Ad Inserter on Twitter"
5309
  msgstr "Ad Inserter na Twitter-ju"
5310
 
5311
+ #: settings.php:5567
5312
  msgid "Ad Inserter on Facebook"
5313
  msgstr "Ad Inserter na Facebook-u"
5314
 
5315
+ #: settings.php:5570
5316
  msgid "Follow Ad Inserter"
5317
  msgstr "Sledi Ad Inserter-ju"
5318
 
5319
  #. translators: %s: HTML tags
5320
+ #: settings.php:5597
5321
  msgid ""
5322
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5323
  "and %s Common Settings %s pages"
5326
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5327
 
5328
  #. translators: %s: HTML tags
5329
+ #: settings.php:5609
5330
  msgid ""
5331
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5332
  "Auto ads, %s %s AMP ads %s"
5335
  "viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
5336
 
5337
  #. translators: %s: HTML tags
5338
+ #: settings.php:5626
5339
  msgid ""
5340
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5341
  "purchase you refer to us"
5344
  "nakup, ki nam ga posredujete"
5345
 
5346
  #. translators: %s: HTML tags
5347
+ #: settings.php:5633
5348
  msgid ""
5349
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5350
  "diagnose and fix the problem."
5353
  "navodili za diagnozo in rešitvami za težave."
5354
 
5355
  #. translators: %s: HTML tags
5356
+ #: settings.php:5637
5357
  msgid ""
5358
  "If you need any kind of help or support, please do not hesitate to open a "
5359
  "thread on the %s support forum. %s"
5361
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5362
  "nit na %s podpornem forumu. %s"
5363
 
5364
+ #: settings.php:5664 settings.php:5734 settings.php:5738
5365
  msgid "Code preview with visual CSS editor"
5366
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5367
 
5368
+ #: settings.php:5667 settings.php:5695
5369
  msgid "Ad blocking detection and content protection"
5370
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5371
 
5372
+ #: settings.php:5670 settings.php:5723
5373
  msgid "A/B testing - Track ad impressions and clicks"
5374
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5375
 
5376
+ #: settings.php:5687
5377
  msgid "Insert ads on AMP pages"
5378
  msgstr "Vstavite oglase na AMP straneh"
5379
 
5380
+ #: settings.php:5746
5381
  msgid "Looking for Pro Ad Management plugin?"
5382
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5383
 
5384
+ #: settings.php:5747
5385
  msgid "To Optimally Monetize your WordPress website?"
5386
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5387
 
5388
  #. Translators: %s: price of Ad Inserter Pro
5389
+ #: settings.php:5748
5390
  msgid "Different license types starting from %s"
5391
  msgstr "Različni tipi licenc začenši od %s"
5392
 
5393
  #. translators: %s HTML tags
5394
+ #: settings.php:5751
5395
  msgid "%s AdSense Integration %s"
5396
  msgstr "%s Integracija AdSense %s"
5397
 
5398
  #. translators: %s HTML tags
5399
+ #: settings.php:5752
5400
  msgid "Syntax highlighting %s editor %s"
5401
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5402
 
5403
  #. translators: %s HTML tags
5404
+ #: settings.php:5753
5405
  msgid "%s Code preview %s with visual CSS editor"
5406
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5407
 
5408
  #. translators: %s HTML tags
5409
+ #: settings.php:5754
5410
  msgid "Simple user interface - all settings on a single page"
5411
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5412
 
5413
  #. translators: %s HTML tags
5414
+ #: settings.php:5755
5415
  msgid ""
5416
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5417
  "image / excerpt"
5420
  "%s / sliko / izvlečkom"
5421
 
5422
  #. translators: %s HTML tags
5423
+ #: settings.php:5756
5424
  msgid "%s Automatic insertion %s between posts on blog pages"
5425
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5426
 
5427
  #. translators: %s HTML tags
5428
+ #: settings.php:5757
5429
  msgid "%s Automatic insertion %s before, between and after comments"
5430
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5431
 
5432
  #. translators: %s HTML tags
5433
+ #: settings.php:5758
5434
  msgid "%s Automatic insertion %s after %s or before %s tag"
5435
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5436
 
5437
  #. translators: %s HTML tags
5438
+ #: settings.php:5759
5439
  msgid "Automatic insertion at %s custom hook positions %s"
5440
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5441
 
5442
  #. translators: %s HTML tags
5443
+ #: settings.php:5760
5444
  msgid ""
5445
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5446
  "selectors)"
5449
  "selektorjev)"
5450
 
5451
  #. translators: %s HTML tags
5452
+ #: settings.php:5761
5453
  msgid "%s Insertion exceptions %s for individual posts and pages"
5454
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5455
 
5456
  #. translators: %s HTML tags
5457
+ #: settings.php:5762
5458
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5459
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5460
 
5461
  #. translators: %s HTML tags
5462
+ #: settings.php:5763
5463
  msgid ""
5464
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5465
  "scrolls)"
5468
  "se stran pomika)"
5469
 
5470
  #. translators: %s HTML tags
5471
+ #: settings.php:5764
5472
  msgid "%s Background ads %s with one or left and right background images"
5473
  msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
5474
 
5475
  #. translators: %s HTML tags
5476
+ #: settings.php:5765
5477
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5478
  msgstr ""
5479
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5480
 
5481
  #. translators: %s HTML tags
5482
+ #: settings.php:5766
5483
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5484
  msgstr ""
5485
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5486
 
5487
  #. translators: %s HTML tags
5488
+ #: settings.php:5767
5489
  msgid ""
5490
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5491
  "visible)"
5494
  "postane viden)"
5495
 
5496
  #. translators: %s HTML tags
5497
+ #: settings.php:5768
5498
  msgid ""
5499
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5500
  msgstr ""
5502
  "strani)"
5503
 
5504
  #. translators: %s HTML tags
5505
+ #: settings.php:5769
5506
  msgid "Block %s alignment and style %s customizations"
5507
  msgstr "%s Poravnave in slogi %s bloka po meri"
5508
 
5509
  #. translators: %s HTML tags
5510
+ #: settings.php:5770
5511
  msgid ""
5512
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5513
  "TOS)"
5515
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5516
 
5517
  #. translators: %s HTML tags
5518
+ #: settings.php:5771
5519
  msgid ""
5520
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5521
  "feeds"
5524
  "virih"
5525
 
5526
  #. translators: %s HTML tags
5527
+ #: settings.php:5772
5528
  msgid "%s Ad rotation %s (works also with caching)"
5529
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5530
 
5531
  #. translators: %s HTML tags
5532
+ #: settings.php:5773
5533
  msgid "Create, edit and check %s ads.txt %s file"
5534
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5535
 
5536
  #. translators: %s HTML tags
5537
+ #: settings.php:5774
5538
  msgid ""
5539
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5540
  "AdSense)"
5543
  "AdSense)"
5544
 
5545
  #. translators: %s HTML tags
5546
+ #: settings.php:5775
5547
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5548
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5549
 
5550
  #. translators: %s HTML tags
5551
+ #: settings.php:5776
5552
  msgid "%s Public web reports %s for clients, export to PDF"
5553
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5554
 
5555
  #. translators: %s HTML tags
5556
+ #: settings.php:5777
5557
  msgid "Support for %s A/B testing %s"
5558
  msgstr "Podpora za %s A/B testiranje %s"
5559
 
5560
  #. translators: %s HTML tags
5561
+ #: settings.php:5778
5562
  msgid "Frequency capping - %s limit impressions or clicks %s"
5563
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5564
 
5565
  #. translators: %s HTML tags
5566
+ #: settings.php:5779
5567
  msgid "Click fraud %s protection %s"
5568
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5569
 
5570
  #. translators: %s HTML tags
5571
+ #: settings.php:5780
5572
  msgid "Support for %s GDPR consent cookie checks %s"
5573
  msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
5574
 
5575
  #. translators: %s HTML tags
5576
+ #: settings.php:5781
5577
  msgid "Support for %s lazy loading %s"
5578
  msgstr "Podpora za %s leno nalaganje %s"
5579
 
5580
  #. translators: %s HTML tags
5581
+ #: settings.php:5782
5582
  msgid "Support for ads on %s AMP pages %s"
5583
  msgstr "Podpora za oglase na %s AMP straneh %s"
5584
 
5585
  #. translators: %s HTML tags
5586
+ #: settings.php:5783
5587
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5588
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5589
 
5590
  #. translators: %s HTML tags
5591
+ #: settings.php:5784
5592
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5593
  msgstr ""
5594
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5595
 
5596
  #. translators: %s HTML tags
5597
+ #: settings.php:5786
5598
  msgid "%s Banner %s code generator"
5599
  msgstr "Generator kode za %s pasice %s"
5600
 
5601
  #. translators: %s HTML tags
5602
+ #: settings.php:5787
5603
  msgid "Support for %s header and footer %s code"
5604
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5605
 
5606
  #. translators: %s HTML tags
5607
+ #: settings.php:5788
5608
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5609
  msgstr ""
5610
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5611
 
5612
  #. translators: %s HTML tags
5613
+ #: settings.php:5789
5614
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5615
  msgstr ""
5616
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5617
  "strežnika"
5618
 
5619
  #. translators: %s HTML tags
5620
+ #: settings.php:5790
5621
  msgid "Client-side %s mobile device detection %s (works with caching)"
5622
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5623
 
5624
  #. translators: %s HTML tags
5625
+ #: settings.php:5791
5626
  msgid ""
5627
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5628
  "protection"
5631
  "vsebine"
5632
 
5633
  #. translators: %s HTML tags
5634
+ #: settings.php:5792
5635
  msgid "%s Ad blocking statistics %s"
5636
  msgstr "%s Statistika blokiranja oglasov %s"
5637
 
5638
  #. translators: %s HTML tags
5639
+ #: settings.php:5793
5640
  msgid ""
5641
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5642
  "referrers, operating systems, browsers"
5645
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5646
 
5647
  #. translators: %s HTML tags
5648
+ #: settings.php:5794
5649
  msgid ""
5650
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5651
  msgstr ""
5652
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5653
 
5654
  #. translators: %s HTML tags
5655
+ #: settings.php:5795
5656
  msgid "%s Multisite options %s to limit settings on the sites"
5657
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5658
 
5659
  #. translators: %s HTML tags
5660
+ #: settings.php:5796
5661
  msgid "%s Import/Export %s block or plugin settings"
5662
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5663
 
5664
  #. translators: %s HTML tags
5665
+ #: settings.php:5797
5666
  msgid "%s Insertion scheduling %s with fallback option"
5667
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5668
 
5669
  #. translators: %s HTML tags
5670
+ #: settings.php:5798
5671
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5672
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5673
 
5674
  #. translators: %s HTML tags
5675
+ #: settings.php:5799
5676
  msgid "Simple troubleshooting with many %s debugging functions %s"
5677
  msgstr ""
5678
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5679
 
5680
  #. translators: %s HTML tags
5681
+ #: settings.php:5800
5682
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5683
  msgstr ""
5684
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5685
 
5686
  #. translators: %s HTML tags
5687
+ #: settings.php:5801
5688
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5689
  msgstr ""
5690
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5691
 
5692
  #. translators: %s HTML tags
5693
+ #: settings.php:5802
5694
  msgid ""
5695
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5696
  msgstr ""
5697
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5698
 
5699
  #. translators: %s HTML tags
5700
+ #: settings.php:5803
5701
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5702
  msgstr ""
5703
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5704
 
5705
  #. translators: %s HTML tags
5706
+ #: settings.php:5804
5707
  msgid "No ads on the settings page"
5708
  msgstr "Stran z nastavitvami brez oglasov"
5709
 
5710
  #. translators: %s HTML tags
5711
+ #: settings.php:5805
5712
  msgid "Premium support"
5713
  msgstr "Vrhunska podpora"
5714
 
5715
  #. translators: %s HTML tags
5716
+ #: settings.php:5808
5717
  msgid ""
5718
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5719
  "website with many advertising features to automatically insert adverts on "
5740
  "bodo ohranile)."
5741
 
5742
  #. translators: %s HTML tags
5743
+ #: settings.php:5821
5744
  msgid "Looking for %s Pro Ad Management plugin? %s"
5745
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5746
 
5747
  #. translators: %s HTML tags
5748
+ #: settings.php:5826
5749
  msgid "Ads between posts"
5750
  msgstr "Oglasi med prispevki"
5751
 
5752
  #. translators: %s HTML tags
5753
+ #: settings.php:5827
5754
  msgid "Ads between comments"
5755
  msgstr "Oglasi med komentarji"
5756
 
5757
  #. translators: %s HTML tags
5758
+ #: settings.php:5828
5759
  msgid "Support via email"
5760
  msgstr "Podpora prek elektronske pošte"
5761
 
5762
  #. translators: %s HTML tags
5763
+ #: settings.php:5834
5764
  msgid "%s Sticky positions %s"
5765
  msgstr "%s Lepljivi položaji %s"
5766
 
5767
  #. translators: %s HTML tags
5768
+ #: settings.php:5835
5769
  msgid "%s Limit insertions %s"
5770
  msgstr "%s Omeji vstavljanja %s"
5771
 
5772
  #. translators: %s HTML tags
5773
+ #: settings.php:5836
5774
  msgid "%s Clearance %s options"
5775
  msgstr "Možnosti %s izogibanja %s"
5776
 
5777
  #. translators: %s HTML tags
5778
+ #: settings.php:5842
5779
  msgid "Ad rotation"
5780
  msgstr "Vrtenje oglasov"
5781
 
5782
  #. translators: %s HTML tags
5783
+ #: settings.php:5843
5784
  msgid "%s A/B testing %s"
5785
  msgstr "%s A/B testiranje %s"
5786
 
5787
  #. translators: %s HTML tags
5788
+ #: settings.php:5844
5789
  msgid "%s Ad tracking %s"
5790
  msgstr "%s Sledenje oglasom %s"
5791
 
5792
  #. translators: %s HTML tags
5793
+ #: settings.php:5850
5794
  msgid "Support for %s AMP pages %s"
5795
  msgstr "Podpora za %s AMP strani %s"
5796
 
5797
  #. translators: %s HTML tags
5798
+ #: settings.php:5851
5799
  msgid "%s Ad blocking detection %s"
5800
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5801
 
5802
  #. translators: %s HTML tags
5803
+ #: settings.php:5852
5804
  msgid "%s Mobile device detection %s"
5805
  msgstr "%s Zaznavanje mobilne naprave %s"
5806
 
5807
  #. translators: %s HTML tags
5808
+ #: settings.php:5859
5809
  msgid "64 code blocks"
5810
  msgstr "64 kodnih blokov"
5811
 
5812
  #. translators: %s HTML tags
5813
+ #: settings.php:5860
5814
  msgid "%s GEO targeting %s"
5815
  msgstr "%s GEO ciljanje %s"
5816
 
5817
  #. translators: %s HTML tags
5818
+ #: settings.php:5861
5819
  msgid "%s Scheduling %s"
5820
  msgstr "%s Urnik %s"
5821
 
6263
  msgstr "Stran pomaknjena (px)"
6264
 
6265
  #: strings.php:136
6266
+ msgid "Element scrolls in"
6267
+ msgstr "Element se pomakne na zaslon"
6268
+
6269
+ #: strings.php:137
6270
+ msgid "Element scrolls out"
6271
+ msgstr "Element se pomakne izven zaslona"
6272
 
6273
+ #: strings.php:139
6274
  msgctxt "image repeat"
6275
  msgid "Default"
6276
  msgstr "Privzeto"
6277
 
6278
+ #: strings.php:140
6279
  msgid "No"
6280
  msgstr "Ne"
6281
 
6282
+ #: strings.php:141
6283
  msgid "Yes"
6284
  msgstr "Da"
6285
 
6286
+ #: strings.php:142
6287
  msgid "Horizontally"
6288
  msgstr "Vodoravno"
6289
 
6290
+ #: strings.php:143
6291
  msgid "Vertically"
6292
  msgstr "Navpično"
6293
 
6294
+ #: strings.php:144
6295
  msgid "Space"
6296
  msgstr "Prostor"
6297
 
6298
+ #: strings.php:145
6299
  msgid "Round"
6300
  msgstr "Zaokroženo"
6301
 
6302
+ #: strings.php:147
6303
  msgctxt "image size"
6304
  msgid "Default"
6305
  msgstr "Privzeta"
6306
 
6307
+ #: strings.php:148
6308
  msgid "Cover"
6309
  msgstr "Pokrij"
6310
 
6311
+ #: strings.php:149
6312
  msgctxt "image size"
6313
  msgid "Fit"
6314
  msgstr "Prilagodi"
6315
 
6316
+ #: strings.php:150
6317
  msgid "Fill"
6318
  msgstr "Zapolni"
6319
 
6320
+ #: strings.php:152
6321
  msgid "Insert immediately"
6322
  msgstr "Vstavi takoj"
6323
 
6324
+ #: strings.php:153
6325
  msgid "Delay insertion"
6326
  msgstr "Zakasni vstavljanje"
6327
 
6328
+ #: strings.php:154
6329
  msgid "Insert between dates"
6330
  msgstr "Vstavi med datumoma"
6331
 
6332
+ #: strings.php:155
6333
  msgid "Insert outside dates"
6334
  msgstr "Vstavi izven datumov"
6335
 
6336
+ #: strings.php:156
6337
  msgid "Insert only"
6338
  msgstr "Vstavi samo"
6339
 
6340
+ #: strings.php:157
6341
  msgid "Insert for posts published between dates"
6342
  msgstr "Vstavi samo za prispevke objavljene med datumoma"
6343
 
6344
+ #: strings.php:158
6345
  msgid "Insert for posts published outside dates"
6346
  msgstr "Vstavi samo za prispevke objavljene izven datumov"
6347
 
6348
+ #: strings.php:160
6349
  msgctxt "functions"
6350
  msgid "Standard"
6351
  msgstr "Običajne"
6352
 
6353
+ #: strings.php:161
6354
  msgctxt "detection"
6355
  msgid "Standard"
6356
  msgstr "Običajno"
6357
 
6358
+ #: strings.php:162
6359
  msgctxt "functions"
6360
  msgid "Multibyte"
6361
  msgstr "Večznakovne"
6362
 
6363
+ #: strings.php:164
6364
  msgctxt "action"
6365
  msgid "None"
6366
  msgstr "Nobena"
6367
 
6368
+ #: strings.php:165
6369
  msgctxt "button"
6370
  msgid "None"
6371
  msgstr "Noben"
6372
 
6373
+ #: strings.php:166
6374
  msgid "Popup Message"
6375
  msgstr "Pojavno Sporočilo"
6376
 
6377
+ #: strings.php:167
6378
  msgid "Redirection"
6379
  msgstr "Preusmeritev"
6380
 
6381
+ #: strings.php:169
6382
  msgid "Do nothing"
6383
  msgstr "Ne naredi ničesar"
6384
 
6385
+ #: strings.php:171
6386
  msgctxt "Action when ad blocking detected"
6387
  msgid "Show"
6388
  msgstr "Pokaži"
6389
 
6390
+ #: strings.php:172
6391
  msgctxt "Action when ad blocking detected"
6392
  msgid "Hide"
6393
  msgstr "Skrij"
6394
 
6395
+ #: strings.php:174
6396
  msgctxt "tracking"
6397
  msgid "Internal"
6398
  msgstr "Interno"
6399
 
6400
+ #: strings.php:175
6401
  msgctxt "detection"
6402
  msgid "Advanced"
6403
  msgstr "Napredno"
6404
 
6405
+ #: strings.php:178
6406
  msgctxt "Manual loading"
6407
  msgid "Auto"
6408
  msgstr "Samodejno"
6409
 
6410
+ #: strings.php:179
6411
  msgctxt "Manual loading"
6412
  msgid "Always"
6413
  msgstr "Vedno"
6414
 
6415
+ #: strings.php:181
6416
  msgid "Top right"
6417
  msgstr "Zgoraj desno"
6418
 
6419
+ #: strings.php:182
6420
  msgid "Top left"
6421
  msgstr "Zgoraj levo"
6422
 
6423
+ #: strings.php:183
6424
  msgid "Bottom right"
6425
  msgstr "Spodaj desno"
6426
 
6427
+ #: strings.php:184
6428
  msgid "Bottom left"
6429
  msgstr "Spodaj levo"
6430
 
6431
+ #: strings.php:186
6432
  msgctxt "AdSense Ad Type"
6433
  msgid "Standard"
6434
  msgstr "Običajni"
6435
 
6436
+ #: strings.php:187
6437
  msgctxt "AdSense Ad Type"
6438
  msgid "Link"
6439
  msgstr "Povezave"
6440
 
6441
+ #: strings.php:188
6442
  msgctxt "AdSense Ad Type"
6443
  msgid "In-article"
6444
  msgstr "V članku"
6445
 
6446
+ #: strings.php:189
6447
  msgctxt "AdSense Ad Type"
6448
  msgid "In-feed"
6449
  msgstr "V viru"
6450
 
6451
+ #: strings.php:190
6452
  msgctxt "AdSense Ad Type"
6453
  msgid "Matched content"
6454
  msgstr "Prilagojena vsebina"
6455
 
6456
+ #: strings.php:191
6457
  msgctxt "AdSense Ad Type"
6458
  msgid "Auto Ads"
6459
  msgstr "Samodejni"
6460
 
6461
+ #: strings.php:192
6462
  msgctxt "AdSense Ad Type"
6463
  msgid "AMP Only"
6464
  msgstr "Samo AMP"
6465
 
6466
+ #: strings.php:194
6467
  msgctxt "AMP ad"
6468
  msgid "Disabled"
6469
  msgstr "Onemogočen"
6470
 
6471
+ #: strings.php:195
6472
  msgid "Above the fold"
6473
  msgstr "Nad pregibom"
6474
 
6475
+ #: strings.php:196
6476
  msgid "Below the fold"
6477
  msgstr "Pod pregibom"
6478
 
6479
+ #: strings.php:197
6480
  msgctxt "AMP ad"
6481
  msgid "Sticky"
6482
  msgstr "Lepljiv"
6483
 
6484
+ #: strings.php:199
6485
  msgctxt "size"
6486
  msgid "Fixed"
6487
  msgstr "Fiksna"
6488
 
6489
+ #: strings.php:200
6490
  msgctxt "size"
6491
  msgid "Responsive"
6492
  msgstr "Odzivna"
6493
 
6494
+ #: strings.php:201
6495
  msgctxt "size"
6496
  msgid "Fixed by viewport"
6497
  msgstr "Fiksna glede na pogled"
6498
 
6499
+ #: strings.php:205
6500
  msgid "Impressions and clicks"
6501
  msgstr "Prikazi in Kliki"
6502
 
6503
+ #: strings.php:206
6504
  msgid "Advanced WordPress Ad Management Plugin"
6505
  msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
6506
 
6507
+ #: strings.php:212
6508
  msgctxt "Button"
6509
  msgid "Hide"
6510
  msgstr "Skrij"
6511
 
6512
+ #: strings.php:213
6513
  msgctxt "Button"
6514
  msgid "Show"
6515
  msgstr "Pokaži"
6516
 
6517
+ #: strings.php:214
6518
  msgid "Insertion expired"
6519
  msgstr "Vstavljanje poteklo"
6520
 
6521
+ #: strings.php:215
6522
  msgid "Duration"
6523
  msgstr "Trajanje"
6524
 
6525
+ #: strings.php:216
6526
  msgid "Invalid end date - must be after start date"
6527
  msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
6528
 
6529
+ #: strings.php:217
6530
  msgid "Invalid start date - only data for 1 year back is available"
6531
  msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
6532
 
6533
+ #: strings.php:218
6534
  msgid "Invalid date range - only data for 1 year can be displayed"
6535
  msgstr ""
6536
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
6537
 
6538
+ #: strings.php:227
6539
  msgid "Delete all"
6540
  msgstr "Pobriši vse"
6541
 
6542
+ #: strings.php:228
6543
  msgid "Switch"
6544
  msgstr "Preklopi"
6545
 
6546
+ #: strings.php:230
6547
  msgid "OK"
6548
  msgstr "V redu"
6549
 
6550
+ #: strings.php:231
6551
  msgid "Delete all statistics data?"
6552
  msgstr "Pobrišem vse podatke o statistiki?"
6553
 
6554
+ #: strings.php:232
6555
  msgid ""
6556
  "Rotation code editor active. Click on the rotation button to generate code."
6557
  msgstr ""
6559
  "generiranje kode."
6560
 
6561
  #. translators: %s: dates
6562
+ #: strings.php:235
6563
  msgid "Delete statistics data between %s and %s?"
6564
  msgstr "Pobrišem podatke o statistiki med %s in %s?"
6565
 
6566
+ #: strings.php:236
6567
  msgid "Delete website?"
6568
  msgstr "Izbrišem spletno mesto?"
6569
 
6570
+ #: strings.php:237
6571
  msgid "Cancel block order rearrangement"
6572
  msgstr "Prekliči preureditev vrstnega reda blokov"
6573
 
6574
+ #: strings.php:239
6575
  msgid "downloading..."
6576
  msgstr "prenašam..."
6577
 
6578
+ #: strings.php:240
6579
  msgid "download error"
6580
  msgstr "napaka pri prenosu"
6581
 
6582
+ #: strings.php:241
6583
  msgid "update error"
6584
  msgstr "napaka pri posodobitvi"
6585
 
6586
+ #: strings.php:242
6587
  msgid "Updating..."
6588
  msgstr "Posodabljam..."
6589
 
6590
+ #: strings.php:244
6591
  msgid "ERROR"
6592
  msgstr "NAPAKA"
6593
 
6594
+ #: strings.php:245
6595
  msgid "Error reloading settings"
6596
  msgstr "Napaka pri nalaganju nastavitev"
6597
 
6598
+ #: strings.php:247
6599
  msgctxt "Search field placeholder"
6600
  msgid "Search..."
6601
  msgstr "Išči..."
6602
 
6603
+ #: strings.php:248
6604
  msgctxt "Search field placeholder"
6605
  msgid "Filter..."
6606
  msgstr "Filter..."
6607
 
6608
+ #: strings.php:249
6609
  msgid "Use filter to limit names in the list"
6610
  msgstr "Uporabite filter za omejitev imen v seznamu"
6611
 
6612
+ #: strings.php:250
6613
  msgctxt "Button"
6614
  msgid "Filter"
6615
  msgstr "Filter"
6616
 
6617
+ #: strings.php:252
6618
  msgid "Position not available"
6619
  msgstr "Položaj ni na razpolago"
6620
 
6621
+ #: strings.php:253
6622
  msgid ""
6623
  "Theme check | Selected position for automatic insertion might not be not "
6624
  "available on this page type"
6626
  "Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
6627
  "razpolago na tem tipu strani"
6628
 
6629
+ #: strings.php:254
6630
  msgid "Position available"
6631
  msgstr "Položaj na razpolago"
6632
 
6633
+ #: strings.php:256
6634
  msgid "Select or upload banner image"
6635
  msgstr "Izberi ali naloži sliko pasice"
6636
 
6637
+ #: strings.php:257
6638
  msgid "Select or upload background image"
6639
  msgstr "Izberi ali naloži sliko ozadja"
6640
 
6641
+ #: strings.php:258
6642
  msgid "Use this image"
6643
  msgstr "Uporabi to sliko"
6644
 
6645
+ #: strings.php:259
6646
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
6647
  msgstr ""
6648
  "Preklop na fizično datoteko ads.txt bo izbrisal navidezno datoreko ads.txt."
6649
 
6650
+ #: strings.php:261
6651
  msgctxt "Monday"
6652
  msgid "MO"
6653
  msgstr "PO"
6654
 
6655
+ #: strings.php:262
6656
  msgctxt "Tuesday"
6657
  msgid "TU"
6658
  msgstr "TO"
6659
 
6660
+ #: strings.php:263
6661
  msgctxt "Wednesday"
6662
  msgid "WE"
6663
  msgstr "SR"
6664
 
6665
+ #: strings.php:264
6666
  msgctxt "Thursday"
6667
  msgid "TH"
6668
  msgstr "ČE"
6669
 
6670
+ #: strings.php:265
6671
  msgctxt "Friday"
6672
  msgid "FR"
6673
  msgstr "PE"
6674
 
6675
+ #: strings.php:266
6676
  msgctxt "Saturday"
6677
  msgid "SA"
6678
  msgstr "SO"
6679
 
6680
+ #: strings.php:267
6681
  msgctxt "Sunday"
6682
  msgid "SU"
6683
  msgstr "NE"
6684
 
6685
+ #: strings.php:284
 
 
 
 
 
6686
  msgid "Automatically placed by AdSense Auto ads code"
6687
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
6688
 
6689
+ #: strings.php:289
6690
  msgid "Add"
6691
  msgstr "Dodaj"
6692
 
6693
+ #: strings.php:290
6694
  msgctxt "Element"
6695
  msgid "Parent"
6696
  msgstr "Nadrejeni"
6697
 
6698
+ #: strings.php:291
6699
  msgid "Cancel element selection"
6700
  msgstr "Prekliči izbor HTML elementa"
6701
 
6702
+ #: strings.php:292
6703
  msgid "Select parent element"
6704
  msgstr "Izberi nadrejeni element"
6705
 
6706
+ #: strings.php:293
6707
  msgid "CSS selector"
6708
  msgstr "CSS selektor"
6709
 
6710
+ #: strings.php:294
6711
  msgid "Use current selector"
6712
  msgstr "Uporabi trenutni selektor"
6713
 
6714
+ #: strings.php:295
6715
  msgid "ELEMENT"
6716
  msgstr "ELEMENT"
6717
 
6718
+ #: strings.php:296
6719
  msgid "PATH"
6720
  msgstr "POT"
6721
 
6722
+ #: strings.php:297
6723
  msgid "SELECTOR"
6724
  msgstr "SELEKTOR"
6725
 
languages/ad-inserter.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Ad Inserter 2.7.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2021-07-28 12:19:00+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,479 +12,479 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:266
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:282
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:289
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:375
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:382
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:391
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:398
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:409
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
- #: ad-inserter.php:416
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
- #: ad-inserter.php:1086
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
- #: ad-inserter.php:1091
67
  msgid "After"
68
  msgstr ""
69
 
70
  #. translators: Debugging position name Prepend content of HTML element (before
71
  #. the content of the HTML element)
72
- #: ad-inserter.php:1096 strings.php:104
73
  msgid "Prepend content"
74
  msgstr ""
75
 
76
  #. translators: Debugging position name Append content of HTML element (after
77
  #. the content of the HTML element)
78
- #: ad-inserter.php:1101 strings.php:105
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
- #: ad-inserter.php:1106 strings.php:106
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
- #: ad-inserter.php:1111 strings.php:169
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
- #: ad-inserter.php:1158
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
- #: ad-inserter.php:1162
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
- #: ad-inserter.php:1460
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
- #: ad-inserter.php:1814 ad-inserter.php:3133
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
- #: ad-inserter.php:2474
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
- #: ad-inserter.php:2474
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
- #: ad-inserter.php:2475
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
- #: ad-inserter.php:2476
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
- #: ad-inserter.php:2477
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
- #: ad-inserter.php:2478
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
- #: ad-inserter.php:2479
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
- #: ad-inserter.php:2828
143
  msgid "Hey, you are now using %1$s %2$s block."
144
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
145
  msgstr[0] ""
146
  msgstr[1] ""
147
 
148
- #: ad-inserter.php:2831
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
- #: ad-inserter.php:2835
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
- #: ad-inserter.php:2840
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
- #: ad-inserter.php:2843
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
- #: ad-inserter.php:2856
166
  msgid ""
167
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
168
  "like saying 'Thank you'. Somebody will be happy."
169
  msgstr ""
170
 
171
- #: ad-inserter.php:2858
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website."
175
  msgstr ""
176
 
177
- #: ad-inserter.php:2864
178
  msgid "Sure"
179
  msgstr ""
180
 
181
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
182
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
183
- #: ad-inserter.php:2881 ad-inserter.php:2916
184
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
185
  msgstr ""
186
 
187
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
188
- #: ad-inserter.php:2888
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
- #: ad-inserter.php:2898
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr ""
196
 
197
- #: ad-inserter.php:2930
198
  msgid ""
199
  "Load settings page in safe mode to avoid collisions with other plugins or "
200
  "theme"
201
  msgstr ""
202
 
203
- #: ad-inserter.php:2930
204
  msgid "Safe mode"
205
  msgstr ""
206
 
207
  #. translators: %s: Ad Inserter
208
- #: ad-inserter.php:3025
209
  msgctxt "Meta box name"
210
  msgid "%s Individual Exceptions"
211
  msgstr ""
212
 
213
- #: ad-inserter.php:3054 ad-inserter.php:11345 class.php:2454
214
  #: includes/preview.php:2343 includes/preview.php:2388
215
- #: includes/preview.php:2425 settings.php:4429 strings.php:3
216
  msgid "Block"
217
  msgstr ""
218
 
219
- #: ad-inserter.php:3055 includes/functions.php:4486 settings.php:4430
220
- #: settings.php:4515
221
  msgid "Name"
222
  msgstr ""
223
 
224
- #: ad-inserter.php:3058 settings.php:1233
225
  msgid "Default insertion"
226
  msgstr ""
227
 
228
  #. translators: For this post or page
229
- #: ad-inserter.php:3061
230
  msgctxt "Page"
231
  msgid "For this"
232
  msgstr ""
233
 
234
- #: ad-inserter.php:3062
235
  msgctxt "Post"
236
  msgid "For this"
237
  msgstr ""
238
 
239
- #: ad-inserter.php:3074
240
  msgctxt "Enabled/disabled on all"
241
  msgid "pages"
242
  msgstr ""
243
 
244
- #: ad-inserter.php:3077
245
  msgctxt "Enabled/disabled on all"
246
  msgid "posts"
247
  msgstr ""
248
 
249
- #: ad-inserter.php:3094 ad-inserter.php:3106 strings.php:175
250
  msgid "Enabled"
251
  msgstr ""
252
 
253
  #. translators: Menu items
254
- #: ad-inserter.php:3094 ad-inserter.php:3106
255
- #: includes/functions-check-now.php:2402 includes/functions.php:2857
256
- #: strings.php:16
257
  msgid "Disabled"
258
  msgstr ""
259
 
260
- #: ad-inserter.php:3096
261
  msgid "No individual exceptions"
262
  msgstr ""
263
 
264
  #. translators: Not enabled for pages or posts
265
- #: ad-inserter.php:3098
266
  msgid "Not enabled for"
267
  msgstr ""
268
 
269
  #. translators: No individual exceptions enabled for pages or posts
270
- #: ad-inserter.php:3126
271
  msgid "No block has individual exceptions enabled"
272
  msgstr ""
273
 
274
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
275
- #: ad-inserter.php:3131
276
  msgid ""
277
  "Default insertion can be configured for each block on %1$s page - button "
278
  "next to %2$s checkbox."
279
  msgstr ""
280
 
281
- #: ad-inserter.php:3134 settings.php:1211
282
  msgid "Tag / Archive pages"
283
  msgstr ""
284
 
285
- #: ad-inserter.php:3136
286
  msgid ""
287
  "When individual exceptions for a block are enabled, a checkbox will be "
288
  "listed here to change default insertion for this post or page."
289
  msgstr ""
290
 
291
- #: ad-inserter.php:3137
292
  msgid ""
293
  "This way you can individually enable or disable blocks on specific posts or "
294
  "pages."
295
  msgstr ""
296
 
297
- #: ad-inserter.php:3139
298
  msgid "For more information check page %s"
299
  msgstr ""
300
 
301
  #. translators: Ad Inserter Exceptions documentation page
302
- #: ad-inserter.php:3141
303
  msgid "Individual Exceptions"
304
  msgstr ""
305
 
306
- #: ad-inserter.php:3188
307
  msgid "STATIC PAGE"
308
  msgstr ""
309
 
310
- #: ad-inserter.php:3191
311
  msgid "POST"
312
  msgstr ""
313
 
314
- #: ad-inserter.php:3194
315
  msgid "HOMEPAGE"
316
  msgstr ""
317
 
318
- #: ad-inserter.php:3197
319
  msgid "CATEGORY PAGE"
320
  msgstr ""
321
 
322
- #: ad-inserter.php:3200
323
  msgid "SEARCH PAGE"
324
  msgstr ""
325
 
326
- #: ad-inserter.php:3203
327
  msgid "ARCHIVE PAGE"
328
  msgstr ""
329
 
330
- #: ad-inserter.php:3206
331
  msgid "ERROR 404 PAGE"
332
  msgstr ""
333
 
334
- #: ad-inserter.php:3209
335
  msgid "AJAX CALL"
336
  msgstr ""
337
 
338
- #: ad-inserter.php:3212
339
  msgid "UNKNOWN PAGE TYPE"
340
  msgstr ""
341
 
342
- #: ad-inserter.php:3229
343
  msgid "Click to delete ad blocking detection cokies"
344
  msgstr ""
345
 
346
- #: ad-inserter.php:3230
347
  msgid "AD BLOCKING STATUS UNKNOWN"
348
  msgstr ""
349
 
350
  #. translators: %s: AdSense Auto Ads
351
- #: ad-inserter.php:3259
352
  msgid ""
353
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
354
  "positions"
355
  msgstr ""
356
 
357
- #: ad-inserter.php:3397
358
  msgid "Code for insertion"
359
  msgstr ""
360
 
361
- #: ad-inserter.php:3397
362
  msgid "character"
363
  msgid_plural "characters"
364
  msgstr[0] ""
365
  msgstr[1] ""
366
 
367
- #: ad-inserter.php:3413
368
  msgid "Header code"
369
  msgstr ""
370
 
371
- #: ad-inserter.php:3413
372
  msgctxt "Header code"
373
  msgid "DISABLED"
374
  msgstr ""
375
 
376
- #: ad-inserter.php:3413 ad-inserter.php:3669
377
  msgid "character inserted"
378
  msgid_plural "characters inserted"
379
  msgstr[0] ""
380
  msgstr[1] ""
381
 
382
- #: ad-inserter.php:3431
383
- msgid "Click to delete the cokie for the consents"
384
  msgstr ""
385
 
386
- #: ad-inserter.php:3669
387
  msgid "Footer code"
388
  msgstr ""
389
 
390
- #: ad-inserter.php:3669
391
  msgctxt "Footer code"
392
  msgid "DISABLED"
393
  msgstr ""
394
 
395
- #: ad-inserter.php:3680
396
  msgid "JAVASCRIPT NOT WORKING"
397
  msgstr ""
398
 
399
- #: ad-inserter.php:3680
400
  msgid "NO JAVASCRIPT ERRORS"
401
  msgstr ""
402
 
403
- #: ad-inserter.php:3680
404
  msgid "JAVASCRIPT ERRORS"
405
  msgstr ""
406
 
407
  #. translators: block name (block with default settings)
408
- #: ad-inserter.php:6485
409
  msgctxt "Block name"
410
  msgid "Default"
411
  msgstr ""
412
 
413
  #. translators: %s: Ad Inserter
414
- #: ad-inserter.php:6929 ad-inserter.php:7244
415
  msgid "Invalid data received - %s settings not saved."
416
  msgstr ""
417
 
418
  #. translators: %s: Ad Inserter
419
- #: ad-inserter.php:7214
420
  msgid "Error importing %s settings."
421
  msgstr ""
422
 
423
- #: ad-inserter.php:7215
424
  msgid "Error importing settings for block"
425
  msgid_plural "Error importing settings for blocks:"
426
  msgstr[0] ""
427
  msgstr[1] ""
428
 
429
- #: ad-inserter.php:7242
430
  msgid "Settings saved."
431
  msgstr ""
432
 
433
- #: ad-inserter.php:7264
434
  msgid "Settings cleared."
435
  msgstr ""
436
 
437
  #. Translators: Post/Static page must have between X and Y words
438
- #: ad-inserter.php:7640 ad-inserter.php:7642 ad-inserter.php:7665
439
  #: settings.php:2240
440
  msgid "word"
441
  msgid_plural "words"
442
  msgstr[0] ""
443
  msgstr[1] ""
444
 
445
- #: ad-inserter.php:7679 ad-inserter.php:7806
446
  msgid "HTML TAGS REMOVED"
447
  msgstr ""
448
 
449
- #: ad-inserter.php:7885
450
  msgid "BEFORE COMMENTS"
451
  msgstr ""
452
 
453
- #: ad-inserter.php:8010
454
  msgid "AFTER COMMENTS"
455
  msgstr ""
456
 
457
- #: ad-inserter.php:8087
458
  msgid "BETWEEN COMMENTS"
459
  msgstr ""
460
 
461
- #: ad-inserter.php:10623 ad-inserter.php:10712
462
  msgctxt "category name"
463
  msgid "Uncategorized"
464
  msgstr ""
465
 
466
- #: ad-inserter.php:10943
467
  msgid "requires WordPress 4.6 or newer"
468
  msgstr ""
469
 
470
- #: ad-inserter.php:10943
471
  msgid "Please update!"
472
  msgstr ""
473
 
474
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
475
  #. name with HTML tags will be added)
476
- #: ad-inserter.php:11213
477
  msgid "Thank you for installing"
478
  msgstr ""
479
 
480
  #. translators: Opt-in message: %s: HTML tags
481
- #: ad-inserter.php:11215
482
  msgid ""
483
  "We would like to %s track its usage %s on your site. This is completely "
484
  "optional and can be disabled at any time."
485
  msgstr ""
486
 
487
- #: ad-inserter.php:11217
488
  msgid ""
489
  "We don't record any sensitive data, only information regarding the WordPress "
490
  "environment and plugin usage, which will help us to make improvements to the "
@@ -492,7 +492,7 @@ msgid ""
492
  msgstr ""
493
 
494
  #. translators: Deactivation message: %s: HTML tags
495
- #: ad-inserter.php:11257
496
  msgid ""
497
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
498
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -500,56 +500,56 @@ msgid ""
500
  msgstr ""
501
 
502
  #. translators: %s: Ad Inserter
503
- #: ad-inserter.php:11303
504
  msgid "%s block."
505
  msgstr ""
506
 
507
  #. translators: widget title
508
- #: ad-inserter.php:11319 ad-inserter.php:11354
509
  msgid "Processing log"
510
  msgstr ""
511
 
512
  #. translators: widget title
513
- #: ad-inserter.php:11321 ad-inserter.php:11355
514
  msgid "Dummy widget"
515
  msgstr ""
516
 
517
  #. translators: widget title
518
- #: ad-inserter.php:11323 ad-inserter.php:11353
519
  msgid "Debugging tools"
520
  msgstr ""
521
 
522
  #. translators: block status (widget title)
523
- #: ad-inserter.php:11330
524
  msgctxt "block"
525
  msgid "PAUSED"
526
  msgstr ""
527
 
528
- #: ad-inserter.php:11331
529
  msgid "WIDGET DISABLED"
530
  msgstr ""
531
 
532
- #: ad-inserter.php:11332
533
  msgid "Unknown block"
534
  msgstr ""
535
 
536
- #: ad-inserter.php:11340 includes/functions-check-now.php:3262
537
- #: includes/functions.php:4964 settings.php:1263
538
  msgid "Title"
539
  msgstr ""
540
 
541
- #: ad-inserter.php:11362
542
  msgctxt "Widget"
543
  msgid "Sticky"
544
  msgstr ""
545
 
546
- #: ad-inserter.php:11413
547
  msgid ""
548
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
549
  "Inserter you need to first deactivate Ad Inserter Pro."
550
  msgstr ""
551
 
552
- #: ad-inserter.php:11414
553
  msgid ""
554
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
555
  "will clear all settings that are available only in the Pro version "
@@ -557,171 +557,176 @@ msgid ""
557
  msgstr ""
558
 
559
  #. translators: %s: Ad Inserter
560
- #: class.php:602 class.php:611 class.php:614
561
  msgid "PHP error in %s block"
562
  msgstr ""
563
 
564
- #: class.php:2404
565
  msgid "Counters"
566
  msgstr ""
567
 
568
- #: class.php:2408
569
  msgid "Content"
570
  msgstr ""
571
 
572
- #: class.php:2413
573
  msgid "Excerpt"
574
  msgstr ""
575
 
576
- #: class.php:2418 strings.php:17
577
  msgid "Before post"
578
  msgstr ""
579
 
580
- #: class.php:2423 strings.php:18
581
  msgid "After post"
582
  msgstr ""
583
 
584
- #: class.php:2428 strings.php:25
585
  msgid "Between posts"
586
  msgstr ""
587
 
588
- #: class.php:2433 settings.php:1974 settings.php:4447
589
  msgid "Widget"
590
  msgstr ""
591
 
592
- #: class.php:2438 settings.php:4445
593
  msgid "PHP function call"
594
  msgstr ""
595
 
596
  #. Translators: %s: custom hook name
597
- #: class.php:2448
598
  msgid "Custom hook %s call"
599
  msgstr ""
600
 
601
- #: class.php:2484
602
  msgid "AJAX REQUEST"
603
  msgstr ""
604
 
605
- #: class.php:2487
606
  msgid "Ajax request for block in iframe"
607
  msgstr ""
608
 
609
- #: class.php:2521
610
  msgid "Ajax request url, click to open it in a new tab"
611
  msgstr ""
612
 
613
- #: class.php:2524
614
  msgid "IN THE LOOP"
615
  msgstr ""
616
 
617
- #: class.php:2524
618
  msgid "YES"
619
  msgstr ""
620
 
621
- #: class.php:2524
622
  msgid "NO"
623
  msgstr ""
624
 
625
- #: class.php:2559
626
  msgid "BLOCK"
627
  msgstr ""
628
 
629
- #: class.php:2559
630
  msgctxt "block or widget"
631
  msgid "INSERTED BUT NOT VISIBLE"
632
  msgstr ""
633
 
634
- #: class.php:2790
635
  msgctxt "viewports"
636
  msgid "ALL"
637
  msgstr ""
638
 
639
- #: class.php:2823 class.php:2864 class.php:4343 strings.php:281
640
  msgctxt "Block"
641
  msgid "HIDDEN"
642
  msgstr ""
643
 
644
- #: class.php:2871 class.php:4346 strings.php:280
645
  msgctxt "Block"
646
  msgid "VISIBLE"
647
  msgstr ""
648
 
649
- #: class.php:3484 class.php:3571
650
  msgid "ACTIVE GROUPS"
651
  msgstr ""
652
 
653
- #: class.php:4029
654
  msgid "start='%s' end='%s' days='%s' type='%s'"
655
  msgstr ""
656
 
657
- #: class.php:4037
658
  msgid "parameters='%s' type='%s'"
659
  msgstr ""
660
 
661
  #. translators: %s: list parameters and type
662
- #: class.php:4039
663
  msgid "referers='%s' type='%s'"
664
  msgstr ""
665
 
666
  #. translators: %s: list parameters and type
667
- #: class.php:4041
668
  msgid "clients='%s' type='%s'"
669
  msgstr ""
670
 
671
  #. translators: %s: list parameters and type
672
- #: class.php:4226
673
  msgid "countries='%s' type='%s'"
674
  msgstr ""
675
 
676
  #. translators: %s: list parameters and type
677
- #: class.php:4228
678
  msgid "ip addresses='%s' type='%s'"
679
  msgstr ""
680
 
681
- #: class.php:4343 class.php:4346
682
  msgid "viewport='%s' type='%s'"
683
  msgstr ""
684
 
685
- #: class.php:4939 strings.php:274
 
 
 
 
 
686
  msgid "BEFORE"
687
  msgstr ""
688
 
689
- #: class.php:4947 strings.php:276
690
  msgid "PREPEND CONTENT"
691
  msgstr ""
692
 
693
- #: class.php:4951 strings.php:277
694
  msgid "APPEND CONTENT"
695
  msgstr ""
696
 
697
- #: class.php:4955 strings.php:278
698
  msgid "REPLACE CONTENT"
699
  msgstr ""
700
 
701
- #: class.php:4959 strings.php:279
702
  msgid "REPLACE ELEMENT"
703
  msgstr ""
704
 
705
- #: class.php:4970 strings.php:275
706
  msgid "AFTER"
707
  msgstr ""
708
 
709
- #: class.php:5040 includes/preview.php:2388 includes/preview.php:2425
710
  msgid "Code"
711
  msgstr ""
712
 
713
- #: class.php:5043
714
  msgid "for block"
715
  msgstr ""
716
 
717
- #: class.php:9152
718
  msgid ""
719
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
720
  "extension for PHP."
721
  msgstr ""
722
 
723
  #: includes/editor.php:4 includes/placeholders.php:350
724
- #: includes/preview.php:2329 strings.php:287
725
  msgid "Use"
726
  msgstr ""
727
 
@@ -730,7 +735,7 @@ msgid "Reset"
730
  msgstr ""
731
 
732
  #: includes/editor.php:6 includes/placeholders.php:352
733
- #: includes/preview.php:2332 settings.php:3776 strings.php:228 strings.php:286
734
  msgid "Cancel"
735
  msgstr ""
736
 
@@ -754,331 +759,333 @@ msgstr ""
754
  msgid "PAGE BLOCKED"
755
  msgstr ""
756
 
757
- #: includes/functions-check-now.php:288 includes/functions.php:323
758
  msgid "%d of %d names shown"
759
  msgstr ""
760
 
761
  #. translators: %s: name filter
762
- #: includes/functions-check-now.php:307 includes/functions.php:342
763
  msgid "No name matches filter"
764
  msgstr ""
765
 
766
  #. translators: %s: Ad Inserter Pro
767
- #: includes/functions-check-now.php:396 includes/functions.php:428
768
  msgid ""
769
  "Import %s settings when saving - if checked, the encoded settings below will "
770
  "be imported for all blocks and settings"
771
  msgstr ""
772
 
773
- #: includes/functions-check-now.php:396 includes/functions.php:428
774
  msgid "Import Settings for"
775
  msgstr ""
776
 
777
- #: includes/functions-check-now.php:400 includes/functions.php:432
778
  msgid "Saved settings for"
779
  msgstr ""
780
 
781
- #: includes/functions-check-now.php:420 includes/functions.php:455
782
  msgid "License Key"
783
  msgstr ""
784
 
785
- #: includes/functions-check-now.php:423 includes/functions.php:458
786
  msgid "License Key for"
787
  msgstr ""
788
 
789
- #: includes/functions-check-now.php:425 includes/functions.php:460
790
  msgid "Open license page"
791
  msgstr ""
792
 
793
- #: includes/functions-check-now.php:432 includes/functions.php:467
794
  msgid "Hide license key"
795
  msgstr ""
796
 
797
- #: includes/functions-check-now.php:432 includes/functions.php:467
798
  msgid "Hide key"
799
  msgstr ""
800
 
801
- #: includes/functions-check-now.php:447 includes/functions.php:484
802
  msgid "Main content element"
803
  msgstr ""
804
 
805
- #: includes/functions-check-now.php:450 includes/functions.php:487
806
  msgid ""
807
  "Main content element (#id or .class) for 'Stick to the content' position. "
808
  "Leave empty unless position is not properly calculated."
809
  msgstr ""
810
 
811
- #: includes/functions-check-now.php:451 includes/functions.php:488
812
  #: settings.php:1420 settings.php:1460 settings.php:2919
813
  msgid "Open HTML element selector"
814
  msgstr ""
815
 
816
- #: includes/functions-check-now.php:456 includes/functions.php:493
817
  msgid "Lazy loading offset"
818
  msgstr ""
819
 
820
- #: includes/functions-check-now.php:459 includes/functions.php:496
821
  msgid "Offset of the block from the visible viewport when it should be loaded"
822
  msgstr ""
823
 
824
- #: includes/functions-check-now.php:470 includes/functions.php:508
825
  msgid "Export / Import Block Settings"
826
  msgstr ""
827
 
828
- #: includes/functions-check-now.php:485 includes/functions.php:525
829
  msgid "Track impressions and clicks for this block"
830
  msgstr ""
831
 
832
- #: includes/functions-check-now.php:485 includes/functions.php:525
833
  msgid " - global tracking disabled"
834
  msgstr ""
835
 
836
- #: includes/functions-check-now.php:492 includes/functions.php:533
837
- #: includes/functions.php:4658
838
  msgid "Generate PDF report"
839
  msgstr ""
840
 
841
- #: includes/functions-check-now.php:497 includes/functions.php:547
842
  msgid "Open public report"
843
  msgstr ""
844
 
845
- #: includes/functions-check-now.php:511 includes/functions.php:561
846
  msgid "Toggle Ad Blocking Statistics"
847
  msgstr ""
848
 
849
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
850
- #: includes/functions.php:569 includes/functions.php:4639
851
  msgid "Toggle Statistics"
852
  msgstr ""
853
 
854
- #: includes/functions-check-now.php:528 includes/functions.php:578
855
  msgid "Pin list"
856
  msgstr ""
857
 
858
  #. translators: %s: Ad Inserter Pro
859
- #: includes/functions-check-now.php:543 includes/functions.php:601
860
  msgid "%s license key is not set. Continue?"
861
  msgstr ""
862
 
863
  #. translators: %s: Ad Inserter Pro
864
- #: includes/functions-check-now.php:547 includes/functions.php:605
865
  msgid "Invalid %s license key. Continue?"
866
  msgstr ""
867
 
868
  #. translators: %s: Ad Inserter Pro
869
- #: includes/functions-check-now.php:551 includes/functions.php:609
870
  msgid "%s license overused. Continue?"
871
  msgstr ""
872
 
873
- #: includes/functions-check-now.php:555 includes/functions.php:619
874
  #: settings.php:1168 settings.php:2352
875
  msgid "Save Settings"
876
  msgstr ""
877
 
878
- #: includes/functions-check-now.php:615 includes/functions.php:687
879
  #: includes/preview.php:2520
880
  msgid "Horizontal position"
881
  msgstr ""
882
 
883
- #: includes/functions-check-now.php:638 includes/functions.php:712
884
  msgid ""
885
  "Horizontal margin from the content or screen edge, empty means default value "
886
  "from CSS"
887
  msgstr ""
888
 
889
- #: includes/functions-check-now.php:646 includes/functions.php:720
890
  #: includes/preview.php:2580
891
  msgid "Vertical position"
892
  msgstr ""
893
 
894
- #: includes/functions-check-now.php:661 includes/functions.php:735
895
  msgid ""
896
  "Vertical margin from the top or bottom screen edge, empty means default "
897
  "value from CSS"
898
  msgstr ""
899
 
900
- #: includes/functions-check-now.php:686 includes/functions.php:765
901
  #: includes/preview.php:2635
902
  msgid "Animation"
903
  msgstr ""
904
 
905
- #: includes/functions-check-now.php:704 includes/functions.php:784
906
  msgid "Trigger"
907
  msgstr ""
908
 
909
- #: includes/functions-check-now.php:713 includes/functions.php:793
910
  msgid ""
911
  "Trigger value: page scroll in %, page scroll in px or element with selector "
912
  "(#id or .class) becomes visible"
913
  msgstr ""
914
 
915
- #: includes/functions-check-now.php:717 includes/functions.php:797
 
916
  msgid "Offset"
917
  msgstr ""
918
 
919
- #: includes/functions-check-now.php:717 includes/functions.php:797
 
920
  msgid "Offset of trigger element"
921
  msgstr ""
922
 
923
- #: includes/functions-check-now.php:721 includes/functions.php:801
924
- #: settings.php:1475
925
  msgid "Delay"
926
  msgstr ""
927
 
928
- #: includes/functions-check-now.php:721 includes/functions.php:801
929
  msgid "Delay animation after trigger condition"
930
  msgstr ""
931
 
932
- #: includes/functions-check-now.php:725 includes/functions.php:805
933
  msgid "Trigger once"
934
  msgstr ""
935
 
936
- #: includes/functions-check-now.php:727 includes/functions.php:807
937
  msgid "Trigger animation only once"
938
  msgstr ""
939
 
940
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
941
- #: includes/functions-check-now.php:2546 includes/functions.php:915
942
- #: includes/functions.php:3004 includes/functions.php:3020
943
  msgid "Tracking is globally disabled"
944
  msgstr ""
945
 
946
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
947
- #: includes/functions-check-now.php:2550 includes/functions.php:919
948
- #: includes/functions.php:3008 includes/functions.php:3024
949
  msgid "Tracking for this block is disabled"
950
  msgstr ""
951
 
952
- #: includes/functions-check-now.php:780 includes/functions.php:926
953
  msgid "Double click to toggle controls in public reports"
954
  msgstr ""
955
 
956
- #: includes/functions-check-now.php:786 includes/functions.php:932
957
- #: includes/functions.php:4212 settings.php:3696 settings.php:3732
958
- #: settings.php:3793 strings.php:242
959
  msgid "Loading..."
960
  msgstr ""
961
 
962
- #: includes/functions-check-now.php:807 includes/functions.php:953
963
  msgid ""
964
  "Clear statistics data for the selected range - clear both dates to delete "
965
  "all data for this block"
966
  msgstr ""
967
 
968
- #: includes/functions-check-now.php:811 includes/functions.php:957
969
  msgid "Auto refresh data for the selected range every 60 seconds"
970
  msgstr ""
971
 
972
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
973
- #: includes/functions.php:960 includes/functions.php:7861
974
  msgid "Load data for last month"
975
  msgstr ""
976
 
977
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
978
- #: includes/functions.php:960 includes/functions.php:7861
979
  msgid "Last Month"
980
  msgstr ""
981
 
982
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
983
- #: includes/functions.php:963 includes/functions.php:7864
984
  msgid "Load data for this month"
985
  msgstr ""
986
 
987
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
988
- #: includes/functions.php:963 includes/functions.php:7864
989
  msgid "This Month"
990
  msgstr ""
991
 
992
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
993
- #: includes/functions.php:966 includes/functions.php:7867
994
  msgid "Load data for this year"
995
  msgstr ""
996
 
997
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
998
- #: includes/functions.php:966 includes/functions.php:7867
999
  msgid "This Year"
1000
  msgstr ""
1001
 
1002
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1003
- #: includes/functions.php:969 includes/functions.php:7870
1004
  msgid "Load data for the last 15 days"
1005
  msgstr ""
1006
 
1007
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1008
- #: includes/functions.php:972 includes/functions.php:7873
1009
  msgid "Load data for the last 30 days"
1010
  msgstr ""
1011
 
1012
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1013
- #: includes/functions.php:975 includes/functions.php:7876
1014
  msgid "Load data for the last 90 days"
1015
  msgstr ""
1016
 
1017
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1018
- #: includes/functions.php:978 includes/functions.php:7879
1019
  msgid "Load data for the last 180 days"
1020
  msgstr ""
1021
 
1022
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1023
- #: includes/functions.php:981 includes/functions.php:7882
1024
  msgid "Load data for the last 365 days"
1025
  msgstr ""
1026
 
1027
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1028
- #: includes/functions.php:991 includes/functions.php:7892
1029
  msgid "Load data for the selected range"
1030
  msgstr ""
1031
 
1032
- #: includes/functions-check-now.php:861 includes/functions.php:1008
1033
  msgid ""
1034
  "Import settings when saving - if checked, the encoded settings below will be "
1035
  "imported for this block"
1036
  msgstr ""
1037
 
1038
- #: includes/functions-check-now.php:861 includes/functions.php:1008
1039
  msgid "Import settings for block"
1040
  msgstr ""
1041
 
1042
- #: includes/functions-check-now.php:865 includes/functions.php:1012
1043
  msgid ""
1044
  "Import block name when saving - if checked and 'Import settings for block' "
1045
  "is also checked, the name from encoded settings below will be imported for "
1046
  "this block"
1047
  msgstr ""
1048
 
1049
- #: includes/functions-check-now.php:865 includes/functions.php:1012
1050
  msgid "Import block name"
1051
  msgstr ""
1052
 
1053
- #: includes/functions-check-now.php:869 includes/functions.php:1016
1054
  msgid "Saved settings for block"
1055
  msgstr ""
1056
 
1057
- #: includes/functions-check-now.php:882 includes/functions.php:1031
1058
  msgid "Export / Import Ad Inserter Pro Settings"
1059
  msgstr ""
1060
 
1061
- #: includes/functions-check-now.php:892 includes/functions.php:1050
1062
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1063
  msgstr ""
1064
 
1065
- #: includes/functions-check-now.php:894 includes/functions.php:1052
1066
  msgid "Clear All Statistics Data"
1067
  msgstr ""
1068
 
1069
- #: includes/functions-check-now.php:921 includes/functions.php:1086
1070
  msgid "Toggle country/city editor"
1071
  msgstr ""
1072
 
1073
- #: includes/functions-check-now.php:927 includes/functions.php:1092
1074
  msgid "IP Addresses"
1075
  msgstr ""
1076
 
1077
- #: includes/functions-check-now.php:930 includes/functions.php:1095
1078
  msgid "Toggle IP address editor"
1079
  msgstr ""
1080
 
1081
- #: includes/functions-check-now.php:933 includes/functions.php:1098
1082
  msgid ""
1083
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1084
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
@@ -1092,25 +1099,25 @@ msgstr ""
1092
  msgid "Whitelist IP addresses"
1093
  msgstr ""
1094
 
1095
- #: includes/functions-check-now.php:952 includes/functions.php:1114
1096
  msgid "Countries"
1097
  msgstr ""
1098
 
1099
- #: includes/functions-check-now.php:953 includes/functions.php:1115
1100
  msgid "Cities"
1101
  msgstr ""
1102
 
1103
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1104
- #: includes/functions.php:1119 includes/functions.php:4604
1105
  msgid "Toggle country editor"
1106
  msgstr ""
1107
 
1108
- #: includes/functions-check-now.php:960 includes/functions.php:1122
1109
  msgid "Toggle city editor"
1110
  msgstr ""
1111
 
1112
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1113
- #: includes/functions.php:1126 includes/functions.php:4607
1114
  msgid "Comma separated country ISO Alpha-2 codes"
1115
  msgstr ""
1116
 
@@ -1123,212 +1130,212 @@ msgid "Whitelist countries"
1123
  msgstr ""
1124
 
1125
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1126
- #: includes/functions.php:1633 includes/functions.php:1968
1127
  msgid "Enter license key"
1128
  msgstr ""
1129
 
1130
  #. translators: %s: Ad Inserter Pro
1131
- #: includes/functions-check-now.php:1389 includes/functions.php:1639
1132
  msgid ""
1133
  "%s license key is not set. Plugin functionality is limited and updates are "
1134
  "disabled."
1135
  msgstr ""
1136
 
1137
  #. translators: %s: Ad Inserter Pro
1138
- #: includes/functions-check-now.php:1403 includes/functions.php:1653
1139
  msgid "Warning: %s plugin update server is not accessible"
1140
  msgstr ""
1141
 
1142
  #. translators: updates are not available
1143
- #: includes/functions-check-now.php:1405 includes/functions.php:1655
1144
  msgid "updates"
1145
  msgstr ""
1146
 
1147
  #. translators: updates are not available
1148
- #: includes/functions-check-now.php:1407 includes/functions.php:1657
1149
  msgid "are not available"
1150
  msgstr ""
1151
 
1152
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1153
- #: includes/functions.php:1662 includes/functions.php:1977
1154
  msgid "Check license key"
1155
  msgstr ""
1156
 
1157
  #. translators: %s: Ad Inserter Pro
1158
- #: includes/functions-check-now.php:1418 includes/functions.php:1668
1159
  msgid "Invalid %s license key."
1160
  msgstr ""
1161
 
1162
  #. translators: %s: Ad Inserter Pro
1163
- #: includes/functions-check-now.php:1427 includes/functions.php:1677
1164
  msgid "%s license expired. Plugin updates are disabled."
1165
  msgstr ""
1166
 
1167
- #: includes/functions-check-now.php:1428 includes/functions.php:1678
1168
  msgid "Renew license"
1169
  msgstr ""
1170
 
1171
  #. translators: %s: Ad Inserter Pro
1172
- #: includes/functions-check-now.php:1436 includes/functions.php:1686
1173
  msgid "%s license overused. Plugin updates are disabled."
1174
  msgstr ""
1175
 
1176
- #: includes/functions-check-now.php:1437 includes/functions.php:1687
1177
  msgid "Manage licenses"
1178
  msgstr ""
1179
 
1180
- #: includes/functions-check-now.php:1437 includes/functions.php:1687
1181
  msgid "Upgrade license"
1182
  msgstr ""
1183
 
1184
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1185
- #: includes/functions-check-now.php:1684 includes/functions.php:1970
1186
  msgid ""
1187
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1188
  "limited and updates are disabled."
1189
  msgstr ""
1190
 
1191
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1192
- #: includes/functions-check-now.php:1693 includes/functions.php:1979
1193
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1194
  msgstr ""
1195
 
1196
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1197
- #: includes/functions-check-now.php:1709 includes/functions.php:1995
1198
  msgid ""
1199
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1200
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1201
  msgstr ""
1202
 
1203
  #. translators: 1, 3: HTML tags, 2: percentage
1204
- #: includes/functions-check-now.php:1716 includes/functions.php:2002
1205
  msgid ""
1206
  "During the license period and 30 days after the license has expired we offer "
1207
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1208
  msgstr ""
1209
 
1210
- #: includes/functions-check-now.php:1726 includes/functions.php:2012
1211
  msgid "No, thank you."
1212
  msgstr ""
1213
 
1214
- #: includes/functions-check-now.php:1729 includes/functions.php:2015
1215
  msgid "Not now, maybe later."
1216
  msgstr ""
1217
 
1218
- #: includes/functions-check-now.php:1743 includes/functions.php:2029
1219
  msgid "Renew the licence"
1220
  msgstr ""
1221
 
1222
- #: includes/functions-check-now.php:1745 includes/functions.php:2031
1223
  msgid "Update license status"
1224
  msgstr ""
1225
 
1226
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1227
- #: includes/functions-check-now.php:1756 includes/functions.php:2044
1228
  msgid ""
1229
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1230
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1231
  msgstr ""
1232
 
1233
  #. Translators: %s: HTML tag
1234
- #: includes/functions-check-now.php:1778 includes/functions.php:2104
1235
  msgid "Warning: %s MaxMind IP geolocation database not found."
1236
  msgstr ""
1237
 
1238
- #: includes/functions-check-now.php:2331 includes/functions.php:2786
1239
  msgid "Geolocation"
1240
  msgstr ""
1241
 
1242
- #: includes/functions-check-now.php:2335 includes/functions.php:2790
1243
- #: settings.php:4434
1244
  msgid "Exceptions"
1245
  msgstr ""
1246
 
1247
- #: includes/functions-check-now.php:2340 includes/functions.php:2795
1248
  msgid "Multisite"
1249
  msgstr ""
1250
 
1251
- #: includes/functions-check-now.php:2345 includes/functions.php:2800
1252
- #: settings.php:4440
1253
  msgid "Tracking"
1254
  msgstr ""
1255
 
1256
  #. translators: %d: days, hours, minutes
1257
- #: includes/functions-check-now.php:2376 includes/functions.php:2834
1258
  msgid "Scheduled in %d days %d hours %d minutes"
1259
  msgstr ""
1260
 
1261
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1262
  #. HTML code for long dash separator
1263
- #: includes/functions-check-now.php:2385 includes/functions.php:2843
1264
  msgid "Active %s expires in %d days %d hours %d minutes"
1265
  msgstr ""
1266
 
1267
- #: includes/functions-check-now.php:2389 includes/functions.php:2847
1268
  msgid "Expired"
1269
  msgstr ""
1270
 
1271
- #: includes/functions-check-now.php:2397 includes/functions.php:2873
1272
  #: settings.php:1530 settings.php:1545 settings.php:1667 settings.php:2238
1273
  msgid "and"
1274
  msgstr ""
1275
 
1276
- #: includes/functions-check-now.php:2400 includes/functions.php:2855
1277
  msgid "fallback"
1278
  msgstr ""
1279
 
1280
- #: includes/functions-check-now.php:2401 includes/functions.php:2856
1281
  msgid "Block to be used when scheduling expires"
1282
  msgstr ""
1283
 
1284
- #: includes/functions-check-now.php:2426 includes/functions.php:2895
1285
  msgid "Load in iframe"
1286
  msgstr ""
1287
 
1288
- #: includes/functions-check-now.php:2430 includes/functions.php:2899
1289
  #: includes/placeholders.php:387 settings.php:1128 settings.php:2265
1290
  msgid "Width"
1291
  msgstr ""
1292
 
1293
- #: includes/functions-check-now.php:2431 includes/functions.php:2900
1294
  msgid "iframe width, empty means full width (100%)"
1295
  msgstr ""
1296
 
1297
- #: includes/functions-check-now.php:2437 includes/functions.php:2906
1298
  #: includes/placeholders.php:382 settings.php:1134 settings.php:2269
1299
  msgid "Height"
1300
  msgstr ""
1301
 
1302
- #: includes/functions-check-now.php:2438 includes/functions.php:2907
1303
  msgid "iframe height, empty means adjust it to iframe content height"
1304
  msgstr ""
1305
 
1306
- #: includes/functions-check-now.php:2445 includes/functions.php:2914
1307
  msgid "Ad label in iframe"
1308
  msgstr ""
1309
 
1310
- #: includes/functions-check-now.php:2450 includes/functions.php:2919
1311
  msgid "Preview iframe code"
1312
  msgstr ""
1313
 
1314
- #: includes/functions-check-now.php:2450 includes/functions.php:2919
1315
  #: includes/preview.php:2341 settings.php:1163 settings.php:2990
1316
  msgid "Preview"
1317
  msgstr ""
1318
 
1319
- #: includes/functions-check-now.php:2464 includes/functions.php:2935
1320
- #: settings.php:4441
1321
  msgid "Limits"
1322
  msgstr ""
1323
 
1324
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1325
- #: includes/functions-check-now.php:4430 includes/functions.php:2940
1326
- #: includes/functions.php:6415 includes/functions.php:6480 settings.php:2402
1327
  msgid "Ad Blocking"
1328
  msgstr ""
1329
 
1330
  #. translators: 1, 2 and 3, 4: HTML tags
1331
- #: includes/functions-check-now.php:2478 includes/functions.php:2951
1332
  msgid ""
1333
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1334
  "for tracking!"
@@ -1336,13 +1343,13 @@ msgstr ""
1336
 
1337
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1338
  #. header
1339
- #: includes/functions-check-now.php:2487 includes/functions.php:2960
1340
  msgid ""
1341
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1342
  "enabled and automatic insertion %6$s!"
1343
  msgstr ""
1344
 
1345
- #: includes/functions-check-now.php:2554 includes/functions.php:3028
1346
  msgid "Click fraud protection is globally disabled"
1347
  msgstr ""
1348
 
@@ -1351,14 +1358,14 @@ msgid "Max clicks per time period are not defined"
1351
  msgstr ""
1352
 
1353
  #. Translators: Max n impressions
1354
- #: includes/functions-check-now.php:2572 includes/functions.php:3042
1355
  msgid "General limits"
1356
  msgstr ""
1357
 
1358
  #. Translators: Max n impressions per x days
1359
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1360
- #: includes/functions-check-now.php:2675 includes/functions.php:3048
1361
- #: includes/functions.php:3060 includes/functions.php:3145
1362
  msgid "Current value"
1363
  msgstr ""
1364
 
@@ -1374,14 +1381,14 @@ msgstr ""
1374
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1375
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1376
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1377
- #: includes/functions.php:3067 includes/functions.php:3077
1378
- #: includes/functions.php:3096 includes/functions.php:3106
1379
- #: includes/functions.php:3152 includes/functions.php:3161
1380
- #: includes/functions.php:3179 includes/functions.php:3188 settings.php:2150
1381
  msgid "Max"
1382
  msgstr ""
1383
 
1384
- #: includes/functions-check-now.php:2598 includes/functions.php:3068
1385
  msgid ""
1386
  "Maximum number of impressions for this block. Empty means no general "
1387
  "impression limit."
@@ -1393,14 +1400,14 @@ msgstr ""
1393
  #. Translators: Max n impressions per x days
1394
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1395
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1396
- #: includes/functions.php:3070 includes/functions.php:3080
1397
- #: includes/functions.php:3155 includes/functions.php:3164
1398
  msgid "impression"
1399
  msgid_plural "impressions"
1400
  msgstr[0] ""
1401
  msgstr[1] ""
1402
 
1403
- #: includes/functions-check-now.php:2608 includes/functions.php:3078
1404
  msgid ""
1405
  "Maximum number of impressions per time period. Empty means no time limit."
1406
  msgstr ""
@@ -1411,14 +1418,14 @@ msgstr ""
1411
  #. Translators: Max n clicks per x days
1412
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1413
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1414
- #: includes/functions.php:3084 includes/functions.php:3113
1415
- #: includes/functions.php:3168 includes/functions.php:3195
1416
- #: includes/functions.php:4874
1417
  msgid "per"
1418
  msgstr ""
1419
 
1420
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1421
- #: includes/functions.php:3085 includes/functions.php:3114
1422
  msgid "Time period in days. Empty means no time limit."
1423
  msgstr ""
1424
 
@@ -1430,17 +1437,17 @@ msgstr ""
1430
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1431
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1432
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1433
- #: includes/functions.php:3087 includes/functions.php:3116
1434
- #: includes/functions.php:3171 includes/functions.php:3198
1435
- #: includes/functions.php:3306 includes/functions.php:4877
1436
- #: includes/functions.php:4887 strings.php:218 strings.php:219 strings.php:220
1437
- #: strings.php:221 strings.php:222 strings.php:223
1438
  msgid "day"
1439
  msgid_plural "days"
1440
  msgstr[0] ""
1441
  msgstr[1] ""
1442
 
1443
- #: includes/functions-check-now.php:2627 includes/functions.php:3097
1444
  msgid ""
1445
  "Maximum number of clicks on this block. Empty means no general click limit."
1446
  msgstr ""
@@ -1451,25 +1458,25 @@ msgstr ""
1451
  #. Translators: Max n clicks per x days
1452
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1453
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1454
- #: includes/functions-check-now.php:4578 includes/functions.php:3099
1455
- #: includes/functions.php:3109 includes/functions.php:3182
1456
- #: includes/functions.php:3191 includes/functions.php:4874
1457
- #: includes/functions.php:6755
1458
  msgid "click"
1459
  msgid_plural "clicks"
1460
  msgstr[0] ""
1461
  msgstr[1] ""
1462
 
1463
- #: includes/functions-check-now.php:2637 includes/functions.php:3107
1464
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1465
  msgstr ""
1466
 
1467
- #: includes/functions-check-now.php:2662 includes/functions.php:3132
1468
  msgid "Individual visitor limits"
1469
  msgstr ""
1470
 
1471
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1472
- #: includes/functions.php:3136 includes/functions.php:3138
1473
  msgid ""
1474
  "When specified number of clicks on this block for a visitor will be reached "
1475
  "in the specified time period, all blocks that have click fraud protection "
@@ -1477,81 +1484,81 @@ msgid ""
1477
  "general plugin settings."
1478
  msgstr ""
1479
 
1480
- #: includes/functions-check-now.php:2668 includes/functions.php:3138
1481
  msgid "Trigger click fraud protection"
1482
  msgstr ""
1483
 
1484
- #: includes/functions-check-now.php:2683 includes/functions.php:3153
1485
  msgid ""
1486
  "Maximum number of impressions of this block for each visitor. Empty means no "
1487
  "impression limit."
1488
  msgstr ""
1489
 
1490
- #: includes/functions-check-now.php:2692 includes/functions.php:3162
1491
  msgid ""
1492
  "Maximum number of impressions per time period for each visitor. Empty means "
1493
  "no impression limit per time period for visitors."
1494
  msgstr ""
1495
 
1496
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1497
- #: includes/functions.php:3169 includes/functions.php:3196
1498
- #: includes/functions.php:4877
1499
  msgid ""
1500
  "Time period in days. Use decimal value (with decimal point) for shorter "
1501
  "periods. Empty means no time limit."
1502
  msgstr ""
1503
 
1504
- #: includes/functions-check-now.php:2710 includes/functions.php:3180
1505
  msgid ""
1506
  "Maximum number of clicks on this block for each visitor. Empty means no "
1507
  "click limit."
1508
  msgstr ""
1509
 
1510
- #: includes/functions-check-now.php:2719 includes/functions.php:3189
1511
- #: includes/functions.php:4874
1512
  msgid ""
1513
  "Maximum number of clicks per time period for each visitor. Empty means no "
1514
  "click limit per time period for visitors."
1515
  msgstr ""
1516
 
1517
- #: includes/functions-check-now.php:2745 includes/functions.php:3215
1518
  msgid "When ad blocking is detected"
1519
  msgstr ""
1520
 
1521
- #: includes/functions-check-now.php:2754 includes/functions.php:3224
1522
  msgid "replacement"
1523
  msgstr ""
1524
 
1525
- #: includes/functions-check-now.php:2755 includes/functions.php:3225
1526
  msgid "Block to be shown when ad blocking is detected"
1527
  msgstr ""
1528
 
1529
- #: includes/functions-check-now.php:2756 includes/functions.php:3226
1530
  msgctxt "replacement"
1531
  msgid "None"
1532
  msgstr ""
1533
 
1534
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1535
- #: includes/functions.php:3243 includes/functions.php:8105
1536
  msgid "Close button"
1537
  msgstr ""
1538
 
1539
- #: includes/functions-check-now.php:2825 includes/functions.php:3297
1540
  msgid "Auto close after"
1541
  msgstr ""
1542
 
1543
- #: includes/functions-check-now.php:2826 includes/functions.php:3298
1544
  msgid ""
1545
  "Time in seconds in which the ad will automatically close. Leave empty to "
1546
  "disable auto closing."
1547
  msgstr ""
1548
 
1549
  #. Translators: Don't show for x days
1550
- #: includes/functions-check-now.php:2831 includes/functions.php:3303
1551
  msgid "Don't show for"
1552
  msgstr ""
1553
 
1554
- #: includes/functions-check-now.php:2832 includes/functions.php:3304
1555
  msgid ""
1556
  "Time in days in which closed ad will not be shown again. Use decimal value "
1557
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1559,11 +1566,11 @@ msgid ""
1559
  msgstr ""
1560
 
1561
  #. Translators: Delay showing for x pageviews
1562
- #: includes/functions-check-now.php:2852 includes/functions.php:3326
1563
  msgid "Delay showing for"
1564
  msgstr ""
1565
 
1566
- #: includes/functions-check-now.php:2853 includes/functions.php:3327
1567
  msgid ""
1568
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1569
  "empty to insert the code for the first pageview."
@@ -1572,72 +1579,72 @@ msgstr ""
1572
  #. Translators: Delay showing for x pageviews
1573
  #. Translators: Show every x pageviews
1574
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1575
- #: includes/functions.php:3329 includes/functions.php:3336
1576
  msgid "pageview"
1577
  msgid_plural "pageviews"
1578
  msgstr[0] ""
1579
  msgstr[1] ""
1580
 
1581
  #. Translators: Show every x pageviews
1582
- #: includes/functions-check-now.php:2859 includes/functions.php:3333
1583
  msgid "Show every"
1584
  msgid_plural "Show every"
1585
  msgstr[0] ""
1586
  msgstr[1] ""
1587
 
1588
- #: includes/functions-check-now.php:2860 includes/functions.php:3334
1589
  msgid ""
1590
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1591
  "for every pageview."
1592
  msgstr ""
1593
 
1594
- #: includes/functions-check-now.php:2879 includes/functions.php:3359
1595
  #: settings.php:893
1596
  msgid "Lazy loading"
1597
  msgstr ""
1598
 
1599
  #. Translators: %s MaxMind
1600
- #: includes/functions-check-now.php:2936 includes/functions.php:4528
1601
  msgid "This product includes GeoLite2 data created by %s"
1602
  msgstr ""
1603
 
1604
- #: includes/functions-check-now.php:2947 includes/functions.php:4541
1605
  msgid "IP geolocation database"
1606
  msgstr ""
1607
 
1608
- #: includes/functions-check-now.php:2950 includes/functions.php:4544
1609
  msgid "Select IP geolocation database."
1610
  msgstr ""
1611
 
1612
- #: includes/functions-check-now.php:2961 includes/functions.php:4555
1613
  msgid "Automatic database updates"
1614
  msgstr ""
1615
 
1616
- #: includes/functions-check-now.php:2964 includes/functions.php:4558
1617
  msgid ""
1618
  "Automatically download and update free GeoLite2 IP geolocation database by "
1619
  "MaxMind"
1620
  msgstr ""
1621
 
1622
- #: includes/functions-check-now.php:2972 includes/functions.php:4575
1623
  msgid "Database"
1624
  msgstr ""
1625
 
1626
- #: includes/functions-check-now.php:2975 includes/functions.php:4578
1627
  msgid ""
1628
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1629
  msgstr ""
1630
 
1631
  #. translators: %d: group number
1632
- #: includes/functions-check-now.php:2993 includes/functions.php:4596
1633
  msgid "Group %d"
1634
  msgstr ""
1635
 
1636
- #: includes/functions-check-now.php:2999 includes/functions.php:4602
1637
  msgid "countries"
1638
  msgstr ""
1639
 
1640
- #: includes/functions-check-now.php:3044 includes/functions.php:4647
1641
  msgid ""
1642
  "Enable impression and click tracking. You also need to enable tracking for "
1643
  "each block you want to track."
@@ -1647,79 +1654,79 @@ msgstr ""
1647
  msgid "Generate report"
1648
  msgstr ""
1649
 
1650
- #: includes/functions-check-now.php:3059 includes/functions.php:4666
1651
  msgid "Impression and Click Tracking"
1652
  msgstr ""
1653
 
1654
- #: includes/functions-check-now.php:3060 includes/functions.php:4667
1655
  #: settings.php:2869
1656
  msgctxt "ad blocking detection"
1657
  msgid "NOT ENABLED"
1658
  msgstr ""
1659
 
1660
- #: includes/functions-check-now.php:3076 includes/functions.php:4683
1661
  msgid "Internal"
1662
  msgstr ""
1663
 
1664
- #: includes/functions-check-now.php:3080 includes/functions.php:4687
1665
  msgid "Track impressions and clicks with internal tracking and statistics"
1666
  msgstr ""
1667
 
1668
- #: includes/functions-check-now.php:3085 includes/functions.php:4692
1669
  msgid "External"
1670
  msgstr ""
1671
 
1672
- #: includes/functions-check-now.php:3089 includes/functions.php:4696
1673
  msgid ""
1674
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1675
  "code installed)"
1676
  msgstr ""
1677
 
1678
- #: includes/functions-check-now.php:3094 includes/functions.php:4701
1679
  msgid "Track Pageviews"
1680
  msgstr ""
1681
 
1682
- #: includes/functions-check-now.php:3100 includes/functions.php:4707
1683
  msgid "Track Pageviews by Device (as configured for viewports)"
1684
  msgstr ""
1685
 
1686
- #: includes/functions-check-now.php:3110 includes/functions.php:4717
1687
  msgid "Track for Logged in Users"
1688
  msgstr ""
1689
 
1690
- #: includes/functions-check-now.php:3116 includes/functions.php:4723
1691
  msgid "Track impressions and clicks from logged in users"
1692
  msgstr ""
1693
 
1694
- #: includes/functions-check-now.php:3126 includes/functions.php:4733
1695
  msgid "Click Detection"
1696
  msgstr ""
1697
 
1698
- #: includes/functions-check-now.php:3132 includes/functions.php:4739
1699
  msgid ""
1700
  "Standard method detects clicks only on banners with links, Advanced method "
1701
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1702
  msgstr ""
1703
 
1704
- #: includes/functions-check-now.php:3151 includes/functions.php:4860
1705
  msgid "Click fraud protection"
1706
  msgstr ""
1707
 
1708
- #: includes/functions-check-now.php:3155 includes/functions.php:4864
1709
  msgid "Globally enable click fraud protection for selected blocks."
1710
  msgstr ""
1711
 
1712
- #: includes/functions-check-now.php:3161 includes/functions.php:4884
1713
  msgid "Protection time"
1714
  msgstr ""
1715
 
1716
- #: includes/functions-check-now.php:3162 includes/functions.php:4887
1717
  msgid ""
1718
  "Time period in days in which blocks with enabled click fraud protection will "
1719
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1720
  msgstr ""
1721
 
1722
- #: includes/functions-check-now.php:3181 includes/functions.php:4767
1723
  msgid "Report header image"
1724
  msgstr ""
1725
 
@@ -1730,149 +1737,149 @@ msgid ""
1730
  "reset to default image."
1731
  msgstr ""
1732
 
1733
- #: includes/functions-check-now.php:3185 includes/functions.php:4771
1734
- #: strings.php:254
1735
  msgid "Select or upload header image"
1736
  msgstr ""
1737
 
1738
- #: includes/functions-check-now.php:3190 includes/functions.php:4776
1739
  msgid "Report header title"
1740
  msgstr ""
1741
 
1742
- #: includes/functions-check-now.php:3193 includes/functions.php:4779
1743
  msgid ""
1744
  "Title to be displayed in the header of the statistics report. Text or HTML "
1745
  "code, clear to reset to default text."
1746
  msgstr ""
1747
 
1748
- #: includes/functions-check-now.php:3198 includes/functions.php:4784
1749
  msgid "Report header description"
1750
  msgstr ""
1751
 
1752
- #: includes/functions-check-now.php:3201 includes/functions.php:4787
1753
  msgid ""
1754
  "Description to be displayed in the header of the statistics report. Text or "
1755
  "HTML code, clear to reset to default text."
1756
  msgstr ""
1757
 
1758
- #: includes/functions-check-now.php:3206 includes/functions.php:4792
1759
  msgid "Report footer"
1760
  msgstr ""
1761
 
1762
- #: includes/functions-check-now.php:3209 includes/functions.php:4795
1763
  msgid ""
1764
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1765
  "to default text."
1766
  msgstr ""
1767
 
1768
- #: includes/functions-check-now.php:3214 includes/functions.php:4800
1769
  msgid "Public report key"
1770
  msgstr ""
1771
 
1772
- #: includes/functions-check-now.php:3217 includes/functions.php:4803
1773
  msgid "String to generate unique report IDs. Clear to reset to default value."
1774
  msgstr ""
1775
 
1776
- #: includes/functions-check-now.php:3249 includes/functions.php:4943
1777
  msgid "Are you sure you want to clear all exceptions for block"
1778
  msgstr ""
1779
 
1780
- #: includes/functions-check-now.php:3250 includes/functions.php:4944
1781
  msgid "Clear all exceptions for block"
1782
  msgstr ""
1783
 
1784
- #: includes/functions-check-now.php:3257 includes/functions.php:4957
1785
  msgid "Are you sure you want to clear all exceptions?"
1786
  msgstr ""
1787
 
1788
- #: includes/functions-check-now.php:3257 includes/functions.php:4957
1789
  msgid "Clear all exceptions for all blocks"
1790
  msgstr ""
1791
 
1792
- #: includes/functions-check-now.php:3262 includes/functions.php:4964
1793
- #: settings.php:4027 settings.php:4517
1794
  msgid "Type"
1795
  msgstr ""
1796
 
1797
- #: includes/functions-check-now.php:3280 includes/functions.php:4982
1798
  msgid "View"
1799
  msgstr ""
1800
 
1801
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1802
- #: includes/functions-check-now.php:3292 includes/functions.php:4983
1803
- #: includes/functions.php:4990 includes/functions.php:4994
1804
  #: includes/placeholders.php:351 includes/preview.php:2711 settings.php:1406
1805
  #: settings.php:3782
1806
  msgid "Edit"
1807
  msgstr ""
1808
 
1809
- #: includes/functions-check-now.php:3311 includes/functions.php:5016
1810
  msgid "Are you sure you want to clear all exceptions for"
1811
  msgstr ""
1812
 
1813
- #: includes/functions-check-now.php:3312 includes/functions.php:5017
1814
  msgid "Clear all exceptions for"
1815
  msgstr ""
1816
 
1817
- #: includes/functions-check-now.php:3325 includes/functions.php:5033
1818
  msgid "No exceptions"
1819
  msgstr ""
1820
 
1821
  #. translators: %s: Ad Inserter Pro
1822
- #: includes/functions-check-now.php:3336 includes/functions.php:5044
1823
  msgid "%s options for network blogs"
1824
  msgstr ""
1825
 
1826
  #. translators: %s: Ad Inserter Pro
1827
- #: includes/functions-check-now.php:3341 includes/functions.php:5049
1828
  msgid "Enable %s widgets for sub-sites"
1829
  msgstr ""
1830
 
1831
- #: includes/functions-check-now.php:3341 includes/functions.php:5049
1832
  msgid "Widgets"
1833
  msgstr ""
1834
 
1835
- #: includes/functions-check-now.php:3346 includes/functions.php:5054
1836
  msgid "Enable PHP code processing for sub-sites"
1837
  msgstr ""
1838
 
1839
- #: includes/functions-check-now.php:3346 includes/functions.php:5054
1840
  msgid "PHP Processing"
1841
  msgstr ""
1842
 
1843
  #. translators: %s: Ad Inserter Pro
1844
- #: includes/functions-check-now.php:3351 includes/functions.php:5059
1845
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1846
  msgstr ""
1847
 
1848
- #: includes/functions-check-now.php:3351 includes/functions.php:5059
1849
  msgid "Post/Page exceptions"
1850
  msgstr ""
1851
 
1852
  #. translators: %s: Ad Inserter Pro
1853
- #: includes/functions-check-now.php:3356 includes/functions.php:5064
1854
  msgid "Enable %s settings page for sub-sites"
1855
  msgstr ""
1856
 
1857
- #: includes/functions-check-now.php:3356 includes/functions.php:5064
1858
  msgid "Settings page"
1859
  msgstr ""
1860
 
1861
  #. translators: %s: Ad Inserter Pro
1862
- #: includes/functions-check-now.php:3361 includes/functions.php:5069
1863
  msgid "Enable %s settings of main site to be used for all blogs"
1864
  msgstr ""
1865
 
1866
- #: includes/functions-check-now.php:3361 includes/functions.php:5069
1867
  msgid "Main site settings used for all blogs"
1868
  msgstr ""
1869
 
1870
- #: includes/functions-check-now.php:3372 includes/functions.php:5087
1871
  #: settings.php:2868
1872
  msgid "Ad Blocking Detection"
1873
  msgstr ""
1874
 
1875
- #: includes/functions-check-now.php:3378 includes/functions.php:5093
1876
  msgid ""
1877
  "Standard method is reliable but should be used only if Advanced method does "
1878
  "not work. Advanced method recreates files used for detection with random "
@@ -1881,475 +1888,497 @@ msgid ""
1881
  msgstr ""
1882
 
1883
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
1884
- #: includes/functions-check-now.php:4140 includes/functions.php:6046
1885
- #: includes/functions.php:6154 includes/functions.php:6179
1886
  msgid "AD BLOCKING"
1887
  msgstr ""
1888
 
1889
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
1890
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
1891
- #: includes/functions.php:6047 includes/functions.php:6090
1892
- #: includes/functions.php:6148 includes/functions.php:6180
1893
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1894
  msgstr ""
1895
 
1896
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
1897
- #: includes/functions-check-now.php:4147 includes/functions.php:6050
1898
- #: includes/functions.php:6147 includes/functions.php:6186
1899
  msgid "NO AD BLOCKING"
1900
  msgstr ""
1901
 
1902
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
1903
- #: includes/functions.php:6089 includes/functions.php:6096
1904
  msgid "AD BLOCKING REPLACEMENT"
1905
  msgstr ""
1906
 
1907
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
1908
- #: includes/functions.php:6268 includes/functions.php:6479
1909
  msgid "Pageviews"
1910
  msgstr ""
1911
 
1912
- #: includes/functions-check-now.php:4366 includes/functions.php:6414
1913
  msgctxt "Version"
1914
  msgid "Unknown"
1915
  msgstr ""
1916
 
1917
- #: includes/functions-check-now.php:4366 includes/functions.php:6414
1918
  msgctxt "Times"
1919
  msgid "DISPLAYED"
1920
  msgstr ""
1921
 
1922
- #: includes/functions-check-now.php:4366 includes/functions.php:6414
1923
  msgid "No version"
1924
  msgstr ""
1925
 
1926
- #: includes/functions-check-now.php:4367 includes/functions.php:6415
1927
  msgctxt "Times"
1928
  msgid "BLOCKED"
1929
  msgstr ""
1930
 
1931
- #: includes/functions-check-now.php:4429 includes/functions.php:6479
1932
  msgid "Impressions"
1933
  msgstr ""
1934
 
1935
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
1936
- #: includes/functions-check-now.php:4486 includes/functions.php:6480
1937
- #: includes/functions.php:6481 includes/functions.php:6663
1938
  msgid "Clicks"
1939
  msgstr ""
1940
 
1941
- #: includes/functions-check-now.php:4431 includes/functions.php:6481
1942
  msgid "events"
1943
  msgstr ""
1944
 
1945
- #: includes/functions-check-now.php:4432 includes/functions.php:6482
1946
  msgid "Ad Blocking Share"
1947
  msgstr ""
1948
 
1949
  #. translators: CTR as Click Through Rate
1950
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
1951
- #: includes/functions.php:6482 includes/functions.php:6669
1952
  msgid "CTR"
1953
  msgstr ""
1954
 
1955
- #: includes/functions-check-now.php:4574 includes/functions.php:6751
1956
  msgid "pageviews"
1957
  msgid_plural "pageviews"
1958
  msgstr[0] ""
1959
  msgstr[1] ""
1960
 
1961
- #: includes/functions-check-now.php:4574 includes/functions.php:6751
1962
  msgid "impressions"
1963
  msgid_plural "impressions"
1964
  msgstr[0] ""
1965
  msgstr[1] ""
1966
 
1967
- #: includes/functions-check-now.php:4578 includes/functions.php:6755
1968
  msgid "event"
1969
  msgid_plural "events"
1970
  msgstr[0] ""
1971
  msgstr[1] ""
1972
 
1973
- #: includes/functions-check-now.php:4673 includes/functions.php:6850
1974
  msgctxt "Pageviews / Impressions"
1975
  msgid "Average"
1976
  msgstr ""
1977
 
1978
- #: includes/functions-check-now.php:4694 includes/functions.php:6871
1979
  msgctxt "Ad Blocking / Clicks"
1980
  msgid "Average"
1981
  msgstr ""
1982
 
1983
- #: includes/functions-check-now.php:4718 includes/functions.php:6895
1984
  msgctxt "Ad Blocking Share / CTR"
1985
  msgid "Average"
1986
  msgstr ""
1987
 
1988
  #. Translators: %s: Ad Inserter Pro
1989
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
1990
- #: includes/functions-check-now.php:5335 includes/functions.php:7169
1991
- #: includes/functions.php:7266 includes/functions.php:7806 strings.php:203
1992
  msgid "%s Report"
1993
  msgstr ""
1994
 
1995
- #: includes/functions-check-now.php:5241 includes/functions.php:7711
1996
  msgid "for last month"
1997
  msgstr ""
1998
 
1999
- #: includes/functions-check-now.php:5246 includes/functions.php:7716
2000
  msgid "for this month"
2001
  msgstr ""
2002
 
2003
- #: includes/functions-check-now.php:5251 includes/functions.php:7721
2004
  msgid "for this year"
2005
  msgstr ""
2006
 
2007
- #: includes/functions-check-now.php:5256 includes/functions.php:7726
2008
  msgid "for the last 15 days"
2009
  msgstr ""
2010
 
2011
- #: includes/functions-check-now.php:5261 includes/functions.php:7731
2012
  msgid "for the last 30 days"
2013
  msgstr ""
2014
 
2015
- #: includes/functions-check-now.php:5266 includes/functions.php:7736
2016
  msgid "for the last 90 days"
2017
  msgstr ""
2018
 
2019
- #: includes/functions-check-now.php:5271 includes/functions.php:7741
2020
  msgid "for the last 180 days"
2021
  msgstr ""
2022
 
2023
- #: includes/functions-check-now.php:5276 includes/functions.php:7746
2024
  msgid "for the last 365 days"
2025
  msgstr ""
2026
 
2027
- #: includes/functions.php:540 includes/functions.php:4654
2028
  msgid "Generate CSV report"
2029
  msgstr ""
2030
 
2031
  #. translators: %s: Ad Inserter Pro
2032
- #: includes/functions.php:613
2033
  msgid "Invalid %s version. Continue?"
2034
  msgstr ""
2035
 
2036
- #: includes/functions.php:817 includes/preview.php:2653
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2037
  msgid "Background"
2038
  msgstr ""
2039
 
2040
  #. translators: %s HTML body tag
2041
- #: includes/functions.php:824
2042
  msgid "Set %s background"
2043
  msgstr ""
2044
 
2045
- #: includes/functions.php:837
2046
  msgid "Image to be used for the background"
2047
  msgstr ""
2048
 
2049
- #: includes/functions.php:842
2050
  msgid "Color"
2051
  msgstr ""
2052
 
2053
- #: includes/functions.php:843 includes/preview.php:2472
2054
  msgid "Color to be used for the background"
2055
  msgstr ""
2056
 
2057
- #: includes/functions.php:846 includes/preview.php:2477
2058
  msgid "Image size"
2059
  msgstr ""
2060
 
2061
- #: includes/functions.php:856
2062
  msgid "Repeat"
2063
  msgstr ""
2064
 
2065
- #: includes/functions.php:869
2066
  msgid "Select image"
2067
  msgstr ""
2068
 
2069
- #: includes/functions.php:1103 includes/functions.php:1131 settings.php:1793
2070
  #: settings.php:1816 settings.php:1839 settings.php:1862 settings.php:1885
2071
  #: settings.php:1908 settings.php:1930 settings.php:1952
2072
  msgid "Click to select black or white list"
2073
  msgstr ""
2074
 
2075
  #. translators: %s: Ad Inserter Pro
2076
- #: includes/functions.php:1695
2077
  msgid "Invalid %s version."
2078
  msgstr ""
2079
 
2080
- #: includes/functions.php:1696
2081
  msgid "Check license"
2082
  msgstr ""
2083
 
2084
- #: includes/functions.php:1711
2085
  msgid "License"
2086
  msgstr ""
2087
 
2088
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2089
- #: includes/functions.php:2056
2090
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2091
  msgstr ""
2092
 
2093
  #. Translators: %s: HTML tags
2094
- #: includes/functions.php:2109
2095
  msgid ""
2096
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2097
  "account %s and create license key."
2098
  msgstr ""
2099
 
2100
- #: includes/functions.php:2871
2101
  msgid "Start date"
2102
  msgstr ""
2103
 
2104
- #: includes/functions.php:2871
2105
  msgid "Enter date in format yyyy-mm-dd"
2106
  msgstr ""
2107
 
2108
- #: includes/functions.php:2871
2109
  msgid "empty means every day as defined by hours and days in week"
2110
  msgstr ""
2111
 
2112
- #: includes/functions.php:2872
2113
  msgid "Start time"
2114
  msgstr ""
2115
 
2116
- #: includes/functions.php:2872
2117
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2118
  msgstr ""
2119
 
2120
- #: includes/functions.php:2874
2121
  msgid "End date"
2122
  msgstr ""
2123
 
2124
- #: includes/functions.php:2875
2125
  msgid "End time"
2126
  msgstr ""
2127
 
2128
- #: includes/functions.php:2878
2129
  msgid "Select wanted days in week"
2130
  msgstr ""
2131
 
2132
- #: includes/functions.php:3214
 
 
 
 
 
 
 
 
2133
  msgid "Ad blocking detection is disabled"
2134
  msgstr ""
2135
 
2136
- #: includes/functions.php:3364
2137
  msgid "Protected"
2138
  msgstr ""
2139
 
2140
- #: includes/functions.php:3367
2141
  msgid "Manual loading"
2142
  msgstr ""
2143
 
2144
- #: includes/functions.php:3458
2145
  msgid "IP address blocked"
2146
  msgid_plural "IP addresses blocked"
2147
  msgstr[0] ""
2148
  msgstr[1] ""
2149
 
2150
- #: includes/functions.php:3461 includes/functions.php:3510
2151
  msgid "No IP address blocked"
2152
  msgstr ""
2153
 
2154
- #: includes/functions.php:3523
2155
  msgid "Blocked IP address"
2156
  msgstr ""
2157
 
2158
- #: includes/functions.php:3523
2159
  msgid "Country"
2160
  msgstr ""
2161
 
2162
- #: includes/functions.php:3523
2163
  msgid "Time to expiration"
2164
  msgstr ""
2165
 
2166
- #: includes/functions.php:3525 strings.php:225
2167
  msgid "Delete"
2168
  msgstr ""
2169
 
2170
- #: includes/functions.php:3540
2171
  msgid "Delete IP address"
2172
  msgstr ""
2173
 
2174
- #: includes/functions.php:4097
2175
  msgid "CONNECTED"
2176
  msgstr ""
2177
 
2178
- #: includes/functions.php:4098
2179
  msgid "Disconnect website"
2180
  msgstr ""
2181
 
2182
- #: includes/functions.php:4114
2183
  msgid "MANAGED BY"
2184
  msgstr ""
2185
 
2186
- #: includes/functions.php:4135
2187
  msgid "Remote managenent"
2188
  msgstr ""
2189
 
2190
- #: includes/functions.php:4139
2191
  msgid "Allow to connect and manage plugin settings"
2192
  msgstr ""
2193
 
2194
- #: includes/functions.php:4141
2195
  msgid "String to allow plugin management. Clear to reset to default value."
2196
  msgstr ""
2197
 
2198
- #: includes/functions.php:4149
2199
  msgid "Check remote IP address"
2200
  msgstr ""
2201
 
2202
- #: includes/functions.php:4153
2203
  msgid "Check IP address of remote management website"
2204
  msgstr ""
2205
 
2206
- #: includes/functions.php:4155
2207
  msgid "Allowed IP addresses of remote management websites"
2208
  msgstr ""
2209
 
2210
  #. Translators: %s: Ad Inserter Pro
2211
- #: includes/functions.php:4178
2212
  msgid "Manage %s on other websites"
2213
  msgstr ""
2214
 
2215
- #: includes/functions.php:4193
2216
  msgid "Add website"
2217
  msgstr ""
2218
 
2219
- #: includes/functions.php:4197
2220
  msgid "Rearrange website order"
2221
  msgstr ""
2222
 
2223
- #: includes/functions.php:4201
2224
  msgid "Cancel changes"
2225
  msgstr ""
2226
 
2227
- #: includes/functions.php:4205
2228
  msgid "Save changes"
2229
  msgstr ""
2230
 
2231
- #: includes/functions.php:4303 includes/functions.php:4306
2232
- #: includes/functions.php:4309 includes/functions.php:4314
2233
  msgid "Invalid data received from"
2234
  msgstr ""
2235
 
2236
- #: includes/functions.php:4313 includes/functions.php:4317
2237
  msgid "Error connecting to"
2238
  msgstr ""
2239
 
2240
- #: includes/functions.php:4313
2241
  msgid "No data received"
2242
  msgstr ""
2243
 
2244
- #: includes/functions.php:4358
2245
  msgid "Error saving websites"
2246
  msgstr ""
2247
 
2248
- #: includes/functions.php:4398
2249
  msgid "Can't connect to itself"
2250
  msgstr ""
2251
 
2252
- #: includes/functions.php:4449
2253
  msgid "Connect website"
2254
  msgstr ""
2255
 
2256
- #: includes/functions.php:4453
2257
  msgid "Delete website"
2258
  msgstr ""
2259
 
2260
- #: includes/functions.php:4469
2261
  msgid "Key"
2262
  msgstr ""
2263
 
2264
- #: includes/functions.php:4487
2265
  msgid "Address"
2266
  msgstr ""
2267
 
2268
- #: includes/functions.php:4500
2269
  msgid "No website configured"
2270
  msgstr ""
2271
 
2272
- #: includes/functions.php:4501
2273
  msgid "No website matches search keywords"
2274
  msgstr ""
2275
 
2276
  #. Translators: %s HTML tags
2277
- #: includes/functions.php:4530
2278
  msgid "Create and manage %s MaxMind license key %s"
2279
  msgstr ""
2280
 
2281
- #: includes/functions.php:4566
2282
  msgid "MaxMind license key"
2283
  msgstr ""
2284
 
2285
- #: includes/functions.php:4569
2286
  msgid "Enter license key obtained from MaxMind"
2287
  msgstr ""
2288
 
2289
- #: includes/functions.php:4770
2290
  msgid ""
2291
  "Image or logo to be displayed in the header of the statistics report. "
2292
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2293
  "reset to default image."
2294
  msgstr ""
2295
 
2296
- #: includes/functions.php:4818
2297
  msgid "Event category"
2298
  msgstr ""
2299
 
2300
- #: includes/functions.php:4821
2301
  msgid ""
2302
  "Category name used for external tracking events. You can use tags to get the "
2303
  "event, the number or the name of the block that caused the event."
2304
  msgstr ""
2305
 
2306
- #: includes/functions.php:4826
2307
  msgid "Event action"
2308
  msgstr ""
2309
 
2310
- #: includes/functions.php:4829
2311
  msgid ""
2312
  "Action name used for external tracking events. You can use tags to get the "
2313
  "event, the number or the name of the block that caused the event."
2314
  msgstr ""
2315
 
2316
- #: includes/functions.php:4834
2317
  msgid "Event label"
2318
  msgstr ""
2319
 
2320
- #: includes/functions.php:4837
2321
  msgid ""
2322
  "Label name used for external tracking events. You can use tags to get the "
2323
  "event, the number or the name of the block that caused the event."
2324
  msgstr ""
2325
 
2326
- #: includes/functions.php:4870
2327
  msgid "Global visitor limits"
2328
  msgstr ""
2329
 
2330
- #: includes/functions.php:4893
2331
  msgid "Block IP address"
2332
  msgstr ""
2333
 
2334
- #: includes/functions.php:4898
2335
  msgid "Block visitor's IP address when protection is activated"
2336
  msgstr ""
2337
 
2338
- #: includes/functions.php:4900
2339
  msgid "Click to show blocked IP addresses"
2340
  msgstr ""
2341
 
2342
  #. translators: %s: Ad Inserter Pro
2343
- #: includes/functions.php:5074
2344
  msgid "Show link to %s settings page for each site on the Sites page"
2345
  msgstr ""
2346
 
2347
  #. translators: %s: Ad Inserter Pro
2348
- #: includes/functions.php:5074
2349
  msgid "Show link to %s on the Sites page"
2350
  msgstr ""
2351
 
2352
- #: includes/functions.php:5116 settings.php:3166
2353
  msgid ""
2354
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2355
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -2358,15 +2387,15 @@ msgid ""
2358
  "administrators debugging is always enabled."
2359
  msgstr ""
2360
 
2361
- #: includes/functions.php:5118 settings.php:3168
2362
  msgid "Remote debugging"
2363
  msgstr ""
2364
 
2365
- #: includes/functions.php:6562
2366
  msgid "Date"
2367
  msgstr ""
2368
 
2369
- #: includes/functions.php:7030 includes/functions.php:7041
2370
  msgid "File %s missing."
2371
  msgstr ""
2372
 
@@ -2394,7 +2423,7 @@ msgstr ""
2394
  msgid "Placeholder"
2395
  msgstr ""
2396
 
2397
- #: includes/placeholders.php:361 settings.php:966 settings.php:4518
2398
  msgid "Size"
2399
  msgstr ""
2400
 
@@ -2778,7 +2807,7 @@ msgid ""
2778
  "fields empty for equal option shares."
2779
  msgstr ""
2780
 
2781
- #: settings.php:309 settings.php:2107 settings.php:4436
2782
  msgid "Scheduling"
2783
  msgstr ""
2784
 
@@ -2832,7 +2861,7 @@ msgstr ""
2832
  msgid "Clear block"
2833
  msgstr ""
2834
 
2835
- #: settings.php:798 settings.php:4389
2836
  msgid "Copy block"
2837
  msgstr ""
2838
 
@@ -3501,7 +3530,7 @@ msgstr ""
3501
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3502
  msgstr ""
3503
 
3504
- #: settings.php:1986 settings.php:4446
3505
  msgid "Shortcode"
3506
  msgstr ""
3507
 
@@ -4286,7 +4315,7 @@ msgid ""
4286
  "Position not available because output buffering (tab [*]) is not enabled"
4287
  msgstr ""
4288
 
4289
- #: settings.php:3641 strings.php:250
4290
  msgid "Position not checked yet"
4291
  msgstr ""
4292
 
@@ -4294,7 +4323,7 @@ msgstr ""
4294
  msgid "Toggle active/all blocks"
4295
  msgstr ""
4296
 
4297
- #: settings.php:3682 strings.php:237
4298
  msgid "Rearrange block order"
4299
  msgstr ""
4300
 
@@ -4314,7 +4343,7 @@ msgstr ""
4314
  msgid "Clear authorization to access AdSense account"
4315
  msgstr ""
4316
 
4317
- #: settings.php:3726 settings.php:4603 settings.php:4670 strings.php:245
4318
  msgid "Google AdSense Homepage"
4319
  msgstr ""
4320
 
@@ -4335,7 +4364,7 @@ msgstr ""
4335
  msgid "Reload ads.txt file"
4336
  msgstr ""
4337
 
4338
- #: settings.php:3782 settings.php:4735
4339
  msgid "Save"
4340
  msgstr ""
4341
 
@@ -4344,7 +4373,7 @@ msgstr ""
4344
  msgid "ads.txt file: %s virtual ads.txt file"
4345
  msgstr ""
4346
 
4347
- #: settings.php:3967 settings.php:3987 strings.php:224
4348
  msgid "Warning"
4349
  msgstr ""
4350
 
@@ -4402,72 +4431,72 @@ msgstr ""
4402
  msgid "Account ID found in block but not present in ads.txt"
4403
  msgstr ""
4404
 
4405
- #: settings.php:4386
4406
  msgid "Preview block"
4407
  msgstr ""
4408
 
4409
- #: settings.php:4393
4410
  msgid "Pause block"
4411
  msgstr ""
4412
 
4413
- #: settings.php:4432
4414
  msgid "Automatic insertion"
4415
  msgstr ""
4416
 
4417
  #. translators: %s HTML tags
4418
- #: settings.php:4433 settings.php:5768
4419
  msgid "PHP code processing"
4420
  msgstr ""
4421
 
4422
- #: settings.php:4435
4423
  msgid "Device detection"
4424
  msgstr ""
4425
 
4426
- #: settings.php:4458
4427
  msgid "No active block"
4428
  msgstr ""
4429
 
4430
- #: settings.php:4459
4431
  msgid "No block matches search keywords"
4432
  msgstr ""
4433
 
4434
- #: settings.php:4514
4435
  msgid "Ad unit"
4436
  msgstr ""
4437
 
4438
- #: settings.php:4516
4439
  msgid "Slot ID"
4440
  msgstr ""
4441
 
4442
- #: settings.php:4542
4443
  msgid "Copy AdSense code"
4444
  msgstr ""
4445
 
4446
- #: settings.php:4545
4447
  msgid "Preview AdSense ad"
4448
  msgstr ""
4449
 
4450
- #: settings.php:4548
4451
  msgid "Get AdSense code"
4452
  msgstr ""
4453
 
4454
  #. translators: %s: HTML tags
4455
- #: settings.php:4580
4456
  msgid ""
4457
  "Please %s clear authorization %s with the button %s above and once again "
4458
  "authorize access to your AdSense account."
4459
  msgstr ""
4460
 
4461
- #: settings.php:4599
4462
  msgid "AdSense Integration"
4463
  msgstr ""
4464
 
4465
- #: settings.php:4601
4466
  msgid "AdSense Integration - Step 2"
4467
  msgstr ""
4468
 
4469
  #. translators: %s: HTML tags
4470
- #: settings.php:4607
4471
  msgid ""
4472
  "Authorize %s to access your AdSense account. Click on the %s Get "
4473
  "Authorization Code %s button to open a new window where you can allow "
@@ -4476,7 +4505,7 @@ msgid ""
4476
  msgstr ""
4477
 
4478
  #. translators: %s: HTML tags
4479
- #: settings.php:4614
4480
  msgid ""
4481
  "If you get error, can't access ad units or would like to use own Google API "
4482
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4484,7 +4513,7 @@ msgid ""
4484
  msgstr ""
4485
 
4486
  #. translators: %s: HTML tags
4487
- #: settings.php:4616
4488
  msgid ""
4489
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4490
  "Authorization Code %s button to open a new window where you can allow "
@@ -4493,38 +4522,38 @@ msgid ""
4493
  msgstr ""
4494
 
4495
  #. translators: %s: HTML tags
4496
- #: settings.php:4623
4497
  msgid ""
4498
  "If you get error %s invalid client %s click on the button %s Clear and "
4499
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4500
  msgstr ""
4501
 
4502
- #: settings.php:4634
4503
  msgid "Get Authorization Code"
4504
  msgstr ""
4505
 
4506
- #: settings.php:4637
4507
  msgid "Enter Authorization Code"
4508
  msgstr ""
4509
 
4510
- #: settings.php:4647
4511
  msgid "Use own API IDs"
4512
  msgstr ""
4513
 
4514
- #: settings.php:4649
4515
  msgid "Clear and return to Step 1"
4516
  msgstr ""
4517
 
4518
- #: settings.php:4653
4519
  msgid "Authorize"
4520
  msgstr ""
4521
 
4522
- #: settings.php:4669
4523
  msgid "AdSense Integration - Step 1"
4524
  msgstr ""
4525
 
4526
  #. translators: %s: Ad Inserter
4527
- #: settings.php:4673
4528
  msgid ""
4529
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4530
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4533,226 +4562,226 @@ msgid ""
4533
  msgstr ""
4534
 
4535
  #. translators: %s: HTML tags
4536
- #: settings.php:4682
4537
  msgid "Go to %s Google APIs and Services console %s"
4538
  msgstr ""
4539
 
4540
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4541
- #: settings.php:4683
4542
  msgid ""
4543
  "Create %1$s project - if the project and IDs are already created click on "
4544
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
4545
  msgstr ""
4546
 
4547
  #. translators: %s: HTML tags
4548
- #: settings.php:4684
4549
  msgid ""
4550
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4551
  "create a new project"
4552
  msgstr ""
4553
 
4554
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4555
- #: settings.php:4685
4556
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4557
  msgstr ""
4558
 
4559
  #. translators: %s: HTML tags
4560
- #: settings.php:4686
4561
  msgid ""
4562
  "Click on project selection, wait for the project to be created and then and "
4563
  "select %s as the current project"
4564
  msgstr ""
4565
 
4566
  #. translators: %s: HTML tags
4567
- #: settings.php:4687
4568
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4569
  msgstr ""
4570
 
4571
  #. translators: %s: HTML tags
4572
- #: settings.php:4688
4573
  msgid "Search for adsense and enable %s"
4574
  msgstr ""
4575
 
4576
  #. translators: %s: HTML tags
4577
- #: settings.php:4689
4578
  msgid "Click on %s CREATE CREDENTIALS %s"
4579
  msgstr ""
4580
 
4581
  #. translators: %s: HTML tags
4582
- #: settings.php:4690
4583
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
4584
  msgstr ""
4585
 
4586
  #. translators: %s: HTML tags
4587
- #: settings.php:4691
4588
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4589
  msgstr ""
4590
 
4591
  #. translators: %s: HTML tags
4592
- #: settings.php:4692
4593
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4594
  msgstr ""
4595
 
4596
  #. translators: %s: HTML tags
4597
- #: settings.php:4693
4598
  msgid "Click on %s What credentials do I need? %s"
4599
  msgstr ""
4600
 
4601
  #. translators: %s: HTML tags
4602
- #: settings.php:4694
4603
  msgid ""
4604
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
4605
  "Consent Screen %s"
4606
  msgstr ""
4607
 
4608
  #. translators: %s: HTML tags
4609
- #: settings.php:4695
4610
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
4611
  msgstr ""
4612
 
4613
  #. translators: %s: HTML tags
4614
- #: settings.php:4696
4615
  msgid ""
4616
  "For %s App name %s enter %s and for %s User support email %s select your "
4617
  "Google account email address"
4618
  msgstr ""
4619
 
4620
  #. translators: %s: HTML tags
4621
- #: settings.php:4697
4622
  msgid ""
4623
  "For %s Developer contact information %s enter your email address and click "
4624
  "on %s SAVE AND CONTINUE %s"
4625
  msgstr ""
4626
 
4627
  #. translators: %s: HTML tags
4628
- #: settings.php:4698
4629
  msgid ""
4630
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
4631
  "add your Google account email address"
4632
  msgstr ""
4633
 
4634
  #. translators: %s: HTML tags
4635
- #: settings.php:4699
4636
  msgid ""
4637
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
4638
  msgstr ""
4639
 
4640
  #. translators: %s: HTML tags
4641
- #: settings.php:4700
4642
  msgid ""
4643
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4644
  "Ad Inserter client %s and then click on %s REFRESH %s"
4645
  msgstr ""
4646
 
4647
  #. translators: %s: HTML tags
4648
- #: settings.php:4701
4649
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
4650
  msgstr ""
4651
 
4652
  #. translators: %s: HTML tags
4653
- #: settings.php:4702
4654
  msgid ""
4655
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4656
  "secret %s"
4657
  msgstr ""
4658
 
4659
- #: settings.php:4703
4660
  msgid "Copy them to the appropriate fields below"
4661
  msgstr ""
4662
 
4663
- #: settings.php:4709
4664
  msgid "Client ID"
4665
  msgstr ""
4666
 
4667
- #: settings.php:4712
4668
  msgid "Enter Client ID"
4669
  msgstr ""
4670
 
4671
- #: settings.php:4717
4672
  msgid "Client secret"
4673
  msgstr ""
4674
 
4675
- #: settings.php:4720
4676
  msgid "Enter Client secret"
4677
  msgstr ""
4678
 
4679
- #: settings.php:4730
4680
  msgid "Use default API IDs"
4681
  msgstr ""
4682
 
4683
- #: settings.php:4831
4684
  msgid "All posts"
4685
  msgstr ""
4686
 
4687
- #: settings.php:4832
4688
  msgid "All static pages"
4689
  msgstr ""
4690
 
4691
- #: settings.php:5396 settings.php:5409 settings.php:5423 settings.php:5437
4692
- #: settings.php:5451
4693
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4694
  msgstr ""
4695
 
4696
- #: settings.php:5401 settings.php:5414 settings.php:5428 settings.php:5442
4697
- #: settings.php:5456 settings.php:5651 settings.php:5654 settings.php:5656
4698
- #: settings.php:5665 settings.php:5674 settings.php:5679 settings.php:5687
4699
- #: settings.php:5688 settings.php:5691 settings.php:5694 settings.php:5698
4700
- #: settings.php:5708 settings.php:5712
4701
  msgid "Looking for AdSense alternative?"
4702
  msgstr ""
4703
 
4704
- #: settings.php:5468
4705
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4706
  msgstr ""
4707
 
4708
- #: settings.php:5473 settings.php:5648 settings.php:5669 settings.php:5697
4709
- #: settings.php:5716
4710
  msgid "Use Infolinks ads with Adsense to earn more"
4711
  msgstr ""
4712
 
4713
- #: settings.php:5494 settings.php:5544
4714
  msgid "Support plugin development"
4715
  msgstr ""
4716
 
4717
- #: settings.php:5499 settings.php:5545
4718
  msgid ""
4719
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4720
  "reviewing the plugin on WordPres"
4721
  msgstr ""
4722
 
4723
- #: settings.php:5499
4724
  msgctxt "Review Ad Inserter"
4725
  msgid "Review"
4726
  msgstr ""
4727
 
4728
- #: settings.php:5504
4729
  msgid ""
4730
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4731
  "rating the plugin on WordPres"
4732
  msgstr ""
4733
 
4734
- #: settings.php:5504
4735
  msgctxt "Rate Ad Inserter"
4736
  msgid "Rate"
4737
  msgstr ""
4738
 
4739
- #: settings.php:5509
4740
  msgid ""
4741
  "Support free Ad Inserter development. If you are making money with Ad "
4742
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4743
  "you!"
4744
  msgstr ""
4745
 
4746
- #: settings.php:5509
4747
  msgid "Donate"
4748
  msgstr ""
4749
 
4750
- #: settings.php:5516 settings.php:5560
4751
  msgid "Average rating of the plugin - Thank you!"
4752
  msgstr ""
4753
 
4754
  #. translators: %s: Ad Inserter, HTML tags
4755
- #: settings.php:5527
4756
  msgid ""
4757
  "You've been using %s for a while now, and I hope you're happy with it. "
4758
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4761,379 +4790,379 @@ msgid ""
4761
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4762
  msgstr ""
4763
 
4764
- #: settings.php:5545
4765
  msgid "Review"
4766
  msgstr ""
4767
 
4768
- #: settings.php:5549
4769
  msgid "Ad Inserter on Twitter"
4770
  msgstr ""
4771
 
4772
- #: settings.php:5550
4773
  msgid "Ad Inserter on Facebook"
4774
  msgstr ""
4775
 
4776
- #: settings.php:5553
4777
  msgid "Follow Ad Inserter"
4778
  msgstr ""
4779
 
4780
  #. translators: %s: HTML tags
4781
- #: settings.php:5580
4782
  msgid ""
4783
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4784
  "and %s Common Settings %s pages"
4785
  msgstr ""
4786
 
4787
  #. translators: %s: HTML tags
4788
- #: settings.php:5592
4789
  msgid ""
4790
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4791
  "Auto ads, %s %s AMP ads %s"
4792
  msgstr ""
4793
 
4794
  #. translators: %s: HTML tags
4795
- #: settings.php:5609
4796
  msgid ""
4797
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4798
  "purchase you refer to us"
4799
  msgstr ""
4800
 
4801
  #. translators: %s: HTML tags
4802
- #: settings.php:5616
4803
  msgid ""
4804
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4805
  "diagnose and fix the problem."
4806
  msgstr ""
4807
 
4808
  #. translators: %s: HTML tags
4809
- #: settings.php:5620
4810
  msgid ""
4811
  "If you need any kind of help or support, please do not hesitate to open a "
4812
  "thread on the %s support forum. %s"
4813
  msgstr ""
4814
 
4815
- #: settings.php:5647 settings.php:5717 settings.php:5721
4816
  msgid "Code preview with visual CSS editor"
4817
  msgstr ""
4818
 
4819
- #: settings.php:5650 settings.php:5678
4820
  msgid "Ad blocking detection and content protection"
4821
  msgstr ""
4822
 
4823
- #: settings.php:5653 settings.php:5706
4824
  msgid "A/B testing - Track ad impressions and clicks"
4825
  msgstr ""
4826
 
4827
- #: settings.php:5670
4828
  msgid "Insert ads on AMP pages"
4829
  msgstr ""
4830
 
4831
- #: settings.php:5729
4832
  msgid "Looking for Pro Ad Management plugin?"
4833
  msgstr ""
4834
 
4835
- #: settings.php:5730
4836
  msgid "To Optimally Monetize your WordPress website?"
4837
  msgstr ""
4838
 
4839
  #. Translators: %s: price of Ad Inserter Pro
4840
- #: settings.php:5731
4841
  msgid "Different license types starting from %s"
4842
  msgstr ""
4843
 
4844
  #. translators: %s HTML tags
4845
- #: settings.php:5734
4846
  msgid "%s AdSense Integration %s"
4847
  msgstr ""
4848
 
4849
  #. translators: %s HTML tags
4850
- #: settings.php:5735
4851
  msgid "Syntax highlighting %s editor %s"
4852
  msgstr ""
4853
 
4854
  #. translators: %s HTML tags
4855
- #: settings.php:5736
4856
  msgid "%s Code preview %s with visual CSS editor"
4857
  msgstr ""
4858
 
4859
  #. translators: %s HTML tags
4860
- #: settings.php:5737
4861
  msgid "Simple user interface - all settings on a single page"
4862
  msgstr ""
4863
 
4864
  #. translators: %s HTML tags
4865
- #: settings.php:5738
4866
  msgid ""
4867
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4868
  "image / excerpt"
4869
  msgstr ""
4870
 
4871
  #. translators: %s HTML tags
4872
- #: settings.php:5739
4873
  msgid "%s Automatic insertion %s between posts on blog pages"
4874
  msgstr ""
4875
 
4876
  #. translators: %s HTML tags
4877
- #: settings.php:5740
4878
  msgid "%s Automatic insertion %s before, between and after comments"
4879
  msgstr ""
4880
 
4881
  #. translators: %s HTML tags
4882
- #: settings.php:5741
4883
  msgid "%s Automatic insertion %s after %s or before %s tag"
4884
  msgstr ""
4885
 
4886
  #. translators: %s HTML tags
4887
- #: settings.php:5742
4888
  msgid "Automatic insertion at %s custom hook positions %s"
4889
  msgstr ""
4890
 
4891
  #. translators: %s HTML tags
4892
- #: settings.php:5743
4893
  msgid ""
4894
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4895
  "selectors)"
4896
  msgstr ""
4897
 
4898
  #. translators: %s HTML tags
4899
- #: settings.php:5744
4900
  msgid "%s Insertion exceptions %s for individual posts and pages"
4901
  msgstr ""
4902
 
4903
  #. translators: %s HTML tags
4904
- #: settings.php:5745
4905
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4906
  msgstr ""
4907
 
4908
  #. translators: %s HTML tags
4909
- #: settings.php:5746
4910
  msgid ""
4911
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4912
  "scrolls)"
4913
  msgstr ""
4914
 
4915
  #. translators: %s HTML tags
4916
- #: settings.php:5747
4917
  msgid "%s Background ads %s with one or left and right background images"
4918
  msgstr ""
4919
 
4920
  #. translators: %s HTML tags
4921
- #: settings.php:5748
4922
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4923
  msgstr ""
4924
 
4925
  #. translators: %s HTML tags
4926
- #: settings.php:5749
4927
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4928
  msgstr ""
4929
 
4930
  #. translators: %s HTML tags
4931
- #: settings.php:5750
4932
  msgid ""
4933
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4934
  "visible)"
4935
  msgstr ""
4936
 
4937
  #. translators: %s HTML tags
4938
- #: settings.php:5751
4939
  msgid ""
4940
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4941
  msgstr ""
4942
 
4943
  #. translators: %s HTML tags
4944
- #: settings.php:5752
4945
  msgid "Block %s alignment and style %s customizations"
4946
  msgstr ""
4947
 
4948
  #. translators: %s HTML tags
4949
- #: settings.php:5753
4950
  msgid ""
4951
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4952
  "TOS)"
4953
  msgstr ""
4954
 
4955
  #. translators: %s HTML tags
4956
- #: settings.php:5754
4957
  msgid ""
4958
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4959
  "feeds"
4960
  msgstr ""
4961
 
4962
  #. translators: %s HTML tags
4963
- #: settings.php:5755
4964
  msgid "%s Ad rotation %s (works also with caching)"
4965
  msgstr ""
4966
 
4967
  #. translators: %s HTML tags
4968
- #: settings.php:5756
4969
  msgid "Create, edit and check %s ads.txt %s file"
4970
  msgstr ""
4971
 
4972
  #. translators: %s HTML tags
4973
- #: settings.php:5757
4974
  msgid ""
4975
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4976
  "AdSense)"
4977
  msgstr ""
4978
 
4979
  #. translators: %s HTML tags
4980
- #: settings.php:5758
4981
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4982
  msgstr ""
4983
 
4984
  #. translators: %s HTML tags
4985
- #: settings.php:5759
4986
  msgid "%s Public web reports %s for clients, export to PDF"
4987
  msgstr ""
4988
 
4989
  #. translators: %s HTML tags
4990
- #: settings.php:5760
4991
  msgid "Support for %s A/B testing %s"
4992
  msgstr ""
4993
 
4994
  #. translators: %s HTML tags
4995
- #: settings.php:5761
4996
  msgid "Frequency capping - %s limit impressions or clicks %s"
4997
  msgstr ""
4998
 
4999
  #. translators: %s HTML tags
5000
- #: settings.php:5762
5001
  msgid "Click fraud %s protection %s"
5002
  msgstr ""
5003
 
5004
  #. translators: %s HTML tags
5005
- #: settings.php:5763
5006
  msgid "Support for %s GDPR consent cookie checks %s"
5007
  msgstr ""
5008
 
5009
  #. translators: %s HTML tags
5010
- #: settings.php:5764
5011
  msgid "Support for %s lazy loading %s"
5012
  msgstr ""
5013
 
5014
  #. translators: %s HTML tags
5015
- #: settings.php:5765
5016
  msgid "Support for ads on %s AMP pages %s"
5017
  msgstr ""
5018
 
5019
  #. translators: %s HTML tags
5020
- #: settings.php:5766
5021
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5022
  msgstr ""
5023
 
5024
  #. translators: %s HTML tags
5025
- #: settings.php:5767
5026
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5027
  msgstr ""
5028
 
5029
  #. translators: %s HTML tags
5030
- #: settings.php:5769
5031
  msgid "%s Banner %s code generator"
5032
  msgstr ""
5033
 
5034
  #. translators: %s HTML tags
5035
- #: settings.php:5770
5036
  msgid "Support for %s header and footer %s code"
5037
  msgstr ""
5038
 
5039
  #. translators: %s HTML tags
5040
- #: settings.php:5771
5041
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5042
  msgstr ""
5043
 
5044
  #. translators: %s HTML tags
5045
- #: settings.php:5772
5046
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5047
  msgstr ""
5048
 
5049
  #. translators: %s HTML tags
5050
- #: settings.php:5773
5051
  msgid "Client-side %s mobile device detection %s (works with caching)"
5052
  msgstr ""
5053
 
5054
  #. translators: %s HTML tags
5055
- #: settings.php:5774
5056
  msgid ""
5057
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5058
  "protection"
5059
  msgstr ""
5060
 
5061
  #. translators: %s HTML tags
5062
- #: settings.php:5775
5063
  msgid "%s Ad blocking statistics %s"
5064
  msgstr ""
5065
 
5066
  #. translators: %s HTML tags
5067
- #: settings.php:5776
5068
  msgid ""
5069
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5070
  "referrers, operating systems, browsers"
5071
  msgstr ""
5072
 
5073
  #. translators: %s HTML tags
5074
- #: settings.php:5777
5075
  msgid ""
5076
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5077
  msgstr ""
5078
 
5079
  #. translators: %s HTML tags
5080
- #: settings.php:5778
5081
  msgid "%s Multisite options %s to limit settings on the sites"
5082
  msgstr ""
5083
 
5084
  #. translators: %s HTML tags
5085
- #: settings.php:5779
5086
  msgid "%s Import/Export %s block or plugin settings"
5087
  msgstr ""
5088
 
5089
  #. translators: %s HTML tags
5090
- #: settings.php:5780
5091
  msgid "%s Insertion scheduling %s with fallback option"
5092
  msgstr ""
5093
 
5094
  #. translators: %s HTML tags
5095
- #: settings.php:5781
5096
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5097
  msgstr ""
5098
 
5099
  #. translators: %s HTML tags
5100
- #: settings.php:5782
5101
  msgid "Simple troubleshooting with many %s debugging functions %s"
5102
  msgstr ""
5103
 
5104
  #. translators: %s HTML tags
5105
- #: settings.php:5783
5106
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5107
  msgstr ""
5108
 
5109
  #. translators: %s HTML tags
5110
- #: settings.php:5784
5111
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5112
  msgstr ""
5113
 
5114
  #. translators: %s HTML tags
5115
- #: settings.php:5785
5116
  msgid ""
5117
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5118
  msgstr ""
5119
 
5120
  #. translators: %s HTML tags
5121
- #: settings.php:5786
5122
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5123
  msgstr ""
5124
 
5125
  #. translators: %s HTML tags
5126
- #: settings.php:5787
5127
  msgid "No ads on the settings page"
5128
  msgstr ""
5129
 
5130
  #. translators: %s HTML tags
5131
- #: settings.php:5788
5132
  msgid "Premium support"
5133
  msgstr ""
5134
 
5135
  #. translators: %s HTML tags
5136
- #: settings.php:5791
5137
  msgid ""
5138
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5139
  "website with many advertising features to automatically insert adverts on "
@@ -5148,82 +5177,82 @@ msgid ""
5148
  msgstr ""
5149
 
5150
  #. translators: %s HTML tags
5151
- #: settings.php:5804
5152
  msgid "Looking for %s Pro Ad Management plugin? %s"
5153
  msgstr ""
5154
 
5155
  #. translators: %s HTML tags
5156
- #: settings.php:5809
5157
  msgid "Ads between posts"
5158
  msgstr ""
5159
 
5160
  #. translators: %s HTML tags
5161
- #: settings.php:5810
5162
  msgid "Ads between comments"
5163
  msgstr ""
5164
 
5165
  #. translators: %s HTML tags
5166
- #: settings.php:5811
5167
  msgid "Support via email"
5168
  msgstr ""
5169
 
5170
  #. translators: %s HTML tags
5171
- #: settings.php:5817
5172
  msgid "%s Sticky positions %s"
5173
  msgstr ""
5174
 
5175
  #. translators: %s HTML tags
5176
- #: settings.php:5818
5177
  msgid "%s Limit insertions %s"
5178
  msgstr ""
5179
 
5180
  #. translators: %s HTML tags
5181
- #: settings.php:5819
5182
  msgid "%s Clearance %s options"
5183
  msgstr ""
5184
 
5185
  #. translators: %s HTML tags
5186
- #: settings.php:5825
5187
  msgid "Ad rotation"
5188
  msgstr ""
5189
 
5190
  #. translators: %s HTML tags
5191
- #: settings.php:5826
5192
  msgid "%s A/B testing %s"
5193
  msgstr ""
5194
 
5195
  #. translators: %s HTML tags
5196
- #: settings.php:5827
5197
  msgid "%s Ad tracking %s"
5198
  msgstr ""
5199
 
5200
  #. translators: %s HTML tags
5201
- #: settings.php:5833
5202
  msgid "Support for %s AMP pages %s"
5203
  msgstr ""
5204
 
5205
  #. translators: %s HTML tags
5206
- #: settings.php:5834
5207
  msgid "%s Ad blocking detection %s"
5208
  msgstr ""
5209
 
5210
  #. translators: %s HTML tags
5211
- #: settings.php:5835
5212
  msgid "%s Mobile device detection %s"
5213
  msgstr ""
5214
 
5215
  #. translators: %s HTML tags
5216
- #: settings.php:5842
5217
  msgid "64 code blocks"
5218
  msgstr ""
5219
 
5220
  #. translators: %s HTML tags
5221
- #: settings.php:5843
5222
  msgid "%s GEO targeting %s"
5223
  msgstr ""
5224
 
5225
  #. translators: %s HTML tags
5226
- #: settings.php:5844
5227
  msgid "%s Scheduling %s"
5228
  msgstr ""
5229
 
@@ -5667,458 +5696,457 @@ msgid "Page scrolled (px)"
5667
  msgstr ""
5668
 
5669
  #: strings.php:136
5670
- msgid "Element visible"
 
 
 
 
5671
  msgstr ""
5672
 
5673
- #: strings.php:138
5674
  msgctxt "image repeat"
5675
  msgid "Default"
5676
  msgstr ""
5677
 
5678
- #: strings.php:139
5679
  msgid "No"
5680
  msgstr ""
5681
 
5682
- #: strings.php:140
5683
  msgid "Yes"
5684
  msgstr ""
5685
 
5686
- #: strings.php:141
5687
  msgid "Horizontally"
5688
  msgstr ""
5689
 
5690
- #: strings.php:142
5691
  msgid "Vertically"
5692
  msgstr ""
5693
 
5694
- #: strings.php:143
5695
  msgid "Space"
5696
  msgstr ""
5697
 
5698
- #: strings.php:144
5699
  msgid "Round"
5700
  msgstr ""
5701
 
5702
- #: strings.php:146
5703
  msgctxt "image size"
5704
  msgid "Default"
5705
  msgstr ""
5706
 
5707
- #: strings.php:147
5708
  msgid "Cover"
5709
  msgstr ""
5710
 
5711
- #: strings.php:148
5712
  msgctxt "image size"
5713
  msgid "Fit"
5714
  msgstr ""
5715
 
5716
- #: strings.php:149
5717
  msgid "Fill"
5718
  msgstr ""
5719
 
5720
- #: strings.php:151
5721
  msgid "Insert immediately"
5722
  msgstr ""
5723
 
5724
- #: strings.php:152
5725
  msgid "Delay insertion"
5726
  msgstr ""
5727
 
5728
- #: strings.php:153
5729
  msgid "Insert between dates"
5730
  msgstr ""
5731
 
5732
- #: strings.php:154
5733
  msgid "Insert outside dates"
5734
  msgstr ""
5735
 
5736
- #: strings.php:155
5737
  msgid "Insert only"
5738
  msgstr ""
5739
 
5740
- #: strings.php:156
5741
  msgid "Insert for posts published between dates"
5742
  msgstr ""
5743
 
5744
- #: strings.php:157
5745
  msgid "Insert for posts published outside dates"
5746
  msgstr ""
5747
 
5748
- #: strings.php:159
5749
  msgctxt "functions"
5750
  msgid "Standard"
5751
  msgstr ""
5752
 
5753
- #: strings.php:160
5754
  msgctxt "detection"
5755
  msgid "Standard"
5756
  msgstr ""
5757
 
5758
- #: strings.php:161
5759
  msgctxt "functions"
5760
  msgid "Multibyte"
5761
  msgstr ""
5762
 
5763
- #: strings.php:163
5764
  msgctxt "action"
5765
  msgid "None"
5766
  msgstr ""
5767
 
5768
- #: strings.php:164
5769
  msgctxt "button"
5770
  msgid "None"
5771
  msgstr ""
5772
 
5773
- #: strings.php:165
5774
  msgid "Popup Message"
5775
  msgstr ""
5776
 
5777
- #: strings.php:166
5778
  msgid "Redirection"
5779
  msgstr ""
5780
 
5781
- #: strings.php:168
5782
  msgid "Do nothing"
5783
  msgstr ""
5784
 
5785
- #: strings.php:170
5786
  msgctxt "Action when ad blocking detected"
5787
  msgid "Show"
5788
  msgstr ""
5789
 
5790
- #: strings.php:171
5791
  msgctxt "Action when ad blocking detected"
5792
  msgid "Hide"
5793
  msgstr ""
5794
 
5795
- #: strings.php:173
5796
  msgctxt "tracking"
5797
  msgid "Internal"
5798
  msgstr ""
5799
 
5800
- #: strings.php:174
5801
  msgctxt "detection"
5802
  msgid "Advanced"
5803
  msgstr ""
5804
 
5805
- #: strings.php:177
5806
  msgctxt "Manual loading"
5807
  msgid "Auto"
5808
  msgstr ""
5809
 
5810
- #: strings.php:178
5811
  msgctxt "Manual loading"
5812
  msgid "Always"
5813
  msgstr ""
5814
 
5815
- #: strings.php:180
5816
  msgid "Top right"
5817
  msgstr ""
5818
 
5819
- #: strings.php:181
5820
  msgid "Top left"
5821
  msgstr ""
5822
 
5823
- #: strings.php:182
5824
  msgid "Bottom right"
5825
  msgstr ""
5826
 
5827
- #: strings.php:183
5828
  msgid "Bottom left"
5829
  msgstr ""
5830
 
5831
- #: strings.php:185
5832
  msgctxt "AdSense Ad Type"
5833
  msgid "Standard"
5834
  msgstr ""
5835
 
5836
- #: strings.php:186
5837
  msgctxt "AdSense Ad Type"
5838
  msgid "Link"
5839
  msgstr ""
5840
 
5841
- #: strings.php:187
5842
  msgctxt "AdSense Ad Type"
5843
  msgid "In-article"
5844
  msgstr ""
5845
 
5846
- #: strings.php:188
5847
  msgctxt "AdSense Ad Type"
5848
  msgid "In-feed"
5849
  msgstr ""
5850
 
5851
- #: strings.php:189
5852
  msgctxt "AdSense Ad Type"
5853
  msgid "Matched content"
5854
  msgstr ""
5855
 
5856
- #: strings.php:190
5857
  msgctxt "AdSense Ad Type"
5858
  msgid "Auto Ads"
5859
  msgstr ""
5860
 
5861
- #: strings.php:191
5862
  msgctxt "AdSense Ad Type"
5863
  msgid "AMP Only"
5864
  msgstr ""
5865
 
5866
- #: strings.php:193
5867
  msgctxt "AMP ad"
5868
  msgid "Disabled"
5869
  msgstr ""
5870
 
5871
- #: strings.php:194
5872
  msgid "Above the fold"
5873
  msgstr ""
5874
 
5875
- #: strings.php:195
5876
  msgid "Below the fold"
5877
  msgstr ""
5878
 
5879
- #: strings.php:196
5880
  msgctxt "AMP ad"
5881
  msgid "Sticky"
5882
  msgstr ""
5883
 
5884
- #: strings.php:198
5885
  msgctxt "size"
5886
  msgid "Fixed"
5887
  msgstr ""
5888
 
5889
- #: strings.php:199
5890
  msgctxt "size"
5891
  msgid "Responsive"
5892
  msgstr ""
5893
 
5894
- #: strings.php:200
5895
  msgctxt "size"
5896
  msgid "Fixed by viewport"
5897
  msgstr ""
5898
 
5899
- #: strings.php:204
5900
  msgid "Impressions and clicks"
5901
  msgstr ""
5902
 
5903
- #: strings.php:205
5904
  msgid "Advanced WordPress Ad Management Plugin"
5905
  msgstr ""
5906
 
5907
- #: strings.php:211
5908
  msgctxt "Button"
5909
  msgid "Hide"
5910
  msgstr ""
5911
 
5912
- #: strings.php:212
5913
  msgctxt "Button"
5914
  msgid "Show"
5915
  msgstr ""
5916
 
5917
- #: strings.php:213
5918
  msgid "Insertion expired"
5919
  msgstr ""
5920
 
5921
- #: strings.php:214
5922
  msgid "Duration"
5923
  msgstr ""
5924
 
5925
- #: strings.php:215
5926
  msgid "Invalid end date - must be after start date"
5927
  msgstr ""
5928
 
5929
- #: strings.php:216
5930
  msgid "Invalid start date - only data for 1 year back is available"
5931
  msgstr ""
5932
 
5933
- #: strings.php:217
5934
  msgid "Invalid date range - only data for 1 year can be displayed"
5935
  msgstr ""
5936
 
5937
- #: strings.php:226
5938
  msgid "Delete all"
5939
  msgstr ""
5940
 
5941
- #: strings.php:227
5942
  msgid "Switch"
5943
  msgstr ""
5944
 
5945
- #: strings.php:229
5946
  msgid "OK"
5947
  msgstr ""
5948
 
5949
- #: strings.php:230
5950
  msgid "Delete all statistics data?"
5951
  msgstr ""
5952
 
5953
- #: strings.php:231
5954
  msgid ""
5955
  "Rotation code editor active. Click on the rotation button to generate code."
5956
  msgstr ""
5957
 
5958
  #. translators: %s: dates
5959
- #: strings.php:234
5960
  msgid "Delete statistics data between %s and %s?"
5961
  msgstr ""
5962
 
5963
- #: strings.php:235
5964
  msgid "Delete website?"
5965
  msgstr ""
5966
 
5967
- #: strings.php:236
5968
  msgid "Cancel block order rearrangement"
5969
  msgstr ""
5970
 
5971
- #: strings.php:238
5972
  msgid "downloading..."
5973
  msgstr ""
5974
 
5975
- #: strings.php:239
5976
  msgid "download error"
5977
  msgstr ""
5978
 
5979
- #: strings.php:240
5980
  msgid "update error"
5981
  msgstr ""
5982
 
5983
- #: strings.php:241
5984
  msgid "Updating..."
5985
  msgstr ""
5986
 
5987
- #: strings.php:243
5988
  msgid "ERROR"
5989
  msgstr ""
5990
 
5991
- #: strings.php:244
5992
  msgid "Error reloading settings"
5993
  msgstr ""
5994
 
5995
- #: strings.php:246
5996
  msgctxt "Search field placeholder"
5997
  msgid "Search..."
5998
  msgstr ""
5999
 
6000
- #: strings.php:247
6001
  msgctxt "Search field placeholder"
6002
  msgid "Filter..."
6003
  msgstr ""
6004
 
6005
- #: strings.php:248
6006
  msgid "Use filter to limit names in the list"
6007
  msgstr ""
6008
 
6009
- #: strings.php:249
6010
  msgctxt "Button"
6011
  msgid "Filter"
6012
  msgstr ""
6013
 
6014
- #: strings.php:251
6015
  msgid "Position not available"
6016
  msgstr ""
6017
 
6018
- #: strings.php:252
6019
  msgid ""
6020
  "Theme check | Selected position for automatic insertion might not be not "
6021
  "available on this page type"
6022
  msgstr ""
6023
 
6024
- #: strings.php:253
6025
  msgid "Position available"
6026
  msgstr ""
6027
 
6028
- #: strings.php:255
6029
  msgid "Select or upload banner image"
6030
  msgstr ""
6031
 
6032
- #: strings.php:256
6033
  msgid "Select or upload background image"
6034
  msgstr ""
6035
 
6036
- #: strings.php:257
6037
  msgid "Use this image"
6038
  msgstr ""
6039
 
6040
- #: strings.php:258
6041
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
6042
  msgstr ""
6043
 
6044
- #: strings.php:260
6045
  msgctxt "Monday"
6046
  msgid "MO"
6047
  msgstr ""
6048
 
6049
- #: strings.php:261
6050
  msgctxt "Tuesday"
6051
  msgid "TU"
6052
  msgstr ""
6053
 
6054
- #: strings.php:262
6055
  msgctxt "Wednesday"
6056
  msgid "WE"
6057
  msgstr ""
6058
 
6059
- #: strings.php:263
6060
  msgctxt "Thursday"
6061
  msgid "TH"
6062
  msgstr ""
6063
 
6064
- #: strings.php:264
6065
  msgctxt "Friday"
6066
  msgid "FR"
6067
  msgstr ""
6068
 
6069
- #: strings.php:265
6070
  msgctxt "Saturday"
6071
  msgid "SA"
6072
  msgstr ""
6073
 
6074
- #: strings.php:266
6075
  msgctxt "Sunday"
6076
  msgid "SU"
6077
  msgstr ""
6078
 
6079
- #: strings.php:282
6080
- msgctxt "Scheduling"
6081
- msgid "FALLBACK"
6082
- msgstr ""
6083
-
6084
- #: strings.php:283
6085
  msgid "Automatically placed by AdSense Auto ads code"
6086
  msgstr ""
6087
 
6088
- #: strings.php:288
6089
  msgid "Add"
6090
  msgstr ""
6091
 
6092
- #: strings.php:289
6093
  msgctxt "Element"
6094
  msgid "Parent"
6095
  msgstr ""
6096
 
6097
- #: strings.php:290
6098
  msgid "Cancel element selection"
6099
  msgstr ""
6100
 
6101
- #: strings.php:291
6102
  msgid "Select parent element"
6103
  msgstr ""
6104
 
6105
- #: strings.php:292
6106
  msgid "CSS selector"
6107
  msgstr ""
6108
 
6109
- #: strings.php:293
6110
  msgid "Use current selector"
6111
  msgstr ""
6112
 
6113
- #: strings.php:294
6114
  msgid "ELEMENT"
6115
  msgstr ""
6116
 
6117
- #: strings.php:295
6118
  msgid "PATH"
6119
  msgstr ""
6120
 
6121
- #: strings.php:296
6122
  msgid "SELECTOR"
6123
  msgstr ""
6124
 
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Ad Inserter 2.7.4\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2021-10-22 16:27:39+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: ad-inserter.php:281
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:297
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:304
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:390
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:397
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:406
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:413
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:424
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
+ #: ad-inserter.php:431
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
+ #: ad-inserter.php:1101
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
+ #: ad-inserter.php:1106
67
  msgid "After"
68
  msgstr ""
69
 
70
  #. translators: Debugging position name Prepend content of HTML element (before
71
  #. the content of the HTML element)
72
+ #: ad-inserter.php:1111 strings.php:104
73
  msgid "Prepend content"
74
  msgstr ""
75
 
76
  #. translators: Debugging position name Append content of HTML element (after
77
  #. the content of the HTML element)
78
+ #: ad-inserter.php:1116 strings.php:105
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
+ #: ad-inserter.php:1121 strings.php:106
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
+ #: ad-inserter.php:1126 strings.php:170
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
+ #: ad-inserter.php:1173
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
+ #: ad-inserter.php:1177
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
+ #: ad-inserter.php:1475
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
+ #: ad-inserter.php:1829 ad-inserter.php:3266
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
+ #: ad-inserter.php:2570
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
+ #: ad-inserter.php:2570
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
+ #: ad-inserter.php:2571
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
+ #: ad-inserter.php:2572
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
+ #: ad-inserter.php:2573
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
+ #: ad-inserter.php:2574
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
+ #: ad-inserter.php:2575
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
+ #: ad-inserter.php:2961
143
  msgid "Hey, you are now using %1$s %2$s block."
144
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
145
  msgstr[0] ""
146
  msgstr[1] ""
147
 
148
+ #: ad-inserter.php:2964
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
+ #: ad-inserter.php:2968
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
+ #: ad-inserter.php:2973
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
+ #: ad-inserter.php:2976
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
+ #: ad-inserter.php:2989
166
  msgid ""
167
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
168
  "like saying 'Thank you'. Somebody will be happy."
169
  msgstr ""
170
 
171
+ #: ad-inserter.php:2991
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website."
175
  msgstr ""
176
 
177
+ #: ad-inserter.php:2997
178
  msgid "Sure"
179
  msgstr ""
180
 
181
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
182
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
183
+ #: ad-inserter.php:3014 ad-inserter.php:3049
184
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
185
  msgstr ""
186
 
187
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
188
+ #: ad-inserter.php:3021
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
+ #: ad-inserter.php:3031
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr ""
196
 
197
+ #: ad-inserter.php:3063
198
  msgid ""
199
  "Load settings page in safe mode to avoid collisions with other plugins or "
200
  "theme"
201
  msgstr ""
202
 
203
+ #: ad-inserter.php:3063
204
  msgid "Safe mode"
205
  msgstr ""
206
 
207
  #. translators: %s: Ad Inserter
208
+ #: ad-inserter.php:3158
209
  msgctxt "Meta box name"
210
  msgid "%s Individual Exceptions"
211
  msgstr ""
212
 
213
+ #: ad-inserter.php:3187 ad-inserter.php:11490 class.php:2509
214
  #: includes/preview.php:2343 includes/preview.php:2388
215
+ #: includes/preview.php:2425 settings.php:4439 strings.php:3
216
  msgid "Block"
217
  msgstr ""
218
 
219
+ #: ad-inserter.php:3188 includes/functions.php:4594 settings.php:4440
220
+ #: settings.php:4530
221
  msgid "Name"
222
  msgstr ""
223
 
224
+ #: ad-inserter.php:3191 settings.php:1233
225
  msgid "Default insertion"
226
  msgstr ""
227
 
228
  #. translators: For this post or page
229
+ #: ad-inserter.php:3194
230
  msgctxt "Page"
231
  msgid "For this"
232
  msgstr ""
233
 
234
+ #: ad-inserter.php:3195
235
  msgctxt "Post"
236
  msgid "For this"
237
  msgstr ""
238
 
239
+ #: ad-inserter.php:3207
240
  msgctxt "Enabled/disabled on all"
241
  msgid "pages"
242
  msgstr ""
243
 
244
+ #: ad-inserter.php:3210
245
  msgctxt "Enabled/disabled on all"
246
  msgid "posts"
247
  msgstr ""
248
 
249
+ #: ad-inserter.php:3227 ad-inserter.php:3239 strings.php:176
250
  msgid "Enabled"
251
  msgstr ""
252
 
253
  #. translators: Menu items
254
+ #: ad-inserter.php:3227 ad-inserter.php:3239
255
+ #: includes/functions-check-now.php:2402 includes/functions.php:2932
256
+ #: includes/functions.php:3295 strings.php:16
257
  msgid "Disabled"
258
  msgstr ""
259
 
260
+ #: ad-inserter.php:3229
261
  msgid "No individual exceptions"
262
  msgstr ""
263
 
264
  #. translators: Not enabled for pages or posts
265
+ #: ad-inserter.php:3231
266
  msgid "Not enabled for"
267
  msgstr ""
268
 
269
  #. translators: No individual exceptions enabled for pages or posts
270
+ #: ad-inserter.php:3259
271
  msgid "No block has individual exceptions enabled"
272
  msgstr ""
273
 
274
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
275
+ #: ad-inserter.php:3264
276
  msgid ""
277
  "Default insertion can be configured for each block on %1$s page - button "
278
  "next to %2$s checkbox."
279
  msgstr ""
280
 
281
+ #: ad-inserter.php:3267 settings.php:1211
282
  msgid "Tag / Archive pages"
283
  msgstr ""
284
 
285
+ #: ad-inserter.php:3269
286
  msgid ""
287
  "When individual exceptions for a block are enabled, a checkbox will be "
288
  "listed here to change default insertion for this post or page."
289
  msgstr ""
290
 
291
+ #: ad-inserter.php:3270
292
  msgid ""
293
  "This way you can individually enable or disable blocks on specific posts or "
294
  "pages."
295
  msgstr ""
296
 
297
+ #: ad-inserter.php:3272
298
  msgid "For more information check page %s"
299
  msgstr ""
300
 
301
  #. translators: Ad Inserter Exceptions documentation page
302
+ #: ad-inserter.php:3274
303
  msgid "Individual Exceptions"
304
  msgstr ""
305
 
306
+ #: ad-inserter.php:3321
307
  msgid "STATIC PAGE"
308
  msgstr ""
309
 
310
+ #: ad-inserter.php:3324
311
  msgid "POST"
312
  msgstr ""
313
 
314
+ #: ad-inserter.php:3327
315
  msgid "HOMEPAGE"
316
  msgstr ""
317
 
318
+ #: ad-inserter.php:3330
319
  msgid "CATEGORY PAGE"
320
  msgstr ""
321
 
322
+ #: ad-inserter.php:3333
323
  msgid "SEARCH PAGE"
324
  msgstr ""
325
 
326
+ #: ad-inserter.php:3336
327
  msgid "ARCHIVE PAGE"
328
  msgstr ""
329
 
330
+ #: ad-inserter.php:3339
331
  msgid "ERROR 404 PAGE"
332
  msgstr ""
333
 
334
+ #: ad-inserter.php:3342
335
  msgid "AJAX CALL"
336
  msgstr ""
337
 
338
+ #: ad-inserter.php:3345
339
  msgid "UNKNOWN PAGE TYPE"
340
  msgstr ""
341
 
342
+ #: ad-inserter.php:3362
343
  msgid "Click to delete ad blocking detection cokies"
344
  msgstr ""
345
 
346
+ #: ad-inserter.php:3363
347
  msgid "AD BLOCKING STATUS UNKNOWN"
348
  msgstr ""
349
 
350
  #. translators: %s: AdSense Auto Ads
351
+ #: ad-inserter.php:3392
352
  msgid ""
353
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
354
  "positions"
355
  msgstr ""
356
 
357
+ #: ad-inserter.php:3538
358
  msgid "Code for insertion"
359
  msgstr ""
360
 
361
+ #: ad-inserter.php:3538
362
  msgid "character"
363
  msgid_plural "characters"
364
  msgstr[0] ""
365
  msgstr[1] ""
366
 
367
+ #: ad-inserter.php:3554
368
  msgid "Header code"
369
  msgstr ""
370
 
371
+ #: ad-inserter.php:3554
372
  msgctxt "Header code"
373
  msgid "DISABLED"
374
  msgstr ""
375
 
376
+ #: ad-inserter.php:3554 ad-inserter.php:3810
377
  msgid "character inserted"
378
  msgid_plural "characters inserted"
379
  msgstr[0] ""
380
  msgstr[1] ""
381
 
382
+ #: ad-inserter.php:3572
383
+ msgid "Click to delete the cookie for the consents"
384
  msgstr ""
385
 
386
+ #: ad-inserter.php:3810
387
  msgid "Footer code"
388
  msgstr ""
389
 
390
+ #: ad-inserter.php:3810
391
  msgctxt "Footer code"
392
  msgid "DISABLED"
393
  msgstr ""
394
 
395
+ #: ad-inserter.php:3821
396
  msgid "JAVASCRIPT NOT WORKING"
397
  msgstr ""
398
 
399
+ #: ad-inserter.php:3821
400
  msgid "NO JAVASCRIPT ERRORS"
401
  msgstr ""
402
 
403
+ #: ad-inserter.php:3821
404
  msgid "JAVASCRIPT ERRORS"
405
  msgstr ""
406
 
407
  #. translators: block name (block with default settings)
408
+ #: ad-inserter.php:6630
409
  msgctxt "Block name"
410
  msgid "Default"
411
  msgstr ""
412
 
413
  #. translators: %s: Ad Inserter
414
+ #: ad-inserter.php:7074 ad-inserter.php:7389
415
  msgid "Invalid data received - %s settings not saved."
416
  msgstr ""
417
 
418
  #. translators: %s: Ad Inserter
419
+ #: ad-inserter.php:7359
420
  msgid "Error importing %s settings."
421
  msgstr ""
422
 
423
+ #: ad-inserter.php:7360
424
  msgid "Error importing settings for block"
425
  msgid_plural "Error importing settings for blocks:"
426
  msgstr[0] ""
427
  msgstr[1] ""
428
 
429
+ #: ad-inserter.php:7387
430
  msgid "Settings saved."
431
  msgstr ""
432
 
433
+ #: ad-inserter.php:7409
434
  msgid "Settings cleared."
435
  msgstr ""
436
 
437
  #. Translators: Post/Static page must have between X and Y words
438
+ #: ad-inserter.php:7785 ad-inserter.php:7787 ad-inserter.php:7810
439
  #: settings.php:2240
440
  msgid "word"
441
  msgid_plural "words"
442
  msgstr[0] ""
443
  msgstr[1] ""
444
 
445
+ #: ad-inserter.php:7824 ad-inserter.php:7951
446
  msgid "HTML TAGS REMOVED"
447
  msgstr ""
448
 
449
+ #: ad-inserter.php:8030
450
  msgid "BEFORE COMMENTS"
451
  msgstr ""
452
 
453
+ #: ad-inserter.php:8155
454
  msgid "AFTER COMMENTS"
455
  msgstr ""
456
 
457
+ #: ad-inserter.php:8232
458
  msgid "BETWEEN COMMENTS"
459
  msgstr ""
460
 
461
+ #: ad-inserter.php:10768 ad-inserter.php:10857
462
  msgctxt "category name"
463
  msgid "Uncategorized"
464
  msgstr ""
465
 
466
+ #: ad-inserter.php:11088
467
  msgid "requires WordPress 4.6 or newer"
468
  msgstr ""
469
 
470
+ #: ad-inserter.php:11088
471
  msgid "Please update!"
472
  msgstr ""
473
 
474
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
475
  #. name with HTML tags will be added)
476
+ #: ad-inserter.php:11358
477
  msgid "Thank you for installing"
478
  msgstr ""
479
 
480
  #. translators: Opt-in message: %s: HTML tags
481
+ #: ad-inserter.php:11360
482
  msgid ""
483
  "We would like to %s track its usage %s on your site. This is completely "
484
  "optional and can be disabled at any time."
485
  msgstr ""
486
 
487
+ #: ad-inserter.php:11362
488
  msgid ""
489
  "We don't record any sensitive data, only information regarding the WordPress "
490
  "environment and plugin usage, which will help us to make improvements to the "
492
  msgstr ""
493
 
494
  #. translators: Deactivation message: %s: HTML tags
495
+ #: ad-inserter.php:11402
496
  msgid ""
497
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
498
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
500
  msgstr ""
501
 
502
  #. translators: %s: Ad Inserter
503
+ #: ad-inserter.php:11448
504
  msgid "%s block."
505
  msgstr ""
506
 
507
  #. translators: widget title
508
+ #: ad-inserter.php:11464 ad-inserter.php:11499
509
  msgid "Processing log"
510
  msgstr ""
511
 
512
  #. translators: widget title
513
+ #: ad-inserter.php:11466 ad-inserter.php:11500
514
  msgid "Dummy widget"
515
  msgstr ""
516
 
517
  #. translators: widget title
518
+ #: ad-inserter.php:11468 ad-inserter.php:11498
519
  msgid "Debugging tools"
520
  msgstr ""
521
 
522
  #. translators: block status (widget title)
523
+ #: ad-inserter.php:11475
524
  msgctxt "block"
525
  msgid "PAUSED"
526
  msgstr ""
527
 
528
+ #: ad-inserter.php:11476
529
  msgid "WIDGET DISABLED"
530
  msgstr ""
531
 
532
+ #: ad-inserter.php:11477
533
  msgid "Unknown block"
534
  msgstr ""
535
 
536
+ #: ad-inserter.php:11485 includes/functions-check-now.php:3262
537
+ #: includes/functions.php:5072 settings.php:1263
538
  msgid "Title"
539
  msgstr ""
540
 
541
+ #: ad-inserter.php:11507
542
  msgctxt "Widget"
543
  msgid "Sticky"
544
  msgstr ""
545
 
546
+ #: ad-inserter.php:11558
547
  msgid ""
548
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
549
  "Inserter you need to first deactivate Ad Inserter Pro."
550
  msgstr ""
551
 
552
+ #: ad-inserter.php:11559
553
  msgid ""
554
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
555
  "will clear all settings that are available only in the Pro version "
557
  msgstr ""
558
 
559
  #. translators: %s: Ad Inserter
560
+ #: class.php:609 class.php:618 class.php:621
561
  msgid "PHP error in %s block"
562
  msgstr ""
563
 
564
+ #: class.php:2459
565
  msgid "Counters"
566
  msgstr ""
567
 
568
+ #: class.php:2463
569
  msgid "Content"
570
  msgstr ""
571
 
572
+ #: class.php:2468
573
  msgid "Excerpt"
574
  msgstr ""
575
 
576
+ #: class.php:2473 strings.php:17
577
  msgid "Before post"
578
  msgstr ""
579
 
580
+ #: class.php:2478 strings.php:18
581
  msgid "After post"
582
  msgstr ""
583
 
584
+ #: class.php:2483 strings.php:25
585
  msgid "Between posts"
586
  msgstr ""
587
 
588
+ #: class.php:2488 settings.php:1974 settings.php:4457
589
  msgid "Widget"
590
  msgstr ""
591
 
592
+ #: class.php:2493 settings.php:4455
593
  msgid "PHP function call"
594
  msgstr ""
595
 
596
  #. Translators: %s: custom hook name
597
+ #: class.php:2503
598
  msgid "Custom hook %s call"
599
  msgstr ""
600
 
601
+ #: class.php:2539
602
  msgid "AJAX REQUEST"
603
  msgstr ""
604
 
605
+ #: class.php:2542
606
  msgid "Ajax request for block in iframe"
607
  msgstr ""
608
 
609
+ #: class.php:2576
610
  msgid "Ajax request url, click to open it in a new tab"
611
  msgstr ""
612
 
613
+ #: class.php:2579
614
  msgid "IN THE LOOP"
615
  msgstr ""
616
 
617
+ #: class.php:2579
618
  msgid "YES"
619
  msgstr ""
620
 
621
+ #: class.php:2579
622
  msgid "NO"
623
  msgstr ""
624
 
625
+ #: class.php:2614
626
  msgid "BLOCK"
627
  msgstr ""
628
 
629
+ #: class.php:2614
630
  msgctxt "block or widget"
631
  msgid "INSERTED BUT NOT VISIBLE"
632
  msgstr ""
633
 
634
+ #: class.php:2845
635
  msgctxt "viewports"
636
  msgid "ALL"
637
  msgstr ""
638
 
639
+ #: class.php:2878 class.php:2919 class.php:4477 strings.php:282
640
  msgctxt "Block"
641
  msgid "HIDDEN"
642
  msgstr ""
643
 
644
+ #: class.php:2926 class.php:4480 strings.php:281
645
  msgctxt "Block"
646
  msgid "VISIBLE"
647
  msgstr ""
648
 
649
+ #: class.php:3609 class.php:3696
650
  msgid "ACTIVE GROUPS"
651
  msgstr ""
652
 
653
+ #: class.php:4163
654
  msgid "start='%s' end='%s' days='%s' type='%s'"
655
  msgstr ""
656
 
657
+ #: class.php:4171
658
  msgid "parameters='%s' type='%s'"
659
  msgstr ""
660
 
661
  #. translators: %s: list parameters and type
662
+ #: class.php:4173
663
  msgid "referers='%s' type='%s'"
664
  msgstr ""
665
 
666
  #. translators: %s: list parameters and type
667
+ #: class.php:4175
668
  msgid "clients='%s' type='%s'"
669
  msgstr ""
670
 
671
  #. translators: %s: list parameters and type
672
+ #: class.php:4360
673
  msgid "countries='%s' type='%s'"
674
  msgstr ""
675
 
676
  #. translators: %s: list parameters and type
677
+ #: class.php:4362
678
  msgid "ip addresses='%s' type='%s'"
679
  msgstr ""
680
 
681
+ #: class.php:4477 class.php:4480
682
  msgid "viewport='%s' type='%s'"
683
  msgstr ""
684
 
685
+ #: class.php:4603 strings.php:283
686
+ msgctxt "alternative block"
687
+ msgid "FALLBACK"
688
+ msgstr ""
689
+
690
+ #: class.php:5130 strings.php:275
691
  msgid "BEFORE"
692
  msgstr ""
693
 
694
+ #: class.php:5138 strings.php:277
695
  msgid "PREPEND CONTENT"
696
  msgstr ""
697
 
698
+ #: class.php:5142 strings.php:278
699
  msgid "APPEND CONTENT"
700
  msgstr ""
701
 
702
+ #: class.php:5146 strings.php:279
703
  msgid "REPLACE CONTENT"
704
  msgstr ""
705
 
706
+ #: class.php:5150 strings.php:280
707
  msgid "REPLACE ELEMENT"
708
  msgstr ""
709
 
710
+ #: class.php:5161 strings.php:276
711
  msgid "AFTER"
712
  msgstr ""
713
 
714
+ #: class.php:5231 includes/preview.php:2388 includes/preview.php:2425
715
  msgid "Code"
716
  msgstr ""
717
 
718
+ #: class.php:5234
719
  msgid "for block"
720
  msgstr ""
721
 
722
+ #: class.php:9375
723
  msgid ""
724
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
725
  "extension for PHP."
726
  msgstr ""
727
 
728
  #: includes/editor.php:4 includes/placeholders.php:350
729
+ #: includes/preview.php:2329 strings.php:288
730
  msgid "Use"
731
  msgstr ""
732
 
735
  msgstr ""
736
 
737
  #: includes/editor.php:6 includes/placeholders.php:352
738
+ #: includes/preview.php:2332 settings.php:3776 strings.php:229 strings.php:287
739
  msgid "Cancel"
740
  msgstr ""
741
 
759
  msgid "PAGE BLOCKED"
760
  msgstr ""
761
 
762
+ #: includes/functions-check-now.php:288 includes/functions.php:325
763
  msgid "%d of %d names shown"
764
  msgstr ""
765
 
766
  #. translators: %s: name filter
767
+ #: includes/functions-check-now.php:307 includes/functions.php:344
768
  msgid "No name matches filter"
769
  msgstr ""
770
 
771
  #. translators: %s: Ad Inserter Pro
772
+ #: includes/functions-check-now.php:396 includes/functions.php:430
773
  msgid ""
774
  "Import %s settings when saving - if checked, the encoded settings below will "
775
  "be imported for all blocks and settings"
776
  msgstr ""
777
 
778
+ #: includes/functions-check-now.php:396 includes/functions.php:430
779
  msgid "Import Settings for"
780
  msgstr ""
781
 
782
+ #: includes/functions-check-now.php:400 includes/functions.php:434
783
  msgid "Saved settings for"
784
  msgstr ""
785
 
786
+ #: includes/functions-check-now.php:420 includes/functions.php:457
787
  msgid "License Key"
788
  msgstr ""
789
 
790
+ #: includes/functions-check-now.php:423 includes/functions.php:460
791
  msgid "License Key for"
792
  msgstr ""
793
 
794
+ #: includes/functions-check-now.php:425 includes/functions.php:462
795
  msgid "Open license page"
796
  msgstr ""
797
 
798
+ #: includes/functions-check-now.php:432 includes/functions.php:469
799
  msgid "Hide license key"
800
  msgstr ""
801
 
802
+ #: includes/functions-check-now.php:432 includes/functions.php:469
803
  msgid "Hide key"
804
  msgstr ""
805
 
806
+ #: includes/functions-check-now.php:447 includes/functions.php:486
807
  msgid "Main content element"
808
  msgstr ""
809
 
810
+ #: includes/functions-check-now.php:450 includes/functions.php:489
811
  msgid ""
812
  "Main content element (#id or .class) for 'Stick to the content' position. "
813
  "Leave empty unless position is not properly calculated."
814
  msgstr ""
815
 
816
+ #: includes/functions-check-now.php:451 includes/functions.php:490
817
  #: settings.php:1420 settings.php:1460 settings.php:2919
818
  msgid "Open HTML element selector"
819
  msgstr ""
820
 
821
+ #: includes/functions-check-now.php:456 includes/functions.php:495
822
  msgid "Lazy loading offset"
823
  msgstr ""
824
 
825
+ #: includes/functions-check-now.php:459 includes/functions.php:498
826
  msgid "Offset of the block from the visible viewport when it should be loaded"
827
  msgstr ""
828
 
829
+ #: includes/functions-check-now.php:470 includes/functions.php:510
830
  msgid "Export / Import Block Settings"
831
  msgstr ""
832
 
833
+ #: includes/functions-check-now.php:485 includes/functions.php:527
834
  msgid "Track impressions and clicks for this block"
835
  msgstr ""
836
 
837
+ #: includes/functions-check-now.php:485 includes/functions.php:527
838
  msgid " - global tracking disabled"
839
  msgstr ""
840
 
841
+ #: includes/functions-check-now.php:492 includes/functions.php:535
842
+ #: includes/functions.php:4766
843
  msgid "Generate PDF report"
844
  msgstr ""
845
 
846
+ #: includes/functions-check-now.php:497 includes/functions.php:549
847
  msgid "Open public report"
848
  msgstr ""
849
 
850
+ #: includes/functions-check-now.php:511 includes/functions.php:563
851
  msgid "Toggle Ad Blocking Statistics"
852
  msgstr ""
853
 
854
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
855
+ #: includes/functions.php:571 includes/functions.php:4747
856
  msgid "Toggle Statistics"
857
  msgstr ""
858
 
859
+ #: includes/functions-check-now.php:528 includes/functions.php:580
860
  msgid "Pin list"
861
  msgstr ""
862
 
863
  #. translators: %s: Ad Inserter Pro
864
+ #: includes/functions-check-now.php:543 includes/functions.php:603
865
  msgid "%s license key is not set. Continue?"
866
  msgstr ""
867
 
868
  #. translators: %s: Ad Inserter Pro
869
+ #: includes/functions-check-now.php:547 includes/functions.php:607
870
  msgid "Invalid %s license key. Continue?"
871
  msgstr ""
872
 
873
  #. translators: %s: Ad Inserter Pro
874
+ #: includes/functions-check-now.php:551 includes/functions.php:611
875
  msgid "%s license overused. Continue?"
876
  msgstr ""
877
 
878
+ #: includes/functions-check-now.php:555 includes/functions.php:621
879
  #: settings.php:1168 settings.php:2352
880
  msgid "Save Settings"
881
  msgstr ""
882
 
883
+ #: includes/functions-check-now.php:615 includes/functions.php:689
884
  #: includes/preview.php:2520
885
  msgid "Horizontal position"
886
  msgstr ""
887
 
888
+ #: includes/functions-check-now.php:638 includes/functions.php:714
889
  msgid ""
890
  "Horizontal margin from the content or screen edge, empty means default value "
891
  "from CSS"
892
  msgstr ""
893
 
894
+ #: includes/functions-check-now.php:646 includes/functions.php:722
895
  #: includes/preview.php:2580
896
  msgid "Vertical position"
897
  msgstr ""
898
 
899
+ #: includes/functions-check-now.php:661 includes/functions.php:737
900
  msgid ""
901
  "Vertical margin from the top or bottom screen edge, empty means default "
902
  "value from CSS"
903
  msgstr ""
904
 
905
+ #: includes/functions-check-now.php:686 includes/functions.php:768
906
  #: includes/preview.php:2635
907
  msgid "Animation"
908
  msgstr ""
909
 
910
+ #: includes/functions-check-now.php:704
911
  msgid "Trigger"
912
  msgstr ""
913
 
914
+ #: includes/functions-check-now.php:713
915
  msgid ""
916
  "Trigger value: page scroll in %, page scroll in px or element with selector "
917
  "(#id or .class) becomes visible"
918
  msgstr ""
919
 
920
+ #: includes/functions-check-now.php:717 includes/functions.php:803
921
+ #: includes/functions.php:830
922
  msgid "Offset"
923
  msgstr ""
924
 
925
+ #: includes/functions-check-now.php:717 includes/functions.php:803
926
+ #: includes/functions.php:830
927
  msgid "Offset of trigger element"
928
  msgstr ""
929
 
930
+ #: includes/functions-check-now.php:721 includes/functions.php:807
931
+ #: includes/functions.php:834 settings.php:1475
932
  msgid "Delay"
933
  msgstr ""
934
 
935
+ #: includes/functions-check-now.php:721 includes/functions.php:807
936
  msgid "Delay animation after trigger condition"
937
  msgstr ""
938
 
939
+ #: includes/functions-check-now.php:725
940
  msgid "Trigger once"
941
  msgstr ""
942
 
943
+ #: includes/functions-check-now.php:727
944
  msgid "Trigger animation only once"
945
  msgstr ""
946
 
947
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
948
+ #: includes/functions-check-now.php:2546 includes/functions.php:942
949
+ #: includes/functions.php:3084 includes/functions.php:3100
950
  msgid "Tracking is globally disabled"
951
  msgstr ""
952
 
953
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
954
+ #: includes/functions-check-now.php:2550 includes/functions.php:946
955
+ #: includes/functions.php:3088 includes/functions.php:3104
956
  msgid "Tracking for this block is disabled"
957
  msgstr ""
958
 
959
+ #: includes/functions-check-now.php:780 includes/functions.php:953
960
  msgid "Double click to toggle controls in public reports"
961
  msgstr ""
962
 
963
+ #: includes/functions-check-now.php:786 includes/functions.php:959
964
+ #: includes/functions.php:4316 settings.php:3696 settings.php:3732
965
+ #: settings.php:3793 strings.php:243
966
  msgid "Loading..."
967
  msgstr ""
968
 
969
+ #: includes/functions-check-now.php:807 includes/functions.php:980
970
  msgid ""
971
  "Clear statistics data for the selected range - clear both dates to delete "
972
  "all data for this block"
973
  msgstr ""
974
 
975
+ #: includes/functions-check-now.php:811 includes/functions.php:984
976
  msgid "Auto refresh data for the selected range every 60 seconds"
977
  msgstr ""
978
 
979
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
980
+ #: includes/functions.php:987 includes/functions.php:7984
981
  msgid "Load data for last month"
982
  msgstr ""
983
 
984
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
985
+ #: includes/functions.php:987 includes/functions.php:7984
986
  msgid "Last Month"
987
  msgstr ""
988
 
989
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
990
+ #: includes/functions.php:990 includes/functions.php:7987
991
  msgid "Load data for this month"
992
  msgstr ""
993
 
994
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
995
+ #: includes/functions.php:990 includes/functions.php:7987
996
  msgid "This Month"
997
  msgstr ""
998
 
999
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1000
+ #: includes/functions.php:993 includes/functions.php:7990
1001
  msgid "Load data for this year"
1002
  msgstr ""
1003
 
1004
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1005
+ #: includes/functions.php:993 includes/functions.php:7990
1006
  msgid "This Year"
1007
  msgstr ""
1008
 
1009
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1010
+ #: includes/functions.php:996 includes/functions.php:7993
1011
  msgid "Load data for the last 15 days"
1012
  msgstr ""
1013
 
1014
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1015
+ #: includes/functions.php:999 includes/functions.php:7996
1016
  msgid "Load data for the last 30 days"
1017
  msgstr ""
1018
 
1019
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1020
+ #: includes/functions.php:1002 includes/functions.php:7999
1021
  msgid "Load data for the last 90 days"
1022
  msgstr ""
1023
 
1024
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1025
+ #: includes/functions.php:1005 includes/functions.php:8002
1026
  msgid "Load data for the last 180 days"
1027
  msgstr ""
1028
 
1029
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1030
+ #: includes/functions.php:1008 includes/functions.php:8005
1031
  msgid "Load data for the last 365 days"
1032
  msgstr ""
1033
 
1034
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1035
+ #: includes/functions.php:1018 includes/functions.php:8015
1036
  msgid "Load data for the selected range"
1037
  msgstr ""
1038
 
1039
+ #: includes/functions-check-now.php:861 includes/functions.php:1035
1040
  msgid ""
1041
  "Import settings when saving - if checked, the encoded settings below will be "
1042
  "imported for this block"
1043
  msgstr ""
1044
 
1045
+ #: includes/functions-check-now.php:861 includes/functions.php:1035
1046
  msgid "Import settings for block"
1047
  msgstr ""
1048
 
1049
+ #: includes/functions-check-now.php:865 includes/functions.php:1039
1050
  msgid ""
1051
  "Import block name when saving - if checked and 'Import settings for block' "
1052
  "is also checked, the name from encoded settings below will be imported for "
1053
  "this block"
1054
  msgstr ""
1055
 
1056
+ #: includes/functions-check-now.php:865 includes/functions.php:1039
1057
  msgid "Import block name"
1058
  msgstr ""
1059
 
1060
+ #: includes/functions-check-now.php:869 includes/functions.php:1043
1061
  msgid "Saved settings for block"
1062
  msgstr ""
1063
 
1064
+ #: includes/functions-check-now.php:882 includes/functions.php:1058
1065
  msgid "Export / Import Ad Inserter Pro Settings"
1066
  msgstr ""
1067
 
1068
+ #: includes/functions-check-now.php:892 includes/functions.php:1077
1069
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1070
  msgstr ""
1071
 
1072
+ #: includes/functions-check-now.php:894 includes/functions.php:1079
1073
  msgid "Clear All Statistics Data"
1074
  msgstr ""
1075
 
1076
+ #: includes/functions-check-now.php:921 includes/functions.php:1113
1077
  msgid "Toggle country/city editor"
1078
  msgstr ""
1079
 
1080
+ #: includes/functions-check-now.php:927 includes/functions.php:1119
1081
  msgid "IP Addresses"
1082
  msgstr ""
1083
 
1084
+ #: includes/functions-check-now.php:930 includes/functions.php:1122
1085
  msgid "Toggle IP address editor"
1086
  msgstr ""
1087
 
1088
+ #: includes/functions-check-now.php:933 includes/functions.php:1125
1089
  msgid ""
1090
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1091
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1099
  msgid "Whitelist IP addresses"
1100
  msgstr ""
1101
 
1102
+ #: includes/functions-check-now.php:952 includes/functions.php:1141
1103
  msgid "Countries"
1104
  msgstr ""
1105
 
1106
+ #: includes/functions-check-now.php:953 includes/functions.php:1142
1107
  msgid "Cities"
1108
  msgstr ""
1109
 
1110
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1111
+ #: includes/functions.php:1146 includes/functions.php:4712
1112
  msgid "Toggle country editor"
1113
  msgstr ""
1114
 
1115
+ #: includes/functions-check-now.php:960 includes/functions.php:1149
1116
  msgid "Toggle city editor"
1117
  msgstr ""
1118
 
1119
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1120
+ #: includes/functions.php:1153 includes/functions.php:4715
1121
  msgid "Comma separated country ISO Alpha-2 codes"
1122
  msgstr ""
1123
 
1130
  msgstr ""
1131
 
1132
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1133
+ #: includes/functions.php:1708 includes/functions.php:2043
1134
  msgid "Enter license key"
1135
  msgstr ""
1136
 
1137
  #. translators: %s: Ad Inserter Pro
1138
+ #: includes/functions-check-now.php:1389 includes/functions.php:1714
1139
  msgid ""
1140
  "%s license key is not set. Plugin functionality is limited and updates are "
1141
  "disabled."
1142
  msgstr ""
1143
 
1144
  #. translators: %s: Ad Inserter Pro
1145
+ #: includes/functions-check-now.php:1403 includes/functions.php:1728
1146
  msgid "Warning: %s plugin update server is not accessible"
1147
  msgstr ""
1148
 
1149
  #. translators: updates are not available
1150
+ #: includes/functions-check-now.php:1405 includes/functions.php:1730
1151
  msgid "updates"
1152
  msgstr ""
1153
 
1154
  #. translators: updates are not available
1155
+ #: includes/functions-check-now.php:1407 includes/functions.php:1732
1156
  msgid "are not available"
1157
  msgstr ""
1158
 
1159
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1160
+ #: includes/functions.php:1737 includes/functions.php:2052
1161
  msgid "Check license key"
1162
  msgstr ""
1163
 
1164
  #. translators: %s: Ad Inserter Pro
1165
+ #: includes/functions-check-now.php:1418 includes/functions.php:1743
1166
  msgid "Invalid %s license key."
1167
  msgstr ""
1168
 
1169
  #. translators: %s: Ad Inserter Pro
1170
+ #: includes/functions-check-now.php:1427 includes/functions.php:1752
1171
  msgid "%s license expired. Plugin updates are disabled."
1172
  msgstr ""
1173
 
1174
+ #: includes/functions-check-now.php:1428 includes/functions.php:1753
1175
  msgid "Renew license"
1176
  msgstr ""
1177
 
1178
  #. translators: %s: Ad Inserter Pro
1179
+ #: includes/functions-check-now.php:1436 includes/functions.php:1761
1180
  msgid "%s license overused. Plugin updates are disabled."
1181
  msgstr ""
1182
 
1183
+ #: includes/functions-check-now.php:1437 includes/functions.php:1762
1184
  msgid "Manage licenses"
1185
  msgstr ""
1186
 
1187
+ #: includes/functions-check-now.php:1437 includes/functions.php:1762
1188
  msgid "Upgrade license"
1189
  msgstr ""
1190
 
1191
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1192
+ #: includes/functions-check-now.php:1684 includes/functions.php:2045
1193
  msgid ""
1194
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1195
  "limited and updates are disabled."
1196
  msgstr ""
1197
 
1198
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1199
+ #: includes/functions-check-now.php:1693 includes/functions.php:2054
1200
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1201
  msgstr ""
1202
 
1203
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1204
+ #: includes/functions-check-now.php:1709 includes/functions.php:2070
1205
  msgid ""
1206
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1207
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1208
  msgstr ""
1209
 
1210
  #. translators: 1, 3: HTML tags, 2: percentage
1211
+ #: includes/functions-check-now.php:1716 includes/functions.php:2077
1212
  msgid ""
1213
  "During the license period and 30 days after the license has expired we offer "
1214
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1215
  msgstr ""
1216
 
1217
+ #: includes/functions-check-now.php:1726 includes/functions.php:2087
1218
  msgid "No, thank you."
1219
  msgstr ""
1220
 
1221
+ #: includes/functions-check-now.php:1729 includes/functions.php:2090
1222
  msgid "Not now, maybe later."
1223
  msgstr ""
1224
 
1225
+ #: includes/functions-check-now.php:1743 includes/functions.php:2104
1226
  msgid "Renew the licence"
1227
  msgstr ""
1228
 
1229
+ #: includes/functions-check-now.php:1745 includes/functions.php:2106
1230
  msgid "Update license status"
1231
  msgstr ""
1232
 
1233
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1234
+ #: includes/functions-check-now.php:1756 includes/functions.php:2119
1235
  msgid ""
1236
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1237
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1238
  msgstr ""
1239
 
1240
  #. Translators: %s: HTML tag
1241
+ #: includes/functions-check-now.php:1778 includes/functions.php:2179
1242
  msgid "Warning: %s MaxMind IP geolocation database not found."
1243
  msgstr ""
1244
 
1245
+ #: includes/functions-check-now.php:2331 includes/functions.php:2861
1246
  msgid "Geolocation"
1247
  msgstr ""
1248
 
1249
+ #: includes/functions-check-now.php:2335 includes/functions.php:2865
1250
+ #: settings.php:4444
1251
  msgid "Exceptions"
1252
  msgstr ""
1253
 
1254
+ #: includes/functions-check-now.php:2340 includes/functions.php:2870
1255
  msgid "Multisite"
1256
  msgstr ""
1257
 
1258
+ #: includes/functions-check-now.php:2345 includes/functions.php:2875
1259
+ #: settings.php:4450
1260
  msgid "Tracking"
1261
  msgstr ""
1262
 
1263
  #. translators: %d: days, hours, minutes
1264
+ #: includes/functions-check-now.php:2376 includes/functions.php:2909
1265
  msgid "Scheduled in %d days %d hours %d minutes"
1266
  msgstr ""
1267
 
1268
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1269
  #. HTML code for long dash separator
1270
+ #: includes/functions-check-now.php:2385 includes/functions.php:2918
1271
  msgid "Active %s expires in %d days %d hours %d minutes"
1272
  msgstr ""
1273
 
1274
+ #: includes/functions-check-now.php:2389 includes/functions.php:2922
1275
  msgid "Expired"
1276
  msgstr ""
1277
 
1278
+ #: includes/functions-check-now.php:2397 includes/functions.php:2948
1279
  #: settings.php:1530 settings.php:1545 settings.php:1667 settings.php:2238
1280
  msgid "and"
1281
  msgstr ""
1282
 
1283
+ #: includes/functions-check-now.php:2400 includes/functions.php:2930
1284
  msgid "fallback"
1285
  msgstr ""
1286
 
1287
+ #: includes/functions-check-now.php:2401 includes/functions.php:2931
1288
  msgid "Block to be used when scheduling expires"
1289
  msgstr ""
1290
 
1291
+ #: includes/functions-check-now.php:2426 includes/functions.php:2970
1292
  msgid "Load in iframe"
1293
  msgstr ""
1294
 
1295
+ #: includes/functions-check-now.php:2430 includes/functions.php:2974
1296
  #: includes/placeholders.php:387 settings.php:1128 settings.php:2265
1297
  msgid "Width"
1298
  msgstr ""
1299
 
1300
+ #: includes/functions-check-now.php:2431 includes/functions.php:2975
1301
  msgid "iframe width, empty means full width (100%)"
1302
  msgstr ""
1303
 
1304
+ #: includes/functions-check-now.php:2437 includes/functions.php:2981
1305
  #: includes/placeholders.php:382 settings.php:1134 settings.php:2269
1306
  msgid "Height"
1307
  msgstr ""
1308
 
1309
+ #: includes/functions-check-now.php:2438 includes/functions.php:2982
1310
  msgid "iframe height, empty means adjust it to iframe content height"
1311
  msgstr ""
1312
 
1313
+ #: includes/functions-check-now.php:2445 includes/functions.php:2989
1314
  msgid "Ad label in iframe"
1315
  msgstr ""
1316
 
1317
+ #: includes/functions-check-now.php:2450 includes/functions.php:2994
1318
  msgid "Preview iframe code"
1319
  msgstr ""
1320
 
1321
+ #: includes/functions-check-now.php:2450 includes/functions.php:2994
1322
  #: includes/preview.php:2341 settings.php:1163 settings.php:2990
1323
  msgid "Preview"
1324
  msgstr ""
1325
 
1326
+ #: includes/functions-check-now.php:2464 includes/functions.php:3010
1327
+ #: settings.php:4451
1328
  msgid "Limits"
1329
  msgstr ""
1330
 
1331
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1332
+ #: includes/functions-check-now.php:4430 includes/functions.php:3015
1333
+ #: includes/functions.php:6538 includes/functions.php:6603 settings.php:2402
1334
  msgid "Ad Blocking"
1335
  msgstr ""
1336
 
1337
  #. translators: 1, 2 and 3, 4: HTML tags
1338
+ #: includes/functions-check-now.php:2478 includes/functions.php:3026
1339
  msgid ""
1340
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1341
  "for tracking!"
1343
 
1344
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1345
  #. header
1346
+ #: includes/functions-check-now.php:2487 includes/functions.php:3035
1347
  msgid ""
1348
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1349
  "enabled and automatic insertion %6$s!"
1350
  msgstr ""
1351
 
1352
+ #: includes/functions-check-now.php:2554 includes/functions.php:3108
1353
  msgid "Click fraud protection is globally disabled"
1354
  msgstr ""
1355
 
1358
  msgstr ""
1359
 
1360
  #. Translators: Max n impressions
1361
+ #: includes/functions-check-now.php:2572 includes/functions.php:3122
1362
  msgid "General limits"
1363
  msgstr ""
1364
 
1365
  #. Translators: Max n impressions per x days
1366
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1367
+ #: includes/functions-check-now.php:2675 includes/functions.php:3128
1368
+ #: includes/functions.php:3140 includes/functions.php:3225
1369
  msgid "Current value"
1370
  msgstr ""
1371
 
1381
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1382
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1383
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1384
+ #: includes/functions.php:3147 includes/functions.php:3157
1385
+ #: includes/functions.php:3176 includes/functions.php:3186
1386
+ #: includes/functions.php:3232 includes/functions.php:3241
1387
+ #: includes/functions.php:3259 includes/functions.php:3268 settings.php:2150
1388
  msgid "Max"
1389
  msgstr ""
1390
 
1391
+ #: includes/functions-check-now.php:2598 includes/functions.php:3148
1392
  msgid ""
1393
  "Maximum number of impressions for this block. Empty means no general "
1394
  "impression limit."
1400
  #. Translators: Max n impressions per x days
1401
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1402
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1403
+ #: includes/functions.php:3150 includes/functions.php:3160
1404
+ #: includes/functions.php:3235 includes/functions.php:3244
1405
  msgid "impression"
1406
  msgid_plural "impressions"
1407
  msgstr[0] ""
1408
  msgstr[1] ""
1409
 
1410
+ #: includes/functions-check-now.php:2608 includes/functions.php:3158
1411
  msgid ""
1412
  "Maximum number of impressions per time period. Empty means no time limit."
1413
  msgstr ""
1418
  #. Translators: Max n clicks per x days
1419
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1420
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1421
+ #: includes/functions.php:3164 includes/functions.php:3193
1422
+ #: includes/functions.php:3248 includes/functions.php:3275
1423
+ #: includes/functions.php:4982
1424
  msgid "per"
1425
  msgstr ""
1426
 
1427
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1428
+ #: includes/functions.php:3165 includes/functions.php:3194
1429
  msgid "Time period in days. Empty means no time limit."
1430
  msgstr ""
1431
 
1437
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1438
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1439
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1440
+ #: includes/functions.php:3167 includes/functions.php:3196
1441
+ #: includes/functions.php:3251 includes/functions.php:3278
1442
+ #: includes/functions.php:3410 includes/functions.php:4985
1443
+ #: includes/functions.php:4995 strings.php:219 strings.php:220 strings.php:221
1444
+ #: strings.php:222 strings.php:223 strings.php:224
1445
  msgid "day"
1446
  msgid_plural "days"
1447
  msgstr[0] ""
1448
  msgstr[1] ""
1449
 
1450
+ #: includes/functions-check-now.php:2627 includes/functions.php:3177
1451
  msgid ""
1452
  "Maximum number of clicks on this block. Empty means no general click limit."
1453
  msgstr ""
1458
  #. Translators: Max n clicks per x days
1459
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1460
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1461
+ #: includes/functions-check-now.php:4578 includes/functions.php:3179
1462
+ #: includes/functions.php:3189 includes/functions.php:3262
1463
+ #: includes/functions.php:3271 includes/functions.php:4982
1464
+ #: includes/functions.php:6878
1465
  msgid "click"
1466
  msgid_plural "clicks"
1467
  msgstr[0] ""
1468
  msgstr[1] ""
1469
 
1470
+ #: includes/functions-check-now.php:2637 includes/functions.php:3187
1471
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1472
  msgstr ""
1473
 
1474
+ #: includes/functions-check-now.php:2662 includes/functions.php:3212
1475
  msgid "Individual visitor limits"
1476
  msgstr ""
1477
 
1478
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1479
+ #: includes/functions.php:3216 includes/functions.php:3218
1480
  msgid ""
1481
  "When specified number of clicks on this block for a visitor will be reached "
1482
  "in the specified time period, all blocks that have click fraud protection "
1484
  "general plugin settings."
1485
  msgstr ""
1486
 
1487
+ #: includes/functions-check-now.php:2668 includes/functions.php:3218
1488
  msgid "Trigger click fraud protection"
1489
  msgstr ""
1490
 
1491
+ #: includes/functions-check-now.php:2683 includes/functions.php:3233
1492
  msgid ""
1493
  "Maximum number of impressions of this block for each visitor. Empty means no "
1494
  "impression limit."
1495
  msgstr ""
1496
 
1497
+ #: includes/functions-check-now.php:2692 includes/functions.php:3242
1498
  msgid ""
1499
  "Maximum number of impressions per time period for each visitor. Empty means "
1500
  "no impression limit per time period for visitors."
1501
  msgstr ""
1502
 
1503
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1504
+ #: includes/functions.php:3249 includes/functions.php:3276
1505
+ #: includes/functions.php:4985
1506
  msgid ""
1507
  "Time period in days. Use decimal value (with decimal point) for shorter "
1508
  "periods. Empty means no time limit."
1509
  msgstr ""
1510
 
1511
+ #: includes/functions-check-now.php:2710 includes/functions.php:3260
1512
  msgid ""
1513
  "Maximum number of clicks on this block for each visitor. Empty means no "
1514
  "click limit."
1515
  msgstr ""
1516
 
1517
+ #: includes/functions-check-now.php:2719 includes/functions.php:3269
1518
+ #: includes/functions.php:4982
1519
  msgid ""
1520
  "Maximum number of clicks per time period for each visitor. Empty means no "
1521
  "click limit per time period for visitors."
1522
  msgstr ""
1523
 
1524
+ #: includes/functions-check-now.php:2745 includes/functions.php:3319
1525
  msgid "When ad blocking is detected"
1526
  msgstr ""
1527
 
1528
+ #: includes/functions-check-now.php:2754 includes/functions.php:3328
1529
  msgid "replacement"
1530
  msgstr ""
1531
 
1532
+ #: includes/functions-check-now.php:2755 includes/functions.php:3329
1533
  msgid "Block to be shown when ad blocking is detected"
1534
  msgstr ""
1535
 
1536
+ #: includes/functions-check-now.php:2756 includes/functions.php:3330
1537
  msgctxt "replacement"
1538
  msgid "None"
1539
  msgstr ""
1540
 
1541
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1542
+ #: includes/functions.php:3347 includes/functions.php:8228
1543
  msgid "Close button"
1544
  msgstr ""
1545
 
1546
+ #: includes/functions-check-now.php:2825 includes/functions.php:3401
1547
  msgid "Auto close after"
1548
  msgstr ""
1549
 
1550
+ #: includes/functions-check-now.php:2826 includes/functions.php:3402
1551
  msgid ""
1552
  "Time in seconds in which the ad will automatically close. Leave empty to "
1553
  "disable auto closing."
1554
  msgstr ""
1555
 
1556
  #. Translators: Don't show for x days
1557
+ #: includes/functions-check-now.php:2831 includes/functions.php:3407
1558
  msgid "Don't show for"
1559
  msgstr ""
1560
 
1561
+ #: includes/functions-check-now.php:2832 includes/functions.php:3408
1562
  msgid ""
1563
  "Time in days in which closed ad will not be shown again. Use decimal value "
1564
  "(with decimal point) for shorter time period or leave empty to show it again "
1566
  msgstr ""
1567
 
1568
  #. Translators: Delay showing for x pageviews
1569
+ #: includes/functions-check-now.php:2852 includes/functions.php:3430
1570
  msgid "Delay showing for"
1571
  msgstr ""
1572
 
1573
+ #: includes/functions-check-now.php:2853 includes/functions.php:3431
1574
  msgid ""
1575
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1576
  "empty to insert the code for the first pageview."
1579
  #. Translators: Delay showing for x pageviews
1580
  #. Translators: Show every x pageviews
1581
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1582
+ #: includes/functions.php:3433 includes/functions.php:3440
1583
  msgid "pageview"
1584
  msgid_plural "pageviews"
1585
  msgstr[0] ""
1586
  msgstr[1] ""
1587
 
1588
  #. Translators: Show every x pageviews
1589
+ #: includes/functions-check-now.php:2859 includes/functions.php:3437
1590
  msgid "Show every"
1591
  msgid_plural "Show every"
1592
  msgstr[0] ""
1593
  msgstr[1] ""
1594
 
1595
+ #: includes/functions-check-now.php:2860 includes/functions.php:3438
1596
  msgid ""
1597
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1598
  "for every pageview."
1599
  msgstr ""
1600
 
1601
+ #: includes/functions-check-now.php:2879 includes/functions.php:3463
1602
  #: settings.php:893
1603
  msgid "Lazy loading"
1604
  msgstr ""
1605
 
1606
  #. Translators: %s MaxMind
1607
+ #: includes/functions-check-now.php:2936 includes/functions.php:4636
1608
  msgid "This product includes GeoLite2 data created by %s"
1609
  msgstr ""
1610
 
1611
+ #: includes/functions-check-now.php:2947 includes/functions.php:4649
1612
  msgid "IP geolocation database"
1613
  msgstr ""
1614
 
1615
+ #: includes/functions-check-now.php:2950 includes/functions.php:4652
1616
  msgid "Select IP geolocation database."
1617
  msgstr ""
1618
 
1619
+ #: includes/functions-check-now.php:2961 includes/functions.php:4663
1620
  msgid "Automatic database updates"
1621
  msgstr ""
1622
 
1623
+ #: includes/functions-check-now.php:2964 includes/functions.php:4666
1624
  msgid ""
1625
  "Automatically download and update free GeoLite2 IP geolocation database by "
1626
  "MaxMind"
1627
  msgstr ""
1628
 
1629
+ #: includes/functions-check-now.php:2972 includes/functions.php:4683
1630
  msgid "Database"
1631
  msgstr ""
1632
 
1633
+ #: includes/functions-check-now.php:2975 includes/functions.php:4686
1634
  msgid ""
1635
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1636
  msgstr ""
1637
 
1638
  #. translators: %d: group number
1639
+ #: includes/functions-check-now.php:2993 includes/functions.php:4704
1640
  msgid "Group %d"
1641
  msgstr ""
1642
 
1643
+ #: includes/functions-check-now.php:2999 includes/functions.php:4710
1644
  msgid "countries"
1645
  msgstr ""
1646
 
1647
+ #: includes/functions-check-now.php:3044 includes/functions.php:4755
1648
  msgid ""
1649
  "Enable impression and click tracking. You also need to enable tracking for "
1650
  "each block you want to track."
1654
  msgid "Generate report"
1655
  msgstr ""
1656
 
1657
+ #: includes/functions-check-now.php:3059 includes/functions.php:4774
1658
  msgid "Impression and Click Tracking"
1659
  msgstr ""
1660
 
1661
+ #: includes/functions-check-now.php:3060 includes/functions.php:4775
1662
  #: settings.php:2869
1663
  msgctxt "ad blocking detection"
1664
  msgid "NOT ENABLED"
1665
  msgstr ""
1666
 
1667
+ #: includes/functions-check-now.php:3076 includes/functions.php:4791
1668
  msgid "Internal"
1669
  msgstr ""
1670
 
1671
+ #: includes/functions-check-now.php:3080 includes/functions.php:4795
1672
  msgid "Track impressions and clicks with internal tracking and statistics"
1673
  msgstr ""
1674
 
1675
+ #: includes/functions-check-now.php:3085 includes/functions.php:4800
1676
  msgid "External"
1677
  msgstr ""
1678
 
1679
+ #: includes/functions-check-now.php:3089 includes/functions.php:4804
1680
  msgid ""
1681
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1682
  "code installed)"
1683
  msgstr ""
1684
 
1685
+ #: includes/functions-check-now.php:3094 includes/functions.php:4809
1686
  msgid "Track Pageviews"
1687
  msgstr ""
1688
 
1689
+ #: includes/functions-check-now.php:3100 includes/functions.php:4815
1690
  msgid "Track Pageviews by Device (as configured for viewports)"
1691
  msgstr ""
1692
 
1693
+ #: includes/functions-check-now.php:3110 includes/functions.php:4825
1694
  msgid "Track for Logged in Users"
1695
  msgstr ""
1696
 
1697
+ #: includes/functions-check-now.php:3116 includes/functions.php:4831
1698
  msgid "Track impressions and clicks from logged in users"
1699
  msgstr ""
1700
 
1701
+ #: includes/functions-check-now.php:3126 includes/functions.php:4841
1702
  msgid "Click Detection"
1703
  msgstr ""
1704
 
1705
+ #: includes/functions-check-now.php:3132 includes/functions.php:4847
1706
  msgid ""
1707
  "Standard method detects clicks only on banners with links, Advanced method "
1708
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1709
  msgstr ""
1710
 
1711
+ #: includes/functions-check-now.php:3151 includes/functions.php:4968
1712
  msgid "Click fraud protection"
1713
  msgstr ""
1714
 
1715
+ #: includes/functions-check-now.php:3155 includes/functions.php:4972
1716
  msgid "Globally enable click fraud protection for selected blocks."
1717
  msgstr ""
1718
 
1719
+ #: includes/functions-check-now.php:3161 includes/functions.php:4992
1720
  msgid "Protection time"
1721
  msgstr ""
1722
 
1723
+ #: includes/functions-check-now.php:3162 includes/functions.php:4995
1724
  msgid ""
1725
  "Time period in days in which blocks with enabled click fraud protection will "
1726
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1727
  msgstr ""
1728
 
1729
+ #: includes/functions-check-now.php:3181 includes/functions.php:4875
1730
  msgid "Report header image"
1731
  msgstr ""
1732
 
1737
  "reset to default image."
1738
  msgstr ""
1739
 
1740
+ #: includes/functions-check-now.php:3185 includes/functions.php:4879
1741
+ #: strings.php:255
1742
  msgid "Select or upload header image"
1743
  msgstr ""
1744
 
1745
+ #: includes/functions-check-now.php:3190 includes/functions.php:4884
1746
  msgid "Report header title"
1747
  msgstr ""
1748
 
1749
+ #: includes/functions-check-now.php:3193 includes/functions.php:4887
1750
  msgid ""
1751
  "Title to be displayed in the header of the statistics report. Text or HTML "
1752
  "code, clear to reset to default text."
1753
  msgstr ""
1754
 
1755
+ #: includes/functions-check-now.php:3198 includes/functions.php:4892
1756
  msgid "Report header description"
1757
  msgstr ""
1758
 
1759
+ #: includes/functions-check-now.php:3201 includes/functions.php:4895
1760
  msgid ""
1761
  "Description to be displayed in the header of the statistics report. Text or "
1762
  "HTML code, clear to reset to default text."
1763
  msgstr ""
1764
 
1765
+ #: includes/functions-check-now.php:3206 includes/functions.php:4900
1766
  msgid "Report footer"
1767
  msgstr ""
1768
 
1769
+ #: includes/functions-check-now.php:3209 includes/functions.php:4903
1770
  msgid ""
1771
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1772
  "to default text."
1773
  msgstr ""
1774
 
1775
+ #: includes/functions-check-now.php:3214 includes/functions.php:4908
1776
  msgid "Public report key"
1777
  msgstr ""
1778
 
1779
+ #: includes/functions-check-now.php:3217 includes/functions.php:4911
1780
  msgid "String to generate unique report IDs. Clear to reset to default value."
1781
  msgstr ""
1782
 
1783
+ #: includes/functions-check-now.php:3249 includes/functions.php:5051
1784
  msgid "Are you sure you want to clear all exceptions for block"
1785
  msgstr ""
1786
 
1787
+ #: includes/functions-check-now.php:3250 includes/functions.php:5052
1788
  msgid "Clear all exceptions for block"
1789
  msgstr ""
1790
 
1791
+ #: includes/functions-check-now.php:3257 includes/functions.php:5065
1792
  msgid "Are you sure you want to clear all exceptions?"
1793
  msgstr ""
1794
 
1795
+ #: includes/functions-check-now.php:3257 includes/functions.php:5065
1796
  msgid "Clear all exceptions for all blocks"
1797
  msgstr ""
1798
 
1799
+ #: includes/functions-check-now.php:3262 includes/functions.php:5072
1800
+ #: settings.php:4027 settings.php:4532
1801
  msgid "Type"
1802
  msgstr ""
1803
 
1804
+ #: includes/functions-check-now.php:3280 includes/functions.php:5090
1805
  msgid "View"
1806
  msgstr ""
1807
 
1808
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1809
+ #: includes/functions-check-now.php:3292 includes/functions.php:5091
1810
+ #: includes/functions.php:5098 includes/functions.php:5102
1811
  #: includes/placeholders.php:351 includes/preview.php:2711 settings.php:1406
1812
  #: settings.php:3782
1813
  msgid "Edit"
1814
  msgstr ""
1815
 
1816
+ #: includes/functions-check-now.php:3311 includes/functions.php:5124
1817
  msgid "Are you sure you want to clear all exceptions for"
1818
  msgstr ""
1819
 
1820
+ #: includes/functions-check-now.php:3312 includes/functions.php:5125
1821
  msgid "Clear all exceptions for"
1822
  msgstr ""
1823
 
1824
+ #: includes/functions-check-now.php:3325 includes/functions.php:5141
1825
  msgid "No exceptions"
1826
  msgstr ""
1827
 
1828
  #. translators: %s: Ad Inserter Pro
1829
+ #: includes/functions-check-now.php:3336 includes/functions.php:5152
1830
  msgid "%s options for network blogs"
1831
  msgstr ""
1832
 
1833
  #. translators: %s: Ad Inserter Pro
1834
+ #: includes/functions-check-now.php:3341 includes/functions.php:5157
1835
  msgid "Enable %s widgets for sub-sites"
1836
  msgstr ""
1837
 
1838
+ #: includes/functions-check-now.php:3341 includes/functions.php:5157
1839
  msgid "Widgets"
1840
  msgstr ""
1841
 
1842
+ #: includes/functions-check-now.php:3346 includes/functions.php:5162
1843
  msgid "Enable PHP code processing for sub-sites"
1844
  msgstr ""
1845
 
1846
+ #: includes/functions-check-now.php:3346 includes/functions.php:5162
1847
  msgid "PHP Processing"
1848
  msgstr ""
1849
 
1850
  #. translators: %s: Ad Inserter Pro
1851
+ #: includes/functions-check-now.php:3351 includes/functions.php:5167
1852
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1853
  msgstr ""
1854
 
1855
+ #: includes/functions-check-now.php:3351 includes/functions.php:5167
1856
  msgid "Post/Page exceptions"
1857
  msgstr ""
1858
 
1859
  #. translators: %s: Ad Inserter Pro
1860
+ #: includes/functions-check-now.php:3356 includes/functions.php:5172
1861
  msgid "Enable %s settings page for sub-sites"
1862
  msgstr ""
1863
 
1864
+ #: includes/functions-check-now.php:3356 includes/functions.php:5172
1865
  msgid "Settings page"
1866
  msgstr ""
1867
 
1868
  #. translators: %s: Ad Inserter Pro
1869
+ #: includes/functions-check-now.php:3361 includes/functions.php:5177
1870
  msgid "Enable %s settings of main site to be used for all blogs"
1871
  msgstr ""
1872
 
1873
+ #: includes/functions-check-now.php:3361 includes/functions.php:5177
1874
  msgid "Main site settings used for all blogs"
1875
  msgstr ""
1876
 
1877
+ #: includes/functions-check-now.php:3372 includes/functions.php:5195
1878
  #: settings.php:2868
1879
  msgid "Ad Blocking Detection"
1880
  msgstr ""
1881
 
1882
+ #: includes/functions-check-now.php:3378 includes/functions.php:5201
1883
  msgid ""
1884
  "Standard method is reliable but should be used only if Advanced method does "
1885
  "not work. Advanced method recreates files used for detection with random "
1888
  msgstr ""
1889
 
1890
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
1891
+ #: includes/functions-check-now.php:4140 includes/functions.php:6169
1892
+ #: includes/functions.php:6277 includes/functions.php:6302
1893
  msgid "AD BLOCKING"
1894
  msgstr ""
1895
 
1896
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
1897
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
1898
+ #: includes/functions.php:6170 includes/functions.php:6213
1899
+ #: includes/functions.php:6271 includes/functions.php:6303
1900
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1901
  msgstr ""
1902
 
1903
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
1904
+ #: includes/functions-check-now.php:4147 includes/functions.php:6173
1905
+ #: includes/functions.php:6270 includes/functions.php:6309
1906
  msgid "NO AD BLOCKING"
1907
  msgstr ""
1908
 
1909
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
1910
+ #: includes/functions.php:6212 includes/functions.php:6219
1911
  msgid "AD BLOCKING REPLACEMENT"
1912
  msgstr ""
1913
 
1914
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
1915
+ #: includes/functions.php:6391 includes/functions.php:6602
1916
  msgid "Pageviews"
1917
  msgstr ""
1918
 
1919
+ #: includes/functions-check-now.php:4366 includes/functions.php:6537
1920
  msgctxt "Version"
1921
  msgid "Unknown"
1922
  msgstr ""
1923
 
1924
+ #: includes/functions-check-now.php:4366 includes/functions.php:6537
1925
  msgctxt "Times"
1926
  msgid "DISPLAYED"
1927
  msgstr ""
1928
 
1929
+ #: includes/functions-check-now.php:4366 includes/functions.php:6537
1930
  msgid "No version"
1931
  msgstr ""
1932
 
1933
+ #: includes/functions-check-now.php:4367 includes/functions.php:6538
1934
  msgctxt "Times"
1935
  msgid "BLOCKED"
1936
  msgstr ""
1937
 
1938
+ #: includes/functions-check-now.php:4429 includes/functions.php:6602
1939
  msgid "Impressions"
1940
  msgstr ""
1941
 
1942
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
1943
+ #: includes/functions-check-now.php:4486 includes/functions.php:6603
1944
+ #: includes/functions.php:6604 includes/functions.php:6786
1945
  msgid "Clicks"
1946
  msgstr ""
1947
 
1948
+ #: includes/functions-check-now.php:4431 includes/functions.php:6604
1949
  msgid "events"
1950
  msgstr ""
1951
 
1952
+ #: includes/functions-check-now.php:4432 includes/functions.php:6605
1953
  msgid "Ad Blocking Share"
1954
  msgstr ""
1955
 
1956
  #. translators: CTR as Click Through Rate
1957
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
1958
+ #: includes/functions.php:6605 includes/functions.php:6792
1959
  msgid "CTR"
1960
  msgstr ""
1961
 
1962
+ #: includes/functions-check-now.php:4574 includes/functions.php:6874
1963
  msgid "pageviews"
1964
  msgid_plural "pageviews"
1965
  msgstr[0] ""
1966
  msgstr[1] ""
1967
 
1968
+ #: includes/functions-check-now.php:4574 includes/functions.php:6874
1969
  msgid "impressions"
1970
  msgid_plural "impressions"
1971
  msgstr[0] ""
1972
  msgstr[1] ""
1973
 
1974
+ #: includes/functions-check-now.php:4578 includes/functions.php:6878
1975
  msgid "event"
1976
  msgid_plural "events"
1977
  msgstr[0] ""
1978
  msgstr[1] ""
1979
 
1980
+ #: includes/functions-check-now.php:4673 includes/functions.php:6973
1981
  msgctxt "Pageviews / Impressions"
1982
  msgid "Average"
1983
  msgstr ""
1984
 
1985
+ #: includes/functions-check-now.php:4694 includes/functions.php:6994
1986
  msgctxt "Ad Blocking / Clicks"
1987
  msgid "Average"
1988
  msgstr ""
1989
 
1990
+ #: includes/functions-check-now.php:4718 includes/functions.php:7018
1991
  msgctxt "Ad Blocking Share / CTR"
1992
  msgid "Average"
1993
  msgstr ""
1994
 
1995
  #. Translators: %s: Ad Inserter Pro
1996
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
1997
+ #: includes/functions-check-now.php:5335 includes/functions.php:7292
1998
+ #: includes/functions.php:7389 includes/functions.php:7929 strings.php:204
1999
  msgid "%s Report"
2000
  msgstr ""
2001
 
2002
+ #: includes/functions-check-now.php:5241 includes/functions.php:7834
2003
  msgid "for last month"
2004
  msgstr ""
2005
 
2006
+ #: includes/functions-check-now.php:5246 includes/functions.php:7839
2007
  msgid "for this month"
2008
  msgstr ""
2009
 
2010
+ #: includes/functions-check-now.php:5251 includes/functions.php:7844
2011
  msgid "for this year"
2012
  msgstr ""
2013
 
2014
+ #: includes/functions-check-now.php:5256 includes/functions.php:7849
2015
  msgid "for the last 15 days"
2016
  msgstr ""
2017
 
2018
+ #: includes/functions-check-now.php:5261 includes/functions.php:7854
2019
  msgid "for the last 30 days"
2020
  msgstr ""
2021
 
2022
+ #: includes/functions-check-now.php:5266 includes/functions.php:7859
2023
  msgid "for the last 90 days"
2024
  msgstr ""
2025
 
2026
+ #: includes/functions-check-now.php:5271 includes/functions.php:7864
2027
  msgid "for the last 180 days"
2028
  msgstr ""
2029
 
2030
+ #: includes/functions-check-now.php:5276 includes/functions.php:7869
2031
  msgid "for the last 365 days"
2032
  msgstr ""
2033
 
2034
+ #: includes/functions.php:542 includes/functions.php:4762
2035
  msgid "Generate CSV report"
2036
  msgstr ""
2037
 
2038
  #. translators: %s: Ad Inserter Pro
2039
+ #: includes/functions.php:615
2040
  msgid "Invalid %s version. Continue?"
2041
  msgstr ""
2042
 
2043
+ #: includes/functions.php:787
2044
+ msgid "Show"
2045
+ msgstr ""
2046
+
2047
+ #: includes/functions.php:799 includes/functions.php:826
2048
+ msgid ""
2049
+ "Trigger value: page scroll in %, page scroll in px or element with selector "
2050
+ "(#id or .class) scrolls in or out of screen"
2051
+ msgstr ""
2052
+
2053
+ #: includes/functions.php:813
2054
+ msgid "Hide"
2055
+ msgstr ""
2056
+
2057
+ #: includes/functions.php:844 includes/preview.php:2653
2058
  msgid "Background"
2059
  msgstr ""
2060
 
2061
  #. translators: %s HTML body tag
2062
+ #: includes/functions.php:851
2063
  msgid "Set %s background"
2064
  msgstr ""
2065
 
2066
+ #: includes/functions.php:864
2067
  msgid "Image to be used for the background"
2068
  msgstr ""
2069
 
2070
+ #: includes/functions.php:869
2071
  msgid "Color"
2072
  msgstr ""
2073
 
2074
+ #: includes/functions.php:870 includes/preview.php:2472
2075
  msgid "Color to be used for the background"
2076
  msgstr ""
2077
 
2078
+ #: includes/functions.php:873 includes/preview.php:2477
2079
  msgid "Image size"
2080
  msgstr ""
2081
 
2082
+ #: includes/functions.php:883
2083
  msgid "Repeat"
2084
  msgstr ""
2085
 
2086
+ #: includes/functions.php:896
2087
  msgid "Select image"
2088
  msgstr ""
2089
 
2090
+ #: includes/functions.php:1130 includes/functions.php:1158 settings.php:1793
2091
  #: settings.php:1816 settings.php:1839 settings.php:1862 settings.php:1885
2092
  #: settings.php:1908 settings.php:1930 settings.php:1952
2093
  msgid "Click to select black or white list"
2094
  msgstr ""
2095
 
2096
  #. translators: %s: Ad Inserter Pro
2097
+ #: includes/functions.php:1770
2098
  msgid "Invalid %s version."
2099
  msgstr ""
2100
 
2101
+ #: includes/functions.php:1771
2102
  msgid "Check license"
2103
  msgstr ""
2104
 
2105
+ #: includes/functions.php:1786
2106
  msgid "License"
2107
  msgstr ""
2108
 
2109
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2110
+ #: includes/functions.php:2131
2111
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2112
  msgstr ""
2113
 
2114
  #. Translators: %s: HTML tags
2115
+ #: includes/functions.php:2184
2116
  msgid ""
2117
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2118
  "account %s and create license key."
2119
  msgstr ""
2120
 
2121
+ #: includes/functions.php:2946
2122
  msgid "Start date"
2123
  msgstr ""
2124
 
2125
+ #: includes/functions.php:2946
2126
  msgid "Enter date in format yyyy-mm-dd"
2127
  msgstr ""
2128
 
2129
+ #: includes/functions.php:2946
2130
  msgid "empty means every day as defined by hours and days in week"
2131
  msgstr ""
2132
 
2133
+ #: includes/functions.php:2947
2134
  msgid "Start time"
2135
  msgstr ""
2136
 
2137
+ #: includes/functions.php:2947
2138
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2139
  msgstr ""
2140
 
2141
+ #: includes/functions.php:2949
2142
  msgid "End date"
2143
  msgstr ""
2144
 
2145
+ #: includes/functions.php:2950
2146
  msgid "End time"
2147
  msgstr ""
2148
 
2149
+ #: includes/functions.php:2953
2150
  msgid "Select wanted days in week"
2151
  msgstr ""
2152
 
2153
+ #: includes/functions.php:3293
2154
+ msgid "Fallback"
2155
+ msgstr ""
2156
+
2157
+ #: includes/functions.php:3294
2158
+ msgid "Block to be used when a limit is reached"
2159
+ msgstr ""
2160
+
2161
+ #: includes/functions.php:3318
2162
  msgid "Ad blocking detection is disabled"
2163
  msgstr ""
2164
 
2165
+ #: includes/functions.php:3468
2166
  msgid "Protected"
2167
  msgstr ""
2168
 
2169
+ #: includes/functions.php:3471
2170
  msgid "Manual loading"
2171
  msgstr ""
2172
 
2173
+ #: includes/functions.php:3562
2174
  msgid "IP address blocked"
2175
  msgid_plural "IP addresses blocked"
2176
  msgstr[0] ""
2177
  msgstr[1] ""
2178
 
2179
+ #: includes/functions.php:3565 includes/functions.php:3614
2180
  msgid "No IP address blocked"
2181
  msgstr ""
2182
 
2183
+ #: includes/functions.php:3627
2184
  msgid "Blocked IP address"
2185
  msgstr ""
2186
 
2187
+ #: includes/functions.php:3627
2188
  msgid "Country"
2189
  msgstr ""
2190
 
2191
+ #: includes/functions.php:3627
2192
  msgid "Time to expiration"
2193
  msgstr ""
2194
 
2195
+ #: includes/functions.php:3629 strings.php:226
2196
  msgid "Delete"
2197
  msgstr ""
2198
 
2199
+ #: includes/functions.php:3644
2200
  msgid "Delete IP address"
2201
  msgstr ""
2202
 
2203
+ #: includes/functions.php:4201
2204
  msgid "CONNECTED"
2205
  msgstr ""
2206
 
2207
+ #: includes/functions.php:4202
2208
  msgid "Disconnect website"
2209
  msgstr ""
2210
 
2211
+ #: includes/functions.php:4218
2212
  msgid "MANAGED BY"
2213
  msgstr ""
2214
 
2215
+ #: includes/functions.php:4239
2216
  msgid "Remote managenent"
2217
  msgstr ""
2218
 
2219
+ #: includes/functions.php:4243
2220
  msgid "Allow to connect and manage plugin settings"
2221
  msgstr ""
2222
 
2223
+ #: includes/functions.php:4245
2224
  msgid "String to allow plugin management. Clear to reset to default value."
2225
  msgstr ""
2226
 
2227
+ #: includes/functions.php:4253
2228
  msgid "Check remote IP address"
2229
  msgstr ""
2230
 
2231
+ #: includes/functions.php:4257
2232
  msgid "Check IP address of remote management website"
2233
  msgstr ""
2234
 
2235
+ #: includes/functions.php:4259
2236
  msgid "Allowed IP addresses of remote management websites"
2237
  msgstr ""
2238
 
2239
  #. Translators: %s: Ad Inserter Pro
2240
+ #: includes/functions.php:4282
2241
  msgid "Manage %s on other websites"
2242
  msgstr ""
2243
 
2244
+ #: includes/functions.php:4297
2245
  msgid "Add website"
2246
  msgstr ""
2247
 
2248
+ #: includes/functions.php:4301
2249
  msgid "Rearrange website order"
2250
  msgstr ""
2251
 
2252
+ #: includes/functions.php:4305
2253
  msgid "Cancel changes"
2254
  msgstr ""
2255
 
2256
+ #: includes/functions.php:4309
2257
  msgid "Save changes"
2258
  msgstr ""
2259
 
2260
+ #: includes/functions.php:4411 includes/functions.php:4414
2261
+ #: includes/functions.php:4417 includes/functions.php:4422
2262
  msgid "Invalid data received from"
2263
  msgstr ""
2264
 
2265
+ #: includes/functions.php:4421 includes/functions.php:4425
2266
  msgid "Error connecting to"
2267
  msgstr ""
2268
 
2269
+ #: includes/functions.php:4421
2270
  msgid "No data received"
2271
  msgstr ""
2272
 
2273
+ #: includes/functions.php:4466
2274
  msgid "Error saving websites"
2275
  msgstr ""
2276
 
2277
+ #: includes/functions.php:4506
2278
  msgid "Can't connect to itself"
2279
  msgstr ""
2280
 
2281
+ #: includes/functions.php:4557
2282
  msgid "Connect website"
2283
  msgstr ""
2284
 
2285
+ #: includes/functions.php:4561
2286
  msgid "Delete website"
2287
  msgstr ""
2288
 
2289
+ #: includes/functions.php:4577
2290
  msgid "Key"
2291
  msgstr ""
2292
 
2293
+ #: includes/functions.php:4595
2294
  msgid "Address"
2295
  msgstr ""
2296
 
2297
+ #: includes/functions.php:4608
2298
  msgid "No website configured"
2299
  msgstr ""
2300
 
2301
+ #: includes/functions.php:4609
2302
  msgid "No website matches search keywords"
2303
  msgstr ""
2304
 
2305
  #. Translators: %s HTML tags
2306
+ #: includes/functions.php:4638
2307
  msgid "Create and manage %s MaxMind license key %s"
2308
  msgstr ""
2309
 
2310
+ #: includes/functions.php:4674
2311
  msgid "MaxMind license key"
2312
  msgstr ""
2313
 
2314
+ #: includes/functions.php:4677
2315
  msgid "Enter license key obtained from MaxMind"
2316
  msgstr ""
2317
 
2318
+ #: includes/functions.php:4878
2319
  msgid ""
2320
  "Image or logo to be displayed in the header of the statistics report. "
2321
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2322
  "reset to default image."
2323
  msgstr ""
2324
 
2325
+ #: includes/functions.php:4926
2326
  msgid "Event category"
2327
  msgstr ""
2328
 
2329
+ #: includes/functions.php:4929
2330
  msgid ""
2331
  "Category name used for external tracking events. You can use tags to get the "
2332
  "event, the number or the name of the block that caused the event."
2333
  msgstr ""
2334
 
2335
+ #: includes/functions.php:4934
2336
  msgid "Event action"
2337
  msgstr ""
2338
 
2339
+ #: includes/functions.php:4937
2340
  msgid ""
2341
  "Action name used for external tracking events. You can use tags to get the "
2342
  "event, the number or the name of the block that caused the event."
2343
  msgstr ""
2344
 
2345
+ #: includes/functions.php:4942
2346
  msgid "Event label"
2347
  msgstr ""
2348
 
2349
+ #: includes/functions.php:4945
2350
  msgid ""
2351
  "Label name used for external tracking events. You can use tags to get the "
2352
  "event, the number or the name of the block that caused the event."
2353
  msgstr ""
2354
 
2355
+ #: includes/functions.php:4978
2356
  msgid "Global visitor limits"
2357
  msgstr ""
2358
 
2359
+ #: includes/functions.php:5001
2360
  msgid "Block IP address"
2361
  msgstr ""
2362
 
2363
+ #: includes/functions.php:5006
2364
  msgid "Block visitor's IP address when protection is activated"
2365
  msgstr ""
2366
 
2367
+ #: includes/functions.php:5008
2368
  msgid "Click to show blocked IP addresses"
2369
  msgstr ""
2370
 
2371
  #. translators: %s: Ad Inserter Pro
2372
+ #: includes/functions.php:5182
2373
  msgid "Show link to %s settings page for each site on the Sites page"
2374
  msgstr ""
2375
 
2376
  #. translators: %s: Ad Inserter Pro
2377
+ #: includes/functions.php:5182
2378
  msgid "Show link to %s on the Sites page"
2379
  msgstr ""
2380
 
2381
+ #: includes/functions.php:5224 settings.php:3166
2382
  msgid ""
2383
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2384
  "tags, processing) by url parameters for non-logged in users. Enable this "
2387
  "administrators debugging is always enabled."
2388
  msgstr ""
2389
 
2390
+ #: includes/functions.php:5226 settings.php:3168
2391
  msgid "Remote debugging"
2392
  msgstr ""
2393
 
2394
+ #: includes/functions.php:6685
2395
  msgid "Date"
2396
  msgstr ""
2397
 
2398
+ #: includes/functions.php:7153 includes/functions.php:7164
2399
  msgid "File %s missing."
2400
  msgstr ""
2401
 
2423
  msgid "Placeholder"
2424
  msgstr ""
2425
 
2426
+ #: includes/placeholders.php:361 settings.php:966 settings.php:4533
2427
  msgid "Size"
2428
  msgstr ""
2429
 
2807
  "fields empty for equal option shares."
2808
  msgstr ""
2809
 
2810
+ #: settings.php:309 settings.php:2107 settings.php:4446
2811
  msgid "Scheduling"
2812
  msgstr ""
2813
 
2861
  msgid "Clear block"
2862
  msgstr ""
2863
 
2864
+ #: settings.php:798 settings.php:4399
2865
  msgid "Copy block"
2866
  msgstr ""
2867
 
3530
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3531
  msgstr ""
3532
 
3533
+ #: settings.php:1986 settings.php:4456
3534
  msgid "Shortcode"
3535
  msgstr ""
3536
 
4315
  "Position not available because output buffering (tab [*]) is not enabled"
4316
  msgstr ""
4317
 
4318
+ #: settings.php:3641 strings.php:251
4319
  msgid "Position not checked yet"
4320
  msgstr ""
4321
 
4323
  msgid "Toggle active/all blocks"
4324
  msgstr ""
4325
 
4326
+ #: settings.php:3682 strings.php:238
4327
  msgid "Rearrange block order"
4328
  msgstr ""
4329
 
4343
  msgid "Clear authorization to access AdSense account"
4344
  msgstr ""
4345
 
4346
+ #: settings.php:3726 settings.php:4619 settings.php:4686 strings.php:246
4347
  msgid "Google AdSense Homepage"
4348
  msgstr ""
4349
 
4364
  msgid "Reload ads.txt file"
4365
  msgstr ""
4366
 
4367
+ #: settings.php:3782 settings.php:4751
4368
  msgid "Save"
4369
  msgstr ""
4370
 
4373
  msgid "ads.txt file: %s virtual ads.txt file"
4374
  msgstr ""
4375
 
4376
+ #: settings.php:3967 settings.php:3987 strings.php:225
4377
  msgid "Warning"
4378
  msgstr ""
4379
 
4431
  msgid "Account ID found in block but not present in ads.txt"
4432
  msgstr ""
4433
 
4434
+ #: settings.php:4396
4435
  msgid "Preview block"
4436
  msgstr ""
4437
 
4438
+ #: settings.php:4403
4439
  msgid "Pause block"
4440
  msgstr ""
4441
 
4442
+ #: settings.php:4442
4443
  msgid "Automatic insertion"
4444
  msgstr ""
4445
 
4446
  #. translators: %s HTML tags
4447
+ #: settings.php:4443 settings.php:5785
4448
  msgid "PHP code processing"
4449
  msgstr ""
4450
 
4451
+ #: settings.php:4445
4452
  msgid "Device detection"
4453
  msgstr ""
4454
 
4455
+ #: settings.php:4468
4456
  msgid "No active block"
4457
  msgstr ""
4458
 
4459
+ #: settings.php:4469
4460
  msgid "No block matches search keywords"
4461
  msgstr ""
4462
 
4463
+ #: settings.php:4529
4464
  msgid "Ad unit"
4465
  msgstr ""
4466
 
4467
+ #: settings.php:4531
4468
  msgid "Slot ID"
4469
  msgstr ""
4470
 
4471
+ #: settings.php:4558
4472
  msgid "Copy AdSense code"
4473
  msgstr ""
4474
 
4475
+ #: settings.php:4561
4476
  msgid "Preview AdSense ad"
4477
  msgstr ""
4478
 
4479
+ #: settings.php:4564
4480
  msgid "Get AdSense code"
4481
  msgstr ""
4482
 
4483
  #. translators: %s: HTML tags
4484
+ #: settings.php:4596
4485
  msgid ""
4486
  "Please %s clear authorization %s with the button %s above and once again "
4487
  "authorize access to your AdSense account."
4488
  msgstr ""
4489
 
4490
+ #: settings.php:4615
4491
  msgid "AdSense Integration"
4492
  msgstr ""
4493
 
4494
+ #: settings.php:4617
4495
  msgid "AdSense Integration - Step 2"
4496
  msgstr ""
4497
 
4498
  #. translators: %s: HTML tags
4499
+ #: settings.php:4623
4500
  msgid ""
4501
  "Authorize %s to access your AdSense account. Click on the %s Get "
4502
  "Authorization Code %s button to open a new window where you can allow "
4505
  msgstr ""
4506
 
4507
  #. translators: %s: HTML tags
4508
+ #: settings.php:4630
4509
  msgid ""
4510
  "If you get error, can't access ad units or would like to use own Google API "
4511
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4513
  msgstr ""
4514
 
4515
  #. translators: %s: HTML tags
4516
+ #: settings.php:4632
4517
  msgid ""
4518
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4519
  "Authorization Code %s button to open a new window where you can allow "
4522
  msgstr ""
4523
 
4524
  #. translators: %s: HTML tags
4525
+ #: settings.php:4639
4526
  msgid ""
4527
  "If you get error %s invalid client %s click on the button %s Clear and "
4528
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4529
  msgstr ""
4530
 
4531
+ #: settings.php:4650
4532
  msgid "Get Authorization Code"
4533
  msgstr ""
4534
 
4535
+ #: settings.php:4653
4536
  msgid "Enter Authorization Code"
4537
  msgstr ""
4538
 
4539
+ #: settings.php:4663
4540
  msgid "Use own API IDs"
4541
  msgstr ""
4542
 
4543
+ #: settings.php:4665
4544
  msgid "Clear and return to Step 1"
4545
  msgstr ""
4546
 
4547
+ #: settings.php:4669
4548
  msgid "Authorize"
4549
  msgstr ""
4550
 
4551
+ #: settings.php:4685
4552
  msgid "AdSense Integration - Step 1"
4553
  msgstr ""
4554
 
4555
  #. translators: %s: Ad Inserter
4556
+ #: settings.php:4689
4557
  msgid ""
4558
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4559
  "To do this you need to authorize %s to access your AdSense account. The "
4562
  msgstr ""
4563
 
4564
  #. translators: %s: HTML tags
4565
+ #: settings.php:4698
4566
  msgid "Go to %s Google APIs and Services console %s"
4567
  msgstr ""
4568
 
4569
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4570
+ #: settings.php:4699
4571
  msgid ""
4572
  "Create %1$s project - if the project and IDs are already created click on "
4573
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
4574
  msgstr ""
4575
 
4576
  #. translators: %s: HTML tags
4577
+ #: settings.php:4700
4578
  msgid ""
4579
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4580
  "create a new project"
4581
  msgstr ""
4582
 
4583
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4584
+ #: settings.php:4701
4585
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4586
  msgstr ""
4587
 
4588
  #. translators: %s: HTML tags
4589
+ #: settings.php:4702
4590
  msgid ""
4591
  "Click on project selection, wait for the project to be created and then and "
4592
  "select %s as the current project"
4593
  msgstr ""
4594
 
4595
  #. translators: %s: HTML tags
4596
+ #: settings.php:4703
4597
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4598
  msgstr ""
4599
 
4600
  #. translators: %s: HTML tags
4601
+ #: settings.php:4704
4602
  msgid "Search for adsense and enable %s"
4603
  msgstr ""
4604
 
4605
  #. translators: %s: HTML tags
4606
+ #: settings.php:4705
4607
  msgid "Click on %s CREATE CREDENTIALS %s"
4608
  msgstr ""
4609
 
4610
  #. translators: %s: HTML tags
4611
+ #: settings.php:4706
4612
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
4613
  msgstr ""
4614
 
4615
  #. translators: %s: HTML tags
4616
+ #: settings.php:4707
4617
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4618
  msgstr ""
4619
 
4620
  #. translators: %s: HTML tags
4621
+ #: settings.php:4708
4622
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4623
  msgstr ""
4624
 
4625
  #. translators: %s: HTML tags
4626
+ #: settings.php:4709
4627
  msgid "Click on %s What credentials do I need? %s"
4628
  msgstr ""
4629
 
4630
  #. translators: %s: HTML tags
4631
+ #: settings.php:4710
4632
  msgid ""
4633
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
4634
  "Consent Screen %s"
4635
  msgstr ""
4636
 
4637
  #. translators: %s: HTML tags
4638
+ #: settings.php:4711
4639
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
4640
  msgstr ""
4641
 
4642
  #. translators: %s: HTML tags
4643
+ #: settings.php:4712
4644
  msgid ""
4645
  "For %s App name %s enter %s and for %s User support email %s select your "
4646
  "Google account email address"
4647
  msgstr ""
4648
 
4649
  #. translators: %s: HTML tags
4650
+ #: settings.php:4713
4651
  msgid ""
4652
  "For %s Developer contact information %s enter your email address and click "
4653
  "on %s SAVE AND CONTINUE %s"
4654
  msgstr ""
4655
 
4656
  #. translators: %s: HTML tags
4657
+ #: settings.php:4714
4658
  msgid ""
4659
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
4660
  "add your Google account email address"
4661
  msgstr ""
4662
 
4663
  #. translators: %s: HTML tags
4664
+ #: settings.php:4715
4665
  msgid ""
4666
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
4667
  msgstr ""
4668
 
4669
  #. translators: %s: HTML tags
4670
+ #: settings.php:4716
4671
  msgid ""
4672
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4673
  "Ad Inserter client %s and then click on %s REFRESH %s"
4674
  msgstr ""
4675
 
4676
  #. translators: %s: HTML tags
4677
+ #: settings.php:4717
4678
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
4679
  msgstr ""
4680
 
4681
  #. translators: %s: HTML tags
4682
+ #: settings.php:4718
4683
  msgid ""
4684
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4685
  "secret %s"
4686
  msgstr ""
4687
 
4688
+ #: settings.php:4719
4689
  msgid "Copy them to the appropriate fields below"
4690
  msgstr ""
4691
 
4692
+ #: settings.php:4725
4693
  msgid "Client ID"
4694
  msgstr ""
4695
 
4696
+ #: settings.php:4728
4697
  msgid "Enter Client ID"
4698
  msgstr ""
4699
 
4700
+ #: settings.php:4733
4701
  msgid "Client secret"
4702
  msgstr ""
4703
 
4704
+ #: settings.php:4736
4705
  msgid "Enter Client secret"
4706
  msgstr ""
4707
 
4708
+ #: settings.php:4746
4709
  msgid "Use default API IDs"
4710
  msgstr ""
4711
 
4712
+ #: settings.php:4847
4713
  msgid "All posts"
4714
  msgstr ""
4715
 
4716
+ #: settings.php:4848
4717
  msgid "All static pages"
4718
  msgstr ""
4719
 
4720
+ #: settings.php:5413 settings.php:5426 settings.php:5440 settings.php:5454
4721
+ #: settings.php:5468
4722
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4723
  msgstr ""
4724
 
4725
+ #: settings.php:5418 settings.php:5431 settings.php:5445 settings.php:5459
4726
+ #: settings.php:5473 settings.php:5668 settings.php:5671 settings.php:5673
4727
+ #: settings.php:5682 settings.php:5691 settings.php:5696 settings.php:5704
4728
+ #: settings.php:5705 settings.php:5708 settings.php:5711 settings.php:5715
4729
+ #: settings.php:5725 settings.php:5729
4730
  msgid "Looking for AdSense alternative?"
4731
  msgstr ""
4732
 
4733
+ #: settings.php:5485
4734
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4735
  msgstr ""
4736
 
4737
+ #: settings.php:5490 settings.php:5665 settings.php:5686 settings.php:5714
4738
+ #: settings.php:5733
4739
  msgid "Use Infolinks ads with Adsense to earn more"
4740
  msgstr ""
4741
 
4742
+ #: settings.php:5511 settings.php:5561
4743
  msgid "Support plugin development"
4744
  msgstr ""
4745
 
4746
+ #: settings.php:5516 settings.php:5562
4747
  msgid ""
4748
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4749
  "reviewing the plugin on WordPres"
4750
  msgstr ""
4751
 
4752
+ #: settings.php:5516
4753
  msgctxt "Review Ad Inserter"
4754
  msgid "Review"
4755
  msgstr ""
4756
 
4757
+ #: settings.php:5521
4758
  msgid ""
4759
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4760
  "rating the plugin on WordPres"
4761
  msgstr ""
4762
 
4763
+ #: settings.php:5521
4764
  msgctxt "Rate Ad Inserter"
4765
  msgid "Rate"
4766
  msgstr ""
4767
 
4768
+ #: settings.php:5526
4769
  msgid ""
4770
  "Support free Ad Inserter development. If you are making money with Ad "
4771
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4772
  "you!"
4773
  msgstr ""
4774
 
4775
+ #: settings.php:5526
4776
  msgid "Donate"
4777
  msgstr ""
4778
 
4779
+ #: settings.php:5533 settings.php:5577
4780
  msgid "Average rating of the plugin - Thank you!"
4781
  msgstr ""
4782
 
4783
  #. translators: %s: Ad Inserter, HTML tags
4784
+ #: settings.php:5544
4785
  msgid ""
4786
  "You've been using %s for a while now, and I hope you're happy with it. "
4787
  "Positive %s reviews %s are a great way to show your appreciation for my "
4790
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4791
  msgstr ""
4792
 
4793
+ #: settings.php:5562
4794
  msgid "Review"
4795
  msgstr ""
4796
 
4797
+ #: settings.php:5566
4798
  msgid "Ad Inserter on Twitter"
4799
  msgstr ""
4800
 
4801
+ #: settings.php:5567
4802
  msgid "Ad Inserter on Facebook"
4803
  msgstr ""
4804
 
4805
+ #: settings.php:5570
4806
  msgid "Follow Ad Inserter"
4807
  msgstr ""
4808
 
4809
  #. translators: %s: HTML tags
4810
+ #: settings.php:5597
4811
  msgid ""
4812
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4813
  "and %s Common Settings %s pages"
4814
  msgstr ""
4815
 
4816
  #. translators: %s: HTML tags
4817
+ #: settings.php:5609
4818
  msgid ""
4819
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4820
  "Auto ads, %s %s AMP ads %s"
4821
  msgstr ""
4822
 
4823
  #. translators: %s: HTML tags
4824
+ #: settings.php:5626
4825
  msgid ""
4826
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4827
  "purchase you refer to us"
4828
  msgstr ""
4829
 
4830
  #. translators: %s: HTML tags
4831
+ #: settings.php:5633
4832
  msgid ""
4833
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4834
  "diagnose and fix the problem."
4835
  msgstr ""
4836
 
4837
  #. translators: %s: HTML tags
4838
+ #: settings.php:5637
4839
  msgid ""
4840
  "If you need any kind of help or support, please do not hesitate to open a "
4841
  "thread on the %s support forum. %s"
4842
  msgstr ""
4843
 
4844
+ #: settings.php:5664 settings.php:5734 settings.php:5738
4845
  msgid "Code preview with visual CSS editor"
4846
  msgstr ""
4847
 
4848
+ #: settings.php:5667 settings.php:5695
4849
  msgid "Ad blocking detection and content protection"
4850
  msgstr ""
4851
 
4852
+ #: settings.php:5670 settings.php:5723
4853
  msgid "A/B testing - Track ad impressions and clicks"
4854
  msgstr ""
4855
 
4856
+ #: settings.php:5687
4857
  msgid "Insert ads on AMP pages"
4858
  msgstr ""
4859
 
4860
+ #: settings.php:5746
4861
  msgid "Looking for Pro Ad Management plugin?"
4862
  msgstr ""
4863
 
4864
+ #: settings.php:5747
4865
  msgid "To Optimally Monetize your WordPress website?"
4866
  msgstr ""
4867
 
4868
  #. Translators: %s: price of Ad Inserter Pro
4869
+ #: settings.php:5748
4870
  msgid "Different license types starting from %s"
4871
  msgstr ""
4872
 
4873
  #. translators: %s HTML tags
4874
+ #: settings.php:5751
4875
  msgid "%s AdSense Integration %s"
4876
  msgstr ""
4877
 
4878
  #. translators: %s HTML tags
4879
+ #: settings.php:5752
4880
  msgid "Syntax highlighting %s editor %s"
4881
  msgstr ""
4882
 
4883
  #. translators: %s HTML tags
4884
+ #: settings.php:5753
4885
  msgid "%s Code preview %s with visual CSS editor"
4886
  msgstr ""
4887
 
4888
  #. translators: %s HTML tags
4889
+ #: settings.php:5754
4890
  msgid "Simple user interface - all settings on a single page"
4891
  msgstr ""
4892
 
4893
  #. translators: %s HTML tags
4894
+ #: settings.php:5755
4895
  msgid ""
4896
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4897
  "image / excerpt"
4898
  msgstr ""
4899
 
4900
  #. translators: %s HTML tags
4901
+ #: settings.php:5756
4902
  msgid "%s Automatic insertion %s between posts on blog pages"
4903
  msgstr ""
4904
 
4905
  #. translators: %s HTML tags
4906
+ #: settings.php:5757
4907
  msgid "%s Automatic insertion %s before, between and after comments"
4908
  msgstr ""
4909
 
4910
  #. translators: %s HTML tags
4911
+ #: settings.php:5758
4912
  msgid "%s Automatic insertion %s after %s or before %s tag"
4913
  msgstr ""
4914
 
4915
  #. translators: %s HTML tags
4916
+ #: settings.php:5759
4917
  msgid "Automatic insertion at %s custom hook positions %s"
4918
  msgstr ""
4919
 
4920
  #. translators: %s HTML tags
4921
+ #: settings.php:5760
4922
  msgid ""
4923
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4924
  "selectors)"
4925
  msgstr ""
4926
 
4927
  #. translators: %s HTML tags
4928
+ #: settings.php:5761
4929
  msgid "%s Insertion exceptions %s for individual posts and pages"
4930
  msgstr ""
4931
 
4932
  #. translators: %s HTML tags
4933
+ #: settings.php:5762
4934
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4935
  msgstr ""
4936
 
4937
  #. translators: %s HTML tags
4938
+ #: settings.php:5763
4939
  msgid ""
4940
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4941
  "scrolls)"
4942
  msgstr ""
4943
 
4944
  #. translators: %s HTML tags
4945
+ #: settings.php:5764
4946
  msgid "%s Background ads %s with one or left and right background images"
4947
  msgstr ""
4948
 
4949
  #. translators: %s HTML tags
4950
+ #: settings.php:5765
4951
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4952
  msgstr ""
4953
 
4954
  #. translators: %s HTML tags
4955
+ #: settings.php:5766
4956
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4957
  msgstr ""
4958
 
4959
  #. translators: %s HTML tags
4960
+ #: settings.php:5767
4961
  msgid ""
4962
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4963
  "visible)"
4964
  msgstr ""
4965
 
4966
  #. translators: %s HTML tags
4967
+ #: settings.php:5768
4968
  msgid ""
4969
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4970
  msgstr ""
4971
 
4972
  #. translators: %s HTML tags
4973
+ #: settings.php:5769
4974
  msgid "Block %s alignment and style %s customizations"
4975
  msgstr ""
4976
 
4977
  #. translators: %s HTML tags
4978
+ #: settings.php:5770
4979
  msgid ""
4980
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4981
  "TOS)"
4982
  msgstr ""
4983
 
4984
  #. translators: %s HTML tags
4985
+ #: settings.php:5771
4986
  msgid ""
4987
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4988
  "feeds"
4989
  msgstr ""
4990
 
4991
  #. translators: %s HTML tags
4992
+ #: settings.php:5772
4993
  msgid "%s Ad rotation %s (works also with caching)"
4994
  msgstr ""
4995
 
4996
  #. translators: %s HTML tags
4997
+ #: settings.php:5773
4998
  msgid "Create, edit and check %s ads.txt %s file"
4999
  msgstr ""
5000
 
5001
  #. translators: %s HTML tags
5002
+ #: settings.php:5774
5003
  msgid ""
5004
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5005
  "AdSense)"
5006
  msgstr ""
5007
 
5008
  #. translators: %s HTML tags
5009
+ #: settings.php:5775
5010
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5011
  msgstr ""
5012
 
5013
  #. translators: %s HTML tags
5014
+ #: settings.php:5776
5015
  msgid "%s Public web reports %s for clients, export to PDF"
5016
  msgstr ""
5017
 
5018
  #. translators: %s HTML tags
5019
+ #: settings.php:5777
5020
  msgid "Support for %s A/B testing %s"
5021
  msgstr ""
5022
 
5023
  #. translators: %s HTML tags
5024
+ #: settings.php:5778
5025
  msgid "Frequency capping - %s limit impressions or clicks %s"
5026
  msgstr ""
5027
 
5028
  #. translators: %s HTML tags
5029
+ #: settings.php:5779
5030
  msgid "Click fraud %s protection %s"
5031
  msgstr ""
5032
 
5033
  #. translators: %s HTML tags
5034
+ #: settings.php:5780
5035
  msgid "Support for %s GDPR consent cookie checks %s"
5036
  msgstr ""
5037
 
5038
  #. translators: %s HTML tags
5039
+ #: settings.php:5781
5040
  msgid "Support for %s lazy loading %s"
5041
  msgstr ""
5042
 
5043
  #. translators: %s HTML tags
5044
+ #: settings.php:5782
5045
  msgid "Support for ads on %s AMP pages %s"
5046
  msgstr ""
5047
 
5048
  #. translators: %s HTML tags
5049
+ #: settings.php:5783
5050
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5051
  msgstr ""
5052
 
5053
  #. translators: %s HTML tags
5054
+ #: settings.php:5784
5055
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5056
  msgstr ""
5057
 
5058
  #. translators: %s HTML tags
5059
+ #: settings.php:5786
5060
  msgid "%s Banner %s code generator"
5061
  msgstr ""
5062
 
5063
  #. translators: %s HTML tags
5064
+ #: settings.php:5787
5065
  msgid "Support for %s header and footer %s code"
5066
  msgstr ""
5067
 
5068
  #. translators: %s HTML tags
5069
+ #: settings.php:5788
5070
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5071
  msgstr ""
5072
 
5073
  #. translators: %s HTML tags
5074
+ #: settings.php:5789
5075
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5076
  msgstr ""
5077
 
5078
  #. translators: %s HTML tags
5079
+ #: settings.php:5790
5080
  msgid "Client-side %s mobile device detection %s (works with caching)"
5081
  msgstr ""
5082
 
5083
  #. translators: %s HTML tags
5084
+ #: settings.php:5791
5085
  msgid ""
5086
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5087
  "protection"
5088
  msgstr ""
5089
 
5090
  #. translators: %s HTML tags
5091
+ #: settings.php:5792
5092
  msgid "%s Ad blocking statistics %s"
5093
  msgstr ""
5094
 
5095
  #. translators: %s HTML tags
5096
+ #: settings.php:5793
5097
  msgid ""
5098
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5099
  "referrers, operating systems, browsers"
5100
  msgstr ""
5101
 
5102
  #. translators: %s HTML tags
5103
+ #: settings.php:5794
5104
  msgid ""
5105
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5106
  msgstr ""
5107
 
5108
  #. translators: %s HTML tags
5109
+ #: settings.php:5795
5110
  msgid "%s Multisite options %s to limit settings on the sites"
5111
  msgstr ""
5112
 
5113
  #. translators: %s HTML tags
5114
+ #: settings.php:5796
5115
  msgid "%s Import/Export %s block or plugin settings"
5116
  msgstr ""
5117
 
5118
  #. translators: %s HTML tags
5119
+ #: settings.php:5797
5120
  msgid "%s Insertion scheduling %s with fallback option"
5121
  msgstr ""
5122
 
5123
  #. translators: %s HTML tags
5124
+ #: settings.php:5798
5125
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5126
  msgstr ""
5127
 
5128
  #. translators: %s HTML tags
5129
+ #: settings.php:5799
5130
  msgid "Simple troubleshooting with many %s debugging functions %s"
5131
  msgstr ""
5132
 
5133
  #. translators: %s HTML tags
5134
+ #: settings.php:5800
5135
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5136
  msgstr ""
5137
 
5138
  #. translators: %s HTML tags
5139
+ #: settings.php:5801
5140
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5141
  msgstr ""
5142
 
5143
  #. translators: %s HTML tags
5144
+ #: settings.php:5802
5145
  msgid ""
5146
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5147
  msgstr ""
5148
 
5149
  #. translators: %s HTML tags
5150
+ #: settings.php:5803
5151
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5152
  msgstr ""
5153
 
5154
  #. translators: %s HTML tags
5155
+ #: settings.php:5804
5156
  msgid "No ads on the settings page"
5157
  msgstr ""
5158
 
5159
  #. translators: %s HTML tags
5160
+ #: settings.php:5805
5161
  msgid "Premium support"
5162
  msgstr ""
5163
 
5164
  #. translators: %s HTML tags
5165
+ #: settings.php:5808
5166
  msgid ""
5167
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5168
  "website with many advertising features to automatically insert adverts on "
5177
  msgstr ""
5178
 
5179
  #. translators: %s HTML tags
5180
+ #: settings.php:5821
5181
  msgid "Looking for %s Pro Ad Management plugin? %s"
5182
  msgstr ""
5183
 
5184
  #. translators: %s HTML tags
5185
+ #: settings.php:5826
5186
  msgid "Ads between posts"
5187
  msgstr ""
5188
 
5189
  #. translators: %s HTML tags
5190
+ #: settings.php:5827
5191
  msgid "Ads between comments"
5192
  msgstr ""
5193
 
5194
  #. translators: %s HTML tags
5195
+ #: settings.php:5828
5196
  msgid "Support via email"
5197
  msgstr ""
5198
 
5199
  #. translators: %s HTML tags
5200
+ #: settings.php:5834
5201
  msgid "%s Sticky positions %s"
5202
  msgstr ""
5203
 
5204
  #. translators: %s HTML tags
5205
+ #: settings.php:5835
5206
  msgid "%s Limit insertions %s"
5207
  msgstr ""
5208
 
5209
  #. translators: %s HTML tags
5210
+ #: settings.php:5836
5211
  msgid "%s Clearance %s options"
5212
  msgstr ""
5213
 
5214
  #. translators: %s HTML tags
5215
+ #: settings.php:5842
5216
  msgid "Ad rotation"
5217
  msgstr ""
5218
 
5219
  #. translators: %s HTML tags
5220
+ #: settings.php:5843
5221
  msgid "%s A/B testing %s"
5222
  msgstr ""
5223
 
5224
  #. translators: %s HTML tags
5225
+ #: settings.php:5844
5226
  msgid "%s Ad tracking %s"
5227
  msgstr ""
5228
 
5229
  #. translators: %s HTML tags
5230
+ #: settings.php:5850
5231
  msgid "Support for %s AMP pages %s"
5232
  msgstr ""
5233
 
5234
  #. translators: %s HTML tags
5235
+ #: settings.php:5851
5236
  msgid "%s Ad blocking detection %s"
5237
  msgstr ""
5238
 
5239
  #. translators: %s HTML tags
5240
+ #: settings.php:5852
5241
  msgid "%s Mobile device detection %s"
5242
  msgstr ""
5243
 
5244
  #. translators: %s HTML tags
5245
+ #: settings.php:5859
5246
  msgid "64 code blocks"
5247
  msgstr ""
5248
 
5249
  #. translators: %s HTML tags
5250
+ #: settings.php:5860
5251
  msgid "%s GEO targeting %s"
5252
  msgstr ""
5253
 
5254
  #. translators: %s HTML tags
5255
+ #: settings.php:5861
5256
  msgid "%s Scheduling %s"
5257
  msgstr ""
5258
 
5696
  msgstr ""
5697
 
5698
  #: strings.php:136
5699
+ msgid "Element scrolls in"
5700
+ msgstr ""
5701
+
5702
+ #: strings.php:137
5703
+ msgid "Element scrolls out"
5704
  msgstr ""
5705
 
5706
+ #: strings.php:139
5707
  msgctxt "image repeat"
5708
  msgid "Default"
5709
  msgstr ""
5710
 
5711
+ #: strings.php:140
5712
  msgid "No"
5713
  msgstr ""
5714
 
5715
+ #: strings.php:141
5716
  msgid "Yes"
5717
  msgstr ""
5718
 
5719
+ #: strings.php:142
5720
  msgid "Horizontally"
5721
  msgstr ""
5722
 
5723
+ #: strings.php:143
5724
  msgid "Vertically"
5725
  msgstr ""
5726
 
5727
+ #: strings.php:144
5728
  msgid "Space"
5729
  msgstr ""
5730
 
5731
+ #: strings.php:145
5732
  msgid "Round"
5733
  msgstr ""
5734
 
5735
+ #: strings.php:147
5736
  msgctxt "image size"
5737
  msgid "Default"
5738
  msgstr ""
5739
 
5740
+ #: strings.php:148
5741
  msgid "Cover"
5742
  msgstr ""
5743
 
5744
+ #: strings.php:149
5745
  msgctxt "image size"
5746
  msgid "Fit"
5747
  msgstr ""
5748
 
5749
+ #: strings.php:150
5750
  msgid "Fill"
5751
  msgstr ""
5752
 
5753
+ #: strings.php:152
5754
  msgid "Insert immediately"
5755
  msgstr ""
5756
 
5757
+ #: strings.php:153
5758
  msgid "Delay insertion"
5759
  msgstr ""
5760
 
5761
+ #: strings.php:154
5762
  msgid "Insert between dates"
5763
  msgstr ""
5764
 
5765
+ #: strings.php:155
5766
  msgid "Insert outside dates"
5767
  msgstr ""
5768
 
5769
+ #: strings.php:156
5770
  msgid "Insert only"
5771
  msgstr ""
5772
 
5773
+ #: strings.php:157
5774
  msgid "Insert for posts published between dates"
5775
  msgstr ""
5776
 
5777
+ #: strings.php:158
5778
  msgid "Insert for posts published outside dates"
5779
  msgstr ""
5780
 
5781
+ #: strings.php:160
5782
  msgctxt "functions"
5783
  msgid "Standard"
5784
  msgstr ""
5785
 
5786
+ #: strings.php:161
5787
  msgctxt "detection"
5788
  msgid "Standard"
5789
  msgstr ""
5790
 
5791
+ #: strings.php:162
5792
  msgctxt "functions"
5793
  msgid "Multibyte"
5794
  msgstr ""
5795
 
5796
+ #: strings.php:164
5797
  msgctxt "action"
5798
  msgid "None"
5799
  msgstr ""
5800
 
5801
+ #: strings.php:165
5802
  msgctxt "button"
5803
  msgid "None"
5804
  msgstr ""
5805
 
5806
+ #: strings.php:166
5807
  msgid "Popup Message"
5808
  msgstr ""
5809
 
5810
+ #: strings.php:167
5811
  msgid "Redirection"
5812
  msgstr ""
5813
 
5814
+ #: strings.php:169
5815
  msgid "Do nothing"
5816
  msgstr ""
5817
 
5818
+ #: strings.php:171
5819
  msgctxt "Action when ad blocking detected"
5820
  msgid "Show"
5821
  msgstr ""
5822
 
5823
+ #: strings.php:172
5824
  msgctxt "Action when ad blocking detected"
5825
  msgid "Hide"
5826
  msgstr ""
5827
 
5828
+ #: strings.php:174
5829
  msgctxt "tracking"
5830
  msgid "Internal"
5831
  msgstr ""
5832
 
5833
+ #: strings.php:175
5834
  msgctxt "detection"
5835
  msgid "Advanced"
5836
  msgstr ""
5837
 
5838
+ #: strings.php:178
5839
  msgctxt "Manual loading"
5840
  msgid "Auto"
5841
  msgstr ""
5842
 
5843
+ #: strings.php:179
5844
  msgctxt "Manual loading"
5845
  msgid "Always"
5846
  msgstr ""
5847
 
5848
+ #: strings.php:181
5849
  msgid "Top right"
5850
  msgstr ""
5851
 
5852
+ #: strings.php:182
5853
  msgid "Top left"
5854
  msgstr ""
5855
 
5856
+ #: strings.php:183
5857
  msgid "Bottom right"
5858
  msgstr ""
5859
 
5860
+ #: strings.php:184
5861
  msgid "Bottom left"
5862
  msgstr ""
5863
 
5864
+ #: strings.php:186
5865
  msgctxt "AdSense Ad Type"
5866
  msgid "Standard"
5867
  msgstr ""
5868
 
5869
+ #: strings.php:187
5870
  msgctxt "AdSense Ad Type"
5871
  msgid "Link"
5872
  msgstr ""
5873
 
5874
+ #: strings.php:188
5875
  msgctxt "AdSense Ad Type"
5876
  msgid "In-article"
5877
  msgstr ""
5878
 
5879
+ #: strings.php:189
5880
  msgctxt "AdSense Ad Type"
5881
  msgid "In-feed"
5882
  msgstr ""
5883
 
5884
+ #: strings.php:190
5885
  msgctxt "AdSense Ad Type"
5886
  msgid "Matched content"
5887
  msgstr ""
5888
 
5889
+ #: strings.php:191
5890
  msgctxt "AdSense Ad Type"
5891
  msgid "Auto Ads"
5892
  msgstr ""
5893
 
5894
+ #: strings.php:192
5895
  msgctxt "AdSense Ad Type"
5896
  msgid "AMP Only"
5897
  msgstr ""
5898
 
5899
+ #: strings.php:194
5900
  msgctxt "AMP ad"
5901
  msgid "Disabled"
5902
  msgstr ""
5903
 
5904
+ #: strings.php:195
5905
  msgid "Above the fold"
5906
  msgstr ""
5907
 
5908
+ #: strings.php:196
5909
  msgid "Below the fold"
5910
  msgstr ""
5911
 
5912
+ #: strings.php:197
5913
  msgctxt "AMP ad"
5914
  msgid "Sticky"
5915
  msgstr ""
5916
 
5917
+ #: strings.php:199
5918
  msgctxt "size"
5919
  msgid "Fixed"
5920
  msgstr ""
5921
 
5922
+ #: strings.php:200
5923
  msgctxt "size"
5924
  msgid "Responsive"
5925
  msgstr ""
5926
 
5927
+ #: strings.php:201
5928
  msgctxt "size"
5929
  msgid "Fixed by viewport"
5930
  msgstr ""
5931
 
5932
+ #: strings.php:205
5933
  msgid "Impressions and clicks"
5934
  msgstr ""
5935
 
5936
+ #: strings.php:206
5937
  msgid "Advanced WordPress Ad Management Plugin"
5938
  msgstr ""
5939
 
5940
+ #: strings.php:212
5941
  msgctxt "Button"
5942
  msgid "Hide"
5943
  msgstr ""
5944
 
5945
+ #: strings.php:213
5946
  msgctxt "Button"
5947
  msgid "Show"
5948
  msgstr ""
5949
 
5950
+ #: strings.php:214
5951
  msgid "Insertion expired"
5952
  msgstr ""
5953
 
5954
+ #: strings.php:215
5955
  msgid "Duration"
5956
  msgstr ""
5957
 
5958
+ #: strings.php:216
5959
  msgid "Invalid end date - must be after start date"
5960
  msgstr ""
5961
 
5962
+ #: strings.php:217
5963
  msgid "Invalid start date - only data for 1 year back is available"
5964
  msgstr ""
5965
 
5966
+ #: strings.php:218
5967
  msgid "Invalid date range - only data for 1 year can be displayed"
5968
  msgstr ""
5969
 
5970
+ #: strings.php:227
5971
  msgid "Delete all"
5972
  msgstr ""
5973
 
5974
+ #: strings.php:228
5975
  msgid "Switch"
5976
  msgstr ""
5977
 
5978
+ #: strings.php:230
5979
  msgid "OK"
5980
  msgstr ""
5981
 
5982
+ #: strings.php:231
5983
  msgid "Delete all statistics data?"
5984
  msgstr ""
5985
 
5986
+ #: strings.php:232
5987
  msgid ""
5988
  "Rotation code editor active. Click on the rotation button to generate code."
5989
  msgstr ""
5990
 
5991
  #. translators: %s: dates
5992
+ #: strings.php:235
5993
  msgid "Delete statistics data between %s and %s?"
5994
  msgstr ""
5995
 
5996
+ #: strings.php:236
5997
  msgid "Delete website?"
5998
  msgstr ""
5999
 
6000
+ #: strings.php:237
6001
  msgid "Cancel block order rearrangement"
6002
  msgstr ""
6003
 
6004
+ #: strings.php:239
6005
  msgid "downloading..."
6006
  msgstr ""
6007
 
6008
+ #: strings.php:240
6009
  msgid "download error"
6010
  msgstr ""
6011
 
6012
+ #: strings.php:241
6013
  msgid "update error"
6014
  msgstr ""
6015
 
6016
+ #: strings.php:242
6017
  msgid "Updating..."
6018
  msgstr ""
6019
 
6020
+ #: strings.php:244
6021
  msgid "ERROR"
6022
  msgstr ""
6023
 
6024
+ #: strings.php:245
6025
  msgid "Error reloading settings"
6026
  msgstr ""
6027
 
6028
+ #: strings.php:247
6029
  msgctxt "Search field placeholder"
6030
  msgid "Search..."
6031
  msgstr ""
6032
 
6033
+ #: strings.php:248
6034
  msgctxt "Search field placeholder"
6035
  msgid "Filter..."
6036
  msgstr ""
6037
 
6038
+ #: strings.php:249
6039
  msgid "Use filter to limit names in the list"
6040
  msgstr ""
6041
 
6042
+ #: strings.php:250
6043
  msgctxt "Button"
6044
  msgid "Filter"
6045
  msgstr ""
6046
 
6047
+ #: strings.php:252
6048
  msgid "Position not available"
6049
  msgstr ""
6050
 
6051
+ #: strings.php:253
6052
  msgid ""
6053
  "Theme check | Selected position for automatic insertion might not be not "
6054
  "available on this page type"
6055
  msgstr ""
6056
 
6057
+ #: strings.php:254
6058
  msgid "Position available"
6059
  msgstr ""
6060
 
6061
+ #: strings.php:256
6062
  msgid "Select or upload banner image"
6063
  msgstr ""
6064
 
6065
+ #: strings.php:257
6066
  msgid "Select or upload background image"
6067
  msgstr ""
6068
 
6069
+ #: strings.php:258
6070
  msgid "Use this image"
6071
  msgstr ""
6072
 
6073
+ #: strings.php:259
6074
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
6075
  msgstr ""
6076
 
6077
+ #: strings.php:261
6078
  msgctxt "Monday"
6079
  msgid "MO"
6080
  msgstr ""
6081
 
6082
+ #: strings.php:262
6083
  msgctxt "Tuesday"
6084
  msgid "TU"
6085
  msgstr ""
6086
 
6087
+ #: strings.php:263
6088
  msgctxt "Wednesday"
6089
  msgid "WE"
6090
  msgstr ""
6091
 
6092
+ #: strings.php:264
6093
  msgctxt "Thursday"
6094
  msgid "TH"
6095
  msgstr ""
6096
 
6097
+ #: strings.php:265
6098
  msgctxt "Friday"
6099
  msgid "FR"
6100
  msgstr ""
6101
 
6102
+ #: strings.php:266
6103
  msgctxt "Saturday"
6104
  msgid "SA"
6105
  msgstr ""
6106
 
6107
+ #: strings.php:267
6108
  msgctxt "Sunday"
6109
  msgid "SU"
6110
  msgstr ""
6111
 
6112
+ #: strings.php:284
 
 
 
 
 
6113
  msgid "Automatically placed by AdSense Auto ads code"
6114
  msgstr ""
6115
 
6116
+ #: strings.php:289
6117
  msgid "Add"
6118
  msgstr ""
6119
 
6120
+ #: strings.php:290
6121
  msgctxt "Element"
6122
  msgid "Parent"
6123
  msgstr ""
6124
 
6125
+ #: strings.php:291
6126
  msgid "Cancel element selection"
6127
  msgstr ""
6128
 
6129
+ #: strings.php:292
6130
  msgid "Select parent element"
6131
  msgstr ""
6132
 
6133
+ #: strings.php:293
6134
  msgid "CSS selector"
6135
  msgstr ""
6136
 
6137
+ #: strings.php:294
6138
  msgid "Use current selector"
6139
  msgstr ""
6140
 
6141
+ #: strings.php:295
6142
  msgid "ELEMENT"
6143
  msgstr ""
6144
 
6145
+ #: strings.php:296
6146
  msgid "PATH"
6147
  msgstr ""
6148
 
6149
+ #: strings.php:297
6150
  msgid "SELECTOR"
6151
  msgstr ""
6152
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
6
  Requires at least: 4.9
7
  Tested up to: 5.8
8
  Requires PHP: 5.6
9
- Stable tag: 2.7.4
10
  License: GPLv3
11
 
12
  Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
@@ -352,6 +352,9 @@ If you are not happy to reveal this information and you have opted in, simply di
352
 
353
  == Changelog ==
354
 
 
 
 
355
  = 2.7.4 =
356
  - Updated Google API
357
  - Improved labels for AdSense Auto ads
@@ -585,6 +588,9 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
585
 
586
  == Upgrade Notice ==
587
 
 
 
 
588
  = 2.7.4 =
589
  Updated Google API;
590
  Improved labels for AdSense Auto ads;
6
  Requires at least: 4.9
7
  Tested up to: 5.8
8
  Requires PHP: 5.6
9
+ Stable tag: 2.7.5
10
  License: GPLv3
11
 
12
  Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
352
 
353
  == Changelog ==
354
 
355
+ = 2.7.5 =
356
+ - Few minor bug fixes, cosmetic changes and code improvements
357
+
358
  = 2.7.4 =
359
  - Updated Google API
360
  - Improved labels for AdSense Auto ads
588
 
589
  == Upgrade Notice ==
590
 
591
+ = 2.7.5 =
592
+ Few minor bug fixes, cosmetic changes and code improvements
593
+
594
  = 2.7.4 =
595
  Updated Google API;
596
  Improved labels for AdSense Auto ads;
settings.php CHANGED
@@ -303,7 +303,7 @@ function generate_settings_form (){
303
  <?php _e ('Share', 'ad-inserter'); ?>
304
  </td>
305
  <td class="option-parameters">
306
- <input class="option-share" style="width: 42px;" type="text" maxlength="2" data-title="<?php _e ('Option share in percents - 0 means option is disabled, if share for one option is not defined it will be calculated automatically. Leave all share fields empty for equal option shares.', 'ad-inserter'); ?>" /> %
307
  </td>
308
  <td class="option-parameters" style="padding-left: 7px;">
309
  <?php _e ('Scheduling', 'ad-inserter'); ?>
@@ -1393,7 +1393,7 @@ function generate_settings_form (){
1393
  <div class="max-input" style="min-height: 27px;">
1394
  <span id="css-label-<?php echo $block; ?>" style="display: table-cell; width: 36px; padding: 0; height: 26px; vertical-align: middle; margin: 4px 0 0 0; font-size: 14px; font-weight: bold;">CSS</span>
1395
  <input id="custom-css-<?php echo $block; ?>" style="width: 100%; display: none; font-family: monospace, Courier, 'Courier New'; font-weight: bold;" type="text" name="<?php echo AI_OPTION_CUSTOM_CSS, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_custom_css(); ?>" value="<?php echo $obj->get_custom_css(); ?>" maxlength="500" title="<?php _e ('Custom CSS code for the wrapping div', 'ad-inserter'); ?>" />
1396
- <span style="display: table-cell; vertical-align: middle; font-family: monospace, Courier, 'Courier New'; font-size: 12px; font-weight: bold; cursor: pointer; padding-left: 10px;">
1397
  <span id="css-no-wrapping-<?php echo $block; ?>" class='css-code' style="height: 26px; padding-left: 0px; display: none;"></span>
1398
  <span id="css-none-<?php echo $block; ?>" class='css-code-<?php echo $block; ?>' style="height: 18px; padding-left: 0px; display: none;" title="<?php _e ('CSS code for the wrapping div, click to edit', 'ad-inserter'); ?>"><?php echo $obj->alignment_style (AI_ALIGNMENT_DEFAULT); ?></span>
1399
  <span id="css-left-<?php echo $block; ?>" class='css-code-<?php echo $block; ?>' style="height: 18px; padding-left: 0px; display: none;" title="<?php _e ('CSS code for the wrapping div, click to edit', 'ad-inserter'); ?>"><?php echo $obj->alignment_style (AI_ALIGNMENT_LEFT); ?></span>
@@ -4243,15 +4243,25 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks, $active_
4243
  }
4244
 
4245
  if (!$error) {
4246
- // Update AI_OPTION_FALLBACK and AI_OPTION_ADB_BLOCK_REPLACEMENT
4247
  for ($block = 1; $block <= 96; $block ++) {
4248
 
4249
- if (isset ($new_options [$block][AI_OPTION_FALLBACK])) {
4250
- $ai_option_fallback = $new_options [$block][AI_OPTION_FALLBACK];
4251
  if ($ai_option_fallback != '')
4252
  foreach ($blocks_new as $index => $org_block) {
4253
  if ($ai_option_fallback == $org_block) {
4254
- $new_options [$block][AI_OPTION_FALLBACK] = $blocks_org [$index];
 
 
 
 
 
 
 
 
 
 
4255
  }
4256
  }
4257
  }
303
  <?php _e ('Share', 'ad-inserter'); ?>
304
  </td>
305
  <td class="option-parameters">
306
+ <input class="option-share" style="width: 65px;" type="text" maxlength="20" data-title="<?php _e ('Option share in percents - 0 means option is disabled, if share for one option is not defined it will be calculated automatically. Leave all share fields empty for equal option shares.', 'ad-inserter'); ?>" /> %
307
  </td>
308
  <td class="option-parameters" style="padding-left: 7px;">
309
  <?php _e ('Scheduling', 'ad-inserter'); ?>
1393
  <div class="max-input" style="min-height: 27px;">
1394
  <span id="css-label-<?php echo $block; ?>" style="display: table-cell; width: 36px; padding: 0; height: 26px; vertical-align: middle; margin: 4px 0 0 0; font-size: 14px; font-weight: bold;">CSS</span>
1395
  <input id="custom-css-<?php echo $block; ?>" style="width: 100%; display: none; font-family: monospace, Courier, 'Courier New'; font-weight: bold;" type="text" name="<?php echo AI_OPTION_CUSTOM_CSS, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_custom_css(); ?>" value="<?php echo $obj->get_custom_css(); ?>" maxlength="500" title="<?php _e ('Custom CSS code for the wrapping div', 'ad-inserter'); ?>" />
1396
+ <span style="display: table-cell; font-family: monospace, Courier, 'Courier New'; font-size: 12px; font-weight: bold; cursor: pointer; padding-left: 10px;">
1397
  <span id="css-no-wrapping-<?php echo $block; ?>" class='css-code' style="height: 26px; padding-left: 0px; display: none;"></span>
1398
  <span id="css-none-<?php echo $block; ?>" class='css-code-<?php echo $block; ?>' style="height: 18px; padding-left: 0px; display: none;" title="<?php _e ('CSS code for the wrapping div, click to edit', 'ad-inserter'); ?>"><?php echo $obj->alignment_style (AI_ALIGNMENT_DEFAULT); ?></span>
1399
  <span id="css-left-<?php echo $block; ?>" class='css-code-<?php echo $block; ?>' style="height: 18px; padding-left: 0px; display: none;" title="<?php _e ('CSS code for the wrapping div, click to edit', 'ad-inserter'); ?>"><?php echo $obj->alignment_style (AI_ALIGNMENT_LEFT); ?></span>
4243
  }
4244
 
4245
  if (!$error) {
4246
+ // Update AI_OPTION_SCHEDULING_FALLBACK, AI_OPTION_LIMITS_FALLBACK and AI_OPTION_ADB_BLOCK_REPLACEMENT
4247
  for ($block = 1; $block <= 96; $block ++) {
4248
 
4249
+ if (isset ($new_options [$block][AI_OPTION_SCHEDULING_FALLBACK])) {
4250
+ $ai_option_fallback = $new_options [$block][AI_OPTION_SCHEDULING_FALLBACK];
4251
  if ($ai_option_fallback != '')
4252
  foreach ($blocks_new as $index => $org_block) {
4253
  if ($ai_option_fallback == $org_block) {
4254
+ $new_options [$block][AI_OPTION_SCHEDULING_FALLBACK] = $blocks_org [$index];
4255
+ }
4256
+ }
4257
+ }
4258
+
4259
+ if (isset ($new_options [$block][AI_OPTION_LIMITS_FALLBACK])) {
4260
+ $ai_option_fallback = $new_options [$block][AI_OPTION_LIMITS_FALLBACK];
4261
+ if ($ai_option_fallback != '')
4262
+ foreach ($blocks_new as $index => $org_block) {
4263
+ if ($ai_option_fallback == $org_block) {
4264
+ $new_options [$block][AI_OPTION_LIMITS_FALLBACK] = $blocks_org [$index];
4265
  }
4266
  }
4267
  }
strings.php CHANGED
@@ -133,7 +133,8 @@ define ('AI_TEXT_TURN', __('Turn', 'ad-inserter'));
133
  define ('AI_TEXT_PAGE_LOADED', __('Page loaded', 'ad-inserter'));
134
  define ('AI_TEXT_PAGE_SCROLLED_PC', __('Page scrolled (%)', 'ad-inserter'));
135
  define ('AI_TEXT_PAGE_SCROLLED_PX', __('Page scrolled (px)', 'ad-inserter'));
136
- define ('AI_TEXT_ELEMENT_VISIBLE', __('Element visible', 'ad-inserter'));
 
137
 
138
  define('AI_TEXT_DEFAULT_BKG_REPEAT', _x('Default', 'image repeat', 'ad-inserter'));
139
  define('AI_TEXT_NO', __('No', 'ad-inserter'));
@@ -279,7 +280,7 @@ $ai_front_translations = array (
279
  'insertion_replace_element' => __('REPLACE ELEMENT', 'ad-inserter'),
280
  'visible' => _x('VISIBLE', 'Block', 'ad-inserter'),
281
  'hidden' => _x('HIDDEN', 'Block', 'ad-inserter'),
282
- 'fallback' => _x('FALLBACK', 'Scheduling', 'ad-inserter'),
283
  'automatically_placed' => __('Automatically placed by AdSense Auto ads code', 'ad-inserter'),
284
 
285
  // Element selection
133
  define ('AI_TEXT_PAGE_LOADED', __('Page loaded', 'ad-inserter'));
134
  define ('AI_TEXT_PAGE_SCROLLED_PC', __('Page scrolled (%)', 'ad-inserter'));
135
  define ('AI_TEXT_PAGE_SCROLLED_PX', __('Page scrolled (px)', 'ad-inserter'));
136
+ define ('AI_TEXT_ELEMENT_SCROLLS_IN', __('Element scrolls in', 'ad-inserter'));
137
+ define ('AI_TEXT_ELEMENT_SCROLLS_OUT', __('Element scrolls out', 'ad-inserter'));
138
 
139
  define('AI_TEXT_DEFAULT_BKG_REPEAT', _x('Default', 'image repeat', 'ad-inserter'));
140
  define('AI_TEXT_NO', __('No', 'ad-inserter'));
280
  'insertion_replace_element' => __('REPLACE ELEMENT', 'ad-inserter'),
281
  'visible' => _x('VISIBLE', 'Block', 'ad-inserter'),
282
  'hidden' => _x('HIDDEN', 'Block', 'ad-inserter'),
283
+ 'fallback' => _x('FALLBACK', 'alternative block', 'ad-inserter'),
284
  'automatically_placed' => __('Automatically placed by AdSense Auto ads code', 'ad-inserter'),
285
 
286
  // Element selection