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

Version Description

  • Security fix for XSS (Reported by Krzysztof Zajac via WPScan)
  • Added support to detect and replace blank AdSense blocks
  • Added support to load and save plugins settings to a file (Pro only)
  • Added support for parallax ads (Pro only)
  • Few fixes
Download this release

Release Info

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

Code changes from version 2.7.9 to 2.7.10

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.7.9
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,13 @@ Requires PHP: 5.6
17
 
18
  Change Log
19
 
 
 
 
 
 
 
 
20
  Ad Inserter 2.7.9 - 2022-01-05
21
  - Bug fix for timed rotations
22
  - Bug fix for tr_TR translation
@@ -1409,6 +1416,11 @@ function ai_wp_hook () {
1409
 
1410
  if (($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0 && get_disable_caching ()) ai_disable_caching ();
1411
 
 
 
 
 
 
1412
  if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_ADMIN &&
1413
  ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0 &&
1414
  get_admin_toolbar_debugging () &&
@@ -1888,6 +1900,8 @@ function ai_admin_enqueue_scripts ($hook_suffix) {
1888
  if ($hook_suffix == $ai_settings_page) {
1889
  wp_enqueue_style ('ai-admin-jquery-ui', plugins_url ('css/jquery-ui-1.10.3.custom.min.css', __FILE__), array (), null);
1890
 
 
 
1891
  if (function_exists ('ai_admin_enqueue_scripts_1')) ai_admin_enqueue_scripts_1 ();
1892
 
1893
  wp_enqueue_style ('ai-admin-multi-select', plugins_url ('css/multi-select.css', AD_INSERTER_FILE), array (), AD_INSERTER_VERSION);
@@ -1898,6 +1912,8 @@ function ai_admin_enqueue_scripts ($hook_suffix) {
1898
 
1899
  if (function_exists ('ai_admin_enqueue_scripts_2')) ai_admin_enqueue_scripts_2 ();
1900
 
 
 
1901
  wp_enqueue_script ('ai-multi-select', plugins_url ('includes/js/jquery.multi-select.js', AD_INSERTER_FILE ), array (), AD_INSERTER_VERSION, true);
1902
  wp_enqueue_script ('ai-quicksearch', plugins_url ('includes/js/jquery.quicksearch.js', AD_INSERTER_FILE ), array (), AD_INSERTER_VERSION, true);
1903
 
@@ -2101,8 +2117,8 @@ function ai_get_client_side_styles () {
2101
  ".ai-rotate {position: relative;}\n" .
2102
  ".ai-rotate-hidden {visibility: hidden;}\n" .
2103
  ".ai-rotate-hidden-2 {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}\n" .
2104
- ".ai-list-data, .ai-ip-data, .ai-filter-check, .ai-fallback, .ai-list-block, .ai-list-block-ip, .ai-list-block-filter {".AI_ALIGNMENT_CSS_HIDDEN_LIST."}\n";
2105
- ".ai-list-data, .ai-ip-data, .ai-filter-check, .ai-fallback {min-width: 1px;}\n";
2106
  "";
2107
  }
2108
 
@@ -2221,6 +2237,7 @@ function add_head_inline_styles () {
2221
  get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW ||
2222
  isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION]) ||
2223
  $ai_wp_data [AI_CLOSE_BUTTONS] ||
 
2224
  $ai_wp_data [AI_HTML_ELEMENT_SELECTION] ||
2225
  !get_inline_styles () ||
2226
  get_admin_toolbar_debugging () && (get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_LOGGED_IN) != 0) ||
@@ -2237,7 +2254,7 @@ function add_head_inline_styles () {
2237
  }
2238
 
2239
  if ($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
2240
- echo ".ai-close {position: relative;}\n";
2241
  // echo ".ai-close-width {width: auto !important;}\n";
2242
  echo ".ai-close-button {position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; background: url(".plugins_url ('css/images/close-button.png', AD_INSERTER_FILE).") no-repeat center center; cursor: pointer; z-index: 9; display: none;}\n";
2243
  echo ".ai-close-show {display: block;}\n";
@@ -2246,6 +2263,11 @@ function add_head_inline_styles () {
2246
  echo ".ai-close-none {visibility: hidden;}\n";
2247
  }
2248
 
 
 
 
 
 
2249
  // Before alignment CSS to not override alignment margin
2250
  if ($debugging) generate_debug_css_base ();
2251
 
@@ -2377,7 +2399,7 @@ function ai_replace_js_data ($js) {
2377
  if (preg_match_all ('/AI_POST_([_A-Z0-9]+)/', $js, $match)) {
2378
  foreach ($match [1] as $index => $post) {
2379
  $post_name = strtolower ($post);
2380
- $js = str_replace ($match [0][$index], isset ($_POST [$post_name]) ? urldecode ($_POST [$post_name]) : '', $js);
2381
  }
2382
  }
2383
 
@@ -2804,6 +2826,7 @@ function add_footer_inline_scripts () {
2804
  isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION]) ||
2805
  $ai_wp_data [AI_CLIENT_SIDE_DETECTION] ||
2806
  ($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) ||
 
2807
  $ai_wp_data [AI_CHECK_BLOCK] ||
2808
  $ai_wp_data [AI_LAZY_LOADING] ||
2809
  ($ai_wp_data [AI_TRACKING] && !isset ($ai_wp_data [AI_TRACKING_SHORTCODE_DISABLED])) ||
@@ -2867,6 +2890,12 @@ function add_footer_inline_scripts () {
2867
  }
2868
  }
2869
 
 
 
 
 
 
 
2870
  if ($client_side_dynamic_blocks || isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION])) {
2871
  echo ai_get_js ('ai-rotation');
2872
  }
@@ -3065,6 +3094,13 @@ function ai_admin_notice_hook () {
3065
  '</p></div>';
3066
  }
3067
 
 
 
 
 
 
 
 
3068
  }
3069
  }
3070
 
@@ -4942,8 +4978,8 @@ function ai_get_old_option ($option_name) {
4942
  return ($options);
4943
  }
4944
 
4945
- function ai_get_option ($option_name) {
4946
- $ai_db_options = get_option ($option_name);
4947
 
4948
  if ($ai_db_options === false) {
4949
  return $ai_db_options;
@@ -5017,12 +5053,12 @@ function ai_load_options () {
5017
  }
5018
 
5019
  if (is_multisite ()) {
5020
- $ai_db_options_multisite = get_site_option (AI_OPTION_NAME);
5021
  option_stripslashes ($ai_db_options_multisite);
5022
  }
5023
 
5024
  if (is_multisite () && multisite_main_for_all_blogs () && defined ('BLOG_ID_CURRENT_SITE')) {
5025
- $ai_db_options = get_blog_option (BLOG_ID_CURRENT_SITE, AI_OPTION_NAME);
5026
 
5027
  if (is_string ($ai_db_options) && substr ($ai_db_options, 0, 4) === ':AI:') {
5028
  $ai_db_options = unserialize (base64_decode (substr ($ai_db_options, 4), true));
@@ -5030,13 +5066,13 @@ function ai_load_options () {
5030
 
5031
  option_stripslashes ($ai_db_options);
5032
  } else {
5033
- $ai_db_options = ai_get_option (AI_OPTION_NAME);
5034
 
5035
  option_stripslashes ($ai_db_options);
5036
  }
5037
 
5038
  if (is_multisite () && !is_main_site () && defined ('BLOG_ID_CURRENT_SITE')) {
5039
- $ai_db_options_main = get_blog_option (BLOG_ID_CURRENT_SITE, AI_OPTION_NAME);
5040
 
5041
  if (is_string ($ai_db_options_main) && substr ($ai_db_options_main, 0, 4) === ':AI:') {
5042
  $ai_db_options_main = unserialize (base64_decode (substr ($ai_db_options_main, 4), true));
@@ -5822,6 +5858,7 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
5822
  elseif ($option == AI_OPTION_DOMAIN_LIST ||
5823
  $option == 'NO_PARAGRAPH_COUNTING_INSIDE' ||
5824
  $option == AI_OPTION_BACKGROUND_COLOR ||
 
5825
  $option == AI_OPTION_PARAGRAPH_TAGS ||
5826
  $option == AI_OPTION_COUNT_INSIDE_ELEMENTS ||
5827
  $option == AI_OPTION_IP_ADDRESS_LIST ||
@@ -5829,6 +5866,11 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
5829
  $value = str_replace (array ("\\", "/", "?", "\"", "'", "<", ">", "[", "]", "'", '"'), "", $value);
5830
  $value = esc_html ($value);
5831
  }
 
 
 
 
 
5832
  elseif (
5833
  $option == AI_OPTION_PARAGRAPH_TEXT ||
5834
  $option == AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT ||
@@ -5891,7 +5933,16 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
5891
  $option == AI_OPTION_LIMIT_CLICKS_PER_TIME_PERIOD ||
5892
  $option == AI_OPTION_LIMIT_CLICKS_TIME_PERIOD ||
5893
  $option == AI_OPTION_BACKGROUND_IMAGE ||
5894
-
 
 
 
 
 
 
 
 
 
5895
  $option == 'CLICK_FRAUD_PROTECTION_TIME' ||
5896
  $option == 'GLOBAL_VISITOR_LIMIT_CPT' ||
5897
  $option == 'GLOBAL_VISITOR_LIMIT_TIME' ||
@@ -6129,6 +6180,7 @@ function ai_ajax_backend () {
6129
  if (isset ($_POST ['count'])) $preview_parameters ['count'] = $_POST ['count'];
6130
  if (isset ($_POST ['rotate'])) $preview_parameters ['rotate'] = $_POST ['rotate'];
6131
  if (isset ($_POST ['viewport'])) $preview_parameters ['viewport'] = $_POST ['viewport'];
 
6132
 
6133
  if (function_exists ('ai_remote_preview')) {
6134
  ai_remote_preview ($block, $preview_parameters);
@@ -6462,6 +6514,7 @@ function ai_generate_extract (&$settings) {
6462
  $ai_wp_data [AI_STICK_TO_THE_CONTENT] = false;
6463
  $ai_wp_data [AI_TRACKING] = false;
6464
  $ai_wp_data [AI_CLOSE_BUTTONS] = false;
 
6465
  $ai_wp_data [AI_CHECK_BLOCK] = false;
6466
  $ai_wp_data [AI_IFRAMES] = false;
6467
  $ai_wp_data [AI_ANIMATION] = false;
@@ -6603,6 +6656,7 @@ function ai_generate_extract (&$settings) {
6603
  AI_STICK_TO_THE_CONTENT => $ai_wp_data [AI_STICK_TO_THE_CONTENT],
6604
  AI_TRACKING => $ai_wp_data [AI_TRACKING],
6605
  AI_CLOSE_BUTTONS => $ai_wp_data [AI_CLOSE_BUTTONS],
 
6606
  AI_CHECK_BLOCK => $ai_wp_data [AI_CHECK_BLOCK],
6607
  AI_IFRAMES => $ai_wp_data [AI_IFRAMES],
6608
  AI_ANIMATION => $ai_wp_data [AI_ANIMATION],
@@ -6664,6 +6718,11 @@ function ai_load_settings () {
6664
 
6665
  ai_load_options ();
6666
 
 
 
 
 
 
6667
  $extract_ok = ai_load_extract (false);
6668
 
6669
  $ai_custom_hooks = array ();
@@ -6678,7 +6737,7 @@ function ai_load_settings () {
6678
 
6679
  $features_in_extract = $extract_ok && isset ($ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES]);
6680
 
6681
- if (isset ($ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_USED_BLOCKS])) {
6682
  $used_blocks = @unserialize ($ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_USED_BLOCKS]);
6683
  } else $used_blocks = false;
6684
 
@@ -6710,6 +6769,7 @@ function ai_load_settings () {
6710
  $ai_wp_data [AI_STICK_TO_THE_CONTENT] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_STICK_TO_THE_CONTENT];
6711
  $ai_wp_data [AI_TRACKING] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_TRACKING];
6712
  $ai_wp_data [AI_CLOSE_BUTTONS] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_CLOSE_BUTTONS];
 
6713
  $ai_wp_data [AI_CHECK_BLOCK] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_CHECK_BLOCK];
6714
  $ai_wp_data [AI_IFRAMES] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_IFRAMES];
6715
  $ai_wp_data [AI_ANIMATION] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_ANIMATION];
@@ -6881,7 +6941,7 @@ function generate_alignment_css () {
6881
  }
6882
 
6883
  if ($alignment_type != AI_ALIGNMENT_CUSTOM_CSS) {
6884
- $size_css = $obj->size_style ();
6885
  // $size_name = strtolower (md5 ($size_css));
6886
  $size_name = ai_css_to_name ($size_css);
6887
  if (!in_array ($size_name, $alignments)) {
@@ -6930,6 +6990,10 @@ a.ai-debug-center {text-align: center; cursor: default; font-size: 10px; text-de
6930
  .ai-debug-special {background: #fb0; color: #000;}
6931
 
6932
  .ai-debug-ad-overlay {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #8f8; opacity: 0.6; z-index: 999999990}
 
 
 
 
6933
  .ai-auto-ads {background-color: #84f;}
6934
  .ai-no-slot {background-color: #48f;}
6935
  .ai-debug-ad-info {position: absolute; top: 0; left: 0; overflow: hidden; width: auto; height: auto; font-family: arial; font-size: 11px; line-height: 11px; text-align: left; z-index: 999999991;}
@@ -7035,7 +7099,7 @@ pre.ai-processing-log {direction: ltr; text-align: left; padding: 10px; backgrou
7035
 
7036
 
7037
  function ai_css_to_name ($css) {
7038
- return strtolower (rtrim (str_replace (array ('width', 'height', ' ', ':', ';'), array ('w', 'h', '', '-', '-'), $css), '-'));
7039
  }
7040
 
7041
  function generate_selection_css () {
@@ -7156,9 +7220,9 @@ function ai_settings () {
7156
  // Import Ad Inserter settings
7157
 
7158
  $settings = str_replace (array ("\\\""), array ("\""), $_POST ["export_settings_0"]);
7159
- // if (substr ($settings, 0, 4) === ':AI:') {
7160
- // $settings = substr ($settings, 4);
7161
- // }
7162
 
7163
  $ai_options = @unserialize (base64_decode ($settings));
7164
 
@@ -8544,6 +8608,7 @@ function ai_process_shortcode (&$block, $atts) {
8544
  "disable" => "",
8545
  "check" => "",
8546
  "viewport" => "",
 
8547
  "adb" => "",
8548
  "tracking" => "",
8549
  "css" => "",
@@ -8691,6 +8756,11 @@ function ai_process_shortcode (&$block, $atts) {
8691
  if ($parameters ['http'] != '' || in_array ('HTTP', $atts) || in_array ('http', $atts)) {
8692
  return AD_HTTP_SEPARATOR;
8693
  }
 
 
 
 
 
8694
  if ($parameters ['group'] != '' || in_array ('GROUP', $atts) || in_array ('group', $atts)) {
8695
  if ($parameters ['group'] != '') {
8696
  $parameters ['group'] = mb_strtolower ($parameters ['group']);
@@ -8932,6 +9002,9 @@ function ai_process_shortcode (&$block, $atts) {
8932
  if (isset ($ai_wp_data [AI_SHORTCODES]['head'])) {
8933
  $saved_head = $ai_wp_data [AI_SHORTCODES]['head'];
8934
  }
 
 
 
8935
  if (isset ($ai_wp_data [AI_SHORTCODES]['atts'])) {
8936
  $saved_atts = $ai_wp_data [AI_SHORTCODES]['atts'];
8937
  }
@@ -8957,6 +9030,9 @@ function ai_process_shortcode (&$block, $atts) {
8957
  if (isset ($saved_rotate)) {
8958
  $ai_wp_data [AI_SHORTCODES]['rotate'] = $saved_rotate;
8959
  } else unset ($ai_wp_data [AI_SHORTCODES]['rotate']);
 
 
 
8960
  if (isset ($saved_head)) {
8961
  $ai_wp_data [AI_SHORTCODES]['head'] = $saved_head;
8962
  } else unset ($ai_wp_data [AI_SHORTCODES]['head']);
@@ -10707,9 +10783,11 @@ function ai_setcookie ($name, $value, $expire, $path, $samesite = 'Lax') {
10707
  }
10708
 
10709
 
10710
- function ai_process_viewport_separators ($code, $viewport_shortcode_data) {
10711
  global $ai_wp_data;
10712
 
 
 
10713
  preg_match_all ('/\|viewport([0-9]+?)\|/', $code, $matches);
10714
  if (count ($matches [1]) != 0) {
10715
  $viewport_parameters = array ();
@@ -10735,6 +10813,9 @@ function ai_process_viewport_separators ($code, $viewport_shortcode_data) {
10735
  } else array_unshift ($viewport_parameters, array ('viewport' => '', 'code' => ''));
10736
 
10737
  foreach ($codes as $viewport_code_index => $viewport_code) {
 
 
 
10738
  $separator_viewports = explode (',', strtolower ($viewport_parameters [$viewport_code_index]['viewport']));
10739
  foreach ($separator_viewports as $index => $separator_viewport) {
10740
  $separator_viewports [$index] = trim ($separator_viewport);
@@ -10802,6 +10883,48 @@ function ai_process_viewport_separators ($code, $viewport_shortcode_data) {
10802
  }
10803
 
10804
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10805
  function replace_ai_tags ($content, $general_tag = '') {
10806
  global $ai_wp_data;
10807
 
@@ -11217,7 +11340,8 @@ $ai_wp_data [AI_CLIENT_SIDE_INSERTION] = false;
11217
  $ai_wp_data [AI_LAZY_LOADING] = false;
11218
  $ai_wp_data [AI_PAGE_BLOCKS] = 0;
11219
  $ai_wp_data [AI_GEOLOCATION] = false;
11220
- $ai_wp_data [AI_HTML_ELEMENT_SELECTION] = isset ($_POST ['html_element_selection']) ? (bool) $_POST ['html_element_selection'] : false;
 
11221
  $ai_wp_data [AI_MBSTRING_LOADED] = extension_loaded ('mbstring');
11222
  $ai_wp_data [AI_PROCESSING_TIME] = false;
11223
  $ai_wp_data [AI_FORCE_SERVERSIDE_CODE] = false;
@@ -11231,6 +11355,7 @@ $ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] = '';
11231
  $ai_wp_data [AI_FOOTER_INLINE_SCRIPTS] = false;
11232
  $ai_wp_data [AI_W3TC_DEBUGGING] = false;
11233
  $ai_wp_data [AI_CLIENT_SIDE_FILTER_CHECKS] = false;
 
11234
 
11235
  ai_load_settings ();
11236
 
@@ -11444,7 +11569,7 @@ if (defined ('AI_PLUGIN_TRACKING') && AI_PLUGIN_TRACKING) {
11444
  function ai_dst_options ($options) {
11445
  global $ai_db_options, $ai_db_options_extract;
11446
 
11447
- if (isset ($ai_db_options_extract [AI_EXTRACT_USED_BLOCKS])) {
11448
  $used_blocks = count (unserialize ($ai_db_options_extract [AI_EXTRACT_USED_BLOCKS]));
11449
  } else $used_blocks = '';
11450
 
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.7.10
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.10 - 2022-01-19
21
+ - Security fix for XSS (Reported by Krzysztof Zajac via WPScan)
22
+ - Added support to detect and replace blank AdSense blocks
23
+ - Added support to load and save plugins settings to a file (Pro only)
24
+ - Added support for parallax ads (Pro only)
25
+ - Few fixes
26
+
27
  Ad Inserter 2.7.9 - 2022-01-05
28
  - Bug fix for timed rotations
29
  - Bug fix for tr_TR translation
1416
 
1417
  if (($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0 && get_disable_caching ()) ai_disable_caching ();
1418
 
1419
+ if (($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0) {
1420
+ $ai_wp_data [AI_HTML_ELEMENT_SELECTION] = isset ($_POST ['html_element_selection']) ? (bool) $_POST ['html_element_selection'] : false;
1421
+ }
1422
+
1423
+
1424
  if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_ADMIN &&
1425
  ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0 &&
1426
  get_admin_toolbar_debugging () &&
1900
  if ($hook_suffix == $ai_settings_page) {
1901
  wp_enqueue_style ('ai-admin-jquery-ui', plugins_url ('css/jquery-ui-1.10.3.custom.min.css', __FILE__), array (), null);
1902
 
1903
+ wp_enqueue_style ('ai-colorpicker-css', plugins_url ('includes/colorpicker/css/bootstrap-colorpicker.min.css', AD_INSERTER_FILE), array (), AD_INSERTER_VERSION);
1904
+
1905
  if (function_exists ('ai_admin_enqueue_scripts_1')) ai_admin_enqueue_scripts_1 ();
1906
 
1907
  wp_enqueue_style ('ai-admin-multi-select', plugins_url ('css/multi-select.css', AD_INSERTER_FILE), array (), AD_INSERTER_VERSION);
1912
 
1913
  if (function_exists ('ai_admin_enqueue_scripts_2')) ai_admin_enqueue_scripts_2 ();
1914
 
1915
+ wp_enqueue_script ('ai-colorpicker-js', plugins_url ('includes/colorpicker/js/bootstrap-colorpicker.min.js', AD_INSERTER_FILE ), array (), AD_INSERTER_VERSION, true);
1916
+
1917
  wp_enqueue_script ('ai-multi-select', plugins_url ('includes/js/jquery.multi-select.js', AD_INSERTER_FILE ), array (), AD_INSERTER_VERSION, true);
1918
  wp_enqueue_script ('ai-quicksearch', plugins_url ('includes/js/jquery.quicksearch.js', AD_INSERTER_FILE ), array (), AD_INSERTER_VERSION, true);
1919
 
2117
  ".ai-rotate {position: relative;}\n" .
2118
  ".ai-rotate-hidden {visibility: hidden;}\n" .
2119
  ".ai-rotate-hidden-2 {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}\n" .
2120
+ ".ai-list-data, .ai-ip-data, .ai-filter-check, .ai-fallback, .ai-list-block, .ai-list-block-ip, .ai-list-block-filter {".AI_ALIGNMENT_CSS_HIDDEN_LIST."}\n" .
2121
+ ".ai-list-data, .ai-ip-data, .ai-filter-check, .ai-fallback {min-width: 1px;}\n" .
2122
  "";
2123
  }
2124
 
2237
  get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW ||
2238
  isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION]) ||
2239
  $ai_wp_data [AI_CLOSE_BUTTONS] ||
2240
+ $ai_wp_data [AI_PARALLAX] ||
2241
  $ai_wp_data [AI_HTML_ELEMENT_SELECTION] ||
2242
  !get_inline_styles () ||
2243
  get_admin_toolbar_debugging () && (get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_LOGGED_IN) != 0) ||
2254
  }
2255
 
2256
  if ($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
2257
+ // echo ".ai-close {position: relative;}\n";
2258
  // echo ".ai-close-width {width: auto !important;}\n";
2259
  echo ".ai-close-button {position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; background: url(".plugins_url ('css/images/close-button.png', AD_INSERTER_FILE).") no-repeat center center; cursor: pointer; z-index: 9; display: none;}\n";
2260
  echo ".ai-close-show {display: block;}\n";
2263
  echo ".ai-close-none {visibility: hidden;}\n";
2264
  }
2265
 
2266
+ if ($ai_wp_data [AI_PARALLAX] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
2267
+ // echo ".ai-parallax {width: 100%;}\n";
2268
+ echo ".ai-parallax-background {position: absolute; width: 100%; height: 100%; background-attachment: fixed; background-position: center; background-repeat: no-repeat;}\n";
2269
+ }
2270
+
2271
  // Before alignment CSS to not override alignment margin
2272
  if ($debugging) generate_debug_css_base ();
2273
 
2399
  if (preg_match_all ('/AI_POST_([_A-Z0-9]+)/', $js, $match)) {
2400
  foreach ($match [1] as $index => $post) {
2401
  $post_name = strtolower ($post);
2402
+ $js = str_replace ($match [0][$index], isset ($_POST [$post_name]) ? sanitize_text_field (urldecode ($_POST [$post_name])) : '', $js);
2403
  }
2404
  }
2405
 
2826
  isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION]) ||
2827
  $ai_wp_data [AI_CLIENT_SIDE_DETECTION] ||
2828
  ($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) ||
2829
+ $ai_wp_data [AI_PARALLAX] ||
2830
  $ai_wp_data [AI_CHECK_BLOCK] ||
2831
  $ai_wp_data [AI_LAZY_LOADING] ||
2832
  ($ai_wp_data [AI_TRACKING] && !isset ($ai_wp_data [AI_TRACKING_SHORTCODE_DISABLED])) ||
2890
  }
2891
  }
2892
 
2893
+ if (function_exists ('add_footer_inline_scripts_2') && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
2894
+ if ($ai_wp_data [AI_PARALLAX]) {
2895
+ echo ai_get_js ('ai-parallax');
2896
+ }
2897
+ }
2898
+
2899
  if ($client_side_dynamic_blocks || isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION])) {
2900
  echo ai_get_js ('ai-rotation');
2901
  }
3094
  '</p></div>';
3095
  }
3096
 
3097
+ if (defined ('AI_SETTINGS_ERROR')) {
3098
+ echo '<div class="notice notice-error is-dismissible" style="margin: 5px 15px 2px 0px;"><p>',
3099
+ /* translators: 1: Ad Inserter, 2, 3: HTML tags */
3100
+ _e ('Error: plugin settings corrupt', 'ad-inserter'),
3101
+ '</p></div>';
3102
+ }
3103
+
3104
  }
3105
  }
3106
 
4978
  return ($options);
4979
  }
4980
 
4981
+ function ai_get_option ($option_name, $default = false) {
4982
+ $ai_db_options = get_option ($option_name, $default);
4983
 
4984
  if ($ai_db_options === false) {
4985
  return $ai_db_options;
5053
  }
5054
 
5055
  if (is_multisite ()) {
5056
+ $ai_db_options_multisite = get_site_option (AI_OPTION_NAME, array ());
5057
  option_stripslashes ($ai_db_options_multisite);
5058
  }
5059
 
5060
  if (is_multisite () && multisite_main_for_all_blogs () && defined ('BLOG_ID_CURRENT_SITE')) {
5061
+ $ai_db_options = get_blog_option (BLOG_ID_CURRENT_SITE, AI_OPTION_NAME, array ());
5062
 
5063
  if (is_string ($ai_db_options) && substr ($ai_db_options, 0, 4) === ':AI:') {
5064
  $ai_db_options = unserialize (base64_decode (substr ($ai_db_options, 4), true));
5066
 
5067
  option_stripslashes ($ai_db_options);
5068
  } else {
5069
+ $ai_db_options = ai_get_option (AI_OPTION_NAME, array ());
5070
 
5071
  option_stripslashes ($ai_db_options);
5072
  }
5073
 
5074
  if (is_multisite () && !is_main_site () && defined ('BLOG_ID_CURRENT_SITE')) {
5075
+ $ai_db_options_main = get_blog_option (BLOG_ID_CURRENT_SITE, AI_OPTION_NAME, array ());
5076
 
5077
  if (is_string ($ai_db_options_main) && substr ($ai_db_options_main, 0, 4) === ':AI:') {
5078
  $ai_db_options_main = unserialize (base64_decode (substr ($ai_db_options_main, 4), true));
5858
  elseif ($option == AI_OPTION_DOMAIN_LIST ||
5859
  $option == 'NO_PARAGRAPH_COUNTING_INSIDE' ||
5860
  $option == AI_OPTION_BACKGROUND_COLOR ||
5861
+ $option == AI_OPTION_BLOCK_BACKGROUND_COLOR ||
5862
  $option == AI_OPTION_PARAGRAPH_TAGS ||
5863
  $option == AI_OPTION_COUNT_INSIDE_ELEMENTS ||
5864
  $option == AI_OPTION_IP_ADDRESS_LIST ||
5866
  $value = str_replace (array ("\\", "/", "?", "\"", "'", "<", ">", "[", "]", "'", '"'), "", $value);
5867
  $value = esc_html ($value);
5868
  }
5869
+ elseif ($option == AI_OPTION_BLOCK_WIDTH ||
5870
+ $option == AI_OPTION_BLOCK_HEIGHT) {
5871
+ $value = str_replace (array ("\"", "'", "<", ">", "[", "]", "'", '"'), "", $value);
5872
+ $value = esc_html ($value);
5873
+ }
5874
  elseif (
5875
  $option == AI_OPTION_PARAGRAPH_TEXT ||
5876
  $option == AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT ||
5933
  $option == AI_OPTION_LIMIT_CLICKS_PER_TIME_PERIOD ||
5934
  $option == AI_OPTION_LIMIT_CLICKS_TIME_PERIOD ||
5935
  $option == AI_OPTION_BACKGROUND_IMAGE ||
5936
+ $option == AI_OPTION_PARALLAX . '_1' ||
5937
+ $option == AI_OPTION_PARALLAX . '_2' ||
5938
+ $option == AI_OPTION_PARALLAX . '_3' ||
5939
+ $option == AI_OPTION_PARALLAX_IMAGE . '_1' ||
5940
+ $option == AI_OPTION_PARALLAX_IMAGE . '_2' ||
5941
+ $option == AI_OPTION_PARALLAX_IMAGE . '_3' ||
5942
+ $option == AI_OPTION_PARALLAX_SHIFT . '_1' ||
5943
+ $option == AI_OPTION_PARALLAX_SHIFT . '_2' ||
5944
+ $option == AI_OPTION_PARALLAX_SHIFT . '_3' ||
5945
+ $option == AI_OPTION_PARALLAX_LINK ||
5946
  $option == 'CLICK_FRAUD_PROTECTION_TIME' ||
5947
  $option == 'GLOBAL_VISITOR_LIMIT_CPT' ||
5948
  $option == 'GLOBAL_VISITOR_LIMIT_TIME' ||
6180
  if (isset ($_POST ['count'])) $preview_parameters ['count'] = $_POST ['count'];
6181
  if (isset ($_POST ['rotate'])) $preview_parameters ['rotate'] = $_POST ['rotate'];
6182
  if (isset ($_POST ['viewport'])) $preview_parameters ['viewport'] = $_POST ['viewport'];
6183
+ if (isset ($_POST ['fallback'])) $preview_parameters ['fallback'] = $_POST ['fallback'];
6184
 
6185
  if (function_exists ('ai_remote_preview')) {
6186
  ai_remote_preview ($block, $preview_parameters);
6514
  $ai_wp_data [AI_STICK_TO_THE_CONTENT] = false;
6515
  $ai_wp_data [AI_TRACKING] = false;
6516
  $ai_wp_data [AI_CLOSE_BUTTONS] = false;
6517
+ $ai_wp_data [AI_PARALLAX] = false;
6518
  $ai_wp_data [AI_CHECK_BLOCK] = false;
6519
  $ai_wp_data [AI_IFRAMES] = false;
6520
  $ai_wp_data [AI_ANIMATION] = false;
6656
  AI_STICK_TO_THE_CONTENT => $ai_wp_data [AI_STICK_TO_THE_CONTENT],
6657
  AI_TRACKING => $ai_wp_data [AI_TRACKING],
6658
  AI_CLOSE_BUTTONS => $ai_wp_data [AI_CLOSE_BUTTONS],
6659
+ AI_PARALLAX => $ai_wp_data [AI_PARALLAX],
6660
  AI_CHECK_BLOCK => $ai_wp_data [AI_CHECK_BLOCK],
6661
  AI_IFRAMES => $ai_wp_data [AI_IFRAMES],
6662
  AI_ANIMATION => $ai_wp_data [AI_ANIMATION],
6718
 
6719
  ai_load_options ();
6720
 
6721
+ if (!is_array ($ai_db_options)) {
6722
+ $ai_db_options = array ();
6723
+ define ('AI_SETTINGS_ERROR', true);
6724
+ }
6725
+
6726
  $extract_ok = ai_load_extract (false);
6727
 
6728
  $ai_custom_hooks = array ();
6737
 
6738
  $features_in_extract = $extract_ok && isset ($ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES]);
6739
 
6740
+ if (isset ($ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_USED_BLOCKS]) && is_string ($ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_USED_BLOCKS]) && strlen ($ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_USED_BLOCKS]) != 0) {
6741
  $used_blocks = @unserialize ($ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_USED_BLOCKS]);
6742
  } else $used_blocks = false;
6743
 
6769
  $ai_wp_data [AI_STICK_TO_THE_CONTENT] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_STICK_TO_THE_CONTENT];
6770
  $ai_wp_data [AI_TRACKING] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_TRACKING];
6771
  $ai_wp_data [AI_CLOSE_BUTTONS] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_CLOSE_BUTTONS];
6772
+ $ai_wp_data [AI_PARALLAX] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_PARALLAX];
6773
  $ai_wp_data [AI_CHECK_BLOCK] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_CHECK_BLOCK];
6774
  $ai_wp_data [AI_IFRAMES] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_IFRAMES];
6775
  $ai_wp_data [AI_ANIMATION] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_ANIMATION];
6941
  }
6942
 
6943
  if ($alignment_type != AI_ALIGNMENT_CUSTOM_CSS) {
6944
+ $size_css = $obj->size_background_style ();
6945
  // $size_name = strtolower (md5 ($size_css));
6946
  $size_name = ai_css_to_name ($size_css);
6947
  if (!in_array ($size_name, $alignments)) {
6990
  .ai-debug-special {background: #fb0; color: #000;}
6991
 
6992
  .ai-debug-ad-overlay {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #8f8; opacity: 0.6; z-index: 999999990}
6993
+
6994
+ .ai-debug-block ins.adsbygoogle[data-ad-status="unfilled"] .ai-debug-ad-overlay {display: none;}
6995
+ .ai-debug-block ins.adsbygoogle[data-ad-status="unfilled"] {background: url(http://via.placeholder.com/800x800/aaffaa/000000.png?text=NO%20AD%20SERVED); background-size: cover; background-repeat: no-repeat; background-position: center;}
6996
+
6997
  .ai-auto-ads {background-color: #84f;}
6998
  .ai-no-slot {background-color: #48f;}
6999
  .ai-debug-ad-info {position: absolute; top: 0; left: 0; overflow: hidden; width: auto; height: auto; font-family: arial; font-size: 11px; line-height: 11px; text-align: left; z-index: 999999991;}
7099
 
7100
 
7101
  function ai_css_to_name ($css) {
7102
+ return strtolower (rtrim (str_replace (array ('width', 'height', 'background', ' ', ':', ';', '#'), array ('w', 'h', 'b', '', '-', '-', ''), $css), '-'));
7103
  }
7104
 
7105
  function generate_selection_css () {
7220
  // Import Ad Inserter settings
7221
 
7222
  $settings = str_replace (array ("\\\""), array ("\""), $_POST ["export_settings_0"]);
7223
+ if (substr ($settings, 0, 4) === ':AI:') {
7224
+ $settings = substr ($settings, 4);
7225
+ }
7226
 
7227
  $ai_options = @unserialize (base64_decode ($settings));
7228
 
8608
  "disable" => "",
8609
  "check" => "",
8610
  "viewport" => "",
8611
+ "fallback" => "",
8612
  "adb" => "",
8613
  "tracking" => "",
8614
  "css" => "",
8756
  if ($parameters ['http'] != '' || in_array ('HTTP', $atts) || in_array ('http', $atts)) {
8757
  return AD_HTTP_SEPARATOR;
8758
  }
8759
+ if ($parameters ['fallback'] != '' || in_array ('FALLBACK', $atts) || in_array ('fallback', $atts)) {
8760
+ if (!isset ($ai_wp_data [AI_SHORTCODES]['fallback'])) $ai_wp_data [AI_SHORTCODES]['fallback'] = array ();
8761
+ $ai_wp_data [AI_SHORTCODES]['fallback'] []= $parameters;
8762
+ return AD_FALLBACK_SEPARATOR;
8763
+ }
8764
  if ($parameters ['group'] != '' || in_array ('GROUP', $atts) || in_array ('group', $atts)) {
8765
  if ($parameters ['group'] != '') {
8766
  $parameters ['group'] = mb_strtolower ($parameters ['group']);
9002
  if (isset ($ai_wp_data [AI_SHORTCODES]['head'])) {
9003
  $saved_head = $ai_wp_data [AI_SHORTCODES]['head'];
9004
  }
9005
+ if (isset ($ai_wp_data [AI_SHORTCODES]['fallback'])) {
9006
+ $saved_fallback = $ai_wp_data [AI_SHORTCODES]['fallback'];
9007
+ }
9008
  if (isset ($ai_wp_data [AI_SHORTCODES]['atts'])) {
9009
  $saved_atts = $ai_wp_data [AI_SHORTCODES]['atts'];
9010
  }
9030
  if (isset ($saved_rotate)) {
9031
  $ai_wp_data [AI_SHORTCODES]['rotate'] = $saved_rotate;
9032
  } else unset ($ai_wp_data [AI_SHORTCODES]['rotate']);
9033
+ if (isset ($saved_fallback)) {
9034
+ $ai_wp_data [AI_SHORTCODES]['fallback'] = $saved_fallback;
9035
+ } else unset ($ai_wp_data [AI_SHORTCODES]['fallback']);
9036
  if (isset ($saved_head)) {
9037
  $ai_wp_data [AI_SHORTCODES]['head'] = $saved_head;
9038
  } else unset ($ai_wp_data [AI_SHORTCODES]['head']);
10783
  }
10784
 
10785
 
10786
+ function ai_process_viewport_separators ($code, $shortcode_data) {
10787
  global $ai_wp_data;
10788
 
10789
+ $viewport_shortcode_data = $shortcode_data ['viewport'];
10790
+
10791
  preg_match_all ('/\|viewport([0-9]+?)\|/', $code, $matches);
10792
  if (count ($matches [1]) != 0) {
10793
  $viewport_parameters = array ();
10813
  } else array_unshift ($viewport_parameters, array ('viewport' => '', 'code' => ''));
10814
 
10815
  foreach ($codes as $viewport_code_index => $viewport_code) {
10816
+
10817
+ $viewport_code = ai_process_fallback_separator ($viewport_code, $shortcode_data);
10818
+
10819
  $separator_viewports = explode (',', strtolower ($viewport_parameters [$viewport_code_index]['viewport']));
10820
  foreach ($separator_viewports as $index => $separator_viewport) {
10821
  $separator_viewports [$index] = trim ($separator_viewport);
10883
  }
10884
 
10885
 
10886
+ function ai_process_fallback_separator ($code, $shortcode_data) {
10887
+ global $ai_wp_data;
10888
+
10889
+ $fallback_shortcode_data = $shortcode_data ['fallback'];
10890
+
10891
+ $processed_code = $code;
10892
+
10893
+ if (strpos ($code, AD_FALLBACK_SEPARATOR) !== false) {
10894
+
10895
+ $codes = explode (AD_FALLBACK_SEPARATOR, $code);
10896
+
10897
+ $processed_code = $codes [0];
10898
+
10899
+ // AdSense unfilled
10900
+ if (strtolower ($fallback_shortcode_data [0]['fallback']) == 'adsense') {
10901
+
10902
+ $insert_code = get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT;
10903
+ switch (strtolower ($fallback_shortcode_data [0]['code'])) {
10904
+ case 'insert':
10905
+ $insert_code = true;
10906
+ break;
10907
+ case 'show':
10908
+ $insert_code = false;
10909
+ break;
10910
+ }
10911
+
10912
+ $processed_code = "<div class='ai-fallback-adsense'>" . $processed_code . "</div>\n";
10913
+
10914
+ if ($insert_code) {
10915
+ $ai_code = base64_encode (ai_strip_js_markers (trim ($codes [1])));
10916
+
10917
+ $processed_code .= "<div data-code='$ai_code'></div>\n";
10918
+ } else {
10919
+ $processed_code .= "<div style='display: none;'>\n" . trim ($codes [1]) . "\n</div>\n";
10920
+ }
10921
+ }
10922
+ }
10923
+
10924
+ return $processed_code;
10925
+ }
10926
+
10927
+
10928
  function replace_ai_tags ($content, $general_tag = '') {
10929
  global $ai_wp_data;
10930
 
11340
  $ai_wp_data [AI_LAZY_LOADING] = false;
11341
  $ai_wp_data [AI_PAGE_BLOCKS] = 0;
11342
  $ai_wp_data [AI_GEOLOCATION] = false;
11343
+ //$ai_wp_data [AI_HTML_ELEMENT_SELECTION] = isset ($_POST ['html_element_selection']) ? (bool) $_POST ['html_element_selection'] : false;
11344
+ $ai_wp_data [AI_HTML_ELEMENT_SELECTION] = false;
11345
  $ai_wp_data [AI_MBSTRING_LOADED] = extension_loaded ('mbstring');
11346
  $ai_wp_data [AI_PROCESSING_TIME] = false;
11347
  $ai_wp_data [AI_FORCE_SERVERSIDE_CODE] = false;
11355
  $ai_wp_data [AI_FOOTER_INLINE_SCRIPTS] = false;
11356
  $ai_wp_data [AI_W3TC_DEBUGGING] = false;
11357
  $ai_wp_data [AI_CLIENT_SIDE_FILTER_CHECKS] = false;
11358
+ $ai_wp_data [AI_PARALLAX] = false;
11359
 
11360
  ai_load_settings ();
11361
 
11569
  function ai_dst_options ($options) {
11570
  global $ai_db_options, $ai_db_options_extract;
11571
 
11572
+ if (isset ($ai_db_options_extract [AI_EXTRACT_USED_BLOCKS]) && is_string ($ai_db_options_extract [AI_EXTRACT_USED_BLOCKS]) && strlen ($ai_db_options_extract [AI_EXTRACT_USED_BLOCKS]) != 0) {
11573
  $used_blocks = count (unserialize ($ai_db_options_extract [AI_EXTRACT_USED_BLOCKS]));
11574
  } else $used_blocks = '';
11575
 
class.php CHANGED
@@ -66,11 +66,13 @@ abstract class ai_BaseCodeBlock {
66
  var $count_names;
67
  var $roate_names;
68
  var $viewport_names;
 
69
 
70
  var $check_index;
71
  var $count_index;
72
  var $rotate_index;
73
  var $viewport_index;
 
74
 
75
  var $shortcodes;
76
 
@@ -122,11 +124,13 @@ abstract class ai_BaseCodeBlock {
122
  $this->count_names = null;
123
  $this->roate_names = null;
124
  $this->viewport_names = null;
 
125
 
126
  $this->check_index = 0;
127
  $this->count_index = 0;
128
  $this->rotate_index = 0;
129
  $this->viewport_index = 0;
 
130
 
131
  $this->client_side_filter_hook_check = false;
132
 
@@ -552,6 +556,12 @@ abstract class ai_BaseCodeBlock {
552
  return false;
553
  }
554
 
 
 
 
 
 
 
555
  if ($code === null) {
556
  $code = $this->ai_getCode ();
557
  }
@@ -657,6 +667,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
657
  $this->wp_options [AI_OPTION_SHOW_LABEL] = AI_DISABLED;
658
  $this->wp_options [AI_OPTION_BLOCK_WIDTH] = AD_EMPTY_DATA;
659
  $this->wp_options [AI_OPTION_BLOCK_HEIGHT] = AD_EMPTY_DATA;
 
660
  $this->wp_options [AI_OPTION_LAZY_LOADING] = AI_DISABLED;
661
  $this->wp_options [AI_OPTION_WAIT_FOR_INTERACTION] = AI_DISABLED;
662
  $this->wp_options [AI_OPTION_PROTECTED] = AI_DISABLED;
@@ -808,6 +819,15 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
808
  for ($viewport = 1; $viewport <= 6; $viewport ++) {
809
  $this->wp_options [AI_OPTION_DETECT_VIEWPORT . '_' . $viewport] = AI_DISABLED;
810
  }
 
 
 
 
 
 
 
 
 
811
  }
812
 
813
  public function get_disable_insertion (){
@@ -840,6 +860,11 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
840
  return $show_label;
841
  }
842
 
 
 
 
 
 
843
  public function get_lazy_loading (){
844
  $lazy_loading = isset ($this->wp_options [AI_OPTION_LAZY_LOADING]) ? $this->wp_options [AI_OPTION_LAZY_LOADING] : AI_DISABLED;
845
  if ($lazy_loading == '') $lazy_loading = AI_DISABLED;
@@ -1589,26 +1614,37 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1589
  return $sticky_parameters;
1590
  }
1591
 
1592
- public function size_style () {
1593
  $style = '';
1594
 
1595
  $width = trim ($this->get_block_width ());
1596
  $height = trim ($this->get_block_height ());
 
 
 
 
 
 
 
1597
 
1598
- if ($width != '') {
1599
  if (is_numeric ($width)) {
1600
  $width .= 'px';
1601
  }
1602
  $style .= ' width: ' . $width . ';';
1603
  }
1604
 
1605
- if ($height != '') {
1606
  if (is_numeric ($height)) {
1607
  $height .= 'px';
1608
  }
1609
  $style .= ' height: ' . $height . ';';
1610
  }
1611
 
 
 
 
 
1612
  return trim ($style);
1613
  }
1614
 
@@ -1673,14 +1709,14 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1673
  }
1674
 
1675
  if ($alignment_type != AI_ALIGNMENT_CUSTOM_CSS) {
1676
- $size_style = $this->size_style ();
1677
- if ($size_style != '') {
1678
- $size_style = ' ' . $size_style;
1679
  if (strpos ($style, "||") !== false) {
1680
  $styles = explode ("||", $style);
1681
- $style = implode ($size_style . "||", $styles);
1682
  }
1683
- $style .= $size_style;
1684
  }
1685
  }
1686
 
@@ -2861,6 +2897,9 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2861
  } else {
2862
  $processed_code = '';
2863
  foreach ($codes as $viewport_code_index => $viewport_code) {
 
 
 
2864
  $separator_viewports = explode (',', strtolower ($viewport_parameters [$viewport_code_index]['viewport']));
2865
  foreach ($separator_viewports as $index => $separator_viewport) {
2866
  $separator_viewports [$index] = trim ($separator_viewport);
@@ -2982,6 +3021,64 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2982
  return $processed_code;
2983
  }
2984
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2985
  public function ai_getProcessedCode ($force_close_button = false) {
2986
  global $ai_wp_data, $ad_inserter_globals, $block_object, $ai_total_hook_php_time, $filter_hooks;
2987
 
@@ -2998,11 +3095,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2998
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
2999
 
3000
  // Code for ad label, close button
 
3001
  $additional_code = '';
3002
  $check_block_code = false;
3003
 
3004
  if ($this->get_iframe () ? ($this->get_label_in_iframe () ? $ai_wp_data [AI_CODE_FOR_IFRAME] : !$ai_wp_data [AI_CODE_FOR_IFRAME]) : true) {
3005
- $additional_code .= $this->ai_getAdLabel ();
3006
  }
3007
 
3008
  $close_button = $this->get_close_button ();
@@ -3055,6 +3153,41 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3055
 
3056
  $additional_code .= "<span class='$button_class'{$timeout_code}{$closed_code}{$closed_block_code}></span>\n";
3057
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3058
  }
3059
 
3060
  $delay_showing_pageviews = $this->get_delay_showing ();
@@ -3150,8 +3283,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3150
  }
3151
 
3152
 
3153
- if ($additional_code != '') {
3154
- $additional_code_org = '<div class="ai-attributes">'."\n" . $additional_code . '</div>'."\n";
 
 
3155
 
3156
  $hook_start_time = microtime (true);
3157
  $additional_code = apply_filters ("ai_block_additional_code", $additional_code_org, $this->number);
@@ -3707,6 +3842,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3707
  }
3708
 
3709
  $ad = $this->ai_processViewportSeparators ($ad);
 
3710
 
3711
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
3712
  $debug_list = new ai_block_labels ('ai-debug-iframe');
@@ -3900,15 +4036,31 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3900
  // if (isset ($ai_wp_data [AI_SHORTCODES]['viewport'])) {
3901
  if (isset ($this->shortcodes ['viewport'])) {
3902
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
3903
- $this->w3tc_debug []= 'PROCESS VIEWPORT SHORTCODES';
3904
  }
3905
 
3906
  // $this->w3tc_code .= 'if ($ai_enabled) $ai_code = ai_process_viewport_separators ($ai_code, unserialize (base64_decode (\''.base64_encode (serialize ($ai_wp_data [AI_SHORTCODES]['viewport'])).'\')));';
3907
- $this->w3tc_code .= 'if ($ai_enabled) $ai_code = ai_process_viewport_separators ($ai_code, unserialize (base64_decode (\''.base64_encode (serialize ($this->shortcodes ['viewport'])).'\')));';
3908
 
3909
  $processed_code = $this->generate_html_from_w3tc_code ();
3910
  }
3911
  } else $processed_code = $this->ai_processViewportSeparators ($processed_code);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3912
  }
3913
 
3914
 
@@ -3918,7 +4070,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3918
  }
3919
 
3920
 
3921
- // Additional code (Ad label, close button)
3922
  if ($dynamic_blocks == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && $this->w3tc_code != '' && !defined ('AI_NO_W3TC') && $additional_code != '') {
3923
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
3924
  $this->w3tc_debug []= 'PROCESS ADDITIONAL CODE';
@@ -4796,11 +4948,22 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
4796
  $this->hide_debug_labels = true;
4797
  }
4798
 
 
 
 
 
 
 
 
 
 
 
 
 
4799
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
4800
  $processed_code = "<div class='ai-code'>\n" . $processed_code ."\n</div>\n";
4801
  }
4802
 
4803
- // if (function_exists ('ai_adb_block_actions') && $not_iframe_or_inside) ai_adb_block_actions ($this, $this->hide_debug_labels);
4804
 
4805
  // Process W3TC filter hook
4806
  if ($this->w3tc_code != '') {
@@ -4954,6 +5117,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
4954
  }
4955
  }
4956
 
 
 
 
 
 
 
4957
  if ($this->check_block) {
4958
  $this->check_block_style = $alignment_style;
4959
  $this->check_block_classes = $check_block_classes;
@@ -5518,6 +5687,37 @@ echo '</body>
5518
  }
5519
 
5520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5521
  public function get_visitor_max_impressions () {
5522
  $option = isset ($this->wp_options [AI_OPTION_VISITOR_MAX_IMPRESSIONS]) ? $this->wp_options [AI_OPTION_VISITOR_MAX_IMPRESSIONS] : DEFAULT_VISITOR_MAX_IMPRESSIONS;
5523
  if ($option == '0') $option = '';
@@ -6179,13 +6379,13 @@ echo '</body>
6179
 
6180
  public function generate_size_class ($block_class_name = null) {
6181
 
6182
- $size_style = $this->size_style ();
6183
 
6184
- if ($this->get_alignment_type () != AI_ALIGNMENT_CUSTOM_CSS && $size_style != '') {
6185
  if ($block_class_name == null) $block_class_name = get_block_class_name (true);
6186
  $block_class_name .= '-';
6187
 
6188
- return $block_class_name . ai_css_to_name ($size_style);
6189
  }
6190
 
6191
  return '';
@@ -9105,13 +9305,17 @@ echo '</body>
9105
  }
9106
  } else {
9107
  $code = $this->get_ad_data();
9108
- if (stripos ($code, '[adinserter') !== false && stripos ($code, 'viewport=') !== false) {
9109
- $ai_wp_data [AI_CLIENT_SIDE_DETECTION] = true;
9110
- $ai_wp_data [AI_CLIENT_SIDE_INSERTION] = true;
 
 
 
 
 
9111
  }
9112
  }
9113
 
9114
-
9115
  if (function_exists ('ai_extract_features_2')) ai_extract_features_2 ($this);
9116
 
9117
  if ($this->stick_to_the_content_class () != '' || $this->get_background ()) $ai_wp_data [AI_STICK_TO_THE_CONTENT] = true;
@@ -9555,9 +9759,11 @@ class ai_code_generator {
9555
  return array ('type' => AI_CODE_UNKNOWN);
9556
  }
9557
 
 
 
9558
  $amp = false;
9559
  $adsense_amp = AI_ADSENSE_AMP_DISABLED;
9560
- if (strpos (do_shortcode ($code), AD_AMP_SEPARATOR) !== false) {
9561
  $amp = true;
9562
  $adsense_amp = AI_ADSENSE_AMP_ABOVE_THE_FOLD;
9563
  }
66
  var $count_names;
67
  var $roate_names;
68
  var $viewport_names;
69
+ var $fallback_names;
70
 
71
  var $check_index;
72
  var $count_index;
73
  var $rotate_index;
74
  var $viewport_index;
75
+ var $fallback_index;
76
 
77
  var $shortcodes;
78
 
124
  $this->count_names = null;
125
  $this->roate_names = null;
126
  $this->viewport_names = null;
127
+ $this->fallback_names = null;
128
 
129
  $this->check_index = 0;
130
  $this->count_index = 0;
131
  $this->rotate_index = 0;
132
  $this->viewport_index = 0;
133
+ $this->fallback_index = 0;
134
 
135
  $this->client_side_filter_hook_check = false;
136
 
556
  return false;
557
  }
558
 
559
+ $parallax_options = false;
560
+ for ($index = 1; $index <= 3; $index ++) {
561
+ $parallax_options |= $this->get_parallax ($index) && $this->get_parallax_image ($index) != '';
562
+ if ($parallax_options) return false;
563
+ }
564
+
565
  if ($code === null) {
566
  $code = $this->ai_getCode ();
567
  }
667
  $this->wp_options [AI_OPTION_SHOW_LABEL] = AI_DISABLED;
668
  $this->wp_options [AI_OPTION_BLOCK_WIDTH] = AD_EMPTY_DATA;
669
  $this->wp_options [AI_OPTION_BLOCK_HEIGHT] = AD_EMPTY_DATA;
670
+ $this->wp_options [AI_OPTION_BLOCK_BACKGROUND_COLOR] = AD_EMPTY_DATA;
671
  $this->wp_options [AI_OPTION_LAZY_LOADING] = AI_DISABLED;
672
  $this->wp_options [AI_OPTION_WAIT_FOR_INTERACTION] = AI_DISABLED;
673
  $this->wp_options [AI_OPTION_PROTECTED] = AI_DISABLED;
819
  for ($viewport = 1; $viewport <= 6; $viewport ++) {
820
  $this->wp_options [AI_OPTION_DETECT_VIEWPORT . '_' . $viewport] = AI_DISABLED;
821
  }
822
+
823
+ for ($index = 1; $index <= 3; $index ++) {
824
+ $this->wp_options [AI_OPTION_PARALLAX . '_' . $index] = AI_DISABLED;
825
+ $this->wp_options [AI_OPTION_PARALLAX_IMAGE . '_' . $index] = AD_EMPTY_DATA;
826
+ $this->wp_options [AI_OPTION_PARALLAX_SHIFT . '_' . $index] = AD_EMPTY_DATA;
827
+ }
828
+
829
+ $this->wp_options [AI_OPTION_PARALLAX_LINK] = AD_EMPTY_DATA;
830
+ $this->wp_options [AI_OPTION_PARALLAX_LINK_NEW_TAB] = AI_DISABLED;
831
  }
832
 
833
  public function get_disable_insertion (){
860
  return $show_label;
861
  }
862
 
863
+ public function get_block_background_color (){
864
+ $option = isset ($this->wp_options [AI_OPTION_BLOCK_BACKGROUND_COLOR]) ? $this->wp_options [AI_OPTION_BLOCK_BACKGROUND_COLOR] : AD_EMPTY_DATA;
865
+ return $option;
866
+ }
867
+
868
  public function get_lazy_loading (){
869
  $lazy_loading = isset ($this->wp_options [AI_OPTION_LAZY_LOADING]) ? $this->wp_options [AI_OPTION_LAZY_LOADING] : AI_DISABLED;
870
  if ($lazy_loading == '') $lazy_loading = AI_DISABLED;
1614
  return $sticky_parameters;
1615
  }
1616
 
1617
+ public function size_background_style () {
1618
  $style = '';
1619
 
1620
  $width = trim ($this->get_block_width ());
1621
  $height = trim ($this->get_block_height ());
1622
+ $background = trim ($this->get_block_background_color ());
1623
+
1624
+ $parallax_options = false;
1625
+ for ($index = 1; $index <= 3; $index ++) {
1626
+ $parallax_options |= $this->get_parallax ($index) && $this->get_parallax_image ($index) != '';
1627
+ if ($parallax_options) break;
1628
+ }
1629
 
1630
+ if ($width != '' && !$this->get_close_button ()) {
1631
  if (is_numeric ($width)) {
1632
  $width .= 'px';
1633
  }
1634
  $style .= ' width: ' . $width . ';';
1635
  }
1636
 
1637
+ if ($height != '' && !$parallax_options) {
1638
  if (is_numeric ($height)) {
1639
  $height .= 'px';
1640
  }
1641
  $style .= ' height: ' . $height . ';';
1642
  }
1643
 
1644
+ if ($background != '') {
1645
+ $style .= ' background-color: ' . $background . ';';
1646
+ }
1647
+
1648
  return trim ($style);
1649
  }
1650
 
1709
  }
1710
 
1711
  if ($alignment_type != AI_ALIGNMENT_CUSTOM_CSS) {
1712
+ $size_background_style = $this->size_background_style ();
1713
+ if ($size_background_style != '') {
1714
+ $size_background_style = ' ' . $size_background_style;
1715
  if (strpos ($style, "||") !== false) {
1716
  $styles = explode ("||", $style);
1717
+ $style = implode ($size_background_style . "||", $styles);
1718
  }
1719
+ $style .= $size_background_style;
1720
  }
1721
  }
1722
 
2897
  } else {
2898
  $processed_code = '';
2899
  foreach ($codes as $viewport_code_index => $viewport_code) {
2900
+
2901
+ $viewport_code = $this->ai_processFallbackSeparator ($viewport_code);
2902
+
2903
  $separator_viewports = explode (',', strtolower ($viewport_parameters [$viewport_code_index]['viewport']));
2904
  foreach ($separator_viewports as $index => $separator_viewport) {
2905
  $separator_viewports [$index] = trim ($separator_viewport);
3021
  return $processed_code;
3022
  }
3023
 
3024
+ public function ai_processFallbackSeparator ($processed_code) {
3025
+ global $ai_wp_data;
3026
+
3027
+ $this->fallback_names = null;
3028
+
3029
+ if (strpos ($processed_code, AD_FALLBACK_SEPARATOR) !== false) {
3030
+ $codes = explode (AD_FALLBACK_SEPARATOR, $processed_code);
3031
+
3032
+ if ($ai_wp_data [AI_FORCE_SERVERSIDE_CODE]) {
3033
+ // Code for preview
3034
+ if ($this->fallback_index >= count ($codes)) {
3035
+ $this->fallback_index = 0;
3036
+ }
3037
+ $processed_code = trim ($codes [$this->fallback_index]);
3038
+
3039
+ $this->fallback_names []= _x('INACTIVE', 'fallback', 'ad-inserter');
3040
+ $this->fallback_names []= _x('ACTIVE', 'fallback', 'ad-inserter');
3041
+
3042
+ } else {
3043
+ $processed_code = $codes [0];
3044
+
3045
+ if (!$ai_wp_data [AI_WP_AMP_PAGE]) {
3046
+ // AdSense unfilled
3047
+ if (strtolower ($this->shortcodes ['fallback'][0]['fallback']) == 'adsense') {
3048
+
3049
+ $insert_code = get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT;
3050
+ switch (strtolower ($this->shortcodes ['fallback'][0]['code'])) {
3051
+ case 'insert':
3052
+ $insert_code = true;
3053
+ break;
3054
+ case 'show':
3055
+ $insert_code = false;
3056
+ break;
3057
+ }
3058
+
3059
+ $debug_fallback_code = '';
3060
+ if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
3061
+ $debug_fallback = new ai_block_labels ('ai-debug-fallback');
3062
+ $debug_fallback_code = $debug_fallback->bar (_x('FALLBACK CODE', 'Block', 'ad-inserter'), '', 'AdSense UNFILLED', '&nbsp;');
3063
+ }
3064
+
3065
+ $processed_code = "<div class='ai-fallback-adsense'>" . $processed_code . "</div>\n";
3066
+
3067
+ if ($insert_code) {
3068
+ $ai_code = $this->base64_encode_w3tc (ai_strip_js_markers ($debug_fallback_code . trim ($codes [1])), false);
3069
+
3070
+ $processed_code .= "<div data-code='$ai_code'></div>\n";
3071
+ } else {
3072
+ $processed_code .= "<div style='display: none;'>\n" . $debug_fallback_code . trim ($codes [1]) . "\n</div>\n";
3073
+ }
3074
+ }
3075
+ }
3076
+ }
3077
+ }
3078
+
3079
+ return $processed_code;
3080
+ }
3081
+
3082
  public function ai_getProcessedCode ($force_close_button = false) {
3083
  global $ai_wp_data, $ad_inserter_globals, $block_object, $ai_total_hook_php_time, $filter_hooks;
3084
 
3095
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
3096
 
3097
  // Code for ad label, close button
3098
+ $label_code = '';
3099
  $additional_code = '';
3100
  $check_block_code = false;
3101
 
3102
  if ($this->get_iframe () ? ($this->get_label_in_iframe () ? $ai_wp_data [AI_CODE_FOR_IFRAME] : !$ai_wp_data [AI_CODE_FOR_IFRAME]) : true) {
3103
+ $label_code = $this->ai_getAdLabel ();
3104
  }
3105
 
3106
  $close_button = $this->get_close_button ();
3153
 
3154
  $additional_code .= "<span class='$button_class'{$timeout_code}{$closed_code}{$closed_block_code}></span>\n";
3155
  }
3156
+
3157
+ $parallax_code = '';
3158
+ for ($index = 1; $index <= 3; $index ++) {
3159
+ if ($this->get_parallax ($index) && $this->get_parallax_image ($index) != '') {
3160
+ $shift = (int) $this->get_parallax_shift ($index);
3161
+
3162
+ $style = "background-image: url(\"".$this->get_parallax_image ($index)."\"); background-size: auto calc(100% + ".$shift."px);";
3163
+
3164
+
3165
+ $parallax_code .= "<div class='ai-parallax-background' data-shift='$shift' style='$style'></div>\n";
3166
+ }
3167
+ }
3168
+
3169
+ if ($parallax_code != '') {
3170
+ $link = trim ($this->get_parallax_link ());
3171
+ if ($link != '') {
3172
+ $target = '';
3173
+ if ($this->get_parallax_link_new_tab ()) {
3174
+ $target = " target='_blank'";
3175
+ }
3176
+ $parallax_code .= "<a class='ai-parallax-background' href='$link'$target></a>\n";
3177
+ }
3178
+
3179
+ $height = trim ($this->get_block_height ());
3180
+
3181
+ $height_style = '';
3182
+ if ($height != '') {
3183
+ if (is_numeric ($height)) {
3184
+ $height .= 'px';
3185
+ }
3186
+ $height_style = 'height: ' . $height . ';';
3187
+ }
3188
+
3189
+ $additional_code .= "<div class='ai-parallax' style='$height_style'>$parallax_code</div>\n";
3190
+ }
3191
  }
3192
 
3193
  $delay_showing_pageviews = $this->get_delay_showing ();
3283
  }
3284
 
3285
 
3286
+ if ($label_code != '' || $additional_code != '') {
3287
+ $additional_code_org = '';
3288
+ if ($label_code != '') $additional_code_org .= $label_code;
3289
+ if ($additional_code != '') $additional_code_org .= '<div class="ai-attributes" style="position: relative;">'."\n" . $additional_code . '</div>'."\n";
3290
 
3291
  $hook_start_time = microtime (true);
3292
  $additional_code = apply_filters ("ai_block_additional_code", $additional_code_org, $this->number);
3842
  }
3843
 
3844
  $ad = $this->ai_processViewportSeparators ($ad);
3845
+ $ad = $this->ai_processFallbackSeparator ($ad);
3846
 
3847
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
3848
  $debug_list = new ai_block_labels ('ai-debug-iframe');
4036
  // if (isset ($ai_wp_data [AI_SHORTCODES]['viewport'])) {
4037
  if (isset ($this->shortcodes ['viewport'])) {
4038
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
4039
+ $this->w3tc_debug []= 'PROCESS VIEWPORT SEPARATORS';
4040
  }
4041
 
4042
  // $this->w3tc_code .= 'if ($ai_enabled) $ai_code = ai_process_viewport_separators ($ai_code, unserialize (base64_decode (\''.base64_encode (serialize ($ai_wp_data [AI_SHORTCODES]['viewport'])).'\')));';
4043
+ $this->w3tc_code .= 'if ($ai_enabled) $ai_code = ai_process_viewport_separators ($ai_code, unserialize (base64_decode (\''.base64_encode (serialize ($this->shortcodes)).'\')));';
4044
 
4045
  $processed_code = $this->generate_html_from_w3tc_code ();
4046
  }
4047
  } else $processed_code = $this->ai_processViewportSeparators ($processed_code);
4048
+
4049
+
4050
+
4051
+ // [ADINSERTER FALLBACK]
4052
+
4053
+ if ($this->w3tc_code != '') {
4054
+ if (isset ($this->shortcodes ['fallback'])) {
4055
+ if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
4056
+ $this->w3tc_debug []= 'PROCESS FALLBACK SEPARATOR';
4057
+ }
4058
+
4059
+ $this->w3tc_code .= 'if ($ai_enabled) $ai_code = ai_process_fallback_separator ($ai_code, unserialize (base64_decode (\''.base64_encode (serialize ($this->shortcodes)).'\')));';
4060
+
4061
+ $processed_code = $this->generate_html_from_w3tc_code ();
4062
+ }
4063
+ } else $processed_code = $this->ai_processFallbackSeparator ($processed_code);
4064
  }
4065
 
4066
 
4070
  }
4071
 
4072
 
4073
+ // Additional code (Ad label, close button, parallax backgrounds)
4074
  if ($dynamic_blocks == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && $this->w3tc_code != '' && !defined ('AI_NO_W3TC') && $additional_code != '') {
4075
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
4076
  $this->w3tc_debug []= 'PROCESS ADDITIONAL CODE';
4948
  $this->hide_debug_labels = true;
4949
  }
4950
 
4951
+
4952
+
4953
+ if ($close_button && ($width = trim ($this->get_block_width ())) != '' && $this->get_alignment_type() != AI_ALIGNMENT_NO_WRAPPING) {
4954
+ if (is_numeric ($width)) {
4955
+ $width .= 'px';
4956
+ }
4957
+ $style .= 'width: ' . $width . ';';
4958
+
4959
+ $processed_code = "<div style='$style'>\n" . $processed_code ."\n</div>\n";
4960
+ }
4961
+
4962
+
4963
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
4964
  $processed_code = "<div class='ai-code'>\n" . $processed_code ."\n</div>\n";
4965
  }
4966
 
 
4967
 
4968
  // Process W3TC filter hook
4969
  if ($this->w3tc_code != '') {
5117
  }
5118
  }
5119
 
5120
+ $parallax_options = false;
5121
+ for ($index = 1; $index <= 3; $index ++) {
5122
+ $parallax_options |= $this->get_parallax ($index) && $this->get_parallax_image ($index) != '';
5123
+ if ($parallax_options) break;
5124
+ }
5125
+
5126
  if ($this->check_block) {
5127
  $this->check_block_style = $alignment_style;
5128
  $this->check_block_classes = $check_block_classes;
5687
  }
5688
 
5689
 
5690
+ public function get_parallax ($index) {
5691
+ $option_name = AI_OPTION_PARALLAX . '_' . $index;
5692
+ $option = isset ($this->wp_options [$option_name]) ? $this->wp_options [$option_name] : AI_DISABLED;
5693
+ return $option;
5694
+ }
5695
+
5696
+ public function get_parallax_image ($index) {
5697
+ $option_name = AI_OPTION_PARALLAX_IMAGE . '_' . $index;
5698
+ $option = isset ($this->wp_options [$option_name]) ? $this->wp_options [$option_name] : AD_EMPTY_DATA;
5699
+ return $option;
5700
+ }
5701
+
5702
+ public function get_parallax_shift ($index) {
5703
+ $option_name = AI_OPTION_PARALLAX_SHIFT . '_' . $index;
5704
+ $option = isset ($this->wp_options [$option_name]) ? $this->wp_options [$option_name] : AD_EMPTY_DATA;
5705
+ if ($option == '0') $option = '';
5706
+ return $option;
5707
+ }
5708
+
5709
+ public function get_parallax_link () {
5710
+ $option = isset ($this->wp_options [AI_OPTION_PARALLAX_LINK]) ? $this->wp_options [AI_OPTION_PARALLAX_LINK] : AD_EMPTY_DATA;
5711
+ return $option;
5712
+ }
5713
+
5714
+ public function get_parallax_link_new_tab () {
5715
+ $option = isset ($this->wp_options [AI_OPTION_PARALLAX_LINK_NEW_TAB]) ? $this->wp_options [AI_OPTION_PARALLAX_LINK_NEW_TAB] : AD_EMPTY_DATA;
5716
+ return $option;
5717
+ }
5718
+
5719
+
5720
+
5721
  public function get_visitor_max_impressions () {
5722
  $option = isset ($this->wp_options [AI_OPTION_VISITOR_MAX_IMPRESSIONS]) ? $this->wp_options [AI_OPTION_VISITOR_MAX_IMPRESSIONS] : DEFAULT_VISITOR_MAX_IMPRESSIONS;
5723
  if ($option == '0') $option = '';
6379
 
6380
  public function generate_size_class ($block_class_name = null) {
6381
 
6382
+ $size_background_style = $this->size_background_style ();
6383
 
6384
+ if ($this->get_alignment_type () != AI_ALIGNMENT_CUSTOM_CSS && $size_background_style != '') {
6385
  if ($block_class_name == null) $block_class_name = get_block_class_name (true);
6386
  $block_class_name .= '-';
6387
 
6388
+ return $block_class_name . ai_css_to_name ($size_background_style);
6389
  }
6390
 
6391
  return '';
9305
  }
9306
  } else {
9307
  $code = $this->get_ad_data();
9308
+ if (stripos ($code, '[adinserter') !== false) {
9309
+ if (stripos ($code, 'viewport=') !== false) {
9310
+ $ai_wp_data [AI_CLIENT_SIDE_DETECTION] = true;
9311
+ $ai_wp_data [AI_CLIENT_SIDE_INSERTION] = true;
9312
+ }
9313
+ if (stripos ($code, 'fallback=') !== false) {
9314
+ $ai_wp_data [AI_CLIENT_SIDE_INSERTION] = true;
9315
+ }
9316
  }
9317
  }
9318
 
 
9319
  if (function_exists ('ai_extract_features_2')) ai_extract_features_2 ($this);
9320
 
9321
  if ($this->stick_to_the_content_class () != '' || $this->get_background ()) $ai_wp_data [AI_STICK_TO_THE_CONTENT] = true;
9759
  return array ('type' => AI_CODE_UNKNOWN);
9760
  }
9761
 
9762
+ $code_expanded_shortodes = do_shortcode ($code);
9763
+
9764
  $amp = false;
9765
  $adsense_amp = AI_ADSENSE_AMP_DISABLED;
9766
+ if (strpos ($code_expanded_shortodes, AD_AMP_SEPARATOR) !== false) {
9767
  $amp = true;
9768
  $adsense_amp = AI_ADSENSE_AMP_ABOVE_THE_FOLD;
9769
  }
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.9');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
@@ -72,6 +72,7 @@ define ('AI_OPTION_DISABLE_INSERTION', 'disable_insertion');
72
  define ('AI_OPTION_SHOW_LABEL', 'show_label');
73
  define ('AI_OPTION_BLOCK_WIDTH', 'block_width');
74
  define ('AI_OPTION_BLOCK_HEIGHT', 'block_height');
 
75
  define ('AI_OPTION_LAZY_LOADING', 'lazy_loading');
76
  define ('AI_OPTION_WAIT_FOR_INTERACTION', 'wait_for_interaction');
77
  define ('AI_OPTION_PROTECTED', 'protected');
@@ -222,6 +223,12 @@ define ('AI_OPTION_LIMIT_CLICKS_PER_TIME_PERIOD', 'limit-clicks-per
222
  define ('AI_OPTION_LIMIT_CLICKS_TIME_PERIOD', 'limit-clicks-time');
223
  define ('AI_OPTION_TRIGGER_CLICK_FRAUD_PROTECTION', 'trigger-cfp');
224
 
 
 
 
 
 
 
225
  define ('AI_OPTION_DISABLED', 'disabled');
226
 
227
  define ('AI_OPTION_IMPORT', 'import');
@@ -250,6 +257,7 @@ define('AI_FORM_CLEAR_EXCEPTIONS', 'ai-clear-exceptions');
250
  define('AI_FORM_CLEAR_STATISTICS', 'ai-clear-statistics');
251
 
252
  define('AD_AUTHOR_SITE', '<!-- Powered by Ad Inserter Plugin -->');
 
253
  define('AD_VIEWPORT_SEPARATOR', '|viewport|');
254
  define('AD_CHECK_SEPARATOR', '|check|');
255
  define('AD_COUNT_SEPARATOR', '|count|');
@@ -1188,6 +1196,7 @@ define ('AI_DYNAMIC_BLOCKS', 73);
1188
  define ('AI_IP_TO_COUNTRY', 74); // Used in Ip2Country.php
1189
  define ('AI_CLIENT_SIDE_FILTER_CHECKS', 75);
1190
  define ('AI_LIMITS_FALLBACK_LEVEL', 76);
 
1191
 
1192
  define ('AI_CONTEXT_NONE', 0);
1193
  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.10');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
72
  define ('AI_OPTION_SHOW_LABEL', 'show_label');
73
  define ('AI_OPTION_BLOCK_WIDTH', 'block_width');
74
  define ('AI_OPTION_BLOCK_HEIGHT', 'block_height');
75
+ define ('AI_OPTION_BLOCK_BACKGROUND_COLOR', 'block-background-color');
76
  define ('AI_OPTION_LAZY_LOADING', 'lazy_loading');
77
  define ('AI_OPTION_WAIT_FOR_INTERACTION', 'wait_for_interaction');
78
  define ('AI_OPTION_PROTECTED', 'protected');
223
  define ('AI_OPTION_LIMIT_CLICKS_TIME_PERIOD', 'limit-clicks-time');
224
  define ('AI_OPTION_TRIGGER_CLICK_FRAUD_PROTECTION', 'trigger-cfp');
225
 
226
+ define ('AI_OPTION_PARALLAX', 'parallax');
227
+ define ('AI_OPTION_PARALLAX_IMAGE', 'parallax-image');
228
+ define ('AI_OPTION_PARALLAX_SHIFT', 'parallax-shift');
229
+ define ('AI_OPTION_PARALLAX_LINK', 'parallax-link');
230
+ define ('AI_OPTION_PARALLAX_LINK_NEW_TAB', 'parallax-link-new-tab');
231
+
232
  define ('AI_OPTION_DISABLED', 'disabled');
233
 
234
  define ('AI_OPTION_IMPORT', 'import');
257
  define('AI_FORM_CLEAR_STATISTICS', 'ai-clear-statistics');
258
 
259
  define('AD_AUTHOR_SITE', '<!-- Powered by Ad Inserter Plugin -->');
260
+ define('AD_FALLBACK_SEPARATOR', '|fallback|');
261
  define('AD_VIEWPORT_SEPARATOR', '|viewport|');
262
  define('AD_CHECK_SEPARATOR', '|check|');
263
  define('AD_COUNT_SEPARATOR', '|count|');
1196
  define ('AI_IP_TO_COUNTRY', 74); // Used in Ip2Country.php
1197
  define ('AI_CLIENT_SIDE_FILTER_CHECKS', 75);
1198
  define ('AI_LIMITS_FALLBACK_LEVEL', 76);
1199
+ define ('AI_PARALLAX', 77);
1200
 
1201
  define ('AI_CONTEXT_NONE', 0);
1202
  define ('AI_CONTEXT_CONTENT', 1);
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.7.9"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
@@ -550,7 +550,11 @@ table.ai-lists td {
550
  padding: 1px 0;
551
  }
552
 
553
- table.ai-lists .ai-button {
 
 
 
 
554
  display: none;
555
  outline: transparent;
556
  float: right;
1
  #ai-data {
2
+ font-family: "2.7.10"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
550
  padding: 1px 0;
551
  }
552
 
553
+ table.ai-images td {
554
+ padding: 2px 0;
555
+ }
556
+
557
+ table.ai-lists .ai-button, table.ai-images .ai-button {
558
  display: none;
559
  outline: transparent;
560
  float: right;
images/sa-1.png ADDED
Binary file
images/sa-2.gif ADDED
Binary file
includes/ace/mode-ai-html.js CHANGED
@@ -36,6 +36,7 @@ function add_ai_highlighting_rules (highlighter, highlight_rules) {
36
  highlighter.$ai_separators1 = highlighter.$lang.arrayToMap ("http|count|check".split ("|"));
37
  highlighter.$ai_separators2 = highlighter.$lang.arrayToMap ("head|amp".split ("|"));
38
  highlighter.$ai_separators3 = highlighter.$lang.arrayToMap ("rotate".split ("|"));
 
39
  highlighter.$ai_attributes = highlighter.$lang.arrayToMap ("block|code|name|group|ignore|viewport|debugger|adb|tracking|css|text|selectors|custom-field|random|data|share|time|counter|category|tag|taxonomy|id|url|url-parameter|referrer|client|scheduling|ip-address|country|disable".split ("|"));
40
 
41
  //WP shortcodes
@@ -84,8 +85,10 @@ function add_ai_highlighting_rules (highlighter, highlight_rules) {
84
  highlighter.$ai_separators1.hasOwnProperty (attribute.toLowerCase()) ? "string" :
85
  highlighter.$ai_separators2.hasOwnProperty (attribute.toLowerCase()) ? "identifier" :
86
  highlighter.$ai_separators3.hasOwnProperty (attribute.toLowerCase()) ? "variable.language" :
87
- // highlighter.$ai_separators4.hasOwnProperty (attribute.toLowerCase()) ? "paren" :
88
- // highlighter.$ai_separators5.hasOwnProperty (attribute.toLowerCase()) ? "keyword" :
 
 
89
  highlighter.$ai_attributes.hasOwnProperty (attribute.toLowerCase()) ? "entity.other.attribute-name.xml" : "text";
90
  },
91
  regex: "[a-zA-Z][-a-zA-Z0-9]*"
36
  highlighter.$ai_separators1 = highlighter.$lang.arrayToMap ("http|count|check".split ("|"));
37
  highlighter.$ai_separators2 = highlighter.$lang.arrayToMap ("head|amp".split ("|"));
38
  highlighter.$ai_separators3 = highlighter.$lang.arrayToMap ("rotate".split ("|"));
39
+ highlighter.$ai_separators4 = highlighter.$lang.arrayToMap ("fallback".split ("|"));
40
  highlighter.$ai_attributes = highlighter.$lang.arrayToMap ("block|code|name|group|ignore|viewport|debugger|adb|tracking|css|text|selectors|custom-field|random|data|share|time|counter|category|tag|taxonomy|id|url|url-parameter|referrer|client|scheduling|ip-address|country|disable".split ("|"));
41
 
42
  //WP shortcodes
85
  highlighter.$ai_separators1.hasOwnProperty (attribute.toLowerCase()) ? "string" :
86
  highlighter.$ai_separators2.hasOwnProperty (attribute.toLowerCase()) ? "identifier" :
87
  highlighter.$ai_separators3.hasOwnProperty (attribute.toLowerCase()) ? "variable.language" :
88
+ highlighter.$ai_separators4.hasOwnProperty (attribute.toLowerCase()) ? "support.php_tag" :
89
+ // highlighter.$ai_separators5.hasOwnProperty (attribute.toLowerCase()) ? "data" :
90
+ // highlighter.$ai_separators6.hasOwnProperty (attribute.toLowerCase()) ? "paren" :
91
+ // highlighter.$ai_separators7.hasOwnProperty (attribute.toLowerCase()) ? "keyword" :
92
  highlighter.$ai_attributes.hasOwnProperty (attribute.toLowerCase()) ? "entity.other.attribute-name.xml" : "text";
93
  },
94
  regex: "[a-zA-Z][-a-zA-Z0-9]*"
includes/ace/mode-ai-php.js CHANGED
@@ -36,6 +36,7 @@ function add_ai_highlighting_rules (highlighter, highlight_rules) {
36
  highlighter.$ai_separators1 = highlighter.$lang.arrayToMap ("http|count|check".split ("|"));
37
  highlighter.$ai_separators2 = highlighter.$lang.arrayToMap ("head|amp".split ("|"));
38
  highlighter.$ai_separators3 = highlighter.$lang.arrayToMap ("rotate".split ("|"));
 
39
  highlighter.$ai_attributes = highlighter.$lang.arrayToMap ("block|code|name|group|ignore|viewport|debugger|adb|tracking|css|text|selectors|custom-field|random|data|share|time|counter|category|tag|taxonomy|id|url|url-parameter|referrer|client|scheduling|ip-address|country|disable".split ("|"));
40
 
41
  //WP shortcodes
@@ -84,8 +85,10 @@ function add_ai_highlighting_rules (highlighter, highlight_rules) {
84
  highlighter.$ai_separators1.hasOwnProperty (attribute.toLowerCase()) ? "string" :
85
  highlighter.$ai_separators2.hasOwnProperty (attribute.toLowerCase()) ? "identifier" :
86
  highlighter.$ai_separators3.hasOwnProperty (attribute.toLowerCase()) ? "variable.language" :
87
- // highlighter.$ai_separators4.hasOwnProperty (attribute.toLowerCase()) ? "paren" :
88
- // highlighter.$ai_separators5.hasOwnProperty (attribute.toLowerCase()) ? "keyword" :
 
 
89
  highlighter.$ai_attributes.hasOwnProperty (attribute.toLowerCase()) ? "entity.other.attribute-name.xml" : "text";
90
  },
91
  regex: "[a-zA-Z][-a-zA-Z0-9]*"
36
  highlighter.$ai_separators1 = highlighter.$lang.arrayToMap ("http|count|check".split ("|"));
37
  highlighter.$ai_separators2 = highlighter.$lang.arrayToMap ("head|amp".split ("|"));
38
  highlighter.$ai_separators3 = highlighter.$lang.arrayToMap ("rotate".split ("|"));
39
+ highlighter.$ai_separators4 = highlighter.$lang.arrayToMap ("fallback".split ("|"));
40
  highlighter.$ai_attributes = highlighter.$lang.arrayToMap ("block|code|name|group|ignore|viewport|debugger|adb|tracking|css|text|selectors|custom-field|random|data|share|time|counter|category|tag|taxonomy|id|url|url-parameter|referrer|client|scheduling|ip-address|country|disable".split ("|"));
41
 
42
  //WP shortcodes
85
  highlighter.$ai_separators1.hasOwnProperty (attribute.toLowerCase()) ? "string" :
86
  highlighter.$ai_separators2.hasOwnProperty (attribute.toLowerCase()) ? "identifier" :
87
  highlighter.$ai_separators3.hasOwnProperty (attribute.toLowerCase()) ? "variable.language" :
88
+ highlighter.$ai_separators4.hasOwnProperty (attribute.toLowerCase()) ? "support.php_tag" :
89
+ // highlighter.$ai_separators5.hasOwnProperty (attribute.toLowerCase()) ? "data" :
90
+ // highlighter.$ai_separators6.hasOwnProperty (attribute.toLowerCase()) ? "paren" :
91
+ // highlighter.$ai_separators7.hasOwnProperty (attribute.toLowerCase()) ? "keyword" :
92
  highlighter.$ai_attributes.hasOwnProperty (attribute.toLowerCase()) ? "entity.other.attribute-name.xml" : "text";
93
  },
94
  regex: "[a-zA-Z][-a-zA-Z0-9]*"
includes/js/ai-ads.js CHANGED
@@ -53,9 +53,10 @@ function ai_process_adsense_ad (element) {
53
  function ai_process_adsense_ads () {
54
  // jQuery('ins ins iframe').each (function () {
55
  jQuery('ins > ins > iframe[src*="google"]:visible').each (function () {
56
- var dummy_container = jQuery (this).closest ('.ai-dummy-ad');
57
  // if (!dummy_container.length) ai_process_adsense_ad (this);
58
- if (!dummy_container.length) ai_process_adsense_ad (this);
 
59
  });
60
  }
61
 
@@ -86,12 +87,33 @@ jQuery(document).ready(function($) {
86
  if (ai_debug) console.log ('AI ADSENSE DATA', 'END');
87
  });
88
 
89
- $(window).on ('load', function () {
90
- if (!ai_preview_window) setTimeout (function() {ai_process_adsense_ads (jQuery);}, 150);
91
- });
92
-
93
  });
94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  function getAllUrlParams (url) {
96
 
97
  // get query string from url (optional) or window
53
  function ai_process_adsense_ads () {
54
  // jQuery('ins ins iframe').each (function () {
55
  jQuery('ins > ins > iframe[src*="google"]:visible').each (function () {
56
+ // var dummy_container = jQuery (this).closest ('.ai-dummy-ad');
57
  // if (!dummy_container.length) ai_process_adsense_ad (this);
58
+ // if (!dummy_container.length)
59
+ ai_process_adsense_ad (this);
60
  });
61
  }
62
 
87
  if (ai_debug) console.log ('AI ADSENSE DATA', 'END');
88
  });
89
 
90
+ // $(window).on ('load', function () {
91
+ // if (!ai_preview_window) setTimeout (function() {ai_process_adsense_ads (jQuery);}, 500);
92
+ // });
 
93
  });
94
 
95
+ if (!ai_preview_window) {
96
+ const targetNode = document.querySelector ('body');
97
+ const config = {attributes: false, childList: true, subtree: true};
98
+ const ai_process_adsense_callback = function (mutationsList, observer) {
99
+ // Use traditional 'for loops' for IE 11
100
+ for (const mutation of mutationsList) {
101
+ if (mutation.type === 'childList' &&
102
+ mutation.addedNodes.length &&
103
+ mutation.addedNodes [0].tagName == 'IFRAME' &&
104
+ mutation.addedNodes [0].getAttribute ('width') != null &&
105
+ mutation.addedNodes [0].getAttribute ('height') != null &&
106
+ !!mutation.addedNodes [0].closest ('.adsbygoogle')) {
107
+ ai_process_adsense_ad (mutation.addedNodes [0]);
108
+ }
109
+ }
110
+ };
111
+
112
+ const observer = new MutationObserver (ai_process_adsense_callback);
113
+ observer.observe (targetNode, config);
114
+ }
115
+
116
+
117
  function getAllUrlParams (url) {
118
 
119
  // get query string from url (optional) or window
includes/js/ai-ads.min.js CHANGED
@@ -1,6 +1,6 @@
1
- var adsense_ad_names=[],ai_preview_window="undefined"!==typeof ai_preview;
2
  function ai_process_adsense_ad(a){a=jQuery(a);var c=a.attr("width"),e=a.attr("height"),b=getAllUrlParams(a.attr("src"));if("undefined"!==typeof b.client){var g=b.client.replace("ca-",""),d=b.slotname,h=b.ifi;b=jQuery('<div class="ai-debug-ad-overlay"></div>');var f="";"undefined"!==typeof d?(f="","undefined"!==typeof adsense_ad_names.publisher_id&&adsense_ad_names.publisher_id==g&&"undefined"!==typeof adsense_ad_names[d]&&(f='<div class="ai-info ai-info-2">'+adsense_ad_names[d]+"</div>"),f='<div class="ai-info ai-info-1">'+
3
- d+"</div>"+f):0!=a.closest("div.google-auto-placed").length?(b.addClass("ai-auto-ads"),f='<div class="ai-info ai-info-1">Auto ads</div>'):b.addClass("ai-no-slot");c=jQuery('<div class="ai-debug-ad-info"><div class="ai-info ai-info-1">AdSense #'+h+'</div><div class="ai-info ai-info-2">'+c+"x"+e+"</div>"+f+"</div>");a.after(c);ai_preview_window||a.after(b)}}
4
- function ai_process_adsense_ads(){jQuery('ins > ins > iframe[src*="google"]:visible').each(function(){jQuery(this).closest(".ai-dummy-ad").length||ai_process_adsense_ad(this)})}
5
- jQuery(document).ready(function(a){a.post("AI_AJAXURL",{action:"ai_ajax",ai_check:"AI_NONCE","adsense-ad-units":{ai:1}}).done(function(c){if(""!=c)try{adsense_ad_names=JSON.parse(c)}catch(e){}}).fail(function(c,e,b){}).always(function(c){});a(window).on("load",function(){ai_preview_window||setTimeout(function(){ai_process_adsense_ads(jQuery)},150)})});
6
- function getAllUrlParams(a){var c=a?a.split("?")[1]:window.location.search.slice(1);a={};if(c){c=c.split("#")[0];c=c.split("&");for(var e=0;e<c.length;e++){var b=c[e].split("="),g=void 0,d=b[0].replace(/\[\d*\]/,function(h){g=h.slice(1,-1);return""});b="undefined"===typeof b[1]?"":b[1];d=d.toLowerCase();b=b.toLowerCase();a[d]?("string"===typeof a[d]&&(a[d]=[a[d]]),"undefined"===typeof g?a[d].push(b):a[d][g]=b):a[d]=b}}return a};
1
+ var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.arrayIteratorImpl=function(a){var c=0;return function(){return c<a.length?{done:!1,value:a[c++]}:{done:!0}}};$jscomp.arrayIterator=function(a){return{next:$jscomp.arrayIteratorImpl(a)}};$jscomp.makeIterator=function(a){var c="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return c?c.call(a):$jscomp.arrayIterator(a)};var adsense_ad_names=[],ai_preview_window="undefined"!==typeof ai_preview;
2
  function ai_process_adsense_ad(a){a=jQuery(a);var c=a.attr("width"),e=a.attr("height"),b=getAllUrlParams(a.attr("src"));if("undefined"!==typeof b.client){var g=b.client.replace("ca-",""),d=b.slotname,h=b.ifi;b=jQuery('<div class="ai-debug-ad-overlay"></div>');var f="";"undefined"!==typeof d?(f="","undefined"!==typeof adsense_ad_names.publisher_id&&adsense_ad_names.publisher_id==g&&"undefined"!==typeof adsense_ad_names[d]&&(f='<div class="ai-info ai-info-2">'+adsense_ad_names[d]+"</div>"),f='<div class="ai-info ai-info-1">'+
3
+ d+"</div>"+f):0!=a.closest("div.google-auto-placed").length?(b.addClass("ai-auto-ads"),f='<div class="ai-info ai-info-1">Auto ads</div>'):b.addClass("ai-no-slot");c=jQuery('<div class="ai-debug-ad-info"><div class="ai-info ai-info-1">AdSense #'+h+'</div><div class="ai-info ai-info-2">'+c+"x"+e+"</div>"+f+"</div>");a.after(c);ai_preview_window||a.after(b)}}function ai_process_adsense_ads(){jQuery('ins > ins > iframe[src*="google"]:visible').each(function(){ai_process_adsense_ad(this)})}
4
+ jQuery(document).ready(function(a){a.post("AI_AJAXURL",{action:"ai_ajax",ai_check:"AI_NONCE","adsense-ad-units":{ai:1}}).done(function(c){if(""!=c)try{adsense_ad_names=JSON.parse(c)}catch(e){}}).fail(function(c,e,b){}).always(function(c){})});
5
+ if(!ai_preview_window){var targetNode=document.querySelector("body"),config={attributes:!1,childList:!0,subtree:!0},ai_process_adsense_callback=function(a,c){for(var e=$jscomp.makeIterator(a),b=e.next();!b.done;b=e.next())b=b.value,"childList"===b.type&&b.addedNodes.length&&"IFRAME"==b.addedNodes[0].tagName&&null!=b.addedNodes[0].getAttribute("width")&&null!=b.addedNodes[0].getAttribute("height")&&b.addedNodes[0].closest(".adsbygoogle")&&ai_process_adsense_ad(b.addedNodes[0])},observer=new MutationObserver(ai_process_adsense_callback);
6
+ observer.observe(targetNode,config)}function getAllUrlParams(a){var c=a?a.split("?")[1]:window.location.search.slice(1);a={};if(c){c=c.split("#")[0];c=c.split("&");for(var e=0;e<c.length;e++){var b=c[e].split("="),g=void 0,d=b[0].replace(/\[\d*\]/,function(h){g=h.slice(1,-1);return""});b="undefined"===typeof b[1]?"":b[1];d=d.toLowerCase();b=b.toLowerCase();a[d]?("string"===typeof a[d]&&(a[d]=[a[d]]),"undefined"===typeof g?a[d].push(b):a[d][g]=b):a[d]=b}}return a};
includes/js/ai-insert.js CHANGED
@@ -282,6 +282,78 @@ ai_insert_viewport_code = function (id) {
282
  }
283
  }
284
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
  ai_insert_code_by_class = function (id) {
286
  var ai_block_div = document.getElementsByClassName (id) [0];
287
 
@@ -293,7 +365,7 @@ ai_insert_code_by_class = function (id) {
293
  }
294
 
295
  ai_insert_client_code = function (id, len) {
296
- var ai_debug = typeof ai_debugging !== 'undefined'; // 3
297
  // var ai_debug = false;
298
 
299
  var ai_block_div = document.getElementsByClassName (id) [0];
@@ -355,6 +427,24 @@ function ai_process_elements () {
355
  ai_process_elements_active = true;
356
  }
357
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
 
359
  /*globals jQuery,Window,HTMLElement,HTMLDocument,HTMLCollection,NodeList,MutationObserver */
360
  /*exported Arrive*/
282
  }
283
  }
284
 
285
+ ai_insert_adsense_fallback_codes = function (adsense_unfilled_ins) {
286
+ var ai_debug = typeof ai_debugging !== 'undefined'; // 3
287
+ // var ai_debug = false;
288
+
289
+ adsense_unfilled_ins.style.display = "none";
290
+
291
+ var fallback_div = adsense_unfilled_ins.closest ('.ai-fallback-adsense').nextElementSibling;
292
+
293
+ if (!!fallback_div.getAttribute ('data-code')) {
294
+ var inserted = ai_insert_code (fallback_div);
295
+
296
+ if (inserted) {
297
+ ai_process_elements ();
298
+ }
299
+ } else {
300
+ fallback_div.style.display = "block";
301
+ }
302
+
303
+ if (ai_debug) {
304
+ console.log ('AI FALLBACK ADSENSE UNFILLED:', adsense_unfilled_ins.closest ('.AI_FUNCT_GET_BLOCK_CLASS_NAME').classList.value, !!fallback_div.getAttribute ('data-code') ? 'INSERT' : 'SHOW');
305
+ }
306
+ }
307
+
308
+ //ai_insert_fallback_codes = function () {
309
+ // var ai_debug = typeof ai_debugging !== 'undefined'; // 3
310
+ //// var ai_debug = false;
311
+
312
+ // var ai_fallback_divs = document.getElementsByClassName ('ai-fallback-adsense');
313
+
314
+ // var fallback_check = ai_fallback_divs.length;
315
+ // if (ai_debug && fallback_check) {
316
+ // console.log ('');
317
+ // console.log ('AI FALLBACK CHECK ADSENSE:', ai_fallback_divs.length, 'block' + (ai_fallback_divs.length == 1 ? '' : 's')) ;
318
+ // }
319
+
320
+ // for (var adsense = 0; adsense < ai_fallback_divs.length; adsense ++) {
321
+ // var adsense_div = ai_fallback_divs [adsense];
322
+ // var adsense_unfilled_ins = adsense_div.querySelector ('ins.adsbygoogle[data-ad-status="filled"]');
323
+
324
+ // if (!!adsense_unfilled_ins) {
325
+ // adsense_unfilled_ins.style.display = "none";
326
+
327
+ // var fallback_div = adsense_div.nextElementSibling;
328
+ // var insert = !!fallback_div.getAttribute ('data-code');
329
+
330
+ // if (insert) {
331
+ // if (ai_debug) {
332
+ // var block = fallback_div.getAttribute ('data-block');
333
+ // console.log ('AI INSERT FALLBACK CODE FOR BLOCK', block);
334
+ // }
335
+
336
+ // var inserted = ai_insert_code (fallback_div);
337
+
338
+ // if (inserted) {
339
+ // ai_process_elements ();
340
+ // }
341
+ // } else {
342
+ // if (ai_debug) {
343
+ // var block = fallback_div.getAttribute ('data-block');
344
+ // console.log ('AI SHOW FALLBACK CODE FOR BLOCK', block);
345
+ // }
346
+
347
+ // fallback_div.style.display = "block";
348
+ // }
349
+ // }
350
+ // }
351
+
352
+ // if (ai_debug && fallback_check) {
353
+ // console.log ('');
354
+ // }
355
+ //}
356
+
357
  ai_insert_code_by_class = function (id) {
358
  var ai_block_div = document.getElementsByClassName (id) [0];
359
 
365
  }
366
 
367
  ai_insert_client_code = function (id, len) {
368
+ var ai_debug = typeof ai_debugging !== 'undefined'; // 4
369
  // var ai_debug = false;
370
 
371
  var ai_block_div = document.getElementsByClassName (id) [0];
427
  ai_process_elements_active = true;
428
  }
429
 
430
+ const targetNode = document.querySelector ('body');
431
+ const config = {attributes: true, childList: false, subtree: true};
432
+ const ai_adsense_callback = function (mutationsList, observer) {
433
+ // Use traditional 'for loops' for IE 11
434
+ for (const mutation of mutationsList) {
435
+ if (mutation.type === 'attributes' && mutation.attributeName == 'data-ad-status' && mutation.target.dataset.adStatus == 'unfilled' && !!mutation.target.closest ('.ai-fallback-adsense')) {
436
+ ai_insert_adsense_fallback_codes (mutation.target);
437
+ }
438
+ }
439
+ };
440
+
441
+ const observer = new MutationObserver (ai_adsense_callback);
442
+ observer.observe (targetNode, config);
443
+
444
+ // Later, we can stop observing
445
+ //observer.disconnect();
446
+
447
+
448
 
449
  /*globals jQuery,Window,HTMLElement,HTMLDocument,HTMLCollection,NodeList,MutationObserver */
450
  /*exported Arrive*/
includes/js/ai-insert.min.js CHANGED
@@ -1,22 +1,25 @@
1
- ai_insert=function(c,h,t){for(var n=-1!=h.indexOf(":eq")?jQuery(h):document.querySelectorAll(h),u=0,y=n.length;u<y;u++){var b=n[u];selector_string=b.hasAttribute("id")?"#"+b.getAttribute("id"):b.hasAttribute("class")?"."+b.getAttribute("class").replace(RegExp(" ","g"),"."):"";var v=document.createElement("div");v.innerHTML=t;var m=v.getElementsByClassName("ai-selector-counter")[0];null!=m&&(m.innerText=u+1);m=v.getElementsByClassName("ai-debug-name ai-main")[0];if(null!=m){var l="";"before"==c?l=
2
- ai_front.insertion_before:"after"==c?l=ai_front.insertion_after:"prepend"==c?l=ai_front.insertion_prepend:"append"==c?l=ai_front.insertion_append:"replace-content"==c?l=ai_front.insertion_replace_content:"replace-element"==c&&(l=ai_front.insertion_replace_element);-1==selector_string.indexOf(".ai-viewports")&&(m.innerText=l+" "+h+" ("+b.tagName.toLowerCase()+selector_string+")")}m=document.createRange();l=!0;try{var w=m.createContextualFragment(v.innerHTML)}catch(r){l=!1}"before"==c?l?b.parentNode.insertBefore(w,
3
- b):jQuery(v.innerHTML).insertBefore(jQuery(b)):"after"==c?l?b.parentNode.insertBefore(w,b.nextSibling):jQuery(v.innerHTML).insertBefore(jQuery(b.nextSibling)):"prepend"==c?l?b.insertBefore(w,b.firstChild):jQuery(v.innerHTML).insertBefore(jQuery(b.firstChild)):"append"==c?l?b.insertBefore(w,null):jQuery(v.innerHTML).appendTo(jQuery(b)):"replace-content"==c?(b.innerHTML="",l?b.insertBefore(w,null):jQuery(v.innerHTML).appendTo(jQuery(b))):"replace-element"==c&&(l?b.parentNode.insertBefore(w,b):jQuery(v.innerHTML).insertBefore(jQuery(b)),
4
- b.parentNode.removeChild(b))}};
5
- ai_insert_code=function(c){function h(m,l){return null==m?!1:m.classList?m.classList.contains(l):-1<(" "+m.className+" ").indexOf(" "+l+" ")}function t(m,l){null!=m&&(m.classList?m.classList.add(l):m.className+=" "+l)}function n(m,l){null!=m&&(m.classList?m.classList.remove(l):m.className=m.className.replace(new RegExp("(^|\\b)"+l.split(" ").join("|")+"(\\b|$)","gi")," "))}if("undefined"!=typeof c){var u=!1;if(h(c,"no-visibility-check")||c.offsetWidth||c.offsetHeight||c.getClientRects().length){u=
6
- c.getAttribute("data-code");var y=c.getAttribute("data-insertion"),b=c.getAttribute("data-selector");if(null!=u)if(null!=y&&null!=b){if(-1!=b.indexOf(":eq")?jQuery(b).length:document.querySelectorAll(b).length)ai_insert(y,b,b64d(u)),n(c,"ai-viewports")}else{y=document.createRange();b=!0;try{var v=y.createContextualFragment(b64d(u))}catch(m){b=!1}b?c.parentNode.insertBefore(v,c.nextSibling):jQuery(b64d(u)).insertBefore(jQuery(c.nextSibling));n(c,"ai-viewports")}u=!0}else v=c.previousElementSibling,
7
- h(v,"ai-debug-bar")&&h(v,"ai-debug-script")&&(n(v,"ai-debug-script"),t(v,"ai-debug-viewport-invisible")),n(c,"ai-viewports");return u}};
8
- ai_insert_list_code=function(c){var h=document.getElementsByClassName(c)[0];if("undefined"!=typeof h){var t=ai_insert_code(h),n=h.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME");if(n){t||n.removeAttribute("data-ai");var u=n.querySelectorAll(".ai-debug-block");n&&u.length&&(n.classList.remove("ai-list-block"),n.classList.remove("ai-list-block-ip"),n.classList.remove("ai-list-block-filter"),n.style.visibility="",n.classList.contains("ai-remove-position")&&(n.style.position=""))}h.classList.remove(c);t&&
9
- ai_process_elements()}};ai_insert_viewport_code=function(c){var h=document.getElementsByClassName(c)[0];if("undefined"!=typeof h){var t=ai_insert_code(h);h.classList.remove(c);t&&(c=h.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME"),null!=c&&(t=h.getAttribute("style"),null!=t&&c.setAttribute("style",c.getAttribute("style")+" "+t)));setTimeout(function(){h.removeAttribute("style")},2);ai_process_elements()}};
10
- ai_insert_code_by_class=function(c){var h=document.getElementsByClassName(c)[0];"undefined"!=typeof h&&(ai_insert_code(h),h.classList.remove(c))};ai_insert_client_code=function(c,h){var t=document.getElementsByClassName(c)[0];if("undefined"!=typeof t){var n=t.getAttribute("data-code");null!=n&&ai_check_block()&&ai_check_and_insert_block()&&(t.setAttribute("data-code",n.substring(Math.floor(h/19))),ai_insert_code_by_class(c),t.remove())}};ai_process_elements_active=!1;
 
 
11
  function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data"));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check"));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks();
12
  "function"==typeof ai_process_impressions&&1==ai_tracking_finished&&ai_process_impressions();"function"==typeof ai_install_click_trackers&&1==ai_tracking_finished&&ai_install_click_trackers();"function"==typeof ai_install_close_buttons&&ai_install_close_buttons(document)},5);ai_process_elements_active=!0}
13
- var Arrive=function(c,h,t){function n(r,d,e){b.addMethod(d,e,r.unbindEvent);b.addMethod(d,e,r.unbindEventWithSelectorOrCallback);b.addMethod(d,e,r.unbindEventWithSelectorAndCallback)}function u(r){r.arrive=l.bindEvent;n(l,r,"unbindArrive");r.leave=w.bindEvent;n(w,r,"unbindLeave")}if(c.MutationObserver&&"undefined"!==typeof HTMLElement){var y=0,b=function(){var r=HTMLElement.prototype.matches||HTMLElement.prototype.webkitMatchesSelector||HTMLElement.prototype.mozMatchesSelector||HTMLElement.prototype.msMatchesSelector;
14
- return{matchesSelector:function(d,e){return d instanceof HTMLElement&&r.call(d,e)},addMethod:function(d,e,f){var a=d[e];d[e]=function(){if(f.length==arguments.length)return f.apply(this,arguments);if("function"==typeof a)return a.apply(this,arguments)}},callCallbacks:function(d,e){e&&e.options.onceOnly&&1==e.firedElems.length&&(d=[d[0]]);for(var f=0,a;a=d[f];f++)a&&a.callback&&a.callback.call(a.elem,a.elem);e&&e.options.onceOnly&&1==e.firedElems.length&&e.me.unbindEventWithSelectorAndCallback.call(e.target,
15
- e.selector,e.callback)},checkChildNodesRecursively:function(d,e,f,a){for(var g=0,k;k=d[g];g++)f(k,e,a)&&a.push({callback:e.callback,elem:k}),0<k.childNodes.length&&b.checkChildNodesRecursively(k.childNodes,e,f,a)},mergeArrays:function(d,e){var f={},a;for(a in d)d.hasOwnProperty(a)&&(f[a]=d[a]);for(a in e)e.hasOwnProperty(a)&&(f[a]=e[a]);return f},toElementsArray:function(d){"undefined"===typeof d||"number"===typeof d.length&&d!==c||(d=[d]);return d}}}(),v=function(){var r=function(){this._eventsBucket=
16
- [];this._beforeRemoving=this._beforeAdding=null};r.prototype.addEvent=function(d,e,f,a){d={target:d,selector:e,options:f,callback:a,firedElems:[]};this._beforeAdding&&this._beforeAdding(d);this._eventsBucket.push(d);return d};r.prototype.removeEvent=function(d){for(var e=this._eventsBucket.length-1,f;f=this._eventsBucket[e];e--)d(f)&&(this._beforeRemoving&&this._beforeRemoving(f),(f=this._eventsBucket.splice(e,1))&&f.length&&(f[0].callback=null))};r.prototype.beforeAdding=function(d){this._beforeAdding=
17
- d};r.prototype.beforeRemoving=function(d){this._beforeRemoving=d};return r}(),m=function(r,d){var e=new v,f=this,a={fireOnAttributesModification:!1};e.beforeAdding(function(g){var k=g.target;if(k===c.document||k===c)k=document.getElementsByTagName("html")[0];var p=new MutationObserver(function(x){d.call(this,x,g)});var q=r(g.options);p.observe(k,q);g.observer=p;g.me=f});e.beforeRemoving(function(g){g.observer.disconnect()});this.bindEvent=function(g,k,p){k=b.mergeArrays(a,k);for(var q=b.toElementsArray(this),
18
- x=0;x<q.length;x++)e.addEvent(q[x],g,k,p)};this.unbindEvent=function(){var g=b.toElementsArray(this);e.removeEvent(function(k){for(var p=0;p<g.length;p++)if(this===t||k.target===g[p])return!0;return!1})};this.unbindEventWithSelectorOrCallback=function(g){var k=b.toElementsArray(this);e.removeEvent("function"===typeof g?function(p){for(var q=0;q<k.length;q++)if((this===t||p.target===k[q])&&p.callback===g)return!0;return!1}:function(p){for(var q=0;q<k.length;q++)if((this===t||p.target===k[q])&&p.selector===
19
- g)return!0;return!1})};this.unbindEventWithSelectorAndCallback=function(g,k){var p=b.toElementsArray(this);e.removeEvent(function(q){for(var x=0;x<p.length;x++)if((this===t||q.target===p[x])&&q.selector===g&&q.callback===k)return!0;return!1})};return this},l=new function(){function r(f,a,g){return b.matchesSelector(f,a.selector)&&(f._id===t&&(f._id=y++),-1==a.firedElems.indexOf(f._id))?(a.firedElems.push(f._id),!0):!1}var d={fireOnAttributesModification:!1,onceOnly:!1,existing:!1};l=new m(function(f){var a=
20
- {attributes:!1,childList:!0,subtree:!0};f.fireOnAttributesModification&&(a.attributes=!0);return a},function(f,a){f.forEach(function(g){var k=g.addedNodes,p=g.target,q=[];null!==k&&0<k.length?b.checkChildNodesRecursively(k,a,r,q):"attributes"===g.type&&r(p,a,q)&&q.push({callback:a.callback,elem:p});b.callCallbacks(q,a)})});var e=l.bindEvent;l.bindEvent=function(f,a,g){"undefined"===typeof g?(g=a,a=d):a=b.mergeArrays(d,a);var k=b.toElementsArray(this);if(a.existing){for(var p=[],q=0;q<k.length;q++)for(var x=
21
- k[q].querySelectorAll(f),z=0;z<x.length;z++)p.push({callback:g,elem:x[z]});if(a.onceOnly&&p.length)return g.call(p[0].elem,p[0].elem);setTimeout(b.callCallbacks,1,p)}e.call(this,f,a,g)};return l},w=new function(){function r(f,a){return b.matchesSelector(f,a.selector)}var d={};w=new m(function(){return{childList:!0,subtree:!0}},function(f,a){f.forEach(function(g){g=g.removedNodes;var k=[];null!==g&&0<g.length&&b.checkChildNodesRecursively(g,a,r,k);b.callCallbacks(k,a)})});var e=w.bindEvent;w.bindEvent=
22
- function(f,a,g){"undefined"===typeof g?(g=a,a=d):a=b.mergeArrays(d,a);e.call(this,f,a,g)};return w};h&&u(h.fn);u(HTMLElement.prototype);u(NodeList.prototype);u(HTMLCollection.prototype);u(HTMLDocument.prototype);u(Window.prototype);h={};n(l,h,"unbindAllArrive");n(w,h,"unbindAllLeave");return h}}(window,"undefined"===typeof jQuery?null:jQuery,void 0);
 
1
+ var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.arrayIteratorImpl=function(a){var h=0;return function(){return h<a.length?{done:!1,value:a[h++]}:{done:!0}}};$jscomp.arrayIterator=function(a){return{next:$jscomp.arrayIteratorImpl(a)}};$jscomp.makeIterator=function(a){var h="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return h?h.call(a):$jscomp.arrayIterator(a)};
2
+ ai_insert=function(a,h,q){for(var k=-1!=h.indexOf(":eq")?jQuery(h):document.querySelectorAll(h),u=0,y=k.length;u<y;u++){var c=k[u];selector_string=c.hasAttribute("id")?"#"+c.getAttribute("id"):c.hasAttribute("class")?"."+c.getAttribute("class").replace(RegExp(" ","g"),"."):"";var v=document.createElement("div");v.innerHTML=q;var n=v.getElementsByClassName("ai-selector-counter")[0];null!=n&&(n.innerText=u+1);n=v.getElementsByClassName("ai-debug-name ai-main")[0];if(null!=n){var m="";"before"==a?m=
3
+ ai_front.insertion_before:"after"==a?m=ai_front.insertion_after:"prepend"==a?m=ai_front.insertion_prepend:"append"==a?m=ai_front.insertion_append:"replace-content"==a?m=ai_front.insertion_replace_content:"replace-element"==a&&(m=ai_front.insertion_replace_element);-1==selector_string.indexOf(".ai-viewports")&&(n.innerText=m+" "+h+" ("+c.tagName.toLowerCase()+selector_string+")")}n=document.createRange();m=!0;try{var w=n.createContextualFragment(v.innerHTML)}catch(t){m=!1}"before"==a?m?c.parentNode.insertBefore(w,
4
+ c):jQuery(v.innerHTML).insertBefore(jQuery(c)):"after"==a?m?c.parentNode.insertBefore(w,c.nextSibling):jQuery(v.innerHTML).insertBefore(jQuery(c.nextSibling)):"prepend"==a?m?c.insertBefore(w,c.firstChild):jQuery(v.innerHTML).insertBefore(jQuery(c.firstChild)):"append"==a?m?c.insertBefore(w,null):jQuery(v.innerHTML).appendTo(jQuery(c)):"replace-content"==a?(c.innerHTML="",m?c.insertBefore(w,null):jQuery(v.innerHTML).appendTo(jQuery(c))):"replace-element"==a&&(m?c.parentNode.insertBefore(w,c):jQuery(v.innerHTML).insertBefore(jQuery(c)),
5
+ c.parentNode.removeChild(c))}};
6
+ ai_insert_code=function(a){function h(n,m){return null==n?!1:n.classList?n.classList.contains(m):-1<(" "+n.className+" ").indexOf(" "+m+" ")}function q(n,m){null!=n&&(n.classList?n.classList.add(m):n.className+=" "+m)}function k(n,m){null!=n&&(n.classList?n.classList.remove(m):n.className=n.className.replace(new RegExp("(^|\\b)"+m.split(" ").join("|")+"(\\b|$)","gi")," "))}if("undefined"!=typeof a){var u=!1;if(h(a,"no-visibility-check")||a.offsetWidth||a.offsetHeight||a.getClientRects().length){u=
7
+ a.getAttribute("data-code");var y=a.getAttribute("data-insertion"),c=a.getAttribute("data-selector");if(null!=u)if(null!=y&&null!=c){if(-1!=c.indexOf(":eq")?jQuery(c).length:document.querySelectorAll(c).length)ai_insert(y,c,b64d(u)),k(a,"ai-viewports")}else{y=document.createRange();c=!0;try{var v=y.createContextualFragment(b64d(u))}catch(n){c=!1}c?a.parentNode.insertBefore(v,a.nextSibling):jQuery(b64d(u)).insertBefore(jQuery(a.nextSibling));k(a,"ai-viewports")}u=!0}else v=a.previousElementSibling,
8
+ h(v,"ai-debug-bar")&&h(v,"ai-debug-script")&&(k(v,"ai-debug-script"),q(v,"ai-debug-viewport-invisible")),k(a,"ai-viewports");return u}};
9
+ ai_insert_list_code=function(a){var h=document.getElementsByClassName(a)[0];if("undefined"!=typeof h){var q=ai_insert_code(h),k=h.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME");if(k){q||k.removeAttribute("data-ai");var u=k.querySelectorAll(".ai-debug-block");k&&u.length&&(k.classList.remove("ai-list-block"),k.classList.remove("ai-list-block-ip"),k.classList.remove("ai-list-block-filter"),k.style.visibility="",k.classList.contains("ai-remove-position")&&(k.style.position=""))}h.classList.remove(a);q&&
10
+ ai_process_elements()}};ai_insert_viewport_code=function(a){var h=document.getElementsByClassName(a)[0];if("undefined"!=typeof h){var q=ai_insert_code(h);h.classList.remove(a);q&&(a=h.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME"),null!=a&&(q=h.getAttribute("style"),null!=q&&a.setAttribute("style",a.getAttribute("style")+" "+q)));setTimeout(function(){h.removeAttribute("style")},2);ai_process_elements()}};
11
+ ai_insert_adsense_fallback_codes=function(a){a.style.display="none";a=a.closest(".ai-fallback-adsense").nextElementSibling;a.getAttribute("data-code")?ai_insert_code(a)&&ai_process_elements():a.style.display="block"};ai_insert_code_by_class=function(a){var h=document.getElementsByClassName(a)[0];"undefined"!=typeof h&&(ai_insert_code(h),h.classList.remove(a))};
12
+ ai_insert_client_code=function(a,h){var q=document.getElementsByClassName(a)[0];if("undefined"!=typeof q){var k=q.getAttribute("data-code");null!=k&&ai_check_block()&&ai_check_and_insert_block()&&(q.setAttribute("data-code",k.substring(Math.floor(h/19))),ai_insert_code_by_class(a),q.remove())}};ai_process_elements_active=!1;
13
  function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data"));"function"==typeof ai_process_filter_hooks&&ai_process_filter_hooks(jQuery(".ai-filter-check"));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks();
14
  "function"==typeof ai_process_impressions&&1==ai_tracking_finished&&ai_process_impressions();"function"==typeof ai_install_click_trackers&&1==ai_tracking_finished&&ai_install_click_trackers();"function"==typeof ai_install_close_buttons&&ai_install_close_buttons(document)},5);ai_process_elements_active=!0}
15
+ var targetNode=document.querySelector("body"),config={attributes:!0,childList:!1,subtree:!0},ai_adsense_callback=function(a,h){for(var q=$jscomp.makeIterator(a),k=q.next();!k.done;k=q.next())k=k.value,"attributes"===k.type&&"data-ad-status"==k.attributeName&&"unfilled"==k.target.dataset.adStatus&&k.target.closest(".ai-fallback-adsense")&&ai_insert_adsense_fallback_codes(k.target)},observer=new MutationObserver(ai_adsense_callback);observer.observe(targetNode,config);
16
+ var Arrive=function(a,h,q){function k(t,d,e){c.addMethod(d,e,t.unbindEvent);c.addMethod(d,e,t.unbindEventWithSelectorOrCallback);c.addMethod(d,e,t.unbindEventWithSelectorAndCallback)}function u(t){t.arrive=m.bindEvent;k(m,t,"unbindArrive");t.leave=w.bindEvent;k(w,t,"unbindLeave")}if(a.MutationObserver&&"undefined"!==typeof HTMLElement){var y=0,c=function(){var t=HTMLElement.prototype.matches||HTMLElement.prototype.webkitMatchesSelector||HTMLElement.prototype.mozMatchesSelector||HTMLElement.prototype.msMatchesSelector;
17
+ return{matchesSelector:function(d,e){return d instanceof HTMLElement&&t.call(d,e)},addMethod:function(d,e,f){var b=d[e];d[e]=function(){if(f.length==arguments.length)return f.apply(this,arguments);if("function"==typeof b)return b.apply(this,arguments)}},callCallbacks:function(d,e){e&&e.options.onceOnly&&1==e.firedElems.length&&(d=[d[0]]);for(var f=0,b;b=d[f];f++)b&&b.callback&&b.callback.call(b.elem,b.elem);e&&e.options.onceOnly&&1==e.firedElems.length&&e.me.unbindEventWithSelectorAndCallback.call(e.target,
18
+ e.selector,e.callback)},checkChildNodesRecursively:function(d,e,f,b){for(var g=0,l;l=d[g];g++)f(l,e,b)&&b.push({callback:e.callback,elem:l}),0<l.childNodes.length&&c.checkChildNodesRecursively(l.childNodes,e,f,b)},mergeArrays:function(d,e){var f={},b;for(b in d)d.hasOwnProperty(b)&&(f[b]=d[b]);for(b in e)e.hasOwnProperty(b)&&(f[b]=e[b]);return f},toElementsArray:function(d){"undefined"===typeof d||"number"===typeof d.length&&d!==a||(d=[d]);return d}}}(),v=function(){var t=function(){this._eventsBucket=
19
+ [];this._beforeRemoving=this._beforeAdding=null};t.prototype.addEvent=function(d,e,f,b){d={target:d,selector:e,options:f,callback:b,firedElems:[]};this._beforeAdding&&this._beforeAdding(d);this._eventsBucket.push(d);return d};t.prototype.removeEvent=function(d){for(var e=this._eventsBucket.length-1,f;f=this._eventsBucket[e];e--)d(f)&&(this._beforeRemoving&&this._beforeRemoving(f),(f=this._eventsBucket.splice(e,1))&&f.length&&(f[0].callback=null))};t.prototype.beforeAdding=function(d){this._beforeAdding=
20
+ d};t.prototype.beforeRemoving=function(d){this._beforeRemoving=d};return t}(),n=function(t,d){var e=new v,f=this,b={fireOnAttributesModification:!1};e.beforeAdding(function(g){var l=g.target;if(l===a.document||l===a)l=document.getElementsByTagName("html")[0];var p=new MutationObserver(function(x){d.call(this,x,g)});var r=t(g.options);p.observe(l,r);g.observer=p;g.me=f});e.beforeRemoving(function(g){g.observer.disconnect()});this.bindEvent=function(g,l,p){l=c.mergeArrays(b,l);for(var r=c.toElementsArray(this),
21
+ x=0;x<r.length;x++)e.addEvent(r[x],g,l,p)};this.unbindEvent=function(){var g=c.toElementsArray(this);e.removeEvent(function(l){for(var p=0;p<g.length;p++)if(this===q||l.target===g[p])return!0;return!1})};this.unbindEventWithSelectorOrCallback=function(g){var l=c.toElementsArray(this);e.removeEvent("function"===typeof g?function(p){for(var r=0;r<l.length;r++)if((this===q||p.target===l[r])&&p.callback===g)return!0;return!1}:function(p){for(var r=0;r<l.length;r++)if((this===q||p.target===l[r])&&p.selector===
22
+ g)return!0;return!1})};this.unbindEventWithSelectorAndCallback=function(g,l){var p=c.toElementsArray(this);e.removeEvent(function(r){for(var x=0;x<p.length;x++)if((this===q||r.target===p[x])&&r.selector===g&&r.callback===l)return!0;return!1})};return this},m=new function(){function t(f,b,g){return c.matchesSelector(f,b.selector)&&(f._id===q&&(f._id=y++),-1==b.firedElems.indexOf(f._id))?(b.firedElems.push(f._id),!0):!1}var d={fireOnAttributesModification:!1,onceOnly:!1,existing:!1};m=new n(function(f){var b=
23
+ {attributes:!1,childList:!0,subtree:!0};f.fireOnAttributesModification&&(b.attributes=!0);return b},function(f,b){f.forEach(function(g){var l=g.addedNodes,p=g.target,r=[];null!==l&&0<l.length?c.checkChildNodesRecursively(l,b,t,r):"attributes"===g.type&&t(p,b,r)&&r.push({callback:b.callback,elem:p});c.callCallbacks(r,b)})});var e=m.bindEvent;m.bindEvent=function(f,b,g){"undefined"===typeof g?(g=b,b=d):b=c.mergeArrays(d,b);var l=c.toElementsArray(this);if(b.existing){for(var p=[],r=0;r<l.length;r++)for(var x=
24
+ l[r].querySelectorAll(f),z=0;z<x.length;z++)p.push({callback:g,elem:x[z]});if(b.onceOnly&&p.length)return g.call(p[0].elem,p[0].elem);setTimeout(c.callCallbacks,1,p)}e.call(this,f,b,g)};return m},w=new function(){function t(f,b){return c.matchesSelector(f,b.selector)}var d={};w=new n(function(){return{childList:!0,subtree:!0}},function(f,b){f.forEach(function(g){g=g.removedNodes;var l=[];null!==g&&0<g.length&&c.checkChildNodesRecursively(g,b,t,l);c.callCallbacks(l,b)})});var e=w.bindEvent;w.bindEvent=
25
+ function(f,b,g){"undefined"===typeof g?(g=b,b=d):b=c.mergeArrays(d,b);e.call(this,f,b,g)};return w};h&&u(h.fn);u(HTMLElement.prototype);u(NodeList.prototype);u(HTMLCollection.prototype);u(HTMLDocument.prototype);u(Window.prototype);h={};k(m,h,"unbindAllArrive");k(w,h,"unbindAllLeave");return h}}(window,"undefined"===typeof jQuery?null:jQuery,void 0);
includes/preview.php CHANGED
@@ -29,7 +29,7 @@ function padding_margin_code ($close_button, $class, $sticky_parameters, $wrappe
29
  }
30
 
31
 
32
- function check_count_rotate_code ($obj, $check, $count, $rotate, $viewport) {
33
 
34
  if ($obj->check_names !== null) : ?>
35
  <div style="display: inline-block; margin: 10px 0;">
@@ -92,6 +92,22 @@ function check_count_rotate_code ($obj, $check, $count, $rotate, $viewport) {
92
  ?>
93
  </select>
94
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  <?php
96
  endif;
97
  }
@@ -137,8 +153,9 @@ function generate_code_preview (
137
  $count = isset ($preview_parameters ['count']) ? $preview_parameters ['count'] : 0;
138
  $rotate = isset ($preview_parameters ['rotate']) ? $preview_parameters ['rotate'] : 0;
139
  $viewport = isset ($preview_parameters ['viewport']) ? $preview_parameters ['viewport'] : 0;
 
140
 
141
- $separators = isset ($preview_parameters ['check']) || isset ($preview_parameters ['count']) || isset ($preview_parameters ['rotate']) || isset ($preview_parameters ['viewport']);
142
 
143
  if ($background && $body_background) {
144
  $vertical_position = AI_STICK_TO_THE_TOP;
@@ -234,6 +251,7 @@ function generate_code_preview (
234
  $obj->count_index = $count;
235
  $obj->rotate_index = $rotate;
236
  $obj->viewport_index = $viewport;
 
237
 
238
  $obj->hide_debug_labels = true;
239
  $block_code = $obj->ai_getProcessedCode (true);
@@ -268,7 +286,7 @@ function generate_code_preview (
268
  <script type='text/javascript' src='<?php echo includes_url ('js/jquery/jquery.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
269
  <script type='text/javascript' src='<?php echo admin_url ('load-scripts.php?c=0&amp;load%5B%5D=jquery-core,jquery-migrate,utils,jquery-ui-core&amp;ver='); ?><?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
270
  <script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/effect.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
271
- <script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/widget.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
272
  <script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/button.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
273
  <script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/spinner.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
274
  <link rel='stylesheet' href='<?php echo plugins_url ('css/jquery-ui-1.10.3.custom.min.css', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>' media='all' />
@@ -422,6 +440,9 @@ function generate_code_preview (
422
  const ID_CSS_ALIGNMENT_STICKY_TOP = "#css-" + AI_ALIGNMENT_STICKY_TOP;
423
  const ID_CSS_ALIGNMENT_STICKY_BOTTOM = "#css-" + AI_ALIGNMENT_STICKY_BOTTOM;
424
  const ID_CSS_ALIGNMENT_STICKY = "#css-" + AI_ALIGNMENT_STICKY;
 
 
 
425
 
426
  const AI_ALIGNMENT_CSS_STICKY = '<?php echo AI_ALIGNMENT_CSS_STICKY; ?>';
427
 
@@ -495,6 +516,9 @@ function generate_code_preview (
495
  var viewport = $("select#viewport option:selected").attr('value');
496
  if (typeof viewport == 'undefined') viewport = 0; else viewport = parseInt (viewport);
497
 
 
 
 
498
  var param = {
499
  'action': 'ai_ajax_backend',
500
  'read_only': <?php echo $read_only; ?>,
@@ -518,7 +542,8 @@ function generate_code_preview (
518
  'check': check,
519
  'count': count,
520
  'rotate': rotate,
521
- 'viewport': viewport
 
522
  };
523
 
524
  // console.log (param);
@@ -847,7 +872,8 @@ function generate_code_preview (
847
  } else
848
  if (alignment == AI_ALIGNMENT_STICKY) {
849
  $(ID_CSS_ALIGNMENT_STICKY).css('display', 'inline-block');
850
- style = $(ID_CSS_ALIGNMENT_STICKY).text ();
 
851
  } else
852
  if (alignment == AI_ALIGNMENT_CUSTOM_CSS) {
853
  $("#custom-css").show();
@@ -1077,11 +1103,16 @@ function generate_code_preview (
1077
 
1078
  if (sticky_context != context) return;
1079
 
1080
- var alignment = parseInt ($("select#block-alignment option:selected").attr ('value'));
1081
  var horizontal_position = parseInt ($("select#horizontal-position option:selected").attr('value'));
1082
  var vertical_position = parseInt ($("select#vertical-position option:selected").attr('value'));
1083
- var background = $("input#background").is(":checked");
1084
- var body_background = horizontal_position == AI_STICK_HORIZONTAL_CENTER && <?php echo $body_background ? 'true' : 'false'; ?>;
 
 
 
 
 
1085
 
1086
  var background_css = '';
1087
 
@@ -1116,17 +1147,14 @@ function generate_code_preview (
1116
  var sticky_css = vertical_position_css + horizontal_position_css;
1117
 
1118
  if (horizontal_position == AI_STICK_HORIZONTAL_CENTER && background) {
1119
- var background_color = $("#bkg-color").attr('value');
1120
  if (background_color != '') {
1121
  sticky_css = sticky_css + ' background-color: ' + background_color + ';';
1122
  }
1123
 
1124
- var background_image = $("#bkg-image").attr('value');
1125
  if (background_image != '') {
1126
  sticky_css = sticky_css + ' background-image: url(' + background_image + ');';
1127
  }
1128
 
1129
- var background_size = parseInt ($("select#bkg-size option:selected").attr('value'));
1130
  if (background_size != AI_BACKGROUND_SIZE_DEFAULT) {
1131
  switch (background_size) {
1132
  case AI_BACKGROUND_SIZE_COVER:
@@ -1141,7 +1169,6 @@ function generate_code_preview (
1141
  }
1142
  }
1143
 
1144
- var background_repeat = parseInt ($("select#bkg-repeat option:selected").attr('value'));
1145
  if (background_repeat != AI_BACKGROUND_REPEAT_DEFAULT) {
1146
  switch (background_repeat) {
1147
  case AI_BACKGROUND_REPEAT_NO:
@@ -1167,7 +1194,11 @@ function generate_code_preview (
1167
  }
1168
 
1169
  } else {
 
1170
  var sticky_css = $('#css-' + AI_ALIGNMENT_STICKY + ' .ai-sticky-css').text ();
 
 
 
1171
  }
1172
 
1173
  var vertical_margin = spinner_vertical_margin.spinner ("value");
@@ -1187,10 +1218,38 @@ function generate_code_preview (
1187
  }
1188
  }
1189
 
1190
- $('#css-' + AI_ALIGNMENT_STICKY + ' .ai-sticky-css').text (sticky_css);
1191
- // if (context != STICKY_CONTEXT_CUSTOM_CSS) {
1192
- // $("input#custom-css").val ($('#css-' + AI_ALIGNMENT_STICKY).text ());
1193
- // }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1194
 
1195
  // wrapper.removeClass ('ai-sticky-content').removeClass ('ai-sticky-left').removeClass ('ai-sticky-right').removeClass ('ai-sticky-scroll').removeClass ('ai-sticky-background').removeClass ('ai-fixed-background');
1196
  wrapper.removeClass ('ai-sticky-content').removeClass ('ai-sticky-left').removeClass ('ai-sticky-right').removeClass ('ai-sticky-scroll').removeClass ('ai-sticky-background');
@@ -1253,7 +1312,7 @@ function generate_code_preview (
1253
 
1254
  wrapper.removeClass ('ai-center-h').removeClass ('ai-center-v').removeClass ('ai-sticky-turn');
1255
 
1256
- var animation = parseInt ($("select#animation option:selected").attr ('value'));
1257
 
1258
  var data_aos = '';
1259
  var direction = '';
@@ -1629,7 +1688,8 @@ function generate_code_preview (
1629
  $("select#block-alignment").val (AI_ALIGNMENT_CUSTOM_CSS).change();
1630
  } else
1631
  if (alignment == AI_ALIGNMENT_STICKY) {
1632
- $("#custom-css").show().val ($(ID_CSS_ALIGNMENT_STICKY).text ());
 
1633
  $("select#block-alignment").val (AI_ALIGNMENT_CUSTOM_CSS).change();
1634
  }
1635
  });
@@ -1996,6 +2056,20 @@ function generate_code_preview (
1996
  load_preview_block ();
1997
  });
1998
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1999
  }) (jQuery);
2000
  }
2001
 
@@ -2435,7 +2509,7 @@ input {
2435
  <div id="alignment-editor" style="margin: 20px 0;">
2436
  <?php else : ?>
2437
  <div style="margin: 10px 0;">
2438
- <?php check_count_rotate_code ($obj, $check, $count, $rotate, $viewport); ?>
2439
  </div>
2440
  <div id="alignment-editor" style="margin: 20px 0; display: none;">
2441
  <?php endif; ?>
@@ -2445,7 +2519,7 @@ input {
2445
  <div style="">
2446
 
2447
  <div style="margin: 10px 0;">
2448
- <?php if (!$read_only) check_count_rotate_code ($obj, $check, $count, $rotate, $viewport); ?>
2449
  </div>
2450
 
2451
  <div style="float: left;">
@@ -2658,7 +2732,7 @@ input {
2658
 
2659
  <div style="margin: 20px 0 0 0;">
2660
 
2661
- <?php check_count_rotate_code ($obj, $check, $count, $rotate, $viewport); ?>
2662
 
2663
  <div style="display: inline-block;">
2664
  <div style="display: inline-block; vertical-align: middle;">
@@ -2689,6 +2763,18 @@ input {
2689
 
2690
  <?php endif; ?>
2691
 
 
 
 
 
 
 
 
 
 
 
 
 
2692
  <table class="responsive-table"<?php if ($sticky) echo 'style="height: 60px;"'; ?>>
2693
  <tr>
2694
  <td style="vertical-align: middle; padding:0;">
@@ -2803,6 +2889,7 @@ Single pages (posts and static pages) have also additional setting for individua
2803
  echo ai_get_js ('ai-rotation');
2804
  if (function_exists ('add_footer_inline_scripts_2')) {
2805
  echo ai_get_js ('ai-load');
 
2806
  }
2807
  if ($sticky) echo "setTimeout (function() {AOS.init();}, 200);\n";
2808
  if (defined ('AI_ADSENSE_OVERLAY')) {
29
  }
30
 
31
 
32
+ function check_count_rotate_code ($obj, $check, $count, $rotate, $viewport, $fallback) {
33
 
34
  if ($obj->check_names !== null) : ?>
35
  <div style="display: inline-block; margin: 10px 0;">
92
  ?>
93
  </select>
94
  </div>
95
+ <?php
96
+ endif;
97
+
98
+ if ($obj->fallback_names !== null) : ?>
99
+ <div style="display: inline-block; margin: 10px 0;">
100
+ <div style="display: inline-block; vertical-align: middle;">
101
+ FALLBACK
102
+ </div>
103
+ <select id="fallback" style="min-width: 50px; margin: 0 10px 0 5px;">
104
+ <?php
105
+ foreach ($obj->fallback_names as $index => $fallback_name) {
106
+ echo '<option value="', $index, '" ', $fallback == $index ? AD_SELECT_SELECTED : AD_EMPTY_VALUE, '>', $fallback_name, '</option>';
107
+ }
108
+ ?>
109
+ </select>
110
+ </div>
111
  <?php
112
  endif;
113
  }
153
  $count = isset ($preview_parameters ['count']) ? $preview_parameters ['count'] : 0;
154
  $rotate = isset ($preview_parameters ['rotate']) ? $preview_parameters ['rotate'] : 0;
155
  $viewport = isset ($preview_parameters ['viewport']) ? $preview_parameters ['viewport'] : 0;
156
+ $fallback = isset ($preview_parameters ['fallback']) ? $preview_parameters ['fallback'] : 0;
157
 
158
+ $separators = isset ($preview_parameters ['check']) || isset ($preview_parameters ['count']) || isset ($preview_parameters ['rotate']) || isset ($preview_parameters ['viewport']) || isset ($preview_parameters ['fallback']);
159
 
160
  if ($background && $body_background) {
161
  $vertical_position = AI_STICK_TO_THE_TOP;
251
  $obj->count_index = $count;
252
  $obj->rotate_index = $rotate;
253
  $obj->viewport_index = $viewport;
254
+ $obj->fallback_index = $fallback;
255
 
256
  $obj->hide_debug_labels = true;
257
  $block_code = $obj->ai_getProcessedCode (true);
286
  <script type='text/javascript' src='<?php echo includes_url ('js/jquery/jquery.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
287
  <script type='text/javascript' src='<?php echo admin_url ('load-scripts.php?c=0&amp;load%5B%5D=jquery-core,jquery-migrate,utils,jquery-ui-core&amp;ver='); ?><?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
288
  <script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/effect.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
289
+ <!--<script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/widget.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>-->
290
  <script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/button.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
291
  <script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/spinner.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
292
  <link rel='stylesheet' href='<?php echo plugins_url ('css/jquery-ui-1.10.3.custom.min.css', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>' media='all' />
440
  const ID_CSS_ALIGNMENT_STICKY_TOP = "#css-" + AI_ALIGNMENT_STICKY_TOP;
441
  const ID_CSS_ALIGNMENT_STICKY_BOTTOM = "#css-" + AI_ALIGNMENT_STICKY_BOTTOM;
442
  const ID_CSS_ALIGNMENT_STICKY = "#css-" + AI_ALIGNMENT_STICKY;
443
+ const ID_CSS_ALIGNMENT_STICKY_WRAPPER = "#alignment-css-" + AI_ALIGNMENT_STICKY;
444
+
445
+
446
 
447
  const AI_ALIGNMENT_CSS_STICKY = '<?php echo AI_ALIGNMENT_CSS_STICKY; ?>';
448
 
516
  var viewport = $("select#viewport option:selected").attr('value');
517
  if (typeof viewport == 'undefined') viewport = 0; else viewport = parseInt (viewport);
518
 
519
+ var fallback = $("select#fallback option:selected").attr('value');
520
+ if (typeof fallback == 'undefined') fallback = 0; else fallback = parseInt (fallback);
521
+
522
  var param = {
523
  'action': 'ai_ajax_backend',
524
  'read_only': <?php echo $read_only; ?>,
542
  'check': check,
543
  'count': count,
544
  'rotate': rotate,
545
+ 'viewport': viewport,
546
+ 'fallback': fallback
547
  };
548
 
549
  // console.log (param);
872
  } else
873
  if (alignment == AI_ALIGNMENT_STICKY) {
874
  $(ID_CSS_ALIGNMENT_STICKY).css('display', 'inline-block');
875
+ // style = $(ID_CSS_ALIGNMENT_STICKY).text ();
876
+ style = $(ID_CSS_ALIGNMENT_STICKY_WRAPPER).text ();
877
  } else
878
  if (alignment == AI_ALIGNMENT_CUSTOM_CSS) {
879
  $("#custom-css").show();
1103
 
1104
  if (sticky_context != context) return;
1105
 
1106
+ var alignment = parseInt ($("select#block-alignment option:selected").attr ('value'));
1107
  var horizontal_position = parseInt ($("select#horizontal-position option:selected").attr('value'));
1108
  var vertical_position = parseInt ($("select#vertical-position option:selected").attr('value'));
1109
+ var background = $("input#background").is(":checked");
1110
+ var body_background = horizontal_position == AI_STICK_HORIZONTAL_CENTER && <?php echo $body_background ? 'true' : 'false'; ?>;
1111
+ var animation = parseInt ($("select#animation option:selected").attr ('value'))
1112
+ var background_repeat = parseInt ($("select#bkg-repeat option:selected").attr('value'));
1113
+ var background_size = parseInt ($("select#bkg-size option:selected").attr('value'));
1114
+ var background_color = $("#bkg-color").attr('value').trim ();
1115
+ var background_image = $("#bkg-image").attr('value').trim ();
1116
 
1117
  var background_css = '';
1118
 
1147
  var sticky_css = vertical_position_css + horizontal_position_css;
1148
 
1149
  if (horizontal_position == AI_STICK_HORIZONTAL_CENTER && background) {
 
1150
  if (background_color != '') {
1151
  sticky_css = sticky_css + ' background-color: ' + background_color + ';';
1152
  }
1153
 
 
1154
  if (background_image != '') {
1155
  sticky_css = sticky_css + ' background-image: url(' + background_image + ');';
1156
  }
1157
 
 
1158
  if (background_size != AI_BACKGROUND_SIZE_DEFAULT) {
1159
  switch (background_size) {
1160
  case AI_BACKGROUND_SIZE_COVER:
1169
  }
1170
  }
1171
 
 
1172
  if (background_repeat != AI_BACKGROUND_REPEAT_DEFAULT) {
1173
  switch (background_repeat) {
1174
  case AI_BACKGROUND_REPEAT_NO:
1194
  }
1195
 
1196
  } else {
1197
+ // Used for display
1198
  var sticky_css = $('#css-' + AI_ALIGNMENT_STICKY + ' .ai-sticky-css').text ();
1199
+
1200
+ // Used for wrapper alignment
1201
+ var sticky_css = $('#alignment-css-' + AI_ALIGNMENT_STICKY + ' .ai-sticky-css').text ();
1202
  }
1203
 
1204
  var vertical_margin = spinner_vertical_margin.spinner ("value");
1218
  }
1219
  }
1220
 
1221
+ // Used for the display - don't show it yet (ajax request will do it, only set wrapper alignment css
1222
+ // $('#css-' + AI_ALIGNMENT_STICKY + ' .ai-sticky-css').text (sticky_css);
1223
+
1224
+ // Used for wrapper alignment
1225
+ $('#alignment-css-' + AI_ALIGNMENT_STICKY + ' .ai-sticky-css').text (sticky_css);
1226
+
1227
+ // Get exact CSS from the backend
1228
+ var set_body_background = <?php echo $body_background ? '1' : '0'; ?>;
1229
+
1230
+ var parameters =
1231
+ '&h_pos=' + horizontal_position +
1232
+ '&v_pos=' + vertical_position +
1233
+ '&h_mar=' + horizontal_margin +
1234
+ '&v_mar=' + vertical_margin +
1235
+ '&anim=' + animation +
1236
+ '&bkg=' + (background ? '1' : '0') +
1237
+ '&body_bkg=' + set_body_background +
1238
+ '&bkg_col=' + b64e (background_color) +
1239
+ '&bkg_img=' + b64e (background_image) +
1240
+ '&bkg_size=' + background_size +
1241
+ '&bkg_rpt=' + background_repeat;
1242
+
1243
+ jQuery.get (ajaxurl + '?action=ai_ajax_backend&sticky_css='+block+parameters+'&ai_check=' + b64d ('<?php echo base64_encode (wp_create_nonce ("adinserter_data")); ?>'), function (data) {
1244
+ if (data != '') {
1245
+ // Used for display
1246
+ $('#css-' + AI_ALIGNMENT_STICKY + ' .ai-sticky-css').text (data);
1247
+
1248
+ // Used for wrapper alignment
1249
+ $('#alignment-css-' + AI_ALIGNMENT_STICKY + ' .ai-sticky-css').text (data);
1250
+ }
1251
+ });
1252
+
1253
 
1254
  // wrapper.removeClass ('ai-sticky-content').removeClass ('ai-sticky-left').removeClass ('ai-sticky-right').removeClass ('ai-sticky-scroll').removeClass ('ai-sticky-background').removeClass ('ai-fixed-background');
1255
  wrapper.removeClass ('ai-sticky-content').removeClass ('ai-sticky-left').removeClass ('ai-sticky-right').removeClass ('ai-sticky-scroll').removeClass ('ai-sticky-background');
1312
 
1313
  wrapper.removeClass ('ai-center-h').removeClass ('ai-center-v').removeClass ('ai-sticky-turn');
1314
 
1315
+ // var animation = parseInt ($("select#animation option:selected").attr ('value'));
1316
 
1317
  var data_aos = '';
1318
  var direction = '';
1688
  $("select#block-alignment").val (AI_ALIGNMENT_CUSTOM_CSS).change();
1689
  } else
1690
  if (alignment == AI_ALIGNMENT_STICKY) {
1691
+ // $("#custom-css").show().val ($(ID_CSS_ALIGNMENT_STICKY).text ());
1692
+ $("#custom-css").show().val ($(ID_CSS_ALIGNMENT_STICKY_WRAPPER).text ());
1693
  $("select#block-alignment").val (AI_ALIGNMENT_CUSTOM_CSS).change();
1694
  }
1695
  });
2056
  load_preview_block ();
2057
  });
2058
 
2059
+ $("select#fallback").change (function() {
2060
+ load_preview_block ();
2061
+ });
2062
+
2063
+ window.onscroll = function () {ai_scroll_update ()};
2064
+
2065
+ function ai_scroll_update () {
2066
+ if (sticky) {
2067
+ if ($('body').hasClass ("highlighted")) {
2068
+ $("#highlight-button").click ();
2069
+ }
2070
+ }
2071
+ }
2072
+
2073
  }) (jQuery);
2074
  }
2075
 
2509
  <div id="alignment-editor" style="margin: 20px 0;">
2510
  <?php else : ?>
2511
  <div style="margin: 10px 0;">
2512
+ <?php check_count_rotate_code ($obj, $check, $count, $rotate, $viewport, $fallback); ?>
2513
  </div>
2514
  <div id="alignment-editor" style="margin: 20px 0; display: none;">
2515
  <?php endif; ?>
2519
  <div style="">
2520
 
2521
  <div style="margin: 10px 0;">
2522
+ <?php if (!$read_only) check_count_rotate_code ($obj, $check, $count, $rotate, $viewport, $fallback); ?>
2523
  </div>
2524
 
2525
  <div style="float: left;">
2732
 
2733
  <div style="margin: 20px 0 0 0;">
2734
 
2735
+ <?php check_count_rotate_code ($obj, $check, $count, $rotate, $viewport, $fallback); ?>
2736
 
2737
  <div style="display: inline-block;">
2738
  <div style="display: inline-block; vertical-align: middle;">
2763
 
2764
  <?php endif; ?>
2765
 
2766
+ <div style="display: none;">
2767
+ <?php
2768
+ if (function_exists ('ai_preview_style_css')) {
2769
+ ob_start ();
2770
+ ai_preview_style_css ($obj, $horizontal_position, $vertical_position, $horizontal_margin, $vertical_margin);
2771
+ $html = ob_get_clean ();
2772
+ echo str_replace ('id="css-', 'id="alignment-css-', $html);
2773
+ }
2774
+ ?>
2775
+
2776
+ </div>
2777
+
2778
  <table class="responsive-table"<?php if ($sticky) echo 'style="height: 60px;"'; ?>>
2779
  <tr>
2780
  <td style="vertical-align: middle; padding:0;">
2889
  echo ai_get_js ('ai-rotation');
2890
  if (function_exists ('add_footer_inline_scripts_2')) {
2891
  echo ai_get_js ('ai-load');
2892
+ echo ai_get_js ('ai-parallax');
2893
  }
2894
  if ($sticky) echo "setTimeout (function() {AOS.init();}, 200);\n";
2895
  if (defined ('AI_ADSENSE_OVERLAY')) {
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.7.9"
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
@@ -2228,20 +2228,66 @@ jQuery(document).ready (function($) {
2228
  $('#ai-plugin-settings-tabs').show();
2229
 
2230
  $("#export-switch-0").checkboxButton ().click (function () {
2231
- $("#export-container-0").toggle ();
 
 
 
 
 
 
 
2232
 
2233
  if ($("#export-container-0").is(':visible') && !$(this).hasClass ("loaded")) {
2234
- // var nonce = $(this).attr ('nonce');
2235
  $("#export_settings_0").load (ajaxurl+"?action=ai_ajax_backend&export=0&ai_check=" + ai_nonce, function (response, status, xhr) {
2236
  if (status == "error" ) {
2237
  $('#ai-error-container').text (ai_admin.error + ' ' + xhr.status + ': ' + xhr.statusText).show ();
2238
  } else {
2239
  $("#export_settings_0").attr ("name", "export_settings_0");
 
2240
  $("#export-switch-0").addClass ("loaded");
2241
  }
2242
 
2243
  });
2244
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2245
  });
2246
 
2247
  $("input#process-php-h").change (function() {
@@ -2545,6 +2591,21 @@ jQuery(document).ready (function($) {
2545
  process_display_elements (block);
2546
  });
2547
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2548
  $("input#background-"+tab).change (function() {
2549
  var block = $(this).attr('id').replace ("background-", "");
2550
  check_insertion (block);
@@ -2552,9 +2613,19 @@ jQuery(document).ready (function($) {
2552
  process_display_elements (block);
2553
  });
2554
 
2555
- $("input#body-background-"+tab).change (function() {
2556
- var block = $(this).attr('id').replace ("body-background-", "");
2557
- check_insertion (block);
 
 
 
 
 
 
 
 
 
 
2558
  });
2559
 
2560
  if ($("input#bkg-color-"+tab).length != 0) {
@@ -2583,6 +2654,19 @@ jQuery(document).ready (function($) {
2583
  });
2584
 
2585
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2586
  $("input#exceptions-enabled-"+tab).change (function() {
2587
  var block = $(this).attr('id').replace ("exceptions-enabled-", "");
2588
  process_display_elements (block);
@@ -3806,9 +3890,79 @@ jQuery(document).ready (function($) {
3806
  }
3807
  });
3808
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3809
  }
3810
 
3811
  function configure_sticky_css (block) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3812
  var horizontal_position = $("select#horizontal-position-"+block+" option:selected").attr('value');
3813
  var selected_horizontal_position = $("select#horizontal-position-"+block+" option:selected");
3814
 
@@ -3900,7 +4054,7 @@ jQuery(document).ready (function($) {
3900
  }
3901
  }
3902
 
3903
- $('#css-sticky-' + block + ' .ai-sticky-css').text (vertical_position_css + horizontal_position_css + background_css);
3904
 
3905
  check_insertion (block);
3906
  }
1
+ var javascript_version = "2.7.10"
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
2228
  $('#ai-plugin-settings-tabs').show();
2229
 
2230
  $("#export-switch-0").checkboxButton ().click (function () {
2231
+ // $("#export-container-0").toggle ();
2232
+ $(".export-0").toggle ();
2233
+
2234
+ if (!$("#export-container-0").is (':visible')) {
2235
+ // Restore textarea with laoded settings
2236
+ $("#export_settings_0").val ($("#export_settings_0").text ());
2237
+
2238
+ }
2239
 
2240
  if ($("#export-container-0").is(':visible') && !$(this).hasClass ("loaded")) {
 
2241
  $("#export_settings_0").load (ajaxurl+"?action=ai_ajax_backend&export=0&ai_check=" + ai_nonce, function (response, status, xhr) {
2242
  if (status == "error" ) {
2243
  $('#ai-error-container').text (ai_admin.error + ' ' + xhr.status + ': ' + xhr.statusText).show ();
2244
  } else {
2245
  $("#export_settings_0").attr ("name", "export_settings_0");
2246
+
2247
  $("#export-switch-0").addClass ("loaded");
2248
  }
2249
 
2250
  });
2251
  }
2252
+
2253
+ });
2254
+
2255
+ $("#load-settings-0").change (function (e) {
2256
+ // getting a hold of the file reference
2257
+ var file = e.target.files [0];
2258
+
2259
+ // setting up the reader
2260
+ var reader = new FileReader ();
2261
+ reader.readAsText (file,'UTF-8');
2262
+
2263
+ // here we tell the reader what to do when it's done reading...
2264
+ reader.onload = function (readerEvent) {
2265
+ var content = readerEvent.target.result;
2266
+ $("#export_settings_0").val (content);
2267
+
2268
+ jQuery ('#load-settings-0').val ('');
2269
+ }
2270
+ });
2271
+
2272
+ $("#save-settings-0").click (function () {
2273
+
2274
+ var params = {'action': 'ai_ajax_backend', 'export': 0, 'file': 1, 'ai_check': ai_nonce};
2275
+
2276
+ var form = document.createElement("form");
2277
+ form.setAttribute("method", "get");
2278
+ form.setAttribute("action", ajaxurl);
2279
+ for (var i in params) {
2280
+ if (params.hasOwnProperty(i)) {
2281
+ var input = document.createElement('input');
2282
+ input.type = 'hidden';
2283
+ input.name = i;
2284
+ input.value = encodeURI (params[i]);
2285
+ form.appendChild (input);
2286
+ }
2287
+ }
2288
+ document.body.appendChild (form);
2289
+ form.submit ();
2290
+ document.body.removeChild (form);
2291
  });
2292
 
2293
  $("input#process-php-h").change (function() {
2591
  process_display_elements (block);
2592
  });
2593
 
2594
+ $("input#horizontal-margin-"+tab).change (function() {
2595
+ var block = $(this).attr('id').replace ("horizontal-margin-", "");
2596
+ configure_sticky_css (block);
2597
+ });
2598
+
2599
+ $("input#vertical-margin-"+tab).change (function() {
2600
+ var block = $(this).attr('id').replace ("vertical-margin-", "");
2601
+ configure_sticky_css (block);
2602
+ });
2603
+
2604
+ $("select#animation-"+tab).change (function() {
2605
+ var block = $(this).attr('id').replace ("animation-", "");
2606
+ configure_sticky_css (block);
2607
+ });
2608
+
2609
  $("input#background-"+tab).change (function() {
2610
  var block = $(this).attr('id').replace ("background-", "");
2611
  check_insertion (block);
2613
  process_display_elements (block);
2614
  });
2615
 
2616
+ $("select#animation-"+tab).change (function() {
2617
+ var block = $(this).attr('id').replace ("animation-", "");
2618
+ configure_sticky_css (block);
2619
+ });
2620
+
2621
+ $("input#bkg-image-url-"+tab).change (function() {
2622
+ var block = $(this).attr('id').replace ("bkg-image-url-", "");
2623
+ configure_sticky_css (block);
2624
+ });
2625
+
2626
+ $("input#bkg-color-"+tab).change (function() {
2627
+ var block = $(this).attr('id').replace ("bkg-color-", "");
2628
+ configure_sticky_css (block);
2629
  });
2630
 
2631
  if ($("input#bkg-color-"+tab).length != 0) {
2654
  });
2655
 
2656
 
2657
+ if ($("input#block-bkg-color-"+tab).length != 0) {
2658
+ $("input#block-bkg-color-"+tab).colorpicker ({useAlpha: false, useHashPrefix: true, format: 'hex', fallbackColor: '#fffffe'}).on('colorpickerChange colorpickerCreate colorpickerUpdate', function (e) {
2659
+ $("#block-color-" + tab).css ('background', $(this).val ());
2660
+ }).on ('input', function() {
2661
+ $("#block-color-" + tab).css ('background', $(this).val ());
2662
+ });
2663
+ $("input#block-bkg-color-"+tab).colorpicker ('setValue', $("input#block-bkg-color-" + tab).attr ('value'));
2664
+ }
2665
+
2666
+ $("#block-color-" + tab).click (function() {
2667
+ $("input#block-bkg-color-"+tab).focus ();
2668
+ });
2669
+
2670
  $("input#exceptions-enabled-"+tab).change (function() {
2671
  var block = $(this).attr('id').replace ("exceptions-enabled-", "");
2672
  process_display_elements (block);
3890
  }
3891
  });
3892
  });
3893
+
3894
+
3895
+ $('#tab-' + tab + ' .parallax-button').click (function (event) {
3896
+
3897
+ var button = $(this);
3898
+ button.blur ();
3899
+
3900
+ var frame;
3901
+
3902
+ event.preventDefault();
3903
+
3904
+ if (frame) {
3905
+ frame.open();
3906
+ return;
3907
+ }
3908
+
3909
+ frame = wp.media ({
3910
+ title: ai_admin.select_background_image,
3911
+ button: {
3912
+ text: ai_admin.use_this_image
3913
+ },
3914
+ multiple: false // Set to true to allow multiple files to be selected
3915
+ });
3916
+
3917
+ frame.on ('select', function() {
3918
+ var attachment = frame.state().get('selection').first().toJSON();
3919
+ button.closest ('tr').find ('.parallax-image').val (attachment.url);
3920
+ });
3921
+
3922
+ frame.open();
3923
+ });
3924
  }
3925
 
3926
  function configure_sticky_css (block) {
3927
+ var horizontal_position = parseInt ($("select#horizontal-position-"+block+" option:selected").attr('value'));
3928
+ var vertical_position = parseInt ($("select#vertical-position-"+block+" option:selected").attr('value'));
3929
+ var horizontal_margin = $("#horizontal-margin-"+block).val ().trim ();
3930
+ var vertical_margin = $("#vertical-margin-"+block).val ().trim ();
3931
+ var animation = parseInt ($("select#animation-"+block + " option:selected").attr('value'));
3932
+ var background = $("input#background-"+block).is(":checked") ? '1' : '0';
3933
+ var set_body_background = $("input#body-background-"+block).is(":checked") ? '1' : '0';
3934
+ var background_color = b64e ($("input#bkg-color-"+block).val ().trim ());
3935
+ var background_image = b64e ($("input#bkg-image-url-"+block).val ().trim ());
3936
+ var background_size = parseInt ($("select#bkg-size-"+block+" option:selected").attr('value'));
3937
+ var background_repeat = parseInt ($("select#bkg-repeat-"+block+" option:selected").attr('value'));
3938
+
3939
+ var parameters =
3940
+ '&h_pos=' + horizontal_position +
3941
+ '&v_pos=' + vertical_position +
3942
+ '&h_mar=' + horizontal_margin +
3943
+ '&v_mar=' + vertical_margin +
3944
+ '&anim=' + animation +
3945
+ '&bkg=' + background +
3946
+ '&body_bkg=' + set_body_background +
3947
+ '&bkg_col=' + background_color +
3948
+ '&bkg_img=' + background_image +
3949
+ '&bkg_size=' + background_size +
3950
+ '&bkg_rpt=' + background_repeat;
3951
+
3952
+ jQuery.get (ajaxurl + '?action=ai_ajax_backend&sticky_css='+block+parameters+'&ai_check=' + ai_nonce, function (data) {
3953
+ if (data != '') {
3954
+ $('#css-sticky-' + block + ' .ai-sticky-css').text (data);
3955
+ }
3956
+ });
3957
+
3958
+ if (parseInt (background)) {
3959
+ $("#sticky-position-"+block).addClass ('ai-background');
3960
+ } else $("#sticky-position-"+block).removeClass ('ai-background');
3961
+
3962
+ check_insertion (block);
3963
+ }
3964
+
3965
+ function configure_sticky_css_2 (block) {
3966
  var horizontal_position = $("select#horizontal-position-"+block+" option:selected").attr('value');
3967
  var selected_horizontal_position = $("select#horizontal-position-"+block+" option:selected");
3968
 
4054
  }
4055
  }
4056
 
4057
+ // $('#css-sticky-' + block + ' .ai-sticky-css').text (vertical_position_css + horizontal_position_css + background_css);
4058
 
4059
  check_insertion (block);
4060
  }
js/ad-inserter.min.js CHANGED
@@ -1,14 +1,14 @@
1
- var javascript_version="2.7.9",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=
5
  0,AI_BACKGROUND_SIZE_COVER=1,AI_BACKGROUND_SIZE_CONTAIN=2,AI_BACKGROUND_SIZE_FILL=3,before_update_selection_from_list=null;
6
  (function(a){function h(v){return a.data(v,"tooltip")}function k(v){h(this).delay?x=setTimeout(m,h(this).delay):m();N=!!h(this).track;a(document.body).bind("mousemove",p);p(v)}function l(){if(!a.tooltip.blocked&&this!=z&&(this.tooltipText||h(this).bodyHandler)){z=this;y=this.tooltipText;y=y.replace(/\[\[(.+?)\]\]/g,'<span class="tooltip-code">$1</span>');y=y.replace(/\[BR\]/g,"<br />");y=y.replace(/\[HR\]/g,"<hr />");y=y.replace(/(\[ADINSERTER.+\])/g,'<span class="tooltip-code">$1</span>');y=y.replace(/(%N)/g,
7
  '<span class="tooltip-code">$1</span>');y=y.replace(/(\[\*\])/g,'<span class="tooltip-icon"><span class="dashicons dashicons-admin-generic" style="width: 11px; height: 11px; font-size: 12px; line-height: unset;"></span></span>');y=y.replace(/(http[^ ]+)/g,'<span class="tooltip-code">$1</span>');y=y.replace(/(pub-[0-9]+)/g,'<span class="tooltip-code">$1</span>');if(h(this).bodyHandler){u.title.hide();var v=h(this).bodyHandler.call(this);v.nodeType||v.jquery?u.body.empty().append(v):u.body.html(v);
8
- u.body.show()}else if(h(this).showBody){v=y.split(h(this).showBody);2==v.length?u.title.html(v.shift()).show():u.title.hide();u.body.empty();for(var A=0,D;D=v[A];A++)0<A&&u.body.append("<br/>"),u.body.append(D);u.body.hideWhenEmpty()}else u.title.html(y).show(),u.body.hide();h(this).showURL&&a(this).url()?u.url.html(a(this).url().replace("http://","")).show():u.url.hide();u.parent.addClass(h(this).extraClass);h(this).fixPNG&&u.parent.fixPNG();k.apply(this,arguments)}}function m(){x=null;h(z).fade?
9
- u.parent.is(":animated")?u.parent.stop().show().fadeTo(h(z).fade,z.tOpacity):u.parent.is(":visible")?u.parent.fadeTo(h(z).fade,z.tOpacity):u.parent.fadeIn(h(z).fade):u.parent.show();p()}function p(v){if(!(a.tooltip.blocked||v&&"OPTION"==v.target.tagName))if(!N&&u.parent.is(":visible")&&a(document.body).unbind("mousemove",p),null==z)a(document.body).unbind("mousemove",p);else{u.parent.removeClass("viewport-right").removeClass("viewport-bottom");var A=u.parent[0].offsetLeft,D=u.parent[0].offsetTop;
10
- v&&(A=v.pageX+h(z).left,D=v.pageY+h(z).top,v="auto",h(z).positionLeft&&(v=a(window).width()-A,A="auto"),u.parent.css({left:A,right:v,top:D}));v=a(window).scrollLeft();var U=a(window).scrollTop(),V=a(window).width(),W=a(window).height(),K=u.parent[0];v+V<K.offsetLeft+K.offsetWidth&&(A-=K.offsetWidth+20+h(z).left,u.parent.css({left:A+"px"}).addClass("viewport-right"));U+W<K.offsetTop+K.offsetHeight&&(D-=K.offsetHeight+20+h(z).top,u.parent.css({top:D+"px"}).addClass("viewport-bottom"))}}function F(v){function A(){u.parent.removeClass(D.extraClass).hide().css("opacity",
11
- "")}if(!a.tooltip.blocked){x&&clearTimeout(x);z=null;var D=h(this);D.fade?u.parent.is(":animated")?u.parent.stop().fadeTo(D.fade,0,A):u.parent.stop().fadeOut(D.fade,A):A();h(this).fixPNG&&u.parent.unfixPNG()}}var u={},z,y,x,N=!1;a.tooltip={blocked:!1,defaults:{delay:200,fade:!1,showURL:!0,extraClass:"",top:15,left:15,id:"ai-tooltip"},block:function(){a.tooltip.blocked=!a.tooltip.blocked}};a.fn.extend({tooltip:function(v){v=a.extend({},a.tooltip.defaults,v);u.parent||(u.parent=a('<div id="'+v.id+'"><h3></h3><div class="body"></div><div class="url"></div></div>').appendTo(document.body).hide(),
12
  a.fn.bgiframe&&u.parent.bgiframe(),u.title=a("h3",u.parent),u.body=a("div.body",u.parent),u.url=a("div.url",u.parent));return this.each(function(){a.data(this,"tooltip",v);this.tOpacity=u.parent.css("opacity");this.tooltipText=this.title;a(this).removeAttr("title");this.alt=""}).mouseover(l).mouseout(F).click(F)},fixPNG:function(){return this},unfixPNG:function(){return this},hideWhenEmpty:function(){return this.each(function(){a(this)[a(this).html()?"show":"hide"]()})},url:function(){return this.attr("href")||
13
  this.attr("src")}})})(jQuery);function b64e(a){return btoa(encodeURIComponent(a).replace(/%([0-9A-F]{2})/g,function(h,k){return String.fromCharCode("0x"+k)}))}function b64d(a){return decodeURIComponent(atob(a).split("").map(function(h){return"%"+("00"+h.charCodeAt(0).toString(16)).slice(-2)}).join(""))}
14
  function md5cycle(a,h){var k=a[0],l=a[1],m=a[2],p=a[3];k=ff(k,l,m,p,h[0],7,-680876936);p=ff(p,k,l,m,h[1],12,-389564586);m=ff(m,p,k,l,h[2],17,606105819);l=ff(l,m,p,k,h[3],22,-1044525330);k=ff(k,l,m,p,h[4],7,-176418897);p=ff(p,k,l,m,h[5],12,1200080426);m=ff(m,p,k,l,h[6],17,-1473231341);l=ff(l,m,p,k,h[7],22,-45705983);k=ff(k,l,m,p,h[8],7,1770035416);p=ff(p,k,l,m,h[9],12,-1958414417);m=ff(m,p,k,l,h[10],17,-42063);l=ff(l,m,p,k,h[11],22,-1990404162);k=ff(k,l,m,p,h[12],7,1804603682);p=ff(p,k,l,m,h[13],12,
@@ -49,105 +49,108 @@ showBody:" | ",fade:250}),a("#paragraph-settings-"+b).show();else if(f==AI_BEFOR
49
  c).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250});a("#filter-settings-"+b).attr("data-filter","1").show()}a("#paragraph-counting-"+b).hide();a("#paragraph-clearance-"+b).hide()}c=a("#filter-settings-"+b).attr("data-filter");!d||"undefined"!==typeof c&&!1!==c||(a("#filter-settings-"+b+" input").val(""),a("input#filter-numbers-"+b).val(""),a("select#filter-type-"+b).val(0),a("input#invert-filter-"+b).removeAttr("checked"));if(f==AI_BEFORE_HTML_ELEMENT||f==AI_AFTER_HTML_ELEMENT||f==
50
  AI_INSIDE_HTML_ELEMENT)a("#html-element-settings-"+b).show(),f==AI_INSIDE_HTML_ELEMENT&&a("#inside-element-"+b).css("display","table-cell");a("#css-label-"+b).css("display","table-cell");a("#edit-css-button-"+b).css("display","table-cell");a("#css-none-"+b).hide();a("#custom-css-"+b).hide();a("#css-left-"+b).hide();a("#css-right-"+b).hide();a("#css-center-"+b).hide();a("#css-float-left-"+b).hide();a("#css-float-right-"+b).hide();a("#css-sticky-left-"+b).hide();a("#css-sticky-right-"+b).hide();a("#css-sticky-top-"+
51
  b).hide();a("#css-sticky-bottom-"+b).hide();a("#css-sticky-"+b).hide();a("#css-no-wrapping-"+b).hide();a("#no-wrapping-warning-"+b).hide();a("#sticky-position-"+b).hide();a("#sticky-animation-"+b).hide();a("#sticky-background-"+b).hide();a("#sticky-background-"+b).find(".bkg-parameters").hide();a("#tracking-wrapping-warning-"+b).hide();d=a("select#block-alignment-"+b+" option:selected").attr("value");d==AI_ALIGNMENT_NO_WRAPPING?(a("#css-no-wrapping-"+b).css("display","table-cell"),a("#css-label-"+
52
- b).hide(),a("#edit-css-button-"+b).hide(),a("#client-side-detection-"+b).is(":checked")&&a("#no-wrapping-warning-"+b).show(),a("#tracking-"+b).next().find(".checkbox-icon").hasClass("on")&&a("#tracking-wrapping-warning-"+b).show()):d==AI_ALIGNMENT_DEFAULT?a("#css-none-"+b).css("display","table-cell"):d==AI_ALIGNMENT_CUSTOM_CSS?(a("#icons-css-code-"+b).show(),a("#custom-css-"+b).show(),aa(b),is_sticky(a("#custom-css-"+b).val())&&(a("#sticky-position-"+b).show(),a("#sticky-animation-"+b).show(),a("#sticky-background-"+
53
  b).show(),a("select#animation-"+b).change(),is_background(a("#custom-css-"+b).val())&&a("input#background-"+b).is(":checked")&&a("#sticky-background-"+b).find(".bkg-parameters").show())):d==AI_ALIGNMENT_LEFT?a("#css-left-"+b).css("display","table-cell"):d==AI_ALIGNMENT_RIGHT?a("#css-right-"+b).css("display","table-cell"):d==AI_ALIGNMENT_CENTER?a("#css-center-"+b).css("display","table-cell"):d==AI_ALIGNMENT_FLOAT_LEFT?a("#css-float-left-"+b).css("display","table-cell"):d==AI_ALIGNMENT_FLOAT_RIGHT?
54
  a("#css-float-right-"+b).css("display","table-cell"):d==AI_ALIGNMENT_STICKY_LEFT?a("#css-sticky-left-"+b).css("display","table-cell"):d==AI_ALIGNMENT_STICKY_RIGHT&&a("#css-sticky-right-"+b).css("display","table-cell");d==AI_ALIGNMENT_STICKY_TOP?a("#css-sticky-top-"+b).css("display","table-cell"):d==AI_ALIGNMENT_STICKY_BOTTOM?a("#css-sticky-bottom-"+b).css("display","table-cell"):d==AI_ALIGNMENT_STICKY&&(a("#icons-css-code-"+b).show(),a("#sticky-position-"+b).show(),a("#sticky-animation-"+b).show(),
55
- a("#sticky-background-"+b).show(),a("select#animation-"+b).change(),a("select#horizontal-position-"+b+" option:selected").attr("value")==AI_STICK_HORIZONTAL_CENTER&&a("input#background-"+b).is(":checked")&&a("#sticky-background-"+b).find(".bkg-parameters").show(),a("#css-sticky-"+b).css("display","table-cell"),aa(b));a("#icons-css-code-"+b).css("display");"do not insert"==a("select#avoid-action-"+b+" option:selected").text()?a("#check-up-to-"+b).hide():a("#check-up-to-"+b).show();a("#scheduling-delay-"+
56
  b).hide();a("#scheduling-between-dates-1-"+b).hide();a("#scheduling-between-dates-2-"+b).hide();a("#scheduling-delay-warning-"+b).hide();d=a("select#scheduling-"+b).val();if("1"==d||"3"==d)a("#scheduling-delay-"+b).show();else if("2"==d||"4"==d||"5"==d||"6"==d)a("#scheduling-between-dates-1-"+b).show(),a("#scheduling-between-dates-2-"+b).show(),z(b);a("#adb-block-replacement-"+b).hide();a("select#adb-block-action-"+b).val()==AI_ADB_BLOCK_ACTION_REPLACE&&a("#adb-block-replacement-"+b).show();a("#exceptions-enabled-"+
57
- b).is(":checked")?a("#default-insertion-"+b).show():a("#default-insertion-"+b).hide();syntax_highlighting&&k(b);X(b)}function N(b){var d=parseInt(a("select#adsense-type-"+b+" option:selected").attr("value")),f=parseInt(a("select#adsense-size-"+b+" option:selected").attr("value"));d!=AI_ADSENSE_STANDARD&&d!=AI_ADSENSE_LINK||f!=AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT?(a("#adsense-layout-"+b).show(),a("#adsense-viewports-"+b).hide()):(a("#adsense-layout-"+b).hide(),a("#adsense-viewports-"+b).show());a("#tab-adsense-"+
58
  b+" .adsense-layout").css("visibility","hidden");a("#tab-adsense-"+b+" .adsense-fixed-size").show();a("#tab-adsense-"+b+" .adsense-fixed-size").css("visibility","hidden");a("#tab-adsense-"+b+" .adsense-size").css("visibility","hidden");a("#tab-adsense-"+b+" .adsense-full-width-responsive").hide();switch(d){case AI_ADSENSE_STANDARD:a("#tab-adsense-"+b+" .adsense-size").css("visibility","visible");f==AI_ADSENSE_SIZE_FIXED&&a("#tab-adsense-"+b+" .adsense-fixed-size").css("visibility","visible");f==AI_ADSENSE_SIZE_RESPONSIVE&&
59
  (a("#tab-adsense-"+b+" .adsense-fixed-size").hide(),a("#tab-adsense-"+b+" .adsense-full-width-responsive").show());break;case AI_ADSENSE_LINK:a("#tab-adsense-"+b+" .adsense-size").css("visibility","visible");f==AI_ADSENSE_SIZE_FIXED&&a("#tab-adsense-"+b+" .adsense-fixed-size").css("visibility","visible");f==AI_ADSENSE_SIZE_RESPONSIVE&&(a("#tab-adsense-"+b+" .adsense-fixed-size").hide(),a("#tab-adsense-"+b+" .adsense-full-width-responsive").show());break;case AI_ADSENSE_IN_FEED:a("#tab-adsense-"+b+
60
- " .adsense-layout").css("visibility","visible")}}function v(b){a("#tab-amazon-"+b+" .amazon-amp-data").hide();1==parseInt(a("select#amazon-amp-"+b+" option:selected").attr("value"))&&a("#tab-amazon-"+b+" .amazon-amp-data").show()}function A(b,d){var f=ace.edit("editor-"+b),c=a("#block-"+b),e=a("#editor-"+b);d?(c.val(f.session.getValue()),c.css("display","block"),e.css("display","none")):(f.session.setValue(c.val()),f.renderer.updateFull(),e.css("display","block"),c.css("display","none"))}function D(b){debug&&
61
- console.log("configure_editor:",b);if(syntax_highlighting){var d=new SyntaxHighlight("#block-"+b,b,shSettings);setTimeout(function(){d.editor.setPrintMarginColumn(1E3)},50);a("input#simple-editor-"+b).change(function(){var f=a(this).attr("id").replace("simple-editor-",""),c=a(this).is(":checked");A(f,c)})}}function U(){a("#adb-message").hide();a("#adb-page-redirection").hide();var b=a("select#adb-action option:selected").attr("value");b==AI_ADB_ACTION_MESSAGE?a("#adb-message").show():b==AI_ADB_ACTION_REDIRECTION&&
62
  a("#adb-page-redirection").show()}function V(b){b=a("<section>"+a("div#statistics-elements-"+b).html()+"</section>");a('div[style*="display: none"], div[style*="display:none"]',b).remove();a(".ai-toolbar-button",b).remove();a(".ai-chart-container",b).css("font-size","10px");a(".ai-chart-container.versions",b).css("text-align","center");a(".ai-statistics-legend",b).after(a(".ai-chart-container.legend",b).html());var d={action:"ai_ajax_backend",pdf:"block",ai_check:ai_nonce,code:b64e(a(b).html())};
63
- a("#ai-loading").show();setTimeout(function(){open_window_post(ajaxurl,"_blank",d)},5);setTimeout(function(){a("#ai-loading").hide()},1E3)}function W(b){a("#ai-loading").show();a("span#export-csv-button-"+b).addClass("on");setTimeout(function(){a("input#load-custom-range-"+b).click()},5);setTimeout(function(){a("#ai-loading").hide()},1E3)}function K(b){a("input#load-custom-range-"+b).click(function(){var d=a(this).attr("id");d=d.replace("load-custom-range-","");var f=a(this).next().find(".checkbox-icon");
64
  f.addClass("on");var c=a("input#chart-start-date-"+d).val(),e=a("input#chart-end-date-"+d).val(),g=a("div#statistics-elements-"+d),n=a("div#ai-version-charts-"+d).is(":visible"),r="";a("input#clear-range-"+d).hasClass("delete")&&(r="&delete=1");var q="";a("input#adb-statistics-button-"+d).next().find(".icon-adb").hasClass("on")&&(q="&adb=1");if(a("span#export-csv-button-"+d).hasClass("on")){a("span#export-csv-button-"+d).removeClass("on");c={action:"ai_ajax_backend",statistics:d,"start-date":c,"end-date":e,
65
  delete_range:""==r?"":1,adb:""==q?"":1,csv:1,ai_check:ai_nonce};e=document.createElement("form");e.setAttribute("method","get");e.setAttribute("action",ajaxurl);for(var t in c)c.hasOwnProperty(t)&&(r=document.createElement("input"),r.type="hidden",r.name=t,r.value=encodeURI(c[t]),e.appendChild(r));document.body.appendChild(e);e.submit();document.body.removeChild(e);f.removeClass("on")}else g.load(ajaxurl+"?action=ai_ajax_backend&statistics="+d+"&start-date="+c+"&end-date="+e+r+q+"&ai_check="+ai_nonce,
66
- function(w,B,H){f.removeClass("on");"error"==B?(w="Error downloading data: "+H.status+" "+H.statusText,a("div#load-error-"+d).html(w),debug&&console.log(w)):(a("span#export-pdf-button-"+d).show(),a("span#export-csv-button-"+d).show(),w=a("#ai-main-toolbar-"+d+" .public-report-button"),w.show(),B=g.find("span.ai-statistics-export-data.ai-public-report"),w.attr("report-data",JSON.stringify(B.data("report"))),B.remove(),a("div#load-error-"+d).html(""),debug&&console.log("Custom statistics loaded: "+
67
- d),ba(g),g.find("label.ai-version-charts-button.not-configured").click(function(){var G=a(this).hasClass("no-version-charts-delay");a(this).removeClass("not-configured");var P=a(this).closest(".ai-charts").find("div.ai-version-charts");P.toggle();var Y=P.find(".ai-chart.not-configured.hidden");Y.length&&(Y.each(function(){a(this).removeClass("hidden")}),G?ba(P):setTimeout(function(){ba(P)},10))}),n&&g.find("label.ai-version-charts-button.not-configured").addClass("no-version-charts-delay").click(),
68
  a("input#chart-start-date-"+d).css("color","#32373c"),a("input#chart-end-date-"+d).css("color","#32373c"))})});a("input#auto-refresh-"+b).click(function(){var d=a(this).attr("id");d=d.replace("auto-refresh-","");var f=a(this).next().find(".checkbox-icon");f.toggleClass("on");f.hasClass("on")&&m(d)});a("input#clear-range-"+b).click(function(){var d=a(this).attr("id");d=d.replace("clear-range-","");var f=this,c=a("input#chart-start-date-"+d).val(),e=a("input#chart-end-date-"+d).val(),g="";""==c&&""==
69
  e?g=ai_admin.delete_all_statistics:""!=c&&""!=e&&(g=ai_admin.delete_statistics_between.replace("{start_date}",c).replace("{end_date}",e));""!=g&&a("<div />").html(g).attr("title",ai_admin.warning).dialog({bgiframe:!0,draggable:!1,resizable:!1,modal:!0,height:"auto",width:400,position:{my:"center",at:"center",of:"#ai-settings"},buttons:[{text:ai_admin["delete"],click:function(){a(this).dialog("close");a(f).addClass("delete");a("input#load-custom-range-"+d).click();a(f).removeClass("delete")}},{text:ai_admin.cancel,
70
  click:function(){a(this).dialog("close")}}],open:function(){a(this).parent().find("button:nth-child(2)").focus()}})});a("input#chart-start-date-"+b).datepicker({dateFormat:dateFormat,autoSize:!0});a("input#chart-end-date-"+b).datepicker({dateFormat:dateFormat,autoSize:!0});a("input#chart-start-date-"+b).change(function(){a(this).closest(".custom-range-controls").find(".data-range").removeClass("selected");a(this).closest(".custom-range-controls").attr("range-name","----");l();var d=a(this).attr("id").replace("chart-start-date-",
71
  "");a(this).css("color","red");y(d)});a("input#chart-end-date-"+b).change(function(){a(this).closest(".custom-range-controls").find(".data-range").removeClass("selected");a(this).closest(".custom-range-controls").attr("range-name","----");l();var d=a(this).attr("id").replace("chart-end-date-","");a(this).css("color","red");y(d)});a("div#custom-range-controls-"+b+" span.data-range").click(function(){var d=a(this).closest(".custom-range-controls");d.find(".data-range").removeClass("selected");a(this).addClass("selected");
72
  d.attr("range-name",a(this).data("range-name"));l();block=a(this).closest(".custom-range-controls").attr("id").replace("custom-range-controls-","");a("input#chart-start-date-"+block).attr("value",a(this).data("start-date")).val(a(this).data("start-date"));a("input#chart-end-date-"+block).attr("value",a(this).data("end-date")).val(a(this).data("end-date"));y(block);a("input#load-custom-range-"+block).click()})}function ja(){debug&&console.log("Configure tab: 0");a("#tab-0").addClass("configured");
73
- a("#tab-0 input[type=submit], #tab-0 button.ai-button").button().show();D("h");D("f");a("#block-a").length&&D("a");a("#ai-plugin-settings-tab-container").tabs();a("#ai-plugin-settings-tabs").show();a("#export-switch-0").checkboxButton().click(function(){a("#export-container-0").toggle();a("#export-container-0").is(":visible")&&!a(this).hasClass("loaded")&&a("#export_settings_0").load(ajaxurl+"?action=ai_ajax_backend&export=0&ai_check="+ai_nonce,function(d,f,c){"error"==f?a("#ai-error-container").text(ai_admin.error+
74
- " "+c.status+": "+c.statusText).show():(a("#export_settings_0").attr("name","export_settings_0"),a("#export-switch-0").addClass("loaded"))})});a("input#process-php-h").change(function(){syntax_highlighting&&k("h")});a("input#process-php-f").change(function(){syntax_highlighting&&k("f")});a("input#process-php-a").change(function(){syntax_highlighting&&k("a")});syntax_highlighting&&k("h");syntax_highlighting&&k("f");a("#block-a").length&&syntax_highlighting&&k("a");for(var b=1;b<=ka;b++)L("group-country",
75
- b);a("#enable-header").checkboxButton();a("#enable-header-404").checkboxButton();a("#simple-editor-h").checkboxButton().click(function(){var d=a("#ai-plugin-settings-tab-container .ui-tabs-panel:visible").attr("id");0!=active_tab||"tab-header"!=d||a(this).hasClass("clicked")||(a(this).addClass("clicked"),a("#ai-tab-container .simple-editor-button").click(),a(this).removeClass("clicked"))});a("#simple-editor-h").is(":checked")&&(A("h",!0),a("#simple-editor-h").next("label").find(".checkbox-icon").addClass("on"));
76
- a("#process-php-h").checkboxButton();a("#enable-footer").checkboxButton();a("#enable-footer-404").checkboxButton();a("#simple-editor-f").checkboxButton().click(function(){var d=a("#ai-plugin-settings-tab-container .ui-tabs-panel:visible").attr("id");0!=active_tab||"tab-footer"!=d||a(this).hasClass("clicked")||(a(this).addClass("clicked"),a("#ai-tab-container .simple-editor-button").click(),a(this).removeClass("clicked"))});a("#simple-editor-f").is(":checked")&&(A("f",!0),a("#simple-editor-f").next("label").find(".checkbox-icon").addClass("on"));
77
- a("#process-php-f").checkboxButton();a("#tracking").checkboxButton();K(0);a("input#statistics-button-0").checkboxButton().click(function(){a("div#statistics-container-0").toggle();a("span#export-pdf-button-0").toggle();a("span#export-csv-button-0").toggle();a("div#tab-tracking-settings").toggle();a("div#statistics-container-0").is(":visible")&&!a(this).hasClass("loaded")&&(a("input#load-custom-range-0").click(),a(this).addClass("loaded"))});a("#export-pdf-button-0").click(function(){V(0)});a("#export-csv-button-0").click(function(){W(0)});
78
- a("#enable-adb-detection").checkboxButton();a("#simple-editor-a").checkboxButton().click(function(){var d=a("#ai-plugin-settings-tab-container .ui-tabs-panel:visible").attr("id");0!=active_tab||"tab-adblocking"!=d||a(this).hasClass("clicked")||(a(this).addClass("clicked"),a("#ai-tab-container .simple-editor-button").click(),a(this).removeClass("clicked"))});a("#simple-editor-a").is(":checked")&&(A("a",!0),a("#simple-editor-a").next("label").find(".checkbox-icon").addClass("on"));a("#process-php-a").checkboxButton();
79
- U();a("select#adb-action").change(function(){U()});a("#preview-button-adb").button({}).show().click(function(){a(this).blur();var d=b64e(get_editor_text("a")),f=a("input#process-php-a").is(":checked")?1:0;open_popup_window_post(ajaxurl,"width=820,height=870,top="+(screen.height/2-435)+",left=100,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","preview",{action:"ai_ajax_backend",preview:"adb",ai_check:ai_nonce,code:d,php:f})});a("#main-content-element-button").click(function(){var d=
80
- a("input#main-content-element").val(),f=a("#ai-settings").data("home-relative-url");open_popup_window_post(f,"width="+(screen.availWidth-15)+",height="+(screen.availHeight-65)+",top="+screen.availTop+",left="+screen.availLeft+",resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","ai-selector",{html_element_selection:"main",selector:d,input:"input#main-content-element"})});a("#custom-selectors-button").click(function(){var d=a("input#custom-selectors").val(),f=
81
- a("#ai-settings").data("home-relative-url");open_popup_window_post(f,"width="+(screen.availWidth-15)+",height="+(screen.availHeight-65)+",top="+screen.availTop+",left="+screen.availLeft+",resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","ai-selector",{html_element_selection:"adb",selector:d,input:"input#custom-selectors"})});a("#disable-header-code").checkboxButton();a("#disable-footer-code").checkboxButton();a("#disable-js-code").checkboxButton();a("#disable-css-code").checkboxButton();
82
- a("#disable-html-code").checkboxButton();a("#disable-php-processing").checkboxButton();a("#disable-blocks").checkboxButton();a("input#disable-header-code").change(function(){a("#ai-page-header").toggleClass("ai-page-code-disabled")});a("input#disable-footer-code").change(function(){a("#ai-page-footer").toggleClass("ai-page-code-disabled")});a("input#disable-js-code").change(function(){a("#ai-page-js").toggleClass("ai-page-code-disabled")});a("input#disable-css-code").change(function(){a("#ai-page-css").toggleClass("ai-page-code-disabled")});
83
- a("input#disable-html-code").change(function(){a("#ai-page-html").toggleClass("ai-page-code-disabled")});a("input#disable-php-processing").change(function(){a("#ai-page-php").toggleClass("ai-page-code-disabled")});a("input#disable-blocks").change(function(){a("#ai-page-block").toggleClass("ai-page-code-disabled")});a("#report-header-image-button").click(function(d){a(this).blur();d.preventDefault();if(!f){var f=wp.media({title:ai_admin.select_header_image,button:{text:ai_admin.use_this_image},multiple:!1});
84
- f.on("select",function(){var c=f.state().get("selection").first().toJSON();a("#report-header-image").val(c.url)})}f.open()});a("#tab-0 .adsense-list").click(function(){a(this).blur();ca()});a("#ai-blocked-ip-addresses").click(function(){ip_address=a("#ai-blocked-ip-addresses").attr("delete");a("#ai-blocked-ip-addresses").removeAttr("delete");null==ip_address&&(ip_address="");a("#ai-blocked-ip-addresses-list").load(ajaxurl+"?action=ai_ajax_backend&cfp-ip-address-list="+ip_address+"&ai_check="+ai_nonce,
85
- function(d,f,c){"error"==f?console.log("Error loading CFP IP addresses: "+c.status+" "+c.statusText):(d=a("#ai-blocked-ip-addresses-list table").data("count-text"),null==d&&(d=""),a("#ai-blocked-ip-addresses").text(d),a(".cfp-ip-address").click(function(){var e=a(this).closest("tr").data("ip-address");setTimeout(function(){a("#ai-blocked-ip-addresses").attr("delete",e).click()},10)}))})})}function da(b){debug&&console.log("Configure tab:",b);a("#tab-"+b).addClass("configured");a("#tab-"+b+" input[type=submit], #tab-"+
86
- b+" button.ai-button").button().show();D(b);a("select#insertion-type-"+b).change(function(){var c=a(this).attr("id").tabIndex();x(c);la(c)});a("select#block-alignment-"+b).change(function(){var c=a(this).attr("id").replace("block-alignment-",""),e=a("select#block-alignment-"+c+" option:selected").attr("value");a("select#insertion-type-"+c+" option:selected").attr("value")==AI_ABOVE_HEADER||e!=AI_ALIGNMENT_STICKY_LEFT&&e!=AI_ALIGNMENT_STICKY_RIGHT&&e!=AI_ALIGNMENT_STICKY_TOP&&e!=AI_ALIGNMENT_STICKY_BOTTOM&&
87
- e!=AI_ALIGNMENT_STICKY||a("select#insertion-type-"+c).val(AI_FOOTER).change();x(c)});a("select#vertical-position-"+b).change(function(){var c=a(this).attr("id").replace("vertical-position-","");M(c)});a("select#horizontal-position-"+b).change(function(){var c=a(this).attr("id").replace("horizontal-position-","");M(c);x(c)});a("input#background-"+b).change(function(){var c=a(this).attr("id").replace("background-","");X(c);M(c);x(c)});a("input#body-background-"+b).change(function(){var c=a(this).attr("id").replace("body-background-",
88
- "");X(c)});0!=a("input#bkg-color-"+b).length&&(a("input#bkg-color-"+b).colorpicker({useAlpha:!1,useHashPrefix:!0,format:"hex",fallbackColor:"#fffffe"}).on("colorpickerChange colorpickerCreate colorpickerUpdate",function(c){c=a(this).attr("id").replace("bkg-color-","");M(c);a("#sticky-background-"+c).find(".banner-preview").css("background",a(this).val())}).on("input",function(){var c=a(this).attr("id").replace("bkg-color-","");M(c);a("#sticky-background-"+c).find(".banner-preview").css("background",
89
- a(this).val())}),a("input#bkg-color-"+b).colorpicker("setValue",a("input#bkg-color-"+b).attr("value")));a("select#bkg-repeat-"+b).change(function(){var c=a(this).attr("id").replace("bkg-repeat-","");M(c);x(c)});a("select#bkg-size-"+b).change(function(){var c=a(this).attr("id").replace("bkg-size-","");M(c);x(c)});a("input#exceptions-enabled-"+b).change(function(){var c=a(this).attr("id").replace("exceptions-enabled-","");x(c)});a("input#process-php-"+b).change(function(){var c=a(this).attr("id").replace("process-php-",
90
- "");x(c)});a("input#show-label-"+b).change(function(){a(this).attr("id").replace("show-label-","")});a("#enable-shortcode-"+b).change(function(){var c=a(this).attr("id").replace("enable-shortcode-","");x(c)});a("#enable-php-call-"+b).change(function(){var c=a(this).attr("id").replace("enable-php-call-","");x(c)});a("select#display-for-devices-"+b).change(function(){var c=a(this).attr("id").replace("display-for-devices-","");x(c)});a("select#scheduling-"+b).change(function(){var c=a(this).attr("id").replace("scheduling-",
91
- "");x(c)});a("select#adb-block-action-"+b).change(function(){var c=a(this).attr("id").replace("adb-block-action-","");x(c)});a("#display-homepage-"+b).change(function(){var c=a(this).attr("id").replace("display-homepage-","");x(c)});a("#display-category-"+b).change(function(){var c=a(this).attr("id").replace("display-category-","");x(c)});a("#display-search-"+b).change(function(){var c=a(this).attr("id").replace("display-search-","");x(c)});a("#display-archive-"+b).change(function(){var c=a(this).attr("id").replace("display-archive-",
92
- "");x(c)});a("#client-side-detection-"+b).change(function(){var c=a(this).attr("id").replace("client-side-detection-","");x(c)});a("#scheduling-date-on-"+b).change(function(){var c=a(this).attr("id").replace("scheduling-date-on-","");z(c)});a("#scheduling-date-off-"+b).change(function(){var c=a(this).attr("id").replace("scheduling-date-off-","");z(c)});a("#scheduling-time-on-"+b).change(function(){var c=a(this).attr("id").replace("scheduling-time-on-","");z(c)});a("#scheduling-time-off-"+b).change(function(){var c=
93
- a(this).attr("id").replace("scheduling-time-off-","");z(c)});a("#scheduling-weekdays-"+b).click(function(){a(this).attr("id").replace("scheduling-weekdays-","");a(this).selectedIndexes();days=[];a.each(a(this).selectedIndexes(),function(c,e){days[c]=parseInt(e)});a("#scheduling-weekdays-value-"+b).attr("value",days.join(","))});a("select#avoid-action-"+b).change(function(){var c=a(this).attr("id").replace("avoid-action-","");x(c)});a("#tab-"+b+" .page-checker-button").click(function(){a("#page-checker-button").click()});
94
- x(b);a("#exceptions-button-"+b).click(function(){var c=a(this).attr("id").replace("exceptions-button-","");a("#block-exceptions-"+c).toggle()});a("#show-css-button-"+b).click(function(){var c=a(this).attr("id").replace("show-css-button-","");a("#icons-css-code-"+c).toggle();a("#icons-css-code-"+c).is(":visible")?(aa(c),x(c)):(a("#sticky-animation-"+c).hide(),a("#sticky-background-"+c).hide())});a("#counting-button-"+b).click(function(){var c=a(this).attr("id").replace("counting-button-","");a("#paragraph-counting-"+
95
- c).toggle()});a("#clearance-button-"+b).click(function(){var c=a(this).attr("id").replace("clearance-button-","");a("#paragraph-clearance-"+c).toggle()});a("#filter-button-"+b).click(function(){var c=a(this).attr("id").tabIndex();a("#misc-settings-"+c).toggle();a("#misc-settings-"+c).is(":visible")&&(a("#ai-misc-container-"+c).tabs({active:1}),a("#ai-misc-filter-"+c).click())});a("#scheduling-date-on-"+b).datepicker({dateFormat:dateFormat,autoSize:!0});a("#scheduling-date-off-"+b).datepicker({dateFormat:dateFormat,
96
- autoSize:!0});0!=a("#scheduling-weekdays-value-"+b).length&&(a("#scheduling-time-on-"+b).timepicker({timeFormat:timeFormat,minTime:"00:00:00",maxTime:"23:00:00",step:60}),a("#scheduling-time-off-"+b).timepicker({timeFormat:timeFormat,minTime:"00:00:00",maxTime:"23:00:00",step:60}),days=[],a.each(a("#scheduling-weekdays-value-"+b).val().split(","),function(c,e){days[c]=parseInt(e)}),a("#scheduling-weekdays-"+b).weekdays({days:[ai_admin.day_mo,ai_admin.day_tu,ai_admin.day_we,ai_admin.day_th,ai_admin.day_fr,
97
- ai_admin.day_sa,ai_admin.day_su],selectedIndexes:days}));a(".css-code-"+b).click(function(){var c=a(this).attr("class").replace("css-code-","");a("#custom-css-"+c).is(":visible")||a("#edit-css-button-"+c).click()});a("#edit-css-button-"+b).button({}).click(function(){var c=a(this).attr("id").replace("edit-css-button-","");a("#css-left-"+c).hide();a("#css-right-"+c).hide();a("#css-center-"+c).hide();a("#css-float-left-"+c).hide();a("#css-float-right-"+c).hide();a("#css-sticky-left-"+c).hide();a("#css-sticky-right-"+
98
- c).hide();a("#css-sticky-top-"+c).hide();a("#css-sticky-bottom-"+c).hide();a("#css-sticky-"+c).hide();var e=a("select#block-alignment-"+c+" option:selected").attr("value");e==AI_ALIGNMENT_DEFAULT?(a("#css-none-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-none-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_LEFT?(a("#css-left-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-left-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):
99
- e==AI_ALIGNMENT_RIGHT?(a("#css-right-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-right-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_CENTER?(a("#css-center-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-center-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_FLOAT_LEFT?(a("#css-float-left-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-float-left-"+c).text()),a("select#block-alignment-"+
100
- c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_FLOAT_RIGHT?(a("#css-float-right-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-float-right-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_STICKY_LEFT?(a("#css-sticky-left-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-sticky-left-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_STICKY_RIGHT&&(a("#css-sticky-right-"+c).hide(),a("#custom-css-"+
101
- c).show().val(a("#css-sticky-right-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change());e==AI_ALIGNMENT_STICKY_TOP?(a("#css-sticky-top-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-sticky-top-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_STICKY_BOTTOM?(a("#css-sticky-bottom-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-sticky-bottom-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):
102
- e==AI_ALIGNMENT_STICKY&&(a("#css-sticky-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-sticky-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change())});a("#name-label-"+b).click(function(){var c=a(this).attr("id").replace("name-label-","");a("div#settings-"+c).is(":visible")&&!a("#name-edit-"+c).is(":visible")&&(a("#name-edit-"+c).css("display","table-cell").val(a("#name-label-"+c).text()).focus(),a("#name-label-"+c).hide())});a("#name-label-container-"+b).click(function(){var c=
103
- a(this).attr("id").replace("name-label-container-","");a("div#settings-"+c).is(":visible")&&!a("#name-edit-"+c).is(":visible")&&(a("#name-edit-"+c).css("display","table-cell").val(a("#name-label-"+c).text()).focus(),a("#name-label-"+c).hide())});a("#name-edit-"+b).on("keyup keypress",function(c){var e=c.keyCode||c.which;ignore_key=!0;if(27==e)e=a(this).attr("id").replace("name-edit-",""),a("#name-label-"+e).show(),a("#name-edit-"+e).hide(),ignore_key=!1;else if(13==e)return e=a(this).attr("id").replace("name-edit-",
104
- ""),a("#name-label-"+e).show().text(a("#name-edit-"+e).val()),a("#name-edit-"+e).hide(),ignore_key=!1,c.preventDefault(),!1}).focusout(function(){if(ignore_key){var c=a(this).attr("id").replace("name-edit-","");a("#name-label-"+c).show().text(a("#name-edit-"+c).val());a("#name-edit-"+c).hide()}ignore_key=!0});a("#export-switch-"+b).checkboxButton().click(function(){var c=a(this).attr("id");c=c.replace("export-switch-","");a("#export-container-"+c).toggle();a("#export-container-"+c).is(":visible")&&
105
- !a(this).hasClass("loaded")&&a("#export_settings_"+c).load(ajaxurl+"?action=ai_ajax_backend&export="+c+"&ai_check="+ai_nonce,function(e,g,n){"error"==g?a("#ai-error-container").text(ai_admin.error+" "+n.status+": "+n.statusText).show():(a("#export_settings_"+c).attr("name","export_settings_"+c),a("#export-switch-"+c).addClass("loaded"))})});a("input#statistics-button-"+b).checkboxButton().click(function(){l();var c=a(this).attr("id");c=c.replace("statistics-button-","");a("div#statistics-container-"+
106
- c).toggle();a("div#settings-"+c).toggle();a("#tab-"+c+" .ai-toolbars .ai-settings").toggle();a("#ai-main-toolbar-"+c+" .ai-statistics").toggle();a("div#statistics-container-"+c).is(":visible")?(a("#name-label-container-"+c).css("cursor","default"),a(this).hasClass("loaded")||(a("input#load-custom-range-"+c).click(),a(this).addClass("loaded"))):a("#name-label-container-"+c).css("cursor","pointer")});a("#export-pdf-button-"+b).click(function(){var c=a(this).attr("id").tabIndex();V(c)});a("#export-csv-button-"+
107
- b).click(function(){var c=a(this).attr("id").tabIndex();W(c)});a("input#adb-statistics-button-"+b).checkboxButton().click(function(){var c=a(this).attr("id");c=c.replace("adb-statistics-button-","");setTimeout(function(){a("input#load-custom-range-"+c).click()},2)});K(b);a("#device-detection-button-"+b).button({}).show().click(function(){var c=a(this).attr("id");c=c.replace("device-detection-button-","");a("#device-detection-settings-"+c).toggle()});a("#lists-button-"+b).button({}).show().click(function(){var c=
108
- a(this).attr("id");c=c.replace("lists-button-","");if(a("#list-settings-"+c).is(":visible"))if(a("#list-settings-"+c).hasClass("ai-expaned"))a("#list-settings-"+c).hide(),a("#list-settings-"+c).removeClass("ai-expaned");else{var e=a("#list-settings-"+c+" tr"),g=a("#list-settings-"+c+" tr.list-items");g.length!=e.length?(a("#list-settings-"+c+" tr").show(),a("#list-settings-"+c).addClass("ai-expaned")):(a("#list-settings-"+c).hide(),a("#list-settings-"+c).removeClass("ai-expaned"))}else a("#list-settings-"+
109
- c).show(),a("#list-settings-"+c).removeClass("ai-expaned"),a("#list-settings-"+c+" tr").hide(),g=a("#list-settings-"+c+" tr.list-items"),g.length?g.show():(a("#list-settings-"+c+" tr").show(),a("#list-settings-"+c).addClass("ai-expaned"))});a("#list-settings-"+b+" span.checkbox-list-button").click(function(){a(this).hasClass("dashicons-yes")?(a(this).removeClass("dashicons-yes").addClass("dashicons-no"),a(this).prev().removeAttr("checked")):(a(this).removeClass("dashicons-no").addClass("dashicons-yes"),
110
- a(this).prev().attr("checked","1"))});a("#manual-button-"+b).button({}).show().click(function(){var c=a(this).attr("id");c=c.replace("manual-button-","");a("#manual-settings-"+c).toggle()});a("#misc-button-"+b).button({}).show().click(function(){var c=a(this).attr("id");c=c.replace("misc-button-","");a("#misc-settings-"+c).toggle()});a("#preview-button-"+b).button({}).show().click(function(){var c=a(this).attr("id");c=c.replace("preview-button-","");a(this).blur();var e=!1,g="1"==a(this).attr("iframe")?
111
- 1:0;a(this).attr("iframe","");var n=a("select#block-alignment-"+c+" option:selected").attr("value"),r=a("select#horizontal-position-"+c+" option:selected").attr("value"),q=a("select#vertical-position-"+c+" option:selected").attr("value"),t=a("#horizontal-margin-"+c).val(),w=a("#vertical-margin-"+c).val(),B=a("select#animation-"+c+" option:selected").attr("value"),H=a("#custom-css-"+c).val(),G="";n==AI_ALIGNMENT_DEFAULT?G=a("#css-none-"+c).text():n==AI_ALIGNMENT_CUSTOM_CSS?(G=H,e=is_sticky(H)):n==
112
- AI_ALIGNMENT_LEFT?G=a("#css-left-"+c).text():n==AI_ALIGNMENT_RIGHT?G=a("#css-right-"+c).text():n==AI_ALIGNMENT_CENTER?G=a("#css-center-"+c).text():n==AI_ALIGNMENT_FLOAT_LEFT?G=a("#css-float-left-"+c).text():n==AI_ALIGNMENT_FLOAT_RIGHT?G=a("#css-float-right-"+c).text():n==AI_ALIGNMENT_STICKY_LEFT?G=a("#css-sticky-left-"+c).text():n==AI_ALIGNMENT_STICKY_RIGHT&&(G=a("#css-sticky-right-"+c).text());n==AI_ALIGNMENT_STICKY_TOP?G=a("#css-sticky-top-"+c).text():n==AI_ALIGNMENT_STICKY_BOTTOM?G=a("#css-sticky-bottom-"+
113
- c).text():n==AI_ALIGNMENT_STICKY&&(G=update_sticky_margins(a("#css-sticky-"+c).text(),t,w),e=!0);var P=a("#name-label-"+c).text(),Y=get_editor_text(c),Da=a("input#process-php-"+c).is(":checked")?1:0,Ea=a("input#show-label-"+c).is(":checked")?1:0,Fa=a("#close-button-"+c+" option:selected").attr("value"),Ga=a("input#background-"+c).is(":checked")?1:0,Ha=a("input#body-background-"+c).is(":checked")?1:0,Ia=a("#bkg-image-url-"+c).val(),Ja=a("input#bkg-color-"+c).val(),Ka=a("select#bkg-size-"+c+" option:selected").attr("value"),
114
- La=a("select#bkg-repeat-"+c+" option:selected").attr("value");if(e)e=screen.availTop,ma=screen.availLeft,na=screen.availWidth,oa=screen.availHeight;else{e=screen.height/2-410;var ma=100,na=820,oa=820}c={action:"ai_ajax_backend",preview:c,ai_check:ai_nonce,name:b64e(P),code:b64e(Y),alignment:btoa(n),horizontal:btoa(r),vertical:btoa(q),horizontal_margin:btoa(t),vertical_margin:btoa(w),animation:btoa(B),alignment_css:btoa(G),custom_css:btoa(H),php:Da,label:Ea,close:Fa,background:Ga,body_background:Ha,
115
- background_image:btoa(Ia),background_color:btoa(Ja),background_size:btoa(Ka),background_repeat:btoa(La),iframe:g};open_popup_window_post(ajaxurl,"width="+na+",height="+oa+",top="+e+",left="+ma+",resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","preview",c)});a("select#animation-"+b).change(function(){var c=a(this).attr("id").tabIndex(),e=a(this).find("option:selected").attr("value"),g=a(this).closest(".sticky-animation").find(".animation-parameters");e==AI_ANIMATION_NONE||
116
- a("input#background-"+c).is(":checked")?g.hide():g.show()});a("#iframe-preview-button-"+b).button({}).show().click(function(){var c=a(this).attr("id");c=c.replace("iframe-preview-button-","");a("#preview-button-"+c).attr("iframe","1").click()});L("category",b);L("tag",b);L("taxonomy",b);L("id",b);S("url",b);S("url-parameter",b);S("cookie",b);S("referer",b);L("client",b);S("ip-address",b);L("country",b);L("city",b);var d=function(c){a("#ms-country-select-"+c).toggle();before_update_selection_from_list=
117
- null},f=function(c){a("#ms-city-select-"+c).toggle();before_update_selection_from_list=null};a("#country-city-"+b).click(function(){var c=a(this).attr("id").tabIndex();a(this).find("span").toggle();a(this).next().find("span").toggle();var e=a("#country-button-"+c),g=a("#city-button-"+c),n=a("#ms-country-select-"+c);country_selection_container_visible=n.length&&n.is(":visible");c=a("#ms-city-select-"+c);city_selection_container_visible=c.length&&c.is(":visible");country_selection_container_visible&&
118
- (before_update_selection_from_list=d,g.click());city_selection_container_visible&&(before_update_selection_from_list=f,e.click())});a("#tracking-"+b).checkboxButton().click(function(){var c=a(this).attr("id").replace("tracking-",""),e=a("select#block-alignment-"+c+" option:selected").attr("value");a("#tracking-"+c).next().find(".checkbox-icon").hasClass("on")||e!=AI_ALIGNMENT_NO_WRAPPING?a("#tracking-wrapping-warning-"+c).hide():a("#tracking-wrapping-warning-"+c).show()});a("#simple-editor-"+b).checkboxButton().click(function(){a(this).attr("id").replace("simple-editor-",
119
- "")!=active_tab||a(this).hasClass("clicked")||(a(this).addClass("clicked"),a("#ai-tab-container .simple-editor-button").click(),a(this).removeClass("clicked"))});a("#simple-editor-"+b).is(":checked")&&(A(b,!0),a("#simple-editor-"+b).next("label").find(".checkbox-icon").addClass("on"));a("#process-php-"+b).checkboxButton();a("#disable-insertion-"+b).checkboxButton();a("#ai-misc-container-"+b).tabs();a("#ai-misc-tabs-"+b).show();a("#ai-devices-container-"+b).tabs();a("#ai-devices-tabs-"+b).show();a("#tools-button-"+
120
- b).click(function(){a(this).find(".checkbox-icon").hasClass("on")||(a("label.rotation-button").each(function(){a(this).find(".checkbox-icon").hasClass("on")&&a(this).prev().click()}),a("label.code-generator-button").each(function(){a(this).find(".checkbox-icon").hasClass("on")&&a(this).prev().click()}),a("code-generator").hide());a(".ai-tools-toolbar").toggle();a("label.tools-button").find(".checkbox-icon").toggleClass("on")});a("#ai-code-generator-container-"+b).tabs();a("select#adsense-type-"+b).change(function(){var c=
121
- a(this).attr("id").replace("adsense-type-","");N(c)});a("select#adsense-size-"+b).change(function(){var c=a(this).attr("id").replace("adsense-size-","");N(c)});a("select#amazon-amp-"+b).change(function(){var c=a(this).attr("id").replace("amazon-amp-","");console.log("block",c);v(c)});N(b);v(b);a("#code-generator-"+b).click(function(){var c=a(this).attr("id").replace("code-generator-","");a("#ai-code-generator-container-"+c).toggle();a(this).next("label").find(".checkbox-icon").toggleClass("on")});
122
- a("#visual-editor-"+b).click(function(){var c=a(this).attr("id").replace("visual-editor-",""),e=b64e(get_editor_text(c)),g=a("input#process-php-"+c).is(":checked")?1:0;open_popup_window_post(ajaxurl,"width=820,height=870,top="+(screen.height/2-435)+",left=100,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","edit",{action:"ai_ajax_backend",edit:c,ai_check:ai_nonce,code:e,php:g})});a("#select-image-button-"+b).click(function(c){a(this).blur();var e=a(this).attr("id").replace("select-image-button-",
123
- "");c.preventDefault();if(!g){var g=wp.media({title:ai_admin.select_banner_image,button:{text:ai_admin.use_this_image},multiple:!1});g.on("select",function(){var n=g.state().get("selection").first().toJSON();a("#banner-image-"+e).attr("src",n.url);a("#banner-image-url-"+e).val(n.url).trigger("input")})}g.open()});a("#select-placeholder-button-"+b).click(function(c){a(this).blur();c=a(this).attr("id").replace("select-placeholder-button-","");var e=a("#banner-image-"+c).attr("src");open_popup_window_post(ajaxurl,
124
- "width=820,height=870,top="+(screen.height/2-435)+",left=100,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","preview",{action:"ai_ajax_backend",placeholder:e,block:c,ai_check:ai_nonce})});a("#banner-image-url-"+b).on("input",function(){var c=a(this).attr("id").replace("banner-image-url-",""),e=a("#banner-image-"+c),g=a(this).val();""==g&&(e.hide(),a("div#tab-banner-"+c+" table.ai-settings-table").css("position","relative"));e.attr("src",g).on("load",function(){e.show();
125
- a("div#tab-banner-"+c+" table.ai-settings-table").css("position","inherit");a(this).closest(".ai-banner").removeClass("ai-banner-top");var n=this.naturalWidth;2<n/this.naturalHeight&&300<n&&a(this).closest(".ai-banner").addClass("ai-banner-top")}).on("error",function(){e.is(":visible")&&(e.hide().attr("src",""),a("div#tab-banner-"+c+" table.ai-settings-table").css("position","relative"))})});a("#banner-url-"+b).on("input",function(){var c=a(this).attr("id").replace("banner-url-","");""==a(this).val().trim()?
126
- a("#banner-link-"+c).removeAttr("href"):a("#banner-link-"+c).attr("href",a(this).val())});a("#import-code-"+b).click(function(){a(this).next("label").find(".checkbox-icon").addClass("on");var c=a(this).attr("id").replace("import-code-","");a.post(ajaxurl,{action:"ai_ajax_backend",ai_check:ai_nonce,"import-code":b64e(get_editor_text(c))}).done(function(e){if(""!=e){a("#ai-error-container").hide();try{var g=JSON.parse(e)}catch(n){console.log("AI IMPORT CODE ERROR:",e),a("#ai-error-container").text(e).show()}if("undefined"!==
127
- typeof g&&"undefined"!==typeof g.type)switch(debug&&console.log("AI IMPORT CODE:",g),e=g.type,a("#ai-code-generator-container-"+c).tabs({active:e==AI_CODE_UNKNOWN?AI_CODE_BANNER:e}),e){case AI_CODE_BANNER:a("#banner-image-url-"+c).val(g.image).trigger("input");a("#image-alt-text-"+c).val(g.alt);a("#lazy-load-image-"+c).prop("checked","lazy"==g.loading);a("#banner-url-"+c).val(g.link).trigger("input");a("#open-new-tab-"+c).prop("checked","_blank"==g.target);break;case AI_CODE_ADSENSE:a("#adsense-comment-"+
128
- c).val(g["adsense-comment"]);a("#adsense-publisher-id-"+c).val(g["adsense-publisher-id"]);a("#adsense-ad-slot-id-"+c).val(g["adsense-ad-slot-id"]);a("#adsense-type-"+c).val(g["adsense-type"]);a("#adsense-size-"+c).val(g["adsense-size"]);e="";""!=g["adsense-width"]&&""!=g["adsense-height"]&&(e=g["adsense-width"]+"x"+g["adsense-height"]);a("#tab-adsense-"+c+" .adsense-ad-size.fixed").parent().find(".scombobox-display").val(e);a("#adsense-amp-"+c).val(g["adsense-amp"]);a("#adsense-amp-block-on-consent-"+
129
- c).prop("checked","#"!=g["adsense-amp-block-on-consent"]);a("#adsense-layout-"+c).val(g["adsense-layout"]);a("#adsense-layout-key-"+c).val(decodeURIComponent(g["adsense-layout-key"]));"false"==decodeURIComponent(g["adsense-full-width-responsive"])?a("#adsense-layout-"+c+" select.adsense-full-width").val("disabled"):a("#adsense-layout-"+c+" select.adsense-full-width").val("enabled");a("#adsense-size-"+c).val()==AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT&&a("#tab-adsense-"+c+" tr.adsense-viewport").each(function(n){var r=
130
- g["adsense-sizes"][n][0];n=g["adsense-sizes"][n][1];var q="";""!=r&&""!=n&&(q=r+"x"+n);a(this).find(".adsense-ad-size").parent().find(".scombobox-display").val(q)});N(c);break;case AI_CODE_AMAZON:a("#amazon-data-"+c).val(g["amazon-data"]),a("#amazon-amp-"+c).val(g["amazon-amp"]),a("#amazon-width-"+c).val(g["amazon-width"]),a("#amazon-height-"+c).val(g["amazon-height"]),a("#amazon-amp-block-on-consent-"+c).prop("checked","#"!=g["amazon-amp-block-on-consent"]),v(c)}}}).fail(function(e,g,n){console.log("AI IMPORT CODE ERROR:",
131
- e.status,e.statusText);a("#ai-error-container").text(ai_admin.error+" "+e.status+": "+e.statusText).show()}).always(function(){a("#import-code-"+c).next("label").find(".checkbox-icon").removeClass("on")})});a("#generate-code-"+b).click(function(){a("#ai-error-container").hide();a(this).next("label").find(".checkbox-icon").addClass("on");var c=a(this).attr("id").replace("generate-code-",""),e=a("#ai-code-generator-container-"+c).tabs("option","active"),g={action:"ai_ajax_backend",ai_check:ai_nonce,
132
- "generate-code":e};switch(e){case AI_CODE_BANNER:g.image=a("#banner-image-url-"+c).val();g.alt=a("#image-alt-text-"+c).val();a("#lazy-load-image-"+c).is(":checked")&&(g.loading="lazy");g.link=a("#banner-url-"+c).val();a("#open-new-tab-"+c).is(":checked")&&(g.target="_blank");break;case AI_CODE_ADSENSE:g.block=c;g["adsense-comment"]=a("#adsense-comment-"+c).val();g["adsense-publisher-id"]=a("#adsense-publisher-id-"+c).val();g["adsense-ad-slot-id"]=a("#adsense-ad-slot-id-"+c).val();g["adsense-type"]=
133
- parseInt(a("select#adsense-type-"+c+" option:selected").attr("value"));g["adsense-size"]=parseInt(a("select#adsense-size-"+c+" option:selected").attr("value"));var n=a("#tab-adsense-"+c+" .adsense-ad-size.fixed").parent().find(".scombobox-display").val().trim().toLowerCase().split("x");g["adsense-width"]="";g["adsense-height"]="";2==n.length&&(g["adsense-width"]=parseInt(n[0]),g["adsense-height"]=parseInt(n[1]));g["adsense-amp"]=parseInt(a("select#adsense-amp-"+c+" option:selected").attr("value"));
134
- g["adsense-amp-block-on-consent"]=a("#adsense-amp-block-on-consent-"+c).is(":checked")?"":"#";g["adsense-layout"]=a("#adsense-layout-"+c).val();g["adsense-layout-key"]=a("#adsense-layout-key-"+c).val();g["adsense-full-width-responsive"]="true";"disabled"==a("#adsense-layout-"+c+" select.adsense-full-width").val()&&(g["adsense-full-width-responsive"]="false");if(g["adsense-size"]==AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT){var r=[];a("#tab-adsense-"+c+" tr.adsense-viewport").each(function(q){q=a(this).find(".adsense-ad-size").parent().find(".scombobox-display").val().trim().toLowerCase().split("x");
135
- var t={width:"",height:""};2==q.length&&(t={width:parseInt(q[0]),height:parseInt(q[1])});r.push(t)});g["adsense-viewports"]=r}break;case AI_CODE_AMAZON:g["amazon-data"]=a("#amazon-data-"+c).val(),g["amazon-amp"]=a("select#amazon-amp-"+c+" option:selected").attr("value"),g["amazon-width"]=a("#amazon-width-"+c).val(),g["amazon-height"]=a("#amazon-height-"+c).val(),g["amazon-amp-block-on-consent"]=a("#amazon-amp-block-on-consent-"+c).is(":checked")?"":"#"}debug&&(console.log("AI GENERATE CODE:",e),console.log(g));
136
- a.post(ajaxurl,g).done(function(q){""!=q&&(q=JSON.parse(q),"undefined"!==typeof q&&set_editor_text(c,q))}).fail(function(q,t,w){console.log("AI GENERATE CODE ERROR:",q.status,q.statusText);a("#ai-error-container").text(ai_admin.error+" "+q.status+": "+q.statusText).show()}).always(function(){a("#generate-code-"+c).next("label").find(".checkbox-icon").removeClass("on")})});a("#clear-block-"+b).click(function(){T(!0,!0,!0,!0)});a("#copy-block-"+b).click(function(){Ma()});a("#paste-name-"+b).click(function(){T(!0,
137
- !1,!1,!1)});a("#paste-code-"+b).click(function(){T(!1,!0,!1,!1)});a("#paste-settings-"+b).click(function(){T(!1,!1,!0,!1)});a("#paste-block-"+b).click(function(){T(!0,!0,!0,!1)});a("#rotation-"+b).click(function(){var c=a(this).attr("id").replace("rotation-",""),e=a("#ai-rotation-container-"+c);a(this).next("label").find(".checkbox-icon").toggleClass("on");e.toggle();var g=e.tabs(),n=g.find("ul");e.is(":visible")?(e.data("code",b64e(get_editor_text(c))),e.data("option",1),ea(c,1),g.tabs("option",
138
- "active",0),a("input[name=ai_save]").css("color","#f00"),setTimeout(function(){Na(c)},5)):(Oa(c),n.find("li").remove(),g.find("div.rounded").remove())});a("#add-option-"+b).click(function(){var c=a(this).attr("id").replace("add-option-","");ea(c,1);a("#ai-rotation-container-"+c).find("ul").find("li").slice(-1).click()});a("#remove-option-"+b).click(function(){var c=a(this).attr("id").replace("remove-option-","");Pa(c,a("#ai-rotation-container-"+c).tabs("option","active"))});a("#rotation-groups-"+
139
- b).click(function(){var c=a(this).attr("id").tabIndex(),e=a(this).next().find("span");e.toggleClass("on");c=a("#ai-rotation-container-"+c);e.hasClass("on")?(c.find("span.group-name-label").show(),c.find("span.option-name-label").hide(),c.find("td.option-parameters").hide()):(c.find("span.group-name-label").hide(),c.find("span.option-name-label").show(),c.find("td.option-parameters").show())});a("#tab-"+b+" .adsense-list").click(function(){a(this).blur();ca()});a("select#html-element-insertion-"+b).change(function(){a("select#html-element-insertion-"+
140
- b+" option:selected").attr("value")==AI_HTML_INSERTION_SEREVR_SIDE?a("#server-side-insertion-"+b).hide():a("#server-side-insertion-"+b).show()});a("#tab-"+b+" .adsense-ad-size").scombobox({showDropDown:!1,invalidAsValue:!0,animation:{duration:50}});a("select#close-button-"+b).change(function(){var c=a(this).attr("id").replace("close-button-","");a("select#close-button-sticky-"+c).val(a("select#close-button-"+c+" option:selected").attr("value"))});a("select#close-button-sticky-"+b).change(function(){var c=
141
- a(this).attr("id").replace("close-button-sticky-","");a("select#close-button-"+c).val(a("select#close-button-sticky-"+c+" option:selected").attr("value"))});a("input#filter-numbers-insertions-"+b).on("keyup",function(){var c=a(this).attr("id").tabIndex();a("input#filter-numbers-"+c).val(a(this).val());a("select#filter-type-"+c).val(0);a("input#invert-filter-"+c).removeAttr("checked")});a("input#filter-numbers-"+b).on("keyup",function(){var c=a(this).attr("id").tabIndex();a("input#filter-numbers-insertions-"+
142
- c).val(a(this).val())});a("#html-elements-button-"+b).click(function(){var c=a(this).attr("id").replace("html-elements-button-",""),e=a("input#html-elements-"+c).val(),g=a("#ai-settings").data("home-relative-url");open_popup_window_post(g,"width="+(screen.availWidth-15)+",height="+(screen.availHeight-65)+",top="+screen.availTop+",left="+screen.availLeft+",resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","ai-selector",{html_element_selection:c,selector:e,input:"input#html-elements-"+
143
- c})});a("#wait-for-button-"+b).click(function(){var c=a(this).attr("id").replace("wait-for-button-",""),e=a("input#wait-for-"+c).val(),g=a("#ai-settings").data("home-relative-url");open_popup_window_post(g,"width="+(screen.availWidth-15)+",height="+(screen.availHeight-65)+",top="+screen.availTop+",left="+screen.availLeft+",resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","ai-selector",{html_element_selection:c,selector:e,input:"input#wait-for-"+c})});a("#select-bkg-image-button-"+
144
- b).click(function(c){a(this).blur();var e=a(this).attr("id").replace("select-bkg-image-button-","");c.preventDefault();if(!g){var g=wp.media({title:ai_admin.select_background_image,button:{text:ai_admin.use_this_image},multiple:!1});g.on("select",function(){var n=g.state().get("selection").first().toJSON();a("#bkg-image-"+e).attr("src",n.url);a("#bkg-image-url-"+e).val(n.url).trigger("input")})}g.open()});a("#bkg-image-url-"+b).on("input",function(){var c=a(this).attr("id").replace("bkg-image-url-",
145
- ""),e=a("#bkg-image-"+c),g=a(this).val();""==g&&(e.hide(),a("div#sticky-background-"+c+" table.ai-settings-table").css("position","relative"));M(c);e.attr("src",g).on("load",function(){e.show();a("div#sticky-background-"+c+" table.ai-settings-table").css("position","inherit");a(this).closest(".ai-banner").removeClass("ai-banner-top");var n=this.naturalWidth;2<n/this.naturalHeight&&300<n&&a(this).closest(".ai-banner").addClass("ai-banner-top")}).on("error",function(){e.is(":visible")&&(e.hide().attr("src",
146
- ""),a("div#sticky-background-"+c+" table.ai-settings-table").css("position","relative"))})})}function M(b){var d=a("select#horizontal-position-"+b+" option:selected").attr("value"),f=a("select#horizontal-position-"+b+" option:selected"),c=a("select#vertical-position-"+b+" option:selected").attr("value"),e=a("select#vertical-position-"+b+" option:selected"),g=a("input#background-"+b).is(":checked"),n=d==AI_STICK_HORIZONTAL_CENTER&&a("input#body-background-"+b).is(":checked");g?a("#sticky-position-"+
147
- b).addClass("ai-background"):a("#sticky-position-"+b).removeClass("ai-background");var r=e.data("css-bkg");g&&"undefined"!=typeof r?e=n?a("select#vertical-position-"+b).data("css-body-bkg"):r:(r=e.data("css-"+d),e="undefined"!=typeof r?r:e.data("css"));n=f.data("css-bkg");g&&"undefined"!=typeof n?f=n:(n=f.data("css-"+c),f="undefined"!=typeof n?n:f.data("css"));c="";if(d==AI_STICK_HORIZONTAL_CENTER&&g){d=a("input#bkg-color-"+b).val().trim();""!=d&&(c=c+" background-color: "+d+";");d=a("input#bkg-image-url-"+
148
- b).val().trim();""!=d&&(c=c+" background-image: url("+d+");");d=parseInt(a("select#bkg-size-"+b+" option:selected").attr("value"));if(d!=AI_BACKGROUND_SIZE_DEFAULT)switch(d){case AI_BACKGROUND_SIZE_COVER:c+=" background-size: cover;";break;case AI_BACKGROUND_SIZE_CONTAIN:c+=" background-size: contain;";break;case AI_BACKGROUND_SIZE_FILL:c+=" background-size: 100% 100%;"}d=parseInt(a("select#bkg-repeat-"+b+" option:selected").attr("value"));if(d!=AI_BACKGROUND_REPEAT_DEFAULT)switch(d){case AI_BACKGROUND_REPEAT_NO:c+=
149
- " background-repeat: no-repeat;";break;case AI_BACKGROUND_REPEAT_YES:c+=" background-repeat: repeat;";break;case AI_BACKGROUND_REPEAT_HORIZONTALY:c+=" background-repeat: repeat-x;";break;case AI_BACKGROUND_REPEAT_VERTICALLY:c+=" background-repeat: repeat-y;";break;case AI_BACKGROUND_REPEAT_SPACE:c+=" background-repeat: space;";break;case AI_BACKGROUND_REPEAT_ROUND:c+=" background-repeat: round;"}}a("#css-sticky-"+b+" .ai-sticky-css").text(e+f+c);X(b)}function X(b){a("#sticky-scroll-warning-"+b).hide();
150
- var d=a("select#insertion-type-"+b+" option:selected").attr("value"),f=a("select#block-alignment-"+b+" option:selected").attr("value"),c=a("select#vertical-position-"+b+" option:selected").attr("value"),e=a("input#background-"+b).is(":checked")?1:0,g=a("input#body-background-"+b).is(":checked")?1:0;f!=AI_ALIGNMENT_STICKY||c!=AI_SCROLL_WITH_THE_CONTENT||d==AI_ABOVE_HEADER||d==AI_DISABLED||e&&g||a("#sticky-scroll-warning-"+b).show()}function aa(b){var d=a("#icons-css-code-"+b);if(!d.hasClass("configured")){var f=
 
 
 
151
  [];a("select#insertion-type-"+b).imagepicker({hide_select:!1}).find("option").each(function(c){f.push(a(this).data("title"))});a("select#insertion-type-"+b+" + ul").appendTo("#automatic-insertion-"+b).css("padding-top","10px").find("li").each(function(c){a(this).attr("title",f[c]).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})});f=[];a("select#block-alignment-"+b).imagepicker({hide_select:!1}).find("option").each(function(c){f.push(a(this).data("title"))});a("select#block-alignment-"+
152
  b+" + ul").appendTo("#alignment-style-"+b).css("padding-top","10px").find("li").each(function(c){a(this).attr("title",f[c]).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})});f=[];a("select#horizontal-position-"+b).imagepicker({hide_select:!1}).find("option").each(function(c){f.push(a(this).data("title"))});a("select#horizontal-position-"+b+" + ul").appendTo("#horizontal-positions-"+b).css("padding-top","10px").find("li").each(function(c){a(this).attr("title",f[c]).tooltip({track:!0,
153
  delay:700,showURL:!1,showBody:" | ",fade:250})});f=[];a("select#vertical-position-"+b).imagepicker({hide_select:!1}).find("option").each(function(c){f.push(a(this).data("title"))});a("select#vertical-position-"+b+" + ul").appendTo("#vertical-positions-"+b).css("padding-top","10px").find("li").each(function(c){a(this).attr("title",f[c]).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})});d.addClass("configured")}}function Na(b){a("#rotation-"+b).next("label").find(".checkbox-icon").addClass("active");
@@ -158,9 +161,9 @@ b).next("label").find(".checkbox-icon").removeClass("active")})}function Oa(b){a
158
  share:a(this).find("input.option-share").val(),scheduling:a(this).find("input.option-scheduling").val(),time:a(this).find("input.option-time").val(),code:e,groups:g};c.push(e)});debug&&console.log("ROTATION DATA:",c);a.post(ajaxurl,{action:"ai_ajax_backend",ai_check:ai_nonce,"generate-rotation-code":b64e(JSON.stringify(c))}).done(function(e){a("#ai-error-container").hide();""!=e&&(e=JSON.parse(e),"undefined"!==typeof e&&(debug&&console.log("ROTATION CODE:",e),set_editor_text(b,e)))}).fail(function(e,
159
  g,n){console.log("AI GENERATE ROTATION CODE ERROR:",e.status,e.statusText);a("#ai-error-container").text(ai_admin.error+" "+e.status+": "+e.statusText).show();e=a("#ai-rotation-container-"+b);set_editor_text(b,b64d(e.data("code")));e.hide();a("#rotation-"+b).next("label").find(".checkbox-icon").removeClass("on");e.find("ul").find("li").remove();e.find("div.rounded").remove()}).always(function(){a("#rotation-"+b).next("label").find(".checkbox-icon").removeClass("active");a("input[name=ai_save]").css("color",
160
  "#555")})}function ea(b,d){var f=a("#ai-rotation-container-"+b),c=f.find("ul"),e=f.find("ul >li").length,g=a("#rotation-tabs"),n=g.find("li");g=g.find("div.rounded");for(option=e+1;option<=e+d&&!(17<option);option++){var r=n.clone().show();r.find("a").attr("href","#tab-option-"+b+"-"+option).text(String.fromCharCode(64+option));r.attr("id","option-"+b+"-"+option).appendTo(c).data("code",b64e(""));r.click(function(){var q=a(this).closest(".ai-rotate"),t=q.attr("id").replace("ai-rotation-container-",
161
- ""),w=q.data("option"),B=a(this).attr("id").replace("option-"+t+"-","");q.data("option",B);debug&&console.log("OPTION CHANGE:",w,"=>",B);a("#option-"+t+"-"+w).data("code",b64e(get_editor_text(t)));set_editor_text(t,b64d(a(this).data("code")))});g.clone().show().attr("id","tab-option-"+b+"-"+option).appendTo(f);f.tabs("refresh")}f.find("[data-title]").each(function(){a(this).attr("title",a(this).data("title"))});f.find("[title]").tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250});f.tabs("option",
162
  "active",option-2)}function Pa(b,d){var f=a("#ai-rotation-container-"+b);if(1!=f.find("ul >li").length){var c=f.find("ul");c.find("li").slice(d,d+1).remove();f.find("div.rounded").slice(d,d+1).remove();f.find("ul li").each(function(e){e+=1;a(this).attr("id","option-"+b+"-"+e).find("a").attr("href","#tab-option-"+b+"-"+e).text(String.fromCharCode(64+e))});f.find("div.rounded").each(function(e){e+=1;a(this).attr("id","tab-option-"+b+"-"+e)});f.tabs("refresh");f=0==d?0:d-1;active_li=a("#option-"+b+"-"+
163
- (f+1));set_editor_text(b,b64d(active_li.data("code")));c.closest(".ai-rotate").data("option",f+1)}}function L(b,d){var f=a("#"+b+"-select-"+d);if(0!==f.length){var c=function(n,r){"function"==typeof before_update_selection_from_list&&before_update_selection_from_list(d);e.find("span.ui-button-text").addClass("ai-button-updating");setTimeout(function(){Qa(n,r)},5)},e=a("#"+b+"-button-"+d),g=e.data("list");null==g&&(g=b);e.click(function(){if(f.hasClass("multi-select"))c(a("#"+g+"-list-"+d),b),a("#ms-"+
164
  b+"-select-"+d).toggle();else if(0==f.find("option").length){var n=a("#ms-"+b+"-select-"+d).find(".filter-input");n=n.length?n.val():"";var r=f.data("parameters");r="undefined"==typeof r?"":r;a("#ai-loading").show();e.find("span.ui-button-text").addClass("ai-button-active").show();a.get(ajaxurl+"?action=ai_ajax_backend&list-options="+b+"&parameters="+r+"&filter="+n+"&ai_check="+ai_nonce,function(q){if(""!=q){var t="";q=a("option","<div>"+q+"</div>");0!=q.length&&0==a(q[0]).attr("value").length&&(t=
165
  a(q[0]).text(),q=q.splice(1));f.attr("data-message",t);f.html(q);pa(f,b,g,d);a("#ms-"+b+"-select-"+d).find(".filter-message").text(t);c(a("#"+g+"-list-"+d),b)}}).fail(function(q,t,w){a("input.filter-input",selection_container).remove();console.log("Error loading "+b+" options: "+q.status+" "+q.statusText)}).always(function(){a("#ai-loading").hide();e.find("span.ui-button-text").removeClass("ai-button-active")})}else pa(f,b,g,d)});a("#"+g+"-list-"+d).focusout(function(){var n=a("#ms-"+b+"-select-"+
166
  d);n.length&&n.is(":visible")&&c(a(this),b)})}}function qa(b,d,f){var c=b.$element,e=c.val();null!=e&&(""==e[0]&&(e=e.splice(1)),e=e.join(", ").trim(","));d=c.attr("id").replace(d+"-select-","");f=a("#"+f+"-list-"+d);d=f.attr("data-custom");"undefined"!=typeof d&&""!=d&&(null!=e?(""!=e&&(e+=", "),e+=d):e=d);f.attr("value",e);b.qs1.cache()}function Qa(b,d){Array.prototype.diff=function(t){return this.filter(function(w){return-1===t.indexOf(w)})};var f=b.attr("id").replace(/^\D+/g,""),c=a("#"+d+"-select-"+
@@ -170,42 +173,42 @@ n&&(g=e.diff(n));null!=g&&(g=g.join(", "));b.attr("data-custom",g);c.multiSelect
170
  t);c.empty();c.removeClass("multi-select");a("#"+d+"-button-"+f).click();return!1}));e.show();a("#ms-"+d+"-select-"+f).find(".search-input").hide();q.button().show();r.val(c.attr("data-filter"));a("#ms-"+d+"-select-"+f).find(".filter-message").text(c.attr("data-message"))}}a("#"+d+"-button-"+f).find("span.ui-button-text").removeClass("ai-button-updating")}function pa(b,d,f,c){b.addClass("multi-select");b.multiSelect({selectableHeader:'<div class="ai-list-filter-container"><input type="text" class="filter-input" autocomplete="off" placeholder="'+
171
  ai_admin.filter+'" title="'+ai_admin.filter_title+'"><button class="filter-button" style="margin-top: -2px; display: none;">'+ai_admin.button_filter+'</button><span class="filter-message"></span></div><input type="text" class="search-input" autocomplete="off" placeholder="'+ai_admin.search+'">',selectionHeader:"",afterInit:function(e){var g=this;e=g.$selectableUl.prev();g.$selectionUl.prev();var n="#"+g.$container.attr("id")+" .ms-elem-selectable:not(.ms-selected)";g.$container.attr("id");g.qs1=e.quicksearch(n).on("keydown",
172
  function(r){if(40===r.which)return g.$selectableUl.focus(),!1})},afterSelect:function(e){qa(this,d,f)},afterDeselect:function(e){qa(this,d,f)}})}function S(b,d){var f=a("#"+b+"-editor-"+d),c=a("#"+b+"-list-"+d);0!==f.length&&(a("#"+b+"-button-"+d).click(function(){ra(c,b,!0)}),f.focusout(function(){sa(f,b)}),c.focusout(function(){f.is(":visible")&&ra(a(this),b,!1)}))}function ta(b,d){var f=b.hasClass("ai-clean-protocol"),c=b.hasClass("ai-clean-domain"),e=b.hasClass("ai-only-domain"),g=b.hasClass("ai-list-sort");
173
- d=d.filter(function(w,B,H){return H.indexOf(w)===B});for(var n=[],r=0;r<d.length;r++){var q=d[r];if(f&&0==q.indexOf("http")){q=q.replace("http://","");q=q.replace("https://","");var t=q.indexOf("/");c?q=0<t?q.substring(t):"":e&&0<t&&(q=q.substring(0,t))}""!=q&&n.push(q)}g&&n.sort();return n}function ra(b,d,f){var c=b.attr("id").replace(d+"-list-","");c=a("#"+d+"-editor-"+c);f&&c.toggle();c.is(":visible")?(d=b.attr("value"),f=",",b.hasClass("ai-list-space")&&-1<d.indexOf(" ")&&-1==d.indexOf(",")&&
174
  (f=" "),d=d.split(f).map(Function.prototype.call,String.prototype.trim),clean_list_items=ta(b,d),c.val(clean_list_items.join("\n"))):sa(c,d)}function sa(b,d){var f=b.val().split("\n").map(Function.prototype.call,String.prototype.trim),c=b.attr("id").replace(d+"-editor-","");c=a("#"+d+"-list-"+c);clean_list_items=ta(c,f);c.attr("value",clean_list_items.join(", "))}function fa(){debug&&console.log("");if(debug){var b=(new Date).getTime();console.log("since last time: "+((b-ha)/1E3).toFixed(3))}debug&&
175
- console.log("configure_hidden_tab");debug&&console.log("tabs_to_configure: "+tabs_to_configure);do{if(0==tabs_to_configure.length){save_enabled=!0;debug_title&&a("#plugin_name").css("color","#000");debug&&console.log("configure_hidden_tab: DONE");return}var d=tabs_to_configure.pop();var f=a("#tab-"+d)}while(f.hasClass("configured"));debug&&console.log("Configuring tab: "+d);0!=d?da(d):ja();debug&&(d=(new Date).getTime(),console.log("time: "+((d-b)/1E3).toFixed(3)),console.log("TIME: "+((d-Z)/1E3).toFixed(3)),
176
  ha=d);0!=tabs_to_configure.length?0!=ai_tab_setup_delay&&setTimeout(fa,ai_tab_setup_delay):(save_enabled=!0,debug_title&&0!=ai_tab_setup_delay&&a("#plugin_name").css("color","#000"),debug&&console.log("configure_hidden_tab: DONE"))}function Ra(b){if(a(b).hasClass("not-configured")){var d=a(b).data("template");if("undefined"!=typeof d){var f=[],c=a(b).data("colors");if("undefined"!=typeof c){var e=a.elycharts.templates["ai-pie"].defaultSeries.values;c.forEach(function(q){128==q?f.push(e[9]):f.push(e[q])})}c=
177
  a(b).data("values-1");null==c&&(c=a(b).data("values-2"));null==c&&(c=a(b).data("values-3"));null==c&&(c=a(b).data("values-4"));null==c&&(c=a(b).data("values-5"));null==c&&(c=a(b).data("values-6"));null==c&&(c=a(b).data("values-7"));null==c&&(c=a(b).data("values-8"));null==c&&(c=a(b).data("values-9"));var g=a(b).data("legend");if("undefined"!=typeof g&&"undefined"!=typeof g.serie129){var n={},r;for(r in g)"serie129"==r?n.serie10=g[r]:n[r]=g[r];g=n}a(b).chart({template:d,labels:a(b).data("labels"),
178
  values:{serie1:c,serie2:a(b).data("values-2"),serie3:a(b).data("values-3"),serie4:a(b).data("values-4"),serie5:a(b).data("values-5"),serie6:a(b).data("values-6"),serie7:a(b).data("values-7"),serie8:a(b).data("values-8"),serie9:a(b).data("values-9"),serie10:a(b).data("values-129")},legend:g,tooltips:{serie1:a(b).data("tooltips")},defaultSeries:{values:f,tooltip:{height:a(b).data("tooltip-height")}},defaultAxis:{max:a(b).data("max")},features:{grid:{draw:null==c?!0:50>c.length}}});a(b).removeClass("not-configured");
179
  a(b).parent().find("div.ai-chart-label").show()}}}function ua(b){a("#ai-rating-bar");a("#rating-value span").load(ajaxurl+"?action=ai_ajax_backend&rating="+b+"&ai_check="+ai_nonce,function(){var d=a("#rating-value span").text(),f=0;""!=d&&(f=parseFloat(d));a("#rating-value").css("width",20*f+"%");""==a("#rating-value span").text()&&(a("#ai-rating-bar").hide(),a("#ai-stars").show())})}function ba(b){a(b).find(".ai-chart.not-configured").each(function(){a(this).hasClass("hidden")||(a(this).attr("style",
180
- ""),Ra(this))})}function I(b,d,f,c){var e=b.attr(d);e.substr(-f.toString().length)==f&&b.attr(d,e.substr(0,e.length-f.toString().length)+c)}function Ma(){debug&&console.log("AI COPY FROM BLOCK",active_tab);var b=a("#ai-clipboard");b.html(a("#ai-clipboard-template").html());a("div#tab-"+active_tab+" input[name]:checkbox").each(function(d){var f=a(this).attr("checked");"undefined"!==typeof f&&!1!==f?b.find("input[name]:checkbox").eq(d).attr("checked","checked").next("label").find(".checkbox-icon").addClass("on"):
181
  b.find("input[name]:checkbox").eq(d).removeAttr("checked").next("label").find(".checkbox-icon").removeClass("on")});a("div#tab-"+active_tab+" input[name]:radio").each(function(d){var f=a(this).attr("checked");"undefined"!==typeof f&&!1!==f?b.find("input[name]:radio").eq(d).attr("checked","checked"):b.find("input[name]:radio").eq(d).removeAttr("checked")});a("div#tab-"+active_tab+" select[name]").each(function(d){var f=a(this).find("option:selected").val();b.find("select[name]").eq(d).find("option").removeAttr("selected");
182
  b.find("select[name]").eq(d).find("option[value = '"+f+"']").attr("selected",!0)});a("div#tab-"+active_tab+" input[name]:text").each(function(d){b.find("input[name]:text").eq(d).attr("value",a(this).val())});a("#list-settings-"+active_tab).is(":visible")?b.find("#list-settings-999").show():b.find("#list-settings-999").hide();a("#list-settings-"+active_tab).hasClass("ai-expanded")?b.find("#list-settings-999").addClass("ai-expanded"):b.find("#list-settings-999").removeClass("ai-expanded");a("div#tab-"+
183
  active_tab+" table.ai-lists tr").each(function(d){a(this).is(":visible")?b.find("table.ai-lists tr").eq(d).show():b.find("table.ai-lists tr").eq(d).hide();a(this).find("span.checkbox-list-button").hasClass("dashicons-no")?b.find("table.ai-lists tr").eq(d).find("span.checkbox-list-button").addClass("dashicons-no").removeClass("dashicons-yes"):b.find("table.ai-lists tr").eq(d).find("span.checkbox-list-button").removeClass("dashicons-no").addClass("dashicons-yes");a(this).hasClass("list-items")?b.find("table.ai-lists tr").eq(d).addClass("list-items"):
184
  b.find("table.ai-lists tr").eq(d).removeClass("list-items")});b.find("textarea.simple-editor").text(get_editor_text(active_tab));a("#ai-container .ai-copy").each(function(){a(this).next("label").find(".checkbox-icon").addClass("on")})}function Sa(b,d){debug&&console.log("AI LOAD BLOCK",b,"FROM DB");var f=a("#tools-button-"+active_tab);f.next("label").find(".checkbox-icon").hasClass("on")||f.click();a("#ai-loading").show();a.get(ajaxurl+"?action=ai_ajax_backend&settings="+b+"&single=1&ai_check="+ai_nonce,
185
- function(c){debug&&console.log("AI BLOCK LOADED");var e=a("#ai-clipboard");e.html(a("div#tab-"+b,c).html());e.find("[id]").each(function(){I(a(this),"id",b,999)});e.find("[for]").each(function(){I(a(this),"for",b,999)});e.find("[href]").each(function(){I(a(this),"href",b,999)});e.find("[name]").each(function(){I(a(this),"name",b,999)});e.find("[class]").each(function(){I(a(this),"class",b,999)});e.find("pre.ai-block-number").each(function(){var g=a(this).text().replace(b,999);a(this).text(g)});a("#ai-container .ai-copy").each(function(){a(this).next("label").find(".checkbox-icon").addClass("on")})}).fail(function(c,
186
  e,g){console.log("AI LOADING ERROR:",c.status,c.statusText);a("#ai-error-container").text(ai_admin.error+" "+c.status+": "+c.statusText).show()}).always(function(){a("#ai-loading").hide()})}function T(b,d,f,c){if(c){c=a("#ai-clipboard-template");c.find("input#name-edit-999").attr("value","Block "+active_tab).attr("default","Block "+active_tab);var e=c.html()}else e=a("#ai-clipboard").html();if(""!=e&&0!=active_tab){debug&&console.log("AI PASTE TO BLOCK",active_tab);c=a("div#tab-"+active_tab);var g=
187
- c.find("input#name-edit-"+active_tab).val(),n=get_editor_text(active_tab);if(f){f=a("#simple-editor-"+active_tab).is(":checked");var r=a("#ai-tools-toolbar-"+active_tab).is(":visible"),q=c.find(".ai-copy").next("label").find(".checkbox-icon").hasClass("on");f&&a("#simple-editor-"+active_tab).click();var t=c.find("input[name=ai_save]").attr("value"),w=c.find("#exceptions-button-container-"+active_tab).html(),B=c.find("#block-exceptions-"+active_tab).html();c.html(e).find("input[name=ai_save]").attr("value",
188
- t);b||c.find("input#name-edit-999").val(g);d||c.find("textarea#block-999").val(n);c.find("span#name-label-999").text(c.find("input#name-edit-999").val());d=c.find("input#name-edit-999").val();c.find("pre.ai-block-name").text('[adinserter name="'+d+'"]');c.find("[id]").each(function(){I(a(this),"id",999,active_tab)});c.find("[for]").each(function(){I(a(this),"for",999,active_tab)});c.find("[href]").each(function(){I(a(this),"href",999,active_tab)});c.find("[name]").each(function(){I(a(this),"name",
189
- 999,active_tab)});c.find("[class]").each(function(){I(a(this),"class",999,active_tab)});c.find("pre.ai-sidebars").text("");c.find("pre.ai-block-number").each(function(){var H=a(this).text().replace(999,active_tab);a(this).text(H)});c.find("#exceptions-button-container-"+active_tab).html(w);c.find("#block-exceptions-"+active_tab).html(B);da(active_tab);f&&a("#simple-editor-"+active_tab).click();r&&(a("#ai-tools-toolbar-"+active_tab).show(),a("#tools-button-"+active_tab).next("label").find(".checkbox-icon").addClass("on"));
190
  q&&c.find(".ai-copy").next("label").find(".checkbox-icon").addClass("on")}else b&&(b=a(e).find("input#name-edit-999").val(),c.find("input#name-edit-"+active_tab).val(b),c.find("span#name-label-"+active_tab).text(b),c.find("pre.ai-block-name").text('[adinserter name="'+b+'"]')),d&&set_editor_text(active_tab,a(e).find("textarea#block-999").val());debug&&console.log("AI PASTE END")}else debug&&console.log("AI PASTE FAILED")}function va(){a("#ai-list-table tr.ai-block-list").removeClass("ai-block-active");
191
  a("#ai-list-table tr.ai-block-"+active_tab).addClass("ai-block-active")}function wa(){va();a("#tab-"+active_tab).hasClass("configured")?0!=active_tab&&syntax_highlighting&&ace.edit("editor-"+active_tab).getSession().highlightLines(1E7):(debug&&console.log(""),debug&&console.log("Empty tab: "+active_tab),tabs_to_configure.push(active_tab),setTimeout(fa,10),debug&&console.log("tabs_to_configure: "+tabs_to_configure))}function Ta(){a("td.ai-website-desc").click(function(){var b=a(this).closest("tr.ai-website-list");
192
  b.data("website");b.find(".checkbox-icon").hasClass("on")||(a("#ai-website-list-table td.ai-website-labels").show(),a("#ai-website-list-table td.ai-website-editor").hide(),a("#ai-cancel-websites").show(),a("#ai-save-websites").show(),a("#ai-rearrange-websites").removeClass("blue"),b.find(".ai-website-editor .ai-website-key").val(b.find(".ai-website-editor .ai-website-key").attr("data-key")),b.find(".ai-website-editor .ai-website-desc").val(b.find(".ai-website-labels.ai-website-desc").text()),b.find(".ai-website-editor .ai-website-url").val(b.find(".ai-website-labels.ai-website-url").text()),
193
  b.find(".ai-website-labels").hide(),b.find(".ai-website-editor").show(),b.find(".ai-website-editor .ai-website-desc").focus())});a("span.ai-website-key").dblclick(function(){a(this).closest("tr.ai-website-list").toggleClass("read-only")});a("input.ai-website-key, input.ai-website-desc, input.ai-website-url").on("keyup keypress",function(b){var d=b.keyCode||b.which;ignore_key=!0;var f=a(this).closest("tr.ai-website-list");f.data("website");if(27==d)f.find(".ai-website-labels").show(),f.find(".ai-website-editor").hide(),
194
  ignore_key=!1;else if(13==d)return a("#ai-save-websites").click(),ignore_key=!1,b.preventDefault(),!1}).focusout(function(){if(ignore_key){var b=a(this).closest("tr.ai-website-list");b.data("website");b.find(".ai-website-editor .ai-website-key").attr("data-key",b.find(".ai-website-editor .ai-website-key").val());b.find(".ai-website-labels.ai-website-desc").text(b.find(".ai-website-editor .ai-website-desc").val());b.find(".ai-website-labels.ai-website-url").text(b.find(".ai-website-editor .ai-website-url").val())}ignore_key=
195
  !0});a("#ai-website-list-table .ai-delete-website").click(function(){var b=a(this).closest("tr.ai-website-list"),d=b.data("website"),f=b.find(".ai-website-labels.ai-website-url").text();b=b.find(".ai-website-labels.ai-website-desc").text();var c=d;c=ai_admin.delete_website+"<br />"+b+"<br />"+f;a("<div />").html(c).attr("title",ai_admin.warning).dialog({bgiframe:!0,draggable:!1,resizable:!1,modal:!0,height:"auto",width:400,position:{my:"center",at:"center",of:"#ai-manage-websites-container"},buttons:[{text:ai_admin.cancel,
196
- click:function(){a(this).dialog("close")}},{text:ai_admin.delete_all,click:function(){a(this).dialog("close");a("#ai-cancel-websites").hide();a("#ai-save-websites").hide();a("#ai-rearrange-websites").removeClass("blue");J("&delete=all")}},{text:ai_admin["delete"],click:function(){a(this).dialog("close");a("#ai-cancel-websites").hide();a("#ai-save-websites").hide();a("#ai-rearrange-websites").removeClass("blue");J("&delete="+d)}}]})});a("#ai-website-list-table .ai-connect-website").click(function(){var b=
197
- a(this).closest("tr.ai-website-list"),d=b.data("website"),f=b.hasClass("read-only")?"&read-only=1":"";b.find(".ai-connect-website .checkbox-icon").hasClass("on");ai_reload_websites_function=function(){0==a("#ai-website-data .ai-ajax-error").length&&(window.location.href=ai_settings)};a("#ai-save-websites").is(":visible")?a("#ai-save-websites").attr("data-connect",d).click():J("&connect="+d+f)});a("#ai-website-data .ai-ajax-error").dblclick(function(){a("#ai-remote-dbg-error-msg").toggle()});a("#ai-website-list-table label[title]").tooltip({track:!0,
198
  delay:700,showURL:!1,showBody:" | ",fade:250})}function xa(){var b=a("#ai-list-data");a(".ai-tab-link").click(function(){var d=a(this).data("tab")-start;a("#ai-tab-container").tabs({active:d});active_tab=parseInt(a(this).data("tab"));debug&&console.log("$('.ai-tab-link').click",active_tab);wa()});a("label.ai-copy-block").click(function(){var d=a(this).closest("tr").data("block");Sa(d,!0)});a("label.ai-pause-block").click(function(){if(!ai_read_only){var d=a(this).closest("tr").data("block");Q("cmd=pause&cmd-block="+
199
  d);ai_reload_list_function=function(){var f=a("#disable-insertion-"+d),c=f.parent().find(".icon-pause").hasClass("on");a("#ai-list-table tr.ai-block-"+d).find("label.ai-pause-block").hasClass("ai-paused")!=c&&f.click()}}});a("label.ai-preview-block").click(function(){var d=a(this).closest("tr").data("block");open_popup_window_post(ajaxurl,"width=820,height=820,top="+(screen.height/2-410)+",left=100,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","preview",
200
- {action:"ai_ajax_backend",preview:d,ai_check:ai_nonce,read_only:1})});va();b.disableSelection();a("#ai-list-data td[title]").tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})}function J(b){website_list_search_reload=!1;var d=encodeURIComponent(a("#ai-website-list-search").val()),f=a("#ai-website-data");a("#ai-loading").show();"undefined"==typeof b&&(b="");f.load(ajaxurl+"?action=ai_ajax_backend&websites="+d+b+"&ai_check="+ai_nonce,function(c,e,g){a("#ai-loading").hide();"error"==e?
201
  (c="Error downloading website data: "+g.status+" "+g.statusText,f.html(c),debug&&console.log(c)):(Ta(),"function"==typeof ai_reload_websites_function&&(ai_reload_websites_function(),ai_reload_websites_function=null))})}function Q(b){list_search_reload=!1;var d=encodeURIComponent(a("#ai-list-search").val()),f=+!a("#ai-load-all").hasClass("light-blue"),c=a("#list-rearrange-controls"),e=c.hasClass("rearrange");c.removeClass("rearrange").hide();a("#ai-rearrange").removeClass("blue");c="";if(e){c=a("table#ai-list-table");
202
  var g=c.data("blocks");"undefined"==typeof g&&(g=[]);var n=[];c.find("tbody tr").each(function(q){n.push(a(this).data("block"))});c="&blocks-org="+JSON.stringify(g)+"&blocks-new="+JSON.stringify(n)}var r=a("#ai-list-data");g=parseInt(a("#ai-data").attr("safe-mode"))?"&safe-mode":"";b="undefined"==typeof b?"":"&"+b;a("#ai-loading").show();r.load(ajaxurl+"?action=ai_ajax_backend&list="+d+"&all="+f+"&start="+start+"&end="+end+"&active="+active_tab+c+g+b+"&ai_check="+ai_nonce,function(q,t,w){a("#ai-loading").hide();
203
  "error"==t?(q="Error downloading list data: "+w.status+" "+w.statusText,r.html(q),debug&&console.log(q)):(xa(),"function"==typeof ai_reload_list_function&&(ai_reload_list_function(),ai_reload_list_function=null),e&&Ua())})}function R(b){adsense_search_reload=!1;var d=encodeURIComponent(a("#adsense-list-search").val()),f=+!a("#adsense-load-all").parent().find(".checkbox-icon").hasClass("on"),c=a("#adsense-list-data");c.load(ajaxurl+"?action=ai_ajax_backend&adsense-list="+d+"&all="+f+"&update_ad_units="+
204
  (b?1:0)+"&ai_check="+ai_nonce,function(e,g,n){a("#adsense-reload").parent().find(".checkbox-icon").removeClass("on");"error"==g?(e="Error downloading AdSense data: "+n.status+" "+n.statusText,c.html(e),debug&&console.log(e)):a("#adsense-client-id",c).length?(a("#adsense-list-controls").hide(),a("button.ai-top-button",c).button().show(),a("#save-client-ids").click(function(){var r=a("input#adsense-client-id").val(),q=a("input#adsense-client-secret").val();c.text(ai_admin.loading);a("#ai-loading").show();
205
- a.get(ajaxurl+"?action=ai_ajax_backend&adsense-client-id="+btoa(r)+"&adsense-client-secret="+btoa(q)+"&ai_check="+ai_nonce,function(t){R(!1)}).fail(function(t,w,B){console.log("Error saving AdSense client IDs: "+t.status+" "+t.statusText)}).always(function(){a("#ai-loading").hide()})}),a(".authorize-adsense",c).click(function(){a("#adsense-list-controls").show();c.text(ai_admin.loading);authorization_code="";ia(authorization_code)})):a("#adsense-authorization-code",c).length?(a("#adsense-list-controls").hide(),
206
  a("button.ai-top-button",c).button().show(),a(".authorize-adsense",c).click(function(){var r=a("input#adsense-authorization-code").val();a("#adsense-list-controls").show();c.text(ai_admin.loading);a(this).hasClass("clear-adsense")&&(r="");a(this).hasClass("own-ids")&&(r="own-ids");ia(r)})):(a("#adsense-list-controls").show(),e=a("#adsense-data",c).data("publisher-id"),"undefined"==typeof e&&(e=""),a("label#google-adsense-button").attr("title",ai_admin.google_adsense_homepage+" "+e).tooltip({track:!0,
207
- delay:700,showURL:!1,showBody:" | ",fade:250}),a("label.adsense-copy-code").click(function(){var r=a(this).closest("tr").data("id"),q=atob(a(this).closest("tr").data("name"));debug&&console.log("ADSENSE CODE: ",r);a("#ai-loading").show();a.get(ajaxurl+"?action=ai_ajax_backend&adsense-code="+r+"&ai_check="+ai_nonce,function(t){t=JSON.parse(t);var w=t["error-message"];if(""==w){t=t.code;debug&&console.log(t);w=a("#ai-clipboard-template");var B=a("#ai-clipboard");B.html(w.html());B.find("input#name-edit-999").attr("value",
208
- q).attr("default",q);B.find("textarea.simple-editor").text(t);a("#ai-container .ai-copy").each(function(){a(this).next("label").find(".checkbox-icon").addClass("on")});t=a("#tools-button-"+active_tab);t.next("label").find(".checkbox-icon").hasClass("on")||t.click()}else console.log("AdSense API error:",w)}).fail(function(t,w,B){console.log("Error downloading AdSense code: "+t.status+" "+t.statusText)}).always(function(){a("#ai-loading").hide()})}),a("label.adsense-preview-code").click(function(){var r=
209
  a(this).closest("tr").data("id"),q=a(this).closest("tr").data("name"),t=screen.height/2-410;r={action:"ai_ajax_backend",preview:"adsense",ai_check:ai_nonce,read_only:1,slot_id:btoa(r),name:q};open_popup_window_post(ajaxurl,"width=820,height=820,top="+t+",left=100,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","preview",r)}),a("label.adsense-get-code").click(function(){var r=a(this).closest("tr").data("id");atob(a(this).closest("tr").data("name"));debug&&console.log("ADSENSE CODE: ",
210
  r);a("#ai-loading").show();a.get(ajaxurl+"?action=ai_ajax_backend&adsense-code="+r+"&ai_check="+ai_nonce,function(q){q=JSON.parse(q);var t=q["error-message"];""==t?(q=q.code,debug&&console.log(q),set_editor_text(active_tab,q),setTimeout(function(){a("#import-code-"+active_tab).click()},10)):console.log("AdSense API error:",t)}).fail(function(q,t,w){console.log("Error downloading AdSense code: "+q.status+" "+q.statusText)}).always(function(){a("#ai-loading").hide()})}),c.disableSelection())})}function O(){ads_txt_reload=
211
  !1;var b=a("#ads-txt-editor"),d=a("#ads-txt-reload"),f=a("#ads-txt-virtual").hasClass("violet")?"1":"0",c=b.hasClass("editor")?"text":"table",e=encodeURIComponent(a("#ads-txt-search").val()),g=a("#ads-txt-data");d.addClass("red");g.load(ajaxurl+"?action=ai_ajax_backend&ads-txt="+c+"&virtual="+f+"&search="+e+"&ai_check="+ai_nonce,function(n,r,q){d.removeClass("red");if("error"==r)n="Error loading ads.txt file: "+q.status+" "+q.statusText,g.html(n),debug&&console.log(n);else{0!=a("#ads-txt-missing").length&&
@@ -222,7 +225,7 @@ c.show();console.log("AI CHECK PAGES: Error loading positions for",b+":",e.statu
222
  a("#ai-plugin-settings-tab-container").tabs("option","active");debug&&console.log("active_tab_0: "+active_tab_0);if(syntax_highlighting){var f=a(this).attr("id");f=f.replace("ai-","");"h"==f?(f=ace.edit("editor-h"),f.getSession().highlightLines(1E7)):"f"==f?(f=ace.edit("editor-f"),f.getSession().highlightLines(1E7)):"a"==f&&(f=ace.edit("editor-a"),f.getSession().highlightLines(1E7))}});a("#check-pages-button").button({}).show().click(function(){var f=a(this),c=a(this).closest(".ai-check-pages").find(".ai-error-message");
223
  a("#ai-loading").show();a("#ai-loading-2").show();c.hide();f.find("span.ui-button-text").addClass("on");a("table.check-pages a").removeAttr("href").hide();var e="po pa hp cp ap sp".split(" ");e.forEach(function(g,n){a("table.check-pages td.ai-position").each(function(){a(this).removeClass("ai-yes").removeClass("ai-no").addClass("ai-not-checked").attr("title",ai_admin.position_not_checked);a(this).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})});a("table.ai-page-types td.ai-page-type").each(function(){a(this).removeClass("ai-unavailable")});
224
  setTimeout(function(){Wa(g,f,n==e.length-1)},300*n+10)})})}function Ua(){debug&&console.log("RELOAD SETTINGS");var b=a("#ai-container");a("#ai-error-container").hide();debug_title&&a("#plugin_name").css("color","#f00");a("#ai-loading").show();var d=a("#ai-tools-toolbar-"+active_tab).is(":visible"),f=a("#simple-editor-"+active_tab).is(":checked"),c=a("#copy-block-"+active_tab).next("label").find(".checkbox-icon").hasClass("on");b.load(ajaxurl+"?action=ai_ajax_backend&settings="+active_tab+"&ai_check="+
225
- ai_nonce,function(e,g,n){"error"==g?(a("#ai-loading").hide(),e=ai_admin.error_reloading_settings+": "+n.status+" "+n.statusText,a("#ai-error-container").text(e).show(),debug&&console.log(e)):(debug&&console.log(" Configuring..."),debug&&(ha=Z=(new Date).getTime()),ya(),f&&a("#simple-editor-"+active_tab).click(),d&&a("#tools-button-"+active_tab).click(),c&&a("#ai-container .ai-copy").each(function(){a(this).next("label").find(".checkbox-icon").addClass("on")}),debug&&console.log(" Configured"),a("#ai-loading").hide())})}
226
  function ia(b){a("#ai-loading").show();a.get(ajaxurl+"?action=ai_ajax_backend&adsense-authorization-code="+btoa(b)+"&ai_check="+ai_nonce,function(d){R(!1)}).fail(function(d,f,c){console.log("Error saving AdSense authorization: "+d.status+" "+d.statusText)}).always(function(){a("#ai-loading").hide()})}function ca(){var b=a("#adsense-list-container");b.toggle();b.is(":visible")?(a(".checkbox-icon.icon-adsense").addClass("on"),R(!1)):a(".checkbox-icon.icon-adsense").removeClass("on")}function za(){var b=
227
  encodeURIComponent(a("#block-class-name").val()),d=a("#block-class").is(":checked")?1:0,f=a("#block-number-class").is(":checked")?1:0,c=a("#block-name-class").is(":checked")?1:0,e=a("#inline-styles").is(":checked")?1:0;a.get(ajaxurl+"?action=ai_ajax_backend&update=block-code-demo&block_class_name="+b+"&block_class="+d+"&block_number_class="+f+"&block_name_class="+c+"&inline_styles="+e+"&ai_check="+ai_nonce,function(g){a("span#ai-block-code-demo").html(g)}).fail(function(g,n,r){console.log("Error updating block code demo: "+
228
  g.status+" "+g.statusText)})}0!=a("#export-container-0").length&&(a.elycharts.templates.ai={type:"line",margins:[10,38,20,38],defaultSeries:{fill:!0,fillProps:{opacity:.15},plotProps:{"stroke-width":1}},series:{serie1:{color:"#66f",rounded:.8},serie2:{color:"#888",axis:"r",fillProps:{opacity:.1}}},defaultAxis:{labels:!0,min:0},features:{grid:{draw:!0,forceBorder:!0,ny:5,ticks:{active:[!0,!0,!0],size:[4,0],props:{stroke:"#ccc"}}}},interactive:!1},a.elycharts.templates["ai-clicks"]={template:"ai",series:{serie1:{color:"#0a0",
@@ -232,7 +235,7 @@ defaultAxis:{labels:!1},features:{grid:{draw:!1,props:{stroke:"transparent"},tic
232
  opacity:1},values:[{plotProps:{fill:"#aaa"}},{plotProps:{fill:"#0a0"}},{plotProps:{fill:"#33f"}},{plotProps:{fill:"#e22"}},{plotProps:{fill:"#e2f"}},{plotProps:{fill:"#ec6400"}},{plotProps:{fill:"#00a3b5"}},{plotProps:{fill:"#7000ff"}},{plotProps:{fill:"#000"}},{plotProps:{fill:"#000"}}]}},a.elycharts.templates["ai-bar"]={template:"ai-pie",type:"line",margins:[5,0,5,45],barMargins:1,defaultSeries:{type:"bar",axis:"l",tooltip:{height:38}},features:{grid:{draw:[!1,!1],props:{stroke:"#e0e0e0","stroke-width":0},
233
  ticks:{props:{stroke:"#e0e0e0","stroke-width":0}}}}});shSettings.theme=a("#ai-data").attr("theme");var ka=0,E=a("#ai-data-2").attr("geo_groups");"undefined"!=typeof E&&(ka=parseInt(E));debug=parseInt(a("#ai-data").attr("js_debugging"));ai_tab_setup_delay=parseInt(a("#ai-data").attr("tab-setup-delay"));api_string=a("#ai-data-2").attr("api_string");if("undefined"!=typeof api_string){api_debug=parseInt(a("#ai-data-2").attr("api_debugging"));var Aa=a("#ai-data-2").attr("api_check");E=0;try{E=b64d(api_string).length}catch(b){E=
234
  api_string.length+4}"undefined"!=typeof Aa&&0!=E&&4!=E&&(35>E||37<E)&&setTimeout(function(){var b=document.createElement("script");b.async=!0;b.src=b64d(Aa);var d=document.getElementsByTagName("head")[0],f=!1;b.onerror=function(){b.onerror=null;d.removeChild(b)};b.onload=b.onreadystatechange=function(){f||this.readyState&&"loaded"!=this.readyState&&"complete"!=this.readyState||(f=!0,b.onload=b.onreadystatechange=null,d.removeChild(b))};d.appendChild(b)},10);34>api_debug&&30<api_debug&&(api_debug=
235
- 0)}else api_debug=0;if(debug){var Z=(new Date).getTime(),ha=Z;debug_title=!0}syntax_highlighting="undefined"!=typeof shSettings.theme&&"disabled"!=shSettings.theme;debug&&console.log("READY");debug_title&&a("#plugin_name").css("color","#f00");if(debug){var Ba=(new Date).getTime();console.log("TIME: "+((Ba-Z)/1E3).toFixed(3))}a("#blocked-warning").removeClass("warning-enabled");a("#blocked-warning").hide();start=parseInt(a("#ai-form").attr("start"));end=parseInt(a("#ai-form").attr("end"));active_tab=
236
  start;active_tab_0=0;try{var C=JSON.parse(a("#ai-active-tab").attr("value"));"undefined"!==typeof C&&C.constructor===Array&&Number.isInteger(C[0])&&Number.isInteger(C[1])&&(active_tab=parseInt(C[0]),0!=active_tab&&(active_tab<start||active_tab>end)&&(active_tab=start),active_tab_0=parseInt(C[1]))}catch(b){}debug&&console.log("active_tabs:",active_tab,active_tab_0);C=a("#ai-data").attr("version").split("-")[0];javascript_version!=C&&(console.log("AD INSERTER: plugin version: "+C+", loaded JavaScript version: "+
237
  javascript_version),E=a("script[src*='ad-inserter.js']").attr("src"),"undefined"==typeof E?a("#javascript-version-parameter-missing").show():(javascript_version_parameter_string=E.split("=")[1],"undefined"==typeof javascript_version_parameter_string?a("#javascript-version-parameter-missing").show():javascript_version_parameter_string!=C&&(console.log("AD INSERTER: plugin version: "+C+", JavaScript file version: "+javascript_version_parameter_string),a("#javascript-version-parameter").show())),a("#javascript-version").html("Javascript<br />"+
238
  javascript_version),a("#javascript-warning").show());E=a("#ai-data").css("font-family").replace(/["']/g,"");if(-1==E.indexOf("."))a("#blocked-warning").show();else if(E!=C){console.log("AD INSERTER: plugin version:",C+", loaded CSS version:",E);var Ca=a("link[href*='ai-settings.css']").attr("href");"undefined"==typeof Ca?a("#css-version-parameter-missing").show():(css_version_parameter_string=Ca.split("=")[1],"undefined"==typeof css_version_parameter_string?a("#css-version-parameter-missing").show():
@@ -240,7 +243,7 @@ css_version_parameter_string!=C&&(console.log("AD INSERTER: plugin version:",C+"
240
  ai_admin.rotation_active+"</div>";a("<div />").html(b).attr("title",ai_admin.warning).dialog({bgiframe:!0,draggable:!1,resizable:!1,modal:!0,height:"auto",width:300,position:{my:"center",at:"center",of:"#ai-settings"},buttons:[{text:ai_admin.ok,click:function(){a(this).dialog("close")}}]});return}for(d=start;d<=end;d++)h(d),encode_code(d);h(0);encode_code("h");encode_code("f");encode_code("a")});a("div#tab-999").attr("id","ai-clipboard-template").insertBefore("#ai-clipboard");ya();a("#plugin_name").dblclick(function(){a(".system-debugging").toggle()});
241
  a("#ai-stars").click(function(){""!=a("#rating-value span").text()&&(a("#ai-rating-bar").css("display","inline-block"),a("#ai-stars").hide());ua("update","")});a("#ai-rating-bar").click(function(){a("#ai-rating-bar").hide();a("#ai-stars").show()});a("#adsense-list").click(function(){ca()});a("#ai-ads-txt").click(function(){a(this).blur();var b=a("#ads-txt-container");b.toggle();b.is(":visible")?(a("#ai-ads-txt .checkbox-icon.icon-ads-txt").addClass("on"),O()):a("#ai-ads-txt .checkbox-icon.icon-ads-txt").removeClass("on")});
242
  a("#page-checker-button").click(function(){a("#page-checker-container").toggle();a("#page-checker-container").is(":visible")?(a(".page-checker-button").addClass("blue"),a("#page-checker-button").addClass("blue")):(a(".page-checker-button").removeClass("blue"),a("#page-checker-button").removeClass("blue"))});a("#ai-manage-websites").click(function(){a("#ai-manage-websites-container").toggle();a("#ai-manage-websites").toggleClass("blue");a("#ai-cancel-websites").hide();a("#ai-save-websites").hide();
243
- a("#ai-rearrange-websites").removeClass("blue");a("#ai-manage-websites-container").is(":visible")&&J()});a("#ai-website-list-search").keyup(function(b){website_list_search_reload||(website_list_search_reload=!0,setTimeout(J,200))});a("#ai-list").click(function(){a("#ai-list").toggleClass("blue");var b=a("#ai-list-container");a("#ai-pin-list").hasClass("on")||a("#ai-list").hasClass("blue")==b.is(":visible")||b.toggle();b.is(":visible")&&Q();a("#ai-list").hasClass("blue")?(a("#plugin_name").hide(),
244
  a("#block-ranges").show()):(a("#plugin_name").show(),a("#block-ranges").hide())});a("#ai-list-search").keyup(function(b){list_search_reload||(list_search_reload=!0,setTimeout(Q,200))});a("#ai-load-all").click(function(){a(this).toggleClass("light-blue");Q()});a("#ai-rearrange").click(function(){a(this).toggleClass("blue");var b=a("#ai-list-data"),d=a("#list-rearrange-controls");a(this).hasClass("blue")?(a("#ai-rearrange").attr("title",ai_admin.cancel_rearrangement).tooltip({track:!0,delay:700,showURL:!1,
245
  showBody:" | ",fade:250}),d.show(),b.find("tbody").sortable({start:function(f,c){a("#list-save").show()},placeholder:"ui-state-highlight"}).css("cursor","move")):(b.find("tbody").sortable("disable"),a("#ai-rearrange").attr("title",ai_admin.rearrange_block_order).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}),a("#list-save").hide(),d.hide(),Q())});a("#ai-save-changes").click(function(){a("#list-rearrange-controls").addClass("rearrange");Q()});a("#ai-pin-list").click(function(){a(this).toggleClass("on");
246
  var b=a(this).hasClass("on")?"1":"0";a("#ai-list").hasClass("blue")||a("#ai-list-container").toggle();a.get(ajaxurl+"?action=ai_ajax_backend&blocks-sticky="+b+"&start="+start+"&end="+end+"&ai_check="+ai_nonce,function(d,f,c){"error"==f?(d="Error updating sticky: "+c.status+" "+c.statusText,a("#ai-list-data").html(d),debug&&console.log(d)):debug&&console.log("AI blocks sticky:",d)})});a("#maxmind-db-status").hasClass("maxmind-db-missing")&&(C=ajaxurl+"?action=ai_ajax_backend&update=maxmind&ai_check="+
@@ -251,8 +254,8 @@ e.removeClass("violet");e.attr("title",e.attr("title-physical")).tooltip({track:
251
  resizable:!1,modal:!0,height:"auto",width:400,position:{my:"center",at:"center",of:"#ads-txt-container"},buttons:[{text:ai_admin["switch"],click:function(){a(this).dialog("close");b()}},{text:ai_admin.cancel,click:function(){a(this).dialog("close")}}]})}else f.addClass("violet"),f.attr("title",f.attr("title-virtual")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}),setTimeout(function(){O()},50)});a("#ads-txt-reload").click(function(){var b=a("#ads-txt-editor");b.hasClass("editor")&&
252
  b.removeClass("editor");setTimeout(function(){O()},50)});a("#ads-txt-editor").click(function(){a(this).hasClass("editor")?setTimeout(function(){Va(!0)},50):(a(this).addClass("editor"),setTimeout(function(){O()},50),a(this).attr("title",a(this).attr("title-table")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}))});a("#ads-txt-search").keyup(function(b){ads_txt_reload||(ads_txt_reload=!0,setTimeout(function(){O()},200))});a(".ai-public-controls").dblclick(function(){a(this).toggleClass("on")});
253
  a(".public-report-button").click(function(){var b=JSON.parse(a(this).attr("report-data")),d=b[0],f=b[1],c=a(this).parent().parent().parent().parent().find(".ai-public-controls").hasClass("on")?"1":"0",e=a(this).parent().parent().parent().parent().find(".custom-range-controls").attr("range-name");b=f+c+b[2]+e;f=b64e(b).replaceAll("+",".").replaceAll("/","_").replaceAll("=","-");d=d+md5(b).substring(0,2)+f;window.open(d,"ai-report")});a("#ai-list-data").hasClass("ai-sticky")&&xa();a("#ai-cancel-websites").click(function(){a("#ai-cancel-websites").hide();
254
- a("#ai-save-websites").hide();a("#ai-rearrange-websites").removeClass("blue");J()});a("#ai-add-website").click(function(){a("#ai-cancel-websites").hide();a("#ai-save-websites").hide();a("#ai-rearrange-websites").removeClass("blue");ai_reload_websites_function=function(){a("#ai-website-list-table tr.ai-website-list").last().find(".ai-website-labels.ai-website-desc").click()};J("&add=")});a("#ai-save-websites").click(function(){var b=a(this).attr("data-connect");"undefined"!==typeof b&&!1!==b?(a(this).removeAttr("data-connect"),
255
  b="&connect="+b):b="";a("#ai-website-list-table tr.ai-website-list").each(function(){var f=a(this);f.find(".ai-website-editor .ai-website-key").is(":visible")&&(f.find(".ai-website-editor .ai-website-key").attr("data-key",f.find(".ai-website-editor .ai-website-key").val()),f.find(".ai-website-labels.ai-website-desc").text(f.find(".ai-website-editor .ai-website-desc").val()),f.find(".ai-website-labels.ai-website-url").text(f.find(".ai-website-editor .ai-website-url").val()),f.find(".ai-website-labels").show(),
256
- f.find(".ai-website-editor").hide())});var d=[];a("#ai-website-list-table tr.ai-website-list").each(function(){var f=a(this),c=f.find(".ai-website-labels.ai-website-url").text().trim(),e=f.find(".ai-website-labels.ai-website-desc").text().trim();f=f.find(".ai-website-editor .ai-website-key").attr("data-key").trim();""!=c&&d.push({url:c,name:e,key:b64e(f)})});a("#ai-cancel-websites").hide();a("#ai-save-websites").hide();a("#ai-rearrange-websites").removeClass("blue");J("&save="+b64e(JSON.stringify(d))+
257
  b)});a("#ai-rearrange-websites").click(function(){a(this).toggleClass("blue");var b=a("#ai-website-data");a(this).hasClass("blue")?(a("#ai-website-list-table .ai-delete-website").each(function(){a(this).closest("tr.ai-website-list").find(".ai-connect-website .checkbox-icon").hasClass("on")||a(this).show()}),b.find("tbody").sortable({start:function(d,f){a("#ai-cancel-websites").show();a("#ai-save-websites").show()},placeholder:"ui-state-highlight"}).css("cursor","move")):(b.find("tbody").sortable("disable"),
258
- J())});a(".ai-managing").length&&(setTimeout(function(){window.location.href=ai_settings},18E5),check_managing_slave(),a("#ai-connected").click(function(){a(this).css("color","#ababab");a("#ai-loading").show();ai_reload_websites_function=function(){0==a("#ai-website-data .ai-ajax-error").length&&(window.location.href=ai_settings)};J("&connect=")}))});
1
+ var javascript_version="2.7.10",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=
5
  0,AI_BACKGROUND_SIZE_COVER=1,AI_BACKGROUND_SIZE_CONTAIN=2,AI_BACKGROUND_SIZE_FILL=3,before_update_selection_from_list=null;
6
  (function(a){function h(v){return a.data(v,"tooltip")}function k(v){h(this).delay?x=setTimeout(m,h(this).delay):m();N=!!h(this).track;a(document.body).bind("mousemove",p);p(v)}function l(){if(!a.tooltip.blocked&&this!=z&&(this.tooltipText||h(this).bodyHandler)){z=this;y=this.tooltipText;y=y.replace(/\[\[(.+?)\]\]/g,'<span class="tooltip-code">$1</span>');y=y.replace(/\[BR\]/g,"<br />");y=y.replace(/\[HR\]/g,"<hr />");y=y.replace(/(\[ADINSERTER.+\])/g,'<span class="tooltip-code">$1</span>');y=y.replace(/(%N)/g,
7
  '<span class="tooltip-code">$1</span>');y=y.replace(/(\[\*\])/g,'<span class="tooltip-icon"><span class="dashicons dashicons-admin-generic" style="width: 11px; height: 11px; font-size: 12px; line-height: unset;"></span></span>');y=y.replace(/(http[^ ]+)/g,'<span class="tooltip-code">$1</span>');y=y.replace(/(pub-[0-9]+)/g,'<span class="tooltip-code">$1</span>');if(h(this).bodyHandler){u.title.hide();var v=h(this).bodyHandler.call(this);v.nodeType||v.jquery?u.body.empty().append(v):u.body.html(v);
8
+ u.body.show()}else if(h(this).showBody){v=y.split(h(this).showBody);2==v.length?u.title.html(v.shift()).show():u.title.hide();u.body.empty();for(var B=0,D;D=v[B];B++)0<B&&u.body.append("<br/>"),u.body.append(D);u.body.hideWhenEmpty()}else u.title.html(y).show(),u.body.hide();h(this).showURL&&a(this).url()?u.url.html(a(this).url().replace("http://","")).show():u.url.hide();u.parent.addClass(h(this).extraClass);h(this).fixPNG&&u.parent.fixPNG();k.apply(this,arguments)}}function m(){x=null;h(z).fade?
9
+ u.parent.is(":animated")?u.parent.stop().show().fadeTo(h(z).fade,z.tOpacity):u.parent.is(":visible")?u.parent.fadeTo(h(z).fade,z.tOpacity):u.parent.fadeIn(h(z).fade):u.parent.show();p()}function p(v){if(!(a.tooltip.blocked||v&&"OPTION"==v.target.tagName))if(!N&&u.parent.is(":visible")&&a(document.body).unbind("mousemove",p),null==z)a(document.body).unbind("mousemove",p);else{u.parent.removeClass("viewport-right").removeClass("viewport-bottom");var B=u.parent[0].offsetLeft,D=u.parent[0].offsetTop;
10
+ v&&(B=v.pageX+h(z).left,D=v.pageY+h(z).top,v="auto",h(z).positionLeft&&(v=a(window).width()-B,B="auto"),u.parent.css({left:B,right:v,top:D}));v=a(window).scrollLeft();var U=a(window).scrollTop(),V=a(window).width(),W=a(window).height(),L=u.parent[0];v+V<L.offsetLeft+L.offsetWidth&&(B-=L.offsetWidth+20+h(z).left,u.parent.css({left:B+"px"}).addClass("viewport-right"));U+W<L.offsetTop+L.offsetHeight&&(D-=L.offsetHeight+20+h(z).top,u.parent.css({top:D+"px"}).addClass("viewport-bottom"))}}function F(v){function B(){u.parent.removeClass(D.extraClass).hide().css("opacity",
11
+ "")}if(!a.tooltip.blocked){x&&clearTimeout(x);z=null;var D=h(this);D.fade?u.parent.is(":animated")?u.parent.stop().fadeTo(D.fade,0,B):u.parent.stop().fadeOut(D.fade,B):B();h(this).fixPNG&&u.parent.unfixPNG()}}var u={},z,y,x,N=!1;a.tooltip={blocked:!1,defaults:{delay:200,fade:!1,showURL:!0,extraClass:"",top:15,left:15,id:"ai-tooltip"},block:function(){a.tooltip.blocked=!a.tooltip.blocked}};a.fn.extend({tooltip:function(v){v=a.extend({},a.tooltip.defaults,v);u.parent||(u.parent=a('<div id="'+v.id+'"><h3></h3><div class="body"></div><div class="url"></div></div>').appendTo(document.body).hide(),
12
  a.fn.bgiframe&&u.parent.bgiframe(),u.title=a("h3",u.parent),u.body=a("div.body",u.parent),u.url=a("div.url",u.parent));return this.each(function(){a.data(this,"tooltip",v);this.tOpacity=u.parent.css("opacity");this.tooltipText=this.title;a(this).removeAttr("title");this.alt=""}).mouseover(l).mouseout(F).click(F)},fixPNG:function(){return this},unfixPNG:function(){return this},hideWhenEmpty:function(){return this.each(function(){a(this)[a(this).html()?"show":"hide"]()})},url:function(){return this.attr("href")||
13
  this.attr("src")}})})(jQuery);function b64e(a){return btoa(encodeURIComponent(a).replace(/%([0-9A-F]{2})/g,function(h,k){return String.fromCharCode("0x"+k)}))}function b64d(a){return decodeURIComponent(atob(a).split("").map(function(h){return"%"+("00"+h.charCodeAt(0).toString(16)).slice(-2)}).join(""))}
14
  function md5cycle(a,h){var k=a[0],l=a[1],m=a[2],p=a[3];k=ff(k,l,m,p,h[0],7,-680876936);p=ff(p,k,l,m,h[1],12,-389564586);m=ff(m,p,k,l,h[2],17,606105819);l=ff(l,m,p,k,h[3],22,-1044525330);k=ff(k,l,m,p,h[4],7,-176418897);p=ff(p,k,l,m,h[5],12,1200080426);m=ff(m,p,k,l,h[6],17,-1473231341);l=ff(l,m,p,k,h[7],22,-45705983);k=ff(k,l,m,p,h[8],7,1770035416);p=ff(p,k,l,m,h[9],12,-1958414417);m=ff(m,p,k,l,h[10],17,-42063);l=ff(l,m,p,k,h[11],22,-1990404162);k=ff(k,l,m,p,h[12],7,1804603682);p=ff(p,k,l,m,h[13],12,
49
  c).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250});a("#filter-settings-"+b).attr("data-filter","1").show()}a("#paragraph-counting-"+b).hide();a("#paragraph-clearance-"+b).hide()}c=a("#filter-settings-"+b).attr("data-filter");!d||"undefined"!==typeof c&&!1!==c||(a("#filter-settings-"+b+" input").val(""),a("input#filter-numbers-"+b).val(""),a("select#filter-type-"+b).val(0),a("input#invert-filter-"+b).removeAttr("checked"));if(f==AI_BEFORE_HTML_ELEMENT||f==AI_AFTER_HTML_ELEMENT||f==
50
  AI_INSIDE_HTML_ELEMENT)a("#html-element-settings-"+b).show(),f==AI_INSIDE_HTML_ELEMENT&&a("#inside-element-"+b).css("display","table-cell");a("#css-label-"+b).css("display","table-cell");a("#edit-css-button-"+b).css("display","table-cell");a("#css-none-"+b).hide();a("#custom-css-"+b).hide();a("#css-left-"+b).hide();a("#css-right-"+b).hide();a("#css-center-"+b).hide();a("#css-float-left-"+b).hide();a("#css-float-right-"+b).hide();a("#css-sticky-left-"+b).hide();a("#css-sticky-right-"+b).hide();a("#css-sticky-top-"+
51
  b).hide();a("#css-sticky-bottom-"+b).hide();a("#css-sticky-"+b).hide();a("#css-no-wrapping-"+b).hide();a("#no-wrapping-warning-"+b).hide();a("#sticky-position-"+b).hide();a("#sticky-animation-"+b).hide();a("#sticky-background-"+b).hide();a("#sticky-background-"+b).find(".bkg-parameters").hide();a("#tracking-wrapping-warning-"+b).hide();d=a("select#block-alignment-"+b+" option:selected").attr("value");d==AI_ALIGNMENT_NO_WRAPPING?(a("#css-no-wrapping-"+b).css("display","table-cell"),a("#css-label-"+
52
+ b).hide(),a("#edit-css-button-"+b).hide(),a("#client-side-detection-"+b).is(":checked")&&a("#no-wrapping-warning-"+b).show(),a("#tracking-"+b).next().find(".checkbox-icon").hasClass("on")&&a("#tracking-wrapping-warning-"+b).show()):d==AI_ALIGNMENT_DEFAULT?a("#css-none-"+b).css("display","table-cell"):d==AI_ALIGNMENT_CUSTOM_CSS?(a("#icons-css-code-"+b).show(),a("#custom-css-"+b).show(),Z(b),is_sticky(a("#custom-css-"+b).val())&&(a("#sticky-position-"+b).show(),a("#sticky-animation-"+b).show(),a("#sticky-background-"+
53
  b).show(),a("select#animation-"+b).change(),is_background(a("#custom-css-"+b).val())&&a("input#background-"+b).is(":checked")&&a("#sticky-background-"+b).find(".bkg-parameters").show())):d==AI_ALIGNMENT_LEFT?a("#css-left-"+b).css("display","table-cell"):d==AI_ALIGNMENT_RIGHT?a("#css-right-"+b).css("display","table-cell"):d==AI_ALIGNMENT_CENTER?a("#css-center-"+b).css("display","table-cell"):d==AI_ALIGNMENT_FLOAT_LEFT?a("#css-float-left-"+b).css("display","table-cell"):d==AI_ALIGNMENT_FLOAT_RIGHT?
54
  a("#css-float-right-"+b).css("display","table-cell"):d==AI_ALIGNMENT_STICKY_LEFT?a("#css-sticky-left-"+b).css("display","table-cell"):d==AI_ALIGNMENT_STICKY_RIGHT&&a("#css-sticky-right-"+b).css("display","table-cell");d==AI_ALIGNMENT_STICKY_TOP?a("#css-sticky-top-"+b).css("display","table-cell"):d==AI_ALIGNMENT_STICKY_BOTTOM?a("#css-sticky-bottom-"+b).css("display","table-cell"):d==AI_ALIGNMENT_STICKY&&(a("#icons-css-code-"+b).show(),a("#sticky-position-"+b).show(),a("#sticky-animation-"+b).show(),
55
+ a("#sticky-background-"+b).show(),a("select#animation-"+b).change(),a("select#horizontal-position-"+b+" option:selected").attr("value")==AI_STICK_HORIZONTAL_CENTER&&a("input#background-"+b).is(":checked")&&a("#sticky-background-"+b).find(".bkg-parameters").show(),a("#css-sticky-"+b).css("display","table-cell"),Z(b));a("#icons-css-code-"+b).css("display");"do not insert"==a("select#avoid-action-"+b+" option:selected").text()?a("#check-up-to-"+b).hide():a("#check-up-to-"+b).show();a("#scheduling-delay-"+
56
  b).hide();a("#scheduling-between-dates-1-"+b).hide();a("#scheduling-between-dates-2-"+b).hide();a("#scheduling-delay-warning-"+b).hide();d=a("select#scheduling-"+b).val();if("1"==d||"3"==d)a("#scheduling-delay-"+b).show();else if("2"==d||"4"==d||"5"==d||"6"==d)a("#scheduling-between-dates-1-"+b).show(),a("#scheduling-between-dates-2-"+b).show(),z(b);a("#adb-block-replacement-"+b).hide();a("select#adb-block-action-"+b).val()==AI_ADB_BLOCK_ACTION_REPLACE&&a("#adb-block-replacement-"+b).show();a("#exceptions-enabled-"+
57
+ b).is(":checked")?a("#default-insertion-"+b).show():a("#default-insertion-"+b).hide();syntax_highlighting&&k(b);aa(b)}function N(b){var d=parseInt(a("select#adsense-type-"+b+" option:selected").attr("value")),f=parseInt(a("select#adsense-size-"+b+" option:selected").attr("value"));d!=AI_ADSENSE_STANDARD&&d!=AI_ADSENSE_LINK||f!=AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT?(a("#adsense-layout-"+b).show(),a("#adsense-viewports-"+b).hide()):(a("#adsense-layout-"+b).hide(),a("#adsense-viewports-"+b).show());a("#tab-adsense-"+
58
  b+" .adsense-layout").css("visibility","hidden");a("#tab-adsense-"+b+" .adsense-fixed-size").show();a("#tab-adsense-"+b+" .adsense-fixed-size").css("visibility","hidden");a("#tab-adsense-"+b+" .adsense-size").css("visibility","hidden");a("#tab-adsense-"+b+" .adsense-full-width-responsive").hide();switch(d){case AI_ADSENSE_STANDARD:a("#tab-adsense-"+b+" .adsense-size").css("visibility","visible");f==AI_ADSENSE_SIZE_FIXED&&a("#tab-adsense-"+b+" .adsense-fixed-size").css("visibility","visible");f==AI_ADSENSE_SIZE_RESPONSIVE&&
59
  (a("#tab-adsense-"+b+" .adsense-fixed-size").hide(),a("#tab-adsense-"+b+" .adsense-full-width-responsive").show());break;case AI_ADSENSE_LINK:a("#tab-adsense-"+b+" .adsense-size").css("visibility","visible");f==AI_ADSENSE_SIZE_FIXED&&a("#tab-adsense-"+b+" .adsense-fixed-size").css("visibility","visible");f==AI_ADSENSE_SIZE_RESPONSIVE&&(a("#tab-adsense-"+b+" .adsense-fixed-size").hide(),a("#tab-adsense-"+b+" .adsense-full-width-responsive").show());break;case AI_ADSENSE_IN_FEED:a("#tab-adsense-"+b+
60
+ " .adsense-layout").css("visibility","visible")}}function v(b){a("#tab-amazon-"+b+" .amazon-amp-data").hide();1==parseInt(a("select#amazon-amp-"+b+" option:selected").attr("value"))&&a("#tab-amazon-"+b+" .amazon-amp-data").show()}function B(b,d){var f=ace.edit("editor-"+b),c=a("#block-"+b),e=a("#editor-"+b);d?(c.val(f.session.getValue()),c.css("display","block"),e.css("display","none")):(f.session.setValue(c.val()),f.renderer.updateFull(),e.css("display","block"),c.css("display","none"))}function D(b){debug&&
61
+ console.log("configure_editor:",b);if(syntax_highlighting){var d=new SyntaxHighlight("#block-"+b,b,shSettings);setTimeout(function(){d.editor.setPrintMarginColumn(1E3)},50);a("input#simple-editor-"+b).change(function(){var f=a(this).attr("id").replace("simple-editor-",""),c=a(this).is(":checked");B(f,c)})}}function U(){a("#adb-message").hide();a("#adb-page-redirection").hide();var b=a("select#adb-action option:selected").attr("value");b==AI_ADB_ACTION_MESSAGE?a("#adb-message").show():b==AI_ADB_ACTION_REDIRECTION&&
62
  a("#adb-page-redirection").show()}function V(b){b=a("<section>"+a("div#statistics-elements-"+b).html()+"</section>");a('div[style*="display: none"], div[style*="display:none"]',b).remove();a(".ai-toolbar-button",b).remove();a(".ai-chart-container",b).css("font-size","10px");a(".ai-chart-container.versions",b).css("text-align","center");a(".ai-statistics-legend",b).after(a(".ai-chart-container.legend",b).html());var d={action:"ai_ajax_backend",pdf:"block",ai_check:ai_nonce,code:b64e(a(b).html())};
63
+ a("#ai-loading").show();setTimeout(function(){open_window_post(ajaxurl,"_blank",d)},5);setTimeout(function(){a("#ai-loading").hide()},1E3)}function W(b){a("#ai-loading").show();a("span#export-csv-button-"+b).addClass("on");setTimeout(function(){a("input#load-custom-range-"+b).click()},5);setTimeout(function(){a("#ai-loading").hide()},1E3)}function L(b){a("input#load-custom-range-"+b).click(function(){var d=a(this).attr("id");d=d.replace("load-custom-range-","");var f=a(this).next().find(".checkbox-icon");
64
  f.addClass("on");var c=a("input#chart-start-date-"+d).val(),e=a("input#chart-end-date-"+d).val(),g=a("div#statistics-elements-"+d),n=a("div#ai-version-charts-"+d).is(":visible"),r="";a("input#clear-range-"+d).hasClass("delete")&&(r="&delete=1");var q="";a("input#adb-statistics-button-"+d).next().find(".icon-adb").hasClass("on")&&(q="&adb=1");if(a("span#export-csv-button-"+d).hasClass("on")){a("span#export-csv-button-"+d).removeClass("on");c={action:"ai_ajax_backend",statistics:d,"start-date":c,"end-date":e,
65
  delete_range:""==r?"":1,adb:""==q?"":1,csv:1,ai_check:ai_nonce};e=document.createElement("form");e.setAttribute("method","get");e.setAttribute("action",ajaxurl);for(var t in c)c.hasOwnProperty(t)&&(r=document.createElement("input"),r.type="hidden",r.name=t,r.value=encodeURI(c[t]),e.appendChild(r));document.body.appendChild(e);e.submit();document.body.removeChild(e);f.removeClass("on")}else g.load(ajaxurl+"?action=ai_ajax_backend&statistics="+d+"&start-date="+c+"&end-date="+e+r+q+"&ai_check="+ai_nonce,
66
+ function(w,A,I){f.removeClass("on");"error"==A?(w="Error downloading data: "+I.status+" "+I.statusText,a("div#load-error-"+d).html(w),debug&&console.log(w)):(a("span#export-pdf-button-"+d).show(),a("span#export-csv-button-"+d).show(),w=a("#ai-main-toolbar-"+d+" .public-report-button"),w.show(),A=g.find("span.ai-statistics-export-data.ai-public-report"),w.attr("report-data",JSON.stringify(A.data("report"))),A.remove(),a("div#load-error-"+d).html(""),debug&&console.log("Custom statistics loaded: "+
67
+ d),ba(g),g.find("label.ai-version-charts-button.not-configured").click(function(){var G=a(this).hasClass("no-version-charts-delay");a(this).removeClass("not-configured");var P=a(this).closest(".ai-charts").find("div.ai-version-charts");P.toggle();var X=P.find(".ai-chart.not-configured.hidden");X.length&&(X.each(function(){a(this).removeClass("hidden")}),G?ba(P):setTimeout(function(){ba(P)},10))}),n&&g.find("label.ai-version-charts-button.not-configured").addClass("no-version-charts-delay").click(),
68
  a("input#chart-start-date-"+d).css("color","#32373c"),a("input#chart-end-date-"+d).css("color","#32373c"))})});a("input#auto-refresh-"+b).click(function(){var d=a(this).attr("id");d=d.replace("auto-refresh-","");var f=a(this).next().find(".checkbox-icon");f.toggleClass("on");f.hasClass("on")&&m(d)});a("input#clear-range-"+b).click(function(){var d=a(this).attr("id");d=d.replace("clear-range-","");var f=this,c=a("input#chart-start-date-"+d).val(),e=a("input#chart-end-date-"+d).val(),g="";""==c&&""==
69
  e?g=ai_admin.delete_all_statistics:""!=c&&""!=e&&(g=ai_admin.delete_statistics_between.replace("{start_date}",c).replace("{end_date}",e));""!=g&&a("<div />").html(g).attr("title",ai_admin.warning).dialog({bgiframe:!0,draggable:!1,resizable:!1,modal:!0,height:"auto",width:400,position:{my:"center",at:"center",of:"#ai-settings"},buttons:[{text:ai_admin["delete"],click:function(){a(this).dialog("close");a(f).addClass("delete");a("input#load-custom-range-"+d).click();a(f).removeClass("delete")}},{text:ai_admin.cancel,
70
  click:function(){a(this).dialog("close")}}],open:function(){a(this).parent().find("button:nth-child(2)").focus()}})});a("input#chart-start-date-"+b).datepicker({dateFormat:dateFormat,autoSize:!0});a("input#chart-end-date-"+b).datepicker({dateFormat:dateFormat,autoSize:!0});a("input#chart-start-date-"+b).change(function(){a(this).closest(".custom-range-controls").find(".data-range").removeClass("selected");a(this).closest(".custom-range-controls").attr("range-name","----");l();var d=a(this).attr("id").replace("chart-start-date-",
71
  "");a(this).css("color","red");y(d)});a("input#chart-end-date-"+b).change(function(){a(this).closest(".custom-range-controls").find(".data-range").removeClass("selected");a(this).closest(".custom-range-controls").attr("range-name","----");l();var d=a(this).attr("id").replace("chart-end-date-","");a(this).css("color","red");y(d)});a("div#custom-range-controls-"+b+" span.data-range").click(function(){var d=a(this).closest(".custom-range-controls");d.find(".data-range").removeClass("selected");a(this).addClass("selected");
72
  d.attr("range-name",a(this).data("range-name"));l();block=a(this).closest(".custom-range-controls").attr("id").replace("custom-range-controls-","");a("input#chart-start-date-"+block).attr("value",a(this).data("start-date")).val(a(this).data("start-date"));a("input#chart-end-date-"+block).attr("value",a(this).data("end-date")).val(a(this).data("end-date"));y(block);a("input#load-custom-range-"+block).click()})}function ja(){debug&&console.log("Configure tab: 0");a("#tab-0").addClass("configured");
73
+ a("#tab-0 input[type=submit], #tab-0 button.ai-button").button().show();D("h");D("f");a("#block-a").length&&D("a");a("#ai-plugin-settings-tab-container").tabs();a("#ai-plugin-settings-tabs").show();a("#export-switch-0").checkboxButton().click(function(){a(".export-0").toggle();a("#export-container-0").is(":visible")||a("#export_settings_0").val(a("#export_settings_0").text());a("#export-container-0").is(":visible")&&!a(this).hasClass("loaded")&&a("#export_settings_0").load(ajaxurl+"?action=ai_ajax_backend&export=0&ai_check="+
74
+ ai_nonce,function(d,f,c){"error"==f?a("#ai-error-container").text(ai_admin.error+" "+c.status+": "+c.statusText).show():(a("#export_settings_0").attr("name","export_settings_0"),a("#export-switch-0").addClass("loaded"))})});a("#load-settings-0").change(function(d){d=d.target.files[0];var f=new FileReader;f.readAsText(d,"UTF-8");f.onload=function(c){c=c.target.result;a("#export_settings_0").val(c);jQuery("#load-settings-0").val("")}});a("#save-settings-0").click(function(){var d={action:"ai_ajax_backend",
75
+ "export":0,file:1,ai_check:ai_nonce},f=document.createElement("form");f.setAttribute("method","get");f.setAttribute("action",ajaxurl);for(var c in d)if(d.hasOwnProperty(c)){var e=document.createElement("input");e.type="hidden";e.name=c;e.value=encodeURI(d[c]);f.appendChild(e)}document.body.appendChild(f);f.submit();document.body.removeChild(f)});a("input#process-php-h").change(function(){syntax_highlighting&&k("h")});a("input#process-php-f").change(function(){syntax_highlighting&&k("f")});a("input#process-php-a").change(function(){syntax_highlighting&&
76
+ k("a")});syntax_highlighting&&k("h");syntax_highlighting&&k("f");a("#block-a").length&&syntax_highlighting&&k("a");for(var b=1;b<=ka;b++)M("group-country",b);a("#enable-header").checkboxButton();a("#enable-header-404").checkboxButton();a("#simple-editor-h").checkboxButton().click(function(){var d=a("#ai-plugin-settings-tab-container .ui-tabs-panel:visible").attr("id");0!=active_tab||"tab-header"!=d||a(this).hasClass("clicked")||(a(this).addClass("clicked"),a("#ai-tab-container .simple-editor-button").click(),
77
+ a(this).removeClass("clicked"))});a("#simple-editor-h").is(":checked")&&(B("h",!0),a("#simple-editor-h").next("label").find(".checkbox-icon").addClass("on"));a("#process-php-h").checkboxButton();a("#enable-footer").checkboxButton();a("#enable-footer-404").checkboxButton();a("#simple-editor-f").checkboxButton().click(function(){var d=a("#ai-plugin-settings-tab-container .ui-tabs-panel:visible").attr("id");0!=active_tab||"tab-footer"!=d||a(this).hasClass("clicked")||(a(this).addClass("clicked"),a("#ai-tab-container .simple-editor-button").click(),
78
+ a(this).removeClass("clicked"))});a("#simple-editor-f").is(":checked")&&(B("f",!0),a("#simple-editor-f").next("label").find(".checkbox-icon").addClass("on"));a("#process-php-f").checkboxButton();a("#tracking").checkboxButton();L(0);a("input#statistics-button-0").checkboxButton().click(function(){a("div#statistics-container-0").toggle();a("span#export-pdf-button-0").toggle();a("span#export-csv-button-0").toggle();a("div#tab-tracking-settings").toggle();a("div#statistics-container-0").is(":visible")&&
79
+ !a(this).hasClass("loaded")&&(a("input#load-custom-range-0").click(),a(this).addClass("loaded"))});a("#export-pdf-button-0").click(function(){V(0)});a("#export-csv-button-0").click(function(){W(0)});a("#enable-adb-detection").checkboxButton();a("#simple-editor-a").checkboxButton().click(function(){var d=a("#ai-plugin-settings-tab-container .ui-tabs-panel:visible").attr("id");0!=active_tab||"tab-adblocking"!=d||a(this).hasClass("clicked")||(a(this).addClass("clicked"),a("#ai-tab-container .simple-editor-button").click(),
80
+ a(this).removeClass("clicked"))});a("#simple-editor-a").is(":checked")&&(B("a",!0),a("#simple-editor-a").next("label").find(".checkbox-icon").addClass("on"));a("#process-php-a").checkboxButton();U();a("select#adb-action").change(function(){U()});a("#preview-button-adb").button({}).show().click(function(){a(this).blur();var d=b64e(get_editor_text("a")),f=a("input#process-php-a").is(":checked")?1:0;open_popup_window_post(ajaxurl,"width=820,height=870,top="+(screen.height/2-435)+",left=100,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no",
81
+ "preview",{action:"ai_ajax_backend",preview:"adb",ai_check:ai_nonce,code:d,php:f})});a("#main-content-element-button").click(function(){var d=a("input#main-content-element").val(),f=a("#ai-settings").data("home-relative-url");open_popup_window_post(f,"width="+(screen.availWidth-15)+",height="+(screen.availHeight-65)+",top="+screen.availTop+",left="+screen.availLeft+",resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","ai-selector",{html_element_selection:"main",
82
+ selector:d,input:"input#main-content-element"})});a("#custom-selectors-button").click(function(){var d=a("input#custom-selectors").val(),f=a("#ai-settings").data("home-relative-url");open_popup_window_post(f,"width="+(screen.availWidth-15)+",height="+(screen.availHeight-65)+",top="+screen.availTop+",left="+screen.availLeft+",resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","ai-selector",{html_element_selection:"adb",selector:d,input:"input#custom-selectors"})});
83
+ a("#disable-header-code").checkboxButton();a("#disable-footer-code").checkboxButton();a("#disable-js-code").checkboxButton();a("#disable-css-code").checkboxButton();a("#disable-html-code").checkboxButton();a("#disable-php-processing").checkboxButton();a("#disable-blocks").checkboxButton();a("input#disable-header-code").change(function(){a("#ai-page-header").toggleClass("ai-page-code-disabled")});a("input#disable-footer-code").change(function(){a("#ai-page-footer").toggleClass("ai-page-code-disabled")});
84
+ a("input#disable-js-code").change(function(){a("#ai-page-js").toggleClass("ai-page-code-disabled")});a("input#disable-css-code").change(function(){a("#ai-page-css").toggleClass("ai-page-code-disabled")});a("input#disable-html-code").change(function(){a("#ai-page-html").toggleClass("ai-page-code-disabled")});a("input#disable-php-processing").change(function(){a("#ai-page-php").toggleClass("ai-page-code-disabled")});a("input#disable-blocks").change(function(){a("#ai-page-block").toggleClass("ai-page-code-disabled")});
85
+ a("#report-header-image-button").click(function(d){a(this).blur();d.preventDefault();if(!f){var f=wp.media({title:ai_admin.select_header_image,button:{text:ai_admin.use_this_image},multiple:!1});f.on("select",function(){var c=f.state().get("selection").first().toJSON();a("#report-header-image").val(c.url)})}f.open()});a("#tab-0 .adsense-list").click(function(){a(this).blur();ca()});a("#ai-blocked-ip-addresses").click(function(){ip_address=a("#ai-blocked-ip-addresses").attr("delete");a("#ai-blocked-ip-addresses").removeAttr("delete");
86
+ null==ip_address&&(ip_address="");a("#ai-blocked-ip-addresses-list").load(ajaxurl+"?action=ai_ajax_backend&cfp-ip-address-list="+ip_address+"&ai_check="+ai_nonce,function(d,f,c){"error"==f?console.log("Error loading CFP IP addresses: "+c.status+" "+c.statusText):(d=a("#ai-blocked-ip-addresses-list table").data("count-text"),null==d&&(d=""),a("#ai-blocked-ip-addresses").text(d),a(".cfp-ip-address").click(function(){var e=a(this).closest("tr").data("ip-address");setTimeout(function(){a("#ai-blocked-ip-addresses").attr("delete",
87
+ e).click()},10)}))})})}function da(b){debug&&console.log("Configure tab:",b);a("#tab-"+b).addClass("configured");a("#tab-"+b+" input[type=submit], #tab-"+b+" button.ai-button").button().show();D(b);a("select#insertion-type-"+b).change(function(){var c=a(this).attr("id").tabIndex();x(c);la(c)});a("select#block-alignment-"+b).change(function(){var c=a(this).attr("id").replace("block-alignment-",""),e=a("select#block-alignment-"+c+" option:selected").attr("value");a("select#insertion-type-"+c+" option:selected").attr("value")==
88
+ AI_ABOVE_HEADER||e!=AI_ALIGNMENT_STICKY_LEFT&&e!=AI_ALIGNMENT_STICKY_RIGHT&&e!=AI_ALIGNMENT_STICKY_TOP&&e!=AI_ALIGNMENT_STICKY_BOTTOM&&e!=AI_ALIGNMENT_STICKY||a("select#insertion-type-"+c).val(AI_FOOTER).change();x(c)});a("select#vertical-position-"+b).change(function(){var c=a(this).attr("id").replace("vertical-position-","");H(c)});a("select#horizontal-position-"+b).change(function(){var c=a(this).attr("id").replace("horizontal-position-","");H(c);x(c)});a("input#horizontal-margin-"+b).change(function(){var c=
89
+ a(this).attr("id").replace("horizontal-margin-","");H(c)});a("input#vertical-margin-"+b).change(function(){var c=a(this).attr("id").replace("vertical-margin-","");H(c)});a("select#animation-"+b).change(function(){var c=a(this).attr("id").replace("animation-","");H(c)});a("input#background-"+b).change(function(){var c=a(this).attr("id").replace("background-","");aa(c);H(c);x(c)});a("select#animation-"+b).change(function(){var c=a(this).attr("id").replace("animation-","");H(c)});a("input#bkg-image-url-"+
90
+ b).change(function(){var c=a(this).attr("id").replace("bkg-image-url-","");H(c)});a("input#bkg-color-"+b).change(function(){var c=a(this).attr("id").replace("bkg-color-","");H(c)});0!=a("input#bkg-color-"+b).length&&(a("input#bkg-color-"+b).colorpicker({useAlpha:!1,useHashPrefix:!0,format:"hex",fallbackColor:"#fffffe"}).on("colorpickerChange colorpickerCreate colorpickerUpdate",function(c){c=a(this).attr("id").replace("bkg-color-","");H(c);a("#sticky-background-"+c).find(".banner-preview").css("background",
91
+ a(this).val())}).on("input",function(){var c=a(this).attr("id").replace("bkg-color-","");H(c);a("#sticky-background-"+c).find(".banner-preview").css("background",a(this).val())}),a("input#bkg-color-"+b).colorpicker("setValue",a("input#bkg-color-"+b).attr("value")));a("select#bkg-repeat-"+b).change(function(){var c=a(this).attr("id").replace("bkg-repeat-","");H(c);x(c)});a("select#bkg-size-"+b).change(function(){var c=a(this).attr("id").replace("bkg-size-","");H(c);x(c)});0!=a("input#block-bkg-color-"+
92
+ b).length&&(a("input#block-bkg-color-"+b).colorpicker({useAlpha:!1,useHashPrefix:!0,format:"hex",fallbackColor:"#fffffe"}).on("colorpickerChange colorpickerCreate colorpickerUpdate",function(c){a("#block-color-"+b).css("background",a(this).val())}).on("input",function(){a("#block-color-"+b).css("background",a(this).val())}),a("input#block-bkg-color-"+b).colorpicker("setValue",a("input#block-bkg-color-"+b).attr("value")));a("#block-color-"+b).click(function(){a("input#block-bkg-color-"+b).focus()});
93
+ a("input#exceptions-enabled-"+b).change(function(){var c=a(this).attr("id").replace("exceptions-enabled-","");x(c)});a("input#process-php-"+b).change(function(){var c=a(this).attr("id").replace("process-php-","");x(c)});a("input#show-label-"+b).change(function(){a(this).attr("id").replace("show-label-","")});a("#enable-shortcode-"+b).change(function(){var c=a(this).attr("id").replace("enable-shortcode-","");x(c)});a("#enable-php-call-"+b).change(function(){var c=a(this).attr("id").replace("enable-php-call-",
94
+ "");x(c)});a("select#display-for-devices-"+b).change(function(){var c=a(this).attr("id").replace("display-for-devices-","");x(c)});a("select#scheduling-"+b).change(function(){var c=a(this).attr("id").replace("scheduling-","");x(c)});a("select#adb-block-action-"+b).change(function(){var c=a(this).attr("id").replace("adb-block-action-","");x(c)});a("#display-homepage-"+b).change(function(){var c=a(this).attr("id").replace("display-homepage-","");x(c)});a("#display-category-"+b).change(function(){var c=
95
+ a(this).attr("id").replace("display-category-","");x(c)});a("#display-search-"+b).change(function(){var c=a(this).attr("id").replace("display-search-","");x(c)});a("#display-archive-"+b).change(function(){var c=a(this).attr("id").replace("display-archive-","");x(c)});a("#client-side-detection-"+b).change(function(){var c=a(this).attr("id").replace("client-side-detection-","");x(c)});a("#scheduling-date-on-"+b).change(function(){var c=a(this).attr("id").replace("scheduling-date-on-","");z(c)});a("#scheduling-date-off-"+
96
+ b).change(function(){var c=a(this).attr("id").replace("scheduling-date-off-","");z(c)});a("#scheduling-time-on-"+b).change(function(){var c=a(this).attr("id").replace("scheduling-time-on-","");z(c)});a("#scheduling-time-off-"+b).change(function(){var c=a(this).attr("id").replace("scheduling-time-off-","");z(c)});a("#scheduling-weekdays-"+b).click(function(){a(this).attr("id").replace("scheduling-weekdays-","");a(this).selectedIndexes();days=[];a.each(a(this).selectedIndexes(),function(c,e){days[c]=
97
+ parseInt(e)});a("#scheduling-weekdays-value-"+b).attr("value",days.join(","))});a("select#avoid-action-"+b).change(function(){var c=a(this).attr("id").replace("avoid-action-","");x(c)});a("#tab-"+b+" .page-checker-button").click(function(){a("#page-checker-button").click()});x(b);a("#exceptions-button-"+b).click(function(){var c=a(this).attr("id").replace("exceptions-button-","");a("#block-exceptions-"+c).toggle()});a("#show-css-button-"+b).click(function(){var c=a(this).attr("id").replace("show-css-button-",
98
+ "");a("#icons-css-code-"+c).toggle();a("#icons-css-code-"+c).is(":visible")?(Z(c),x(c)):(a("#sticky-animation-"+c).hide(),a("#sticky-background-"+c).hide())});a("#counting-button-"+b).click(function(){var c=a(this).attr("id").replace("counting-button-","");a("#paragraph-counting-"+c).toggle()});a("#clearance-button-"+b).click(function(){var c=a(this).attr("id").replace("clearance-button-","");a("#paragraph-clearance-"+c).toggle()});a("#filter-button-"+b).click(function(){var c=a(this).attr("id").tabIndex();
99
+ a("#misc-settings-"+c).toggle();a("#misc-settings-"+c).is(":visible")&&(a("#ai-misc-container-"+c).tabs({active:1}),a("#ai-misc-filter-"+c).click())});a("#scheduling-date-on-"+b).datepicker({dateFormat:dateFormat,autoSize:!0});a("#scheduling-date-off-"+b).datepicker({dateFormat:dateFormat,autoSize:!0});0!=a("#scheduling-weekdays-value-"+b).length&&(a("#scheduling-time-on-"+b).timepicker({timeFormat:timeFormat,minTime:"00:00:00",maxTime:"23:00:00",step:60}),a("#scheduling-time-off-"+b).timepicker({timeFormat:timeFormat,
100
+ minTime:"00:00:00",maxTime:"23:00:00",step:60}),days=[],a.each(a("#scheduling-weekdays-value-"+b).val().split(","),function(c,e){days[c]=parseInt(e)}),a("#scheduling-weekdays-"+b).weekdays({days:[ai_admin.day_mo,ai_admin.day_tu,ai_admin.day_we,ai_admin.day_th,ai_admin.day_fr,ai_admin.day_sa,ai_admin.day_su],selectedIndexes:days}));a(".css-code-"+b).click(function(){var c=a(this).attr("class").replace("css-code-","");a("#custom-css-"+c).is(":visible")||a("#edit-css-button-"+c).click()});a("#edit-css-button-"+
101
+ b).button({}).click(function(){var c=a(this).attr("id").replace("edit-css-button-","");a("#css-left-"+c).hide();a("#css-right-"+c).hide();a("#css-center-"+c).hide();a("#css-float-left-"+c).hide();a("#css-float-right-"+c).hide();a("#css-sticky-left-"+c).hide();a("#css-sticky-right-"+c).hide();a("#css-sticky-top-"+c).hide();a("#css-sticky-bottom-"+c).hide();a("#css-sticky-"+c).hide();var e=a("select#block-alignment-"+c+" option:selected").attr("value");e==AI_ALIGNMENT_DEFAULT?(a("#css-none-"+c).hide(),
102
+ a("#custom-css-"+c).show().val(a("#css-none-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_LEFT?(a("#css-left-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-left-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_RIGHT?(a("#css-right-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-right-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_CENTER?
103
+ (a("#css-center-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-center-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_FLOAT_LEFT?(a("#css-float-left-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-float-left-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_FLOAT_RIGHT?(a("#css-float-right-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-float-right-"+c).text()),a("select#block-alignment-"+
104
+ c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_STICKY_LEFT?(a("#css-sticky-left-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-sticky-left-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_STICKY_RIGHT&&(a("#css-sticky-right-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-sticky-right-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change());e==AI_ALIGNMENT_STICKY_TOP?(a("#css-sticky-top-"+c).hide(),a("#custom-css-"+
105
+ c).show().val(a("#css-sticky-top-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_STICKY_BOTTOM?(a("#css-sticky-bottom-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-sticky-bottom-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change()):e==AI_ALIGNMENT_STICKY&&(a("#css-sticky-"+c).hide(),a("#custom-css-"+c).show().val(a("#css-sticky-"+c).text()),a("select#block-alignment-"+c).val(AI_ALIGNMENT_CUSTOM_CSS).change())});a("#name-label-"+
106
+ b).click(function(){var c=a(this).attr("id").replace("name-label-","");a("div#settings-"+c).is(":visible")&&!a("#name-edit-"+c).is(":visible")&&(a("#name-edit-"+c).css("display","table-cell").val(a("#name-label-"+c).text()).focus(),a("#name-label-"+c).hide())});a("#name-label-container-"+b).click(function(){var c=a(this).attr("id").replace("name-label-container-","");a("div#settings-"+c).is(":visible")&&!a("#name-edit-"+c).is(":visible")&&(a("#name-edit-"+c).css("display","table-cell").val(a("#name-label-"+
107
+ c).text()).focus(),a("#name-label-"+c).hide())});a("#name-edit-"+b).on("keyup keypress",function(c){var e=c.keyCode||c.which;ignore_key=!0;if(27==e)e=a(this).attr("id").replace("name-edit-",""),a("#name-label-"+e).show(),a("#name-edit-"+e).hide(),ignore_key=!1;else if(13==e)return e=a(this).attr("id").replace("name-edit-",""),a("#name-label-"+e).show().text(a("#name-edit-"+e).val()),a("#name-edit-"+e).hide(),ignore_key=!1,c.preventDefault(),!1}).focusout(function(){if(ignore_key){var c=a(this).attr("id").replace("name-edit-",
108
+ "");a("#name-label-"+c).show().text(a("#name-edit-"+c).val());a("#name-edit-"+c).hide()}ignore_key=!0});a("#export-switch-"+b).checkboxButton().click(function(){var c=a(this).attr("id");c=c.replace("export-switch-","");a("#export-container-"+c).toggle();a("#export-container-"+c).is(":visible")&&!a(this).hasClass("loaded")&&a("#export_settings_"+c).load(ajaxurl+"?action=ai_ajax_backend&export="+c+"&ai_check="+ai_nonce,function(e,g,n){"error"==g?a("#ai-error-container").text(ai_admin.error+" "+n.status+
109
+ ": "+n.statusText).show():(a("#export_settings_"+c).attr("name","export_settings_"+c),a("#export-switch-"+c).addClass("loaded"))})});a("input#statistics-button-"+b).checkboxButton().click(function(){l();var c=a(this).attr("id");c=c.replace("statistics-button-","");a("div#statistics-container-"+c).toggle();a("div#settings-"+c).toggle();a("#tab-"+c+" .ai-toolbars .ai-settings").toggle();a("#ai-main-toolbar-"+c+" .ai-statistics").toggle();a("div#statistics-container-"+c).is(":visible")?(a("#name-label-container-"+
110
+ c).css("cursor","default"),a(this).hasClass("loaded")||(a("input#load-custom-range-"+c).click(),a(this).addClass("loaded"))):a("#name-label-container-"+c).css("cursor","pointer")});a("#export-pdf-button-"+b).click(function(){var c=a(this).attr("id").tabIndex();V(c)});a("#export-csv-button-"+b).click(function(){var c=a(this).attr("id").tabIndex();W(c)});a("input#adb-statistics-button-"+b).checkboxButton().click(function(){var c=a(this).attr("id");c=c.replace("adb-statistics-button-","");setTimeout(function(){a("input#load-custom-range-"+
111
+ c).click()},2)});L(b);a("#device-detection-button-"+b).button({}).show().click(function(){var c=a(this).attr("id");c=c.replace("device-detection-button-","");a("#device-detection-settings-"+c).toggle()});a("#lists-button-"+b).button({}).show().click(function(){var c=a(this).attr("id");c=c.replace("lists-button-","");if(a("#list-settings-"+c).is(":visible"))if(a("#list-settings-"+c).hasClass("ai-expaned"))a("#list-settings-"+c).hide(),a("#list-settings-"+c).removeClass("ai-expaned");else{var e=a("#list-settings-"+
112
+ c+" tr"),g=a("#list-settings-"+c+" tr.list-items");g.length!=e.length?(a("#list-settings-"+c+" tr").show(),a("#list-settings-"+c).addClass("ai-expaned")):(a("#list-settings-"+c).hide(),a("#list-settings-"+c).removeClass("ai-expaned"))}else a("#list-settings-"+c).show(),a("#list-settings-"+c).removeClass("ai-expaned"),a("#list-settings-"+c+" tr").hide(),g=a("#list-settings-"+c+" tr.list-items"),g.length?g.show():(a("#list-settings-"+c+" tr").show(),a("#list-settings-"+c).addClass("ai-expaned"))});
113
+ a("#list-settings-"+b+" span.checkbox-list-button").click(function(){a(this).hasClass("dashicons-yes")?(a(this).removeClass("dashicons-yes").addClass("dashicons-no"),a(this).prev().removeAttr("checked")):(a(this).removeClass("dashicons-no").addClass("dashicons-yes"),a(this).prev().attr("checked","1"))});a("#manual-button-"+b).button({}).show().click(function(){var c=a(this).attr("id");c=c.replace("manual-button-","");a("#manual-settings-"+c).toggle()});a("#misc-button-"+b).button({}).show().click(function(){var c=
114
+ a(this).attr("id");c=c.replace("misc-button-","");a("#misc-settings-"+c).toggle()});a("#preview-button-"+b).button({}).show().click(function(){var c=a(this).attr("id");c=c.replace("preview-button-","");a(this).blur();var e=!1,g="1"==a(this).attr("iframe")?1:0;a(this).attr("iframe","");var n=a("select#block-alignment-"+c+" option:selected").attr("value"),r=a("select#horizontal-position-"+c+" option:selected").attr("value"),q=a("select#vertical-position-"+c+" option:selected").attr("value"),t=a("#horizontal-margin-"+
115
+ c).val(),w=a("#vertical-margin-"+c).val(),A=a("select#animation-"+c+" option:selected").attr("value"),I=a("#custom-css-"+c).val(),G="";n==AI_ALIGNMENT_DEFAULT?G=a("#css-none-"+c).text():n==AI_ALIGNMENT_CUSTOM_CSS?(G=I,e=is_sticky(I)):n==AI_ALIGNMENT_LEFT?G=a("#css-left-"+c).text():n==AI_ALIGNMENT_RIGHT?G=a("#css-right-"+c).text():n==AI_ALIGNMENT_CENTER?G=a("#css-center-"+c).text():n==AI_ALIGNMENT_FLOAT_LEFT?G=a("#css-float-left-"+c).text():n==AI_ALIGNMENT_FLOAT_RIGHT?G=a("#css-float-right-"+c).text():
116
+ n==AI_ALIGNMENT_STICKY_LEFT?G=a("#css-sticky-left-"+c).text():n==AI_ALIGNMENT_STICKY_RIGHT&&(G=a("#css-sticky-right-"+c).text());n==AI_ALIGNMENT_STICKY_TOP?G=a("#css-sticky-top-"+c).text():n==AI_ALIGNMENT_STICKY_BOTTOM?G=a("#css-sticky-bottom-"+c).text():n==AI_ALIGNMENT_STICKY&&(G=update_sticky_margins(a("#css-sticky-"+c).text(),t,w),e=!0);var P=a("#name-label-"+c).text(),X=get_editor_text(c),Da=a("input#process-php-"+c).is(":checked")?1:0,Ea=a("input#show-label-"+c).is(":checked")?1:0,Fa=a("#close-button-"+
117
+ c+" option:selected").attr("value"),Ga=a("input#background-"+c).is(":checked")?1:0,Ha=a("input#body-background-"+c).is(":checked")?1:0,Ia=a("#bkg-image-url-"+c).val(),Ja=a("input#bkg-color-"+c).val(),Ka=a("select#bkg-size-"+c+" option:selected").attr("value"),La=a("select#bkg-repeat-"+c+" option:selected").attr("value");if(e)e=screen.availTop,ma=screen.availLeft,na=screen.availWidth,oa=screen.availHeight;else{e=screen.height/2-410;var ma=100,na=820,oa=820}c={action:"ai_ajax_backend",preview:c,ai_check:ai_nonce,
118
+ name:b64e(P),code:b64e(X),alignment:btoa(n),horizontal:btoa(r),vertical:btoa(q),horizontal_margin:btoa(t),vertical_margin:btoa(w),animation:btoa(A),alignment_css:btoa(G),custom_css:btoa(I),php:Da,label:Ea,close:Fa,background:Ga,body_background:Ha,background_image:btoa(Ia),background_color:btoa(Ja),background_size:btoa(Ka),background_repeat:btoa(La),iframe:g};open_popup_window_post(ajaxurl,"width="+na+",height="+oa+",top="+e+",left="+ma+",resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no",
119
+ "preview",c)});a("select#animation-"+b).change(function(){var c=a(this).attr("id").tabIndex(),e=a(this).find("option:selected").attr("value"),g=a(this).closest(".sticky-animation").find(".animation-parameters");e==AI_ANIMATION_NONE||a("input#background-"+c).is(":checked")?g.hide():g.show()});a("#iframe-preview-button-"+b).button({}).show().click(function(){var c=a(this).attr("id");c=c.replace("iframe-preview-button-","");a("#preview-button-"+c).attr("iframe","1").click()});M("category",b);M("tag",
120
+ b);M("taxonomy",b);M("id",b);S("url",b);S("url-parameter",b);S("cookie",b);S("referer",b);M("client",b);S("ip-address",b);M("country",b);M("city",b);var d=function(c){a("#ms-country-select-"+c).toggle();before_update_selection_from_list=null},f=function(c){a("#ms-city-select-"+c).toggle();before_update_selection_from_list=null};a("#country-city-"+b).click(function(){var c=a(this).attr("id").tabIndex();a(this).find("span").toggle();a(this).next().find("span").toggle();var e=a("#country-button-"+c),
121
+ g=a("#city-button-"+c),n=a("#ms-country-select-"+c);country_selection_container_visible=n.length&&n.is(":visible");c=a("#ms-city-select-"+c);city_selection_container_visible=c.length&&c.is(":visible");country_selection_container_visible&&(before_update_selection_from_list=d,g.click());city_selection_container_visible&&(before_update_selection_from_list=f,e.click())});a("#tracking-"+b).checkboxButton().click(function(){var c=a(this).attr("id").replace("tracking-",""),e=a("select#block-alignment-"+
122
+ c+" option:selected").attr("value");a("#tracking-"+c).next().find(".checkbox-icon").hasClass("on")||e!=AI_ALIGNMENT_NO_WRAPPING?a("#tracking-wrapping-warning-"+c).hide():a("#tracking-wrapping-warning-"+c).show()});a("#simple-editor-"+b).checkboxButton().click(function(){a(this).attr("id").replace("simple-editor-","")!=active_tab||a(this).hasClass("clicked")||(a(this).addClass("clicked"),a("#ai-tab-container .simple-editor-button").click(),a(this).removeClass("clicked"))});a("#simple-editor-"+b).is(":checked")&&
123
+ (B(b,!0),a("#simple-editor-"+b).next("label").find(".checkbox-icon").addClass("on"));a("#process-php-"+b).checkboxButton();a("#disable-insertion-"+b).checkboxButton();a("#ai-misc-container-"+b).tabs();a("#ai-misc-tabs-"+b).show();a("#ai-devices-container-"+b).tabs();a("#ai-devices-tabs-"+b).show();a("#tools-button-"+b).click(function(){a(this).find(".checkbox-icon").hasClass("on")||(a("label.rotation-button").each(function(){a(this).find(".checkbox-icon").hasClass("on")&&a(this).prev().click()}),
124
+ a("label.code-generator-button").each(function(){a(this).find(".checkbox-icon").hasClass("on")&&a(this).prev().click()}),a("code-generator").hide());a(".ai-tools-toolbar").toggle();a("label.tools-button").find(".checkbox-icon").toggleClass("on")});a("#ai-code-generator-container-"+b).tabs();a("select#adsense-type-"+b).change(function(){var c=a(this).attr("id").replace("adsense-type-","");N(c)});a("select#adsense-size-"+b).change(function(){var c=a(this).attr("id").replace("adsense-size-","");N(c)});
125
+ a("select#amazon-amp-"+b).change(function(){var c=a(this).attr("id").replace("amazon-amp-","");console.log("block",c);v(c)});N(b);v(b);a("#code-generator-"+b).click(function(){var c=a(this).attr("id").replace("code-generator-","");a("#ai-code-generator-container-"+c).toggle();a(this).next("label").find(".checkbox-icon").toggleClass("on")});a("#visual-editor-"+b).click(function(){var c=a(this).attr("id").replace("visual-editor-",""),e=b64e(get_editor_text(c)),g=a("input#process-php-"+c).is(":checked")?
126
+ 1:0;open_popup_window_post(ajaxurl,"width=820,height=870,top="+(screen.height/2-435)+",left=100,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","edit",{action:"ai_ajax_backend",edit:c,ai_check:ai_nonce,code:e,php:g})});a("#select-image-button-"+b).click(function(c){a(this).blur();var e=a(this).attr("id").replace("select-image-button-","");c.preventDefault();if(!g){var g=wp.media({title:ai_admin.select_banner_image,button:{text:ai_admin.use_this_image},multiple:!1});
127
+ g.on("select",function(){var n=g.state().get("selection").first().toJSON();a("#banner-image-"+e).attr("src",n.url);a("#banner-image-url-"+e).val(n.url).trigger("input")})}g.open()});a("#select-placeholder-button-"+b).click(function(c){a(this).blur();c=a(this).attr("id").replace("select-placeholder-button-","");var e=a("#banner-image-"+c).attr("src");open_popup_window_post(ajaxurl,"width=820,height=870,top="+(screen.height/2-435)+",left=100,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no",
128
+ "preview",{action:"ai_ajax_backend",placeholder:e,block:c,ai_check:ai_nonce})});a("#banner-image-url-"+b).on("input",function(){var c=a(this).attr("id").replace("banner-image-url-",""),e=a("#banner-image-"+c),g=a(this).val();""==g&&(e.hide(),a("div#tab-banner-"+c+" table.ai-settings-table").css("position","relative"));e.attr("src",g).on("load",function(){e.show();a("div#tab-banner-"+c+" table.ai-settings-table").css("position","inherit");a(this).closest(".ai-banner").removeClass("ai-banner-top");
129
+ var n=this.naturalWidth;2<n/this.naturalHeight&&300<n&&a(this).closest(".ai-banner").addClass("ai-banner-top")}).on("error",function(){e.is(":visible")&&(e.hide().attr("src",""),a("div#tab-banner-"+c+" table.ai-settings-table").css("position","relative"))})});a("#banner-url-"+b).on("input",function(){var c=a(this).attr("id").replace("banner-url-","");""==a(this).val().trim()?a("#banner-link-"+c).removeAttr("href"):a("#banner-link-"+c).attr("href",a(this).val())});a("#import-code-"+b).click(function(){a(this).next("label").find(".checkbox-icon").addClass("on");
130
+ var c=a(this).attr("id").replace("import-code-","");a.post(ajaxurl,{action:"ai_ajax_backend",ai_check:ai_nonce,"import-code":b64e(get_editor_text(c))}).done(function(e){if(""!=e){a("#ai-error-container").hide();try{var g=JSON.parse(e)}catch(n){console.log("AI IMPORT CODE ERROR:",e),a("#ai-error-container").text(e).show()}if("undefined"!==typeof g&&"undefined"!==typeof g.type)switch(debug&&console.log("AI IMPORT CODE:",g),e=g.type,a("#ai-code-generator-container-"+c).tabs({active:e==AI_CODE_UNKNOWN?
131
+ AI_CODE_BANNER:e}),e){case AI_CODE_BANNER:a("#banner-image-url-"+c).val(g.image).trigger("input");a("#image-alt-text-"+c).val(g.alt);a("#lazy-load-image-"+c).prop("checked","lazy"==g.loading);a("#banner-url-"+c).val(g.link).trigger("input");a("#open-new-tab-"+c).prop("checked","_blank"==g.target);break;case AI_CODE_ADSENSE:a("#adsense-comment-"+c).val(g["adsense-comment"]);a("#adsense-publisher-id-"+c).val(g["adsense-publisher-id"]);a("#adsense-ad-slot-id-"+c).val(g["adsense-ad-slot-id"]);a("#adsense-type-"+
132
+ c).val(g["adsense-type"]);a("#adsense-size-"+c).val(g["adsense-size"]);e="";""!=g["adsense-width"]&&""!=g["adsense-height"]&&(e=g["adsense-width"]+"x"+g["adsense-height"]);a("#tab-adsense-"+c+" .adsense-ad-size.fixed").parent().find(".scombobox-display").val(e);a("#adsense-amp-"+c).val(g["adsense-amp"]);a("#adsense-amp-block-on-consent-"+c).prop("checked","#"!=g["adsense-amp-block-on-consent"]);a("#adsense-layout-"+c).val(g["adsense-layout"]);a("#adsense-layout-key-"+c).val(decodeURIComponent(g["adsense-layout-key"]));
133
+ "false"==decodeURIComponent(g["adsense-full-width-responsive"])?a("#adsense-layout-"+c+" select.adsense-full-width").val("disabled"):a("#adsense-layout-"+c+" select.adsense-full-width").val("enabled");a("#adsense-size-"+c).val()==AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT&&a("#tab-adsense-"+c+" tr.adsense-viewport").each(function(n){var r=g["adsense-sizes"][n][0];n=g["adsense-sizes"][n][1];var q="";""!=r&&""!=n&&(q=r+"x"+n);a(this).find(".adsense-ad-size").parent().find(".scombobox-display").val(q)});N(c);
134
+ break;case AI_CODE_AMAZON:a("#amazon-data-"+c).val(g["amazon-data"]),a("#amazon-amp-"+c).val(g["amazon-amp"]),a("#amazon-width-"+c).val(g["amazon-width"]),a("#amazon-height-"+c).val(g["amazon-height"]),a("#amazon-amp-block-on-consent-"+c).prop("checked","#"!=g["amazon-amp-block-on-consent"]),v(c)}}}).fail(function(e,g,n){console.log("AI IMPORT CODE ERROR:",e.status,e.statusText);a("#ai-error-container").text(ai_admin.error+" "+e.status+": "+e.statusText).show()}).always(function(){a("#import-code-"+
135
+ c).next("label").find(".checkbox-icon").removeClass("on")})});a("#generate-code-"+b).click(function(){a("#ai-error-container").hide();a(this).next("label").find(".checkbox-icon").addClass("on");var c=a(this).attr("id").replace("generate-code-",""),e=a("#ai-code-generator-container-"+c).tabs("option","active"),g={action:"ai_ajax_backend",ai_check:ai_nonce,"generate-code":e};switch(e){case AI_CODE_BANNER:g.image=a("#banner-image-url-"+c).val();g.alt=a("#image-alt-text-"+c).val();a("#lazy-load-image-"+
136
+ c).is(":checked")&&(g.loading="lazy");g.link=a("#banner-url-"+c).val();a("#open-new-tab-"+c).is(":checked")&&(g.target="_blank");break;case AI_CODE_ADSENSE:g.block=c;g["adsense-comment"]=a("#adsense-comment-"+c).val();g["adsense-publisher-id"]=a("#adsense-publisher-id-"+c).val();g["adsense-ad-slot-id"]=a("#adsense-ad-slot-id-"+c).val();g["adsense-type"]=parseInt(a("select#adsense-type-"+c+" option:selected").attr("value"));g["adsense-size"]=parseInt(a("select#adsense-size-"+c+" option:selected").attr("value"));
137
+ var n=a("#tab-adsense-"+c+" .adsense-ad-size.fixed").parent().find(".scombobox-display").val().trim().toLowerCase().split("x");g["adsense-width"]="";g["adsense-height"]="";2==n.length&&(g["adsense-width"]=parseInt(n[0]),g["adsense-height"]=parseInt(n[1]));g["adsense-amp"]=parseInt(a("select#adsense-amp-"+c+" option:selected").attr("value"));g["adsense-amp-block-on-consent"]=a("#adsense-amp-block-on-consent-"+c).is(":checked")?"":"#";g["adsense-layout"]=a("#adsense-layout-"+c).val();g["adsense-layout-key"]=
138
+ a("#adsense-layout-key-"+c).val();g["adsense-full-width-responsive"]="true";"disabled"==a("#adsense-layout-"+c+" select.adsense-full-width").val()&&(g["adsense-full-width-responsive"]="false");if(g["adsense-size"]==AI_ADSENSE_SIZE_FIXED_BY_VIEWPORT){var r=[];a("#tab-adsense-"+c+" tr.adsense-viewport").each(function(q){q=a(this).find(".adsense-ad-size").parent().find(".scombobox-display").val().trim().toLowerCase().split("x");var t={width:"",height:""};2==q.length&&(t={width:parseInt(q[0]),height:parseInt(q[1])});
139
+ r.push(t)});g["adsense-viewports"]=r}break;case AI_CODE_AMAZON:g["amazon-data"]=a("#amazon-data-"+c).val(),g["amazon-amp"]=a("select#amazon-amp-"+c+" option:selected").attr("value"),g["amazon-width"]=a("#amazon-width-"+c).val(),g["amazon-height"]=a("#amazon-height-"+c).val(),g["amazon-amp-block-on-consent"]=a("#amazon-amp-block-on-consent-"+c).is(":checked")?"":"#"}debug&&(console.log("AI GENERATE CODE:",e),console.log(g));a.post(ajaxurl,g).done(function(q){""!=q&&(q=JSON.parse(q),"undefined"!==typeof q&&
140
+ set_editor_text(c,q))}).fail(function(q,t,w){console.log("AI GENERATE CODE ERROR:",q.status,q.statusText);a("#ai-error-container").text(ai_admin.error+" "+q.status+": "+q.statusText).show()}).always(function(){a("#generate-code-"+c).next("label").find(".checkbox-icon").removeClass("on")})});a("#clear-block-"+b).click(function(){T(!0,!0,!0,!0)});a("#copy-block-"+b).click(function(){Ma()});a("#paste-name-"+b).click(function(){T(!0,!1,!1,!1)});a("#paste-code-"+b).click(function(){T(!1,!0,!1,!1)});a("#paste-settings-"+
141
+ b).click(function(){T(!1,!1,!0,!1)});a("#paste-block-"+b).click(function(){T(!0,!0,!0,!1)});a("#rotation-"+b).click(function(){var c=a(this).attr("id").replace("rotation-",""),e=a("#ai-rotation-container-"+c);a(this).next("label").find(".checkbox-icon").toggleClass("on");e.toggle();var g=e.tabs(),n=g.find("ul");e.is(":visible")?(e.data("code",b64e(get_editor_text(c))),e.data("option",1),ea(c,1),g.tabs("option","active",0),a("input[name=ai_save]").css("color","#f00"),setTimeout(function(){Na(c)},5)):
142
+ (Oa(c),n.find("li").remove(),g.find("div.rounded").remove())});a("#add-option-"+b).click(function(){var c=a(this).attr("id").replace("add-option-","");ea(c,1);a("#ai-rotation-container-"+c).find("ul").find("li").slice(-1).click()});a("#remove-option-"+b).click(function(){var c=a(this).attr("id").replace("remove-option-","");Pa(c,a("#ai-rotation-container-"+c).tabs("option","active"))});a("#rotation-groups-"+b).click(function(){var c=a(this).attr("id").tabIndex(),e=a(this).next().find("span");e.toggleClass("on");
143
+ c=a("#ai-rotation-container-"+c);e.hasClass("on")?(c.find("span.group-name-label").show(),c.find("span.option-name-label").hide(),c.find("td.option-parameters").hide()):(c.find("span.group-name-label").hide(),c.find("span.option-name-label").show(),c.find("td.option-parameters").show())});a("#tab-"+b+" .adsense-list").click(function(){a(this).blur();ca()});a("select#html-element-insertion-"+b).change(function(){a("select#html-element-insertion-"+b+" option:selected").attr("value")==AI_HTML_INSERTION_SEREVR_SIDE?
144
+ a("#server-side-insertion-"+b).hide():a("#server-side-insertion-"+b).show()});a("#tab-"+b+" .adsense-ad-size").scombobox({showDropDown:!1,invalidAsValue:!0,animation:{duration:50}});a("select#close-button-"+b).change(function(){var c=a(this).attr("id").replace("close-button-","");a("select#close-button-sticky-"+c).val(a("select#close-button-"+c+" option:selected").attr("value"))});a("select#close-button-sticky-"+b).change(function(){var c=a(this).attr("id").replace("close-button-sticky-","");a("select#close-button-"+
145
+ c).val(a("select#close-button-sticky-"+c+" option:selected").attr("value"))});a("input#filter-numbers-insertions-"+b).on("keyup",function(){var c=a(this).attr("id").tabIndex();a("input#filter-numbers-"+c).val(a(this).val());a("select#filter-type-"+c).val(0);a("input#invert-filter-"+c).removeAttr("checked")});a("input#filter-numbers-"+b).on("keyup",function(){var c=a(this).attr("id").tabIndex();a("input#filter-numbers-insertions-"+c).val(a(this).val())});a("#html-elements-button-"+b).click(function(){var c=
146
+ a(this).attr("id").replace("html-elements-button-",""),e=a("input#html-elements-"+c).val(),g=a("#ai-settings").data("home-relative-url");open_popup_window_post(g,"width="+(screen.availWidth-15)+",height="+(screen.availHeight-65)+",top="+screen.availTop+",left="+screen.availLeft+",resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","ai-selector",{html_element_selection:c,selector:e,input:"input#html-elements-"+c})});a("#wait-for-button-"+b).click(function(){var c=
147
+ a(this).attr("id").replace("wait-for-button-",""),e=a("input#wait-for-"+c).val(),g=a("#ai-settings").data("home-relative-url");open_popup_window_post(g,"width="+(screen.availWidth-15)+",height="+(screen.availHeight-65)+",top="+screen.availTop+",left="+screen.availLeft+",resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","ai-selector",{html_element_selection:c,selector:e,input:"input#wait-for-"+c})});a("#select-bkg-image-button-"+b).click(function(c){a(this).blur();
148
+ var e=a(this).attr("id").replace("select-bkg-image-button-","");c.preventDefault();if(!g){var g=wp.media({title:ai_admin.select_background_image,button:{text:ai_admin.use_this_image},multiple:!1});g.on("select",function(){var n=g.state().get("selection").first().toJSON();a("#bkg-image-"+e).attr("src",n.url);a("#bkg-image-url-"+e).val(n.url).trigger("input")})}g.open()});a("#bkg-image-url-"+b).on("input",function(){var c=a(this).attr("id").replace("bkg-image-url-",""),e=a("#bkg-image-"+c),g=a(this).val();
149
+ ""==g&&(e.hide(),a("div#sticky-background-"+c+" table.ai-settings-table").css("position","relative"));H(c);e.attr("src",g).on("load",function(){e.show();a("div#sticky-background-"+c+" table.ai-settings-table").css("position","inherit");a(this).closest(".ai-banner").removeClass("ai-banner-top");var n=this.naturalWidth;2<n/this.naturalHeight&&300<n&&a(this).closest(".ai-banner").addClass("ai-banner-top")}).on("error",function(){e.is(":visible")&&(e.hide().attr("src",""),a("div#sticky-background-"+c+
150
+ " table.ai-settings-table").css("position","relative"))})});a("#tab-"+b+" .parallax-button").click(function(c){var e=a(this);e.blur();c.preventDefault();if(!g){var g=wp.media({title:ai_admin.select_background_image,button:{text:ai_admin.use_this_image},multiple:!1});g.on("select",function(){var n=g.state().get("selection").first().toJSON();e.closest("tr").find(".parallax-image").val(n.url)})}g.open()})}function H(b){var d=parseInt(a("select#horizontal-position-"+b+" option:selected").attr("value")),
151
+ f=parseInt(a("select#vertical-position-"+b+" option:selected").attr("value")),c=a("#horizontal-margin-"+b).val().trim(),e=a("#vertical-margin-"+b).val().trim(),g=parseInt(a("select#animation-"+b+" option:selected").attr("value")),n=a("input#background-"+b).is(":checked")?"1":"0",r=a("input#body-background-"+b).is(":checked")?"1":"0",q=b64e(a("input#bkg-color-"+b).val().trim()),t=b64e(a("input#bkg-image-url-"+b).val().trim()),w=parseInt(a("select#bkg-size-"+b+" option:selected").attr("value")),A=parseInt(a("select#bkg-repeat-"+
152
+ b+" option:selected").attr("value"));jQuery.get(ajaxurl+"?action=ai_ajax_backend&sticky_css="+b+("&h_pos="+d+"&v_pos="+f+"&h_mar="+c+"&v_mar="+e+"&anim="+g+"&bkg="+n+"&body_bkg="+r+"&bkg_col="+q+"&bkg_img="+t+"&bkg_size="+w+"&bkg_rpt="+A)+"&ai_check="+ai_nonce,function(I){""!=I&&a("#css-sticky-"+b+" .ai-sticky-css").text(I)});parseInt(n)?a("#sticky-position-"+b).addClass("ai-background"):a("#sticky-position-"+b).removeClass("ai-background");aa(b)}function aa(b){a("#sticky-scroll-warning-"+b).hide();
153
+ var d=a("select#insertion-type-"+b+" option:selected").attr("value"),f=a("select#block-alignment-"+b+" option:selected").attr("value"),c=a("select#vertical-position-"+b+" option:selected").attr("value"),e=a("input#background-"+b).is(":checked")?1:0,g=a("input#body-background-"+b).is(":checked")?1:0;f!=AI_ALIGNMENT_STICKY||c!=AI_SCROLL_WITH_THE_CONTENT||d==AI_ABOVE_HEADER||d==AI_DISABLED||e&&g||a("#sticky-scroll-warning-"+b).show()}function Z(b){var d=a("#icons-css-code-"+b);if(!d.hasClass("configured")){var f=
154
  [];a("select#insertion-type-"+b).imagepicker({hide_select:!1}).find("option").each(function(c){f.push(a(this).data("title"))});a("select#insertion-type-"+b+" + ul").appendTo("#automatic-insertion-"+b).css("padding-top","10px").find("li").each(function(c){a(this).attr("title",f[c]).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})});f=[];a("select#block-alignment-"+b).imagepicker({hide_select:!1}).find("option").each(function(c){f.push(a(this).data("title"))});a("select#block-alignment-"+
155
  b+" + ul").appendTo("#alignment-style-"+b).css("padding-top","10px").find("li").each(function(c){a(this).attr("title",f[c]).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})});f=[];a("select#horizontal-position-"+b).imagepicker({hide_select:!1}).find("option").each(function(c){f.push(a(this).data("title"))});a("select#horizontal-position-"+b+" + ul").appendTo("#horizontal-positions-"+b).css("padding-top","10px").find("li").each(function(c){a(this).attr("title",f[c]).tooltip({track:!0,
156
  delay:700,showURL:!1,showBody:" | ",fade:250})});f=[];a("select#vertical-position-"+b).imagepicker({hide_select:!1}).find("option").each(function(c){f.push(a(this).data("title"))});a("select#vertical-position-"+b+" + ul").appendTo("#vertical-positions-"+b).css("padding-top","10px").find("li").each(function(c){a(this).attr("title",f[c]).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})});d.addClass("configured")}}function Na(b){a("#rotation-"+b).next("label").find(".checkbox-icon").addClass("active");
161
  share:a(this).find("input.option-share").val(),scheduling:a(this).find("input.option-scheduling").val(),time:a(this).find("input.option-time").val(),code:e,groups:g};c.push(e)});debug&&console.log("ROTATION DATA:",c);a.post(ajaxurl,{action:"ai_ajax_backend",ai_check:ai_nonce,"generate-rotation-code":b64e(JSON.stringify(c))}).done(function(e){a("#ai-error-container").hide();""!=e&&(e=JSON.parse(e),"undefined"!==typeof e&&(debug&&console.log("ROTATION CODE:",e),set_editor_text(b,e)))}).fail(function(e,
162
  g,n){console.log("AI GENERATE ROTATION CODE ERROR:",e.status,e.statusText);a("#ai-error-container").text(ai_admin.error+" "+e.status+": "+e.statusText).show();e=a("#ai-rotation-container-"+b);set_editor_text(b,b64d(e.data("code")));e.hide();a("#rotation-"+b).next("label").find(".checkbox-icon").removeClass("on");e.find("ul").find("li").remove();e.find("div.rounded").remove()}).always(function(){a("#rotation-"+b).next("label").find(".checkbox-icon").removeClass("active");a("input[name=ai_save]").css("color",
163
  "#555")})}function ea(b,d){var f=a("#ai-rotation-container-"+b),c=f.find("ul"),e=f.find("ul >li").length,g=a("#rotation-tabs"),n=g.find("li");g=g.find("div.rounded");for(option=e+1;option<=e+d&&!(17<option);option++){var r=n.clone().show();r.find("a").attr("href","#tab-option-"+b+"-"+option).text(String.fromCharCode(64+option));r.attr("id","option-"+b+"-"+option).appendTo(c).data("code",b64e(""));r.click(function(){var q=a(this).closest(".ai-rotate"),t=q.attr("id").replace("ai-rotation-container-",
164
+ ""),w=q.data("option"),A=a(this).attr("id").replace("option-"+t+"-","");q.data("option",A);debug&&console.log("OPTION CHANGE:",w,"=>",A);a("#option-"+t+"-"+w).data("code",b64e(get_editor_text(t)));set_editor_text(t,b64d(a(this).data("code")))});g.clone().show().attr("id","tab-option-"+b+"-"+option).appendTo(f);f.tabs("refresh")}f.find("[data-title]").each(function(){a(this).attr("title",a(this).data("title"))});f.find("[title]").tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250});f.tabs("option",
165
  "active",option-2)}function Pa(b,d){var f=a("#ai-rotation-container-"+b);if(1!=f.find("ul >li").length){var c=f.find("ul");c.find("li").slice(d,d+1).remove();f.find("div.rounded").slice(d,d+1).remove();f.find("ul li").each(function(e){e+=1;a(this).attr("id","option-"+b+"-"+e).find("a").attr("href","#tab-option-"+b+"-"+e).text(String.fromCharCode(64+e))});f.find("div.rounded").each(function(e){e+=1;a(this).attr("id","tab-option-"+b+"-"+e)});f.tabs("refresh");f=0==d?0:d-1;active_li=a("#option-"+b+"-"+
166
+ (f+1));set_editor_text(b,b64d(active_li.data("code")));c.closest(".ai-rotate").data("option",f+1)}}function M(b,d){var f=a("#"+b+"-select-"+d);if(0!==f.length){var c=function(n,r){"function"==typeof before_update_selection_from_list&&before_update_selection_from_list(d);e.find("span.ui-button-text").addClass("ai-button-updating");setTimeout(function(){Qa(n,r)},5)},e=a("#"+b+"-button-"+d),g=e.data("list");null==g&&(g=b);e.click(function(){if(f.hasClass("multi-select"))c(a("#"+g+"-list-"+d),b),a("#ms-"+
167
  b+"-select-"+d).toggle();else if(0==f.find("option").length){var n=a("#ms-"+b+"-select-"+d).find(".filter-input");n=n.length?n.val():"";var r=f.data("parameters");r="undefined"==typeof r?"":r;a("#ai-loading").show();e.find("span.ui-button-text").addClass("ai-button-active").show();a.get(ajaxurl+"?action=ai_ajax_backend&list-options="+b+"&parameters="+r+"&filter="+n+"&ai_check="+ai_nonce,function(q){if(""!=q){var t="";q=a("option","<div>"+q+"</div>");0!=q.length&&0==a(q[0]).attr("value").length&&(t=
168
  a(q[0]).text(),q=q.splice(1));f.attr("data-message",t);f.html(q);pa(f,b,g,d);a("#ms-"+b+"-select-"+d).find(".filter-message").text(t);c(a("#"+g+"-list-"+d),b)}}).fail(function(q,t,w){a("input.filter-input",selection_container).remove();console.log("Error loading "+b+" options: "+q.status+" "+q.statusText)}).always(function(){a("#ai-loading").hide();e.find("span.ui-button-text").removeClass("ai-button-active")})}else pa(f,b,g,d)});a("#"+g+"-list-"+d).focusout(function(){var n=a("#ms-"+b+"-select-"+
169
  d);n.length&&n.is(":visible")&&c(a(this),b)})}}function qa(b,d,f){var c=b.$element,e=c.val();null!=e&&(""==e[0]&&(e=e.splice(1)),e=e.join(", ").trim(","));d=c.attr("id").replace(d+"-select-","");f=a("#"+f+"-list-"+d);d=f.attr("data-custom");"undefined"!=typeof d&&""!=d&&(null!=e?(""!=e&&(e+=", "),e+=d):e=d);f.attr("value",e);b.qs1.cache()}function Qa(b,d){Array.prototype.diff=function(t){return this.filter(function(w){return-1===t.indexOf(w)})};var f=b.attr("id").replace(/^\D+/g,""),c=a("#"+d+"-select-"+
173
  t);c.empty();c.removeClass("multi-select");a("#"+d+"-button-"+f).click();return!1}));e.show();a("#ms-"+d+"-select-"+f).find(".search-input").hide();q.button().show();r.val(c.attr("data-filter"));a("#ms-"+d+"-select-"+f).find(".filter-message").text(c.attr("data-message"))}}a("#"+d+"-button-"+f).find("span.ui-button-text").removeClass("ai-button-updating")}function pa(b,d,f,c){b.addClass("multi-select");b.multiSelect({selectableHeader:'<div class="ai-list-filter-container"><input type="text" class="filter-input" autocomplete="off" placeholder="'+
174
  ai_admin.filter+'" title="'+ai_admin.filter_title+'"><button class="filter-button" style="margin-top: -2px; display: none;">'+ai_admin.button_filter+'</button><span class="filter-message"></span></div><input type="text" class="search-input" autocomplete="off" placeholder="'+ai_admin.search+'">',selectionHeader:"",afterInit:function(e){var g=this;e=g.$selectableUl.prev();g.$selectionUl.prev();var n="#"+g.$container.attr("id")+" .ms-elem-selectable:not(.ms-selected)";g.$container.attr("id");g.qs1=e.quicksearch(n).on("keydown",
175
  function(r){if(40===r.which)return g.$selectableUl.focus(),!1})},afterSelect:function(e){qa(this,d,f)},afterDeselect:function(e){qa(this,d,f)}})}function S(b,d){var f=a("#"+b+"-editor-"+d),c=a("#"+b+"-list-"+d);0!==f.length&&(a("#"+b+"-button-"+d).click(function(){ra(c,b,!0)}),f.focusout(function(){sa(f,b)}),c.focusout(function(){f.is(":visible")&&ra(a(this),b,!1)}))}function ta(b,d){var f=b.hasClass("ai-clean-protocol"),c=b.hasClass("ai-clean-domain"),e=b.hasClass("ai-only-domain"),g=b.hasClass("ai-list-sort");
176
+ d=d.filter(function(w,A,I){return I.indexOf(w)===A});for(var n=[],r=0;r<d.length;r++){var q=d[r];if(f&&0==q.indexOf("http")){q=q.replace("http://","");q=q.replace("https://","");var t=q.indexOf("/");c?q=0<t?q.substring(t):"":e&&0<t&&(q=q.substring(0,t))}""!=q&&n.push(q)}g&&n.sort();return n}function ra(b,d,f){var c=b.attr("id").replace(d+"-list-","");c=a("#"+d+"-editor-"+c);f&&c.toggle();c.is(":visible")?(d=b.attr("value"),f=",",b.hasClass("ai-list-space")&&-1<d.indexOf(" ")&&-1==d.indexOf(",")&&
177
  (f=" "),d=d.split(f).map(Function.prototype.call,String.prototype.trim),clean_list_items=ta(b,d),c.val(clean_list_items.join("\n"))):sa(c,d)}function sa(b,d){var f=b.val().split("\n").map(Function.prototype.call,String.prototype.trim),c=b.attr("id").replace(d+"-editor-","");c=a("#"+d+"-list-"+c);clean_list_items=ta(c,f);c.attr("value",clean_list_items.join(", "))}function fa(){debug&&console.log("");if(debug){var b=(new Date).getTime();console.log("since last time: "+((b-ha)/1E3).toFixed(3))}debug&&
178
+ console.log("configure_hidden_tab");debug&&console.log("tabs_to_configure: "+tabs_to_configure);do{if(0==tabs_to_configure.length){save_enabled=!0;debug_title&&a("#plugin_name").css("color","#000");debug&&console.log("configure_hidden_tab: DONE");return}var d=tabs_to_configure.pop();var f=a("#tab-"+d)}while(f.hasClass("configured"));debug&&console.log("Configuring tab: "+d);0!=d?da(d):ja();debug&&(d=(new Date).getTime(),console.log("time: "+((d-b)/1E3).toFixed(3)),console.log("TIME: "+((d-Y)/1E3).toFixed(3)),
179
  ha=d);0!=tabs_to_configure.length?0!=ai_tab_setup_delay&&setTimeout(fa,ai_tab_setup_delay):(save_enabled=!0,debug_title&&0!=ai_tab_setup_delay&&a("#plugin_name").css("color","#000"),debug&&console.log("configure_hidden_tab: DONE"))}function Ra(b){if(a(b).hasClass("not-configured")){var d=a(b).data("template");if("undefined"!=typeof d){var f=[],c=a(b).data("colors");if("undefined"!=typeof c){var e=a.elycharts.templates["ai-pie"].defaultSeries.values;c.forEach(function(q){128==q?f.push(e[9]):f.push(e[q])})}c=
180
  a(b).data("values-1");null==c&&(c=a(b).data("values-2"));null==c&&(c=a(b).data("values-3"));null==c&&(c=a(b).data("values-4"));null==c&&(c=a(b).data("values-5"));null==c&&(c=a(b).data("values-6"));null==c&&(c=a(b).data("values-7"));null==c&&(c=a(b).data("values-8"));null==c&&(c=a(b).data("values-9"));var g=a(b).data("legend");if("undefined"!=typeof g&&"undefined"!=typeof g.serie129){var n={},r;for(r in g)"serie129"==r?n.serie10=g[r]:n[r]=g[r];g=n}a(b).chart({template:d,labels:a(b).data("labels"),
181
  values:{serie1:c,serie2:a(b).data("values-2"),serie3:a(b).data("values-3"),serie4:a(b).data("values-4"),serie5:a(b).data("values-5"),serie6:a(b).data("values-6"),serie7:a(b).data("values-7"),serie8:a(b).data("values-8"),serie9:a(b).data("values-9"),serie10:a(b).data("values-129")},legend:g,tooltips:{serie1:a(b).data("tooltips")},defaultSeries:{values:f,tooltip:{height:a(b).data("tooltip-height")}},defaultAxis:{max:a(b).data("max")},features:{grid:{draw:null==c?!0:50>c.length}}});a(b).removeClass("not-configured");
182
  a(b).parent().find("div.ai-chart-label").show()}}}function ua(b){a("#ai-rating-bar");a("#rating-value span").load(ajaxurl+"?action=ai_ajax_backend&rating="+b+"&ai_check="+ai_nonce,function(){var d=a("#rating-value span").text(),f=0;""!=d&&(f=parseFloat(d));a("#rating-value").css("width",20*f+"%");""==a("#rating-value span").text()&&(a("#ai-rating-bar").hide(),a("#ai-stars").show())})}function ba(b){a(b).find(".ai-chart.not-configured").each(function(){a(this).hasClass("hidden")||(a(this).attr("style",
183
+ ""),Ra(this))})}function J(b,d,f,c){var e=b.attr(d);e.substr(-f.toString().length)==f&&b.attr(d,e.substr(0,e.length-f.toString().length)+c)}function Ma(){debug&&console.log("AI COPY FROM BLOCK",active_tab);var b=a("#ai-clipboard");b.html(a("#ai-clipboard-template").html());a("div#tab-"+active_tab+" input[name]:checkbox").each(function(d){var f=a(this).attr("checked");"undefined"!==typeof f&&!1!==f?b.find("input[name]:checkbox").eq(d).attr("checked","checked").next("label").find(".checkbox-icon").addClass("on"):
184
  b.find("input[name]:checkbox").eq(d).removeAttr("checked").next("label").find(".checkbox-icon").removeClass("on")});a("div#tab-"+active_tab+" input[name]:radio").each(function(d){var f=a(this).attr("checked");"undefined"!==typeof f&&!1!==f?b.find("input[name]:radio").eq(d).attr("checked","checked"):b.find("input[name]:radio").eq(d).removeAttr("checked")});a("div#tab-"+active_tab+" select[name]").each(function(d){var f=a(this).find("option:selected").val();b.find("select[name]").eq(d).find("option").removeAttr("selected");
185
  b.find("select[name]").eq(d).find("option[value = '"+f+"']").attr("selected",!0)});a("div#tab-"+active_tab+" input[name]:text").each(function(d){b.find("input[name]:text").eq(d).attr("value",a(this).val())});a("#list-settings-"+active_tab).is(":visible")?b.find("#list-settings-999").show():b.find("#list-settings-999").hide();a("#list-settings-"+active_tab).hasClass("ai-expanded")?b.find("#list-settings-999").addClass("ai-expanded"):b.find("#list-settings-999").removeClass("ai-expanded");a("div#tab-"+
186
  active_tab+" table.ai-lists tr").each(function(d){a(this).is(":visible")?b.find("table.ai-lists tr").eq(d).show():b.find("table.ai-lists tr").eq(d).hide();a(this).find("span.checkbox-list-button").hasClass("dashicons-no")?b.find("table.ai-lists tr").eq(d).find("span.checkbox-list-button").addClass("dashicons-no").removeClass("dashicons-yes"):b.find("table.ai-lists tr").eq(d).find("span.checkbox-list-button").removeClass("dashicons-no").addClass("dashicons-yes");a(this).hasClass("list-items")?b.find("table.ai-lists tr").eq(d).addClass("list-items"):
187
  b.find("table.ai-lists tr").eq(d).removeClass("list-items")});b.find("textarea.simple-editor").text(get_editor_text(active_tab));a("#ai-container .ai-copy").each(function(){a(this).next("label").find(".checkbox-icon").addClass("on")})}function Sa(b,d){debug&&console.log("AI LOAD BLOCK",b,"FROM DB");var f=a("#tools-button-"+active_tab);f.next("label").find(".checkbox-icon").hasClass("on")||f.click();a("#ai-loading").show();a.get(ajaxurl+"?action=ai_ajax_backend&settings="+b+"&single=1&ai_check="+ai_nonce,
188
+ function(c){debug&&console.log("AI BLOCK LOADED");var e=a("#ai-clipboard");e.html(a("div#tab-"+b,c).html());e.find("[id]").each(function(){J(a(this),"id",b,999)});e.find("[for]").each(function(){J(a(this),"for",b,999)});e.find("[href]").each(function(){J(a(this),"href",b,999)});e.find("[name]").each(function(){J(a(this),"name",b,999)});e.find("[class]").each(function(){J(a(this),"class",b,999)});e.find("pre.ai-block-number").each(function(){var g=a(this).text().replace(b,999);a(this).text(g)});a("#ai-container .ai-copy").each(function(){a(this).next("label").find(".checkbox-icon").addClass("on")})}).fail(function(c,
189
  e,g){console.log("AI LOADING ERROR:",c.status,c.statusText);a("#ai-error-container").text(ai_admin.error+" "+c.status+": "+c.statusText).show()}).always(function(){a("#ai-loading").hide()})}function T(b,d,f,c){if(c){c=a("#ai-clipboard-template");c.find("input#name-edit-999").attr("value","Block "+active_tab).attr("default","Block "+active_tab);var e=c.html()}else e=a("#ai-clipboard").html();if(""!=e&&0!=active_tab){debug&&console.log("AI PASTE TO BLOCK",active_tab);c=a("div#tab-"+active_tab);var g=
190
+ c.find("input#name-edit-"+active_tab).val(),n=get_editor_text(active_tab);if(f){f=a("#simple-editor-"+active_tab).is(":checked");var r=a("#ai-tools-toolbar-"+active_tab).is(":visible"),q=c.find(".ai-copy").next("label").find(".checkbox-icon").hasClass("on");f&&a("#simple-editor-"+active_tab).click();var t=c.find("input[name=ai_save]").attr("value"),w=c.find("#exceptions-button-container-"+active_tab).html(),A=c.find("#block-exceptions-"+active_tab).html();c.html(e).find("input[name=ai_save]").attr("value",
191
+ t);b||c.find("input#name-edit-999").val(g);d||c.find("textarea#block-999").val(n);c.find("span#name-label-999").text(c.find("input#name-edit-999").val());d=c.find("input#name-edit-999").val();c.find("pre.ai-block-name").text('[adinserter name="'+d+'"]');c.find("[id]").each(function(){J(a(this),"id",999,active_tab)});c.find("[for]").each(function(){J(a(this),"for",999,active_tab)});c.find("[href]").each(function(){J(a(this),"href",999,active_tab)});c.find("[name]").each(function(){J(a(this),"name",
192
+ 999,active_tab)});c.find("[class]").each(function(){J(a(this),"class",999,active_tab)});c.find("pre.ai-sidebars").text("");c.find("pre.ai-block-number").each(function(){var I=a(this).text().replace(999,active_tab);a(this).text(I)});c.find("#exceptions-button-container-"+active_tab).html(w);c.find("#block-exceptions-"+active_tab).html(A);da(active_tab);f&&a("#simple-editor-"+active_tab).click();r&&(a("#ai-tools-toolbar-"+active_tab).show(),a("#tools-button-"+active_tab).next("label").find(".checkbox-icon").addClass("on"));
193
  q&&c.find(".ai-copy").next("label").find(".checkbox-icon").addClass("on")}else b&&(b=a(e).find("input#name-edit-999").val(),c.find("input#name-edit-"+active_tab).val(b),c.find("span#name-label-"+active_tab).text(b),c.find("pre.ai-block-name").text('[adinserter name="'+b+'"]')),d&&set_editor_text(active_tab,a(e).find("textarea#block-999").val());debug&&console.log("AI PASTE END")}else debug&&console.log("AI PASTE FAILED")}function va(){a("#ai-list-table tr.ai-block-list").removeClass("ai-block-active");
194
  a("#ai-list-table tr.ai-block-"+active_tab).addClass("ai-block-active")}function wa(){va();a("#tab-"+active_tab).hasClass("configured")?0!=active_tab&&syntax_highlighting&&ace.edit("editor-"+active_tab).getSession().highlightLines(1E7):(debug&&console.log(""),debug&&console.log("Empty tab: "+active_tab),tabs_to_configure.push(active_tab),setTimeout(fa,10),debug&&console.log("tabs_to_configure: "+tabs_to_configure))}function Ta(){a("td.ai-website-desc").click(function(){var b=a(this).closest("tr.ai-website-list");
195
  b.data("website");b.find(".checkbox-icon").hasClass("on")||(a("#ai-website-list-table td.ai-website-labels").show(),a("#ai-website-list-table td.ai-website-editor").hide(),a("#ai-cancel-websites").show(),a("#ai-save-websites").show(),a("#ai-rearrange-websites").removeClass("blue"),b.find(".ai-website-editor .ai-website-key").val(b.find(".ai-website-editor .ai-website-key").attr("data-key")),b.find(".ai-website-editor .ai-website-desc").val(b.find(".ai-website-labels.ai-website-desc").text()),b.find(".ai-website-editor .ai-website-url").val(b.find(".ai-website-labels.ai-website-url").text()),
196
  b.find(".ai-website-labels").hide(),b.find(".ai-website-editor").show(),b.find(".ai-website-editor .ai-website-desc").focus())});a("span.ai-website-key").dblclick(function(){a(this).closest("tr.ai-website-list").toggleClass("read-only")});a("input.ai-website-key, input.ai-website-desc, input.ai-website-url").on("keyup keypress",function(b){var d=b.keyCode||b.which;ignore_key=!0;var f=a(this).closest("tr.ai-website-list");f.data("website");if(27==d)f.find(".ai-website-labels").show(),f.find(".ai-website-editor").hide(),
197
  ignore_key=!1;else if(13==d)return a("#ai-save-websites").click(),ignore_key=!1,b.preventDefault(),!1}).focusout(function(){if(ignore_key){var b=a(this).closest("tr.ai-website-list");b.data("website");b.find(".ai-website-editor .ai-website-key").attr("data-key",b.find(".ai-website-editor .ai-website-key").val());b.find(".ai-website-labels.ai-website-desc").text(b.find(".ai-website-editor .ai-website-desc").val());b.find(".ai-website-labels.ai-website-url").text(b.find(".ai-website-editor .ai-website-url").val())}ignore_key=
198
  !0});a("#ai-website-list-table .ai-delete-website").click(function(){var b=a(this).closest("tr.ai-website-list"),d=b.data("website"),f=b.find(".ai-website-labels.ai-website-url").text();b=b.find(".ai-website-labels.ai-website-desc").text();var c=d;c=ai_admin.delete_website+"<br />"+b+"<br />"+f;a("<div />").html(c).attr("title",ai_admin.warning).dialog({bgiframe:!0,draggable:!1,resizable:!1,modal:!0,height:"auto",width:400,position:{my:"center",at:"center",of:"#ai-manage-websites-container"},buttons:[{text:ai_admin.cancel,
199
+ click:function(){a(this).dialog("close")}},{text:ai_admin.delete_all,click:function(){a(this).dialog("close");a("#ai-cancel-websites").hide();a("#ai-save-websites").hide();a("#ai-rearrange-websites").removeClass("blue");K("&delete=all")}},{text:ai_admin["delete"],click:function(){a(this).dialog("close");a("#ai-cancel-websites").hide();a("#ai-save-websites").hide();a("#ai-rearrange-websites").removeClass("blue");K("&delete="+d)}}]})});a("#ai-website-list-table .ai-connect-website").click(function(){var b=
200
+ a(this).closest("tr.ai-website-list"),d=b.data("website"),f=b.hasClass("read-only")?"&read-only=1":"";b.find(".ai-connect-website .checkbox-icon").hasClass("on");ai_reload_websites_function=function(){0==a("#ai-website-data .ai-ajax-error").length&&(window.location.href=ai_settings)};a("#ai-save-websites").is(":visible")?a("#ai-save-websites").attr("data-connect",d).click():K("&connect="+d+f)});a("#ai-website-data .ai-ajax-error").dblclick(function(){a("#ai-remote-dbg-error-msg").toggle()});a("#ai-website-list-table label[title]").tooltip({track:!0,
201
  delay:700,showURL:!1,showBody:" | ",fade:250})}function xa(){var b=a("#ai-list-data");a(".ai-tab-link").click(function(){var d=a(this).data("tab")-start;a("#ai-tab-container").tabs({active:d});active_tab=parseInt(a(this).data("tab"));debug&&console.log("$('.ai-tab-link').click",active_tab);wa()});a("label.ai-copy-block").click(function(){var d=a(this).closest("tr").data("block");Sa(d,!0)});a("label.ai-pause-block").click(function(){if(!ai_read_only){var d=a(this).closest("tr").data("block");Q("cmd=pause&cmd-block="+
202
  d);ai_reload_list_function=function(){var f=a("#disable-insertion-"+d),c=f.parent().find(".icon-pause").hasClass("on");a("#ai-list-table tr.ai-block-"+d).find("label.ai-pause-block").hasClass("ai-paused")!=c&&f.click()}}});a("label.ai-preview-block").click(function(){var d=a(this).closest("tr").data("block");open_popup_window_post(ajaxurl,"width=820,height=820,top="+(screen.height/2-410)+",left=100,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","preview",
203
+ {action:"ai_ajax_backend",preview:d,ai_check:ai_nonce,read_only:1})});va();b.disableSelection();a("#ai-list-data td[title]").tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})}function K(b){website_list_search_reload=!1;var d=encodeURIComponent(a("#ai-website-list-search").val()),f=a("#ai-website-data");a("#ai-loading").show();"undefined"==typeof b&&(b="");f.load(ajaxurl+"?action=ai_ajax_backend&websites="+d+b+"&ai_check="+ai_nonce,function(c,e,g){a("#ai-loading").hide();"error"==e?
204
  (c="Error downloading website data: "+g.status+" "+g.statusText,f.html(c),debug&&console.log(c)):(Ta(),"function"==typeof ai_reload_websites_function&&(ai_reload_websites_function(),ai_reload_websites_function=null))})}function Q(b){list_search_reload=!1;var d=encodeURIComponent(a("#ai-list-search").val()),f=+!a("#ai-load-all").hasClass("light-blue"),c=a("#list-rearrange-controls"),e=c.hasClass("rearrange");c.removeClass("rearrange").hide();a("#ai-rearrange").removeClass("blue");c="";if(e){c=a("table#ai-list-table");
205
  var g=c.data("blocks");"undefined"==typeof g&&(g=[]);var n=[];c.find("tbody tr").each(function(q){n.push(a(this).data("block"))});c="&blocks-org="+JSON.stringify(g)+"&blocks-new="+JSON.stringify(n)}var r=a("#ai-list-data");g=parseInt(a("#ai-data").attr("safe-mode"))?"&safe-mode":"";b="undefined"==typeof b?"":"&"+b;a("#ai-loading").show();r.load(ajaxurl+"?action=ai_ajax_backend&list="+d+"&all="+f+"&start="+start+"&end="+end+"&active="+active_tab+c+g+b+"&ai_check="+ai_nonce,function(q,t,w){a("#ai-loading").hide();
206
  "error"==t?(q="Error downloading list data: "+w.status+" "+w.statusText,r.html(q),debug&&console.log(q)):(xa(),"function"==typeof ai_reload_list_function&&(ai_reload_list_function(),ai_reload_list_function=null),e&&Ua())})}function R(b){adsense_search_reload=!1;var d=encodeURIComponent(a("#adsense-list-search").val()),f=+!a("#adsense-load-all").parent().find(".checkbox-icon").hasClass("on"),c=a("#adsense-list-data");c.load(ajaxurl+"?action=ai_ajax_backend&adsense-list="+d+"&all="+f+"&update_ad_units="+
207
  (b?1:0)+"&ai_check="+ai_nonce,function(e,g,n){a("#adsense-reload").parent().find(".checkbox-icon").removeClass("on");"error"==g?(e="Error downloading AdSense data: "+n.status+" "+n.statusText,c.html(e),debug&&console.log(e)):a("#adsense-client-id",c).length?(a("#adsense-list-controls").hide(),a("button.ai-top-button",c).button().show(),a("#save-client-ids").click(function(){var r=a("input#adsense-client-id").val(),q=a("input#adsense-client-secret").val();c.text(ai_admin.loading);a("#ai-loading").show();
208
+ a.get(ajaxurl+"?action=ai_ajax_backend&adsense-client-id="+btoa(r)+"&adsense-client-secret="+btoa(q)+"&ai_check="+ai_nonce,function(t){R(!1)}).fail(function(t,w,A){console.log("Error saving AdSense client IDs: "+t.status+" "+t.statusText)}).always(function(){a("#ai-loading").hide()})}),a(".authorize-adsense",c).click(function(){a("#adsense-list-controls").show();c.text(ai_admin.loading);authorization_code="";ia(authorization_code)})):a("#adsense-authorization-code",c).length?(a("#adsense-list-controls").hide(),
209
  a("button.ai-top-button",c).button().show(),a(".authorize-adsense",c).click(function(){var r=a("input#adsense-authorization-code").val();a("#adsense-list-controls").show();c.text(ai_admin.loading);a(this).hasClass("clear-adsense")&&(r="");a(this).hasClass("own-ids")&&(r="own-ids");ia(r)})):(a("#adsense-list-controls").show(),e=a("#adsense-data",c).data("publisher-id"),"undefined"==typeof e&&(e=""),a("label#google-adsense-button").attr("title",ai_admin.google_adsense_homepage+" "+e).tooltip({track:!0,
210
+ delay:700,showURL:!1,showBody:" | ",fade:250}),a("label.adsense-copy-code").click(function(){var r=a(this).closest("tr").data("id"),q=atob(a(this).closest("tr").data("name"));debug&&console.log("ADSENSE CODE: ",r);a("#ai-loading").show();a.get(ajaxurl+"?action=ai_ajax_backend&adsense-code="+r+"&ai_check="+ai_nonce,function(t){t=JSON.parse(t);var w=t["error-message"];if(""==w){t=t.code;debug&&console.log(t);w=a("#ai-clipboard-template");var A=a("#ai-clipboard");A.html(w.html());A.find("input#name-edit-999").attr("value",
211
+ q).attr("default",q);A.find("textarea.simple-editor").text(t);a("#ai-container .ai-copy").each(function(){a(this).next("label").find(".checkbox-icon").addClass("on")});t=a("#tools-button-"+active_tab);t.next("label").find(".checkbox-icon").hasClass("on")||t.click()}else console.log("AdSense API error:",w)}).fail(function(t,w,A){console.log("Error downloading AdSense code: "+t.status+" "+t.statusText)}).always(function(){a("#ai-loading").hide()})}),a("label.adsense-preview-code").click(function(){var r=
212
  a(this).closest("tr").data("id"),q=a(this).closest("tr").data("name"),t=screen.height/2-410;r={action:"ai_ajax_backend",preview:"adsense",ai_check:ai_nonce,read_only:1,slot_id:btoa(r),name:q};open_popup_window_post(ajaxurl,"width=820,height=820,top="+t+",left=100,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no","preview",r)}),a("label.adsense-get-code").click(function(){var r=a(this).closest("tr").data("id");atob(a(this).closest("tr").data("name"));debug&&console.log("ADSENSE CODE: ",
213
  r);a("#ai-loading").show();a.get(ajaxurl+"?action=ai_ajax_backend&adsense-code="+r+"&ai_check="+ai_nonce,function(q){q=JSON.parse(q);var t=q["error-message"];""==t?(q=q.code,debug&&console.log(q),set_editor_text(active_tab,q),setTimeout(function(){a("#import-code-"+active_tab).click()},10)):console.log("AdSense API error:",t)}).fail(function(q,t,w){console.log("Error downloading AdSense code: "+q.status+" "+q.statusText)}).always(function(){a("#ai-loading").hide()})}),c.disableSelection())})}function O(){ads_txt_reload=
214
  !1;var b=a("#ads-txt-editor"),d=a("#ads-txt-reload"),f=a("#ads-txt-virtual").hasClass("violet")?"1":"0",c=b.hasClass("editor")?"text":"table",e=encodeURIComponent(a("#ads-txt-search").val()),g=a("#ads-txt-data");d.addClass("red");g.load(ajaxurl+"?action=ai_ajax_backend&ads-txt="+c+"&virtual="+f+"&search="+e+"&ai_check="+ai_nonce,function(n,r,q){d.removeClass("red");if("error"==r)n="Error loading ads.txt file: "+q.status+" "+q.statusText,g.html(n),debug&&console.log(n);else{0!=a("#ads-txt-missing").length&&
225
  a("#ai-plugin-settings-tab-container").tabs("option","active");debug&&console.log("active_tab_0: "+active_tab_0);if(syntax_highlighting){var f=a(this).attr("id");f=f.replace("ai-","");"h"==f?(f=ace.edit("editor-h"),f.getSession().highlightLines(1E7)):"f"==f?(f=ace.edit("editor-f"),f.getSession().highlightLines(1E7)):"a"==f&&(f=ace.edit("editor-a"),f.getSession().highlightLines(1E7))}});a("#check-pages-button").button({}).show().click(function(){var f=a(this),c=a(this).closest(".ai-check-pages").find(".ai-error-message");
226
  a("#ai-loading").show();a("#ai-loading-2").show();c.hide();f.find("span.ui-button-text").addClass("on");a("table.check-pages a").removeAttr("href").hide();var e="po pa hp cp ap sp".split(" ");e.forEach(function(g,n){a("table.check-pages td.ai-position").each(function(){a(this).removeClass("ai-yes").removeClass("ai-no").addClass("ai-not-checked").attr("title",ai_admin.position_not_checked);a(this).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})});a("table.ai-page-types td.ai-page-type").each(function(){a(this).removeClass("ai-unavailable")});
227
  setTimeout(function(){Wa(g,f,n==e.length-1)},300*n+10)})})}function Ua(){debug&&console.log("RELOAD SETTINGS");var b=a("#ai-container");a("#ai-error-container").hide();debug_title&&a("#plugin_name").css("color","#f00");a("#ai-loading").show();var d=a("#ai-tools-toolbar-"+active_tab).is(":visible"),f=a("#simple-editor-"+active_tab).is(":checked"),c=a("#copy-block-"+active_tab).next("label").find(".checkbox-icon").hasClass("on");b.load(ajaxurl+"?action=ai_ajax_backend&settings="+active_tab+"&ai_check="+
228
+ ai_nonce,function(e,g,n){"error"==g?(a("#ai-loading").hide(),e=ai_admin.error_reloading_settings+": "+n.status+" "+n.statusText,a("#ai-error-container").text(e).show(),debug&&console.log(e)):(debug&&console.log(" Configuring..."),debug&&(ha=Y=(new Date).getTime()),ya(),f&&a("#simple-editor-"+active_tab).click(),d&&a("#tools-button-"+active_tab).click(),c&&a("#ai-container .ai-copy").each(function(){a(this).next("label").find(".checkbox-icon").addClass("on")}),debug&&console.log(" Configured"),a("#ai-loading").hide())})}
229
  function ia(b){a("#ai-loading").show();a.get(ajaxurl+"?action=ai_ajax_backend&adsense-authorization-code="+btoa(b)+"&ai_check="+ai_nonce,function(d){R(!1)}).fail(function(d,f,c){console.log("Error saving AdSense authorization: "+d.status+" "+d.statusText)}).always(function(){a("#ai-loading").hide()})}function ca(){var b=a("#adsense-list-container");b.toggle();b.is(":visible")?(a(".checkbox-icon.icon-adsense").addClass("on"),R(!1)):a(".checkbox-icon.icon-adsense").removeClass("on")}function za(){var b=
230
  encodeURIComponent(a("#block-class-name").val()),d=a("#block-class").is(":checked")?1:0,f=a("#block-number-class").is(":checked")?1:0,c=a("#block-name-class").is(":checked")?1:0,e=a("#inline-styles").is(":checked")?1:0;a.get(ajaxurl+"?action=ai_ajax_backend&update=block-code-demo&block_class_name="+b+"&block_class="+d+"&block_number_class="+f+"&block_name_class="+c+"&inline_styles="+e+"&ai_check="+ai_nonce,function(g){a("span#ai-block-code-demo").html(g)}).fail(function(g,n,r){console.log("Error updating block code demo: "+
231
  g.status+" "+g.statusText)})}0!=a("#export-container-0").length&&(a.elycharts.templates.ai={type:"line",margins:[10,38,20,38],defaultSeries:{fill:!0,fillProps:{opacity:.15},plotProps:{"stroke-width":1}},series:{serie1:{color:"#66f",rounded:.8},serie2:{color:"#888",axis:"r",fillProps:{opacity:.1}}},defaultAxis:{labels:!0,min:0},features:{grid:{draw:!0,forceBorder:!0,ny:5,ticks:{active:[!0,!0,!0],size:[4,0],props:{stroke:"#ccc"}}}},interactive:!1},a.elycharts.templates["ai-clicks"]={template:"ai",series:{serie1:{color:"#0a0",
235
  opacity:1},values:[{plotProps:{fill:"#aaa"}},{plotProps:{fill:"#0a0"}},{plotProps:{fill:"#33f"}},{plotProps:{fill:"#e22"}},{plotProps:{fill:"#e2f"}},{plotProps:{fill:"#ec6400"}},{plotProps:{fill:"#00a3b5"}},{plotProps:{fill:"#7000ff"}},{plotProps:{fill:"#000"}},{plotProps:{fill:"#000"}}]}},a.elycharts.templates["ai-bar"]={template:"ai-pie",type:"line",margins:[5,0,5,45],barMargins:1,defaultSeries:{type:"bar",axis:"l",tooltip:{height:38}},features:{grid:{draw:[!1,!1],props:{stroke:"#e0e0e0","stroke-width":0},
236
  ticks:{props:{stroke:"#e0e0e0","stroke-width":0}}}}});shSettings.theme=a("#ai-data").attr("theme");var ka=0,E=a("#ai-data-2").attr("geo_groups");"undefined"!=typeof E&&(ka=parseInt(E));debug=parseInt(a("#ai-data").attr("js_debugging"));ai_tab_setup_delay=parseInt(a("#ai-data").attr("tab-setup-delay"));api_string=a("#ai-data-2").attr("api_string");if("undefined"!=typeof api_string){api_debug=parseInt(a("#ai-data-2").attr("api_debugging"));var Aa=a("#ai-data-2").attr("api_check");E=0;try{E=b64d(api_string).length}catch(b){E=
237
  api_string.length+4}"undefined"!=typeof Aa&&0!=E&&4!=E&&(35>E||37<E)&&setTimeout(function(){var b=document.createElement("script");b.async=!0;b.src=b64d(Aa);var d=document.getElementsByTagName("head")[0],f=!1;b.onerror=function(){b.onerror=null;d.removeChild(b)};b.onload=b.onreadystatechange=function(){f||this.readyState&&"loaded"!=this.readyState&&"complete"!=this.readyState||(f=!0,b.onload=b.onreadystatechange=null,d.removeChild(b))};d.appendChild(b)},10);34>api_debug&&30<api_debug&&(api_debug=
238
+ 0)}else api_debug=0;if(debug){var Y=(new Date).getTime(),ha=Y;debug_title=!0}syntax_highlighting="undefined"!=typeof shSettings.theme&&"disabled"!=shSettings.theme;debug&&console.log("READY");debug_title&&a("#plugin_name").css("color","#f00");if(debug){var Ba=(new Date).getTime();console.log("TIME: "+((Ba-Y)/1E3).toFixed(3))}a("#blocked-warning").removeClass("warning-enabled");a("#blocked-warning").hide();start=parseInt(a("#ai-form").attr("start"));end=parseInt(a("#ai-form").attr("end"));active_tab=
239
  start;active_tab_0=0;try{var C=JSON.parse(a("#ai-active-tab").attr("value"));"undefined"!==typeof C&&C.constructor===Array&&Number.isInteger(C[0])&&Number.isInteger(C[1])&&(active_tab=parseInt(C[0]),0!=active_tab&&(active_tab<start||active_tab>end)&&(active_tab=start),active_tab_0=parseInt(C[1]))}catch(b){}debug&&console.log("active_tabs:",active_tab,active_tab_0);C=a("#ai-data").attr("version").split("-")[0];javascript_version!=C&&(console.log("AD INSERTER: plugin version: "+C+", loaded JavaScript version: "+
240
  javascript_version),E=a("script[src*='ad-inserter.js']").attr("src"),"undefined"==typeof E?a("#javascript-version-parameter-missing").show():(javascript_version_parameter_string=E.split("=")[1],"undefined"==typeof javascript_version_parameter_string?a("#javascript-version-parameter-missing").show():javascript_version_parameter_string!=C&&(console.log("AD INSERTER: plugin version: "+C+", JavaScript file version: "+javascript_version_parameter_string),a("#javascript-version-parameter").show())),a("#javascript-version").html("Javascript<br />"+
241
  javascript_version),a("#javascript-warning").show());E=a("#ai-data").css("font-family").replace(/["']/g,"");if(-1==E.indexOf("."))a("#blocked-warning").show();else if(E!=C){console.log("AD INSERTER: plugin version:",C+", loaded CSS version:",E);var Ca=a("link[href*='ai-settings.css']").attr("href");"undefined"==typeof Ca?a("#css-version-parameter-missing").show():(css_version_parameter_string=Ca.split("=")[1],"undefined"==typeof css_version_parameter_string?a("#css-version-parameter-missing").show():
243
  ai_admin.rotation_active+"</div>";a("<div />").html(b).attr("title",ai_admin.warning).dialog({bgiframe:!0,draggable:!1,resizable:!1,modal:!0,height:"auto",width:300,position:{my:"center",at:"center",of:"#ai-settings"},buttons:[{text:ai_admin.ok,click:function(){a(this).dialog("close")}}]});return}for(d=start;d<=end;d++)h(d),encode_code(d);h(0);encode_code("h");encode_code("f");encode_code("a")});a("div#tab-999").attr("id","ai-clipboard-template").insertBefore("#ai-clipboard");ya();a("#plugin_name").dblclick(function(){a(".system-debugging").toggle()});
244
  a("#ai-stars").click(function(){""!=a("#rating-value span").text()&&(a("#ai-rating-bar").css("display","inline-block"),a("#ai-stars").hide());ua("update","")});a("#ai-rating-bar").click(function(){a("#ai-rating-bar").hide();a("#ai-stars").show()});a("#adsense-list").click(function(){ca()});a("#ai-ads-txt").click(function(){a(this).blur();var b=a("#ads-txt-container");b.toggle();b.is(":visible")?(a("#ai-ads-txt .checkbox-icon.icon-ads-txt").addClass("on"),O()):a("#ai-ads-txt .checkbox-icon.icon-ads-txt").removeClass("on")});
245
  a("#page-checker-button").click(function(){a("#page-checker-container").toggle();a("#page-checker-container").is(":visible")?(a(".page-checker-button").addClass("blue"),a("#page-checker-button").addClass("blue")):(a(".page-checker-button").removeClass("blue"),a("#page-checker-button").removeClass("blue"))});a("#ai-manage-websites").click(function(){a("#ai-manage-websites-container").toggle();a("#ai-manage-websites").toggleClass("blue");a("#ai-cancel-websites").hide();a("#ai-save-websites").hide();
246
+ a("#ai-rearrange-websites").removeClass("blue");a("#ai-manage-websites-container").is(":visible")&&K()});a("#ai-website-list-search").keyup(function(b){website_list_search_reload||(website_list_search_reload=!0,setTimeout(K,200))});a("#ai-list").click(function(){a("#ai-list").toggleClass("blue");var b=a("#ai-list-container");a("#ai-pin-list").hasClass("on")||a("#ai-list").hasClass("blue")==b.is(":visible")||b.toggle();b.is(":visible")&&Q();a("#ai-list").hasClass("blue")?(a("#plugin_name").hide(),
247
  a("#block-ranges").show()):(a("#plugin_name").show(),a("#block-ranges").hide())});a("#ai-list-search").keyup(function(b){list_search_reload||(list_search_reload=!0,setTimeout(Q,200))});a("#ai-load-all").click(function(){a(this).toggleClass("light-blue");Q()});a("#ai-rearrange").click(function(){a(this).toggleClass("blue");var b=a("#ai-list-data"),d=a("#list-rearrange-controls");a(this).hasClass("blue")?(a("#ai-rearrange").attr("title",ai_admin.cancel_rearrangement).tooltip({track:!0,delay:700,showURL:!1,
248
  showBody:" | ",fade:250}),d.show(),b.find("tbody").sortable({start:function(f,c){a("#list-save").show()},placeholder:"ui-state-highlight"}).css("cursor","move")):(b.find("tbody").sortable("disable"),a("#ai-rearrange").attr("title",ai_admin.rearrange_block_order).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}),a("#list-save").hide(),d.hide(),Q())});a("#ai-save-changes").click(function(){a("#list-rearrange-controls").addClass("rearrange");Q()});a("#ai-pin-list").click(function(){a(this).toggleClass("on");
249
  var b=a(this).hasClass("on")?"1":"0";a("#ai-list").hasClass("blue")||a("#ai-list-container").toggle();a.get(ajaxurl+"?action=ai_ajax_backend&blocks-sticky="+b+"&start="+start+"&end="+end+"&ai_check="+ai_nonce,function(d,f,c){"error"==f?(d="Error updating sticky: "+c.status+" "+c.statusText,a("#ai-list-data").html(d),debug&&console.log(d)):debug&&console.log("AI blocks sticky:",d)})});a("#maxmind-db-status").hasClass("maxmind-db-missing")&&(C=ajaxurl+"?action=ai_ajax_backend&update=maxmind&ai_check="+
254
  resizable:!1,modal:!0,height:"auto",width:400,position:{my:"center",at:"center",of:"#ads-txt-container"},buttons:[{text:ai_admin["switch"],click:function(){a(this).dialog("close");b()}},{text:ai_admin.cancel,click:function(){a(this).dialog("close")}}]})}else f.addClass("violet"),f.attr("title",f.attr("title-virtual")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}),setTimeout(function(){O()},50)});a("#ads-txt-reload").click(function(){var b=a("#ads-txt-editor");b.hasClass("editor")&&
255
  b.removeClass("editor");setTimeout(function(){O()},50)});a("#ads-txt-editor").click(function(){a(this).hasClass("editor")?setTimeout(function(){Va(!0)},50):(a(this).addClass("editor"),setTimeout(function(){O()},50),a(this).attr("title",a(this).attr("title-table")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}))});a("#ads-txt-search").keyup(function(b){ads_txt_reload||(ads_txt_reload=!0,setTimeout(function(){O()},200))});a(".ai-public-controls").dblclick(function(){a(this).toggleClass("on")});
256
  a(".public-report-button").click(function(){var b=JSON.parse(a(this).attr("report-data")),d=b[0],f=b[1],c=a(this).parent().parent().parent().parent().find(".ai-public-controls").hasClass("on")?"1":"0",e=a(this).parent().parent().parent().parent().find(".custom-range-controls").attr("range-name");b=f+c+b[2]+e;f=b64e(b).replaceAll("+",".").replaceAll("/","_").replaceAll("=","-");d=d+md5(b).substring(0,2)+f;window.open(d,"ai-report")});a("#ai-list-data").hasClass("ai-sticky")&&xa();a("#ai-cancel-websites").click(function(){a("#ai-cancel-websites").hide();
257
+ a("#ai-save-websites").hide();a("#ai-rearrange-websites").removeClass("blue");K()});a("#ai-add-website").click(function(){a("#ai-cancel-websites").hide();a("#ai-save-websites").hide();a("#ai-rearrange-websites").removeClass("blue");ai_reload_websites_function=function(){a("#ai-website-list-table tr.ai-website-list").last().find(".ai-website-labels.ai-website-desc").click()};K("&add=")});a("#ai-save-websites").click(function(){var b=a(this).attr("data-connect");"undefined"!==typeof b&&!1!==b?(a(this).removeAttr("data-connect"),
258
  b="&connect="+b):b="";a("#ai-website-list-table tr.ai-website-list").each(function(){var f=a(this);f.find(".ai-website-editor .ai-website-key").is(":visible")&&(f.find(".ai-website-editor .ai-website-key").attr("data-key",f.find(".ai-website-editor .ai-website-key").val()),f.find(".ai-website-labels.ai-website-desc").text(f.find(".ai-website-editor .ai-website-desc").val()),f.find(".ai-website-labels.ai-website-url").text(f.find(".ai-website-editor .ai-website-url").val()),f.find(".ai-website-labels").show(),
259
+ f.find(".ai-website-editor").hide())});var d=[];a("#ai-website-list-table tr.ai-website-list").each(function(){var f=a(this),c=f.find(".ai-website-labels.ai-website-url").text().trim(),e=f.find(".ai-website-labels.ai-website-desc").text().trim();f=f.find(".ai-website-editor .ai-website-key").attr("data-key").trim();""!=c&&d.push({url:c,name:e,key:b64e(f)})});a("#ai-cancel-websites").hide();a("#ai-save-websites").hide();a("#ai-rearrange-websites").removeClass("blue");K("&save="+b64e(JSON.stringify(d))+
260
  b)});a("#ai-rearrange-websites").click(function(){a(this).toggleClass("blue");var b=a("#ai-website-data");a(this).hasClass("blue")?(a("#ai-website-list-table .ai-delete-website").each(function(){a(this).closest("tr.ai-website-list").find(".ai-connect-website .checkbox-icon").hasClass("on")||a(this).show()}),b.find("tbody").sortable({start:function(d,f){a("#ai-cancel-websites").show();a("#ai-save-websites").show()},placeholder:"ui-state-highlight"}).css("cursor","move")):(b.find("tbody").sortable("disable"),
261
+ K())});a(".ai-managing").length&&(setTimeout(function(){window.location.href=ai_settings},18E5),check_managing_slave(),a("#ai-connected").click(function(){a(this).css("color","#ababab");a("#ai-loading").show();ai_reload_websites_function=function(){0==a("#ai-website-data .ai-ajax-error").length&&(window.location.href=ai_settings)};K("&connect=")}))});
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-12-31 11:55:17+00:00\n"
8
- "PO-Revision-Date: 2021-12-31 12:56+0100\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
  "%100<=4 ? 2 : 3);\n"
17
  "X-Generator: Poedit 3.0.1\n"
18
 
19
- #: ad-inserter.php:300
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:316
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:323
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:409
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:416
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:425
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:432
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:443
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
- #: ad-inserter.php:450
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:1121
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
- #: ad-inserter.php:1126
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:1131 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:1136 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:1141 strings.php:106
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
- #: ad-inserter.php:1146 strings.php:170
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
- #: ad-inserter.php:1193
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
- #: ad-inserter.php:1197
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
- #: ad-inserter.php:1495
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
- #: ad-inserter.php:1869 ad-inserter.php:3309
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
- #: ad-inserter.php:2612
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
- #: ad-inserter.php:2612
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
- #: ad-inserter.php:2613
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
- #: ad-inserter.php:2614
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
- #: ad-inserter.php:2615
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
- #: ad-inserter.php:2616
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
- #: ad-inserter.php:2617
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:3004
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:3007
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
- #: ad-inserter.php:3011
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
- #: ad-inserter.php:3016
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:3019
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:3032
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:3034
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,33 @@ 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:3040
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:3057 ad-inserter.php:3092
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:3064
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:3074
 
 
 
 
 
204
  msgctxt "Menu item"
205
  msgid "Settings"
206
  msgstr "Nastavitve"
207
 
208
- #: ad-inserter.php:3106
209
  msgid ""
210
  "Load settings page in safe mode to avoid collisions with other plugins or "
211
  "theme"
@@ -213,79 +218,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:3106
217
  msgid "Safe mode"
218
  msgstr "Varni način"
219
 
220
  #. translators: %s: Ad Inserter
221
- #: ad-inserter.php:3201
222
  msgctxt "Meta box name"
223
  msgid "%s Individual Exceptions"
224
  msgstr "Posamezne Izjeme za %s"
225
 
226
- #: ad-inserter.php:3230 ad-inserter.php:11567 class.php:2521
227
- #: includes/preview.php:2343 includes/preview.php:2388
228
- #: includes/preview.php:2425 settings.php:4476 strings.php:3
229
  msgid "Block"
230
  msgstr "Blok"
231
 
232
- #: ad-inserter.php:3231 includes/functions.php:4627 settings.php:4477
233
- #: settings.php:4567
234
  msgid "Name"
235
  msgstr "Ime"
236
 
237
- #: ad-inserter.php:3234 settings.php:1247
238
  msgid "Default insertion"
239
  msgstr "Privzeto vstavljanje"
240
 
241
  #. translators: For this post or page
242
- #: ad-inserter.php:3237
243
  msgctxt "Page"
244
  msgid "For this"
245
  msgstr "Za to"
246
 
247
- #: ad-inserter.php:3238
248
  msgctxt "Post"
249
  msgid "For this"
250
  msgstr "Za ta"
251
 
252
- #: ad-inserter.php:3250
253
  msgctxt "Enabled/disabled on all"
254
  msgid "pages"
255
  msgstr "straneh"
256
 
257
- #: ad-inserter.php:3253
258
  msgctxt "Enabled/disabled on all"
259
  msgid "posts"
260
  msgstr "prispevkih"
261
 
262
- #: ad-inserter.php:3270 ad-inserter.php:3282 strings.php:176
263
  msgid "Enabled"
264
  msgstr "Omogočeno"
265
 
266
  #. translators: Menu items
267
- #: ad-inserter.php:3270 ad-inserter.php:3282
268
- #: includes/functions-check-now.php:2402 includes/functions.php:2954
269
- #: includes/functions.php:3317 strings.php:16
270
  msgid "Disabled"
271
  msgstr "Onemogočeno"
272
 
273
- #: ad-inserter.php:3272
274
  msgid "No individual exceptions"
275
  msgstr "Ni posameznih izjem"
276
 
277
  #. translators: Not enabled for pages or posts
278
- #: ad-inserter.php:3274
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:3302
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:3307
289
  msgid ""
290
  "Default insertion can be configured for each block on %1$s page - button "
291
  "next to %2$s checkbox."
@@ -293,11 +298,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:3310 settings.php:1225
297
  msgid "Tag / Archive pages"
298
  msgstr "Strani oznak / arhiva"
299
 
300
- #: ad-inserter.php:3312
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 +310,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:3313
309
  msgid ""
310
  "This way you can individually enable or disable blocks on specific posts or "
311
  "pages."
@@ -313,61 +318,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:3315
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:3317
322
  msgid "Individual Exceptions"
323
  msgstr "Posamezne Izjeme"
324
 
325
- #: ad-inserter.php:3363
326
  msgid "STATIC PAGE"
327
  msgstr "STATIČNA STRAN"
328
 
329
- #: ad-inserter.php:3366
330
  msgid "POST"
331
  msgstr "PRISPEVEK"
332
 
333
- #: ad-inserter.php:3369
334
  msgid "HOMEPAGE"
335
  msgstr "DOMAČA STRAN"
336
 
337
- #: ad-inserter.php:3372
338
  msgid "CATEGORY PAGE"
339
  msgstr "STRAN KATEGORIJE"
340
 
341
- #: ad-inserter.php:3375
342
  msgid "SEARCH PAGE"
343
  msgstr "STRAN ISKANJE"
344
 
345
- #: ad-inserter.php:3378
346
  msgid "ARCHIVE PAGE"
347
  msgstr "STRAN ARHIVA"
348
 
349
- #: ad-inserter.php:3381
350
  msgid "ERROR 404 PAGE"
351
  msgstr "STRAN NAPAKA 404"
352
 
353
- #: ad-inserter.php:3384
354
  msgid "AJAX CALL"
355
  msgstr "AJAX KLIC"
356
 
357
- #: ad-inserter.php:3387
358
  msgid "UNKNOWN PAGE TYPE"
359
  msgstr "NEZNAN TIP STRANI"
360
 
361
- #: ad-inserter.php:3404
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:3405
366
  msgid "AD BLOCKING STATUS UNKNOWN"
367
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
368
 
369
  #. translators: %s: AdSense Auto Ads
370
- #: ad-inserter.php:3434
371
  msgid ""
372
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
373
  "positions"
@@ -375,11 +380,11 @@ msgstr ""
375
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
376
  "položaje"
377
 
378
- #: ad-inserter.php:3580
379
  msgid "Code for insertion"
380
  msgstr "Koda za vstavljanje"
381
 
382
- #: ad-inserter.php:3580
383
  msgid "character"
384
  msgid_plural "characters"
385
  msgstr[0] "znak"
@@ -387,16 +392,16 @@ msgstr[1] "znaka"
387
  msgstr[2] "znaki"
388
  msgstr[3] "znakov"
389
 
390
- #: ad-inserter.php:3596
391
  msgid "Header code"
392
  msgstr "Koda v glavi"
393
 
394
- #: ad-inserter.php:3596
395
  msgctxt "Header code"
396
  msgid "DISABLED"
397
  msgstr "ONEMOGOČENA"
398
 
399
- #: ad-inserter.php:3596 ad-inserter.php:3852
400
  msgid "character inserted"
401
  msgid_plural "characters inserted"
402
  msgstr[0] "znak vstavljen"
@@ -404,48 +409,48 @@ msgstr[1] "znaka vstavljena"
404
  msgstr[2] "znaki vstavljeni"
405
  msgstr[3] "znakov vstavljenih"
406
 
407
- #: ad-inserter.php:3614
408
  msgid "Click to delete the cookie for the consents"
409
  msgstr "Klikni za brisanje piškotka za soglasja"
410
 
411
- #: ad-inserter.php:3852
412
  msgid "Footer code"
413
  msgstr "Koda v nogi"
414
 
415
- #: ad-inserter.php:3852
416
  msgctxt "Footer code"
417
  msgid "DISABLED"
418
  msgstr "ONEMOGOČENA"
419
 
420
- #: ad-inserter.php:3863
421
  msgid "JAVASCRIPT NOT WORKING"
422
  msgstr "JAVASCRIPT NE DELA"
423
 
424
- #: ad-inserter.php:3863
425
  msgid "NO JAVASCRIPT ERRORS"
426
  msgstr "BREZ JAVASCRIPT NAPAK"
427
 
428
- #: ad-inserter.php:3863
429
  msgid "JAVASCRIPT ERRORS"
430
  msgstr "JAVASCRIPT NAPAKE"
431
 
432
  #. translators: block name (block with default settings)
433
- #: ad-inserter.php:6686
434
  msgctxt "Block name"
435
  msgid "Default"
436
  msgstr "Privzeti"
437
 
438
  #. translators: %s: Ad Inserter
439
- #: ad-inserter.php:7130 ad-inserter.php:7445
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:7415
445
  msgid "Error importing %s settings."
446
  msgstr "Napaka pri uvozu %s nastavitev."
447
 
448
- #: ad-inserter.php:7416
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,17 +458,17 @@ 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:7443
457
  msgid "Settings saved."
458
  msgstr "Nastavitve shranjene."
459
 
460
- #: ad-inserter.php:7465
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:7841 ad-inserter.php:7843 ad-inserter.php:7866
466
- #: settings.php:2277
467
  msgid "word"
468
  msgid_plural "words"
469
  msgstr[0] "besedo"
@@ -471,43 +476,43 @@ msgstr[1] "besedi"
471
  msgstr[2] "besede"
472
  msgstr[3] "besed"
473
 
474
- #: ad-inserter.php:7880 ad-inserter.php:8007
475
  msgid "HTML TAGS REMOVED"
476
  msgstr "HTML ZNAČKE ODSTRANJENE"
477
 
478
- #: ad-inserter.php:8086
479
  msgid "BEFORE COMMENTS"
480
  msgstr "PRED KOMENTARJI"
481
 
482
- #: ad-inserter.php:8211
483
  msgid "AFTER COMMENTS"
484
  msgstr "PO KOMETARJIH"
485
 
486
- #: ad-inserter.php:8288
487
  msgid "BETWEEN COMMENTS"
488
  msgstr "MED KOMENTARJI"
489
 
490
- #: ad-inserter.php:10845 ad-inserter.php:10934
491
  msgctxt "category name"
492
  msgid "Uncategorized"
493
  msgstr "Nekategorizirano"
494
 
495
- #: ad-inserter.php:11165
496
  msgid "requires WordPress 4.6 or newer"
497
  msgstr "potrebuje WordPress 4.6 ali novejši"
498
 
499
- #: ad-inserter.php:11165
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:11435
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:11437
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 +520,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:11439
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 +530,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:11479
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 +541,50 @@ msgstr ""
536
  "nam %s in poskušali vam bomo pomagati."
537
 
538
  #. translators: %s: Ad Inserter
539
- #: ad-inserter.php:11525
540
  msgid "%s block."
541
  msgstr "%s blok."
542
 
543
  #. translators: widget title
544
- #: ad-inserter.php:11541 ad-inserter.php:11576
545
  msgid "Processing log"
546
  msgstr "Dnevnik procesiranja"
547
 
548
  #. translators: widget title
549
- #: ad-inserter.php:11543 ad-inserter.php:11577
550
  msgid "Dummy widget"
551
  msgstr "Prazen gradnik"
552
 
553
  #. translators: widget title
554
- #: ad-inserter.php:11545 ad-inserter.php:11575
555
  msgid "Debugging tools"
556
  msgstr "Orodja za razhroščevanje"
557
 
558
  #. translators: block status (widget title)
559
- #: ad-inserter.php:11552
560
  msgctxt "block"
561
  msgid "PAUSED"
562
  msgstr "USTAVLJEN"
563
 
564
- #: ad-inserter.php:11553
565
  msgid "WIDGET DISABLED"
566
  msgstr "GRADNIK ONEMOGOČEN"
567
 
568
- #: ad-inserter.php:11554
569
  msgid "Unknown block"
570
  msgstr "Neznan blok"
571
 
572
- #: ad-inserter.php:11562 includes/functions-check-now.php:3262
573
- #: includes/functions.php:5106 settings.php:1277
574
  msgid "Title"
575
  msgstr "Naslov"
576
 
577
- #: ad-inserter.php:11584
578
  msgctxt "Widget"
579
  msgid "Sticky"
580
  msgstr "Lepljiv"
581
 
582
- #: ad-inserter.php:11635
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 +593,7 @@ msgstr ""
588
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
589
  "Inserter Pro."
590
 
591
- #: ad-inserter.php:11636
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,173 +604,188 @@ msgstr ""
599
  "različici (dodatne nastavitve blokov in vtičnika)!"
600
 
601
  #. translators: %s: Ad Inserter
602
- #: class.php:611 class.php:620 class.php:623
603
  msgid "PHP error in %s block"
604
  msgstr "PHP napaka v bloku %s"
605
 
606
- #: class.php:2471
607
  msgid "Counters"
608
  msgstr "Števci"
609
 
610
- #: class.php:2475
611
  msgid "Content"
612
  msgstr "Vsebina"
613
 
614
- #: class.php:2480
615
  msgid "Excerpt"
616
  msgstr "Izvleček"
617
 
618
- #: class.php:2485 strings.php:17
619
  msgid "Before post"
620
  msgstr "Pred prispevkom"
621
 
622
- #: class.php:2490 strings.php:18
623
  msgid "After post"
624
  msgstr "Za prispevkom"
625
 
626
- #: class.php:2495 strings.php:25
627
  msgid "Between posts"
628
  msgstr "Med prispevki"
629
 
630
- #: class.php:2500 settings.php:2011 settings.php:4494
631
  msgid "Widget"
632
  msgstr "Gradnik"
633
 
634
- #: class.php:2505 settings.php:4492
635
  msgid "PHP function call"
636
  msgstr "Klic PHP funkcije"
637
 
638
  #. Translators: %s: custom hook name
639
- #: class.php:2515
640
  msgid "Custom hook %s call"
641
  msgstr "Klic ročice po meri %s"
642
 
643
- #: class.php:2551
644
  msgid "AJAX REQUEST"
645
  msgstr "AJAX ZAHTEVEK"
646
 
647
- #: class.php:2554
648
  msgid "Ajax request for block in iframe"
649
  msgstr "Ajax zahtevek za blok v iframe-u"
650
 
651
- #: class.php:2588
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:2591
656
  msgid "IN THE LOOP"
657
  msgstr "V ZANKI"
658
 
659
- #: class.php:2591
660
  msgid "YES"
661
  msgstr "DA"
662
 
663
- #: class.php:2591
664
  msgid "NO"
665
  msgstr "NE"
666
 
667
- #: class.php:2626
668
  msgid "BLOCK"
669
  msgstr "BLOK"
670
 
671
- #: class.php:2626
672
  msgctxt "block or widget"
673
  msgid "INSERTED BUT NOT VISIBLE"
674
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
675
 
676
- #: class.php:2857
677
  msgctxt "viewports"
678
  msgid "ALL"
679
  msgstr "VSI"
680
 
681
- #: class.php:2890 class.php:2931 class.php:4516 strings.php:282
682
  msgctxt "Block"
683
  msgid "HIDDEN"
684
  msgstr "SKRIT"
685
 
686
- #: class.php:2938 class.php:4519 strings.php:281
687
  msgctxt "Block"
688
  msgid "VISIBLE"
689
  msgstr "VIDEN"
690
 
691
- #: class.php:3621 class.php:3708
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
692
  msgid "ACTIVE GROUPS"
693
  msgstr "AKTIVNE SKUPINE"
694
 
695
- #: class.php:4190
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:4198
700
  msgid "parameters='%s' type='%s'"
701
  msgstr "parametri='%s' tip='%s'"
702
 
703
- #: class.php:4200
704
  msgid "cookies='%s' type='%s'"
705
  msgstr "piškotki='%s' tip='%s'"
706
 
707
  #. translators: %s: list parameters and type
708
- #: class.php:4202
709
  msgid "referers='%s' type='%s'"
710
  msgstr "napotitelji='%s' tip='%s'"
711
 
712
  #. translators: %s: list parameters and type
713
- #: class.php:4204
714
  msgid "clients='%s' type='%s'"
715
  msgstr "odjemalci='%s' tip='%s'"
716
 
717
  #. translators: %s: list parameters and type
718
- #: class.php:4399
719
  msgid "countries='%s' type='%s'"
720
  msgstr "države='%s' tip='%s'"
721
 
722
  #. translators: %s: list parameters and type
723
- #: class.php:4401
724
  msgid "ip addresses='%s' type='%s'"
725
  msgstr "ip naslovi='%s' tip='%s'"
726
 
727
- #: class.php:4516 class.php:4519
728
  msgid "viewport='%s' type='%s'"
729
  msgstr "pogled='%s' tip='%s'"
730
 
731
- #: class.php:4642 strings.php:283
732
  msgctxt "alternative block"
733
  msgid "FALLBACK"
734
  msgstr "REZERVA"
735
 
736
- #: class.php:5210 strings.php:275
737
  msgid "BEFORE"
738
  msgstr "PRED"
739
 
740
- #: class.php:5218 strings.php:277
741
  msgid "PREPEND CONTENT"
742
  msgstr "DODAJ PRED VSEBINO"
743
 
744
- #: class.php:5222 strings.php:278
745
  msgid "APPEND CONTENT"
746
  msgstr "DODAJ ZA VSEBINO"
747
 
748
- #: class.php:5226 strings.php:279
749
  msgid "REPLACE CONTENT"
750
  msgstr "NADOMESTI VSEBINO"
751
 
752
- #: class.php:5230 strings.php:280
753
  msgid "REPLACE ELEMENT"
754
  msgstr "NADOMESTI ELEMENT"
755
 
756
- #: class.php:5241 strings.php:276
757
  msgid "AFTER"
758
  msgstr "ZA"
759
 
760
- #: class.php:5311 includes/preview.php:2388 includes/preview.php:2425
761
  msgid "Code"
762
  msgstr "Koda"
763
 
764
- #: class.php:5314
765
  msgid "for block"
766
  msgstr "za blok"
767
 
768
- #: class.php:9556
769
  msgid ""
770
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
771
  "extension for PHP."
@@ -774,16 +794,16 @@ msgstr ""
774
  "namestiti DOM razširitev za PHP."
775
 
776
  #: includes/editor.php:4 includes/placeholders.php:350
777
- #: includes/preview.php:2329 strings.php:288
778
  msgid "Use"
779
  msgstr "Uporabi"
780
 
781
- #: includes/editor.php:5 includes/preview.php:2330
782
  msgid "Reset"
783
  msgstr "Ponastavi"
784
 
785
  #: includes/editor.php:6 includes/placeholders.php:352
786
- #: includes/preview.php:2332 settings.php:3813 strings.php:229 strings.php:287
787
  msgid "Cancel"
788
  msgstr "Prekliči"
789
 
@@ -792,7 +812,7 @@ msgid "Visual Code Editor"
792
  msgstr "Vizualni Urejevalnik Kode"
793
 
794
  #: includes/editor.php:259 includes/preview-adb.php:301
795
- #: includes/preview.php:2319
796
  msgid ""
797
  "This page was not loaded properly. Please check browser, plugins and ad "
798
  "blockers."
@@ -805,7 +825,7 @@ msgid "Error loading page"
805
  msgstr "Napaka pri nalaganju strani"
806
 
807
  #: includes/editor.php:261 includes/preview-adb.php:303
808
- #: includes/preview.php:2321
809
  msgid "PAGE BLOCKED"
810
  msgstr "STRAN BLOKIRANA"
811
 
@@ -819,7 +839,7 @@ msgid "No name matches filter"
819
  msgstr "Noben podatek ne ustreza filtru"
820
 
821
  #. translators: %s: Ad Inserter Pro
822
- #: includes/functions-check-now.php:396 includes/functions.php:430
823
  msgid ""
824
  "Import %s settings when saving - if checked, the encoded settings below will "
825
  "be imported for all blocks and settings"
@@ -827,39 +847,39 @@ msgstr ""
827
  "Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
828
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
829
 
830
- #: includes/functions-check-now.php:396 includes/functions.php:430
831
  msgid "Import Settings for"
832
  msgstr "Uvozi Nastavitve za"
833
 
834
- #: includes/functions-check-now.php:400 includes/functions.php:434
835
  msgid "Saved settings for"
836
  msgstr "Shranjene nastavitve za"
837
 
838
- #: includes/functions-check-now.php:420 includes/functions.php:457
839
  msgid "License Key"
840
  msgstr "Licenčni Ključ"
841
 
842
- #: includes/functions-check-now.php:423 includes/functions.php:460
843
  msgid "License Key for"
844
  msgstr "Licenčni Ključ za"
845
 
846
- #: includes/functions-check-now.php:425 includes/functions.php:462
847
  msgid "Open license page"
848
  msgstr "Odpri licenčno stran"
849
 
850
- #: includes/functions-check-now.php:432 includes/functions.php:469
851
  msgid "Hide license key"
852
  msgstr "Skrij licenčni ključ"
853
 
854
- #: includes/functions-check-now.php:432 includes/functions.php:469
855
  msgid "Hide key"
856
  msgstr "Skrij ključ"
857
 
858
- #: includes/functions-check-now.php:447 includes/functions.php:486
859
  msgid "Main content element"
860
  msgstr "Glavni element vsebine"
861
 
862
- #: includes/functions-check-now.php:450 includes/functions.php:489
863
  msgid ""
864
  "Main content element (#id or .class) for 'Stick to the content' position. "
865
  "Leave empty unless position is not properly calculated."
@@ -867,79 +887,79 @@ msgstr ""
867
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
868
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
869
 
870
- #: includes/functions-check-now.php:451 includes/functions.php:490
871
- #: settings.php:1434 settings.php:1474 settings.php:2956
872
  msgid "Open HTML element selector"
873
  msgstr "Odpri izbirnik HTML elementa"
874
 
875
- #: includes/functions-check-now.php:456 includes/functions.php:495
876
  msgid "Lazy loading offset"
877
  msgstr "Zamik za leno nalaganje"
878
 
879
- #: includes/functions-check-now.php:459 includes/functions.php:498
880
  msgid "Offset of the block from the visible viewport when it should be loaded"
881
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
882
 
883
- #: includes/functions-check-now.php:470 includes/functions.php:510
884
  msgid "Export / Import Block Settings"
885
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
886
 
887
- #: includes/functions-check-now.php:485 includes/functions.php:527
888
  msgid "Track impressions and clicks for this block"
889
  msgstr "Sledi prikazom in klikom za ta blok"
890
 
891
- #: includes/functions-check-now.php:485 includes/functions.php:527
892
  msgid " - global tracking disabled"
893
  msgstr " - globalno sledenje onemogočeno"
894
 
895
- #: includes/functions-check-now.php:492 includes/functions.php:535
896
- #: includes/functions.php:4799
897
  msgid "Generate PDF report"
898
  msgstr "Generiraj PDF poročilo"
899
 
900
- #: includes/functions-check-now.php:497 includes/functions.php:549
901
  msgid "Open public report"
902
  msgstr "Odpri javno poročilo"
903
 
904
- #: includes/functions-check-now.php:511 includes/functions.php:563
905
  msgid "Toggle Ad Blocking Statistics"
906
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
907
 
908
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
909
- #: includes/functions.php:571 includes/functions.php:4780
910
  msgid "Toggle Statistics"
911
  msgstr "Preklopi Statistiko"
912
 
913
- #: includes/functions-check-now.php:528 includes/functions.php:580
914
  msgid "Pin list"
915
  msgstr "Pripni seznam"
916
 
917
  #. translators: %s: Ad Inserter Pro
918
- #: includes/functions-check-now.php:543 includes/functions.php:603
919
  msgid "%s license key is not set. Continue?"
920
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
921
 
922
  #. translators: %s: Ad Inserter Pro
923
- #: includes/functions-check-now.php:547 includes/functions.php:607
924
  msgid "Invalid %s license key. Continue?"
925
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
926
 
927
  #. translators: %s: Ad Inserter Pro
928
- #: includes/functions-check-now.php:551 includes/functions.php:611
929
  msgid "%s license overused. Continue?"
930
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
931
 
932
- #: includes/functions-check-now.php:555 includes/functions.php:621
933
- #: settings.php:1182 settings.php:2389
934
  msgid "Save Settings"
935
  msgstr "Shrani Nastavitve"
936
 
937
- #: includes/functions-check-now.php:615 includes/functions.php:689
938
- #: includes/preview.php:2520
939
  msgid "Horizontal position"
940
  msgstr "Vodoravni položaj"
941
 
942
- #: includes/functions-check-now.php:638 includes/functions.php:714
943
  msgid ""
944
  "Horizontal margin from the content or screen edge, empty means default value "
945
  "from CSS"
@@ -947,12 +967,12 @@ msgstr ""
947
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
948
  "iz CSS"
949
 
950
- #: includes/functions-check-now.php:646 includes/functions.php:722
951
- #: includes/preview.php:2580
952
  msgid "Vertical position"
953
  msgstr "Navpični položaj"
954
 
955
- #: includes/functions-check-now.php:661 includes/functions.php:737
956
  msgid ""
957
  "Vertical margin from the top or bottom screen edge, empty means default "
958
  "value from CSS"
@@ -960,8 +980,8 @@ msgstr ""
960
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
961
  "iz CSS"
962
 
963
- #: includes/functions-check-now.php:686 includes/functions.php:768
964
- #: includes/preview.php:2635
965
  msgid "Animation"
966
  msgstr "Animacija"
967
 
@@ -977,22 +997,22 @@ msgstr ""
977
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
978
  "selektorjem (#id ali .razred) postane viden"
979
 
980
- #: includes/functions-check-now.php:717 includes/functions.php:803
981
- #: includes/functions.php:830
982
  msgid "Offset"
983
  msgstr "Zamik"
984
 
985
- #: includes/functions-check-now.php:717 includes/functions.php:803
986
- #: includes/functions.php:830
987
  msgid "Offset of trigger element"
988
  msgstr "Zamik sprožilnega elementa"
989
 
990
- #: includes/functions-check-now.php:721 includes/functions.php:807
991
- #: includes/functions.php:834 settings.php:1489
992
  msgid "Delay"
993
  msgstr "Zakasnitev"
994
 
995
- #: includes/functions-check-now.php:721 includes/functions.php:807
996
  msgid "Delay animation after trigger condition"
997
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
998
 
@@ -1005,28 +1025,28 @@ msgid "Trigger animation only once"
1005
  msgstr "Sproži animacijo samo enkrat"
1006
 
1007
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
1008
- #: includes/functions-check-now.php:2546 includes/functions.php:942
1009
- #: includes/functions.php:3106 includes/functions.php:3122
1010
  msgid "Tracking is globally disabled"
1011
  msgstr "Sledenje je globalno onemogočeno"
1012
 
1013
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
1014
- #: includes/functions-check-now.php:2550 includes/functions.php:946
1015
- #: includes/functions.php:3110 includes/functions.php:3126
1016
  msgid "Tracking for this block is disabled"
1017
  msgstr "Sledenje za ta blok je onemogočeno"
1018
 
1019
- #: includes/functions-check-now.php:780 includes/functions.php:953
1020
  msgid "Double click to toggle controls in public reports"
1021
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1022
 
1023
- #: includes/functions-check-now.php:786 includes/functions.php:959
1024
- #: includes/functions.php:4349 settings.php:3733 settings.php:3769
1025
- #: settings.php:3830 strings.php:243
1026
  msgid "Loading..."
1027
  msgstr "Nalagam..."
1028
 
1029
- #: includes/functions-check-now.php:807 includes/functions.php:980
1030
  msgid ""
1031
  "Clear statistics data for the selected range - clear both dates to delete "
1032
  "all data for this block"
@@ -1034,71 +1054,71 @@ msgstr ""
1034
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
1035
  "brisanje vseh podatkov za ta blok"
1036
 
1037
- #: includes/functions-check-now.php:811 includes/functions.php:984
1038
  msgid "Auto refresh data for the selected range every 60 seconds"
1039
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1040
 
1041
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1042
- #: includes/functions.php:987 includes/functions.php:8085
1043
  msgid "Load data for last month"
1044
  msgstr "Naloži podatke za zadnji mesec"
1045
 
1046
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1047
- #: includes/functions.php:987 includes/functions.php:8085
1048
  msgid "Last Month"
1049
  msgstr "Zadnji Mesec"
1050
 
1051
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1052
- #: includes/functions.php:990 includes/functions.php:8088
1053
  msgid "Load data for this month"
1054
  msgstr "Naloži podatke za ta mesec"
1055
 
1056
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1057
- #: includes/functions.php:990 includes/functions.php:8088
1058
  msgid "This Month"
1059
  msgstr "Ta Mesec"
1060
 
1061
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1062
- #: includes/functions.php:993 includes/functions.php:8091
1063
  msgid "Load data for this year"
1064
  msgstr "Naloži podatke za to leto"
1065
 
1066
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1067
- #: includes/functions.php:993 includes/functions.php:8091
1068
  msgid "This Year"
1069
  msgstr "To Leto"
1070
 
1071
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1072
- #: includes/functions.php:996 includes/functions.php:8094
1073
  msgid "Load data for the last 15 days"
1074
  msgstr "Naloži podatke za zadnjih 15 dni"
1075
 
1076
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1077
- #: includes/functions.php:999 includes/functions.php:8097
1078
  msgid "Load data for the last 30 days"
1079
  msgstr "Naloži podatke za zadnjih 30 dni"
1080
 
1081
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1082
- #: includes/functions.php:1002 includes/functions.php:8100
1083
  msgid "Load data for the last 90 days"
1084
  msgstr "Naloži podatke za zadnjih 90 dni"
1085
 
1086
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1087
- #: includes/functions.php:1005 includes/functions.php:8103
1088
  msgid "Load data for the last 180 days"
1089
  msgstr "Naloži podatke za zadnjih 180 dni"
1090
 
1091
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1092
- #: includes/functions.php:1008 includes/functions.php:8106
1093
  msgid "Load data for the last 365 days"
1094
  msgstr "Naloži podatke za zadnjih 365 dni"
1095
 
1096
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1097
- #: includes/functions.php:1018 includes/functions.php:8116
1098
  msgid "Load data for the selected range"
1099
  msgstr "Naloži podatke za izbrano obdobje"
1100
 
1101
- #: includes/functions-check-now.php:861 includes/functions.php:1035
1102
  msgid ""
1103
  "Import settings when saving - if checked, the encoded settings below will be "
1104
  "imported for this block"
@@ -1106,11 +1126,11 @@ msgstr ""
1106
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1107
  "nastavitve spodaj uvozile za ta blok"
1108
 
1109
- #: includes/functions-check-now.php:861 includes/functions.php:1035
1110
  msgid "Import settings for block"
1111
  msgstr "Uvozi nastavitve za blok"
1112
 
1113
- #: includes/functions-check-now.php:865 includes/functions.php:1039
1114
  msgid ""
1115
  "Import block name when saving - if checked and 'Import settings for block' "
1116
  "is also checked, the name from encoded settings below will be imported for "
@@ -1120,41 +1140,41 @@ msgstr ""
1120
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1121
  "uvozilo za ta blok"
1122
 
1123
- #: includes/functions-check-now.php:865 includes/functions.php:1039
1124
  msgid "Import block name"
1125
  msgstr "Uvozi ime bloka"
1126
 
1127
- #: includes/functions-check-now.php:869 includes/functions.php:1043
1128
  msgid "Saved settings for block"
1129
  msgstr "Shranjene nastavitve za blok"
1130
 
1131
- #: includes/functions-check-now.php:882 includes/functions.php:1058
1132
  msgid "Export / Import Ad Inserter Pro Settings"
1133
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1134
 
1135
- #: includes/functions-check-now.php:892 includes/functions.php:1077
1136
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1137
  msgstr ""
1138
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1139
  "bloke?"
1140
 
1141
- #: includes/functions-check-now.php:894 includes/functions.php:1079
1142
  msgid "Clear All Statistics Data"
1143
  msgstr "Pobriši Vse Podatke o Statistiki"
1144
 
1145
- #: includes/functions-check-now.php:921 includes/functions.php:1113
1146
  msgid "Toggle country/city editor"
1147
  msgstr "Preklopi urejevalnik držav/mest"
1148
 
1149
- #: includes/functions-check-now.php:927 includes/functions.php:1119
1150
  msgid "IP Addresses"
1151
  msgstr "IP Naslovi"
1152
 
1153
- #: includes/functions-check-now.php:930 includes/functions.php:1122
1154
  msgid "Toggle IP address editor"
1155
  msgstr "Preklopi urejevalnik IP nslovov"
1156
 
1157
- #: includes/functions-check-now.php:933 includes/functions.php:1125
1158
  msgid ""
1159
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1160
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
@@ -1170,25 +1190,25 @@ msgstr "Črni seznam IP naslovov"
1170
  msgid "Whitelist IP addresses"
1171
  msgstr "Beli seznam IP naslovov"
1172
 
1173
- #: includes/functions-check-now.php:952 includes/functions.php:1141
1174
  msgid "Countries"
1175
  msgstr "Države"
1176
 
1177
- #: includes/functions-check-now.php:953 includes/functions.php:1142
1178
  msgid "Cities"
1179
  msgstr "Mesta"
1180
 
1181
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1182
- #: includes/functions.php:1146 includes/functions.php:4745
1183
  msgid "Toggle country editor"
1184
  msgstr "Preklopi urejevalnik držav"
1185
 
1186
- #: includes/functions-check-now.php:960 includes/functions.php:1149
1187
  msgid "Toggle city editor"
1188
  msgstr "Preklopi urejevalnik mest"
1189
 
1190
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1191
- #: includes/functions.php:1153 includes/functions.php:4748
1192
  msgid "Comma separated country ISO Alpha-2 codes"
1193
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1194
 
@@ -1201,12 +1221,12 @@ msgid "Whitelist countries"
1201
  msgstr "Beli seznam držav"
1202
 
1203
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1204
- #: includes/functions.php:1730 includes/functions.php:2065
1205
  msgid "Enter license key"
1206
  msgstr "Vnesite licenčni ključ"
1207
 
1208
  #. translators: %s: Ad Inserter Pro
1209
- #: includes/functions-check-now.php:1389 includes/functions.php:1736
1210
  msgid ""
1211
  "%s license key is not set. Plugin functionality is limited and updates are "
1212
  "disabled."
@@ -1215,55 +1235,55 @@ msgstr ""
1215
  "posodobitve onemogočene."
1216
 
1217
  #. translators: %s: Ad Inserter Pro
1218
- #: includes/functions-check-now.php:1403 includes/functions.php:1750
1219
  msgid "Warning: %s plugin update server is not accessible"
1220
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1221
 
1222
  #. translators: updates are not available
1223
- #: includes/functions-check-now.php:1405 includes/functions.php:1752
1224
  msgid "updates"
1225
  msgstr "posodobitve"
1226
 
1227
  #. translators: updates are not available
1228
- #: includes/functions-check-now.php:1407 includes/functions.php:1754
1229
  msgid "are not available"
1230
  msgstr "niso na razpolago"
1231
 
1232
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1233
- #: includes/functions.php:1759 includes/functions.php:2074
1234
  msgid "Check license key"
1235
  msgstr "Preverite licenčni ključ"
1236
 
1237
  #. translators: %s: Ad Inserter Pro
1238
- #: includes/functions-check-now.php:1418 includes/functions.php:1765
1239
  msgid "Invalid %s license key."
1240
  msgstr "Neveljaven %s licenčni ključ."
1241
 
1242
  #. translators: %s: Ad Inserter Pro
1243
- #: includes/functions-check-now.php:1427 includes/functions.php:1774
1244
  msgid "%s license expired. Plugin updates are disabled."
1245
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1246
 
1247
- #: includes/functions-check-now.php:1428 includes/functions.php:1775
1248
  msgid "Renew license"
1249
  msgstr "Obnovite licenco"
1250
 
1251
  #. translators: %s: Ad Inserter Pro
1252
- #: includes/functions-check-now.php:1436 includes/functions.php:1783
1253
  msgid "%s license overused. Plugin updates are disabled."
1254
  msgstr ""
1255
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1256
 
1257
- #: includes/functions-check-now.php:1437 includes/functions.php:1784
1258
  msgid "Manage licenses"
1259
  msgstr "Upravljajte z licencami"
1260
 
1261
- #: includes/functions-check-now.php:1437 includes/functions.php:1784
1262
  msgid "Upgrade license"
1263
  msgstr "Nadgradite licenco"
1264
 
1265
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1266
- #: includes/functions-check-now.php:1684 includes/functions.php:2067
1267
  msgid ""
1268
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1269
  "limited and updates are disabled."
@@ -1272,12 +1292,12 @@ msgstr ""
1272
  "so omejene in posodobitve onemogočene."
1273
 
1274
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1275
- #: includes/functions-check-now.php:1693 includes/functions.php:2076
1276
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1277
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1278
 
1279
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1280
- #: includes/functions-check-now.php:1709 includes/functions.php:2092
1281
  msgid ""
1282
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1283
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1287,7 +1307,7 @@ msgstr ""
1287
  "pogrešate. %3$s"
1288
 
1289
  #. translators: 1, 3: HTML tags, 2: percentage
1290
- #: includes/functions-check-now.php:1716 includes/functions.php:2099
1291
  msgid ""
1292
  "During the license period and 30 days after the license has expired we offer "
1293
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
@@ -1295,24 +1315,24 @@ msgstr ""
1295
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1296
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1297
 
1298
- #: includes/functions-check-now.php:1726 includes/functions.php:2109
1299
  msgid "No, thank you."
1300
  msgstr "Ne, hvala."
1301
 
1302
- #: includes/functions-check-now.php:1729 includes/functions.php:2112
1303
  msgid "Not now, maybe later."
1304
  msgstr "Ne zdaj, mogoče kasneje."
1305
 
1306
- #: includes/functions-check-now.php:1743 includes/functions.php:2126
1307
  msgid "Renew the licence"
1308
  msgstr "Obnovi licenco"
1309
 
1310
- #: includes/functions-check-now.php:1745 includes/functions.php:2128
1311
  msgid "Update license status"
1312
  msgstr "Posodobi status licence"
1313
 
1314
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1315
- #: includes/functions-check-now.php:1756 includes/functions.php:2141
1316
  msgid ""
1317
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1318
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1322,105 +1342,105 @@ msgstr ""
1322
  "Nadgradite licenco %7$s"
1323
 
1324
  #. Translators: %s: HTML tag
1325
- #: includes/functions-check-now.php:1778 includes/functions.php:2201
1326
  msgid "Warning: %s MaxMind IP geolocation database not found."
1327
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1328
 
1329
- #: includes/functions-check-now.php:2331 includes/functions.php:2883
1330
  msgid "Geolocation"
1331
  msgstr "Geolokacija"
1332
 
1333
- #: includes/functions-check-now.php:2335 includes/functions.php:2887
1334
- #: settings.php:4481
1335
  msgid "Exceptions"
1336
  msgstr "Izjeme"
1337
 
1338
- #: includes/functions-check-now.php:2340 includes/functions.php:2892
1339
  msgid "Multisite"
1340
  msgstr "Multisite"
1341
 
1342
- #: includes/functions-check-now.php:2345 includes/functions.php:2897
1343
- #: settings.php:4487
1344
  msgid "Tracking"
1345
  msgstr "Sledenje"
1346
 
1347
  #. translators: %d: days, hours, minutes
1348
- #: includes/functions-check-now.php:2376 includes/functions.php:2931
1349
  msgid "Scheduled in %d days %d hours %d minutes"
1350
  msgstr "Planirano v %d dneh %d urah %d minutah"
1351
 
1352
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1353
  #. HTML code for long dash separator
1354
- #: includes/functions-check-now.php:2385 includes/functions.php:2940
1355
  msgid "Active %s expires in %d days %d hours %d minutes"
1356
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1357
 
1358
- #: includes/functions-check-now.php:2389 includes/functions.php:2944
1359
  msgid "Expired"
1360
  msgstr "Poteklo"
1361
 
1362
- #: includes/functions-check-now.php:2397 includes/functions.php:2970
1363
- #: settings.php:1544 settings.php:1559 settings.php:1681 settings.php:2275
1364
  msgid "and"
1365
  msgstr "in"
1366
 
1367
- #: includes/functions-check-now.php:2400 includes/functions.php:2952
1368
  msgid "fallback"
1369
  msgstr "rezerva"
1370
 
1371
- #: includes/functions-check-now.php:2401 includes/functions.php:2953
1372
  msgid "Block to be used when scheduling expires"
1373
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1374
 
1375
- #: includes/functions-check-now.php:2426 includes/functions.php:2992
1376
  msgid "Load in iframe"
1377
  msgstr "Naloži v iframe-u"
1378
 
1379
- #: includes/functions-check-now.php:2430 includes/functions.php:2996
1380
- #: includes/placeholders.php:387 settings.php:1142 settings.php:2302
1381
  msgid "Width"
1382
  msgstr "Širina"
1383
 
1384
- #: includes/functions-check-now.php:2431 includes/functions.php:2997
1385
  msgid "iframe width, empty means full width (100%)"
1386
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1387
 
1388
- #: includes/functions-check-now.php:2437 includes/functions.php:3003
1389
- #: includes/placeholders.php:382 settings.php:1148 settings.php:2306
1390
  msgid "Height"
1391
  msgstr "Višina"
1392
 
1393
- #: includes/functions-check-now.php:2438 includes/functions.php:3004
1394
  msgid "iframe height, empty means adjust it to iframe content height"
1395
  msgstr ""
1396
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1397
 
1398
- #: includes/functions-check-now.php:2445 includes/functions.php:3011
1399
  msgid "Ad label in iframe"
1400
  msgstr "Oznaka oglasa v iframe-u"
1401
 
1402
- #: includes/functions-check-now.php:2450 includes/functions.php:3016
1403
  msgid "Preview iframe code"
1404
  msgstr "Predpreglej kodo iframe"
1405
 
1406
- #: includes/functions-check-now.php:2450 includes/functions.php:3016
1407
- #: includes/preview.php:2341 settings.php:1177 settings.php:3027
1408
  msgid "Preview"
1409
  msgstr "Predogled"
1410
 
1411
- #: includes/functions-check-now.php:2464 includes/functions.php:3032
1412
- #: settings.php:4488
1413
  msgid "Limits"
1414
  msgstr "Omejitve"
1415
 
1416
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1417
- #: includes/functions-check-now.php:4430 includes/functions.php:3037
1418
- #: includes/functions.php:6606 includes/functions.php:6671 settings.php:2439
1419
  msgid "Ad Blocking"
1420
  msgstr "Blokiranje Oglasov"
1421
 
1422
  #. translators: 1, 2 and 3, 4: HTML tags
1423
- #: includes/functions-check-now.php:2478 includes/functions.php:3048
1424
  msgid ""
1425
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1426
  "for tracking!"
@@ -1430,7 +1450,7 @@ msgstr ""
1430
 
1431
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1432
  #. header
1433
- #: includes/functions-check-now.php:2487 includes/functions.php:3057
1434
  msgid ""
1435
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1436
  "enabled and automatic insertion %6$s!"
@@ -1438,7 +1458,7 @@ msgstr ""
1438
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1439
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1440
 
1441
- #: includes/functions-check-now.php:2554 includes/functions.php:3130
1442
  msgid "Click fraud protection is globally disabled"
1443
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1444
 
@@ -1447,14 +1467,14 @@ msgid "Max clicks per time period are not defined"
1447
  msgstr "Največje število klikov na časovno enoto ni definirano"
1448
 
1449
  #. Translators: Max n impressions
1450
- #: includes/functions-check-now.php:2572 includes/functions.php:3144
1451
  msgid "General limits"
1452
  msgstr "Splošne omejitve"
1453
 
1454
  #. Translators: Max n impressions per x days
1455
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1456
- #: includes/functions-check-now.php:2675 includes/functions.php:3150
1457
- #: includes/functions.php:3162 includes/functions.php:3247
1458
  msgid "Current value"
1459
  msgstr "Trenutna vrednost"
1460
 
@@ -1470,14 +1490,14 @@ msgstr "Trenutna vrednost"
1470
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1471
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1472
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1473
- #: includes/functions.php:3169 includes/functions.php:3179
1474
- #: includes/functions.php:3198 includes/functions.php:3208
1475
- #: includes/functions.php:3254 includes/functions.php:3263
1476
- #: includes/functions.php:3281 includes/functions.php:3290 settings.php:2187
1477
  msgid "Max"
1478
  msgstr "Največ"
1479
 
1480
- #: includes/functions-check-now.php:2598 includes/functions.php:3170
1481
  msgid ""
1482
  "Maximum number of impressions for this block. Empty means no general "
1483
  "impression limit."
@@ -1491,8 +1511,8 @@ msgstr ""
1491
  #. Translators: Max n impressions per x days
1492
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1493
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1494
- #: includes/functions.php:3172 includes/functions.php:3182
1495
- #: includes/functions.php:3257 includes/functions.php:3266
1496
  msgid "impression"
1497
  msgid_plural "impressions"
1498
  msgstr[0] "prikaz"
@@ -1500,7 +1520,7 @@ msgstr[1] "prikaza"
1500
  msgstr[2] "prikazi"
1501
  msgstr[3] "prikazov"
1502
 
1503
- #: includes/functions-check-now.php:2608 includes/functions.php:3180
1504
  msgid ""
1505
  "Maximum number of impressions per time period. Empty means no time limit."
1506
  msgstr ""
@@ -1513,14 +1533,14 @@ msgstr ""
1513
  #. Translators: Max n clicks per x days
1514
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1515
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1516
- #: includes/functions.php:3186 includes/functions.php:3215
1517
- #: includes/functions.php:3270 includes/functions.php:3297
1518
- #: includes/functions.php:5015
1519
  msgid "per"
1520
  msgstr "na"
1521
 
1522
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1523
- #: includes/functions.php:3187 includes/functions.php:3216
1524
  msgid "Time period in days. Empty means no time limit."
1525
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1526
 
@@ -1532,10 +1552,10 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1532
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1533
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1534
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1535
- #: includes/functions.php:3189 includes/functions.php:3218
1536
- #: includes/functions.php:3273 includes/functions.php:3300
1537
- #: includes/functions.php:3432 includes/functions.php:5018
1538
- #: includes/functions.php:5028 strings.php:219 strings.php:220 strings.php:221
1539
  #: strings.php:222 strings.php:223 strings.php:224
1540
  msgid "day"
1541
  msgid_plural "days"
@@ -1544,7 +1564,7 @@ msgstr[1] "dni"
1544
  msgstr[2] "dni"
1545
  msgstr[3] "dni"
1546
 
1547
- #: includes/functions-check-now.php:2627 includes/functions.php:3199
1548
  msgid ""
1549
  "Maximum number of clicks on this block. Empty means no general click limit."
1550
  msgstr ""
@@ -1557,10 +1577,10 @@ msgstr ""
1557
  #. Translators: Max n clicks per x days
1558
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1559
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1560
- #: includes/functions-check-now.php:4578 includes/functions.php:3201
1561
- #: includes/functions.php:3211 includes/functions.php:3284
1562
- #: includes/functions.php:3293 includes/functions.php:5015
1563
- #: includes/functions.php:6946
1564
  msgid "click"
1565
  msgid_plural "clicks"
1566
  msgstr[0] "klik"
@@ -1568,18 +1588,18 @@ msgstr[1] "klika"
1568
  msgstr[2] "kliki"
1569
  msgstr[3] "klikov"
1570
 
1571
- #: includes/functions-check-now.php:2637 includes/functions.php:3209
1572
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1573
  msgstr ""
1574
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1575
  "omejitev."
1576
 
1577
- #: includes/functions-check-now.php:2662 includes/functions.php:3234
1578
  msgid "Individual visitor limits"
1579
  msgstr "Omejitve posameznih obiskovalcev"
1580
 
1581
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1582
- #: includes/functions.php:3238 includes/functions.php:3240
1583
  msgid ""
1584
  "When specified number of clicks on this block for a visitor will be reached "
1585
  "in the specified time period, all blocks that have click fraud protection "
@@ -1591,11 +1611,11 @@ msgstr ""
1591
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1592
  "pred goljufijo s kliki."
1593
 
1594
- #: includes/functions-check-now.php:2668 includes/functions.php:3240
1595
  msgid "Trigger click fraud protection"
1596
  msgstr "Sproži zaščito pred goljufijo s kliki"
1597
 
1598
- #: includes/functions-check-now.php:2683 includes/functions.php:3255
1599
  msgid ""
1600
  "Maximum number of impressions of this block for each visitor. Empty means no "
1601
  "impression limit."
@@ -1603,7 +1623,7 @@ msgstr ""
1603
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1604
  "pomeni brez omejitev prikazov."
1605
 
1606
- #: includes/functions-check-now.php:2692 includes/functions.php:3264
1607
  msgid ""
1608
  "Maximum number of impressions per time period for each visitor. Empty means "
1609
  "no impression limit per time period for visitors."
@@ -1612,8 +1632,8 @@ msgstr ""
1612
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1613
 
1614
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1615
- #: includes/functions.php:3271 includes/functions.php:3298
1616
- #: includes/functions.php:5018
1617
  msgid ""
1618
  "Time period in days. Use decimal value (with decimal point) for shorter "
1619
  "periods. Empty means no time limit."
@@ -1621,7 +1641,7 @@ msgstr ""
1621
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1622
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1623
 
1624
- #: includes/functions-check-now.php:2710 includes/functions.php:3282
1625
  msgid ""
1626
  "Maximum number of clicks on this block for each visitor. Empty means no "
1627
  "click limit."
@@ -1629,8 +1649,8 @@ msgstr ""
1629
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1630
  "brez omejitev klikov."
1631
 
1632
- #: includes/functions-check-now.php:2719 includes/functions.php:3291
1633
- #: includes/functions.php:5015
1634
  msgid ""
1635
  "Maximum number of clicks per time period for each visitor. Empty means no "
1636
  "click limit per time period for visitors."
@@ -1638,33 +1658,33 @@ msgstr ""
1638
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1639
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1640
 
1641
- #: includes/functions-check-now.php:2745 includes/functions.php:3341
1642
  msgid "When ad blocking is detected"
1643
  msgstr "Ko je blokiranje oglasov zaznano"
1644
 
1645
- #: includes/functions-check-now.php:2754 includes/functions.php:3350
1646
  msgid "replacement"
1647
  msgstr "nadomestek"
1648
 
1649
- #: includes/functions-check-now.php:2755 includes/functions.php:3351
1650
  msgid "Block to be shown when ad blocking is detected"
1651
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1652
 
1653
- #: includes/functions-check-now.php:2756 includes/functions.php:3352
1654
  msgctxt "replacement"
1655
  msgid "None"
1656
  msgstr "Noben"
1657
 
1658
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1659
- #: includes/functions.php:3369 includes/functions.php:8329
1660
  msgid "Close button"
1661
  msgstr "Gumb Zapri"
1662
 
1663
- #: includes/functions-check-now.php:2825 includes/functions.php:3423
1664
  msgid "Auto close after"
1665
  msgstr "Ssamodejno zapri po"
1666
 
1667
- #: includes/functions-check-now.php:2826 includes/functions.php:3424
1668
  msgid ""
1669
  "Time in seconds in which the ad will automatically close. Leave empty to "
1670
  "disable auto closing."
@@ -1673,11 +1693,11 @@ msgstr ""
1673
  "izključitev samodejnega zapiranja."
1674
 
1675
  #. Translators: Don't show for x days
1676
- #: includes/functions-check-now.php:2831 includes/functions.php:3429
1677
  msgid "Don't show for"
1678
  msgstr "Ne prikaži"
1679
 
1680
- #: includes/functions-check-now.php:2832 includes/functions.php:3430
1681
  msgid ""
1682
  "Time in days in which closed ad will not be shown again. Use decimal value "
1683
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1688,12 +1708,12 @@ msgstr ""
1688
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1689
 
1690
  #. Translators: Delay showing for x pageviews
1691
- #: includes/functions-check-now.php:2852 includes/functions.php:3452
1692
- #: includes/functions.php:3458
1693
  msgid "Delay showing for"
1694
  msgstr "Zakasni prikaz za"
1695
 
1696
- #: includes/functions-check-now.php:2853 includes/functions.php:3459
1697
  msgid ""
1698
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1699
  "empty to insert the code for the first pageview."
@@ -1704,7 +1724,7 @@ msgstr ""
1704
  #. Translators: Delay showing for x pageviews
1705
  #. Translators: Show every x pageviews
1706
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1707
- #: includes/functions.php:3461 includes/functions.php:3468
1708
  msgid "pageview"
1709
  msgid_plural "pageviews"
1710
  msgstr[0] "ogled strani"
@@ -1713,7 +1733,7 @@ msgstr[2] "oglede strani"
1713
  msgstr[3] "ogledov strani"
1714
 
1715
  #. Translators: Show every x pageviews
1716
- #: includes/functions-check-now.php:2859 includes/functions.php:3465
1717
  msgid "Show every"
1718
  msgid_plural "Show every"
1719
  msgstr[0] "Prikaži vsak"
@@ -1721,7 +1741,7 @@ msgstr[1] "Prikaži vsaka"
1721
  msgstr[2] "Prikaži vsake"
1722
  msgstr[3] "Prikaži vsakih"
1723
 
1724
- #: includes/functions-check-now.php:2860 includes/functions.php:3466
1725
  msgid ""
1726
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1727
  "for every pageview."
@@ -1729,29 +1749,29 @@ msgstr ""
1729
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1730
  "vstavljanje kode pri vsakem ogledu strani."
1731
 
1732
- #: includes/functions-check-now.php:2879 includes/functions.php:3491
1733
- #: settings.php:907
1734
  msgid "Lazy loading"
1735
  msgstr "Leno nalaganje"
1736
 
1737
  #. Translators: %s MaxMind
1738
- #: includes/functions-check-now.php:2936 includes/functions.php:4669
1739
  msgid "This product includes GeoLite2 data created by %s"
1740
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1741
 
1742
- #: includes/functions-check-now.php:2947 includes/functions.php:4682
1743
  msgid "IP geolocation database"
1744
  msgstr "Podatkovna baza za IP geolokacijo"
1745
 
1746
- #: includes/functions-check-now.php:2950 includes/functions.php:4685
1747
  msgid "Select IP geolocation database."
1748
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1749
 
1750
- #: includes/functions-check-now.php:2961 includes/functions.php:4696
1751
  msgid "Automatic database updates"
1752
  msgstr "Samodejna posodobitev podatkovne baze"
1753
 
1754
- #: includes/functions-check-now.php:2964 includes/functions.php:4699
1755
  msgid ""
1756
  "Automatically download and update free GeoLite2 IP geolocation database by "
1757
  "MaxMind"
@@ -1759,11 +1779,11 @@ msgstr ""
1759
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1760
  "podatkovno bazo MaxMind"
1761
 
1762
- #: includes/functions-check-now.php:2972 includes/functions.php:4716
1763
  msgid "Database"
1764
  msgstr "Podatkovna baza"
1765
 
1766
- #: includes/functions-check-now.php:2975 includes/functions.php:4719
1767
  msgid ""
1768
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1769
  msgstr ""
@@ -1771,15 +1791,15 @@ msgstr ""
1771
  "podatkovne baze"
1772
 
1773
  #. translators: %d: group number
1774
- #: includes/functions-check-now.php:2993 includes/functions.php:4737
1775
  msgid "Group %d"
1776
  msgstr "Skupina %d"
1777
 
1778
- #: includes/functions-check-now.php:2999 includes/functions.php:4743
1779
  msgid "countries"
1780
  msgstr "države"
1781
 
1782
- #: includes/functions-check-now.php:3044 includes/functions.php:4788
1783
  msgid ""
1784
  "Enable impression and click tracking. You also need to enable tracking for "
1785
  "each block you want to track."
@@ -1791,29 +1811,29 @@ msgstr ""
1791
  msgid "Generate report"
1792
  msgstr "Generiraj poročilo"
1793
 
1794
- #: includes/functions-check-now.php:3059 includes/functions.php:4807
1795
  msgid "Impression and Click Tracking"
1796
  msgstr "Sledenje Prikazov in Klikov"
1797
 
1798
- #: includes/functions-check-now.php:3060 includes/functions.php:4808
1799
- #: settings.php:2906
1800
  msgctxt "ad blocking detection"
1801
  msgid "NOT ENABLED"
1802
  msgstr "NI OMOGOČENO"
1803
 
1804
- #: includes/functions-check-now.php:3076 includes/functions.php:4824
1805
  msgid "Internal"
1806
  msgstr "Notranje"
1807
 
1808
- #: includes/functions-check-now.php:3080 includes/functions.php:4828
1809
  msgid "Track impressions and clicks with internal tracking and statistics"
1810
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1811
 
1812
- #: includes/functions-check-now.php:3085 includes/functions.php:4833
1813
  msgid "External"
1814
  msgstr "Zunanje"
1815
 
1816
- #: includes/functions-check-now.php:3089 includes/functions.php:4837
1817
  msgid ""
1818
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1819
  "code installed)"
@@ -1821,27 +1841,27 @@ msgstr ""
1821
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1822
  "kodo za sledenje)"
1823
 
1824
- #: includes/functions-check-now.php:3094 includes/functions.php:4842
1825
  msgid "Track Pageviews"
1826
  msgstr "Sledi Ogledom Strani"
1827
 
1828
- #: includes/functions-check-now.php:3100 includes/functions.php:4848
1829
  msgid "Track Pageviews by Device (as configured for viewports)"
1830
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1831
 
1832
- #: includes/functions-check-now.php:3110 includes/functions.php:4858
1833
  msgid "Track for Logged in Users"
1834
  msgstr "Sledi za Prijavljene Upor."
1835
 
1836
- #: includes/functions-check-now.php:3116 includes/functions.php:4864
1837
  msgid "Track impressions and clicks from logged in users"
1838
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1839
 
1840
- #: includes/functions-check-now.php:3126 includes/functions.php:4874
1841
  msgid "Click Detection"
1842
  msgstr "Zaznavanje klikov"
1843
 
1844
- #: includes/functions-check-now.php:3132 includes/functions.php:4880
1845
  msgid ""
1846
  "Standard method detects clicks only on banners with links, Advanced method "
1847
  "can detect clicks on any kind of ads, but it is slightly less accurate"
@@ -1849,19 +1869,19 @@ msgstr ""
1849
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1850
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1851
 
1852
- #: includes/functions-check-now.php:3151 includes/functions.php:5001
1853
  msgid "Click fraud protection"
1854
  msgstr "Zaščita pred goljufijo s kliki"
1855
 
1856
- #: includes/functions-check-now.php:3155 includes/functions.php:5005
1857
  msgid "Globally enable click fraud protection for selected blocks."
1858
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1859
 
1860
- #: includes/functions-check-now.php:3161 includes/functions.php:5025
1861
  msgid "Protection time"
1862
  msgstr "Čas zaščite"
1863
 
1864
- #: includes/functions-check-now.php:3162 includes/functions.php:5028
1865
  msgid ""
1866
  "Time period in days in which blocks with enabled click fraud protection will "
1867
  "be hidden. Use decimal value (with decimal point) for shorter periods."
@@ -1870,7 +1890,7 @@ msgstr ""
1870
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1871
  "za krajša obdobja."
1872
 
1873
- #: includes/functions-check-now.php:3181 includes/functions.php:4908
1874
  msgid "Report header image"
1875
  msgstr "Slika v glavi poročila"
1876
 
@@ -1884,16 +1904,16 @@ msgstr ""
1884
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1885
  "ponastavitev na privzeto sliko."
1886
 
1887
- #: includes/functions-check-now.php:3185 includes/functions.php:4912
1888
  #: strings.php:255
1889
  msgid "Select or upload header image"
1890
  msgstr "Izberi ali naloži sliko glave"
1891
 
1892
- #: includes/functions-check-now.php:3190 includes/functions.php:4917
1893
  msgid "Report header title"
1894
  msgstr "Naslov v glavi poročila"
1895
 
1896
- #: includes/functions-check-now.php:3193 includes/functions.php:4920
1897
  msgid ""
1898
  "Title to be displayed in the header of the statistics report. Text or HTML "
1899
  "code, clear to reset to default text."
@@ -1901,11 +1921,11 @@ msgstr ""
1901
  "Naslov, 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:3198 includes/functions.php:4925
1905
  msgid "Report header description"
1906
  msgstr "Opis v glavi poročila"
1907
 
1908
- #: includes/functions-check-now.php:3201 includes/functions.php:4928
1909
  msgid ""
1910
  "Description to be displayed in the header of the statistics report. Text or "
1911
  "HTML code, clear to reset to default text."
@@ -1913,11 +1933,11 @@ msgstr ""
1913
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1914
  "pobrišite za ponastavitev na privzeto besedilo."
1915
 
1916
- #: includes/functions-check-now.php:3206 includes/functions.php:4933
1917
  msgid "Report footer"
1918
  msgstr "Noga poročila"
1919
 
1920
- #: includes/functions-check-now.php:3209 includes/functions.php:4936
1921
  msgid ""
1922
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1923
  "to default text."
@@ -1925,118 +1945,118 @@ msgstr ""
1925
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1926
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1927
 
1928
- #: includes/functions-check-now.php:3214 includes/functions.php:4941
1929
  msgid "Public report key"
1930
  msgstr "Ključ za javno poročilo"
1931
 
1932
- #: includes/functions-check-now.php:3217 includes/functions.php:4944
1933
  msgid "String to generate unique report IDs. Clear to reset to default value."
1934
  msgstr ""
1935
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1936
  "privzeto vrednost."
1937
 
1938
- #: includes/functions-check-now.php:3249 includes/functions.php:5085
1939
  msgid "Are you sure you want to clear all exceptions for block"
1940
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1941
 
1942
- #: includes/functions-check-now.php:3250 includes/functions.php:5086
1943
  msgid "Clear all exceptions for block"
1944
  msgstr "Pobriši vse izjeme za blok"
1945
 
1946
- #: includes/functions-check-now.php:3257 includes/functions.php:5099
1947
  msgid "Are you sure you want to clear all exceptions?"
1948
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1949
 
1950
- #: includes/functions-check-now.php:3257 includes/functions.php:5099
1951
  msgid "Clear all exceptions for all blocks"
1952
  msgstr "Pobriši vse izjeme za vse bloke"
1953
 
1954
- #: includes/functions-check-now.php:3262 includes/functions.php:5106
1955
- #: settings.php:4064 settings.php:4569
1956
  msgid "Type"
1957
  msgstr "Vrsta"
1958
 
1959
- #: includes/functions-check-now.php:3280 includes/functions.php:5125
1960
- #: includes/functions.php:5126
1961
  msgid "View"
1962
  msgstr "Poglej"
1963
 
1964
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1965
- #: includes/functions-check-now.php:3292 includes/functions.php:5127
1966
- #: includes/functions.php:5141 includes/functions.php:5145
1967
- #: includes/placeholders.php:351 includes/preview.php:2711 settings.php:1420
1968
- #: settings.php:3819
1969
  msgid "Edit"
1970
  msgstr "Uredi"
1971
 
1972
- #: includes/functions-check-now.php:3311 includes/functions.php:5173
1973
  msgid "Are you sure you want to clear all exceptions for"
1974
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1975
 
1976
- #: includes/functions-check-now.php:3312 includes/functions.php:5174
1977
  msgid "Clear all exceptions for"
1978
  msgstr "Pobriši vse izjeme za"
1979
 
1980
- #: includes/functions-check-now.php:3325 includes/functions.php:5190
1981
  msgid "No exceptions"
1982
  msgstr "Brez izjem"
1983
 
1984
  #. translators: %s: Ad Inserter Pro
1985
- #: includes/functions-check-now.php:3336 includes/functions.php:5201
1986
  msgid "%s options for network blogs"
1987
  msgstr "%s izbire za omrežne bloge"
1988
 
1989
  #. translators: %s: Ad Inserter Pro
1990
- #: includes/functions-check-now.php:3341 includes/functions.php:5206
1991
  msgid "Enable %s widgets for sub-sites"
1992
  msgstr "Omogoči %s gradnik za pod-spletišča"
1993
 
1994
- #: includes/functions-check-now.php:3341 includes/functions.php:5206
1995
  msgid "Widgets"
1996
  msgstr "Gradniki"
1997
 
1998
- #: includes/functions-check-now.php:3346 includes/functions.php:5211
1999
  msgid "Enable PHP code processing for sub-sites"
2000
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
2001
 
2002
- #: includes/functions-check-now.php:3346 includes/functions.php:5211
2003
  msgid "PHP Processing"
2004
  msgstr "PHP Procesiranje"
2005
 
2006
  #. translators: %s: Ad Inserter Pro
2007
- #: includes/functions-check-now.php:3351 includes/functions.php:5216
2008
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2009
  msgstr ""
2010
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2011
 
2012
- #: includes/functions-check-now.php:3351 includes/functions.php:5216
2013
  msgid "Post/Page exceptions"
2014
  msgstr "Izjeme prispevkov/strani"
2015
 
2016
  #. translators: %s: Ad Inserter Pro
2017
- #: includes/functions-check-now.php:3356 includes/functions.php:5221
2018
  msgid "Enable %s settings page for sub-sites"
2019
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2020
 
2021
- #: includes/functions-check-now.php:3356 includes/functions.php:5221
2022
  msgid "Settings page"
2023
  msgstr "Stran z nastavitvami"
2024
 
2025
  #. translators: %s: Ad Inserter Pro
2026
- #: includes/functions-check-now.php:3361 includes/functions.php:5226
2027
  msgid "Enable %s settings of main site to be used for all blogs"
2028
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2029
 
2030
- #: includes/functions-check-now.php:3361 includes/functions.php:5226
2031
  msgid "Main site settings used for all blogs"
2032
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2033
 
2034
- #: includes/functions-check-now.php:3372 includes/functions.php:5244
2035
- #: settings.php:2905
2036
  msgid "Ad Blocking Detection"
2037
  msgstr "Zaznavanje Blokiranja Oglasov"
2038
 
2039
- #: includes/functions-check-now.php:3378 includes/functions.php:5250
2040
  msgid ""
2041
  "Standard method is reliable but should be used only if Advanced method does "
2042
  "not work. Advanced method recreates files used for detection with random "
@@ -2049,78 +2069,78 @@ msgstr ""
2049
  "dostopna"
2050
 
2051
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
2052
- #: includes/functions-check-now.php:4140 includes/functions.php:6237
2053
- #: includes/functions.php:6345 includes/functions.php:6370
2054
  msgid "AD BLOCKING"
2055
  msgstr "BLOKIRANJE OGLASOV"
2056
 
2057
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
2058
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
2059
- #: includes/functions.php:6238 includes/functions.php:6281
2060
- #: includes/functions.php:6339 includes/functions.php:6371
2061
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2062
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2063
 
2064
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
2065
- #: includes/functions-check-now.php:4147 includes/functions.php:6241
2066
- #: includes/functions.php:6338 includes/functions.php:6377
2067
  msgid "NO AD BLOCKING"
2068
  msgstr "NI BLOKIRANJA OGLASOV"
2069
 
2070
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
2071
- #: includes/functions.php:6280 includes/functions.php:6287
2072
  msgid "AD BLOCKING REPLACEMENT"
2073
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2074
 
2075
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
2076
- #: includes/functions.php:6459 includes/functions.php:6670
2077
  msgid "Pageviews"
2078
  msgstr "Ogledi strani"
2079
 
2080
- #: includes/functions-check-now.php:4366 includes/functions.php:6605
2081
  msgctxt "Version"
2082
  msgid "Unknown"
2083
  msgstr "Neznana"
2084
 
2085
- #: includes/functions-check-now.php:4366 includes/functions.php:6605
2086
  msgctxt "Times"
2087
  msgid "DISPLAYED"
2088
  msgstr "PRIKAZANO"
2089
 
2090
- #: includes/functions-check-now.php:4366 includes/functions.php:6605
2091
  msgid "No version"
2092
  msgstr "Brez različice"
2093
 
2094
- #: includes/functions-check-now.php:4367 includes/functions.php:6606
2095
  msgctxt "Times"
2096
  msgid "BLOCKED"
2097
  msgstr "BLOKIRANO"
2098
 
2099
- #: includes/functions-check-now.php:4429 includes/functions.php:6670
2100
  msgid "Impressions"
2101
  msgstr "Prikazi"
2102
 
2103
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
2104
- #: includes/functions-check-now.php:4486 includes/functions.php:6671
2105
- #: includes/functions.php:6672 includes/functions.php:6854
2106
  msgid "Clicks"
2107
  msgstr "Kliki"
2108
 
2109
- #: includes/functions-check-now.php:4431 includes/functions.php:6672
2110
  msgid "events"
2111
  msgstr "dogodki"
2112
 
2113
- #: includes/functions-check-now.php:4432 includes/functions.php:6673
2114
  msgid "Ad Blocking Share"
2115
  msgstr "Delež blokiranja oglasov"
2116
 
2117
  #. translators: CTR as Click Through Rate
2118
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
2119
- #: includes/functions.php:6673 includes/functions.php:6860
2120
  msgid "CTR"
2121
  msgstr "CTR"
2122
 
2123
- #: includes/functions-check-now.php:4574 includes/functions.php:6942
2124
  msgid "pageviews"
2125
  msgid_plural "pageviews"
2126
  msgstr[0] "ogled strani"
@@ -2128,7 +2148,7 @@ msgstr[1] "ogleda strani"
2128
  msgstr[2] "oglede strani"
2129
  msgstr[3] "ogledov strani"
2130
 
2131
- #: includes/functions-check-now.php:4574 includes/functions.php:6942
2132
  msgid "impressions"
2133
  msgid_plural "impressions"
2134
  msgstr[0] "prikaz"
@@ -2136,7 +2156,7 @@ msgstr[1] "prikaza"
2136
  msgstr[2] "prikazi"
2137
  msgstr[3] "prikazov"
2138
 
2139
- #: includes/functions-check-now.php:4578 includes/functions.php:6946
2140
  msgid "event"
2141
  msgid_plural "events"
2142
  msgstr[0] "dogodek"
@@ -2144,74 +2164,86 @@ msgstr[1] "dogodka"
2144
  msgstr[2] "dogodki"
2145
  msgstr[3] "dogodkov"
2146
 
2147
- #: includes/functions-check-now.php:4673 includes/functions.php:7041
2148
  msgctxt "Pageviews / Impressions"
2149
  msgid "Average"
2150
  msgstr "Povprečni"
2151
 
2152
- #: includes/functions-check-now.php:4694 includes/functions.php:7062
2153
  msgctxt "Ad Blocking / Clicks"
2154
  msgid "Average"
2155
  msgstr "Povprečno"
2156
 
2157
- #: includes/functions-check-now.php:4718 includes/functions.php:7086
2158
  msgctxt "Ad Blocking Share / CTR"
2159
  msgid "Average"
2160
  msgstr "Povprečni"
2161
 
2162
  #. Translators: %s: Ad Inserter Pro
2163
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
2164
- #: includes/functions-check-now.php:5335 includes/functions.php:7360
2165
- #: includes/functions.php:7457 includes/functions.php:8030 strings.php:204
2166
  msgid "%s Report"
2167
  msgstr "%s Poročilo"
2168
 
2169
- #: includes/functions-check-now.php:5241 includes/functions.php:7935
2170
  msgid "for last month"
2171
  msgstr "za zadnji mesec"
2172
 
2173
- #: includes/functions-check-now.php:5246 includes/functions.php:7940
2174
  msgid "for this month"
2175
  msgstr "za ta mesec"
2176
 
2177
- #: includes/functions-check-now.php:5251 includes/functions.php:7945
2178
  msgid "for this year"
2179
  msgstr "za to leto"
2180
 
2181
- #: includes/functions-check-now.php:5256 includes/functions.php:7950
2182
  msgid "for the last 15 days"
2183
  msgstr "za zadnjih 15 dni"
2184
 
2185
- #: includes/functions-check-now.php:5261 includes/functions.php:7955
2186
  msgid "for the last 30 days"
2187
  msgstr "za zadnjih 30 dni"
2188
 
2189
- #: includes/functions-check-now.php:5266 includes/functions.php:7960
2190
  msgid "for the last 90 days"
2191
  msgstr "za zadnjih 90 dni"
2192
 
2193
- #: includes/functions-check-now.php:5271 includes/functions.php:7965
2194
  msgid "for the last 180 days"
2195
  msgstr "za zadnjih 180 dni"
2196
 
2197
- #: includes/functions-check-now.php:5276 includes/functions.php:7970
2198
  msgid "for the last 365 days"
2199
  msgstr "za zadnjih 365 dni"
2200
 
2201
- #: includes/functions.php:542 includes/functions.php:4795
 
 
 
 
 
 
 
 
 
 
 
 
2202
  msgid "Generate CSV report"
2203
  msgstr "Generiraj CSV poročilo"
2204
 
2205
  #. translators: %s: Ad Inserter Pro
2206
- #: includes/functions.php:615
2207
  msgid "Invalid %s version. Continue?"
2208
  msgstr "Neveljavna izdaja %s. Nadaljujem?"
2209
 
2210
- #: includes/functions.php:787
2211
  msgid "Show"
2212
  msgstr "Pokaži"
2213
 
2214
- #: includes/functions.php:799 includes/functions.php:826
2215
  msgid ""
2216
  "Trigger value: page scroll in %, page scroll in px or element with selector "
2217
  "(#id or .class) scrolls in or out of screen"
@@ -2219,69 +2251,105 @@ msgstr ""
2219
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
2220
  "selektorjem (#id ali .razred) se pomakne izven zaslona"
2221
 
2222
- #: includes/functions.php:813
2223
  msgid "Hide"
2224
  msgstr "Skrij"
2225
 
2226
- #: includes/functions.php:844 includes/preview.php:2653
2227
  msgid "Background"
2228
  msgstr "Ozadje"
2229
 
2230
  #. translators: %s HTML body tag
2231
- #: includes/functions.php:851
2232
  msgid "Set %s background"
2233
  msgstr "Nastavi ozadje za %s"
2234
 
2235
- #: includes/functions.php:864
2236
  msgid "Image to be used for the background"
2237
  msgstr "Slika, ki bo uporabljena za ozadje"
2238
 
2239
- #: includes/functions.php:869
2240
  msgid "Color"
2241
  msgstr "Barva"
2242
 
2243
- #: includes/functions.php:870 includes/preview.php:2472
2244
  msgid "Color to be used for the background"
2245
  msgstr "Barva, ki bo uporabljena za ozadje"
2246
 
2247
- #: includes/functions.php:873 includes/preview.php:2477
2248
  msgid "Image size"
2249
  msgstr "Velikost slike"
2250
 
2251
- #: includes/functions.php:883
2252
  msgid "Repeat"
2253
  msgstr "Ponavljanje"
2254
 
2255
- #: includes/functions.php:896
2256
  msgid "Select image"
2257
  msgstr "Izberi sliko"
2258
 
2259
- #: includes/functions.php:1130 includes/functions.php:1158 settings.php:1807
2260
- #: settings.php:1830 settings.php:1853 settings.php:1876 settings.php:1899
2261
- #: settings.php:1922 settings.php:1945 settings.php:1967 settings.php:1989
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2262
  msgid "Click to select black or white list"
2263
  msgstr "Klikni za za izbor črnega ali belega seznama"
2264
 
2265
  #. translators: %s: Ad Inserter Pro
2266
- #: includes/functions.php:1792
2267
  msgid "Invalid %s version."
2268
  msgstr "Neveljavna izdaja %s."
2269
 
2270
- #: includes/functions.php:1793
2271
  msgid "Check license"
2272
  msgstr "Preverite licenco"
2273
 
2274
- #: includes/functions.php:1808
2275
  msgid "License"
2276
  msgstr "Licenca"
2277
 
2278
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2279
- #: includes/functions.php:2153
2280
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2281
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2282
 
2283
  #. Translators: %s: HTML tags
2284
- #: includes/functions.php:2206
2285
  msgid ""
2286
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2287
  "account %s and create license key."
@@ -2289,51 +2357,51 @@ msgstr ""
2289
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2290
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2291
 
2292
- #: includes/functions.php:2968
2293
  msgid "Start date"
2294
  msgstr "Začetni datum"
2295
 
2296
- #: includes/functions.php:2968
2297
  msgid "Enter date in format yyyy-mm-dd"
2298
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2299
 
2300
- #: includes/functions.php:2968
2301
  msgid "empty means every day as defined by hours and days in week"
2302
  msgstr "prazno pomeni vsak dan kot določeno z urami in dnevi v tednu"
2303
 
2304
- #: includes/functions.php:2969
2305
  msgid "Start time"
2306
  msgstr "Začetni čas"
2307
 
2308
- #: includes/functions.php:2969
2309
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2310
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2311
 
2312
- #: includes/functions.php:2971
2313
  msgid "End date"
2314
  msgstr "Končni datum"
2315
 
2316
- #: includes/functions.php:2972
2317
  msgid "End time"
2318
  msgstr "Končni čas"
2319
 
2320
- #: includes/functions.php:2975
2321
  msgid "Select wanted days in week"
2322
  msgstr "Izberite želene dneve v tednu"
2323
 
2324
- #: includes/functions.php:3315
2325
  msgid "Fallback"
2326
  msgstr "Rezerva"
2327
 
2328
- #: includes/functions.php:3316
2329
  msgid "Block to be used when a limit is reached"
2330
  msgstr "Blok, ki naj bo prikazan, ko je dosežena meja"
2331
 
2332
- #: includes/functions.php:3340
2333
  msgid "Ad blocking detection is disabled"
2334
  msgstr "Zaznavanje blokiranja oglasov je onemogočeno"
2335
 
2336
- #: includes/functions.php:3453
2337
  msgid ""
2338
  "Time in ms before the code is inserted (and ad displayed). Leave empty to "
2339
  "insert the code without any additional delay."
@@ -2341,19 +2409,19 @@ msgstr ""
2341
  "Čas v ms preden je koda vstavljena (in oglas prikazan). Pustite prazno za "
2342
  "vstavljanje kode brez dodatne zakasnitve."
2343
 
2344
- #: includes/functions.php:3496
2345
  msgid "Wait for user interaction"
2346
  msgstr "Čakaj na interakcijo uporabnika"
2347
 
2348
- #: includes/functions.php:3501
2349
  msgid "Protected"
2350
  msgstr "Zaščiten"
2351
 
2352
- #: includes/functions.php:3504
2353
  msgid "Manual loading"
2354
  msgstr "Ročno nalaganje"
2355
 
2356
- #: includes/functions.php:3595
2357
  msgid "IP address blocked"
2358
  msgid_plural "IP addresses blocked"
2359
  msgstr[0] "blokiran IP naslov"
@@ -2361,148 +2429,148 @@ msgstr[1] "blokirana IP naslova"
2361
  msgstr[2] "blokirani IP naslovi"
2362
  msgstr[3] "blokiranih IP naslovov"
2363
 
2364
- #: includes/functions.php:3598 includes/functions.php:3647
2365
  msgid "No IP address blocked"
2366
  msgstr "Noben IP naslov ni blokiran"
2367
 
2368
- #: includes/functions.php:3660
2369
  msgid "Blocked IP address"
2370
  msgstr "Blokirani IP naslovi"
2371
 
2372
- #: includes/functions.php:3660
2373
  msgid "Country"
2374
  msgstr "Država"
2375
 
2376
- #: includes/functions.php:3660
2377
  msgid "Time to expiration"
2378
  msgstr "Čas do poteka"
2379
 
2380
- #: includes/functions.php:3662 strings.php:226
2381
  msgid "Delete"
2382
  msgstr "Pobriši"
2383
 
2384
- #: includes/functions.php:3677
2385
  msgid "Delete IP address"
2386
  msgstr "Briši IP naslov"
2387
 
2388
- #: includes/functions.php:4234
2389
  msgid "CONNECTED"
2390
  msgstr "POVEZAN"
2391
 
2392
- #: includes/functions.php:4235
2393
  msgid "Disconnect website"
2394
  msgstr "Razveži spletno mesto"
2395
 
2396
- #: includes/functions.php:4251
2397
  msgid "MANAGED BY"
2398
  msgstr "UPRAVLJAN S STRANI"
2399
 
2400
- #: includes/functions.php:4272
2401
- msgid "Remote managenent"
2402
  msgstr "Oddaljeno upravljanje"
2403
 
2404
- #: includes/functions.php:4276
2405
  msgid "Allow to connect and manage plugin settings"
2406
  msgstr "Dovoli povezavo in upravljanje z nastavitvami vtičnika"
2407
 
2408
- #: includes/functions.php:4278
2409
  msgid "String to allow plugin management. Clear to reset to default value."
2410
  msgstr ""
2411
  "Niz za dovolitev upravjanja z vtičnikom. Pobrišite za ponastavitev na "
2412
  "privzeto vrednost."
2413
 
2414
- #: includes/functions.php:4286
2415
  msgid "Check remote IP address"
2416
  msgstr "Preveri oddaljeni IP naslov"
2417
 
2418
- #: includes/functions.php:4290
2419
  msgid "Check IP address of remote management website"
2420
  msgstr "Preveri IP naslov oddaljenega spletnega mesta za upravljanje"
2421
 
2422
- #: includes/functions.php:4292
2423
  msgid "Allowed IP addresses of remote management websites"
2424
  msgstr "Dovoljeni IP naslovi oddaljenih spletnih mest za upravljanje"
2425
 
2426
  #. Translators: %s: Ad Inserter Pro
2427
- #: includes/functions.php:4315
2428
  msgid "Manage %s on other websites"
2429
  msgstr "Upravljajte %s na drugih spletnih mestih"
2430
 
2431
- #: includes/functions.php:4330
2432
  msgid "Add website"
2433
  msgstr "Dodaj spletno mesto"
2434
 
2435
- #: includes/functions.php:4334
2436
  msgid "Rearrange website order"
2437
  msgstr "Preuredi vrstni red spletnih mest"
2438
 
2439
- #: includes/functions.php:4338
2440
  msgid "Cancel changes"
2441
  msgstr "Prekliči spremembe"
2442
 
2443
- #: includes/functions.php:4342
2444
  msgid "Save changes"
2445
  msgstr "Shrani spremembe"
2446
 
2447
- #: includes/functions.php:4444 includes/functions.php:4447
2448
- #: includes/functions.php:4450 includes/functions.php:4455
2449
  msgid "Invalid data received from"
2450
  msgstr "Prejeti neveljavni podatki od"
2451
 
2452
- #: includes/functions.php:4454 includes/functions.php:4458
2453
  msgid "Error connecting to"
2454
  msgstr "Napaka pri povezovanju na"
2455
 
2456
- #: includes/functions.php:4454
2457
  msgid "No data received"
2458
  msgstr "Nobenih podatkov ni bilo prejetih"
2459
 
2460
- #: includes/functions.php:4499
2461
  msgid "Error saving websites"
2462
  msgstr "Napaka pri shranjevanju spletnih mest"
2463
 
2464
- #: includes/functions.php:4539
2465
  msgid "Can't connect to itself"
2466
  msgstr "Ne morem se povezati nase"
2467
 
2468
- #: includes/functions.php:4590
2469
  msgid "Connect website"
2470
  msgstr "Pveži spletno mesto"
2471
 
2472
- #: includes/functions.php:4594
2473
  msgid "Delete website"
2474
  msgstr "Izbriši spletno mesto"
2475
 
2476
- #: includes/functions.php:4610
2477
  msgid "Key"
2478
  msgstr "Ključ"
2479
 
2480
- #: includes/functions.php:4628
2481
  msgid "Address"
2482
  msgstr "Naslov"
2483
 
2484
- #: includes/functions.php:4641
2485
  msgid "No website configured"
2486
  msgstr "Nobeno spletno mesto ni nastavljeno"
2487
 
2488
- #: includes/functions.php:4642
2489
  msgid "No website matches search keywords"
2490
  msgstr "Nobeno spletno mesto ne ustreza iskalnim ključnim besedam"
2491
 
2492
  #. Translators: %s HTML tags
2493
- #: includes/functions.php:4671
2494
  msgid "Create and manage %s MaxMind license key %s"
2495
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2496
 
2497
- #: includes/functions.php:4707
2498
  msgid "MaxMind license key"
2499
  msgstr "MaxMind licenčni ključ"
2500
 
2501
- #: includes/functions.php:4710
2502
  msgid "Enter license key obtained from MaxMind"
2503
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2504
 
2505
- #: includes/functions.php:4911
2506
  msgid ""
2507
  "Image or logo to be displayed in the header of the statistics report. "
2508
  "Absolute path starting with '/' or relative path to the image file. Clear to "
@@ -2512,11 +2580,11 @@ msgstr ""
2512
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
2513
  "ponastavitev na privzeto sliko."
2514
 
2515
- #: includes/functions.php:4959
2516
  msgid "Event category"
2517
  msgstr "Kategorija dogodka"
2518
 
2519
- #: includes/functions.php:4962
2520
  msgid ""
2521
  "Category name used for external tracking events. You can use tags to get the "
2522
  "event, the number or the name of the block that caused the event."
@@ -2524,11 +2592,11 @@ msgstr ""
2524
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2525
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2526
 
2527
- #: includes/functions.php:4967
2528
  msgid "Event action"
2529
  msgstr "Akcija dogodka"
2530
 
2531
- #: includes/functions.php:4970
2532
  msgid ""
2533
  "Action name used for external tracking events. You can use tags to get the "
2534
  "event, the number or the name of the block that caused the event."
@@ -2536,11 +2604,11 @@ msgstr ""
2536
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2537
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2538
 
2539
- #: includes/functions.php:4975
2540
  msgid "Event label"
2541
  msgstr "Oznaka dogodka"
2542
 
2543
- #: includes/functions.php:4978
2544
  msgid ""
2545
  "Label name used for external tracking events. You can use tags to get the "
2546
  "event, the number or the name of the block that caused the event."
@@ -2548,35 +2616,35 @@ msgstr ""
2548
  "Ime oznake uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2549
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2550
 
2551
- #: includes/functions.php:5011
2552
  msgid "Global visitor limits"
2553
  msgstr "Globalne omejitve obiskovalca"
2554
 
2555
- #: includes/functions.php:5034
2556
  msgid "Block IP address"
2557
  msgstr "Blokiraj IP naslov"
2558
 
2559
- #: includes/functions.php:5039
2560
  msgid "Block visitor's IP address when protection is activated"
2561
  msgstr "Blokiraj obiskovalčev IP naslov, ko je aktivirana zaščita"
2562
 
2563
- #: includes/functions.php:5041
2564
  msgid "Click to show blocked IP addresses"
2565
  msgstr "Kliknite za prikaz blokiranih IP naslovov"
2566
 
2567
  #. translators: %s: Ad Inserter Pro
2568
- #: includes/functions.php:5231
2569
  msgid "Show link to %s settings page for each site on the Sites page"
2570
  msgstr ""
2571
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2572
  "Spletišča"
2573
 
2574
  #. translators: %s: Ad Inserter Pro
2575
- #: includes/functions.php:5231
2576
  msgid "Show link to %s on the Sites page"
2577
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2578
 
2579
- #: includes/functions.php:5273 settings.php:3203
2580
  msgid ""
2581
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2582
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -2591,15 +2659,15 @@ msgstr ""
2591
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
2592
  "vedno omogočeno."
2593
 
2594
- #: includes/functions.php:5275 settings.php:3205
2595
  msgid "Remote debugging"
2596
  msgstr "Oddaljeno razhroščevanje"
2597
 
2598
- #: includes/functions.php:6753
2599
  msgid "Date"
2600
  msgstr "Datum"
2601
 
2602
- #: includes/functions.php:7221 includes/functions.php:7232
2603
  msgid "File %s missing."
2604
  msgstr "Datoteka %s ni najdena."
2605
 
@@ -2627,11 +2695,11 @@ msgstr "Zapri urejevalnik polnila"
2627
  msgid "Placeholder"
2628
  msgstr "Polnilo"
2629
 
2630
- #: includes/placeholders.php:361 settings.php:980 settings.php:4570
2631
  msgid "Size"
2632
  msgstr "Velikost"
2633
 
2634
- #: includes/placeholders.php:377 includes/preview.php:2469
2635
  msgid "Background color"
2636
  msgstr "Barva ozadja"
2637
 
@@ -2720,7 +2788,7 @@ msgstr "Dodaj testni odstavek"
2720
  msgid "Remove dummy paragraph"
2721
  msgstr "Odstrani testni odstavek"
2722
 
2723
- #: includes/preview-adb.php:6 includes/preview.php:2329
2724
  msgid "Use current settings"
2725
  msgstr "Uporabi trenutne nastavitve"
2726
 
@@ -2747,7 +2815,7 @@ msgctxt "Button"
2747
  msgid "Default"
2748
  msgstr "Privzeto"
2749
 
2750
- #: includes/preview-adb.php:9 includes/preview.php:2332
2751
  msgid "Close preview window"
2752
  msgstr "Zapri okno predogleda"
2753
 
@@ -2760,67 +2828,67 @@ msgstr "Prekliči"
2760
  msgid "Ad Blocking Detected Message Preview"
2761
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2762
 
2763
- #: includes/preview-adb.php:360 settings.php:3040
2764
  msgid "Message CSS"
2765
  msgstr "CSS sporočila"
2766
 
2767
- #: includes/preview-adb.php:365 settings.php:3048
2768
  msgid "Overlay CSS"
2769
  msgstr "CSS prevleke"
2770
 
2771
- #: includes/preview.php:265
2772
  msgid "Sticky Code Preview"
2773
  msgstr "Predogled Lepljive Kode"
2774
 
2775
- #: includes/preview.php:265
2776
  msgid "Code Preview"
2777
  msgstr "Predogled Kode"
2778
 
2779
- #: includes/preview.php:2327
2780
  msgid "Highlight inserted code"
2781
  msgstr "Označi vstavljeno kodo"
2782
 
2783
- #: includes/preview.php:2327
2784
  msgid "Highlight"
2785
  msgstr "Označi"
2786
 
2787
- #: includes/preview.php:2330
2788
  msgid "Reset to block settings"
2789
  msgstr "Ponastavi na nastavitve bloka"
2790
 
2791
- #: includes/preview.php:2345
2792
  msgid "AdSense ad unit"
2793
  msgstr "Oglasna enota AdSense"
2794
 
2795
- #: includes/preview.php:2414
2796
  msgid "wrapping div"
2797
  msgstr "div za ovijanje"
2798
 
2799
- #: includes/preview.php:2419 includes/preview.php:2426
2800
  msgid "background"
2801
  msgstr "ozadje"
2802
 
2803
- #: includes/preview.php:2453 includes/preview.php:2665 settings.php:1381
2804
  msgid "Alignment"
2805
  msgstr "Poravnava"
2806
 
2807
- #: includes/preview.php:2490
2808
  msgid "Repeat image"
2809
  msgstr "Ponavljaj sliko"
2810
 
2811
- #: includes/preview.php:2572
2812
  msgid "Horizontal margin"
2813
  msgstr "Vodoravni odmik"
2814
 
2815
- #: includes/preview.php:2624
2816
  msgid "Vertical margin"
2817
  msgstr "Navpični odmik"
2818
 
2819
- #: includes/preview.php:2648
2820
  msgid "Animate"
2821
  msgstr "Animiraj"
2822
 
2823
- #: includes/preview.php:2720
2824
  msgid ""
2825
  "This is a preview of the code between dummy paragraphs. Here you can test "
2826
  "various block alignments, visually edit margin and padding values of the "
@@ -2835,7 +2903,7 @@ msgstr ""
2835
  "označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
2836
  "Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
2837
 
2838
- #: includes/preview.php:2723
2839
  msgid ""
2840
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2841
  "code with the alignment and style as it is set for this block. Highlight "
@@ -2845,7 +2913,7 @@ msgstr ""
2845
  "poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
2846
  "margin območje div-a za ovijanje in območje kode."
2847
 
2848
- #: includes/preview.php:2725
2849
  msgid ""
2850
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2851
  "code was loaded from your AdSense account. The ad block is displayed on a "
@@ -2857,7 +2925,7 @@ msgstr ""
2857
  "testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
2858
  "Označi za označitev bloka."
2859
 
2860
- #: includes/preview.php:2731
2861
  msgid ""
2862
  "You can resize the window (and refresh the page to reload ads) to check "
2863
  "display with different screen widths.\n"
@@ -2869,7 +2937,7 @@ msgstr ""
2869
  "Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
2870
  "prenesle v aktivni blok."
2871
 
2872
- #: includes/preview.php:2733
2873
  msgid ""
2874
  "Please note that the code, block name, alignment and style are taken from "
2875
  "the current block settings (may not be saved).\n"
@@ -2882,9 +2950,9 @@ msgstr ""
2882
  "margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
2883
  "kodo za blok."
2884
 
2885
- #: includes/preview.php:2738 includes/preview.php:2752
2886
- #: includes/preview.php:2762 includes/preview.php:2772
2887
- #: includes/preview.php:2782
2888
  msgid ""
2889
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2890
  "code with it's settings is called a block.\n"
@@ -2908,9 +2976,9 @@ msgstr ""
2908
  "številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
2909
  "številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
2910
 
2911
- #: includes/preview.php:2743 includes/preview.php:2757
2912
- #: includes/preview.php:2767 includes/preview.php:2777
2913
- #: includes/preview.php:2787
2914
  msgid ""
2915
  "Few very important things you need to know in order to insert code and "
2916
  "display some ad:\n"
@@ -2933,7 +3001,7 @@ msgstr ""
2933
  "za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
2934
  "uporabljate posamezne izjeme za prispevke/strani."
2935
 
2936
- #: includes/preview.php:2749
2937
  msgid ""
2938
  "This is a preview of the code for sticky ads. Here you can test various "
2939
  "horizontal and vertical alignments, close button locations, visually edit "
@@ -2968,7 +3036,7 @@ msgstr ""
2968
  msgid "Online documentation"
2969
  msgstr "Spletna Dokumentacija"
2970
 
2971
- #: settings.php:206 settings.php:798 settings.php:2406
2972
  msgid "Show AdSense ad units"
2973
  msgstr "Pokaži oglasne enote AdSense"
2974
 
@@ -2976,7 +3044,7 @@ msgstr "Pokaži oglasne enote AdSense"
2976
  msgid "Edit ads.txt file"
2977
  msgstr "Uredi datoteko ads.txt"
2978
 
2979
- #: settings.php:218 settings.php:1207
2980
  msgid "Check theme for available positions for automatic insertion"
2981
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2982
 
@@ -3108,7 +3176,7 @@ msgstr ""
3108
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
3109
  "prazne za enakomerno porazdelitev deležev različic."
3110
 
3111
- #: settings.php:309 settings.php:2144 settings.php:4483
3112
  msgid "Scheduling"
3113
  msgstr "Urnik"
3114
 
@@ -3132,166 +3200,158 @@ msgstr ""
3132
  msgid "General Settings"
3133
  msgstr "Splošne Nastavitve"
3134
 
3135
- #: settings.php:746 settings.php:2758 settings.php:2825 settings.php:3020
3136
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3137
  msgstr ""
3138
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
3139
 
3140
- #: settings.php:753
3141
  msgid "Toggle tools"
3142
  msgstr "Preklopi orodja"
3143
 
3144
- #: settings.php:761
3145
  msgid "Process PHP code in block"
3146
  msgstr "Procesiraj PHP kodo v bloku"
3147
 
3148
- #: settings.php:768
3149
  msgid "Disable insertion of this block"
3150
  msgstr "Onemogoči vstavljanje tega bloka"
3151
 
3152
- #: settings.php:780
3153
  msgid "Toggle code generator"
3154
  msgstr "Preklopi generator kode"
3155
 
3156
- #: settings.php:784
3157
  msgid "Toggle rotation editor"
3158
  msgstr "Preklopi urejevalnik rotacije"
3159
 
3160
- #: settings.php:788
3161
  msgid "Open visual HTML editor"
3162
  msgstr "Odpri vizualni HTML urejevalnik"
3163
 
3164
- #: settings.php:807
3165
  msgid "Clear block"
3166
  msgstr "Počisti blok"
3167
 
3168
- #: settings.php:812 settings.php:4436
3169
  msgid "Copy block"
3170
  msgstr "Kopiraj blok"
3171
 
3172
- #: settings.php:816
3173
  msgid "Paste name"
3174
  msgstr "Prilepi ime"
3175
 
3176
- #: settings.php:820
3177
  msgid "Paste code"
3178
  msgstr "Prilepi kodo"
3179
 
3180
- #: settings.php:824
3181
  msgid "Paste settings"
3182
  msgstr "Prilepi nastavitve"
3183
 
3184
- #: settings.php:828
3185
  msgid "Paste block (name, code and settings)"
3186
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
3187
 
3188
- #: settings.php:847
3189
  msgid "Rotation groups"
3190
  msgstr "Skupine za rotacijo"
3191
 
3192
- #: settings.php:851
3193
  msgid "Remove option"
3194
  msgstr "Odstrani različico"
3195
 
3196
- #: settings.php:855
3197
  msgid "Add option"
3198
  msgstr "Dodaj različico"
3199
 
3200
- #: settings.php:870
3201
  msgid "Import code"
3202
  msgstr "Uvozi kodo"
3203
 
3204
- #: settings.php:874
3205
  msgid "Generate code"
3206
  msgstr "Generiraj kodo"
3207
 
3208
- #: settings.php:879
3209
  msgid "Banner"
3210
  msgstr "Pasica"
3211
 
3212
- #: settings.php:891
3213
  msgid "Image"
3214
  msgstr "Slika"
3215
 
3216
- #: settings.php:899
3217
  msgid "Alt text"
3218
  msgstr "Besedilo alt"
3219
 
3220
- #: settings.php:913
3221
- msgid "Link"
3222
- msgstr "Povezava"
3223
-
3224
- #: settings.php:924
3225
- msgid "Open link in a new tab"
3226
- msgstr "Odpri povezavo v novem zavihku"
3227
-
3228
- #: settings.php:927
3229
  msgid "Select Image"
3230
  msgstr "Izberi Sliko"
3231
 
3232
- #: settings.php:928
3233
  msgid "Select Placeholder"
3234
  msgstr "Izberi Polnilo"
3235
 
3236
- #: settings.php:940
3237
  msgid "Comment"
3238
  msgstr "Komentar"
3239
 
3240
- #: settings.php:949
3241
  msgctxt "AdSense"
3242
  msgid "Publisher ID"
3243
  msgstr "ID založnika"
3244
 
3245
- #: settings.php:958
3246
  msgctxt "AdSense"
3247
  msgid "Ad Slot ID"
3248
  msgstr "ID mesta"
3249
 
3250
- #: settings.php:967
3251
  msgid "Ad Type"
3252
  msgstr "Vrsta"
3253
 
3254
- #: settings.php:992 settings.php:1133
3255
  msgid "AMP Ad"
3256
  msgstr "AMP Oglas"
3257
 
3258
- #: settings.php:1005 settings.php:1155
3259
  msgid "Block on consent"
3260
  msgstr "Blokiraj ob soglasju"
3261
 
3262
- #: settings.php:1016
3263
  msgid "Show ad units from your AdSense account"
3264
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3265
 
3266
- #: settings.php:1016
3267
  msgid "AdSense ad units"
3268
  msgstr "Oglasne enote AdSense"
3269
 
3270
- #: settings.php:1033
3271
  msgctxt "AdSense"
3272
  msgid "Layout"
3273
  msgstr "Postavitev"
3274
 
3275
- #: settings.php:1042
3276
  msgctxt "AdSense"
3277
  msgid "Layout Key"
3278
  msgstr "Ključ postavitve"
3279
 
3280
- #: settings.php:1052
3281
  msgid "Full width"
3282
  msgstr "Celotna širina"
3283
 
3284
- #: settings.php:1054
3285
  msgctxt "Full width"
3286
  msgid "Enabled"
3287
  msgstr "Omogočena"
3288
 
3289
- #: settings.php:1055
3290
  msgctxt "Full width"
3291
  msgid "Disabled"
3292
  msgstr "Onemogočena"
3293
 
3294
- #: settings.php:1173
3295
  msgid ""
3296
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3297
  "Cookie or Referer (domain)"
@@ -3299,28 +3359,28 @@ msgstr ""
3299
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3300
  "parametrov, Piškotkov ali napotiteljev (domen)"
3301
 
3302
- #: settings.php:1173
3303
  msgid "Lists"
3304
  msgstr "Seznami"
3305
 
3306
- #: settings.php:1174
3307
  msgid "Widget, Shortcode and PHP function call"
3308
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3309
 
3310
- #: settings.php:1174
3311
  msgid "Manual"
3312
  msgstr "Ročno"
3313
 
3314
- #: settings.php:1175
3315
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3316
  msgstr ""
3317
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3318
 
3319
- #: settings.php:1175
3320
  msgid "Devices"
3321
  msgstr "Naprave"
3322
 
3323
- #: settings.php:1176
3324
  msgid ""
3325
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3326
  "feeds), Filter, Scheduling, General tag"
@@ -3328,15 +3388,15 @@ msgstr ""
3328
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3329
  "RSS), Filter, Urnik, Splošna oznaka"
3330
 
3331
- #: settings.php:1176
3332
  msgid "Misc"
3333
  msgstr "Razno"
3334
 
3335
- #: settings.php:1177
3336
  msgid "Preview code and alignment"
3337
  msgstr "Predogled kode in poravnave"
3338
 
3339
- #: settings.php:1180 settings.php:2387
3340
  msgid ""
3341
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3342
  "editor is active before saving settings."
@@ -3344,15 +3404,15 @@ msgstr ""
3344
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3345
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3346
 
3347
- #: settings.php:1193 settings.php:1194
3348
  msgid "Enable insertion on posts"
3349
  msgstr "Omogoči vstavljanje na prispevkih"
3350
 
3351
- #: settings.php:1194 settings.php:3612
3352
  msgid "Posts"
3353
  msgstr "Prispevki"
3354
 
3355
- #: settings.php:1198 settings.php:1199
3356
  msgid ""
3357
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3358
  "page or theme homepage (available positions may depend on hooks used by the "
@@ -3362,43 +3422,43 @@ msgstr ""
3362
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3363
  "lahko odvisni od ročic, ki jih tema uporablja)"
3364
 
3365
- #: settings.php:1199 settings.php:3614
3366
  msgid "Homepage"
3367
  msgstr "Domača stran"
3368
 
3369
- #: settings.php:1203 settings.php:1204
3370
  msgid "Enable insertion on category blog pages (including sub-pages)"
3371
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3372
 
3373
- #: settings.php:1204 settings.php:3615
3374
  msgid "Category pages"
3375
  msgstr "Strani kategorij"
3376
 
3377
- #: settings.php:1214 settings.php:1215
3378
  msgid "Enable insertion on static pages"
3379
  msgstr "Omogoči vstavljanje na statičnih straneh"
3380
 
3381
- #: settings.php:1215 settings.php:3613
3382
  msgid "Static pages"
3383
  msgstr "Statične strani"
3384
 
3385
- #: settings.php:1219 settings.php:1220
3386
  msgid "Enable insertion on search blog pages"
3387
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3388
 
3389
- #: settings.php:1220 settings.php:3617
3390
  msgid "Search pages"
3391
  msgstr "Iskalne strani"
3392
 
3393
- #: settings.php:1224 settings.php:1225
3394
  msgid "Enable insertion on tag or archive blog pages"
3395
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3396
 
3397
- #: settings.php:1228
3398
  msgid "Toggle settings for default insertion and list of individual exceptions"
3399
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3400
 
3401
- #: settings.php:1240
3402
  msgid ""
3403
  "Enable individual post/page exceptions for insertion of this block. They can "
3404
  "be configured on the individual post/page editor page (in the settings below "
@@ -3408,7 +3468,7 @@ msgstr ""
3408
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3409
  "nastavitvah pod urejevalnikom)."
3410
 
3411
- #: settings.php:1241
3412
  msgid ""
3413
  "Enable individual post/page exceptions for insertion of this block. When "
3414
  "enabled they can be configured on the individual post/page editor page (in "
@@ -3418,13 +3478,13 @@ msgstr ""
3418
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3419
  "strani (v nastavitvah pod urejevalnikom)."
3420
 
3421
- #: settings.php:1241
3422
  msgid "Use exceptions for individual posts or pages to change insertion"
3423
  msgstr ""
3424
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3425
 
3426
  #. Translators: Enabled means...
3427
- #: settings.php:1249
3428
  msgid ""
3429
  "means the insertion for this block is enabled by default and disabled for "
3430
  "exceptions."
@@ -3433,7 +3493,7 @@ msgstr ""
3433
  "izjeme."
3434
 
3435
  #. Translators: Disabled means...
3436
- #: settings.php:1250
3437
  msgid ""
3438
  "means the insertion for this block is disabled by default and enabled for "
3439
  "exceptions."
@@ -3441,7 +3501,7 @@ msgstr ""
3441
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3442
  "izjeme."
3443
 
3444
- #: settings.php:1251
3445
  msgid ""
3446
  "When individual post/page exceptions are enabled they can be configured on "
3447
  "the individual post/page editor page (in the settings below the editor)."
@@ -3450,13 +3510,13 @@ msgstr ""
3450
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3451
  "urejevalnikom)."
3452
 
3453
- #: settings.php:1259
3454
  msgid ""
3455
  "No exception for post or static page defined. Block will not be inserted."
3456
  msgstr ""
3457
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3458
 
3459
- #: settings.php:1264
3460
  msgid ""
3461
  "Settings for individual exceptions have been updated. Please check all "
3462
  "blocks that have exceptions and and then save settings."
@@ -3464,25 +3524,25 @@ msgstr ""
3464
  "Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
3465
  "bloke, ki imajo izjeme in potem shranite nastavitve."
3466
 
3467
- #: settings.php:1277
3468
  msgctxt "post"
3469
  msgid "Type"
3470
  msgstr "Vrsta"
3471
 
3472
  #. translators: %d: block number
3473
- #: settings.php:1282
3474
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3475
  msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
3476
 
3477
- #: settings.php:1283
3478
  msgid "Clear listed exceptions for block"
3479
  msgstr "Pobriši izpisane izjeme za blok"
3480
 
3481
- #: settings.php:1312 settings.php:1460 settings.php:2141
3482
  msgid "Insertion"
3483
  msgstr "Vstavljanje"
3484
 
3485
- #: settings.php:1350
3486
  msgid ""
3487
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3488
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3498,7 +3558,7 @@ msgstr ""
3498
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3499
  "število pomeni štetje z nasprotne smeri"
3500
 
3501
- #: settings.php:1351
3502
  msgid ""
3503
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3504
  "means every N images, empty means all images, 0 means random image, value "
@@ -3513,7 +3573,7 @@ msgstr ""
3513
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3514
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3515
 
3516
- #: settings.php:1364
3517
  msgid ""
3518
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3519
  "numbers, %N means every N excerpts, empty means all excerpts"
@@ -3522,7 +3582,7 @@ msgstr ""
3522
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3523
  "izvlečki"
3524
 
3525
- #: settings.php:1365
3526
  msgid ""
3527
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3528
  "numbers, %N means every N posts, empty means all posts"
@@ -3531,7 +3591,7 @@ msgstr ""
3531
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3532
  "prispevki"
3533
 
3534
- #: settings.php:1366
3535
  msgid ""
3536
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3537
  "numbers, %N means every N comments, empty means all comments"
@@ -3540,44 +3600,44 @@ msgstr ""
3540
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3541
  "vsi komentarji"
3542
 
3543
- #: settings.php:1373
3544
  msgid "Toggle paragraph counting settings"
3545
  msgstr "Preklopi nastavitve za štetje odstavkov"
3546
 
3547
- #: settings.php:1374
3548
  msgid "Toggle paragraph clearance settings"
3549
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3550
 
3551
- #: settings.php:1377
3552
  msgid "Toggle insertion filter settings"
3553
  msgstr "Preklopi nastavitve filtra vstavljanja"
3554
 
3555
- #: settings.php:1395
3556
  msgid "Toggle insertion and alignment icons"
3557
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3558
 
3559
- #: settings.php:1409
3560
  msgid "Custom CSS code for the wrapping div"
3561
  msgstr "CSS koda po meri za div za ovijanje"
3562
 
3563
- #: settings.php:1412 settings.php:1413 settings.php:1414 settings.php:1415
3564
- #: settings.php:1416 settings.php:1417
3565
  msgid "CSS code for the wrapping div, click to edit"
3566
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3567
 
3568
- #: settings.php:1430
3569
  msgid "HTML element"
3570
  msgstr "HTML element"
3571
 
3572
- #: settings.php:1443
3573
  msgid "HTML element selector or comma separated list of selectors"
3574
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3575
 
3576
- #: settings.php:1449 settings.php:2916
3577
  msgid "Action"
3578
  msgstr "Akcija"
3579
 
3580
- #: settings.php:1461
3581
  msgid ""
3582
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3583
  "Server-side insertion inserts block when the page is generated but needs "
@@ -3587,76 +3647,76 @@ msgstr ""
3587
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3588
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3589
 
3590
- #: settings.php:1471
3591
  msgid "Wait for"
3592
  msgstr "Čakaj na"
3593
 
3594
- #: settings.php:1483
3595
  msgid "Wait for HTML element to be loaded"
3596
  msgstr "Čakaj, da se naloži HTML element"
3597
 
3598
- #: settings.php:1490
3599
  msgid "Time in ms to delay insertion"
3600
  msgstr "Čas v ms za zakasnitev vstavljanja"
3601
 
3602
- #: settings.php:1495
3603
  msgid "Code position"
3604
  msgstr "Položaj kode"
3605
 
3606
- #: settings.php:1496
3607
  msgid ""
3608
  "Page position where the code for client-side insertion will be inserted."
3609
  msgstr ""
3610
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3611
 
3612
- #: settings.php:1514
3613
  msgid "Count"
3614
  msgstr "Štej"
3615
 
3616
- #: settings.php:1520
3617
  msgid "paragraphs with tags"
3618
  msgstr "odstavke z značkami"
3619
 
3620
- #: settings.php:1526
3621
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3622
  msgstr ""
3623
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3624
 
3625
- #: settings.php:1535
3626
  msgid "that have between"
3627
  msgstr "ki imajo med"
3628
 
3629
- #: settings.php:1541
3630
  msgid "Minimum number of paragraph words, leave empty for no limit"
3631
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3632
 
3633
- #: settings.php:1550
3634
  msgid "Maximum number of paragraph words, leave empty for no limit"
3635
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3636
 
3637
- #: settings.php:1553
3638
  msgid "words"
3639
  msgstr "besed"
3640
 
3641
- #: settings.php:1568 settings.php:1615 settings.php:1729 settings.php:1755
3642
  msgid "Comma separated texts"
3643
  msgstr "Z vejico ločena besedila"
3644
 
3645
  #. translators: inside [HTML tags] elements that contain
3646
- #: settings.php:1587
3647
  msgid "inside"
3648
  msgstr "znotraj"
3649
 
3650
- #: settings.php:1593
3651
  msgid "Comma separated HTML tag names of container elements"
3652
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3653
 
3654
  #. translators: inside [HTML tags] elements that contain
3655
- #: settings.php:1602
3656
  msgid "elements that"
3657
  msgstr "elementov, ki"
3658
 
3659
- #: settings.php:1625
3660
  msgid ""
3661
  "Count also paragraphs inside these elements - defined on general plugin "
3662
  "settings page - tab [*] / tab General"
@@ -3664,7 +3724,7 @@ msgstr ""
3664
  "Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
3665
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3666
 
3667
- #: settings.php:1632 settings.php:1633
3668
  msgid ""
3669
  "If checked it will search for the text only in tag attributes like [[id]], "
3670
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
@@ -3674,17 +3734,17 @@ msgstr ""
3674
  "[[class]], [[style]], itd. V nasprotnem bo preiskana celotna značka vključno "
3675
  "z njeno vsebino."
3676
 
3677
- #: settings.php:1633
3678
  msgid "Check only tag attributes"
3679
  msgstr "Preveri samo atribute značke"
3680
 
3681
  #. Translators: %s: HTML tags
3682
- #: settings.php:1638
3683
  msgid "Count inside %s elements"
3684
  msgstr "Štej znotraj elementov %s"
3685
 
3686
  #. Translators: Do not insert for first X and last Y paragraphs
3687
- #: settings.php:1646
3688
  msgid "Do not insert for first"
3689
  msgid_plural "Do not insert for first"
3690
  msgstr[0] "Ne vstavi za prvi"
@@ -3692,7 +3752,7 @@ msgstr[1] "Ne vstavi za prva"
3692
  msgstr[2] "Ne vstavi za prve"
3693
  msgstr[3] "Ne vstavi za prvih"
3694
 
3695
- #: settings.php:1652
3696
  msgid ""
3697
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3698
  "first paragraphs"
@@ -3701,7 +3761,7 @@ msgstr ""
3701
  "odstavkov"
3702
 
3703
  #. Translators: Do not insert for first X and last Y paragraphs
3704
- #: settings.php:1655
3705
  msgid "and last"
3706
  msgid_plural "and last"
3707
  msgstr[0] "in zadnji"
@@ -3709,7 +3769,7 @@ msgstr[1] "in zadnja"
3709
  msgstr[2] "in zadnje"
3710
  msgstr[3] "in zadnjih"
3711
 
3712
- #: settings.php:1661
3713
  msgid ""
3714
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3715
  "last paragraphs"
@@ -3719,7 +3779,7 @@ msgstr ""
3719
 
3720
  #. Translators: Do not insert for first X and last Y paragraphs
3721
  #. Translators: Post/Static page must have between X and Y paragraphs
3722
- #: settings.php:1664 settings.php:1690
3723
  msgid "paragraph"
3724
  msgid_plural "paragraphs"
3725
  msgstr[0] "odstavek"
@@ -3727,23 +3787,23 @@ msgstr[1] "odstavka"
3727
  msgstr[2] "odstavke"
3728
  msgstr[3] "odstavkov"
3729
 
3730
- #: settings.php:1672 settings.php:2273
3731
  msgid "Post/Static page must have between"
3732
  msgstr "Prispevek/Statična stran mora imeti med"
3733
 
3734
- #: settings.php:1678
3735
  msgid "Minimum number of paragraphs, leave empty for no limit"
3736
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3737
 
3738
- #: settings.php:1687
3739
  msgid "Maximum number of paragraphs, leave empty for no limit"
3740
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3741
 
3742
- #: settings.php:1698
3743
  msgid "Minimum number of words in paragraphs above"
3744
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3745
 
3746
- #: settings.php:1704
3747
  msgid ""
3748
  "Used only with automatic insertion After paragraph and empty paragraph "
3749
  "numbers"
@@ -3751,96 +3811,96 @@ msgstr ""
3751
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3752
  "številkami odstavkov"
3753
 
3754
- #: settings.php:1714 settings.php:1740
3755
  msgid "In"
3756
  msgstr "V"
3757
 
3758
- #: settings.php:1720
3759
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3760
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3761
 
3762
- #: settings.php:1723
3763
  msgid "paragraphs above avoid"
3764
  msgstr "odstavkih zgoraj se izogni"
3765
 
3766
- #: settings.php:1746
3767
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3768
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3769
 
3770
- #: settings.php:1749
3771
  msgid "paragraphs below avoid"
3772
  msgstr "odstavkih spodaj se izogni"
3773
 
3774
- #: settings.php:1765
3775
  msgid "If text is found"
3776
  msgstr "Če je besedilo najdeno"
3777
 
3778
- #: settings.php:1772
3779
  msgid "check up to"
3780
  msgstr "preveri do"
3781
 
3782
- #: settings.php:1780
3783
  msgctxt "check up to"
3784
  msgid "paragraphs"
3785
  msgstr "odstavkov"
3786
 
3787
- #: settings.php:1796
3788
  msgid "Categories"
3789
  msgstr "Kategorije"
3790
 
3791
- #: settings.php:1799
3792
  msgid "Toggle category editor"
3793
  msgstr "Preklopi urejevalnik kategorij"
3794
 
3795
- #: settings.php:1802
3796
  msgid "Comma separated category slugs"
3797
  msgstr "Z vejico ločeni ključi kategorij"
3798
 
3799
- #: settings.php:1819
3800
  msgid "Tags"
3801
  msgstr "Oznake"
3802
 
3803
- #: settings.php:1822
3804
  msgid "Toggle tag editor"
3805
  msgstr "Preklopi urejevalnik oznak"
3806
 
3807
- #: settings.php:1825
3808
  msgid "Comma separated tag slugs"
3809
  msgstr "Z vejico ločeni ključi oznak"
3810
 
3811
- #: settings.php:1842
3812
  msgid "Taxonomies"
3813
  msgstr "Taksonomije"
3814
 
3815
- #: settings.php:1845
3816
  msgid "Toggle taxonomy editor"
3817
  msgstr "Preklopi urejevalnik taksonomij"
3818
 
3819
- #: settings.php:1848
3820
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3821
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3822
 
3823
- #: settings.php:1865
3824
  msgid "Post IDs"
3825
  msgstr "ID-ji prispevkov"
3826
 
3827
- #: settings.php:1868
3828
  msgid "Toggle post/page ID editor"
3829
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3830
 
3831
- #: settings.php:1871
3832
  msgid "Comma separated post/page IDs"
3833
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3834
 
3835
- #: settings.php:1888
3836
  msgid "Urls"
3837
  msgstr "Url-ji"
3838
 
3839
- #: settings.php:1891
3840
  msgid "Toggle url editor"
3841
  msgstr "Preklopi urejevalnik url-jev"
3842
 
3843
- #: settings.php:1894
3844
  msgid ""
3845
  "Comma separated urls (page addresses) starting with / after domain name (e."
3846
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3852,15 +3912,15 @@ msgstr ""
3852
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3853
  "začetek*. *url-vzorec*, *url-konec)"
3854
 
3855
- #: settings.php:1910
3856
  msgid "Url parameters"
3857
  msgstr "Url parametri"
3858
 
3859
- #: settings.php:1914
3860
  msgid "Toggle url parameter and cookie editor"
3861
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3862
 
3863
- #: settings.php:1917
3864
  msgid ""
3865
  "Comma separated url query parameters or cookies with optional values (use "
3866
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
@@ -3869,30 +3929,30 @@ msgstr ""
3869
  "vrednostmi (uporabite 'parameter', 'parameter=vrednost', 'piškotek' or "
3870
  "'piškotek=vrednost')"
3871
 
3872
- #: settings.php:1933
3873
  msgid "Cookies"
3874
  msgstr "Piškotki"
3875
 
3876
- #: settings.php:1937
3877
  msgid "Toggle cookie editor"
3878
  msgstr "Preklopi urejevalnik piškotkov"
3879
 
3880
- #: settings.php:1940
3881
  msgid ""
3882
  "Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
3883
  msgstr ""
3884
  "Z vejico ločeni piškotki z neobveznimi vrednostmi (uporabite 'piškotek' ali "
3885
  "'piškotek=vrednost')"
3886
 
3887
- #: settings.php:1956
3888
  msgid "Referrers"
3889
  msgstr "Napotitelji"
3890
 
3891
- #: settings.php:1959
3892
  msgid "Toggle referer editor"
3893
  msgstr "Preklopi urejevalnik napotiteljev"
3894
 
3895
- #: settings.php:1962
3896
  msgid ""
3897
  "Comma separated domains, use # for no referrer, you can also use partial "
3898
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
@@ -3900,15 +3960,15 @@ msgstr ""
3900
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3901
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3902
 
3903
- #: settings.php:1978
3904
  msgid "Clients"
3905
  msgstr "Odjemalci"
3906
 
3907
- #: settings.php:1981
3908
  msgid "Toggle client editor"
3909
  msgstr "Preklopi urejevalnik odjemalcev"
3910
 
3911
- #: settings.php:1984
3912
  msgid ""
3913
  "Comma separated names (operating systems, browsers, devices). You can also "
3914
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
@@ -3918,25 +3978,25 @@ msgstr ""
3918
  "lahko tudi delne nize uporabniškega agenta z * (začetek-uporabnšikega-"
3919
  "agenta*. *vzorec-uporabnšikega-agenta*, *konec-uporabnšikega-agenta)"
3920
 
3921
- #: settings.php:2010
3922
  msgid "Enable widget for this block"
3923
  msgstr "Omogočite gradnik za ta blok"
3924
 
3925
- #: settings.php:2015
3926
  msgid "Sidebars (or widget positions) where this widget is used"
3927
  msgstr ""
3928
  "Stranske vrstice (ali položaji gradnikov) kjer je ta gradnik uporabljen"
3929
 
3930
- #: settings.php:2022
3931
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3932
  msgstr ""
3933
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3934
 
3935
- #: settings.php:2023 settings.php:4493
3936
  msgid "Shortcode"
3937
  msgstr "Kratka koda"
3938
 
3939
- #: settings.php:2038
3940
  msgid ""
3941
  "Enable PHP function call to insert this block at any position in theme file. "
3942
  "If function is disabled for block it will return empty string."
@@ -3945,62 +4005,62 @@ msgstr ""
3945
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3946
  "prazen niz."
3947
 
3948
- #: settings.php:2039
3949
  msgid "PHP function"
3950
  msgstr "PHP funkcija"
3951
 
3952
- #: settings.php:2054
3953
  msgid "Client-side device detection"
3954
  msgstr "Zaznavanje naprave na strani odjemalca"
3955
 
3956
- #: settings.php:2055
3957
  msgid "Server-side device detection"
3958
  msgstr "Zaznavanje naprave na strani strežnika"
3959
 
3960
- #: settings.php:2062
3961
  msgid "Use client-side detection to"
3962
  msgstr "Uporabi zaznavanje na strani odjemalca in"
3963
 
3964
- #: settings.php:2064
3965
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3966
  msgstr ""
3967
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3968
 
3969
  #. Translators: only on (the following devices): viewport names (devices)
3970
  #. listed
3971
- #: settings.php:2069
3972
  msgid "only on"
3973
  msgstr "samo na"
3974
 
3975
- #: settings.php:2097
3976
  msgid "Device min width %s px"
3977
  msgstr "Najmanjša širina naprave %s px"
3978
 
3979
- #: settings.php:2123
3980
  msgid "Use server-side detection to insert block only for"
3981
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3982
 
3983
- #: settings.php:2142
3984
  msgid "Filter"
3985
  msgstr "Filter"
3986
 
3987
- #: settings.php:2143
3988
  msgid "Word Count"
3989
  msgstr "Število Besed"
3990
 
3991
- #: settings.php:2145
3992
  msgid "Display"
3993
  msgstr "Prikaz"
3994
 
3995
- #: settings.php:2147 settings.php:2432
3996
  msgid "General"
3997
  msgstr "Splošno"
3998
 
3999
- #: settings.php:2159
4000
  msgid "Old settings for AMP pages detected"
4001
  msgstr "Zaznane stare nastavitve za AMP strani"
4002
 
4003
- #: settings.php:2159
4004
  msgid ""
4005
  "To insert different codes on normal and AMP pages separate them with "
4006
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
@@ -4011,44 +4071,44 @@ msgstr ""
4011
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
4012
  "separatorja)."
4013
 
4014
- #: settings.php:2159
4015
  msgid "AMP pages"
4016
  msgstr "AMP strani"
4017
 
4018
- #: settings.php:2164
4019
  msgid "Enable insertion for Ajax requests"
4020
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
4021
 
4022
- #: settings.php:2164
4023
  msgid "Ajax requests"
4024
  msgstr "Ajax zahteve"
4025
 
4026
- #: settings.php:2169
4027
  msgid "Enable insertion in RSS feeds"
4028
  msgstr "Omogoči vstavljanje v RSS virih"
4029
 
4030
- #: settings.php:2169
4031
  msgid "RSS Feed"
4032
  msgstr "RSS Vir"
4033
 
4034
- #: settings.php:2174
4035
  msgid "Enable insertion on page for Error 404: Page not found"
4036
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
4037
 
4038
- #: settings.php:2174
4039
  msgid "Error 404 page"
4040
  msgstr "Stran napake 404"
4041
 
4042
- #: settings.php:2186
4043
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
4044
  msgstr ""
4045
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
4046
 
4047
- #: settings.php:2187
4048
  msgid "insertions"
4049
  msgstr "vstavljanj"
4050
 
4051
- #: settings.php:2189
4052
  msgid ""
4053
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
4054
  "General)"
@@ -4056,15 +4116,15 @@ msgstr ""
4056
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
4057
  "zavihek Splošno)"
4058
 
4059
- #: settings.php:2192 settings.php:2620
4060
  msgid "Max blocks per page"
4061
  msgstr "Največ blokov na stran"
4062
 
4063
- #: settings.php:2204
4064
  msgid "Insert for"
4065
  msgstr "Vstavi za"
4066
 
4067
- #: settings.php:2212
4068
  msgid ""
4069
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
4070
  "is currently active). Might speed up insertion on content pages when "
@@ -4074,11 +4134,11 @@ msgstr ""
4074
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
4075
  "filter [[the_content]] večkrat klican."
4076
 
4077
- #: settings.php:2216
4078
  msgid "Insert only in the loop"
4079
  msgstr "Vstavi samo v zanki"
4080
 
4081
- #: settings.php:2219
4082
  msgid ""
4083
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
4084
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
@@ -4089,26 +4149,26 @@ msgstr ""
4089
  "HTML kodo bloka. V nasprotnem bo Javascript koda vstavljena v nogi. "
4090
  "Javascript funkcije vtičnika bodo še vedno vstavljene v nogi."
4091
 
4092
- #: settings.php:2223
4093
  msgid "Embed JS code"
4094
  msgstr "Vgnezdi JS kodo"
4095
 
4096
- #: settings.php:2226
4097
  msgid ""
4098
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
4099
  msgstr ""
4100
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
4101
  "Rocket"
4102
 
4103
- #: settings.php:2230
4104
  msgid "Disable caching"
4105
  msgstr "Onemogoči predpomnjenje"
4106
 
4107
- #: settings.php:2242
4108
  msgid "Filter insertions"
4109
  msgstr "Filtriraj vstavljanja"
4110
 
4111
- #: settings.php:2245
4112
  msgid ""
4113
  "Filter multiple insertions by specifying wanted insertions for this block - "
4114
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -4120,44 +4180,44 @@ msgstr ""
4120
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
4121
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
4122
 
4123
- #: settings.php:2248
4124
  msgid "using"
4125
  msgstr "z uporabo"
4126
 
4127
- #: settings.php:2267
4128
  msgid "Checked means specified calls are unwanted"
4129
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
4130
 
4131
- #: settings.php:2267
4132
  msgid "Invert filter"
4133
  msgstr "Obrni filter"
4134
 
4135
- #: settings.php:2274
4136
  msgid "Minimum number of post/static page words, leave empty for no limit"
4137
  msgstr ""
4138
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4139
  "omejitev"
4140
 
4141
- #: settings.php:2276
4142
  msgid "Maximum number of post/static page words, leave empty for no limit"
4143
  msgstr ""
4144
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4145
  "omejitev"
4146
 
4147
- #: settings.php:2289
4148
  msgid "for"
4149
  msgstr "za"
4150
 
4151
- #: settings.php:2289
4152
  msgid "days after publishing"
4153
  msgstr "dni po objavi"
4154
 
4155
- #: settings.php:2291
4156
  msgid "Not available"
4157
  msgstr "Ni na razpolago"
4158
 
4159
  #. Translators: do not translate [[width]] - it is a CSS property
4160
- #: settings.php:2303
4161
  msgid ""
4162
  "Block width: empty means width not defined, number means width in pixels, "
4163
  "any other value means CSS [[width]] property"
@@ -4166,7 +4226,7 @@ msgstr ""
4166
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[width]]"
4167
 
4168
  #. Translators: do not translate [[height]] - it is a CSS property
4169
- #: settings.php:2307
4170
  msgid ""
4171
  "Block height: empty means height not defined, number means height in pixels, "
4172
  "any other value means CSS [[height]] property"
@@ -4174,20 +4234,28 @@ msgstr ""
4174
  "Višina bloka: prazno pomeni višina ni določena, število pomeni višino v "
4175
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[height]]"
4176
 
4177
- #: settings.php:2313 settings.php:2612
 
 
 
 
 
 
 
 
4178
  msgid "Ad label"
4179
  msgstr "Oznaka oglasa"
4180
 
4181
- #: settings.php:2334
4182
  msgid "General tag"
4183
  msgstr "Splošna oznaka"
4184
 
4185
- #: settings.php:2338
4186
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
4187
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
4188
 
4189
  #. translators: %s: HTML tags
4190
- #: settings.php:2347
4191
  msgid ""
4192
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4193
  "client-side device detection!"
@@ -4196,7 +4264,7 @@ msgstr ""
4196
  "potrebna za zaznavanje naprave na strani odjemalca!"
4197
 
4198
  #. translators: %s: HTML tags for text and link
4199
- #: settings.php:2361
4200
  msgid ""
4201
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4202
  "side %s insertion. Use %s Server-side %s insertion."
@@ -4205,90 +4273,90 @@ msgstr ""
4205
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4206
  "strežnika%s."
4207
 
4208
- #: settings.php:2377
4209
  msgid "Settings"
4210
  msgstr "Nastavitve"
4211
 
4212
- #: settings.php:2380
4213
  msgid "Settings timestamp"
4214
  msgstr "Časovni žig nastavitev"
4215
 
4216
- #: settings.php:2396
4217
  msgid "Are you sure you want to reset all settings?"
4218
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4219
 
4220
- #: settings.php:2396
4221
  msgid "Reset All Settings"
4222
  msgstr "Ponastavi Vse Nastavitve"
4223
 
4224
- #: settings.php:2433
4225
  msgid "Viewports"
4226
  msgstr "Pogledi"
4227
 
4228
- #: settings.php:2434
4229
  msgid "Hooks"
4230
  msgstr "Ročice"
4231
 
4232
- #: settings.php:2435
4233
  msgid "Header"
4234
  msgstr "Glava"
4235
 
4236
- #: settings.php:2436 strings.php:30
4237
  msgid "Footer"
4238
  msgstr "Noga"
4239
 
4240
- #: settings.php:2441
4241
  msgid "Debugging"
4242
  msgstr "Razhroščevanje"
4243
 
4244
- #: settings.php:2451
4245
  msgid "Plugin priority"
4246
  msgstr "Prednost vtičnika"
4247
 
4248
- #: settings.php:2459
4249
  msgid "Output buffering"
4250
  msgstr "Predpomnjenje izhoda"
4251
 
4252
- #: settings.php:2462
4253
  msgid "Needed for position Above header but may not work with all themes"
4254
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4255
 
4256
- #: settings.php:2470
4257
  msgid "Syntax highlighting theme"
4258
  msgstr "Tema za poudarjanje sintakse"
4259
 
4260
- #: settings.php:2477
4261
  msgctxt "no syntax highlighting themes"
4262
  msgid "None"
4263
  msgstr "Brez"
4264
 
4265
- #: settings.php:2478
4266
  msgid "No Syntax Highlighting"
4267
  msgstr "Brez Poudarjanja Sintakse"
4268
 
4269
- #: settings.php:2480
4270
  msgctxt "syntax highlighting themes"
4271
  msgid "Light"
4272
  msgstr "Svetle"
4273
 
4274
- #: settings.php:2495
4275
  msgctxt "syntax highlighting themes"
4276
  msgid "Dark"
4277
  msgstr "Temne"
4278
 
4279
- #: settings.php:2521
4280
  msgid "Tab setup delay"
4281
  msgstr "Zakasnitev nastavitev zavihka"
4282
 
4283
- #: settings.php:2529
4284
  msgid "Min. user role for ind. exceptions editing"
4285
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4286
 
4287
- #: settings.php:2539
4288
  msgid "Disable caching for logged in administrators"
4289
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4290
 
4291
- #: settings.php:2542
4292
  msgid ""
4293
  "Enabled means that logged in administrators will see non-cached (live) pages "
4294
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
@@ -4296,11 +4364,11 @@ msgstr ""
4296
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4297
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4298
 
4299
- #: settings.php:2550
4300
  msgid "Wait for jQuery"
4301
  msgstr "Čakaj na jQuery"
4302
 
4303
- #: settings.php:2553
4304
  msgid ""
4305
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4306
  "it will run the scripts that may need it"
@@ -4308,11 +4376,11 @@ msgstr ""
4308
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4309
  "bo pognal svoje skripte, ki jo potrebujejo"
4310
 
4311
- #: settings.php:2561
4312
  msgid "Sticky widget mode"
4313
  msgstr "Način za lepljive gradnike"
4314
 
4315
- #: settings.php:2564
4316
  msgid ""
4317
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4318
  "mode works with most themes but may reload ads on page load."
@@ -4321,19 +4389,19 @@ msgstr ""
4321
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4322
  "nalaganju strani."
4323
 
4324
- #: settings.php:2572
4325
  msgid "Sticky widget top margin"
4326
  msgstr "Zgornji rob za lepljiv gradnik"
4327
 
4328
- #: settings.php:2580
4329
  msgid "Dynamic blocks"
4330
  msgstr "Dinamični bloki"
4331
 
4332
- #: settings.php:2593
4333
  msgid "Functions for paragraph counting"
4334
  msgstr "Funkcije za štetje odstavkov"
4335
 
4336
- #: settings.php:2596
4337
  msgid ""
4338
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4339
  "functions if paragraphs are not counted properly on non-english pages."
@@ -4342,15 +4410,15 @@ msgstr ""
4342
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4343
  "šteti."
4344
 
4345
- #: settings.php:2604
4346
  msgid "No paragraph counting inside"
4347
  msgstr "Ni štetja odstavkov znotraj"
4348
 
4349
- #: settings.php:2615
4350
  msgid "Label text or HTML code"
4351
  msgstr "Besedilo oznake ali HTML koda"
4352
 
4353
- #: settings.php:2623
4354
  msgid ""
4355
  "Maximum number of inserted blocks per page. You need to enable Max page "
4356
  "insertions (button Misc / tab Insertion) to count block for this limit."
@@ -4359,12 +4427,12 @@ msgstr ""
4359
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4360
  "omejitev."
4361
 
4362
- #: settings.php:2637
4363
  msgid "Plugin usage tracking"
4364
  msgstr "Sledenje uporabe vtičnika"
4365
 
4366
  #. translators: %s: Ad Inserter
4367
- #: settings.php:2640
4368
  msgid ""
4369
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4370
  "Only information regarding the WordPress environment and %s usage is "
@@ -4374,125 +4442,125 @@ msgstr ""
4374
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4375
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4376
 
4377
- #: settings.php:2658
4378
  msgid "CSS class name for the wrapping div"
4379
  msgstr "Ime CSS razreda za div za ovijanje"
4380
 
4381
- #: settings.php:2658
4382
  msgid "Block class name"
4383
  msgstr "Ime razreda za blok"
4384
 
4385
- #: settings.php:2664
4386
  msgid "Include block number class"
4387
  msgstr "Vključi razred številke bloka"
4388
 
4389
- #: settings.php:2664
4390
  msgid "Block number class"
4391
  msgstr "Razred številke bloka"
4392
 
4393
- #: settings.php:2669
4394
  msgid "Include block name class"
4395
  msgstr "Vključi razred imena bloka"
4396
 
4397
- #: settings.php:2669
4398
  msgid "Block name class"
4399
  msgstr "Razred imena bloka"
4400
 
4401
- #: settings.php:2674
4402
  msgid ""
4403
  "Instead of alignment classes generate inline alignment styles for blocks"
4404
  msgstr ""
4405
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4406
 
4407
- #: settings.php:2674
4408
  msgid "Inline styles"
4409
  msgstr "Medvrstični slogi"
4410
 
4411
- #: settings.php:2680
4412
  msgid "Preview of the block wrapping code"
4413
  msgstr "Predogled kode za ovijanje blokov"
4414
 
4415
- #: settings.php:2681
4416
  msgid "Wrapping div"
4417
  msgstr "div za ovijanje"
4418
 
4419
- #: settings.php:2682 settings.php:3158
4420
  msgid "BLOCK CODE"
4421
  msgstr "KODA BLOKA"
4422
 
4423
- #: settings.php:2690
4424
  msgid "Viewport Settings used for client-side device detection"
4425
  msgstr ""
4426
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4427
 
4428
  #. Translators: %d: viewport number
4429
- #: settings.php:2698
4430
  msgid "Viewport %d name"
4431
  msgstr "Ime pogleda %d"
4432
 
4433
- #: settings.php:2701
4434
  msgid "min width"
4435
  msgstr "najmanjša širina"
4436
 
4437
- #: settings.php:2712
4438
  msgid "Custom Hooks"
4439
  msgstr "Ročice Po Meri"
4440
 
4441
- #: settings.php:2724 settings.php:2727
4442
  msgid "Enable hook"
4443
  msgstr "Omogoči ročico"
4444
 
4445
  #. translators: %d: hook number
4446
- #: settings.php:2727
4447
  msgid "Hook %d name"
4448
  msgstr "Ime ročice %d"
4449
 
4450
- #: settings.php:2730
4451
  msgid "Hook name for automatic insertion selection"
4452
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4453
 
4454
- #: settings.php:2733
4455
  msgid "action"
4456
  msgstr "akcija"
4457
 
4458
- #: settings.php:2736
4459
  msgid "Action name as used in the do_action () function"
4460
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4461
 
4462
- #: settings.php:2739
4463
  msgid "priority"
4464
  msgstr "prednost"
4465
 
4466
- #: settings.php:2742
4467
  msgid "Priority for the hook (default is 10)"
4468
  msgstr "Prednost za ročico (privzeta je 10)"
4469
 
4470
- #: settings.php:2763
4471
  msgid "Enable insertion of this code into HTML page header"
4472
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4473
 
4474
- #: settings.php:2767 settings.php:2834 settings.php:3025
4475
  msgid "Process PHP code"
4476
  msgstr "Procesiraj PHP kodo"
4477
 
4478
- #: settings.php:2771
4479
  msgid "HTML Page Header Code"
4480
  msgstr "Koda v Glavi HTML Strani"
4481
 
4482
- #: settings.php:2779
4483
  msgid "Code in the %s section of the HTML page"
4484
  msgstr "Koda v %s delu HTML strani"
4485
 
4486
- #: settings.php:2780
4487
  msgctxt "code in the header"
4488
  msgid "NOT ENABLED"
4489
  msgstr "NI OMOGOČENA"
4490
 
4491
- #: settings.php:2797 settings.php:2865
4492
  msgid "Use server-side detection to insert code only for"
4493
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4494
 
4495
- #: settings.php:2812
4496
  msgid ""
4497
  "Enable insertion of this code into HTML page header on page for Error 404: "
4498
  "Page not found"
@@ -4500,29 +4568,29 @@ msgstr ""
4500
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4501
  "obstaja"
4502
 
4503
- #: settings.php:2812 settings.php:2880
4504
  msgid "Insert on Error 404 page"
4505
  msgstr "Vstavi na strani Napake 404"
4506
 
4507
- #: settings.php:2830
4508
  msgid "Enable insertion of this code into HTML page footer"
4509
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4510
 
4511
- #: settings.php:2838
4512
  msgid "HTML Page Footer Code"
4513
  msgstr "Koda v Nogi HTML Strani"
4514
 
4515
  #. translators: %s: HTML tags
4516
- #: settings.php:2846
4517
  msgid "Code before the %s tag of the HTML page"
4518
  msgstr "Koda pred %s značko HTML strani"
4519
 
4520
- #: settings.php:2847
4521
  msgctxt "code in the footer"
4522
  msgid "NOT ENABLED"
4523
  msgstr "NI OMOGOČENA"
4524
 
4525
- #: settings.php:2880
4526
  msgid ""
4527
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4528
  "Page not found"
@@ -4530,32 +4598,32 @@ msgstr ""
4530
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4531
  "Stran ne obstaja"
4532
 
4533
- #: settings.php:2896
4534
  msgid "Code for ad blocking detection inserted. Click for details."
4535
  msgstr ""
4536
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4537
 
4538
- #: settings.php:2901
4539
  msgid "Enable detection of ad blocking"
4540
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4541
 
4542
- #: settings.php:2919
4543
  msgid "Global action when ad blocking is detected"
4544
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4545
 
4546
- #: settings.php:2925
4547
  msgid "No action for"
4548
  msgstr "Ni akcije za"
4549
 
4550
- #: settings.php:2926
4551
  msgid "Exceptions for global action when ad blocking is detected."
4552
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov."
4553
 
4554
- #: settings.php:2936
4555
  msgid "Delay Action"
4556
  msgstr "Zakasni Akcijo"
4557
 
4558
- #: settings.php:2939
4559
  msgid ""
4560
  "Number of page views to delay action when ad blocking is detected. Leave "
4561
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -4564,16 +4632,16 @@ msgstr ""
4564
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4565
  "strani). Nastavi piškotek."
4566
 
4567
- #: settings.php:2939
4568
  msgctxt "Delay Action for x "
4569
  msgid "page views"
4570
  msgstr "ogledov strani"
4571
 
4572
- #: settings.php:2944
4573
  msgid "No Action Period"
4574
  msgstr "Obdobje Brez Akcije"
4575
 
4576
- #: settings.php:2947
4577
  msgid ""
4578
  "Number of days to supress action when ad blocking is detected. Leave empty "
4579
  "for no no-action period (action fires always after defined page view delay). "
@@ -4583,16 +4651,16 @@ msgstr ""
4583
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4584
  "strani). Nastavi piškotek."
4585
 
4586
- #: settings.php:2947
4587
  msgctxt "no action period"
4588
  msgid "days"
4589
  msgstr "dni"
4590
 
4591
- #: settings.php:2952
4592
  msgid "Custom Selectors"
4593
  msgstr "Selektorji Po Meri"
4594
 
4595
- #: settings.php:2955
4596
  msgid ""
4597
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4598
  "blocking detection. Invisible element or element with zero height means ad "
@@ -4602,7 +4670,7 @@ msgstr ""
4602
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4603
  "pomeni prisotnost blokiranja oglasov."
4604
 
4605
- #: settings.php:2962
4606
  msgid ""
4607
  "Use external scripts for ad blocking detection. Disable when you need to "
4608
  "obtain user consent before collecting personal information. In such case use "
@@ -4613,19 +4681,19 @@ msgstr ""
4613
  "primeru uporabite kratko kodo za vstavljanje zunanjih skript po pridobitvi "
4614
  "soglasja."
4615
 
4616
- #: settings.php:2962
4617
  msgid "Use external scripts"
4618
  msgstr "Uporabi zunanje skripte"
4619
 
4620
- #: settings.php:2976
4621
  msgid "Redirection Page"
4622
  msgstr "Stran za Preusmeritev"
4623
 
4624
- #: settings.php:2988
4625
  msgid "Custom Url"
4626
  msgstr "Url Po Meri"
4627
 
4628
- #: settings.php:2993
4629
  msgid ""
4630
  "Static page for redirection when ad blocking is detected. For other pages "
4631
  "select Custom url and set it below."
@@ -4633,35 +4701,35 @@ msgstr ""
4633
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4634
  "strani izberite Url Po Meri in ga nastavite spodaj."
4635
 
4636
- #: settings.php:3002
4637
  msgid "Custom Redirection Url"
4638
  msgstr "Url za Preusmeritev Po Meri"
4639
 
4640
- #: settings.php:3014
4641
  msgid "Message HTML code"
4642
  msgstr "HTML koda sporočila"
4643
 
4644
- #: settings.php:3027
4645
  msgid "Preview message when ad blocking is detected"
4646
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4647
 
4648
- #: settings.php:3056
4649
  msgid "Prevent visitors from closing the warning message"
4650
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4651
 
4652
- #: settings.php:3056
4653
  msgid "Undismissible Message"
4654
  msgstr "Neodstranljivo Sporočilo"
4655
 
4656
- #: settings.php:3062
4657
  msgid "Not undismissible for"
4658
  msgstr "Ni neodstranljivo za"
4659
 
4660
- #: settings.php:3063
4661
  msgid "Users which can close the warning message."
4662
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4663
 
4664
- #: settings.php:3100
4665
  msgid ""
4666
  "Force showing admin toolbar for administrators when viewing site. Enable "
4667
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -4670,94 +4738,94 @@ msgstr ""
4670
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4671
  "skrbnike."
4672
 
4673
- #: settings.php:3108
4674
  msgid "Disable header code (Header tab)"
4675
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4676
 
4677
- #: settings.php:3112
4678
  msgid "Disable footer code (Footer tab)"
4679
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4680
 
4681
  #. translators: %s: Ad Inserter
4682
- #: settings.php:3116
4683
  msgid "Disable %s JavaScript code"
4684
  msgstr "Onemogoči %s JavaScript kodo"
4685
 
4686
  #. translators: %s: Ad Inserter
4687
- #: settings.php:3120
4688
  msgid "Disable %s CSS code"
4689
  msgstr "Onemogoči %s CSS kodo"
4690
 
4691
  #. translators: %s: Ad Inserter
4692
- #: settings.php:3124
4693
  msgid "Disable %s HTML code"
4694
  msgstr "Onemogoči %s HTML kodo"
4695
 
4696
- #: settings.php:3128
4697
  msgid ""
4698
  "Disable PHP code processing (in all blocks including header and footer code)"
4699
  msgstr ""
4700
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4701
 
4702
- #: settings.php:3132
4703
  msgid "Disable insertion of all blocks"
4704
  msgstr "Onemogoči vstavljanje vseh blokov"
4705
 
4706
- #: settings.php:3136
4707
  msgid "Disable insertions"
4708
  msgstr "Onemogoči vstavljanja"
4709
 
4710
  #. translators: %s: Ad Inserter
4711
- #: settings.php:3148
4712
  msgid "%s CSS CODE"
4713
  msgstr "%s CSS KODA"
4714
 
4715
- #: settings.php:3151
4716
  msgid "HEADER CODE"
4717
  msgstr "KODA GLAVE"
4718
 
4719
  #. translators: %s: PHP tags
4720
- #: settings.php:3157
4721
  msgid "BLOCK PHP CODE"
4722
  msgstr "PHP KODA BLOKA"
4723
 
4724
  #. translators: %s: Ad Inserter
4725
- #: settings.php:3162
4726
  msgid "%s HTML CODE"
4727
  msgstr "%s HTML KODA"
4728
 
4729
  #. translators: %s: Ad Inserter
4730
- #: settings.php:3164
4731
  msgid "%s JS CODE"
4732
  msgstr "%s JS KODA"
4733
 
4734
- #: settings.php:3167
4735
  msgid "FOOTER CODE"
4736
  msgstr "KODA NOGE"
4737
 
4738
- #: settings.php:3176
4739
  msgid "Force showing admin toolbar when viewing site"
4740
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4741
 
4742
- #: settings.php:3183
4743
  msgid "Enable debugging functions in admin toolbar"
4744
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4745
 
4746
- #: settings.php:3185
4747
  msgid "Debugging functions in admin toolbar"
4748
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4749
 
4750
- #: settings.php:3192
4751
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4752
  msgstr ""
4753
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4754
  "zaslonih"
4755
 
4756
- #: settings.php:3194
4757
  msgid "Debugging functions on mobile screens"
4758
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4759
 
4760
- #: settings.php:3214
4761
  msgid ""
4762
  "Disable translation to see original texts for the settings and messages in "
4763
  "English"
@@ -4765,210 +4833,210 @@ msgstr ""
4765
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4766
  "angleščini"
4767
 
4768
- #: settings.php:3216
4769
  msgid "Disable translation"
4770
  msgstr "Onemogoči prevod"
4771
 
4772
- #: settings.php:3600
4773
  msgid "Available positions for current theme"
4774
  msgstr "Razpoložljivi položaji za trenutno temo"
4775
 
4776
- #: settings.php:3601
4777
  msgid "Error checking pages"
4778
  msgstr "Napaka pri preverjanju strani"
4779
 
4780
- #: settings.php:3604
4781
  msgid "Toggle theme checker for available positions for automatic insertion"
4782
  msgstr ""
4783
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4784
 
4785
- #: settings.php:3604
4786
  msgctxt "Button"
4787
  msgid "Check"
4788
  msgstr "Preveri"
4789
 
4790
- #: settings.php:3611
4791
  msgid "Position"
4792
  msgstr "Položaj"
4793
 
4794
- #: settings.php:3616
4795
  msgid "Archive pages"
4796
  msgstr "Strani arhiva"
4797
 
4798
- #: settings.php:3675
4799
  msgid ""
4800
  "Position not available because output buffering (tab [*]) is not enabled"
4801
  msgstr ""
4802
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4803
 
4804
- #: settings.php:3678 strings.php:251
4805
  msgid "Position not checked yet"
4806
  msgstr "Položaj še ni bil preverjen"
4807
 
4808
- #: settings.php:3714
4809
  msgid "Toggle active/all blocks"
4810
  msgstr "Preklopi aktive/vse bloke"
4811
 
4812
- #: settings.php:3719 strings.php:238
4813
  msgid "Rearrange block order"
4814
  msgstr "Preuredi vrstni red blokov"
4815
 
4816
- #: settings.php:3725
4817
  msgid "Save new block order"
4818
  msgstr "Shrani vrstni red blokov"
4819
 
4820
- #: settings.php:3751
4821
  msgid "Toggle active/all ad units"
4822
  msgstr "Preklopi aktivne/vse oglasne enote"
4823
 
4824
- #: settings.php:3755
4825
  msgid "Reload AdSense ad units"
4826
  msgstr "Ponovno naloži oglasne enote AdSense"
4827
 
4828
- #: settings.php:3759
4829
  msgid "Clear authorization to access AdSense account"
4830
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4831
 
4832
- #: settings.php:3763 settings.php:4656 settings.php:4723 strings.php:246
4833
  msgid "Google AdSense Homepage"
4834
  msgstr "Google AdSense Domača Stran"
4835
 
4836
- #: settings.php:3784
4837
  msgid "Switch to physical ads.txt file"
4838
  msgstr "Preklopi na fizično datoteko ads.txt"
4839
 
4840
- #: settings.php:3785
4841
  msgid "Switch to virtual ads.txt file"
4842
  msgstr "Preklopi na navidezno datoteko ads.txt"
4843
 
4844
  #. translators: %s: ads.txt
4845
- #: settings.php:3805
4846
  msgid "Open %s"
4847
  msgstr "Odpri %s"
4848
 
4849
- #: settings.php:3813
4850
  msgid "Reload ads.txt file"
4851
  msgstr "Ponovno naloži datoteko ads.txt"
4852
 
4853
- #: settings.php:3819 settings.php:4788
4854
  msgid "Save"
4855
  msgstr "Shrani"
4856
 
4857
  #. translators: %s: Ad Inserter
4858
- #: settings.php:3999
4859
  msgid "ads.txt file: %s virtual ads.txt file"
4860
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4861
 
4862
- #: settings.php:4004 settings.php:4024 strings.php:225
4863
  msgid "Warning"
4864
  msgstr "Opozorilo"
4865
 
4866
  #. translators: %s: Ad Inserter
4867
- #: settings.php:4004
4868
  msgid "%s virtual file ads.txt not found"
4869
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4870
 
4871
- #: settings.php:4012
4872
  msgid "IMPORTANT"
4873
  msgstr "POMEMBNO"
4874
 
4875
- #: settings.php:4012
4876
  msgid "ads.txt file must be placed on the root domain"
4877
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4878
 
4879
- #: settings.php:4017
4880
  msgid "ads.txt file"
4881
  msgstr "datoteka ads.txt"
4882
 
4883
- #: settings.php:4017
4884
  msgid "NOT WRITABLE"
4885
  msgstr "NI ZAPISLJIVO"
4886
 
4887
- #: settings.php:4024
4888
  msgid "file %s not found"
4889
  msgstr "datoteka %s ni najdena"
4890
 
4891
- #: settings.php:4034
4892
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4893
  msgstr ""
4894
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4895
 
4896
  #. translators: %s: Ad Inserter
4897
- #: settings.php:4040
4898
  msgid "%s virtual ads.txt file"
4899
  msgstr "%s navidezna datoteka ads.txt"
4900
 
4901
- #: settings.php:4062
4902
  msgid "Advertising system"
4903
  msgstr "Oglaševalski sistem"
4904
 
4905
- #: settings.php:4063
4906
  msgid "Account ID"
4907
  msgstr "ID Računa"
4908
 
4909
- #: settings.php:4065
4910
  msgid "Certification authority ID"
4911
  msgstr "ID organa za potrjevanje"
4912
 
4913
- #: settings.php:4080
4914
  msgid "Account ID found in block and present in ads.txt"
4915
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4916
 
4917
- #: settings.php:4084
4918
  msgid "Account ID found in block but not present in ads.txt"
4919
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4920
 
4921
- #: settings.php:4433
4922
  msgid "Preview block"
4923
  msgstr "Predogled bloka"
4924
 
4925
- #: settings.php:4440
4926
  msgid "Pause block"
4927
  msgstr "Ustavite blok"
4928
 
4929
- #: settings.php:4479
4930
  msgid "Automatic insertion"
4931
  msgstr "Samodejno vstavljanje"
4932
 
4933
  #. translators: %s HTML tags
4934
- #: settings.php:4480 settings.php:5825
4935
  msgid "PHP code processing"
4936
  msgstr "Procesiranje PHP kode"
4937
 
4938
- #: settings.php:4482
4939
  msgid "Device detection"
4940
  msgstr "Zaznavanje naprave"
4941
 
4942
- #: settings.php:4505
4943
  msgid "No active block"
4944
  msgstr "Noben aktiven blok"
4945
 
4946
- #: settings.php:4506
4947
  msgid "No block matches search keywords"
4948
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
4949
 
4950
- #: settings.php:4566
4951
  msgid "Ad unit"
4952
  msgstr "Enota"
4953
 
4954
- #: settings.php:4568
4955
  msgid "Slot ID"
4956
  msgstr "ID mesta"
4957
 
4958
- #: settings.php:4595
4959
  msgid "Copy AdSense code"
4960
  msgstr "Kopiraj kodo AdSense"
4961
 
4962
- #: settings.php:4598
4963
  msgid "Preview AdSense ad"
4964
  msgstr "Predogled oglasa AdSense"
4965
 
4966
- #: settings.php:4601
4967
  msgid "Get AdSense code"
4968
  msgstr "Pridobi kodo AdSense"
4969
 
4970
  #. translators: %s: HTML tags
4971
- #: settings.php:4633
4972
  msgid ""
4973
  "Please %s clear authorization %s with the button %s above and once again "
4974
  "authorize access to your AdSense account."
@@ -4976,16 +5044,16 @@ msgstr ""
4976
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4977
  "avtorizirajte dostop do vašega računa AdSense."
4978
 
4979
- #: settings.php:4652
4980
  msgid "AdSense Integration"
4981
  msgstr "Integracija AdSense"
4982
 
4983
- #: settings.php:4654
4984
  msgid "AdSense Integration - Step 2"
4985
  msgstr "Integracija AdSense - Korak 2"
4986
 
4987
  #. translators: %s: HTML tags
4988
- #: settings.php:4660
4989
  msgid ""
4990
  "Authorize %s to access your AdSense account. Click on the %s Get "
4991
  "Authorization Code %s button to open a new window where you can allow "
@@ -4998,7 +5066,7 @@ msgstr ""
4998
  "Avtoriziraj. %s"
4999
 
5000
  #. translators: %s: HTML tags
5001
- #: settings.php:4667
5002
  msgid ""
5003
  "If you get error, can't access ad units or would like to use own Google API "
5004
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -5009,7 +5077,7 @@ msgstr ""
5009
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
5010
 
5011
  #. translators: %s: HTML tags
5012
- #: settings.php:4669
5013
  msgid ""
5014
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
5015
  "Authorization Code %s button to open a new window where you can allow "
@@ -5022,7 +5090,7 @@ msgstr ""
5022
  "gumb %s Avtoriziraj. %s"
5023
 
5024
  #. translators: %s: HTML tags
5025
- #: settings.php:4676
5026
  msgid ""
5027
  "If you get error %s invalid client %s click on the button %s Clear and "
5028
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -5030,32 +5098,32 @@ msgstr ""
5030
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
5031
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
5032
 
5033
- #: settings.php:4687
5034
  msgid "Get Authorization Code"
5035
  msgstr "Pridobi Avtoriazcijsko Kodo"
5036
 
5037
- #: settings.php:4690
5038
  msgid "Enter Authorization Code"
5039
  msgstr "Vnesi Avorizacijsko Kodo"
5040
 
5041
- #: settings.php:4700
5042
  msgid "Use own API IDs"
5043
  msgstr "Uporabi lastne API ID-je"
5044
 
5045
- #: settings.php:4702
5046
  msgid "Clear and return to Step 1"
5047
  msgstr "Odstrani in se vrni na Korak 1"
5048
 
5049
- #: settings.php:4706
5050
  msgid "Authorize"
5051
  msgstr "Avtoriziraj"
5052
 
5053
- #: settings.php:4722
5054
  msgid "AdSense Integration - Step 1"
5055
  msgstr "Integracija AdSense - Korak 1"
5056
 
5057
  #. translators: %s: Ad Inserter
5058
- #: settings.php:4726
5059
  msgid ""
5060
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
5061
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -5068,12 +5136,12 @@ msgstr ""
5068
  "Odjemalca in Skrivnost Odjemalca."
5069
 
5070
  #. translators: %s: HTML tags
5071
- #: settings.php:4735
5072
  msgid "Go to %s Google APIs and Services console %s"
5073
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
5074
 
5075
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
5076
- #: settings.php:4736
5077
  msgid ""
5078
  "Create %1$s project - if the project and IDs are already created click on "
5079
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
@@ -5082,7 +5150,7 @@ msgstr ""
5082
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
5083
 
5084
  #. translators: %s: HTML tags
5085
- #: settings.php:4737
5086
  msgid ""
5087
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
5088
  "create a new project"
@@ -5091,12 +5159,12 @@ msgstr ""
5091
  "ustvaritev novega projekta"
5092
 
5093
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
5094
- #: settings.php:4738
5095
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
5096
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
5097
 
5098
  #. translators: %s: HTML tags
5099
- #: settings.php:4739
5100
  msgid ""
5101
  "Click on project selection, wait for the project to be created and then and "
5102
  "select %s as the current project"
@@ -5105,44 +5173,44 @@ msgstr ""
5105
  "izberite %s kot trenutni projekt"
5106
 
5107
  #. translators: %s: HTML tags
5108
- #: settings.php:4740
5109
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
5110
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
5111
 
5112
  #. translators: %s: HTML tags
5113
- #: settings.php:4741
5114
  msgid "Search for adsense and enable %s"
5115
  msgstr "Poiščite adsense in omogočite %s"
5116
 
5117
  #. translators: %s: HTML tags
5118
- #: settings.php:4742
5119
  msgid "Click on %s CREATE CREDENTIALS %s"
5120
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
5121
 
5122
  #. translators: %s: HTML tags
5123
- #: settings.php:4743
5124
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
5125
  msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
5126
 
5127
  #. translators: %s: HTML tags
5128
- #: settings.php:4744
5129
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
5130
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
5131
 
5132
  #. translators: %s: HTML tags
5133
- #: settings.php:4745
5134
  msgid "For %s What data will you be accessing? %s select %s User data %s"
5135
  msgstr ""
5136
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
5137
  "podatki %s"
5138
 
5139
  #. translators: %s: HTML tags
5140
- #: settings.php:4746
5141
  msgid "Click on %s What credentials do I need? %s"
5142
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
5143
 
5144
  #. translators: %s: HTML tags
5145
- #: settings.php:4747
5146
  msgid ""
5147
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
5148
  "Consent Screen %s"
@@ -5151,13 +5219,13 @@ msgstr ""
5151
  "Nastavite Zaslon za Soglasje %s"
5152
 
5153
  #. translators: %s: HTML tags
5154
- #: settings.php:4748
5155
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
5156
  msgstr ""
5157
  "Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
5158
 
5159
  #. translators: %s: HTML tags
5160
- #: settings.php:4749
5161
  msgid ""
5162
  "For %s App name %s enter %s and for %s User support email %s select your "
5163
  "Google account email address"
@@ -5166,7 +5234,7 @@ msgstr ""
5166
  "vaš email naslov Google računa"
5167
 
5168
  #. translators: %s: HTML tags
5169
- #: settings.php:4750
5170
  msgid ""
5171
  "For %s Developer contact information %s enter your email address and click "
5172
  "on %s SAVE AND CONTINUE %s"
@@ -5175,7 +5243,7 @@ msgstr ""
5175
  "na %s SHRANI IN NADALJUJ %s"
5176
 
5177
  #. translators: %s: HTML tags
5178
- #: settings.php:4751
5179
  msgid ""
5180
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
5181
  "add your Google account email address"
@@ -5184,7 +5252,7 @@ msgstr ""
5184
  "UPORABNIKE %s in dodajte email naslov vašga Google računa"
5185
 
5186
  #. translators: %s: HTML tags
5187
- #: settings.php:4752
5188
  msgid ""
5189
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
5190
  msgstr ""
@@ -5192,7 +5260,7 @@ msgstr ""
5192
  "NADZORNO PLOŠČO %s"
5193
 
5194
  #. translators: %s: HTML tags
5195
- #: settings.php:4753
5196
  msgid ""
5197
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5198
  "Ad Inserter client %s and then click on %s REFRESH %s"
@@ -5201,14 +5269,14 @@ msgstr ""
5201
  "vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
5202
 
5203
  #. translators: %s: HTML tags
5204
- #: settings.php:4754
5205
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
5206
  msgstr ""
5207
  "Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
5208
  "OPRAVLJENO %s"
5209
 
5210
  #. translators: %s: HTML tags
5211
- #: settings.php:4755
5212
  msgid ""
5213
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5214
  "secret %s"
@@ -5216,65 +5284,71 @@ msgstr ""
5216
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5217
  "%s Skrivnost odjemalca %s"
5218
 
5219
- #: settings.php:4756
5220
  msgid "Copy them to the appropriate fields below"
5221
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5222
 
5223
- #: settings.php:4762
5224
  msgid "Client ID"
5225
  msgstr "ID odjemalca"
5226
 
5227
- #: settings.php:4765
5228
  msgid "Enter Client ID"
5229
  msgstr "Vnesite ID odjemalca"
5230
 
5231
- #: settings.php:4770
5232
  msgid "Client secret"
5233
  msgstr "Skrivnost odjemalca"
5234
 
5235
- #: settings.php:4773
5236
  msgid "Enter Client secret"
5237
  msgstr "Vnesite Skrivnost odjemalca"
5238
 
5239
- #: settings.php:4783
5240
  msgid "Use default API IDs"
5241
  msgstr "Uporabi privzete API ID-je"
5242
 
5243
- #: settings.php:4884
5244
  msgid "All posts"
5245
  msgstr "Vsi prispevki"
5246
 
5247
- #: settings.php:4885
5248
  msgid "All static pages"
5249
  msgstr "Vse statične strani"
5250
 
5251
- #: settings.php:5452 settings.php:5465 settings.php:5479 settings.php:5493
5252
- #: settings.php:5507
 
 
 
 
 
 
 
 
5253
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5254
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5255
 
5256
- #: settings.php:5457 settings.php:5470 settings.php:5484 settings.php:5498
5257
- #: settings.php:5512 settings.php:5707 settings.php:5710 settings.php:5712
5258
- #: settings.php:5721 settings.php:5730 settings.php:5735 settings.php:5743
5259
- #: settings.php:5744 settings.php:5747 settings.php:5750 settings.php:5754
5260
- #: settings.php:5764 settings.php:5768
5261
  msgid "Looking for AdSense alternative?"
5262
  msgstr "Iščete alternativo za AdSense?"
5263
 
5264
- #: settings.php:5524
5265
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5266
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5267
 
5268
- #: settings.php:5529 settings.php:5704 settings.php:5725 settings.php:5753
5269
- #: settings.php:5772
5270
  msgid "Use Infolinks ads with Adsense to earn more"
5271
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5272
 
5273
- #: settings.php:5550 settings.php:5600
5274
  msgid "Support plugin development"
5275
  msgstr "Podprite razvoj vtičnika"
5276
 
5277
- #: settings.php:5555 settings.php:5601
5278
  msgid ""
5279
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5280
  "reviewing the plugin on WordPres"
@@ -5282,12 +5356,12 @@ msgstr ""
5282
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5283
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5284
 
5285
- #: settings.php:5555
5286
  msgctxt "Review Ad Inserter"
5287
  msgid "Review"
5288
  msgstr "Ocenite"
5289
 
5290
- #: settings.php:5560
5291
  msgid ""
5292
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5293
  "rating the plugin on WordPres"
@@ -5295,12 +5369,12 @@ msgstr ""
5295
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5296
  "razširiti novico z oceno vtičnika na WordPress-u"
5297
 
5298
- #: settings.php:5560
5299
  msgctxt "Rate Ad Inserter"
5300
  msgid "Rate"
5301
  msgstr "Ocenite"
5302
 
5303
- #: settings.php:5565
5304
  msgid ""
5305
  "Support free Ad Inserter development. If you are making money with Ad "
5306
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -5309,16 +5383,16 @@ msgstr ""
5309
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5310
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5311
 
5312
- #: settings.php:5565
5313
  msgid "Donate"
5314
  msgstr "Donirajte"
5315
 
5316
- #: settings.php:5572 settings.php:5616
5317
  msgid "Average rating of the plugin - Thank you!"
5318
  msgstr "Povprečna ocena vtičnika - Hvala!"
5319
 
5320
  #. translators: %s: Ad Inserter, HTML tags
5321
- #: settings.php:5583
5322
  msgid ""
5323
  "You've been using %s for a while now, and I hope you're happy with it. "
5324
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -5333,24 +5407,24 @@ msgstr ""
5333
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5334
  "bi rekli 'Hvala'."
5335
 
5336
- #: settings.php:5601
5337
  msgid "Review"
5338
  msgstr "Ocena"
5339
 
5340
- #: settings.php:5605
5341
  msgid "Ad Inserter on Twitter"
5342
  msgstr "Ad Inserter na Twitter-ju"
5343
 
5344
- #: settings.php:5606
5345
  msgid "Ad Inserter on Facebook"
5346
  msgstr "Ad Inserter na Facebook-u"
5347
 
5348
- #: settings.php:5609
5349
  msgid "Follow Ad Inserter"
5350
  msgstr "Sledi Ad Inserter-ju"
5351
 
5352
  #. translators: %s: HTML tags
5353
- #: settings.php:5636
5354
  msgid ""
5355
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5356
  "and %s Common Settings %s pages"
@@ -5359,7 +5433,7 @@ msgstr ""
5359
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5360
 
5361
  #. translators: %s: HTML tags
5362
- #: settings.php:5648
5363
  msgid ""
5364
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5365
  "Auto ads, %s %s AMP ads %s"
@@ -5368,7 +5442,7 @@ msgstr ""
5368
  "viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
5369
 
5370
  #. translators: %s: HTML tags
5371
- #: settings.php:5665
5372
  msgid ""
5373
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5374
  "purchase you refer to us"
@@ -5377,7 +5451,7 @@ msgstr ""
5377
  "nakup, ki nam ga posredujete"
5378
 
5379
  #. translators: %s: HTML tags
5380
- #: settings.php:5672
5381
  msgid ""
5382
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5383
  "diagnose and fix the problem."
@@ -5386,7 +5460,7 @@ msgstr ""
5386
  "navodili za diagnozo in rešitvami za težave."
5387
 
5388
  #. translators: %s: HTML tags
5389
- #: settings.php:5676
5390
  msgid ""
5391
  "If you need any kind of help or support, please do not hesitate to open a "
5392
  "thread on the %s support forum. %s"
@@ -5394,57 +5468,57 @@ msgstr ""
5394
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5395
  "nit na %s podpornem forumu. %s"
5396
 
5397
- #: settings.php:5703 settings.php:5773 settings.php:5777
5398
  msgid "Code preview with visual CSS editor"
5399
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5400
 
5401
- #: settings.php:5706 settings.php:5734
5402
  msgid "Ad blocking detection and content protection"
5403
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5404
 
5405
- #: settings.php:5709 settings.php:5762
5406
  msgid "A/B testing - Track ad impressions and clicks"
5407
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5408
 
5409
- #: settings.php:5726
5410
  msgid "Insert ads on AMP pages"
5411
  msgstr "Vstavite oglase na AMP straneh"
5412
 
5413
- #: settings.php:5785
5414
  msgid "Looking for Pro Ad Management plugin?"
5415
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5416
 
5417
- #: settings.php:5786
5418
  msgid "To Optimally Monetize your WordPress website?"
5419
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5420
 
5421
  #. Translators: %s: price of Ad Inserter Pro
5422
- #: settings.php:5787
5423
  msgid "Different license types starting from %s"
5424
  msgstr "Različni tipi licenc začenši od %s"
5425
 
5426
  #. translators: %s HTML tags
5427
- #: settings.php:5790
5428
  msgid "%s AdSense Integration %s"
5429
  msgstr "%s Integracija AdSense %s"
5430
 
5431
  #. translators: %s HTML tags
5432
- #: settings.php:5791
5433
  msgid "Syntax highlighting %s editor %s"
5434
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5435
 
5436
  #. translators: %s HTML tags
5437
- #: settings.php:5792
5438
  msgid "%s Code preview %s with visual CSS editor"
5439
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5440
 
5441
  #. translators: %s HTML tags
5442
- #: settings.php:5793
5443
  msgid "Simple user interface - all settings on a single page"
5444
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5445
 
5446
  #. translators: %s HTML tags
5447
- #: settings.php:5794
5448
  msgid ""
5449
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5450
  "image / excerpt"
@@ -5453,27 +5527,27 @@ msgstr ""
5453
  "%s / sliko / izvlečkom"
5454
 
5455
  #. translators: %s HTML tags
5456
- #: settings.php:5795
5457
  msgid "%s Automatic insertion %s between posts on blog pages"
5458
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5459
 
5460
  #. translators: %s HTML tags
5461
- #: settings.php:5796
5462
  msgid "%s Automatic insertion %s before, between and after comments"
5463
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5464
 
5465
  #. translators: %s HTML tags
5466
- #: settings.php:5797
5467
  msgid "%s Automatic insertion %s after %s or before %s tag"
5468
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5469
 
5470
  #. translators: %s HTML tags
5471
- #: settings.php:5798
5472
  msgid "Automatic insertion at %s custom hook positions %s"
5473
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5474
 
5475
  #. translators: %s HTML tags
5476
- #: settings.php:5799
5477
  msgid ""
5478
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5479
  "selectors)"
@@ -5482,17 +5556,17 @@ msgstr ""
5482
  "selektorjev)"
5483
 
5484
  #. translators: %s HTML tags
5485
- #: settings.php:5800
5486
  msgid "%s Insertion exceptions %s for individual posts and pages"
5487
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5488
 
5489
  #. translators: %s HTML tags
5490
- #: settings.php:5801
5491
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5492
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5493
 
5494
  #. translators: %s HTML tags
5495
- #: settings.php:5802
5496
  msgid ""
5497
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5498
  "scrolls)"
@@ -5501,24 +5575,24 @@ msgstr ""
5501
  "se stran pomika)"
5502
 
5503
  #. translators: %s HTML tags
5504
- #: settings.php:5803
5505
  msgid "%s Background ads %s with one or left and right background images"
5506
  msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
5507
 
5508
  #. translators: %s HTML tags
5509
- #: settings.php:5804
5510
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5511
  msgstr ""
5512
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5513
 
5514
  #. translators: %s HTML tags
5515
- #: settings.php:5805
5516
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5517
  msgstr ""
5518
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5519
 
5520
  #. translators: %s HTML tags
5521
- #: settings.php:5806
5522
  msgid ""
5523
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5524
  "visible)"
@@ -5527,7 +5601,7 @@ msgstr ""
5527
  "postane viden)"
5528
 
5529
  #. translators: %s HTML tags
5530
- #: settings.php:5807
5531
  msgid ""
5532
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5533
  msgstr ""
@@ -5535,12 +5609,12 @@ msgstr ""
5535
  "strani)"
5536
 
5537
  #. translators: %s HTML tags
5538
- #: settings.php:5808
5539
  msgid "Block %s alignment and style %s customizations"
5540
  msgstr "%s Poravnave in slogi %s bloka po meri"
5541
 
5542
  #. translators: %s HTML tags
5543
- #: settings.php:5809
5544
  msgid ""
5545
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5546
  "TOS)"
@@ -5548,7 +5622,7 @@ msgstr ""
5548
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5549
 
5550
  #. translators: %s HTML tags
5551
- #: settings.php:5810
5552
  msgid ""
5553
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5554
  "feeds"
@@ -5557,22 +5631,22 @@ msgstr ""
5557
  "virih"
5558
 
5559
  #. translators: %s HTML tags
5560
- #: settings.php:5811
5561
  msgid "%s Ad rotation %s (works also with caching)"
5562
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5563
 
5564
  #. translators: %s HTML tags
5565
- #: settings.php:5812
5566
  msgid "Ad rotation %s optimization based on CTR %s"
5567
  msgstr "Optimizacija vrtenja oglasov %s glede na CTR %s"
5568
 
5569
  #. translators: %s HTML tags
5570
- #: settings.php:5813
5571
  msgid "Create, edit and check %s ads.txt %s file"
5572
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5573
 
5574
  #. translators: %s HTML tags
5575
- #: settings.php:5814
5576
  msgid ""
5577
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5578
  "AdSense)"
@@ -5581,86 +5655,86 @@ msgstr ""
5581
  "AdSense)"
5582
 
5583
  #. translators: %s HTML tags
5584
- #: settings.php:5815
5585
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5586
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5587
 
5588
  #. translators: %s HTML tags
5589
- #: settings.php:5816
5590
  msgid "%s Public web reports %s for clients, export to PDF"
5591
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5592
 
5593
  #. translators: %s HTML tags
5594
- #: settings.php:5817
5595
  msgid "Support for %s A/B testing %s"
5596
  msgstr "Podpora za %s A/B testiranje %s"
5597
 
5598
  #. translators: %s HTML tags
5599
- #: settings.php:5818
5600
  msgid "Frequency capping - %s limit impressions or clicks %s"
5601
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5602
 
5603
  #. translators: %s HTML tags
5604
- #: settings.php:5819
5605
  msgid "Click fraud %s protection %s"
5606
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5607
 
5608
  #. translators: %s HTML tags
5609
- #: settings.php:5820
5610
  msgid "Support for %s GDPR consent cookie checks %s"
5611
  msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
5612
 
5613
  #. translators: %s HTML tags
5614
- #: settings.php:5821
5615
  msgid "Support for %s lazy loading %s"
5616
  msgstr "Podpora za %s leno nalaganje %s"
5617
 
5618
  #. translators: %s HTML tags
5619
- #: settings.php:5822
5620
  msgid "Support for ads on %s AMP pages %s"
5621
  msgstr "Podpora za oglase na %s AMP straneh %s"
5622
 
5623
  #. translators: %s HTML tags
5624
- #: settings.php:5823
5625
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5626
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5627
 
5628
  #. translators: %s HTML tags
5629
- #: settings.php:5824
5630
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5631
  msgstr ""
5632
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5633
 
5634
  #. translators: %s HTML tags
5635
- #: settings.php:5826
5636
  msgid "%s Banner %s code generator"
5637
  msgstr "Generator kode za %s pasice %s"
5638
 
5639
  #. translators: %s HTML tags
5640
- #: settings.php:5827
5641
  msgid "Support for %s header and footer %s code"
5642
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5643
 
5644
  #. translators: %s HTML tags
5645
- #: settings.php:5828
5646
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5647
  msgstr ""
5648
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5649
 
5650
  #. translators: %s HTML tags
5651
- #: settings.php:5829
5652
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5653
  msgstr ""
5654
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5655
  "strežnika"
5656
 
5657
  #. translators: %s HTML tags
5658
- #: settings.php:5830
5659
  msgid "Client-side %s mobile device detection %s (works with caching)"
5660
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5661
 
5662
  #. translators: %s HTML tags
5663
- #: settings.php:5831
5664
  msgid ""
5665
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5666
  "protection"
@@ -5669,12 +5743,12 @@ msgstr ""
5669
  "vsebine"
5670
 
5671
  #. translators: %s HTML tags
5672
- #: settings.php:5832
5673
  msgid "%s Ad blocking statistics %s"
5674
  msgstr "%s Statistika blokiranja oglasov %s"
5675
 
5676
  #. translators: %s HTML tags
5677
- #: settings.php:5833
5678
  msgid ""
5679
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5680
  "referrers, operating systems, browsers"
@@ -5683,75 +5757,75 @@ msgstr ""
5683
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5684
 
5685
  #. translators: %s HTML tags
5686
- #: settings.php:5834
5687
  msgid ""
5688
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5689
  msgstr ""
5690
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5691
 
5692
  #. translators: %s HTML tags
5693
- #: settings.php:5835
5694
  msgid "%s Multisite options %s to limit settings on the sites"
5695
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5696
 
5697
  #. translators: %s HTML tags
5698
- #: settings.php:5836
5699
  msgid "%s Import/Export %s block or plugin settings"
5700
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5701
 
5702
  #. translators: %s HTML tags
5703
- #: settings.php:5837
5704
  msgid "%s Insertion scheduling %s with fallback option"
5705
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5706
 
5707
  #. translators: %s HTML tags
5708
- #: settings.php:5838
5709
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5710
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5711
 
5712
  #. translators: %s HTML tags
5713
- #: settings.php:5839
5714
  msgid "Simple troubleshooting with many %s debugging functions %s"
5715
  msgstr ""
5716
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5717
 
5718
  #. translators: %s HTML tags
5719
- #: settings.php:5840
5720
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5721
  msgstr ""
5722
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5723
 
5724
  #. translators: %s HTML tags
5725
- #: settings.php:5841
5726
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5727
  msgstr ""
5728
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5729
 
5730
  #. translators: %s HTML tags
5731
- #: settings.php:5842
5732
  msgid ""
5733
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5734
  msgstr ""
5735
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5736
 
5737
  #. translators: %s HTML tags
5738
- #: settings.php:5843
5739
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5740
  msgstr ""
5741
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5742
 
5743
  #. translators: %s HTML tags
5744
- #: settings.php:5844
5745
  msgid "No ads on the settings page"
5746
  msgstr "Stran z nastavitvami brez oglasov"
5747
 
5748
  #. translators: %s HTML tags
5749
- #: settings.php:5845
5750
  msgid "Premium support"
5751
  msgstr "Vrhunska podpora"
5752
 
5753
  #. translators: %s HTML tags
5754
- #: settings.php:5848
5755
  msgid ""
5756
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5757
  "website with many advertising features to automatically insert adverts on "
@@ -5778,82 +5852,82 @@ msgstr ""
5778
  "bodo ohranile)."
5779
 
5780
  #. translators: %s HTML tags
5781
- #: settings.php:5861
5782
  msgid "Looking for %s Pro Ad Management plugin? %s"
5783
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5784
 
5785
  #. translators: %s HTML tags
5786
- #: settings.php:5866
5787
  msgid "Ads between posts"
5788
  msgstr "Oglasi med prispevki"
5789
 
5790
  #. translators: %s HTML tags
5791
- #: settings.php:5867
5792
  msgid "Ads between comments"
5793
  msgstr "Oglasi med komentarji"
5794
 
5795
  #. translators: %s HTML tags
5796
- #: settings.php:5868
5797
  msgid "Support via email"
5798
  msgstr "Podpora prek elektronske pošte"
5799
 
5800
  #. translators: %s HTML tags
5801
- #: settings.php:5874
5802
  msgid "%s Sticky positions %s"
5803
  msgstr "%s Lepljivi položaji %s"
5804
 
5805
  #. translators: %s HTML tags
5806
- #: settings.php:5875
5807
  msgid "%s Limit insertions %s"
5808
  msgstr "%s Omeji vstavljanja %s"
5809
 
5810
  #. translators: %s HTML tags
5811
- #: settings.php:5876
5812
  msgid "%s Clearance %s options"
5813
  msgstr "Možnosti %s izogibanja %s"
5814
 
5815
  #. translators: %s HTML tags
5816
- #: settings.php:5882
5817
  msgid "Ad rotation"
5818
  msgstr "Vrtenje oglasov"
5819
 
5820
  #. translators: %s HTML tags
5821
- #: settings.php:5883
5822
  msgid "%s A/B testing %s"
5823
  msgstr "%s A/B testiranje %s"
5824
 
5825
  #. translators: %s HTML tags
5826
- #: settings.php:5884
5827
  msgid "%s Ad tracking %s"
5828
  msgstr "%s Sledenje oglasom %s"
5829
 
5830
  #. translators: %s HTML tags
5831
- #: settings.php:5890
5832
  msgid "Support for %s AMP pages %s"
5833
  msgstr "Podpora za %s AMP strani %s"
5834
 
5835
  #. translators: %s HTML tags
5836
- #: settings.php:5891
5837
  msgid "%s Ad blocking detection %s"
5838
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5839
 
5840
  #. translators: %s HTML tags
5841
- #: settings.php:5892
5842
  msgid "%s Mobile device detection %s"
5843
  msgstr "%s Zaznavanje mobilne naprave %s"
5844
 
5845
  #. translators: %s HTML tags
5846
- #: settings.php:5899
5847
  msgid "64 code blocks"
5848
  msgstr "64 kodnih blokov"
5849
 
5850
  #. translators: %s HTML tags
5851
- #: settings.php:5900
5852
  msgid "%s GEO targeting %s"
5853
  msgstr "%s GEO ciljanje %s"
5854
 
5855
  #. translators: %s HTML tags
5856
- #: settings.php:5901
5857
  msgid "%s Scheduling %s"
5858
  msgstr "%s Urnik %s"
5859
 
@@ -6745,24 +6819,29 @@ msgstr "Izberi nadrejeni element"
6745
  msgid "CSS selector"
6746
  msgstr "CSS selektor"
6747
 
6748
- #~ msgid "Use current selector"
6749
- #~ msgstr "Uporabi trenutni selektor"
 
6750
 
6751
- #~ msgid "ELEMENT"
6752
- #~ msgstr "ELEMENT"
 
6753
 
6754
- #~ msgid "PATH"
6755
- #~ msgstr "POT"
 
6756
 
6757
- #~ msgid "SELECTOR"
6758
- #~ msgstr "SELEKTOR"
 
6759
 
6760
- #~ msgid ""
6761
- #~ "Ad management with many advanced advertising features to insert ads at "
6762
- #~ "optimal positions"
6763
- #~ msgstr ""
6764
- #~ "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje "
6765
- #~ "oglasov na optimalna mesta"
 
6766
 
6767
  #~ msgid "The latest PHP version: "
6768
  #~ msgstr "Zadnja različica PHP: "
@@ -7003,9 +7082,6 @@ msgstr "CSS selektor"
7003
  #~ msgid "Contain"
7004
  #~ msgstr "Vsebovano"
7005
 
7006
- #~ msgid "Maximize your revenue!"
7007
- #~ msgstr "Povečajte svoj prihodek!"
7008
-
7009
  #~ msgid "Widget positions"
7010
  #~ msgstr "Položaji gradnikov"
7011
 
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: 2022-01-17 17:22:54+00:00\n"
8
+ "PO-Revision-Date: 2022-01-17 18:31+0100\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
16
  "%100<=4 ? 2 : 3);\n"
17
  "X-Generator: Poedit 3.0.1\n"
18
 
19
+ #: ad-inserter.php:308
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:324
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:331
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:417
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:424
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:433
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:440
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:451
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
+ #: ad-inserter.php:458
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:1127
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
+ #: ad-inserter.php:1132
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:1137 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:1142 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:1147 strings.php:106
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
+ #: ad-inserter.php:1152 strings.php:170
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
+ #: ad-inserter.php:1199
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
+ #: ad-inserter.php:1203
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
+ #: ad-inserter.php:1501
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
+ #: ad-inserter.php:1875 ad-inserter.php:3339
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
+ #: ad-inserter.php:2628
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
+ #: ad-inserter.php:2628
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
+ #: ad-inserter.php:2629
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
+ #: ad-inserter.php:2630
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
+ #: ad-inserter.php:2631
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
+ #: ad-inserter.php:2632
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
+ #: ad-inserter.php:2633
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:3027
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:3030
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
+ #: ad-inserter.php:3034
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
+ #: ad-inserter.php:3039
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:3042
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:3055
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:3057
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:3063
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:3080 ad-inserter.php:3122
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:3087
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
+ #. translators: 1: Ad Inserter, 2, 3: HTML tags
204
+ #: ad-inserter.php:3094
205
+ msgid "Error: plugin settings corrupt"
206
+ msgstr "Napaka: okvarjene nastavitve vtičnika"
207
+
208
+ #: ad-inserter.php:3104
209
  msgctxt "Menu item"
210
  msgid "Settings"
211
  msgstr "Nastavitve"
212
 
213
+ #: ad-inserter.php:3136
214
  msgid ""
215
  "Load settings page in safe mode to avoid collisions with other plugins or "
216
  "theme"
218
  "Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
219
  "drugimi vtičniki ali temo"
220
 
221
+ #: ad-inserter.php:3136
222
  msgid "Safe mode"
223
  msgstr "Varni način"
224
 
225
  #. translators: %s: Ad Inserter
226
+ #: ad-inserter.php:3231
227
  msgctxt "Meta box name"
228
  msgid "%s Individual Exceptions"
229
  msgstr "Posamezne Izjeme za %s"
230
 
231
+ #: ad-inserter.php:3260 ad-inserter.php:11685 class.php:2557
232
+ #: includes/preview.php:2369 includes/preview.php:2414
233
+ #: includes/preview.php:2451 settings.php:4494 strings.php:3
234
  msgid "Block"
235
  msgstr "Blok"
236
 
237
+ #: ad-inserter.php:3261 includes/functions.php:4688 settings.php:4495
238
+ #: settings.php:4585
239
  msgid "Name"
240
  msgstr "Ime"
241
 
242
+ #: ad-inserter.php:3264 settings.php:1254
243
  msgid "Default insertion"
244
  msgstr "Privzeto vstavljanje"
245
 
246
  #. translators: For this post or page
247
+ #: ad-inserter.php:3267
248
  msgctxt "Page"
249
  msgid "For this"
250
  msgstr "Za to"
251
 
252
+ #: ad-inserter.php:3268
253
  msgctxt "Post"
254
  msgid "For this"
255
  msgstr "Za ta"
256
 
257
+ #: ad-inserter.php:3280
258
  msgctxt "Enabled/disabled on all"
259
  msgid "pages"
260
  msgstr "straneh"
261
 
262
+ #: ad-inserter.php:3283
263
  msgctxt "Enabled/disabled on all"
264
  msgid "posts"
265
  msgstr "prispevkih"
266
 
267
+ #: ad-inserter.php:3300 ad-inserter.php:3312 strings.php:176
268
  msgid "Enabled"
269
  msgstr "Omogočeno"
270
 
271
  #. translators: Menu items
272
+ #: ad-inserter.php:3300 ad-inserter.php:3312
273
+ #: includes/functions-check-now.php:2402 includes/functions.php:3012
274
+ #: includes/functions.php:3375 strings.php:16
275
  msgid "Disabled"
276
  msgstr "Onemogočeno"
277
 
278
+ #: ad-inserter.php:3302
279
  msgid "No individual exceptions"
280
  msgstr "Ni posameznih izjem"
281
 
282
  #. translators: Not enabled for pages or posts
283
+ #: ad-inserter.php:3304
284
  msgid "Not enabled for"
285
  msgstr "Ni omogočeno za"
286
 
287
  #. translators: No individual exceptions enabled for pages or posts
288
+ #: ad-inserter.php:3332
289
  msgid "No block has individual exceptions enabled"
290
  msgstr "Noben blok nima omogočenih posameznih izjem"
291
 
292
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
293
+ #: ad-inserter.php:3337
294
  msgid ""
295
  "Default insertion can be configured for each block on %1$s page - button "
296
  "next to %2$s checkbox."
298
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
299
  "poleg kljukice za vklop %2$s."
300
 
301
+ #: ad-inserter.php:3340 settings.php:1232
302
  msgid "Tag / Archive pages"
303
  msgstr "Strani oznak / arhiva"
304
 
305
+ #: ad-inserter.php:3342
306
  msgid ""
307
  "When individual exceptions for a block are enabled, a checkbox will be "
308
  "listed here to change default insertion for this post or page."
310
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
311
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
312
 
313
+ #: ad-inserter.php:3343
314
  msgid ""
315
  "This way you can individually enable or disable blocks on specific posts or "
316
  "pages."
318
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
319
  "prispevku ali strani."
320
 
321
+ #: ad-inserter.php:3345
322
  msgid "For more information check page %s"
323
  msgstr "Za več informacij poglejte stran %s"
324
 
325
  #. translators: Ad Inserter Exceptions documentation page
326
+ #: ad-inserter.php:3347
327
  msgid "Individual Exceptions"
328
  msgstr "Posamezne Izjeme"
329
 
330
+ #: ad-inserter.php:3393
331
  msgid "STATIC PAGE"
332
  msgstr "STATIČNA STRAN"
333
 
334
+ #: ad-inserter.php:3396
335
  msgid "POST"
336
  msgstr "PRISPEVEK"
337
 
338
+ #: ad-inserter.php:3399
339
  msgid "HOMEPAGE"
340
  msgstr "DOMAČA STRAN"
341
 
342
+ #: ad-inserter.php:3402
343
  msgid "CATEGORY PAGE"
344
  msgstr "STRAN KATEGORIJE"
345
 
346
+ #: ad-inserter.php:3405
347
  msgid "SEARCH PAGE"
348
  msgstr "STRAN ISKANJE"
349
 
350
+ #: ad-inserter.php:3408
351
  msgid "ARCHIVE PAGE"
352
  msgstr "STRAN ARHIVA"
353
 
354
+ #: ad-inserter.php:3411
355
  msgid "ERROR 404 PAGE"
356
  msgstr "STRAN NAPAKA 404"
357
 
358
+ #: ad-inserter.php:3414
359
  msgid "AJAX CALL"
360
  msgstr "AJAX KLIC"
361
 
362
+ #: ad-inserter.php:3417
363
  msgid "UNKNOWN PAGE TYPE"
364
  msgstr "NEZNAN TIP STRANI"
365
 
366
+ #: ad-inserter.php:3434
367
  msgid "Click to delete ad blocking detection cokies"
368
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
369
 
370
+ #: ad-inserter.php:3435
371
  msgid "AD BLOCKING STATUS UNKNOWN"
372
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
373
 
374
  #. translators: %s: AdSense Auto Ads
375
+ #: ad-inserter.php:3464
376
  msgid ""
377
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
378
  "positions"
380
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
381
  "položaje"
382
 
383
+ #: ad-inserter.php:3610
384
  msgid "Code for insertion"
385
  msgstr "Koda za vstavljanje"
386
 
387
+ #: ad-inserter.php:3610
388
  msgid "character"
389
  msgid_plural "characters"
390
  msgstr[0] "znak"
392
  msgstr[2] "znaki"
393
  msgstr[3] "znakov"
394
 
395
+ #: ad-inserter.php:3626
396
  msgid "Header code"
397
  msgstr "Koda v glavi"
398
 
399
+ #: ad-inserter.php:3626
400
  msgctxt "Header code"
401
  msgid "DISABLED"
402
  msgstr "ONEMOGOČENA"
403
 
404
+ #: ad-inserter.php:3626 ad-inserter.php:3882
405
  msgid "character inserted"
406
  msgid_plural "characters inserted"
407
  msgstr[0] "znak vstavljen"
409
  msgstr[2] "znaki vstavljeni"
410
  msgstr[3] "znakov vstavljenih"
411
 
412
+ #: ad-inserter.php:3644
413
  msgid "Click to delete the cookie for the consents"
414
  msgstr "Klikni za brisanje piškotka za soglasja"
415
 
416
+ #: ad-inserter.php:3882
417
  msgid "Footer code"
418
  msgstr "Koda v nogi"
419
 
420
+ #: ad-inserter.php:3882
421
  msgctxt "Footer code"
422
  msgid "DISABLED"
423
  msgstr "ONEMOGOČENA"
424
 
425
+ #: ad-inserter.php:3893
426
  msgid "JAVASCRIPT NOT WORKING"
427
  msgstr "JAVASCRIPT NE DELA"
428
 
429
+ #: ad-inserter.php:3893
430
  msgid "NO JAVASCRIPT ERRORS"
431
  msgstr "BREZ JAVASCRIPT NAPAK"
432
 
433
+ #: ad-inserter.php:3893
434
  msgid "JAVASCRIPT ERRORS"
435
  msgstr "JAVASCRIPT NAPAKE"
436
 
437
  #. translators: block name (block with default settings)
438
+ #: ad-inserter.php:6739
439
  msgctxt "Block name"
440
  msgid "Default"
441
  msgstr "Privzeti"
442
 
443
  #. translators: %s: Ad Inserter
444
+ #: ad-inserter.php:7188 ad-inserter.php:7503
445
  msgid "Invalid data received - %s settings not saved."
446
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
447
 
448
  #. translators: %s: Ad Inserter
449
+ #: ad-inserter.php:7473
450
  msgid "Error importing %s settings."
451
  msgstr "Napaka pri uvozu %s nastavitev."
452
 
453
+ #: ad-inserter.php:7474
454
  msgid "Error importing settings for block"
455
  msgid_plural "Error importing settings for blocks:"
456
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
458
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
459
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
460
 
461
+ #: ad-inserter.php:7501
462
  msgid "Settings saved."
463
  msgstr "Nastavitve shranjene."
464
 
465
+ #: ad-inserter.php:7523
466
  msgid "Settings cleared."
467
  msgstr "Nastavitve ponastavljene."
468
 
469
  #. Translators: Post/Static page must have between X and Y words
470
+ #: ad-inserter.php:7899 ad-inserter.php:7901 ad-inserter.php:7924
471
+ #: settings.php:2284
472
  msgid "word"
473
  msgid_plural "words"
474
  msgstr[0] "besedo"
476
  msgstr[2] "besede"
477
  msgstr[3] "besed"
478
 
479
+ #: ad-inserter.php:7938 ad-inserter.php:8065
480
  msgid "HTML TAGS REMOVED"
481
  msgstr "HTML ZNAČKE ODSTRANJENE"
482
 
483
+ #: ad-inserter.php:8144
484
  msgid "BEFORE COMMENTS"
485
  msgstr "PRED KOMENTARJI"
486
 
487
+ #: ad-inserter.php:8269
488
  msgid "AFTER COMMENTS"
489
  msgstr "PO KOMETARJIH"
490
 
491
+ #: ad-inserter.php:8346
492
  msgid "BETWEEN COMMENTS"
493
  msgstr "MED KOMENTARJI"
494
 
495
+ #: ad-inserter.php:10962 ad-inserter.php:11051
496
  msgctxt "category name"
497
  msgid "Uncategorized"
498
  msgstr "Nekategorizirano"
499
 
500
+ #: ad-inserter.php:11282
501
  msgid "requires WordPress 4.6 or newer"
502
  msgstr "potrebuje WordPress 4.6 ali novejši"
503
 
504
+ #: ad-inserter.php:11282
505
  msgid "Please update!"
506
  msgstr "Prosimo, posodobite!"
507
 
508
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
509
  #. name with HTML tags will be added)
510
+ #: ad-inserter.php:11553
511
  msgid "Thank you for installing"
512
  msgstr "Hvala za namestitev vtičnika"
513
 
514
  #. translators: Opt-in message: %s: HTML tags
515
+ #: ad-inserter.php:11555
516
  msgid ""
517
  "We would like to %s track its usage %s on your site. This is completely "
518
  "optional and can be disabled at any time."
520
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
521
  "izbirno in se lahko izključi kadarkoli."
522
 
523
+ #: ad-inserter.php:11557
524
  msgid ""
525
  "We don't record any sensitive data, only information regarding the WordPress "
526
  "environment and plugin usage, which will help us to make improvements to the "
530
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
531
 
532
  #. translators: Deactivation message: %s: HTML tags
533
+ #: ad-inserter.php:11597
534
  msgid ""
535
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
536
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
541
  "nam %s in poskušali vam bomo pomagati."
542
 
543
  #. translators: %s: Ad Inserter
544
+ #: ad-inserter.php:11643
545
  msgid "%s block."
546
  msgstr "%s blok."
547
 
548
  #. translators: widget title
549
+ #: ad-inserter.php:11659 ad-inserter.php:11694
550
  msgid "Processing log"
551
  msgstr "Dnevnik procesiranja"
552
 
553
  #. translators: widget title
554
+ #: ad-inserter.php:11661 ad-inserter.php:11695
555
  msgid "Dummy widget"
556
  msgstr "Prazen gradnik"
557
 
558
  #. translators: widget title
559
+ #: ad-inserter.php:11663 ad-inserter.php:11693
560
  msgid "Debugging tools"
561
  msgstr "Orodja za razhroščevanje"
562
 
563
  #. translators: block status (widget title)
564
+ #: ad-inserter.php:11670
565
  msgctxt "block"
566
  msgid "PAUSED"
567
  msgstr "USTAVLJEN"
568
 
569
+ #: ad-inserter.php:11671
570
  msgid "WIDGET DISABLED"
571
  msgstr "GRADNIK ONEMOGOČEN"
572
 
573
+ #: ad-inserter.php:11672
574
  msgid "Unknown block"
575
  msgstr "Neznan blok"
576
 
577
+ #: ad-inserter.php:11680 includes/functions-check-now.php:3262
578
+ #: includes/functions.php:5167 settings.php:1284
579
  msgid "Title"
580
  msgstr "Naslov"
581
 
582
+ #: ad-inserter.php:11702
583
  msgctxt "Widget"
584
  msgid "Sticky"
585
  msgstr "Lepljiv"
586
 
587
+ #: ad-inserter.php:11753
588
  msgid ""
589
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
590
  "Inserter you need to first deactivate Ad Inserter Pro."
593
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
594
  "Inserter Pro."
595
 
596
+ #: ad-inserter.php:11754
597
  msgid ""
598
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
599
  "will clear all settings that are available only in the Pro version "
604
  "različici (dodatne nastavitve blokov in vtičnika)!"
605
 
606
  #. translators: %s: Ad Inserter
607
+ #: class.php:621 class.php:630 class.php:633
608
  msgid "PHP error in %s block"
609
  msgstr "PHP napaka v bloku %s"
610
 
611
+ #: class.php:2507
612
  msgid "Counters"
613
  msgstr "Števci"
614
 
615
+ #: class.php:2511
616
  msgid "Content"
617
  msgstr "Vsebina"
618
 
619
+ #: class.php:2516
620
  msgid "Excerpt"
621
  msgstr "Izvleček"
622
 
623
+ #: class.php:2521 strings.php:17
624
  msgid "Before post"
625
  msgstr "Pred prispevkom"
626
 
627
+ #: class.php:2526 strings.php:18
628
  msgid "After post"
629
  msgstr "Za prispevkom"
630
 
631
+ #: class.php:2531 strings.php:25
632
  msgid "Between posts"
633
  msgstr "Med prispevki"
634
 
635
+ #: class.php:2536 settings.php:2018 settings.php:4512
636
  msgid "Widget"
637
  msgstr "Gradnik"
638
 
639
+ #: class.php:2541 settings.php:4510
640
  msgid "PHP function call"
641
  msgstr "Klic PHP funkcije"
642
 
643
  #. Translators: %s: custom hook name
644
+ #: class.php:2551
645
  msgid "Custom hook %s call"
646
  msgstr "Klic ročice po meri %s"
647
 
648
+ #: class.php:2587
649
  msgid "AJAX REQUEST"
650
  msgstr "AJAX ZAHTEVEK"
651
 
652
+ #: class.php:2590
653
  msgid "Ajax request for block in iframe"
654
  msgstr "Ajax zahtevek za blok v iframe-u"
655
 
656
+ #: class.php:2624
657
  msgid "Ajax request url, click to open it in a new tab"
658
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
659
 
660
+ #: class.php:2627
661
  msgid "IN THE LOOP"
662
  msgstr "V ZANKI"
663
 
664
+ #: class.php:2627
665
  msgid "YES"
666
  msgstr "DA"
667
 
668
+ #: class.php:2627
669
  msgid "NO"
670
  msgstr "NE"
671
 
672
+ #: class.php:2662
673
  msgid "BLOCK"
674
  msgstr "BLOK"
675
 
676
+ #: class.php:2662
677
  msgctxt "block or widget"
678
  msgid "INSERTED BUT NOT VISIBLE"
679
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
680
 
681
+ #: class.php:2893
682
  msgctxt "viewports"
683
  msgid "ALL"
684
  msgstr "VSI"
685
 
686
+ #: class.php:2929 class.php:2970 class.php:4678 strings.php:282
687
  msgctxt "Block"
688
  msgid "HIDDEN"
689
  msgstr "SKRIT"
690
 
691
+ #: class.php:2977 class.php:4681 strings.php:281
692
  msgctxt "Block"
693
  msgid "VISIBLE"
694
  msgstr "VIDEN"
695
 
696
+ #: class.php:3039
697
+ msgctxt "fallback"
698
+ msgid "INACTIVE"
699
+ msgstr "NEAKTIVNA"
700
+
701
+ #: class.php:3040
702
+ msgctxt "fallback"
703
+ msgid "ACTIVE"
704
+ msgstr "AKTIVNA"
705
+
706
+ #: class.php:3062
707
+ msgctxt "Block"
708
+ msgid "FALLBACK CODE"
709
+ msgstr "REZERVNA KODA"
710
+
711
+ #: class.php:3756 class.php:3854
712
  msgid "ACTIVE GROUPS"
713
  msgstr "AKTIVNE SKUPINE"
714
 
715
+ #: class.php:4352
716
  msgid "start='%s' end='%s' days='%s' type='%s'"
717
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
718
 
719
+ #: class.php:4360
720
  msgid "parameters='%s' type='%s'"
721
  msgstr "parametri='%s' tip='%s'"
722
 
723
+ #: class.php:4362
724
  msgid "cookies='%s' type='%s'"
725
  msgstr "piškotki='%s' tip='%s'"
726
 
727
  #. translators: %s: list parameters and type
728
+ #: class.php:4364
729
  msgid "referers='%s' type='%s'"
730
  msgstr "napotitelji='%s' tip='%s'"
731
 
732
  #. translators: %s: list parameters and type
733
+ #: class.php:4366
734
  msgid "clients='%s' type='%s'"
735
  msgstr "odjemalci='%s' tip='%s'"
736
 
737
  #. translators: %s: list parameters and type
738
+ #: class.php:4561
739
  msgid "countries='%s' type='%s'"
740
  msgstr "države='%s' tip='%s'"
741
 
742
  #. translators: %s: list parameters and type
743
+ #: class.php:4563
744
  msgid "ip addresses='%s' type='%s'"
745
  msgstr "ip naslovi='%s' tip='%s'"
746
 
747
+ #: class.php:4678 class.php:4681
748
  msgid "viewport='%s' type='%s'"
749
  msgstr "pogled='%s' tip='%s'"
750
 
751
+ #: class.php:4804 strings.php:283
752
  msgctxt "alternative block"
753
  msgid "FALLBACK"
754
  msgstr "REZERVA"
755
 
756
+ #: class.php:5386 strings.php:275
757
  msgid "BEFORE"
758
  msgstr "PRED"
759
 
760
+ #: class.php:5394 strings.php:277
761
  msgid "PREPEND CONTENT"
762
  msgstr "DODAJ PRED VSEBINO"
763
 
764
+ #: class.php:5398 strings.php:278
765
  msgid "APPEND CONTENT"
766
  msgstr "DODAJ ZA VSEBINO"
767
 
768
+ #: class.php:5402 strings.php:279
769
  msgid "REPLACE CONTENT"
770
  msgstr "NADOMESTI VSEBINO"
771
 
772
+ #: class.php:5406 strings.php:280
773
  msgid "REPLACE ELEMENT"
774
  msgstr "NADOMESTI ELEMENT"
775
 
776
+ #: class.php:5417 strings.php:276
777
  msgid "AFTER"
778
  msgstr "ZA"
779
 
780
+ #: class.php:5487 includes/preview.php:2414 includes/preview.php:2451
781
  msgid "Code"
782
  msgstr "Koda"
783
 
784
+ #: class.php:5490
785
  msgid "for block"
786
  msgstr "za blok"
787
 
788
+ #: class.php:9769
789
  msgid ""
790
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
791
  "extension for PHP."
794
  "namestiti DOM razširitev za PHP."
795
 
796
  #: includes/editor.php:4 includes/placeholders.php:350
797
+ #: includes/preview.php:2355 strings.php:288
798
  msgid "Use"
799
  msgstr "Uporabi"
800
 
801
+ #: includes/editor.php:5 includes/preview.php:2356
802
  msgid "Reset"
803
  msgstr "Ponastavi"
804
 
805
  #: includes/editor.php:6 includes/placeholders.php:352
806
+ #: includes/preview.php:2358 settings.php:3831 strings.php:229 strings.php:287
807
  msgid "Cancel"
808
  msgstr "Prekliči"
809
 
812
  msgstr "Vizualni Urejevalnik Kode"
813
 
814
  #: includes/editor.php:259 includes/preview-adb.php:301
815
+ #: includes/preview.php:2345
816
  msgid ""
817
  "This page was not loaded properly. Please check browser, plugins and ad "
818
  "blockers."
825
  msgstr "Napaka pri nalaganju strani"
826
 
827
  #: includes/editor.php:261 includes/preview-adb.php:303
828
+ #: includes/preview.php:2347
829
  msgid "PAGE BLOCKED"
830
  msgstr "STRAN BLOKIRANA"
831
 
839
  msgstr "Noben podatek ne ustreza filtru"
840
 
841
  #. translators: %s: Ad Inserter Pro
842
+ #: includes/functions-check-now.php:396 includes/functions.php:435
843
  msgid ""
844
  "Import %s settings when saving - if checked, the encoded settings below will "
845
  "be imported for all blocks and settings"
847
  "Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
848
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
849
 
850
+ #: includes/functions-check-now.php:396
851
  msgid "Import Settings for"
852
  msgstr "Uvozi Nastavitve za"
853
 
854
+ #: includes/functions-check-now.php:400
855
  msgid "Saved settings for"
856
  msgstr "Shranjene nastavitve za"
857
 
858
+ #: includes/functions-check-now.php:420 includes/functions.php:470
859
  msgid "License Key"
860
  msgstr "Licenčni Ključ"
861
 
862
+ #: includes/functions-check-now.php:423 includes/functions.php:473
863
  msgid "License Key for"
864
  msgstr "Licenčni Ključ za"
865
 
866
+ #: includes/functions-check-now.php:425 includes/functions.php:475
867
  msgid "Open license page"
868
  msgstr "Odpri licenčno stran"
869
 
870
+ #: includes/functions-check-now.php:432 includes/functions.php:482
871
  msgid "Hide license key"
872
  msgstr "Skrij licenčni ključ"
873
 
874
+ #: includes/functions-check-now.php:432 includes/functions.php:482
875
  msgid "Hide key"
876
  msgstr "Skrij ključ"
877
 
878
+ #: includes/functions-check-now.php:447 includes/functions.php:499
879
  msgid "Main content element"
880
  msgstr "Glavni element vsebine"
881
 
882
+ #: includes/functions-check-now.php:450 includes/functions.php:502
883
  msgid ""
884
  "Main content element (#id or .class) for 'Stick to the content' position. "
885
  "Leave empty unless position is not properly calculated."
887
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
888
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
889
 
890
+ #: includes/functions-check-now.php:451 includes/functions.php:503
891
+ #: settings.php:1441 settings.php:1481 settings.php:2972
892
  msgid "Open HTML element selector"
893
  msgstr "Odpri izbirnik HTML elementa"
894
 
895
+ #: includes/functions-check-now.php:456 includes/functions.php:508
896
  msgid "Lazy loading offset"
897
  msgstr "Zamik za leno nalaganje"
898
 
899
+ #: includes/functions-check-now.php:459 includes/functions.php:511
900
  msgid "Offset of the block from the visible viewport when it should be loaded"
901
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
902
 
903
+ #: includes/functions-check-now.php:470 includes/functions.php:523
904
  msgid "Export / Import Block Settings"
905
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
906
 
907
+ #: includes/functions-check-now.php:485 includes/functions.php:540
908
  msgid "Track impressions and clicks for this block"
909
  msgstr "Sledi prikazom in klikom za ta blok"
910
 
911
+ #: includes/functions-check-now.php:485 includes/functions.php:540
912
  msgid " - global tracking disabled"
913
  msgstr " - globalno sledenje onemogočeno"
914
 
915
+ #: includes/functions-check-now.php:492 includes/functions.php:548
916
+ #: includes/functions.php:4860
917
  msgid "Generate PDF report"
918
  msgstr "Generiraj PDF poročilo"
919
 
920
+ #: includes/functions-check-now.php:497 includes/functions.php:562
921
  msgid "Open public report"
922
  msgstr "Odpri javno poročilo"
923
 
924
+ #: includes/functions-check-now.php:511 includes/functions.php:576
925
  msgid "Toggle Ad Blocking Statistics"
926
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
927
 
928
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
929
+ #: includes/functions.php:584 includes/functions.php:4841
930
  msgid "Toggle Statistics"
931
  msgstr "Preklopi Statistiko"
932
 
933
+ #: includes/functions-check-now.php:528 includes/functions.php:593
934
  msgid "Pin list"
935
  msgstr "Pripni seznam"
936
 
937
  #. translators: %s: Ad Inserter Pro
938
+ #: includes/functions-check-now.php:543 includes/functions.php:616
939
  msgid "%s license key is not set. Continue?"
940
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
941
 
942
  #. translators: %s: Ad Inserter Pro
943
+ #: includes/functions-check-now.php:547 includes/functions.php:620
944
  msgid "Invalid %s license key. Continue?"
945
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
946
 
947
  #. translators: %s: Ad Inserter Pro
948
+ #: includes/functions-check-now.php:551 includes/functions.php:624
949
  msgid "%s license overused. Continue?"
950
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
951
 
952
+ #: includes/functions-check-now.php:555 includes/functions.php:634
953
+ #: settings.php:1189 settings.php:2405
954
  msgid "Save Settings"
955
  msgstr "Shrani Nastavitve"
956
 
957
+ #: includes/functions-check-now.php:615 includes/functions.php:702
958
+ #: includes/preview.php:2546
959
  msgid "Horizontal position"
960
  msgstr "Vodoravni položaj"
961
 
962
+ #: includes/functions-check-now.php:638 includes/functions.php:727
963
  msgid ""
964
  "Horizontal margin from the content or screen edge, empty means default value "
965
  "from CSS"
967
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
968
  "iz CSS"
969
 
970
+ #: includes/functions-check-now.php:646 includes/functions.php:735
971
+ #: includes/preview.php:2606
972
  msgid "Vertical position"
973
  msgstr "Navpični položaj"
974
 
975
+ #: includes/functions-check-now.php:661 includes/functions.php:750
976
  msgid ""
977
  "Vertical margin from the top or bottom screen edge, empty means default "
978
  "value from CSS"
980
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
981
  "iz CSS"
982
 
983
+ #: includes/functions-check-now.php:686 includes/functions.php:781
984
+ #: includes/preview.php:2661
985
  msgid "Animation"
986
  msgstr "Animacija"
987
 
997
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
998
  "selektorjem (#id ali .razred) postane viden"
999
 
1000
+ #: includes/functions-check-now.php:717 includes/functions.php:816
1001
+ #: includes/functions.php:843
1002
  msgid "Offset"
1003
  msgstr "Zamik"
1004
 
1005
+ #: includes/functions-check-now.php:717 includes/functions.php:816
1006
+ #: includes/functions.php:843
1007
  msgid "Offset of trigger element"
1008
  msgstr "Zamik sprožilnega elementa"
1009
 
1010
+ #: includes/functions-check-now.php:721 includes/functions.php:820
1011
+ #: includes/functions.php:847 settings.php:1496
1012
  msgid "Delay"
1013
  msgstr "Zakasnitev"
1014
 
1015
+ #: includes/functions-check-now.php:721 includes/functions.php:820
1016
  msgid "Delay animation after trigger condition"
1017
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
1018
 
1025
  msgstr "Sproži animacijo samo enkrat"
1026
 
1027
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
1028
+ #: includes/functions-check-now.php:2546 includes/functions.php:1000
1029
+ #: includes/functions.php:3164 includes/functions.php:3180
1030
  msgid "Tracking is globally disabled"
1031
  msgstr "Sledenje je globalno onemogočeno"
1032
 
1033
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
1034
+ #: includes/functions-check-now.php:2550 includes/functions.php:1004
1035
+ #: includes/functions.php:3168 includes/functions.php:3184
1036
  msgid "Tracking for this block is disabled"
1037
  msgstr "Sledenje za ta blok je onemogočeno"
1038
 
1039
+ #: includes/functions-check-now.php:780 includes/functions.php:1011
1040
  msgid "Double click to toggle controls in public reports"
1041
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1042
 
1043
+ #: includes/functions-check-now.php:786 includes/functions.php:1017
1044
+ #: includes/functions.php:4410 settings.php:3751 settings.php:3787
1045
+ #: settings.php:3848 strings.php:243
1046
  msgid "Loading..."
1047
  msgstr "Nalagam..."
1048
 
1049
+ #: includes/functions-check-now.php:807 includes/functions.php:1038
1050
  msgid ""
1051
  "Clear statistics data for the selected range - clear both dates to delete "
1052
  "all data for this block"
1054
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
1055
  "brisanje vseh podatkov za ta blok"
1056
 
1057
+ #: includes/functions-check-now.php:811 includes/functions.php:1042
1058
  msgid "Auto refresh data for the selected range every 60 seconds"
1059
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1060
 
1061
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1062
+ #: includes/functions.php:1045 includes/functions.php:8170
1063
  msgid "Load data for last month"
1064
  msgstr "Naloži podatke za zadnji mesec"
1065
 
1066
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1067
+ #: includes/functions.php:1045 includes/functions.php:8170
1068
  msgid "Last Month"
1069
  msgstr "Zadnji Mesec"
1070
 
1071
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1072
+ #: includes/functions.php:1048 includes/functions.php:8173
1073
  msgid "Load data for this month"
1074
  msgstr "Naloži podatke za ta mesec"
1075
 
1076
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1077
+ #: includes/functions.php:1048 includes/functions.php:8173
1078
  msgid "This Month"
1079
  msgstr "Ta Mesec"
1080
 
1081
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1082
+ #: includes/functions.php:1051 includes/functions.php:8176
1083
  msgid "Load data for this year"
1084
  msgstr "Naloži podatke za to leto"
1085
 
1086
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1087
+ #: includes/functions.php:1051 includes/functions.php:8176
1088
  msgid "This Year"
1089
  msgstr "To Leto"
1090
 
1091
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1092
+ #: includes/functions.php:1054 includes/functions.php:8179
1093
  msgid "Load data for the last 15 days"
1094
  msgstr "Naloži podatke za zadnjih 15 dni"
1095
 
1096
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1097
+ #: includes/functions.php:1057 includes/functions.php:8182
1098
  msgid "Load data for the last 30 days"
1099
  msgstr "Naloži podatke za zadnjih 30 dni"
1100
 
1101
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1102
+ #: includes/functions.php:1060 includes/functions.php:8185
1103
  msgid "Load data for the last 90 days"
1104
  msgstr "Naloži podatke za zadnjih 90 dni"
1105
 
1106
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1107
+ #: includes/functions.php:1063 includes/functions.php:8188
1108
  msgid "Load data for the last 180 days"
1109
  msgstr "Naloži podatke za zadnjih 180 dni"
1110
 
1111
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1112
+ #: includes/functions.php:1066 includes/functions.php:8191
1113
  msgid "Load data for the last 365 days"
1114
  msgstr "Naloži podatke za zadnjih 365 dni"
1115
 
1116
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1117
+ #: includes/functions.php:1076 includes/functions.php:8201
1118
  msgid "Load data for the selected range"
1119
  msgstr "Naloži podatke za izbrano obdobje"
1120
 
1121
+ #: includes/functions-check-now.php:861 includes/functions.php:1093
1122
  msgid ""
1123
  "Import settings when saving - if checked, the encoded settings below will be "
1124
  "imported for this block"
1126
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1127
  "nastavitve spodaj uvozile za ta blok"
1128
 
1129
+ #: includes/functions-check-now.php:861 includes/functions.php:1093
1130
  msgid "Import settings for block"
1131
  msgstr "Uvozi nastavitve za blok"
1132
 
1133
+ #: includes/functions-check-now.php:865 includes/functions.php:1097
1134
  msgid ""
1135
  "Import block name when saving - if checked and 'Import settings for block' "
1136
  "is also checked, the name from encoded settings below will be imported for "
1140
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1141
  "uvozilo za ta blok"
1142
 
1143
+ #: includes/functions-check-now.php:865 includes/functions.php:1097
1144
  msgid "Import block name"
1145
  msgstr "Uvozi ime bloka"
1146
 
1147
+ #: includes/functions-check-now.php:869 includes/functions.php:1101
1148
  msgid "Saved settings for block"
1149
  msgstr "Shranjene nastavitve za blok"
1150
 
1151
+ #: includes/functions-check-now.php:882 includes/functions.php:1116
1152
  msgid "Export / Import Ad Inserter Pro Settings"
1153
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1154
 
1155
+ #: includes/functions-check-now.php:892 includes/functions.php:1135
1156
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1157
  msgstr ""
1158
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1159
  "bloke?"
1160
 
1161
+ #: includes/functions-check-now.php:894 includes/functions.php:1137
1162
  msgid "Clear All Statistics Data"
1163
  msgstr "Pobriši Vse Podatke o Statistiki"
1164
 
1165
+ #: includes/functions-check-now.php:921 includes/functions.php:1171
1166
  msgid "Toggle country/city editor"
1167
  msgstr "Preklopi urejevalnik držav/mest"
1168
 
1169
+ #: includes/functions-check-now.php:927 includes/functions.php:1177
1170
  msgid "IP Addresses"
1171
  msgstr "IP Naslovi"
1172
 
1173
+ #: includes/functions-check-now.php:930 includes/functions.php:1180
1174
  msgid "Toggle IP address editor"
1175
  msgstr "Preklopi urejevalnik IP nslovov"
1176
 
1177
+ #: includes/functions-check-now.php:933 includes/functions.php:1183
1178
  msgid ""
1179
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1180
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1190
  msgid "Whitelist IP addresses"
1191
  msgstr "Beli seznam IP naslovov"
1192
 
1193
+ #: includes/functions-check-now.php:952 includes/functions.php:1199
1194
  msgid "Countries"
1195
  msgstr "Države"
1196
 
1197
+ #: includes/functions-check-now.php:953 includes/functions.php:1200
1198
  msgid "Cities"
1199
  msgstr "Mesta"
1200
 
1201
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1202
+ #: includes/functions.php:1204 includes/functions.php:4806
1203
  msgid "Toggle country editor"
1204
  msgstr "Preklopi urejevalnik držav"
1205
 
1206
+ #: includes/functions-check-now.php:960 includes/functions.php:1207
1207
  msgid "Toggle city editor"
1208
  msgstr "Preklopi urejevalnik mest"
1209
 
1210
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1211
+ #: includes/functions.php:1211 includes/functions.php:4809
1212
  msgid "Comma separated country ISO Alpha-2 codes"
1213
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1214
 
1221
  msgstr "Beli seznam držav"
1222
 
1223
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1224
+ #: includes/functions.php:1788 includes/functions.php:2123
1225
  msgid "Enter license key"
1226
  msgstr "Vnesite licenčni ključ"
1227
 
1228
  #. translators: %s: Ad Inserter Pro
1229
+ #: includes/functions-check-now.php:1389 includes/functions.php:1794
1230
  msgid ""
1231
  "%s license key is not set. Plugin functionality is limited and updates are "
1232
  "disabled."
1235
  "posodobitve onemogočene."
1236
 
1237
  #. translators: %s: Ad Inserter Pro
1238
+ #: includes/functions-check-now.php:1403 includes/functions.php:1808
1239
  msgid "Warning: %s plugin update server is not accessible"
1240
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1241
 
1242
  #. translators: updates are not available
1243
+ #: includes/functions-check-now.php:1405 includes/functions.php:1810
1244
  msgid "updates"
1245
  msgstr "posodobitve"
1246
 
1247
  #. translators: updates are not available
1248
+ #: includes/functions-check-now.php:1407 includes/functions.php:1812
1249
  msgid "are not available"
1250
  msgstr "niso na razpolago"
1251
 
1252
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1253
+ #: includes/functions.php:1817 includes/functions.php:2132
1254
  msgid "Check license key"
1255
  msgstr "Preverite licenčni ključ"
1256
 
1257
  #. translators: %s: Ad Inserter Pro
1258
+ #: includes/functions-check-now.php:1418 includes/functions.php:1823
1259
  msgid "Invalid %s license key."
1260
  msgstr "Neveljaven %s licenčni ključ."
1261
 
1262
  #. translators: %s: Ad Inserter Pro
1263
+ #: includes/functions-check-now.php:1427 includes/functions.php:1832
1264
  msgid "%s license expired. Plugin updates are disabled."
1265
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1266
 
1267
+ #: includes/functions-check-now.php:1428 includes/functions.php:1833
1268
  msgid "Renew license"
1269
  msgstr "Obnovite licenco"
1270
 
1271
  #. translators: %s: Ad Inserter Pro
1272
+ #: includes/functions-check-now.php:1436 includes/functions.php:1841
1273
  msgid "%s license overused. Plugin updates are disabled."
1274
  msgstr ""
1275
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1276
 
1277
+ #: includes/functions-check-now.php:1437 includes/functions.php:1842
1278
  msgid "Manage licenses"
1279
  msgstr "Upravljajte z licencami"
1280
 
1281
+ #: includes/functions-check-now.php:1437 includes/functions.php:1842
1282
  msgid "Upgrade license"
1283
  msgstr "Nadgradite licenco"
1284
 
1285
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1286
+ #: includes/functions-check-now.php:1684 includes/functions.php:2125
1287
  msgid ""
1288
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1289
  "limited and updates are disabled."
1292
  "so omejene in posodobitve onemogočene."
1293
 
1294
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1295
+ #: includes/functions-check-now.php:1693 includes/functions.php:2134
1296
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1297
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1298
 
1299
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1300
+ #: includes/functions-check-now.php:1709 includes/functions.php:2150
1301
  msgid ""
1302
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1303
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1307
  "pogrešate. %3$s"
1308
 
1309
  #. translators: 1, 3: HTML tags, 2: percentage
1310
+ #: includes/functions-check-now.php:1716 includes/functions.php:2157
1311
  msgid ""
1312
  "During the license period and 30 days after the license has expired we offer "
1313
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1315
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1316
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1317
 
1318
+ #: includes/functions-check-now.php:1726 includes/functions.php:2167
1319
  msgid "No, thank you."
1320
  msgstr "Ne, hvala."
1321
 
1322
+ #: includes/functions-check-now.php:1729 includes/functions.php:2170
1323
  msgid "Not now, maybe later."
1324
  msgstr "Ne zdaj, mogoče kasneje."
1325
 
1326
+ #: includes/functions-check-now.php:1743 includes/functions.php:2184
1327
  msgid "Renew the licence"
1328
  msgstr "Obnovi licenco"
1329
 
1330
+ #: includes/functions-check-now.php:1745 includes/functions.php:2186
1331
  msgid "Update license status"
1332
  msgstr "Posodobi status licence"
1333
 
1334
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1335
+ #: includes/functions-check-now.php:1756 includes/functions.php:2199
1336
  msgid ""
1337
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1338
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1342
  "Nadgradite licenco %7$s"
1343
 
1344
  #. Translators: %s: HTML tag
1345
+ #: includes/functions-check-now.php:1778 includes/functions.php:2259
1346
  msgid "Warning: %s MaxMind IP geolocation database not found."
1347
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1348
 
1349
+ #: includes/functions-check-now.php:2331 includes/functions.php:2941
1350
  msgid "Geolocation"
1351
  msgstr "Geolokacija"
1352
 
1353
+ #: includes/functions-check-now.php:2335 includes/functions.php:2945
1354
+ #: settings.php:4499
1355
  msgid "Exceptions"
1356
  msgstr "Izjeme"
1357
 
1358
+ #: includes/functions-check-now.php:2340 includes/functions.php:2950
1359
  msgid "Multisite"
1360
  msgstr "Multisite"
1361
 
1362
+ #: includes/functions-check-now.php:2345 includes/functions.php:2955
1363
+ #: settings.php:4505
1364
  msgid "Tracking"
1365
  msgstr "Sledenje"
1366
 
1367
  #. translators: %d: days, hours, minutes
1368
+ #: includes/functions-check-now.php:2376 includes/functions.php:2989
1369
  msgid "Scheduled in %d days %d hours %d minutes"
1370
  msgstr "Planirano v %d dneh %d urah %d minutah"
1371
 
1372
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1373
  #. HTML code for long dash separator
1374
+ #: includes/functions-check-now.php:2385 includes/functions.php:2998
1375
  msgid "Active %s expires in %d days %d hours %d minutes"
1376
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1377
 
1378
+ #: includes/functions-check-now.php:2389 includes/functions.php:3002
1379
  msgid "Expired"
1380
  msgstr "Poteklo"
1381
 
1382
+ #: includes/functions-check-now.php:2397 includes/functions.php:3028
1383
+ #: settings.php:1551 settings.php:1566 settings.php:1688 settings.php:2282
1384
  msgid "and"
1385
  msgstr "in"
1386
 
1387
+ #: includes/functions-check-now.php:2400 includes/functions.php:3010
1388
  msgid "fallback"
1389
  msgstr "rezerva"
1390
 
1391
+ #: includes/functions-check-now.php:2401 includes/functions.php:3011
1392
  msgid "Block to be used when scheduling expires"
1393
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1394
 
1395
+ #: includes/functions-check-now.php:2426 includes/functions.php:3050
1396
  msgid "Load in iframe"
1397
  msgstr "Naloži v iframe-u"
1398
 
1399
+ #: includes/functions-check-now.php:2430 includes/functions.php:3054
1400
+ #: includes/placeholders.php:387 settings.php:1149 settings.php:2309
1401
  msgid "Width"
1402
  msgstr "Širina"
1403
 
1404
+ #: includes/functions-check-now.php:2431 includes/functions.php:3055
1405
  msgid "iframe width, empty means full width (100%)"
1406
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1407
 
1408
+ #: includes/functions-check-now.php:2437 includes/functions.php:3061
1409
+ #: includes/placeholders.php:382 settings.php:1155 settings.php:2313
1410
  msgid "Height"
1411
  msgstr "Višina"
1412
 
1413
+ #: includes/functions-check-now.php:2438 includes/functions.php:3062
1414
  msgid "iframe height, empty means adjust it to iframe content height"
1415
  msgstr ""
1416
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1417
 
1418
+ #: includes/functions-check-now.php:2445 includes/functions.php:3069
1419
  msgid "Ad label in iframe"
1420
  msgstr "Oznaka oglasa v iframe-u"
1421
 
1422
+ #: includes/functions-check-now.php:2450 includes/functions.php:3074
1423
  msgid "Preview iframe code"
1424
  msgstr "Predpreglej kodo iframe"
1425
 
1426
+ #: includes/functions-check-now.php:2450 includes/functions.php:3074
1427
+ #: includes/preview.php:2367 settings.php:1184 settings.php:3043
1428
  msgid "Preview"
1429
  msgstr "Predogled"
1430
 
1431
+ #: includes/functions-check-now.php:2464 includes/functions.php:3090
1432
+ #: settings.php:4506
1433
  msgid "Limits"
1434
  msgstr "Omejitve"
1435
 
1436
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1437
+ #: includes/functions-check-now.php:4430 includes/functions.php:3095
1438
+ #: includes/functions.php:6667 includes/functions.php:6732 settings.php:2455
1439
  msgid "Ad Blocking"
1440
  msgstr "Blokiranje Oglasov"
1441
 
1442
  #. translators: 1, 2 and 3, 4: HTML tags
1443
+ #: includes/functions-check-now.php:2478 includes/functions.php:3106
1444
  msgid ""
1445
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1446
  "for tracking!"
1450
 
1451
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1452
  #. header
1453
+ #: includes/functions-check-now.php:2487 includes/functions.php:3115
1454
  msgid ""
1455
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1456
  "enabled and automatic insertion %6$s!"
1458
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1459
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1460
 
1461
+ #: includes/functions-check-now.php:2554 includes/functions.php:3188
1462
  msgid "Click fraud protection is globally disabled"
1463
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1464
 
1467
  msgstr "Največje število klikov na časovno enoto ni definirano"
1468
 
1469
  #. Translators: Max n impressions
1470
+ #: includes/functions-check-now.php:2572 includes/functions.php:3202
1471
  msgid "General limits"
1472
  msgstr "Splošne omejitve"
1473
 
1474
  #. Translators: Max n impressions per x days
1475
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1476
+ #: includes/functions-check-now.php:2675 includes/functions.php:3208
1477
+ #: includes/functions.php:3220 includes/functions.php:3305
1478
  msgid "Current value"
1479
  msgstr "Trenutna vrednost"
1480
 
1490
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1491
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1492
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1493
+ #: includes/functions.php:3227 includes/functions.php:3237
1494
+ #: includes/functions.php:3256 includes/functions.php:3266
1495
+ #: includes/functions.php:3312 includes/functions.php:3321
1496
+ #: includes/functions.php:3339 includes/functions.php:3348 settings.php:2194
1497
  msgid "Max"
1498
  msgstr "Največ"
1499
 
1500
+ #: includes/functions-check-now.php:2598 includes/functions.php:3228
1501
  msgid ""
1502
  "Maximum number of impressions for this block. Empty means no general "
1503
  "impression limit."
1511
  #. Translators: Max n impressions per x days
1512
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1513
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1514
+ #: includes/functions.php:3230 includes/functions.php:3240
1515
+ #: includes/functions.php:3315 includes/functions.php:3324
1516
  msgid "impression"
1517
  msgid_plural "impressions"
1518
  msgstr[0] "prikaz"
1520
  msgstr[2] "prikazi"
1521
  msgstr[3] "prikazov"
1522
 
1523
+ #: includes/functions-check-now.php:2608 includes/functions.php:3238
1524
  msgid ""
1525
  "Maximum number of impressions per time period. Empty means no time limit."
1526
  msgstr ""
1533
  #. Translators: Max n clicks per x days
1534
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1535
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1536
+ #: includes/functions.php:3244 includes/functions.php:3273
1537
+ #: includes/functions.php:3328 includes/functions.php:3355
1538
+ #: includes/functions.php:5076
1539
  msgid "per"
1540
  msgstr "na"
1541
 
1542
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1543
+ #: includes/functions.php:3245 includes/functions.php:3274
1544
  msgid "Time period in days. Empty means no time limit."
1545
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1546
 
1552
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1553
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1554
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1555
+ #: includes/functions.php:3247 includes/functions.php:3276
1556
+ #: includes/functions.php:3331 includes/functions.php:3358
1557
+ #: includes/functions.php:3490 includes/functions.php:5079
1558
+ #: includes/functions.php:5089 strings.php:219 strings.php:220 strings.php:221
1559
  #: strings.php:222 strings.php:223 strings.php:224
1560
  msgid "day"
1561
  msgid_plural "days"
1564
  msgstr[2] "dni"
1565
  msgstr[3] "dni"
1566
 
1567
+ #: includes/functions-check-now.php:2627 includes/functions.php:3257
1568
  msgid ""
1569
  "Maximum number of clicks on this block. Empty means no general click limit."
1570
  msgstr ""
1577
  #. Translators: Max n clicks per x days
1578
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1579
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1580
+ #: includes/functions-check-now.php:4578 includes/functions.php:3259
1581
+ #: includes/functions.php:3269 includes/functions.php:3342
1582
+ #: includes/functions.php:3351 includes/functions.php:5076
1583
+ #: includes/functions.php:7007
1584
  msgid "click"
1585
  msgid_plural "clicks"
1586
  msgstr[0] "klik"
1588
  msgstr[2] "kliki"
1589
  msgstr[3] "klikov"
1590
 
1591
+ #: includes/functions-check-now.php:2637 includes/functions.php:3267
1592
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1593
  msgstr ""
1594
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1595
  "omejitev."
1596
 
1597
+ #: includes/functions-check-now.php:2662 includes/functions.php:3292
1598
  msgid "Individual visitor limits"
1599
  msgstr "Omejitve posameznih obiskovalcev"
1600
 
1601
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1602
+ #: includes/functions.php:3296 includes/functions.php:3298
1603
  msgid ""
1604
  "When specified number of clicks on this block for a visitor will be reached "
1605
  "in the specified time period, all blocks that have click fraud protection "
1611
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1612
  "pred goljufijo s kliki."
1613
 
1614
+ #: includes/functions-check-now.php:2668 includes/functions.php:3298
1615
  msgid "Trigger click fraud protection"
1616
  msgstr "Sproži zaščito pred goljufijo s kliki"
1617
 
1618
+ #: includes/functions-check-now.php:2683 includes/functions.php:3313
1619
  msgid ""
1620
  "Maximum number of impressions of this block for each visitor. Empty means no "
1621
  "impression limit."
1623
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1624
  "pomeni brez omejitev prikazov."
1625
 
1626
+ #: includes/functions-check-now.php:2692 includes/functions.php:3322
1627
  msgid ""
1628
  "Maximum number of impressions per time period for each visitor. Empty means "
1629
  "no impression limit per time period for visitors."
1632
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1633
 
1634
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1635
+ #: includes/functions.php:3329 includes/functions.php:3356
1636
+ #: includes/functions.php:5079
1637
  msgid ""
1638
  "Time period in days. Use decimal value (with decimal point) for shorter "
1639
  "periods. Empty means no time limit."
1641
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1642
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1643
 
1644
+ #: includes/functions-check-now.php:2710 includes/functions.php:3340
1645
  msgid ""
1646
  "Maximum number of clicks on this block for each visitor. Empty means no "
1647
  "click limit."
1649
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1650
  "brez omejitev klikov."
1651
 
1652
+ #: includes/functions-check-now.php:2719 includes/functions.php:3349
1653
+ #: includes/functions.php:5076
1654
  msgid ""
1655
  "Maximum number of clicks per time period for each visitor. Empty means no "
1656
  "click limit per time period for visitors."
1658
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1659
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1660
 
1661
+ #: includes/functions-check-now.php:2745 includes/functions.php:3399
1662
  msgid "When ad blocking is detected"
1663
  msgstr "Ko je blokiranje oglasov zaznano"
1664
 
1665
+ #: includes/functions-check-now.php:2754 includes/functions.php:3408
1666
  msgid "replacement"
1667
  msgstr "nadomestek"
1668
 
1669
+ #: includes/functions-check-now.php:2755 includes/functions.php:3409
1670
  msgid "Block to be shown when ad blocking is detected"
1671
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1672
 
1673
+ #: includes/functions-check-now.php:2756 includes/functions.php:3410
1674
  msgctxt "replacement"
1675
  msgid "None"
1676
  msgstr "Noben"
1677
 
1678
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1679
+ #: includes/functions.php:3427 includes/functions.php:8414
1680
  msgid "Close button"
1681
  msgstr "Gumb Zapri"
1682
 
1683
+ #: includes/functions-check-now.php:2825 includes/functions.php:3481
1684
  msgid "Auto close after"
1685
  msgstr "Ssamodejno zapri po"
1686
 
1687
+ #: includes/functions-check-now.php:2826 includes/functions.php:3482
1688
  msgid ""
1689
  "Time in seconds in which the ad will automatically close. Leave empty to "
1690
  "disable auto closing."
1693
  "izključitev samodejnega zapiranja."
1694
 
1695
  #. Translators: Don't show for x days
1696
+ #: includes/functions-check-now.php:2831 includes/functions.php:3487
1697
  msgid "Don't show for"
1698
  msgstr "Ne prikaži"
1699
 
1700
+ #: includes/functions-check-now.php:2832 includes/functions.php:3488
1701
  msgid ""
1702
  "Time in days in which closed ad will not be shown again. Use decimal value "
1703
  "(with decimal point) for shorter time period or leave empty to show it again "
1708
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1709
 
1710
  #. Translators: Delay showing for x pageviews
1711
+ #: includes/functions-check-now.php:2852 includes/functions.php:3510
1712
+ #: includes/functions.php:3516
1713
  msgid "Delay showing for"
1714
  msgstr "Zakasni prikaz za"
1715
 
1716
+ #: includes/functions-check-now.php:2853 includes/functions.php:3517
1717
  msgid ""
1718
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1719
  "empty to insert the code for the first pageview."
1724
  #. Translators: Delay showing for x pageviews
1725
  #. Translators: Show every x pageviews
1726
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1727
+ #: includes/functions.php:3519 includes/functions.php:3526
1728
  msgid "pageview"
1729
  msgid_plural "pageviews"
1730
  msgstr[0] "ogled strani"
1733
  msgstr[3] "ogledov strani"
1734
 
1735
  #. Translators: Show every x pageviews
1736
+ #: includes/functions-check-now.php:2859 includes/functions.php:3523
1737
  msgid "Show every"
1738
  msgid_plural "Show every"
1739
  msgstr[0] "Prikaži vsak"
1741
  msgstr[2] "Prikaži vsake"
1742
  msgstr[3] "Prikaži vsakih"
1743
 
1744
+ #: includes/functions-check-now.php:2860 includes/functions.php:3524
1745
  msgid ""
1746
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1747
  "for every pageview."
1749
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1750
  "vstavljanje kode pri vsakem ogledu strani."
1751
 
1752
+ #: includes/functions-check-now.php:2879 includes/functions.php:3549
1753
+ #: settings.php:914
1754
  msgid "Lazy loading"
1755
  msgstr "Leno nalaganje"
1756
 
1757
  #. Translators: %s MaxMind
1758
+ #: includes/functions-check-now.php:2936 includes/functions.php:4730
1759
  msgid "This product includes GeoLite2 data created by %s"
1760
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1761
 
1762
+ #: includes/functions-check-now.php:2947 includes/functions.php:4743
1763
  msgid "IP geolocation database"
1764
  msgstr "Podatkovna baza za IP geolokacijo"
1765
 
1766
+ #: includes/functions-check-now.php:2950 includes/functions.php:4746
1767
  msgid "Select IP geolocation database."
1768
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1769
 
1770
+ #: includes/functions-check-now.php:2961 includes/functions.php:4757
1771
  msgid "Automatic database updates"
1772
  msgstr "Samodejna posodobitev podatkovne baze"
1773
 
1774
+ #: includes/functions-check-now.php:2964 includes/functions.php:4760
1775
  msgid ""
1776
  "Automatically download and update free GeoLite2 IP geolocation database by "
1777
  "MaxMind"
1779
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1780
  "podatkovno bazo MaxMind"
1781
 
1782
+ #: includes/functions-check-now.php:2972 includes/functions.php:4777
1783
  msgid "Database"
1784
  msgstr "Podatkovna baza"
1785
 
1786
+ #: includes/functions-check-now.php:2975 includes/functions.php:4780
1787
  msgid ""
1788
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1789
  msgstr ""
1791
  "podatkovne baze"
1792
 
1793
  #. translators: %d: group number
1794
+ #: includes/functions-check-now.php:2993 includes/functions.php:4798
1795
  msgid "Group %d"
1796
  msgstr "Skupina %d"
1797
 
1798
+ #: includes/functions-check-now.php:2999 includes/functions.php:4804
1799
  msgid "countries"
1800
  msgstr "države"
1801
 
1802
+ #: includes/functions-check-now.php:3044 includes/functions.php:4849
1803
  msgid ""
1804
  "Enable impression and click tracking. You also need to enable tracking for "
1805
  "each block you want to track."
1811
  msgid "Generate report"
1812
  msgstr "Generiraj poročilo"
1813
 
1814
+ #: includes/functions-check-now.php:3059 includes/functions.php:4868
1815
  msgid "Impression and Click Tracking"
1816
  msgstr "Sledenje Prikazov in Klikov"
1817
 
1818
+ #: includes/functions-check-now.php:3060 includes/functions.php:4869
1819
+ #: settings.php:2922
1820
  msgctxt "ad blocking detection"
1821
  msgid "NOT ENABLED"
1822
  msgstr "NI OMOGOČENO"
1823
 
1824
+ #: includes/functions-check-now.php:3076 includes/functions.php:4885
1825
  msgid "Internal"
1826
  msgstr "Notranje"
1827
 
1828
+ #: includes/functions-check-now.php:3080 includes/functions.php:4889
1829
  msgid "Track impressions and clicks with internal tracking and statistics"
1830
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1831
 
1832
+ #: includes/functions-check-now.php:3085 includes/functions.php:4894
1833
  msgid "External"
1834
  msgstr "Zunanje"
1835
 
1836
+ #: includes/functions-check-now.php:3089 includes/functions.php:4898
1837
  msgid ""
1838
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1839
  "code installed)"
1841
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1842
  "kodo za sledenje)"
1843
 
1844
+ #: includes/functions-check-now.php:3094 includes/functions.php:4903
1845
  msgid "Track Pageviews"
1846
  msgstr "Sledi Ogledom Strani"
1847
 
1848
+ #: includes/functions-check-now.php:3100 includes/functions.php:4909
1849
  msgid "Track Pageviews by Device (as configured for viewports)"
1850
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1851
 
1852
+ #: includes/functions-check-now.php:3110 includes/functions.php:4919
1853
  msgid "Track for Logged in Users"
1854
  msgstr "Sledi za Prijavljene Upor."
1855
 
1856
+ #: includes/functions-check-now.php:3116 includes/functions.php:4925
1857
  msgid "Track impressions and clicks from logged in users"
1858
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1859
 
1860
+ #: includes/functions-check-now.php:3126 includes/functions.php:4935
1861
  msgid "Click Detection"
1862
  msgstr "Zaznavanje klikov"
1863
 
1864
+ #: includes/functions-check-now.php:3132 includes/functions.php:4941
1865
  msgid ""
1866
  "Standard method detects clicks only on banners with links, Advanced method "
1867
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1869
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1870
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1871
 
1872
+ #: includes/functions-check-now.php:3151 includes/functions.php:5062
1873
  msgid "Click fraud protection"
1874
  msgstr "Zaščita pred goljufijo s kliki"
1875
 
1876
+ #: includes/functions-check-now.php:3155 includes/functions.php:5066
1877
  msgid "Globally enable click fraud protection for selected blocks."
1878
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1879
 
1880
+ #: includes/functions-check-now.php:3161 includes/functions.php:5086
1881
  msgid "Protection time"
1882
  msgstr "Čas zaščite"
1883
 
1884
+ #: includes/functions-check-now.php:3162 includes/functions.php:5089
1885
  msgid ""
1886
  "Time period in days in which blocks with enabled click fraud protection will "
1887
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1890
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1891
  "za krajša obdobja."
1892
 
1893
+ #: includes/functions-check-now.php:3181 includes/functions.php:4969
1894
  msgid "Report header image"
1895
  msgstr "Slika v glavi poročila"
1896
 
1904
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1905
  "ponastavitev na privzeto sliko."
1906
 
1907
+ #: includes/functions-check-now.php:3185 includes/functions.php:4973
1908
  #: strings.php:255
1909
  msgid "Select or upload header image"
1910
  msgstr "Izberi ali naloži sliko glave"
1911
 
1912
+ #: includes/functions-check-now.php:3190 includes/functions.php:4978
1913
  msgid "Report header title"
1914
  msgstr "Naslov v glavi poročila"
1915
 
1916
+ #: includes/functions-check-now.php:3193 includes/functions.php:4981
1917
  msgid ""
1918
  "Title to be displayed in the header of the statistics report. Text or HTML "
1919
  "code, clear to reset to default text."
1921
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1922
  "pobrišite za ponastavitev na privzeto besedilo."
1923
 
1924
+ #: includes/functions-check-now.php:3198 includes/functions.php:4986
1925
  msgid "Report header description"
1926
  msgstr "Opis v glavi poročila"
1927
 
1928
+ #: includes/functions-check-now.php:3201 includes/functions.php:4989
1929
  msgid ""
1930
  "Description to be displayed in the header of the statistics report. Text or "
1931
  "HTML code, clear to reset to default text."
1933
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1934
  "pobrišite za ponastavitev na privzeto besedilo."
1935
 
1936
+ #: includes/functions-check-now.php:3206 includes/functions.php:4994
1937
  msgid "Report footer"
1938
  msgstr "Noga poročila"
1939
 
1940
+ #: includes/functions-check-now.php:3209 includes/functions.php:4997
1941
  msgid ""
1942
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1943
  "to default text."
1945
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1946
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1947
 
1948
+ #: includes/functions-check-now.php:3214 includes/functions.php:5002
1949
  msgid "Public report key"
1950
  msgstr "Ključ za javno poročilo"
1951
 
1952
+ #: includes/functions-check-now.php:3217 includes/functions.php:5005
1953
  msgid "String to generate unique report IDs. Clear to reset to default value."
1954
  msgstr ""
1955
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1956
  "privzeto vrednost."
1957
 
1958
+ #: includes/functions-check-now.php:3249 includes/functions.php:5146
1959
  msgid "Are you sure you want to clear all exceptions for block"
1960
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1961
 
1962
+ #: includes/functions-check-now.php:3250 includes/functions.php:5147
1963
  msgid "Clear all exceptions for block"
1964
  msgstr "Pobriši vse izjeme za blok"
1965
 
1966
+ #: includes/functions-check-now.php:3257 includes/functions.php:5160
1967
  msgid "Are you sure you want to clear all exceptions?"
1968
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1969
 
1970
+ #: includes/functions-check-now.php:3257 includes/functions.php:5160
1971
  msgid "Clear all exceptions for all blocks"
1972
  msgstr "Pobriši vse izjeme za vse bloke"
1973
 
1974
+ #: includes/functions-check-now.php:3262 includes/functions.php:5167
1975
+ #: settings.php:4082 settings.php:4587
1976
  msgid "Type"
1977
  msgstr "Vrsta"
1978
 
1979
+ #: includes/functions-check-now.php:3280 includes/functions.php:5186
1980
+ #: includes/functions.php:5187
1981
  msgid "View"
1982
  msgstr "Poglej"
1983
 
1984
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1985
+ #: includes/functions-check-now.php:3292 includes/functions.php:5188
1986
+ #: includes/functions.php:5202 includes/functions.php:5206
1987
+ #: includes/placeholders.php:351 includes/preview.php:2737 settings.php:1427
1988
+ #: settings.php:3837
1989
  msgid "Edit"
1990
  msgstr "Uredi"
1991
 
1992
+ #: includes/functions-check-now.php:3311 includes/functions.php:5234
1993
  msgid "Are you sure you want to clear all exceptions for"
1994
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1995
 
1996
+ #: includes/functions-check-now.php:3312 includes/functions.php:5235
1997
  msgid "Clear all exceptions for"
1998
  msgstr "Pobriši vse izjeme za"
1999
 
2000
+ #: includes/functions-check-now.php:3325 includes/functions.php:5251
2001
  msgid "No exceptions"
2002
  msgstr "Brez izjem"
2003
 
2004
  #. translators: %s: Ad Inserter Pro
2005
+ #: includes/functions-check-now.php:3336 includes/functions.php:5262
2006
  msgid "%s options for network blogs"
2007
  msgstr "%s izbire za omrežne bloge"
2008
 
2009
  #. translators: %s: Ad Inserter Pro
2010
+ #: includes/functions-check-now.php:3341 includes/functions.php:5267
2011
  msgid "Enable %s widgets for sub-sites"
2012
  msgstr "Omogoči %s gradnik za pod-spletišča"
2013
 
2014
+ #: includes/functions-check-now.php:3341 includes/functions.php:5267
2015
  msgid "Widgets"
2016
  msgstr "Gradniki"
2017
 
2018
+ #: includes/functions-check-now.php:3346 includes/functions.php:5272
2019
  msgid "Enable PHP code processing for sub-sites"
2020
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
2021
 
2022
+ #: includes/functions-check-now.php:3346 includes/functions.php:5272
2023
  msgid "PHP Processing"
2024
  msgstr "PHP Procesiranje"
2025
 
2026
  #. translators: %s: Ad Inserter Pro
2027
+ #: includes/functions-check-now.php:3351 includes/functions.php:5277
2028
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2029
  msgstr ""
2030
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2031
 
2032
+ #: includes/functions-check-now.php:3351 includes/functions.php:5277
2033
  msgid "Post/Page exceptions"
2034
  msgstr "Izjeme prispevkov/strani"
2035
 
2036
  #. translators: %s: Ad Inserter Pro
2037
+ #: includes/functions-check-now.php:3356 includes/functions.php:5282
2038
  msgid "Enable %s settings page for sub-sites"
2039
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2040
 
2041
+ #: includes/functions-check-now.php:3356 includes/functions.php:5282
2042
  msgid "Settings page"
2043
  msgstr "Stran z nastavitvami"
2044
 
2045
  #. translators: %s: Ad Inserter Pro
2046
+ #: includes/functions-check-now.php:3361 includes/functions.php:5287
2047
  msgid "Enable %s settings of main site to be used for all blogs"
2048
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2049
 
2050
+ #: includes/functions-check-now.php:3361 includes/functions.php:5287
2051
  msgid "Main site settings used for all blogs"
2052
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2053
 
2054
+ #: includes/functions-check-now.php:3372 includes/functions.php:5305
2055
+ #: settings.php:2921
2056
  msgid "Ad Blocking Detection"
2057
  msgstr "Zaznavanje Blokiranja Oglasov"
2058
 
2059
+ #: includes/functions-check-now.php:3378 includes/functions.php:5311
2060
  msgid ""
2061
  "Standard method is reliable but should be used only if Advanced method does "
2062
  "not work. Advanced method recreates files used for detection with random "
2069
  "dostopna"
2070
 
2071
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
2072
+ #: includes/functions-check-now.php:4140 includes/functions.php:6298
2073
+ #: includes/functions.php:6406 includes/functions.php:6431
2074
  msgid "AD BLOCKING"
2075
  msgstr "BLOKIRANJE OGLASOV"
2076
 
2077
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
2078
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
2079
+ #: includes/functions.php:6299 includes/functions.php:6342
2080
+ #: includes/functions.php:6400 includes/functions.php:6432
2081
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2082
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2083
 
2084
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
2085
+ #: includes/functions-check-now.php:4147 includes/functions.php:6302
2086
+ #: includes/functions.php:6399 includes/functions.php:6438
2087
  msgid "NO AD BLOCKING"
2088
  msgstr "NI BLOKIRANJA OGLASOV"
2089
 
2090
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
2091
+ #: includes/functions.php:6341 includes/functions.php:6348
2092
  msgid "AD BLOCKING REPLACEMENT"
2093
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2094
 
2095
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
2096
+ #: includes/functions.php:6520 includes/functions.php:6731
2097
  msgid "Pageviews"
2098
  msgstr "Ogledi strani"
2099
 
2100
+ #: includes/functions-check-now.php:4366 includes/functions.php:6666
2101
  msgctxt "Version"
2102
  msgid "Unknown"
2103
  msgstr "Neznana"
2104
 
2105
+ #: includes/functions-check-now.php:4366 includes/functions.php:6666
2106
  msgctxt "Times"
2107
  msgid "DISPLAYED"
2108
  msgstr "PRIKAZANO"
2109
 
2110
+ #: includes/functions-check-now.php:4366 includes/functions.php:6666
2111
  msgid "No version"
2112
  msgstr "Brez različice"
2113
 
2114
+ #: includes/functions-check-now.php:4367 includes/functions.php:6667
2115
  msgctxt "Times"
2116
  msgid "BLOCKED"
2117
  msgstr "BLOKIRANO"
2118
 
2119
+ #: includes/functions-check-now.php:4429 includes/functions.php:6731
2120
  msgid "Impressions"
2121
  msgstr "Prikazi"
2122
 
2123
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
2124
+ #: includes/functions-check-now.php:4486 includes/functions.php:6732
2125
+ #: includes/functions.php:6733 includes/functions.php:6915
2126
  msgid "Clicks"
2127
  msgstr "Kliki"
2128
 
2129
+ #: includes/functions-check-now.php:4431 includes/functions.php:6733
2130
  msgid "events"
2131
  msgstr "dogodki"
2132
 
2133
+ #: includes/functions-check-now.php:4432 includes/functions.php:6734
2134
  msgid "Ad Blocking Share"
2135
  msgstr "Delež blokiranja oglasov"
2136
 
2137
  #. translators: CTR as Click Through Rate
2138
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
2139
+ #: includes/functions.php:6734 includes/functions.php:6921
2140
  msgid "CTR"
2141
  msgstr "CTR"
2142
 
2143
+ #: includes/functions-check-now.php:4574 includes/functions.php:7003
2144
  msgid "pageviews"
2145
  msgid_plural "pageviews"
2146
  msgstr[0] "ogled strani"
2148
  msgstr[2] "oglede strani"
2149
  msgstr[3] "ogledov strani"
2150
 
2151
+ #: includes/functions-check-now.php:4574 includes/functions.php:7003
2152
  msgid "impressions"
2153
  msgid_plural "impressions"
2154
  msgstr[0] "prikaz"
2156
  msgstr[2] "prikazi"
2157
  msgstr[3] "prikazov"
2158
 
2159
+ #: includes/functions-check-now.php:4578 includes/functions.php:7007
2160
  msgid "event"
2161
  msgid_plural "events"
2162
  msgstr[0] "dogodek"
2164
  msgstr[2] "dogodki"
2165
  msgstr[3] "dogodkov"
2166
 
2167
+ #: includes/functions-check-now.php:4673 includes/functions.php:7102
2168
  msgctxt "Pageviews / Impressions"
2169
  msgid "Average"
2170
  msgstr "Povprečni"
2171
 
2172
+ #: includes/functions-check-now.php:4694 includes/functions.php:7123
2173
  msgctxt "Ad Blocking / Clicks"
2174
  msgid "Average"
2175
  msgstr "Povprečno"
2176
 
2177
+ #: includes/functions-check-now.php:4718 includes/functions.php:7147
2178
  msgctxt "Ad Blocking Share / CTR"
2179
  msgid "Average"
2180
  msgstr "Povprečni"
2181
 
2182
  #. Translators: %s: Ad Inserter Pro
2183
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
2184
+ #: includes/functions-check-now.php:5335 includes/functions.php:7445
2185
+ #: includes/functions.php:7542 includes/functions.php:8115 strings.php:204
2186
  msgid "%s Report"
2187
  msgstr "%s Poročilo"
2188
 
2189
+ #: includes/functions-check-now.php:5241 includes/functions.php:8020
2190
  msgid "for last month"
2191
  msgstr "za zadnji mesec"
2192
 
2193
+ #: includes/functions-check-now.php:5246 includes/functions.php:8025
2194
  msgid "for this month"
2195
  msgstr "za ta mesec"
2196
 
2197
+ #: includes/functions-check-now.php:5251 includes/functions.php:8030
2198
  msgid "for this year"
2199
  msgstr "za to leto"
2200
 
2201
+ #: includes/functions-check-now.php:5256 includes/functions.php:8035
2202
  msgid "for the last 15 days"
2203
  msgstr "za zadnjih 15 dni"
2204
 
2205
+ #: includes/functions-check-now.php:5261 includes/functions.php:8040
2206
  msgid "for the last 30 days"
2207
  msgstr "za zadnjih 30 dni"
2208
 
2209
+ #: includes/functions-check-now.php:5266 includes/functions.php:8045
2210
  msgid "for the last 90 days"
2211
  msgstr "za zadnjih 90 dni"
2212
 
2213
+ #: includes/functions-check-now.php:5271 includes/functions.php:8050
2214
  msgid "for the last 180 days"
2215
  msgstr "za zadnjih 180 dni"
2216
 
2217
+ #: includes/functions-check-now.php:5276 includes/functions.php:8055
2218
  msgid "for the last 365 days"
2219
  msgstr "za zadnjih 365 dni"
2220
 
2221
+ #: includes/functions.php:435
2222
+ msgid "Import plugin settings"
2223
+ msgstr "Uvozite nastavitve vtičnika"
2224
+
2225
+ #: includes/functions.php:443
2226
+ msgid "Load settings from a file"
2227
+ msgstr "Naložite nastavitve iz datoteke"
2228
+
2229
+ #: includes/functions.php:446
2230
+ msgid "Save settings to a file"
2231
+ msgstr "Shranite nastavitve v datoteko"
2232
+
2233
+ #: includes/functions.php:555 includes/functions.php:4856
2234
  msgid "Generate CSV report"
2235
  msgstr "Generiraj CSV poročilo"
2236
 
2237
  #. translators: %s: Ad Inserter Pro
2238
+ #: includes/functions.php:628
2239
  msgid "Invalid %s version. Continue?"
2240
  msgstr "Neveljavna izdaja %s. Nadaljujem?"
2241
 
2242
+ #: includes/functions.php:800
2243
  msgid "Show"
2244
  msgstr "Pokaži"
2245
 
2246
+ #: includes/functions.php:812 includes/functions.php:839
2247
  msgid ""
2248
  "Trigger value: page scroll in %, page scroll in px or element with selector "
2249
  "(#id or .class) scrolls in or out of screen"
2251
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
2252
  "selektorjem (#id ali .razred) se pomakne izven zaslona"
2253
 
2254
+ #: includes/functions.php:826
2255
  msgid "Hide"
2256
  msgstr "Skrij"
2257
 
2258
+ #: includes/functions.php:857 includes/preview.php:2679
2259
  msgid "Background"
2260
  msgstr "Ozadje"
2261
 
2262
  #. translators: %s HTML body tag
2263
+ #: includes/functions.php:864
2264
  msgid "Set %s background"
2265
  msgstr "Nastavi ozadje za %s"
2266
 
2267
+ #: includes/functions.php:877 includes/functions.php:936
2268
  msgid "Image to be used for the background"
2269
  msgstr "Slika, ki bo uporabljena za ozadje"
2270
 
2271
+ #: includes/functions.php:882
2272
  msgid "Color"
2273
  msgstr "Barva"
2274
 
2275
+ #: includes/functions.php:883 includes/preview.php:2498
2276
  msgid "Color to be used for the background"
2277
  msgstr "Barva, ki bo uporabljena za ozadje"
2278
 
2279
+ #: includes/functions.php:886 includes/preview.php:2503
2280
  msgid "Image size"
2281
  msgstr "Velikost slike"
2282
 
2283
+ #: includes/functions.php:896
2284
  msgid "Repeat"
2285
  msgstr "Ponavljanje"
2286
 
2287
+ #: includes/functions.php:909
2288
  msgid "Select image"
2289
  msgstr "Izberi sliko"
2290
 
2291
+ #: includes/functions.php:936
2292
+ msgid "Parallax background"
2293
+ msgstr "Ozadje za paralakso"
2294
+
2295
+ #: includes/functions.php:939
2296
+ msgid "Select background image"
2297
+ msgstr "Izberi sliko ozadja"
2298
+
2299
+ #: includes/functions.php:943
2300
+ msgid "Shift"
2301
+ msgstr "Pomik"
2302
+
2303
+ #: includes/functions.php:944
2304
+ msgid ""
2305
+ "Background image shift in pixels when the block scrolls from top to bottom, "
2306
+ "empty means no shift"
2307
+ msgstr ""
2308
+ "Pomik slike ozadja v točkah, ko se blok pomakne od vrha k dnu, prazno pomeni "
2309
+ "brez pomika"
2310
+
2311
+ #: includes/functions.php:952 settings.php:920
2312
+ msgid "Link"
2313
+ msgstr "Povezava"
2314
+
2315
+ #: includes/functions.php:952
2316
+ msgid "The destination page when the background is clicked"
2317
+ msgstr "Ciljna stran pri kliku na ozadje"
2318
+
2319
+ #: includes/functions.php:954 settings.php:931
2320
+ msgid "Open link in a new tab"
2321
+ msgstr "Odpri povezavo v novem zavihku"
2322
+
2323
+ #: includes/functions.php:957
2324
+ msgid "New tab"
2325
+ msgstr "Nov zavihek"
2326
+
2327
+ #: includes/functions.php:1188 includes/functions.php:1216 settings.php:1814
2328
+ #: settings.php:1837 settings.php:1860 settings.php:1883 settings.php:1906
2329
+ #: settings.php:1929 settings.php:1952 settings.php:1974 settings.php:1996
2330
  msgid "Click to select black or white list"
2331
  msgstr "Klikni za za izbor črnega ali belega seznama"
2332
 
2333
  #. translators: %s: Ad Inserter Pro
2334
+ #: includes/functions.php:1850
2335
  msgid "Invalid %s version."
2336
  msgstr "Neveljavna izdaja %s."
2337
 
2338
+ #: includes/functions.php:1851
2339
  msgid "Check license"
2340
  msgstr "Preverite licenco"
2341
 
2342
+ #: includes/functions.php:1866
2343
  msgid "License"
2344
  msgstr "Licenca"
2345
 
2346
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2347
+ #: includes/functions.php:2211
2348
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2349
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2350
 
2351
  #. Translators: %s: HTML tags
2352
+ #: includes/functions.php:2264
2353
  msgid ""
2354
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2355
  "account %s and create license key."
2357
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2358
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2359
 
2360
+ #: includes/functions.php:3026
2361
  msgid "Start date"
2362
  msgstr "Začetni datum"
2363
 
2364
+ #: includes/functions.php:3026
2365
  msgid "Enter date in format yyyy-mm-dd"
2366
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2367
 
2368
+ #: includes/functions.php:3026
2369
  msgid "empty means every day as defined by hours and days in week"
2370
  msgstr "prazno pomeni vsak dan kot določeno z urami in dnevi v tednu"
2371
 
2372
+ #: includes/functions.php:3027
2373
  msgid "Start time"
2374
  msgstr "Začetni čas"
2375
 
2376
+ #: includes/functions.php:3027
2377
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2378
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2379
 
2380
+ #: includes/functions.php:3029
2381
  msgid "End date"
2382
  msgstr "Končni datum"
2383
 
2384
+ #: includes/functions.php:3030
2385
  msgid "End time"
2386
  msgstr "Končni čas"
2387
 
2388
+ #: includes/functions.php:3033
2389
  msgid "Select wanted days in week"
2390
  msgstr "Izberite želene dneve v tednu"
2391
 
2392
+ #: includes/functions.php:3373
2393
  msgid "Fallback"
2394
  msgstr "Rezerva"
2395
 
2396
+ #: includes/functions.php:3374
2397
  msgid "Block to be used when a limit is reached"
2398
  msgstr "Blok, ki naj bo prikazan, ko je dosežena meja"
2399
 
2400
+ #: includes/functions.php:3398
2401
  msgid "Ad blocking detection is disabled"
2402
  msgstr "Zaznavanje blokiranja oglasov je onemogočeno"
2403
 
2404
+ #: includes/functions.php:3511
2405
  msgid ""
2406
  "Time in ms before the code is inserted (and ad displayed). Leave empty to "
2407
  "insert the code without any additional delay."
2409
  "Čas v ms preden je koda vstavljena (in oglas prikazan). Pustite prazno za "
2410
  "vstavljanje kode brez dodatne zakasnitve."
2411
 
2412
+ #: includes/functions.php:3554
2413
  msgid "Wait for user interaction"
2414
  msgstr "Čakaj na interakcijo uporabnika"
2415
 
2416
+ #: includes/functions.php:3559
2417
  msgid "Protected"
2418
  msgstr "Zaščiten"
2419
 
2420
+ #: includes/functions.php:3562
2421
  msgid "Manual loading"
2422
  msgstr "Ročno nalaganje"
2423
 
2424
+ #: includes/functions.php:3656
2425
  msgid "IP address blocked"
2426
  msgid_plural "IP addresses blocked"
2427
  msgstr[0] "blokiran IP naslov"
2429
  msgstr[2] "blokirani IP naslovi"
2430
  msgstr[3] "blokiranih IP naslovov"
2431
 
2432
+ #: includes/functions.php:3659 includes/functions.php:3708
2433
  msgid "No IP address blocked"
2434
  msgstr "Noben IP naslov ni blokiran"
2435
 
2436
+ #: includes/functions.php:3721
2437
  msgid "Blocked IP address"
2438
  msgstr "Blokirani IP naslovi"
2439
 
2440
+ #: includes/functions.php:3721
2441
  msgid "Country"
2442
  msgstr "Država"
2443
 
2444
+ #: includes/functions.php:3721
2445
  msgid "Time to expiration"
2446
  msgstr "Čas do poteka"
2447
 
2448
+ #: includes/functions.php:3723 strings.php:226
2449
  msgid "Delete"
2450
  msgstr "Pobriši"
2451
 
2452
+ #: includes/functions.php:3738
2453
  msgid "Delete IP address"
2454
  msgstr "Briši IP naslov"
2455
 
2456
+ #: includes/functions.php:4295
2457
  msgid "CONNECTED"
2458
  msgstr "POVEZAN"
2459
 
2460
+ #: includes/functions.php:4296
2461
  msgid "Disconnect website"
2462
  msgstr "Razveži spletno mesto"
2463
 
2464
+ #: includes/functions.php:4312
2465
  msgid "MANAGED BY"
2466
  msgstr "UPRAVLJAN S STRANI"
2467
 
2468
+ #: includes/functions.php:4333
2469
+ msgid "Remote management"
2470
  msgstr "Oddaljeno upravljanje"
2471
 
2472
+ #: includes/functions.php:4337
2473
  msgid "Allow to connect and manage plugin settings"
2474
  msgstr "Dovoli povezavo in upravljanje z nastavitvami vtičnika"
2475
 
2476
+ #: includes/functions.php:4339
2477
  msgid "String to allow plugin management. Clear to reset to default value."
2478
  msgstr ""
2479
  "Niz za dovolitev upravjanja z vtičnikom. Pobrišite za ponastavitev na "
2480
  "privzeto vrednost."
2481
 
2482
+ #: includes/functions.php:4347
2483
  msgid "Check remote IP address"
2484
  msgstr "Preveri oddaljeni IP naslov"
2485
 
2486
+ #: includes/functions.php:4351
2487
  msgid "Check IP address of remote management website"
2488
  msgstr "Preveri IP naslov oddaljenega spletnega mesta za upravljanje"
2489
 
2490
+ #: includes/functions.php:4353
2491
  msgid "Allowed IP addresses of remote management websites"
2492
  msgstr "Dovoljeni IP naslovi oddaljenih spletnih mest za upravljanje"
2493
 
2494
  #. Translators: %s: Ad Inserter Pro
2495
+ #: includes/functions.php:4376
2496
  msgid "Manage %s on other websites"
2497
  msgstr "Upravljajte %s na drugih spletnih mestih"
2498
 
2499
+ #: includes/functions.php:4391
2500
  msgid "Add website"
2501
  msgstr "Dodaj spletno mesto"
2502
 
2503
+ #: includes/functions.php:4395
2504
  msgid "Rearrange website order"
2505
  msgstr "Preuredi vrstni red spletnih mest"
2506
 
2507
+ #: includes/functions.php:4399
2508
  msgid "Cancel changes"
2509
  msgstr "Prekliči spremembe"
2510
 
2511
+ #: includes/functions.php:4403
2512
  msgid "Save changes"
2513
  msgstr "Shrani spremembe"
2514
 
2515
+ #: includes/functions.php:4505 includes/functions.php:4508
2516
+ #: includes/functions.php:4511 includes/functions.php:4516
2517
  msgid "Invalid data received from"
2518
  msgstr "Prejeti neveljavni podatki od"
2519
 
2520
+ #: includes/functions.php:4515 includes/functions.php:4519
2521
  msgid "Error connecting to"
2522
  msgstr "Napaka pri povezovanju na"
2523
 
2524
+ #: includes/functions.php:4515
2525
  msgid "No data received"
2526
  msgstr "Nobenih podatkov ni bilo prejetih"
2527
 
2528
+ #: includes/functions.php:4560
2529
  msgid "Error saving websites"
2530
  msgstr "Napaka pri shranjevanju spletnih mest"
2531
 
2532
+ #: includes/functions.php:4600
2533
  msgid "Can't connect to itself"
2534
  msgstr "Ne morem se povezati nase"
2535
 
2536
+ #: includes/functions.php:4651
2537
  msgid "Connect website"
2538
  msgstr "Pveži spletno mesto"
2539
 
2540
+ #: includes/functions.php:4655
2541
  msgid "Delete website"
2542
  msgstr "Izbriši spletno mesto"
2543
 
2544
+ #: includes/functions.php:4671
2545
  msgid "Key"
2546
  msgstr "Ključ"
2547
 
2548
+ #: includes/functions.php:4689
2549
  msgid "Address"
2550
  msgstr "Naslov"
2551
 
2552
+ #: includes/functions.php:4702
2553
  msgid "No website configured"
2554
  msgstr "Nobeno spletno mesto ni nastavljeno"
2555
 
2556
+ #: includes/functions.php:4703
2557
  msgid "No website matches search keywords"
2558
  msgstr "Nobeno spletno mesto ne ustreza iskalnim ključnim besedam"
2559
 
2560
  #. Translators: %s HTML tags
2561
+ #: includes/functions.php:4732
2562
  msgid "Create and manage %s MaxMind license key %s"
2563
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2564
 
2565
+ #: includes/functions.php:4768
2566
  msgid "MaxMind license key"
2567
  msgstr "MaxMind licenčni ključ"
2568
 
2569
+ #: includes/functions.php:4771
2570
  msgid "Enter license key obtained from MaxMind"
2571
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2572
 
2573
+ #: includes/functions.php:4972
2574
  msgid ""
2575
  "Image or logo to be displayed in the header of the statistics report. "
2576
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2580
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
2581
  "ponastavitev na privzeto sliko."
2582
 
2583
+ #: includes/functions.php:5020
2584
  msgid "Event category"
2585
  msgstr "Kategorija dogodka"
2586
 
2587
+ #: includes/functions.php:5023
2588
  msgid ""
2589
  "Category name used for external tracking events. You can use tags to get the "
2590
  "event, the number or the name of the block that caused the event."
2592
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2593
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2594
 
2595
+ #: includes/functions.php:5028
2596
  msgid "Event action"
2597
  msgstr "Akcija dogodka"
2598
 
2599
+ #: includes/functions.php:5031
2600
  msgid ""
2601
  "Action name used for external tracking events. You can use tags to get the "
2602
  "event, the number or the name of the block that caused the event."
2604
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2605
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2606
 
2607
+ #: includes/functions.php:5036
2608
  msgid "Event label"
2609
  msgstr "Oznaka dogodka"
2610
 
2611
+ #: includes/functions.php:5039
2612
  msgid ""
2613
  "Label name used for external tracking events. You can use tags to get the "
2614
  "event, the number or the name of the block that caused the event."
2616
  "Ime oznake uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2617
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2618
 
2619
+ #: includes/functions.php:5072
2620
  msgid "Global visitor limits"
2621
  msgstr "Globalne omejitve obiskovalca"
2622
 
2623
+ #: includes/functions.php:5095
2624
  msgid "Block IP address"
2625
  msgstr "Blokiraj IP naslov"
2626
 
2627
+ #: includes/functions.php:5100
2628
  msgid "Block visitor's IP address when protection is activated"
2629
  msgstr "Blokiraj obiskovalčev IP naslov, ko je aktivirana zaščita"
2630
 
2631
+ #: includes/functions.php:5102
2632
  msgid "Click to show blocked IP addresses"
2633
  msgstr "Kliknite za prikaz blokiranih IP naslovov"
2634
 
2635
  #. translators: %s: Ad Inserter Pro
2636
+ #: includes/functions.php:5292
2637
  msgid "Show link to %s settings page for each site on the Sites page"
2638
  msgstr ""
2639
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2640
  "Spletišča"
2641
 
2642
  #. translators: %s: Ad Inserter Pro
2643
+ #: includes/functions.php:5292
2644
  msgid "Show link to %s on the Sites page"
2645
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2646
 
2647
+ #: includes/functions.php:5334 settings.php:3219
2648
  msgid ""
2649
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2650
  "tags, processing) by url parameters for non-logged in users. Enable this "
2659
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
2660
  "vedno omogočeno."
2661
 
2662
+ #: includes/functions.php:5336 settings.php:3221
2663
  msgid "Remote debugging"
2664
  msgstr "Oddaljeno razhroščevanje"
2665
 
2666
+ #: includes/functions.php:6814
2667
  msgid "Date"
2668
  msgstr "Datum"
2669
 
2670
+ #: includes/functions.php:7303 includes/functions.php:7314
2671
  msgid "File %s missing."
2672
  msgstr "Datoteka %s ni najdena."
2673
 
2695
  msgid "Placeholder"
2696
  msgstr "Polnilo"
2697
 
2698
+ #: includes/placeholders.php:361 settings.php:987 settings.php:4588
2699
  msgid "Size"
2700
  msgstr "Velikost"
2701
 
2702
+ #: includes/placeholders.php:377 includes/preview.php:2495 settings.php:2318
2703
  msgid "Background color"
2704
  msgstr "Barva ozadja"
2705
 
2788
  msgid "Remove dummy paragraph"
2789
  msgstr "Odstrani testni odstavek"
2790
 
2791
+ #: includes/preview-adb.php:6 includes/preview.php:2355
2792
  msgid "Use current settings"
2793
  msgstr "Uporabi trenutne nastavitve"
2794
 
2815
  msgid "Default"
2816
  msgstr "Privzeto"
2817
 
2818
+ #: includes/preview-adb.php:9 includes/preview.php:2358
2819
  msgid "Close preview window"
2820
  msgstr "Zapri okno predogleda"
2821
 
2828
  msgid "Ad Blocking Detected Message Preview"
2829
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2830
 
2831
+ #: includes/preview-adb.php:360 settings.php:3056
2832
  msgid "Message CSS"
2833
  msgstr "CSS sporočila"
2834
 
2835
+ #: includes/preview-adb.php:365 settings.php:3064
2836
  msgid "Overlay CSS"
2837
  msgstr "CSS prevleke"
2838
 
2839
+ #: includes/preview.php:283
2840
  msgid "Sticky Code Preview"
2841
  msgstr "Predogled Lepljive Kode"
2842
 
2843
+ #: includes/preview.php:283
2844
  msgid "Code Preview"
2845
  msgstr "Predogled Kode"
2846
 
2847
+ #: includes/preview.php:2353
2848
  msgid "Highlight inserted code"
2849
  msgstr "Označi vstavljeno kodo"
2850
 
2851
+ #: includes/preview.php:2353
2852
  msgid "Highlight"
2853
  msgstr "Označi"
2854
 
2855
+ #: includes/preview.php:2356
2856
  msgid "Reset to block settings"
2857
  msgstr "Ponastavi na nastavitve bloka"
2858
 
2859
+ #: includes/preview.php:2371
2860
  msgid "AdSense ad unit"
2861
  msgstr "Oglasna enota AdSense"
2862
 
2863
+ #: includes/preview.php:2440
2864
  msgid "wrapping div"
2865
  msgstr "div za ovijanje"
2866
 
2867
+ #: includes/preview.php:2445 includes/preview.php:2452
2868
  msgid "background"
2869
  msgstr "ozadje"
2870
 
2871
+ #: includes/preview.php:2479 includes/preview.php:2691 settings.php:1388
2872
  msgid "Alignment"
2873
  msgstr "Poravnava"
2874
 
2875
+ #: includes/preview.php:2516
2876
  msgid "Repeat image"
2877
  msgstr "Ponavljaj sliko"
2878
 
2879
+ #: includes/preview.php:2598
2880
  msgid "Horizontal margin"
2881
  msgstr "Vodoravni odmik"
2882
 
2883
+ #: includes/preview.php:2650
2884
  msgid "Vertical margin"
2885
  msgstr "Navpični odmik"
2886
 
2887
+ #: includes/preview.php:2674
2888
  msgid "Animate"
2889
  msgstr "Animiraj"
2890
 
2891
+ #: includes/preview.php:2746
2892
  msgid ""
2893
  "This is a preview of the code between dummy paragraphs. Here you can test "
2894
  "various block alignments, visually edit margin and padding values of the "
2903
  "označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
2904
  "Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
2905
 
2906
+ #: includes/preview.php:2749
2907
  msgid ""
2908
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2909
  "code with the alignment and style as it is set for this block. Highlight "
2913
  "poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
2914
  "margin območje div-a za ovijanje in območje kode."
2915
 
2916
+ #: includes/preview.php:2751
2917
  msgid ""
2918
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2919
  "code was loaded from your AdSense account. The ad block is displayed on a "
2925
  "testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
2926
  "Označi za označitev bloka."
2927
 
2928
+ #: includes/preview.php:2757
2929
  msgid ""
2930
  "You can resize the window (and refresh the page to reload ads) to check "
2931
  "display with different screen widths.\n"
2937
  "Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
2938
  "prenesle v aktivni blok."
2939
 
2940
+ #: includes/preview.php:2759
2941
  msgid ""
2942
  "Please note that the code, block name, alignment and style are taken from "
2943
  "the current block settings (may not be saved).\n"
2950
  "margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
2951
  "kodo za blok."
2952
 
2953
+ #: includes/preview.php:2764 includes/preview.php:2778
2954
+ #: includes/preview.php:2788 includes/preview.php:2798
2955
+ #: includes/preview.php:2808
2956
  msgid ""
2957
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2958
  "code with it's settings is called a block.\n"
2976
  "številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
2977
  "številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
2978
 
2979
+ #: includes/preview.php:2769 includes/preview.php:2783
2980
+ #: includes/preview.php:2793 includes/preview.php:2803
2981
+ #: includes/preview.php:2813
2982
  msgid ""
2983
  "Few very important things you need to know in order to insert code and "
2984
  "display some ad:\n"
3001
  "za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
3002
  "uporabljate posamezne izjeme za prispevke/strani."
3003
 
3004
+ #: includes/preview.php:2775
3005
  msgid ""
3006
  "This is a preview of the code for sticky ads. Here you can test various "
3007
  "horizontal and vertical alignments, close button locations, visually edit "
3036
  msgid "Online documentation"
3037
  msgstr "Spletna Dokumentacija"
3038
 
3039
+ #: settings.php:206 settings.php:805 settings.php:2422
3040
  msgid "Show AdSense ad units"
3041
  msgstr "Pokaži oglasne enote AdSense"
3042
 
3044
  msgid "Edit ads.txt file"
3045
  msgstr "Uredi datoteko ads.txt"
3046
 
3047
+ #: settings.php:218 settings.php:1214
3048
  msgid "Check theme for available positions for automatic insertion"
3049
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
3050
 
3176
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
3177
  "prazne za enakomerno porazdelitev deležev različic."
3178
 
3179
+ #: settings.php:309 settings.php:2151 settings.php:4501
3180
  msgid "Scheduling"
3181
  msgstr "Urnik"
3182
 
3200
  msgid "General Settings"
3201
  msgstr "Splošne Nastavitve"
3202
 
3203
+ #: settings.php:753 settings.php:2774 settings.php:2841 settings.php:3036
3204
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3205
  msgstr ""
3206
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
3207
 
3208
+ #: settings.php:760
3209
  msgid "Toggle tools"
3210
  msgstr "Preklopi orodja"
3211
 
3212
+ #: settings.php:768
3213
  msgid "Process PHP code in block"
3214
  msgstr "Procesiraj PHP kodo v bloku"
3215
 
3216
+ #: settings.php:775
3217
  msgid "Disable insertion of this block"
3218
  msgstr "Onemogoči vstavljanje tega bloka"
3219
 
3220
+ #: settings.php:787
3221
  msgid "Toggle code generator"
3222
  msgstr "Preklopi generator kode"
3223
 
3224
+ #: settings.php:791
3225
  msgid "Toggle rotation editor"
3226
  msgstr "Preklopi urejevalnik rotacije"
3227
 
3228
+ #: settings.php:795
3229
  msgid "Open visual HTML editor"
3230
  msgstr "Odpri vizualni HTML urejevalnik"
3231
 
3232
+ #: settings.php:814
3233
  msgid "Clear block"
3234
  msgstr "Počisti blok"
3235
 
3236
+ #: settings.php:819 settings.php:4454
3237
  msgid "Copy block"
3238
  msgstr "Kopiraj blok"
3239
 
3240
+ #: settings.php:823
3241
  msgid "Paste name"
3242
  msgstr "Prilepi ime"
3243
 
3244
+ #: settings.php:827
3245
  msgid "Paste code"
3246
  msgstr "Prilepi kodo"
3247
 
3248
+ #: settings.php:831
3249
  msgid "Paste settings"
3250
  msgstr "Prilepi nastavitve"
3251
 
3252
+ #: settings.php:835
3253
  msgid "Paste block (name, code and settings)"
3254
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
3255
 
3256
+ #: settings.php:854
3257
  msgid "Rotation groups"
3258
  msgstr "Skupine za rotacijo"
3259
 
3260
+ #: settings.php:858
3261
  msgid "Remove option"
3262
  msgstr "Odstrani različico"
3263
 
3264
+ #: settings.php:862
3265
  msgid "Add option"
3266
  msgstr "Dodaj različico"
3267
 
3268
+ #: settings.php:877
3269
  msgid "Import code"
3270
  msgstr "Uvozi kodo"
3271
 
3272
+ #: settings.php:881
3273
  msgid "Generate code"
3274
  msgstr "Generiraj kodo"
3275
 
3276
+ #: settings.php:886
3277
  msgid "Banner"
3278
  msgstr "Pasica"
3279
 
3280
+ #: settings.php:898
3281
  msgid "Image"
3282
  msgstr "Slika"
3283
 
3284
+ #: settings.php:906
3285
  msgid "Alt text"
3286
  msgstr "Besedilo alt"
3287
 
3288
+ #: settings.php:934
 
 
 
 
 
 
 
 
3289
  msgid "Select Image"
3290
  msgstr "Izberi Sliko"
3291
 
3292
+ #: settings.php:935
3293
  msgid "Select Placeholder"
3294
  msgstr "Izberi Polnilo"
3295
 
3296
+ #: settings.php:947
3297
  msgid "Comment"
3298
  msgstr "Komentar"
3299
 
3300
+ #: settings.php:956
3301
  msgctxt "AdSense"
3302
  msgid "Publisher ID"
3303
  msgstr "ID založnika"
3304
 
3305
+ #: settings.php:965
3306
  msgctxt "AdSense"
3307
  msgid "Ad Slot ID"
3308
  msgstr "ID mesta"
3309
 
3310
+ #: settings.php:974
3311
  msgid "Ad Type"
3312
  msgstr "Vrsta"
3313
 
3314
+ #: settings.php:999 settings.php:1140
3315
  msgid "AMP Ad"
3316
  msgstr "AMP Oglas"
3317
 
3318
+ #: settings.php:1012 settings.php:1162
3319
  msgid "Block on consent"
3320
  msgstr "Blokiraj ob soglasju"
3321
 
3322
+ #: settings.php:1023
3323
  msgid "Show ad units from your AdSense account"
3324
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3325
 
3326
+ #: settings.php:1023
3327
  msgid "AdSense ad units"
3328
  msgstr "Oglasne enote AdSense"
3329
 
3330
+ #: settings.php:1040
3331
  msgctxt "AdSense"
3332
  msgid "Layout"
3333
  msgstr "Postavitev"
3334
 
3335
+ #: settings.php:1049
3336
  msgctxt "AdSense"
3337
  msgid "Layout Key"
3338
  msgstr "Ključ postavitve"
3339
 
3340
+ #: settings.php:1059
3341
  msgid "Full width"
3342
  msgstr "Celotna širina"
3343
 
3344
+ #: settings.php:1061
3345
  msgctxt "Full width"
3346
  msgid "Enabled"
3347
  msgstr "Omogočena"
3348
 
3349
+ #: settings.php:1062
3350
  msgctxt "Full width"
3351
  msgid "Disabled"
3352
  msgstr "Onemogočena"
3353
 
3354
+ #: settings.php:1180
3355
  msgid ""
3356
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3357
  "Cookie or Referer (domain)"
3359
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3360
  "parametrov, Piškotkov ali napotiteljev (domen)"
3361
 
3362
+ #: settings.php:1180
3363
  msgid "Lists"
3364
  msgstr "Seznami"
3365
 
3366
+ #: settings.php:1181
3367
  msgid "Widget, Shortcode and PHP function call"
3368
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3369
 
3370
+ #: settings.php:1181
3371
  msgid "Manual"
3372
  msgstr "Ročno"
3373
 
3374
+ #: settings.php:1182
3375
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3376
  msgstr ""
3377
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3378
 
3379
+ #: settings.php:1182
3380
  msgid "Devices"
3381
  msgstr "Naprave"
3382
 
3383
+ #: settings.php:1183
3384
  msgid ""
3385
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3386
  "feeds), Filter, Scheduling, General tag"
3388
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3389
  "RSS), Filter, Urnik, Splošna oznaka"
3390
 
3391
+ #: settings.php:1183
3392
  msgid "Misc"
3393
  msgstr "Razno"
3394
 
3395
+ #: settings.php:1184
3396
  msgid "Preview code and alignment"
3397
  msgstr "Predogled kode in poravnave"
3398
 
3399
+ #: settings.php:1187 settings.php:2403
3400
  msgid ""
3401
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3402
  "editor is active before saving settings."
3404
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3405
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3406
 
3407
+ #: settings.php:1200 settings.php:1201
3408
  msgid "Enable insertion on posts"
3409
  msgstr "Omogoči vstavljanje na prispevkih"
3410
 
3411
+ #: settings.php:1201 settings.php:3630
3412
  msgid "Posts"
3413
  msgstr "Prispevki"
3414
 
3415
+ #: settings.php:1205 settings.php:1206
3416
  msgid ""
3417
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3418
  "page or theme homepage (available positions may depend on hooks used by the "
3422
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3423
  "lahko odvisni od ročic, ki jih tema uporablja)"
3424
 
3425
+ #: settings.php:1206 settings.php:3632
3426
  msgid "Homepage"
3427
  msgstr "Domača stran"
3428
 
3429
+ #: settings.php:1210 settings.php:1211
3430
  msgid "Enable insertion on category blog pages (including sub-pages)"
3431
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3432
 
3433
+ #: settings.php:1211 settings.php:3633
3434
  msgid "Category pages"
3435
  msgstr "Strani kategorij"
3436
 
3437
+ #: settings.php:1221 settings.php:1222
3438
  msgid "Enable insertion on static pages"
3439
  msgstr "Omogoči vstavljanje na statičnih straneh"
3440
 
3441
+ #: settings.php:1222 settings.php:3631
3442
  msgid "Static pages"
3443
  msgstr "Statične strani"
3444
 
3445
+ #: settings.php:1226 settings.php:1227
3446
  msgid "Enable insertion on search blog pages"
3447
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3448
 
3449
+ #: settings.php:1227 settings.php:3635
3450
  msgid "Search pages"
3451
  msgstr "Iskalne strani"
3452
 
3453
+ #: settings.php:1231 settings.php:1232
3454
  msgid "Enable insertion on tag or archive blog pages"
3455
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3456
 
3457
+ #: settings.php:1235
3458
  msgid "Toggle settings for default insertion and list of individual exceptions"
3459
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3460
 
3461
+ #: settings.php:1247
3462
  msgid ""
3463
  "Enable individual post/page exceptions for insertion of this block. They can "
3464
  "be configured on the individual post/page editor page (in the settings below "
3468
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3469
  "nastavitvah pod urejevalnikom)."
3470
 
3471
+ #: settings.php:1248
3472
  msgid ""
3473
  "Enable individual post/page exceptions for insertion of this block. When "
3474
  "enabled they can be configured on the individual post/page editor page (in "
3478
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3479
  "strani (v nastavitvah pod urejevalnikom)."
3480
 
3481
+ #: settings.php:1248
3482
  msgid "Use exceptions for individual posts or pages to change insertion"
3483
  msgstr ""
3484
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3485
 
3486
  #. Translators: Enabled means...
3487
+ #: settings.php:1256
3488
  msgid ""
3489
  "means the insertion for this block is enabled by default and disabled for "
3490
  "exceptions."
3493
  "izjeme."
3494
 
3495
  #. Translators: Disabled means...
3496
+ #: settings.php:1257
3497
  msgid ""
3498
  "means the insertion for this block is disabled by default and enabled for "
3499
  "exceptions."
3501
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3502
  "izjeme."
3503
 
3504
+ #: settings.php:1258
3505
  msgid ""
3506
  "When individual post/page exceptions are enabled they can be configured on "
3507
  "the individual post/page editor page (in the settings below the editor)."
3510
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3511
  "urejevalnikom)."
3512
 
3513
+ #: settings.php:1266
3514
  msgid ""
3515
  "No exception for post or static page defined. Block will not be inserted."
3516
  msgstr ""
3517
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3518
 
3519
+ #: settings.php:1271
3520
  msgid ""
3521
  "Settings for individual exceptions have been updated. Please check all "
3522
  "blocks that have exceptions and and then save settings."
3524
  "Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
3525
  "bloke, ki imajo izjeme in potem shranite nastavitve."
3526
 
3527
+ #: settings.php:1284
3528
  msgctxt "post"
3529
  msgid "Type"
3530
  msgstr "Vrsta"
3531
 
3532
  #. translators: %d: block number
3533
+ #: settings.php:1289
3534
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3535
  msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
3536
 
3537
+ #: settings.php:1290
3538
  msgid "Clear listed exceptions for block"
3539
  msgstr "Pobriši izpisane izjeme za blok"
3540
 
3541
+ #: settings.php:1319 settings.php:1467 settings.php:2148
3542
  msgid "Insertion"
3543
  msgstr "Vstavljanje"
3544
 
3545
+ #: settings.php:1357
3546
  msgid ""
3547
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3548
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3558
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3559
  "število pomeni štetje z nasprotne smeri"
3560
 
3561
+ #: settings.php:1358
3562
  msgid ""
3563
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3564
  "means every N images, empty means all images, 0 means random image, value "
3573
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3574
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3575
 
3576
+ #: settings.php:1371
3577
  msgid ""
3578
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3579
  "numbers, %N means every N excerpts, empty means all excerpts"
3582
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3583
  "izvlečki"
3584
 
3585
+ #: settings.php:1372
3586
  msgid ""
3587
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3588
  "numbers, %N means every N posts, empty means all posts"
3591
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3592
  "prispevki"
3593
 
3594
+ #: settings.php:1373
3595
  msgid ""
3596
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3597
  "numbers, %N means every N comments, empty means all comments"
3600
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3601
  "vsi komentarji"
3602
 
3603
+ #: settings.php:1380
3604
  msgid "Toggle paragraph counting settings"
3605
  msgstr "Preklopi nastavitve za štetje odstavkov"
3606
 
3607
+ #: settings.php:1381
3608
  msgid "Toggle paragraph clearance settings"
3609
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3610
 
3611
+ #: settings.php:1384
3612
  msgid "Toggle insertion filter settings"
3613
  msgstr "Preklopi nastavitve filtra vstavljanja"
3614
 
3615
+ #: settings.php:1402
3616
  msgid "Toggle insertion and alignment icons"
3617
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3618
 
3619
+ #: settings.php:1416
3620
  msgid "Custom CSS code for the wrapping div"
3621
  msgstr "CSS koda po meri za div za ovijanje"
3622
 
3623
+ #: settings.php:1419 settings.php:1420 settings.php:1421 settings.php:1422
3624
+ #: settings.php:1423 settings.php:1424
3625
  msgid "CSS code for the wrapping div, click to edit"
3626
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3627
 
3628
+ #: settings.php:1437
3629
  msgid "HTML element"
3630
  msgstr "HTML element"
3631
 
3632
+ #: settings.php:1450
3633
  msgid "HTML element selector or comma separated list of selectors"
3634
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3635
 
3636
+ #: settings.php:1456 settings.php:2932
3637
  msgid "Action"
3638
  msgstr "Akcija"
3639
 
3640
+ #: settings.php:1468
3641
  msgid ""
3642
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3643
  "Server-side insertion inserts block when the page is generated but needs "
3647
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3648
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3649
 
3650
+ #: settings.php:1478
3651
  msgid "Wait for"
3652
  msgstr "Čakaj na"
3653
 
3654
+ #: settings.php:1490
3655
  msgid "Wait for HTML element to be loaded"
3656
  msgstr "Čakaj, da se naloži HTML element"
3657
 
3658
+ #: settings.php:1497
3659
  msgid "Time in ms to delay insertion"
3660
  msgstr "Čas v ms za zakasnitev vstavljanja"
3661
 
3662
+ #: settings.php:1502
3663
  msgid "Code position"
3664
  msgstr "Položaj kode"
3665
 
3666
+ #: settings.php:1503
3667
  msgid ""
3668
  "Page position where the code for client-side insertion will be inserted."
3669
  msgstr ""
3670
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3671
 
3672
+ #: settings.php:1521
3673
  msgid "Count"
3674
  msgstr "Štej"
3675
 
3676
+ #: settings.php:1527
3677
  msgid "paragraphs with tags"
3678
  msgstr "odstavke z značkami"
3679
 
3680
+ #: settings.php:1533
3681
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3682
  msgstr ""
3683
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3684
 
3685
+ #: settings.php:1542
3686
  msgid "that have between"
3687
  msgstr "ki imajo med"
3688
 
3689
+ #: settings.php:1548
3690
  msgid "Minimum number of paragraph words, leave empty for no limit"
3691
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3692
 
3693
+ #: settings.php:1557
3694
  msgid "Maximum number of paragraph words, leave empty for no limit"
3695
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3696
 
3697
+ #: settings.php:1560
3698
  msgid "words"
3699
  msgstr "besed"
3700
 
3701
+ #: settings.php:1575 settings.php:1622 settings.php:1736 settings.php:1762
3702
  msgid "Comma separated texts"
3703
  msgstr "Z vejico ločena besedila"
3704
 
3705
  #. translators: inside [HTML tags] elements that contain
3706
+ #: settings.php:1594
3707
  msgid "inside"
3708
  msgstr "znotraj"
3709
 
3710
+ #: settings.php:1600
3711
  msgid "Comma separated HTML tag names of container elements"
3712
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3713
 
3714
  #. translators: inside [HTML tags] elements that contain
3715
+ #: settings.php:1609
3716
  msgid "elements that"
3717
  msgstr "elementov, ki"
3718
 
3719
+ #: settings.php:1632
3720
  msgid ""
3721
  "Count also paragraphs inside these elements - defined on general plugin "
3722
  "settings page - tab [*] / tab General"
3724
  "Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
3725
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3726
 
3727
+ #: settings.php:1639 settings.php:1640
3728
  msgid ""
3729
  "If checked it will search for the text only in tag attributes like [[id]], "
3730
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
3734
  "[[class]], [[style]], itd. V nasprotnem bo preiskana celotna značka vključno "
3735
  "z njeno vsebino."
3736
 
3737
+ #: settings.php:1640
3738
  msgid "Check only tag attributes"
3739
  msgstr "Preveri samo atribute značke"
3740
 
3741
  #. Translators: %s: HTML tags
3742
+ #: settings.php:1645
3743
  msgid "Count inside %s elements"
3744
  msgstr "Štej znotraj elementov %s"
3745
 
3746
  #. Translators: Do not insert for first X and last Y paragraphs
3747
+ #: settings.php:1653
3748
  msgid "Do not insert for first"
3749
  msgid_plural "Do not insert for first"
3750
  msgstr[0] "Ne vstavi za prvi"
3752
  msgstr[2] "Ne vstavi za prve"
3753
  msgstr[3] "Ne vstavi za prvih"
3754
 
3755
+ #: settings.php:1659
3756
  msgid ""
3757
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3758
  "first paragraphs"
3761
  "odstavkov"
3762
 
3763
  #. Translators: Do not insert for first X and last Y paragraphs
3764
+ #: settings.php:1662
3765
  msgid "and last"
3766
  msgid_plural "and last"
3767
  msgstr[0] "in zadnji"
3769
  msgstr[2] "in zadnje"
3770
  msgstr[3] "in zadnjih"
3771
 
3772
+ #: settings.php:1668
3773
  msgid ""
3774
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3775
  "last paragraphs"
3779
 
3780
  #. Translators: Do not insert for first X and last Y paragraphs
3781
  #. Translators: Post/Static page must have between X and Y paragraphs
3782
+ #: settings.php:1671 settings.php:1697
3783
  msgid "paragraph"
3784
  msgid_plural "paragraphs"
3785
  msgstr[0] "odstavek"
3787
  msgstr[2] "odstavke"
3788
  msgstr[3] "odstavkov"
3789
 
3790
+ #: settings.php:1679 settings.php:2280
3791
  msgid "Post/Static page must have between"
3792
  msgstr "Prispevek/Statična stran mora imeti med"
3793
 
3794
+ #: settings.php:1685
3795
  msgid "Minimum number of paragraphs, leave empty for no limit"
3796
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3797
 
3798
+ #: settings.php:1694
3799
  msgid "Maximum number of paragraphs, leave empty for no limit"
3800
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3801
 
3802
+ #: settings.php:1705
3803
  msgid "Minimum number of words in paragraphs above"
3804
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3805
 
3806
+ #: settings.php:1711
3807
  msgid ""
3808
  "Used only with automatic insertion After paragraph and empty paragraph "
3809
  "numbers"
3811
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3812
  "številkami odstavkov"
3813
 
3814
+ #: settings.php:1721 settings.php:1747
3815
  msgid "In"
3816
  msgstr "V"
3817
 
3818
+ #: settings.php:1727
3819
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3820
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3821
 
3822
+ #: settings.php:1730
3823
  msgid "paragraphs above avoid"
3824
  msgstr "odstavkih zgoraj se izogni"
3825
 
3826
+ #: settings.php:1753
3827
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3828
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3829
 
3830
+ #: settings.php:1756
3831
  msgid "paragraphs below avoid"
3832
  msgstr "odstavkih spodaj se izogni"
3833
 
3834
+ #: settings.php:1772
3835
  msgid "If text is found"
3836
  msgstr "Če je besedilo najdeno"
3837
 
3838
+ #: settings.php:1779
3839
  msgid "check up to"
3840
  msgstr "preveri do"
3841
 
3842
+ #: settings.php:1787
3843
  msgctxt "check up to"
3844
  msgid "paragraphs"
3845
  msgstr "odstavkov"
3846
 
3847
+ #: settings.php:1803
3848
  msgid "Categories"
3849
  msgstr "Kategorije"
3850
 
3851
+ #: settings.php:1806
3852
  msgid "Toggle category editor"
3853
  msgstr "Preklopi urejevalnik kategorij"
3854
 
3855
+ #: settings.php:1809
3856
  msgid "Comma separated category slugs"
3857
  msgstr "Z vejico ločeni ključi kategorij"
3858
 
3859
+ #: settings.php:1826
3860
  msgid "Tags"
3861
  msgstr "Oznake"
3862
 
3863
+ #: settings.php:1829
3864
  msgid "Toggle tag editor"
3865
  msgstr "Preklopi urejevalnik oznak"
3866
 
3867
+ #: settings.php:1832
3868
  msgid "Comma separated tag slugs"
3869
  msgstr "Z vejico ločeni ključi oznak"
3870
 
3871
+ #: settings.php:1849
3872
  msgid "Taxonomies"
3873
  msgstr "Taksonomije"
3874
 
3875
+ #: settings.php:1852
3876
  msgid "Toggle taxonomy editor"
3877
  msgstr "Preklopi urejevalnik taksonomij"
3878
 
3879
+ #: settings.php:1855
3880
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3881
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3882
 
3883
+ #: settings.php:1872
3884
  msgid "Post IDs"
3885
  msgstr "ID-ji prispevkov"
3886
 
3887
+ #: settings.php:1875
3888
  msgid "Toggle post/page ID editor"
3889
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3890
 
3891
+ #: settings.php:1878
3892
  msgid "Comma separated post/page IDs"
3893
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3894
 
3895
+ #: settings.php:1895
3896
  msgid "Urls"
3897
  msgstr "Url-ji"
3898
 
3899
+ #: settings.php:1898
3900
  msgid "Toggle url editor"
3901
  msgstr "Preklopi urejevalnik url-jev"
3902
 
3903
+ #: settings.php:1901
3904
  msgid ""
3905
  "Comma separated urls (page addresses) starting with / after domain name (e."
3906
  "g. /permalink-url, use only when you need to taget a specific url not "
3912
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3913
  "začetek*. *url-vzorec*, *url-konec)"
3914
 
3915
+ #: settings.php:1917
3916
  msgid "Url parameters"
3917
  msgstr "Url parametri"
3918
 
3919
+ #: settings.php:1921
3920
  msgid "Toggle url parameter and cookie editor"
3921
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3922
 
3923
+ #: settings.php:1924
3924
  msgid ""
3925
  "Comma separated url query parameters or cookies with optional values (use "
3926
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
3929
  "vrednostmi (uporabite 'parameter', 'parameter=vrednost', 'piškotek' or "
3930
  "'piškotek=vrednost')"
3931
 
3932
+ #: settings.php:1940
3933
  msgid "Cookies"
3934
  msgstr "Piškotki"
3935
 
3936
+ #: settings.php:1944
3937
  msgid "Toggle cookie editor"
3938
  msgstr "Preklopi urejevalnik piškotkov"
3939
 
3940
+ #: settings.php:1947
3941
  msgid ""
3942
  "Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
3943
  msgstr ""
3944
  "Z vejico ločeni piškotki z neobveznimi vrednostmi (uporabite 'piškotek' ali "
3945
  "'piškotek=vrednost')"
3946
 
3947
+ #: settings.php:1963
3948
  msgid "Referrers"
3949
  msgstr "Napotitelji"
3950
 
3951
+ #: settings.php:1966
3952
  msgid "Toggle referer editor"
3953
  msgstr "Preklopi urejevalnik napotiteljev"
3954
 
3955
+ #: settings.php:1969
3956
  msgid ""
3957
  "Comma separated domains, use # for no referrer, you can also use partial "
3958
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3960
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3961
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3962
 
3963
+ #: settings.php:1985
3964
  msgid "Clients"
3965
  msgstr "Odjemalci"
3966
 
3967
+ #: settings.php:1988
3968
  msgid "Toggle client editor"
3969
  msgstr "Preklopi urejevalnik odjemalcev"
3970
 
3971
+ #: settings.php:1991
3972
  msgid ""
3973
  "Comma separated names (operating systems, browsers, devices). You can also "
3974
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
3978
  "lahko tudi delne nize uporabniškega agenta z * (začetek-uporabnšikega-"
3979
  "agenta*. *vzorec-uporabnšikega-agenta*, *konec-uporabnšikega-agenta)"
3980
 
3981
+ #: settings.php:2017
3982
  msgid "Enable widget for this block"
3983
  msgstr "Omogočite gradnik za ta blok"
3984
 
3985
+ #: settings.php:2022
3986
  msgid "Sidebars (or widget positions) where this widget is used"
3987
  msgstr ""
3988
  "Stranske vrstice (ali položaji gradnikov) kjer je ta gradnik uporabljen"
3989
 
3990
+ #: settings.php:2029
3991
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3992
  msgstr ""
3993
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3994
 
3995
+ #: settings.php:2030 settings.php:4511
3996
  msgid "Shortcode"
3997
  msgstr "Kratka koda"
3998
 
3999
+ #: settings.php:2045
4000
  msgid ""
4001
  "Enable PHP function call to insert this block at any position in theme file. "
4002
  "If function is disabled for block it will return empty string."
4005
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
4006
  "prazen niz."
4007
 
4008
+ #: settings.php:2046
4009
  msgid "PHP function"
4010
  msgstr "PHP funkcija"
4011
 
4012
+ #: settings.php:2061
4013
  msgid "Client-side device detection"
4014
  msgstr "Zaznavanje naprave na strani odjemalca"
4015
 
4016
+ #: settings.php:2062
4017
  msgid "Server-side device detection"
4018
  msgstr "Zaznavanje naprave na strani strežnika"
4019
 
4020
+ #: settings.php:2069
4021
  msgid "Use client-side detection to"
4022
  msgstr "Uporabi zaznavanje na strani odjemalca in"
4023
 
4024
+ #: settings.php:2071
4025
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
4026
  msgstr ""
4027
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
4028
 
4029
  #. Translators: only on (the following devices): viewport names (devices)
4030
  #. listed
4031
+ #: settings.php:2076
4032
  msgid "only on"
4033
  msgstr "samo na"
4034
 
4035
+ #: settings.php:2104
4036
  msgid "Device min width %s px"
4037
  msgstr "Najmanjša širina naprave %s px"
4038
 
4039
+ #: settings.php:2130
4040
  msgid "Use server-side detection to insert block only for"
4041
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
4042
 
4043
+ #: settings.php:2149
4044
  msgid "Filter"
4045
  msgstr "Filter"
4046
 
4047
+ #: settings.php:2150
4048
  msgid "Word Count"
4049
  msgstr "Število Besed"
4050
 
4051
+ #: settings.php:2152
4052
  msgid "Display"
4053
  msgstr "Prikaz"
4054
 
4055
+ #: settings.php:2154 settings.php:2448
4056
  msgid "General"
4057
  msgstr "Splošno"
4058
 
4059
+ #: settings.php:2166
4060
  msgid "Old settings for AMP pages detected"
4061
  msgstr "Zaznane stare nastavitve za AMP strani"
4062
 
4063
+ #: settings.php:2166
4064
  msgid ""
4065
  "To insert different codes on normal and AMP pages separate them with "
4066
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
4071
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
4072
  "separatorja)."
4073
 
4074
+ #: settings.php:2166
4075
  msgid "AMP pages"
4076
  msgstr "AMP strani"
4077
 
4078
+ #: settings.php:2171
4079
  msgid "Enable insertion for Ajax requests"
4080
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
4081
 
4082
+ #: settings.php:2171
4083
  msgid "Ajax requests"
4084
  msgstr "Ajax zahteve"
4085
 
4086
+ #: settings.php:2176
4087
  msgid "Enable insertion in RSS feeds"
4088
  msgstr "Omogoči vstavljanje v RSS virih"
4089
 
4090
+ #: settings.php:2176
4091
  msgid "RSS Feed"
4092
  msgstr "RSS Vir"
4093
 
4094
+ #: settings.php:2181
4095
  msgid "Enable insertion on page for Error 404: Page not found"
4096
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
4097
 
4098
+ #: settings.php:2181
4099
  msgid "Error 404 page"
4100
  msgstr "Stran napake 404"
4101
 
4102
+ #: settings.php:2193
4103
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
4104
  msgstr ""
4105
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
4106
 
4107
+ #: settings.php:2194
4108
  msgid "insertions"
4109
  msgstr "vstavljanj"
4110
 
4111
+ #: settings.php:2196
4112
  msgid ""
4113
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
4114
  "General)"
4116
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
4117
  "zavihek Splošno)"
4118
 
4119
+ #: settings.php:2199 settings.php:2636
4120
  msgid "Max blocks per page"
4121
  msgstr "Največ blokov na stran"
4122
 
4123
+ #: settings.php:2211
4124
  msgid "Insert for"
4125
  msgstr "Vstavi za"
4126
 
4127
+ #: settings.php:2219
4128
  msgid ""
4129
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
4130
  "is currently active). Might speed up insertion on content pages when "
4134
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
4135
  "filter [[the_content]] večkrat klican."
4136
 
4137
+ #: settings.php:2223
4138
  msgid "Insert only in the loop"
4139
  msgstr "Vstavi samo v zanki"
4140
 
4141
+ #: settings.php:2226
4142
  msgid ""
4143
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
4144
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
4149
  "HTML kodo bloka. V nasprotnem bo Javascript koda vstavljena v nogi. "
4150
  "Javascript funkcije vtičnika bodo še vedno vstavljene v nogi."
4151
 
4152
+ #: settings.php:2230
4153
  msgid "Embed JS code"
4154
  msgstr "Vgnezdi JS kodo"
4155
 
4156
+ #: settings.php:2233
4157
  msgid ""
4158
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
4159
  msgstr ""
4160
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
4161
  "Rocket"
4162
 
4163
+ #: settings.php:2237
4164
  msgid "Disable caching"
4165
  msgstr "Onemogoči predpomnjenje"
4166
 
4167
+ #: settings.php:2249
4168
  msgid "Filter insertions"
4169
  msgstr "Filtriraj vstavljanja"
4170
 
4171
+ #: settings.php:2252
4172
  msgid ""
4173
  "Filter multiple insertions by specifying wanted insertions for this block - "
4174
  "single number, comma separated numbers or %N for every N insertions - empty "
4180
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
4181
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
4182
 
4183
+ #: settings.php:2255
4184
  msgid "using"
4185
  msgstr "z uporabo"
4186
 
4187
+ #: settings.php:2274
4188
  msgid "Checked means specified calls are unwanted"
4189
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
4190
 
4191
+ #: settings.php:2274
4192
  msgid "Invert filter"
4193
  msgstr "Obrni filter"
4194
 
4195
+ #: settings.php:2281
4196
  msgid "Minimum number of post/static page words, leave empty for no limit"
4197
  msgstr ""
4198
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4199
  "omejitev"
4200
 
4201
+ #: settings.php:2283
4202
  msgid "Maximum number of post/static page words, leave empty for no limit"
4203
  msgstr ""
4204
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4205
  "omejitev"
4206
 
4207
+ #: settings.php:2296
4208
  msgid "for"
4209
  msgstr "za"
4210
 
4211
+ #: settings.php:2296
4212
  msgid "days after publishing"
4213
  msgstr "dni po objavi"
4214
 
4215
+ #: settings.php:2298
4216
  msgid "Not available"
4217
  msgstr "Ni na razpolago"
4218
 
4219
  #. Translators: do not translate [[width]] - it is a CSS property
4220
+ #: settings.php:2310
4221
  msgid ""
4222
  "Block width: empty means width not defined, number means width in pixels, "
4223
  "any other value means CSS [[width]] property"
4226
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[width]]"
4227
 
4228
  #. Translators: do not translate [[height]] - it is a CSS property
4229
+ #: settings.php:2314
4230
  msgid ""
4231
  "Block height: empty means height not defined, number means height in pixels, "
4232
  "any other value means CSS [[height]] property"
4234
  "Višina bloka: prazno pomeni višina ni določena, število pomeni višino v "
4235
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[height]]"
4236
 
4237
+ #: settings.php:2320
4238
+ msgid ""
4239
+ "Block background: empty means background not defined, #hex number means HTML "
4240
+ "color"
4241
+ msgstr ""
4242
+ "Ozadje bloka: prazno pomeni, da ozadje ni definirano, #heksadecimalno "
4243
+ "število pomeni HTML barvo"
4244
+
4245
+ #: settings.php:2327 settings.php:2628
4246
  msgid "Ad label"
4247
  msgstr "Oznaka oglasa"
4248
 
4249
+ #: settings.php:2350
4250
  msgid "General tag"
4251
  msgstr "Splošna oznaka"
4252
 
4253
+ #: settings.php:2354
4254
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
4255
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
4256
 
4257
  #. translators: %s: HTML tags
4258
+ #: settings.php:2363
4259
  msgid ""
4260
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4261
  "client-side device detection!"
4264
  "potrebna za zaznavanje naprave na strani odjemalca!"
4265
 
4266
  #. translators: %s: HTML tags for text and link
4267
+ #: settings.php:2377
4268
  msgid ""
4269
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4270
  "side %s insertion. Use %s Server-side %s insertion."
4273
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4274
  "strežnika%s."
4275
 
4276
+ #: settings.php:2393
4277
  msgid "Settings"
4278
  msgstr "Nastavitve"
4279
 
4280
+ #: settings.php:2396
4281
  msgid "Settings timestamp"
4282
  msgstr "Časovni žig nastavitev"
4283
 
4284
+ #: settings.php:2412
4285
  msgid "Are you sure you want to reset all settings?"
4286
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4287
 
4288
+ #: settings.php:2412
4289
  msgid "Reset All Settings"
4290
  msgstr "Ponastavi Vse Nastavitve"
4291
 
4292
+ #: settings.php:2449
4293
  msgid "Viewports"
4294
  msgstr "Pogledi"
4295
 
4296
+ #: settings.php:2450
4297
  msgid "Hooks"
4298
  msgstr "Ročice"
4299
 
4300
+ #: settings.php:2451
4301
  msgid "Header"
4302
  msgstr "Glava"
4303
 
4304
+ #: settings.php:2452 strings.php:30
4305
  msgid "Footer"
4306
  msgstr "Noga"
4307
 
4308
+ #: settings.php:2457
4309
  msgid "Debugging"
4310
  msgstr "Razhroščevanje"
4311
 
4312
+ #: settings.php:2467
4313
  msgid "Plugin priority"
4314
  msgstr "Prednost vtičnika"
4315
 
4316
+ #: settings.php:2475
4317
  msgid "Output buffering"
4318
  msgstr "Predpomnjenje izhoda"
4319
 
4320
+ #: settings.php:2478
4321
  msgid "Needed for position Above header but may not work with all themes"
4322
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4323
 
4324
+ #: settings.php:2486
4325
  msgid "Syntax highlighting theme"
4326
  msgstr "Tema za poudarjanje sintakse"
4327
 
4328
+ #: settings.php:2493
4329
  msgctxt "no syntax highlighting themes"
4330
  msgid "None"
4331
  msgstr "Brez"
4332
 
4333
+ #: settings.php:2494
4334
  msgid "No Syntax Highlighting"
4335
  msgstr "Brez Poudarjanja Sintakse"
4336
 
4337
+ #: settings.php:2496
4338
  msgctxt "syntax highlighting themes"
4339
  msgid "Light"
4340
  msgstr "Svetle"
4341
 
4342
+ #: settings.php:2511
4343
  msgctxt "syntax highlighting themes"
4344
  msgid "Dark"
4345
  msgstr "Temne"
4346
 
4347
+ #: settings.php:2537
4348
  msgid "Tab setup delay"
4349
  msgstr "Zakasnitev nastavitev zavihka"
4350
 
4351
+ #: settings.php:2545
4352
  msgid "Min. user role for ind. exceptions editing"
4353
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4354
 
4355
+ #: settings.php:2555
4356
  msgid "Disable caching for logged in administrators"
4357
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4358
 
4359
+ #: settings.php:2558
4360
  msgid ""
4361
  "Enabled means that logged in administrators will see non-cached (live) pages "
4362
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
4364
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4365
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4366
 
4367
+ #: settings.php:2566
4368
  msgid "Wait for jQuery"
4369
  msgstr "Čakaj na jQuery"
4370
 
4371
+ #: settings.php:2569
4372
  msgid ""
4373
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4374
  "it will run the scripts that may need it"
4376
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4377
  "bo pognal svoje skripte, ki jo potrebujejo"
4378
 
4379
+ #: settings.php:2577
4380
  msgid "Sticky widget mode"
4381
  msgstr "Način za lepljive gradnike"
4382
 
4383
+ #: settings.php:2580
4384
  msgid ""
4385
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4386
  "mode works with most themes but may reload ads on page load."
4389
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4390
  "nalaganju strani."
4391
 
4392
+ #: settings.php:2588
4393
  msgid "Sticky widget top margin"
4394
  msgstr "Zgornji rob za lepljiv gradnik"
4395
 
4396
+ #: settings.php:2596
4397
  msgid "Dynamic blocks"
4398
  msgstr "Dinamični bloki"
4399
 
4400
+ #: settings.php:2609
4401
  msgid "Functions for paragraph counting"
4402
  msgstr "Funkcije za štetje odstavkov"
4403
 
4404
+ #: settings.php:2612
4405
  msgid ""
4406
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4407
  "functions if paragraphs are not counted properly on non-english pages."
4410
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4411
  "šteti."
4412
 
4413
+ #: settings.php:2620
4414
  msgid "No paragraph counting inside"
4415
  msgstr "Ni štetja odstavkov znotraj"
4416
 
4417
+ #: settings.php:2631
4418
  msgid "Label text or HTML code"
4419
  msgstr "Besedilo oznake ali HTML koda"
4420
 
4421
+ #: settings.php:2639
4422
  msgid ""
4423
  "Maximum number of inserted blocks per page. You need to enable Max page "
4424
  "insertions (button Misc / tab Insertion) to count block for this limit."
4427
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4428
  "omejitev."
4429
 
4430
+ #: settings.php:2653
4431
  msgid "Plugin usage tracking"
4432
  msgstr "Sledenje uporabe vtičnika"
4433
 
4434
  #. translators: %s: Ad Inserter
4435
+ #: settings.php:2656
4436
  msgid ""
4437
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4438
  "Only information regarding the WordPress environment and %s usage is "
4442
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4443
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4444
 
4445
+ #: settings.php:2674
4446
  msgid "CSS class name for the wrapping div"
4447
  msgstr "Ime CSS razreda za div za ovijanje"
4448
 
4449
+ #: settings.php:2674
4450
  msgid "Block class name"
4451
  msgstr "Ime razreda za blok"
4452
 
4453
+ #: settings.php:2680
4454
  msgid "Include block number class"
4455
  msgstr "Vključi razred številke bloka"
4456
 
4457
+ #: settings.php:2680
4458
  msgid "Block number class"
4459
  msgstr "Razred številke bloka"
4460
 
4461
+ #: settings.php:2685
4462
  msgid "Include block name class"
4463
  msgstr "Vključi razred imena bloka"
4464
 
4465
+ #: settings.php:2685
4466
  msgid "Block name class"
4467
  msgstr "Razred imena bloka"
4468
 
4469
+ #: settings.php:2690
4470
  msgid ""
4471
  "Instead of alignment classes generate inline alignment styles for blocks"
4472
  msgstr ""
4473
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4474
 
4475
+ #: settings.php:2690
4476
  msgid "Inline styles"
4477
  msgstr "Medvrstični slogi"
4478
 
4479
+ #: settings.php:2696
4480
  msgid "Preview of the block wrapping code"
4481
  msgstr "Predogled kode za ovijanje blokov"
4482
 
4483
+ #: settings.php:2697
4484
  msgid "Wrapping div"
4485
  msgstr "div za ovijanje"
4486
 
4487
+ #: settings.php:2698 settings.php:3174
4488
  msgid "BLOCK CODE"
4489
  msgstr "KODA BLOKA"
4490
 
4491
+ #: settings.php:2706
4492
  msgid "Viewport Settings used for client-side device detection"
4493
  msgstr ""
4494
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4495
 
4496
  #. Translators: %d: viewport number
4497
+ #: settings.php:2714
4498
  msgid "Viewport %d name"
4499
  msgstr "Ime pogleda %d"
4500
 
4501
+ #: settings.php:2717
4502
  msgid "min width"
4503
  msgstr "najmanjša širina"
4504
 
4505
+ #: settings.php:2728
4506
  msgid "Custom Hooks"
4507
  msgstr "Ročice Po Meri"
4508
 
4509
+ #: settings.php:2740 settings.php:2743
4510
  msgid "Enable hook"
4511
  msgstr "Omogoči ročico"
4512
 
4513
  #. translators: %d: hook number
4514
+ #: settings.php:2743
4515
  msgid "Hook %d name"
4516
  msgstr "Ime ročice %d"
4517
 
4518
+ #: settings.php:2746
4519
  msgid "Hook name for automatic insertion selection"
4520
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4521
 
4522
+ #: settings.php:2749
4523
  msgid "action"
4524
  msgstr "akcija"
4525
 
4526
+ #: settings.php:2752
4527
  msgid "Action name as used in the do_action () function"
4528
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4529
 
4530
+ #: settings.php:2755
4531
  msgid "priority"
4532
  msgstr "prednost"
4533
 
4534
+ #: settings.php:2758
4535
  msgid "Priority for the hook (default is 10)"
4536
  msgstr "Prednost za ročico (privzeta je 10)"
4537
 
4538
+ #: settings.php:2779
4539
  msgid "Enable insertion of this code into HTML page header"
4540
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4541
 
4542
+ #: settings.php:2783 settings.php:2850 settings.php:3041
4543
  msgid "Process PHP code"
4544
  msgstr "Procesiraj PHP kodo"
4545
 
4546
+ #: settings.php:2787
4547
  msgid "HTML Page Header Code"
4548
  msgstr "Koda v Glavi HTML Strani"
4549
 
4550
+ #: settings.php:2795
4551
  msgid "Code in the %s section of the HTML page"
4552
  msgstr "Koda v %s delu HTML strani"
4553
 
4554
+ #: settings.php:2796
4555
  msgctxt "code in the header"
4556
  msgid "NOT ENABLED"
4557
  msgstr "NI OMOGOČENA"
4558
 
4559
+ #: settings.php:2813 settings.php:2881
4560
  msgid "Use server-side detection to insert code only for"
4561
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4562
 
4563
+ #: settings.php:2828
4564
  msgid ""
4565
  "Enable insertion of this code into HTML page header on page for Error 404: "
4566
  "Page not found"
4568
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4569
  "obstaja"
4570
 
4571
+ #: settings.php:2828 settings.php:2896
4572
  msgid "Insert on Error 404 page"
4573
  msgstr "Vstavi na strani Napake 404"
4574
 
4575
+ #: settings.php:2846
4576
  msgid "Enable insertion of this code into HTML page footer"
4577
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4578
 
4579
+ #: settings.php:2854
4580
  msgid "HTML Page Footer Code"
4581
  msgstr "Koda v Nogi HTML Strani"
4582
 
4583
  #. translators: %s: HTML tags
4584
+ #: settings.php:2862
4585
  msgid "Code before the %s tag of the HTML page"
4586
  msgstr "Koda pred %s značko HTML strani"
4587
 
4588
+ #: settings.php:2863
4589
  msgctxt "code in the footer"
4590
  msgid "NOT ENABLED"
4591
  msgstr "NI OMOGOČENA"
4592
 
4593
+ #: settings.php:2896
4594
  msgid ""
4595
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4596
  "Page not found"
4598
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4599
  "Stran ne obstaja"
4600
 
4601
+ #: settings.php:2912
4602
  msgid "Code for ad blocking detection inserted. Click for details."
4603
  msgstr ""
4604
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4605
 
4606
+ #: settings.php:2917
4607
  msgid "Enable detection of ad blocking"
4608
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4609
 
4610
+ #: settings.php:2935
4611
  msgid "Global action when ad blocking is detected"
4612
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4613
 
4614
+ #: settings.php:2941
4615
  msgid "No action for"
4616
  msgstr "Ni akcije za"
4617
 
4618
+ #: settings.php:2942
4619
  msgid "Exceptions for global action when ad blocking is detected."
4620
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov."
4621
 
4622
+ #: settings.php:2952
4623
  msgid "Delay Action"
4624
  msgstr "Zakasni Akcijo"
4625
 
4626
+ #: settings.php:2955
4627
  msgid ""
4628
  "Number of page views to delay action when ad blocking is detected. Leave "
4629
  "empty for no delay (action fires on first page view). Sets cookie."
4632
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4633
  "strani). Nastavi piškotek."
4634
 
4635
+ #: settings.php:2955
4636
  msgctxt "Delay Action for x "
4637
  msgid "page views"
4638
  msgstr "ogledov strani"
4639
 
4640
+ #: settings.php:2960
4641
  msgid "No Action Period"
4642
  msgstr "Obdobje Brez Akcije"
4643
 
4644
+ #: settings.php:2963
4645
  msgid ""
4646
  "Number of days to supress action when ad blocking is detected. Leave empty "
4647
  "for no no-action period (action fires always after defined page view delay). "
4651
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4652
  "strani). Nastavi piškotek."
4653
 
4654
+ #: settings.php:2963
4655
  msgctxt "no action period"
4656
  msgid "days"
4657
  msgstr "dni"
4658
 
4659
+ #: settings.php:2968
4660
  msgid "Custom Selectors"
4661
  msgstr "Selektorji Po Meri"
4662
 
4663
+ #: settings.php:2971
4664
  msgid ""
4665
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4666
  "blocking detection. Invisible element or element with zero height means ad "
4670
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4671
  "pomeni prisotnost blokiranja oglasov."
4672
 
4673
+ #: settings.php:2978
4674
  msgid ""
4675
  "Use external scripts for ad blocking detection. Disable when you need to "
4676
  "obtain user consent before collecting personal information. In such case use "
4681
  "primeru uporabite kratko kodo za vstavljanje zunanjih skript po pridobitvi "
4682
  "soglasja."
4683
 
4684
+ #: settings.php:2978
4685
  msgid "Use external scripts"
4686
  msgstr "Uporabi zunanje skripte"
4687
 
4688
+ #: settings.php:2992
4689
  msgid "Redirection Page"
4690
  msgstr "Stran za Preusmeritev"
4691
 
4692
+ #: settings.php:3004
4693
  msgid "Custom Url"
4694
  msgstr "Url Po Meri"
4695
 
4696
+ #: settings.php:3009
4697
  msgid ""
4698
  "Static page for redirection when ad blocking is detected. For other pages "
4699
  "select Custom url and set it below."
4701
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4702
  "strani izberite Url Po Meri in ga nastavite spodaj."
4703
 
4704
+ #: settings.php:3018
4705
  msgid "Custom Redirection Url"
4706
  msgstr "Url za Preusmeritev Po Meri"
4707
 
4708
+ #: settings.php:3030
4709
  msgid "Message HTML code"
4710
  msgstr "HTML koda sporočila"
4711
 
4712
+ #: settings.php:3043
4713
  msgid "Preview message when ad blocking is detected"
4714
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4715
 
4716
+ #: settings.php:3072
4717
  msgid "Prevent visitors from closing the warning message"
4718
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4719
 
4720
+ #: settings.php:3072
4721
  msgid "Undismissible Message"
4722
  msgstr "Neodstranljivo Sporočilo"
4723
 
4724
+ #: settings.php:3078
4725
  msgid "Not undismissible for"
4726
  msgstr "Ni neodstranljivo za"
4727
 
4728
+ #: settings.php:3079
4729
  msgid "Users which can close the warning message."
4730
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4731
 
4732
+ #: settings.php:3116
4733
  msgid ""
4734
  "Force showing admin toolbar for administrators when viewing site. Enable "
4735
  "this option when you are logged in as admin and you don't see admin toolbar."
4738
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4739
  "skrbnike."
4740
 
4741
+ #: settings.php:3124
4742
  msgid "Disable header code (Header tab)"
4743
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4744
 
4745
+ #: settings.php:3128
4746
  msgid "Disable footer code (Footer tab)"
4747
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4748
 
4749
  #. translators: %s: Ad Inserter
4750
+ #: settings.php:3132
4751
  msgid "Disable %s JavaScript code"
4752
  msgstr "Onemogoči %s JavaScript kodo"
4753
 
4754
  #. translators: %s: Ad Inserter
4755
+ #: settings.php:3136
4756
  msgid "Disable %s CSS code"
4757
  msgstr "Onemogoči %s CSS kodo"
4758
 
4759
  #. translators: %s: Ad Inserter
4760
+ #: settings.php:3140
4761
  msgid "Disable %s HTML code"
4762
  msgstr "Onemogoči %s HTML kodo"
4763
 
4764
+ #: settings.php:3144
4765
  msgid ""
4766
  "Disable PHP code processing (in all blocks including header and footer code)"
4767
  msgstr ""
4768
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4769
 
4770
+ #: settings.php:3148
4771
  msgid "Disable insertion of all blocks"
4772
  msgstr "Onemogoči vstavljanje vseh blokov"
4773
 
4774
+ #: settings.php:3152
4775
  msgid "Disable insertions"
4776
  msgstr "Onemogoči vstavljanja"
4777
 
4778
  #. translators: %s: Ad Inserter
4779
+ #: settings.php:3164
4780
  msgid "%s CSS CODE"
4781
  msgstr "%s CSS KODA"
4782
 
4783
+ #: settings.php:3167
4784
  msgid "HEADER CODE"
4785
  msgstr "KODA GLAVE"
4786
 
4787
  #. translators: %s: PHP tags
4788
+ #: settings.php:3173
4789
  msgid "BLOCK PHP CODE"
4790
  msgstr "PHP KODA BLOKA"
4791
 
4792
  #. translators: %s: Ad Inserter
4793
+ #: settings.php:3178
4794
  msgid "%s HTML CODE"
4795
  msgstr "%s HTML KODA"
4796
 
4797
  #. translators: %s: Ad Inserter
4798
+ #: settings.php:3180
4799
  msgid "%s JS CODE"
4800
  msgstr "%s JS KODA"
4801
 
4802
+ #: settings.php:3183
4803
  msgid "FOOTER CODE"
4804
  msgstr "KODA NOGE"
4805
 
4806
+ #: settings.php:3192
4807
  msgid "Force showing admin toolbar when viewing site"
4808
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4809
 
4810
+ #: settings.php:3199
4811
  msgid "Enable debugging functions in admin toolbar"
4812
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4813
 
4814
+ #: settings.php:3201
4815
  msgid "Debugging functions in admin toolbar"
4816
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4817
 
4818
+ #: settings.php:3208
4819
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4820
  msgstr ""
4821
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4822
  "zaslonih"
4823
 
4824
+ #: settings.php:3210
4825
  msgid "Debugging functions on mobile screens"
4826
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4827
 
4828
+ #: settings.php:3230
4829
  msgid ""
4830
  "Disable translation to see original texts for the settings and messages in "
4831
  "English"
4833
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4834
  "angleščini"
4835
 
4836
+ #: settings.php:3232
4837
  msgid "Disable translation"
4838
  msgstr "Onemogoči prevod"
4839
 
4840
+ #: settings.php:3618
4841
  msgid "Available positions for current theme"
4842
  msgstr "Razpoložljivi položaji za trenutno temo"
4843
 
4844
+ #: settings.php:3619
4845
  msgid "Error checking pages"
4846
  msgstr "Napaka pri preverjanju strani"
4847
 
4848
+ #: settings.php:3622
4849
  msgid "Toggle theme checker for available positions for automatic insertion"
4850
  msgstr ""
4851
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4852
 
4853
+ #: settings.php:3622
4854
  msgctxt "Button"
4855
  msgid "Check"
4856
  msgstr "Preveri"
4857
 
4858
+ #: settings.php:3629
4859
  msgid "Position"
4860
  msgstr "Položaj"
4861
 
4862
+ #: settings.php:3634
4863
  msgid "Archive pages"
4864
  msgstr "Strani arhiva"
4865
 
4866
+ #: settings.php:3693
4867
  msgid ""
4868
  "Position not available because output buffering (tab [*]) is not enabled"
4869
  msgstr ""
4870
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4871
 
4872
+ #: settings.php:3696 strings.php:251
4873
  msgid "Position not checked yet"
4874
  msgstr "Položaj še ni bil preverjen"
4875
 
4876
+ #: settings.php:3732
4877
  msgid "Toggle active/all blocks"
4878
  msgstr "Preklopi aktive/vse bloke"
4879
 
4880
+ #: settings.php:3737 strings.php:238
4881
  msgid "Rearrange block order"
4882
  msgstr "Preuredi vrstni red blokov"
4883
 
4884
+ #: settings.php:3743
4885
  msgid "Save new block order"
4886
  msgstr "Shrani vrstni red blokov"
4887
 
4888
+ #: settings.php:3769
4889
  msgid "Toggle active/all ad units"
4890
  msgstr "Preklopi aktivne/vse oglasne enote"
4891
 
4892
+ #: settings.php:3773
4893
  msgid "Reload AdSense ad units"
4894
  msgstr "Ponovno naloži oglasne enote AdSense"
4895
 
4896
+ #: settings.php:3777
4897
  msgid "Clear authorization to access AdSense account"
4898
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4899
 
4900
+ #: settings.php:3781 settings.php:4674 settings.php:4741 strings.php:246
4901
  msgid "Google AdSense Homepage"
4902
  msgstr "Google AdSense Domača Stran"
4903
 
4904
+ #: settings.php:3802
4905
  msgid "Switch to physical ads.txt file"
4906
  msgstr "Preklopi na fizično datoteko ads.txt"
4907
 
4908
+ #: settings.php:3803
4909
  msgid "Switch to virtual ads.txt file"
4910
  msgstr "Preklopi na navidezno datoteko ads.txt"
4911
 
4912
  #. translators: %s: ads.txt
4913
+ #: settings.php:3823
4914
  msgid "Open %s"
4915
  msgstr "Odpri %s"
4916
 
4917
+ #: settings.php:3831
4918
  msgid "Reload ads.txt file"
4919
  msgstr "Ponovno naloži datoteko ads.txt"
4920
 
4921
+ #: settings.php:3837 settings.php:4806
4922
  msgid "Save"
4923
  msgstr "Shrani"
4924
 
4925
  #. translators: %s: Ad Inserter
4926
+ #: settings.php:4017
4927
  msgid "ads.txt file: %s virtual ads.txt file"
4928
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4929
 
4930
+ #: settings.php:4022 settings.php:4042 strings.php:225
4931
  msgid "Warning"
4932
  msgstr "Opozorilo"
4933
 
4934
  #. translators: %s: Ad Inserter
4935
+ #: settings.php:4022
4936
  msgid "%s virtual file ads.txt not found"
4937
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4938
 
4939
+ #: settings.php:4030
4940
  msgid "IMPORTANT"
4941
  msgstr "POMEMBNO"
4942
 
4943
+ #: settings.php:4030
4944
  msgid "ads.txt file must be placed on the root domain"
4945
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4946
 
4947
+ #: settings.php:4035
4948
  msgid "ads.txt file"
4949
  msgstr "datoteka ads.txt"
4950
 
4951
+ #: settings.php:4035
4952
  msgid "NOT WRITABLE"
4953
  msgstr "NI ZAPISLJIVO"
4954
 
4955
+ #: settings.php:4042
4956
  msgid "file %s not found"
4957
  msgstr "datoteka %s ni najdena"
4958
 
4959
+ #: settings.php:4052
4960
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4961
  msgstr ""
4962
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4963
 
4964
  #. translators: %s: Ad Inserter
4965
+ #: settings.php:4058
4966
  msgid "%s virtual ads.txt file"
4967
  msgstr "%s navidezna datoteka ads.txt"
4968
 
4969
+ #: settings.php:4080
4970
  msgid "Advertising system"
4971
  msgstr "Oglaševalski sistem"
4972
 
4973
+ #: settings.php:4081
4974
  msgid "Account ID"
4975
  msgstr "ID Računa"
4976
 
4977
+ #: settings.php:4083
4978
  msgid "Certification authority ID"
4979
  msgstr "ID organa za potrjevanje"
4980
 
4981
+ #: settings.php:4098
4982
  msgid "Account ID found in block and present in ads.txt"
4983
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4984
 
4985
+ #: settings.php:4102
4986
  msgid "Account ID found in block but not present in ads.txt"
4987
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4988
 
4989
+ #: settings.php:4451
4990
  msgid "Preview block"
4991
  msgstr "Predogled bloka"
4992
 
4993
+ #: settings.php:4458
4994
  msgid "Pause block"
4995
  msgstr "Ustavite blok"
4996
 
4997
+ #: settings.php:4497
4998
  msgid "Automatic insertion"
4999
  msgstr "Samodejno vstavljanje"
5000
 
5001
  #. translators: %s HTML tags
5002
+ #: settings.php:4498 settings.php:5820
5003
  msgid "PHP code processing"
5004
  msgstr "Procesiranje PHP kode"
5005
 
5006
+ #: settings.php:4500
5007
  msgid "Device detection"
5008
  msgstr "Zaznavanje naprave"
5009
 
5010
+ #: settings.php:4523
5011
  msgid "No active block"
5012
  msgstr "Noben aktiven blok"
5013
 
5014
+ #: settings.php:4524
5015
  msgid "No block matches search keywords"
5016
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
5017
 
5018
+ #: settings.php:4584
5019
  msgid "Ad unit"
5020
  msgstr "Enota"
5021
 
5022
+ #: settings.php:4586
5023
  msgid "Slot ID"
5024
  msgstr "ID mesta"
5025
 
5026
+ #: settings.php:4613
5027
  msgid "Copy AdSense code"
5028
  msgstr "Kopiraj kodo AdSense"
5029
 
5030
+ #: settings.php:4616
5031
  msgid "Preview AdSense ad"
5032
  msgstr "Predogled oglasa AdSense"
5033
 
5034
+ #: settings.php:4619
5035
  msgid "Get AdSense code"
5036
  msgstr "Pridobi kodo AdSense"
5037
 
5038
  #. translators: %s: HTML tags
5039
+ #: settings.php:4651
5040
  msgid ""
5041
  "Please %s clear authorization %s with the button %s above and once again "
5042
  "authorize access to your AdSense account."
5044
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
5045
  "avtorizirajte dostop do vašega računa AdSense."
5046
 
5047
+ #: settings.php:4670
5048
  msgid "AdSense Integration"
5049
  msgstr "Integracija AdSense"
5050
 
5051
+ #: settings.php:4672
5052
  msgid "AdSense Integration - Step 2"
5053
  msgstr "Integracija AdSense - Korak 2"
5054
 
5055
  #. translators: %s: HTML tags
5056
+ #: settings.php:4678
5057
  msgid ""
5058
  "Authorize %s to access your AdSense account. Click on the %s Get "
5059
  "Authorization Code %s button to open a new window where you can allow "
5066
  "Avtoriziraj. %s"
5067
 
5068
  #. translators: %s: HTML tags
5069
+ #: settings.php:4685
5070
  msgid ""
5071
  "If you get error, can't access ad units or would like to use own Google API "
5072
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
5077
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
5078
 
5079
  #. translators: %s: HTML tags
5080
+ #: settings.php:4687
5081
  msgid ""
5082
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
5083
  "Authorization Code %s button to open a new window where you can allow "
5090
  "gumb %s Avtoriziraj. %s"
5091
 
5092
  #. translators: %s: HTML tags
5093
+ #: settings.php:4694
5094
  msgid ""
5095
  "If you get error %s invalid client %s click on the button %s Clear and "
5096
  "return to Step 1 %s to re-enter Client ID and Client Secret."
5098
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
5099
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
5100
 
5101
+ #: settings.php:4705
5102
  msgid "Get Authorization Code"
5103
  msgstr "Pridobi Avtoriazcijsko Kodo"
5104
 
5105
+ #: settings.php:4708
5106
  msgid "Enter Authorization Code"
5107
  msgstr "Vnesi Avorizacijsko Kodo"
5108
 
5109
+ #: settings.php:4718
5110
  msgid "Use own API IDs"
5111
  msgstr "Uporabi lastne API ID-je"
5112
 
5113
+ #: settings.php:4720
5114
  msgid "Clear and return to Step 1"
5115
  msgstr "Odstrani in se vrni na Korak 1"
5116
 
5117
+ #: settings.php:4724
5118
  msgid "Authorize"
5119
  msgstr "Avtoriziraj"
5120
 
5121
+ #: settings.php:4740
5122
  msgid "AdSense Integration - Step 1"
5123
  msgstr "Integracija AdSense - Korak 1"
5124
 
5125
  #. translators: %s: Ad Inserter
5126
+ #: settings.php:4744
5127
  msgid ""
5128
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
5129
  "To do this you need to authorize %s to access your AdSense account. The "
5136
  "Odjemalca in Skrivnost Odjemalca."
5137
 
5138
  #. translators: %s: HTML tags
5139
+ #: settings.php:4753
5140
  msgid "Go to %s Google APIs and Services console %s"
5141
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
5142
 
5143
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
5144
+ #: settings.php:4754
5145
  msgid ""
5146
  "Create %1$s project - if the project and IDs are already created click on "
5147
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
5150
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
5151
 
5152
  #. translators: %s: HTML tags
5153
+ #: settings.php:4755
5154
  msgid ""
5155
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
5156
  "create a new project"
5159
  "ustvaritev novega projekta"
5160
 
5161
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
5162
+ #: settings.php:4756
5163
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
5164
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
5165
 
5166
  #. translators: %s: HTML tags
5167
+ #: settings.php:4757
5168
  msgid ""
5169
  "Click on project selection, wait for the project to be created and then and "
5170
  "select %s as the current project"
5173
  "izberite %s kot trenutni projekt"
5174
 
5175
  #. translators: %s: HTML tags
5176
+ #: settings.php:4758
5177
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
5178
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
5179
 
5180
  #. translators: %s: HTML tags
5181
+ #: settings.php:4759
5182
  msgid "Search for adsense and enable %s"
5183
  msgstr "Poiščite adsense in omogočite %s"
5184
 
5185
  #. translators: %s: HTML tags
5186
+ #: settings.php:4760
5187
  msgid "Click on %s CREATE CREDENTIALS %s"
5188
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
5189
 
5190
  #. translators: %s: HTML tags
5191
+ #: settings.php:4761
5192
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
5193
  msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
5194
 
5195
  #. translators: %s: HTML tags
5196
+ #: settings.php:4762
5197
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
5198
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
5199
 
5200
  #. translators: %s: HTML tags
5201
+ #: settings.php:4763
5202
  msgid "For %s What data will you be accessing? %s select %s User data %s"
5203
  msgstr ""
5204
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
5205
  "podatki %s"
5206
 
5207
  #. translators: %s: HTML tags
5208
+ #: settings.php:4764
5209
  msgid "Click on %s What credentials do I need? %s"
5210
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
5211
 
5212
  #. translators: %s: HTML tags
5213
+ #: settings.php:4765
5214
  msgid ""
5215
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
5216
  "Consent Screen %s"
5219
  "Nastavite Zaslon za Soglasje %s"
5220
 
5221
  #. translators: %s: HTML tags
5222
+ #: settings.php:4766
5223
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
5224
  msgstr ""
5225
  "Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
5226
 
5227
  #. translators: %s: HTML tags
5228
+ #: settings.php:4767
5229
  msgid ""
5230
  "For %s App name %s enter %s and for %s User support email %s select your "
5231
  "Google account email address"
5234
  "vaš email naslov Google računa"
5235
 
5236
  #. translators: %s: HTML tags
5237
+ #: settings.php:4768
5238
  msgid ""
5239
  "For %s Developer contact information %s enter your email address and click "
5240
  "on %s SAVE AND CONTINUE %s"
5243
  "na %s SHRANI IN NADALJUJ %s"
5244
 
5245
  #. translators: %s: HTML tags
5246
+ #: settings.php:4769
5247
  msgid ""
5248
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
5249
  "add your Google account email address"
5252
  "UPORABNIKE %s in dodajte email naslov vašga Google računa"
5253
 
5254
  #. translators: %s: HTML tags
5255
+ #: settings.php:4770
5256
  msgid ""
5257
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
5258
  msgstr ""
5260
  "NADZORNO PLOŠČO %s"
5261
 
5262
  #. translators: %s: HTML tags
5263
+ #: settings.php:4771
5264
  msgid ""
5265
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5266
  "Ad Inserter client %s and then click on %s REFRESH %s"
5269
  "vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
5270
 
5271
  #. translators: %s: HTML tags
5272
+ #: settings.php:4772
5273
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
5274
  msgstr ""
5275
  "Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
5276
  "OPRAVLJENO %s"
5277
 
5278
  #. translators: %s: HTML tags
5279
+ #: settings.php:4773
5280
  msgid ""
5281
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5282
  "secret %s"
5284
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5285
  "%s Skrivnost odjemalca %s"
5286
 
5287
+ #: settings.php:4774
5288
  msgid "Copy them to the appropriate fields below"
5289
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5290
 
5291
+ #: settings.php:4780
5292
  msgid "Client ID"
5293
  msgstr "ID odjemalca"
5294
 
5295
+ #: settings.php:4783
5296
  msgid "Enter Client ID"
5297
  msgstr "Vnesite ID odjemalca"
5298
 
5299
+ #: settings.php:4788
5300
  msgid "Client secret"
5301
  msgstr "Skrivnost odjemalca"
5302
 
5303
+ #: settings.php:4791
5304
  msgid "Enter Client secret"
5305
  msgstr "Vnesite Skrivnost odjemalca"
5306
 
5307
+ #: settings.php:4801
5308
  msgid "Use default API IDs"
5309
  msgstr "Uporabi privzete API ID-je"
5310
 
5311
+ #: settings.php:4902
5312
  msgid "All posts"
5313
  msgstr "Vsi prispevki"
5314
 
5315
+ #: settings.php:4903
5316
  msgid "All static pages"
5317
  msgstr "Vse statične strani"
5318
 
5319
+ #: settings.php:5473
5320
+ msgid "Maximize Your Ad Revenue With Header Bidding"
5321
+ msgstr "Maksimirajte Vaše Oglasne Prihodke s Preddražbo"
5322
+
5323
+ #: settings.php:5478 settings.php:5701 settings.php:5715 settings.php:5744
5324
+ #: settings.php:5772
5325
+ msgid "Maximize Your Ad Revenue"
5326
+ msgstr "Povečajte Vaš Prihodek od Oglasov"
5327
+
5328
+ #: settings.php:5487 settings.php:5501
5329
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5330
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5331
 
5332
+ #: settings.php:5492 settings.php:5506 settings.php:5704 settings.php:5706
5333
+ #: settings.php:5724 settings.php:5729 settings.php:5737 settings.php:5738
5334
+ #: settings.php:5741 settings.php:5748 settings.php:5759 settings.php:5763
 
 
5335
  msgid "Looking for AdSense alternative?"
5336
  msgstr "Iščete alternativo za AdSense?"
5337
 
5338
+ #: settings.php:5518
5339
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5340
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5341
 
5342
+ #: settings.php:5523 settings.php:5698 settings.php:5719 settings.php:5747
5343
+ #: settings.php:5767
5344
  msgid "Use Infolinks ads with Adsense to earn more"
5345
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5346
 
5347
+ #: settings.php:5544 settings.php:5594
5348
  msgid "Support plugin development"
5349
  msgstr "Podprite razvoj vtičnika"
5350
 
5351
+ #: settings.php:5549 settings.php:5595
5352
  msgid ""
5353
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5354
  "reviewing the plugin on WordPres"
5356
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5357
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5358
 
5359
+ #: settings.php:5549
5360
  msgctxt "Review Ad Inserter"
5361
  msgid "Review"
5362
  msgstr "Ocenite"
5363
 
5364
+ #: settings.php:5554
5365
  msgid ""
5366
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5367
  "rating the plugin on WordPres"
5369
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5370
  "razširiti novico z oceno vtičnika na WordPress-u"
5371
 
5372
+ #: settings.php:5554
5373
  msgctxt "Rate Ad Inserter"
5374
  msgid "Rate"
5375
  msgstr "Ocenite"
5376
 
5377
+ #: settings.php:5559
5378
  msgid ""
5379
  "Support free Ad Inserter development. If you are making money with Ad "
5380
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
5383
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5384
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5385
 
5386
+ #: settings.php:5559
5387
  msgid "Donate"
5388
  msgstr "Donirajte"
5389
 
5390
+ #: settings.php:5566 settings.php:5610
5391
  msgid "Average rating of the plugin - Thank you!"
5392
  msgstr "Povprečna ocena vtičnika - Hvala!"
5393
 
5394
  #. translators: %s: Ad Inserter, HTML tags
5395
+ #: settings.php:5577
5396
  msgid ""
5397
  "You've been using %s for a while now, and I hope you're happy with it. "
5398
  "Positive %s reviews %s are a great way to show your appreciation for my "
5407
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5408
  "bi rekli 'Hvala'."
5409
 
5410
+ #: settings.php:5595
5411
  msgid "Review"
5412
  msgstr "Ocena"
5413
 
5414
+ #: settings.php:5599
5415
  msgid "Ad Inserter on Twitter"
5416
  msgstr "Ad Inserter na Twitter-ju"
5417
 
5418
+ #: settings.php:5600
5419
  msgid "Ad Inserter on Facebook"
5420
  msgstr "Ad Inserter na Facebook-u"
5421
 
5422
+ #: settings.php:5603
5423
  msgid "Follow Ad Inserter"
5424
  msgstr "Sledi Ad Inserter-ju"
5425
 
5426
  #. translators: %s: HTML tags
5427
+ #: settings.php:5630
5428
  msgid ""
5429
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5430
  "and %s Common Settings %s pages"
5433
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5434
 
5435
  #. translators: %s: HTML tags
5436
+ #: settings.php:5642
5437
  msgid ""
5438
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5439
  "Auto ads, %s %s AMP ads %s"
5442
  "viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
5443
 
5444
  #. translators: %s: HTML tags
5445
+ #: settings.php:5659
5446
  msgid ""
5447
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5448
  "purchase you refer to us"
5451
  "nakup, ki nam ga posredujete"
5452
 
5453
  #. translators: %s: HTML tags
5454
+ #: settings.php:5666
5455
  msgid ""
5456
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5457
  "diagnose and fix the problem."
5460
  "navodili za diagnozo in rešitvami za težave."
5461
 
5462
  #. translators: %s: HTML tags
5463
+ #: settings.php:5670
5464
  msgid ""
5465
  "If you need any kind of help or support, please do not hesitate to open a "
5466
  "thread on the %s support forum. %s"
5468
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5469
  "nit na %s podpornem forumu. %s"
5470
 
5471
+ #: settings.php:5697 settings.php:5756 settings.php:5768
5472
  msgid "Code preview with visual CSS editor"
5473
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5474
 
5475
+ #: settings.php:5700 settings.php:5728
5476
  msgid "Ad blocking detection and content protection"
5477
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5478
 
5479
+ #: settings.php:5703 settings.php:5757
5480
  msgid "A/B testing - Track ad impressions and clicks"
5481
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5482
 
5483
+ #: settings.php:5720
5484
  msgid "Insert ads on AMP pages"
5485
  msgstr "Vstavite oglase na AMP straneh"
5486
 
5487
+ #: settings.php:5780
5488
  msgid "Looking for Pro Ad Management plugin?"
5489
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5490
 
5491
+ #: settings.php:5781
5492
  msgid "To Optimally Monetize your WordPress website?"
5493
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5494
 
5495
  #. Translators: %s: price of Ad Inserter Pro
5496
+ #: settings.php:5782
5497
  msgid "Different license types starting from %s"
5498
  msgstr "Različni tipi licenc začenši od %s"
5499
 
5500
  #. translators: %s HTML tags
5501
+ #: settings.php:5785
5502
  msgid "%s AdSense Integration %s"
5503
  msgstr "%s Integracija AdSense %s"
5504
 
5505
  #. translators: %s HTML tags
5506
+ #: settings.php:5786
5507
  msgid "Syntax highlighting %s editor %s"
5508
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5509
 
5510
  #. translators: %s HTML tags
5511
+ #: settings.php:5787
5512
  msgid "%s Code preview %s with visual CSS editor"
5513
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5514
 
5515
  #. translators: %s HTML tags
5516
+ #: settings.php:5788
5517
  msgid "Simple user interface - all settings on a single page"
5518
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5519
 
5520
  #. translators: %s HTML tags
5521
+ #: settings.php:5789
5522
  msgid ""
5523
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5524
  "image / excerpt"
5527
  "%s / sliko / izvlečkom"
5528
 
5529
  #. translators: %s HTML tags
5530
+ #: settings.php:5790
5531
  msgid "%s Automatic insertion %s between posts on blog pages"
5532
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5533
 
5534
  #. translators: %s HTML tags
5535
+ #: settings.php:5791
5536
  msgid "%s Automatic insertion %s before, between and after comments"
5537
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5538
 
5539
  #. translators: %s HTML tags
5540
+ #: settings.php:5792
5541
  msgid "%s Automatic insertion %s after %s or before %s tag"
5542
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5543
 
5544
  #. translators: %s HTML tags
5545
+ #: settings.php:5793
5546
  msgid "Automatic insertion at %s custom hook positions %s"
5547
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5548
 
5549
  #. translators: %s HTML tags
5550
+ #: settings.php:5794
5551
  msgid ""
5552
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5553
  "selectors)"
5556
  "selektorjev)"
5557
 
5558
  #. translators: %s HTML tags
5559
+ #: settings.php:5795
5560
  msgid "%s Insertion exceptions %s for individual posts and pages"
5561
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5562
 
5563
  #. translators: %s HTML tags
5564
+ #: settings.php:5796
5565
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5566
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5567
 
5568
  #. translators: %s HTML tags
5569
+ #: settings.php:5797
5570
  msgid ""
5571
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5572
  "scrolls)"
5575
  "se stran pomika)"
5576
 
5577
  #. translators: %s HTML tags
5578
+ #: settings.php:5798
5579
  msgid "%s Background ads %s with one or left and right background images"
5580
  msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
5581
 
5582
  #. translators: %s HTML tags
5583
+ #: settings.php:5799
5584
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5585
  msgstr ""
5586
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5587
 
5588
  #. translators: %s HTML tags
5589
+ #: settings.php:5800
5590
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5591
  msgstr ""
5592
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5593
 
5594
  #. translators: %s HTML tags
5595
+ #: settings.php:5801
5596
  msgid ""
5597
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5598
  "visible)"
5601
  "postane viden)"
5602
 
5603
  #. translators: %s HTML tags
5604
+ #: settings.php:5802
5605
  msgid ""
5606
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5607
  msgstr ""
5609
  "strani)"
5610
 
5611
  #. translators: %s HTML tags
5612
+ #: settings.php:5803
5613
  msgid "Block %s alignment and style %s customizations"
5614
  msgstr "%s Poravnave in slogi %s bloka po meri"
5615
 
5616
  #. translators: %s HTML tags
5617
+ #: settings.php:5804
5618
  msgid ""
5619
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5620
  "TOS)"
5622
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5623
 
5624
  #. translators: %s HTML tags
5625
+ #: settings.php:5805
5626
  msgid ""
5627
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5628
  "feeds"
5631
  "virih"
5632
 
5633
  #. translators: %s HTML tags
5634
+ #: settings.php:5806
5635
  msgid "%s Ad rotation %s (works also with caching)"
5636
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5637
 
5638
  #. translators: %s HTML tags
5639
+ #: settings.php:5807
5640
  msgid "Ad rotation %s optimization based on CTR %s"
5641
  msgstr "Optimizacija vrtenja oglasov %s glede na CTR %s"
5642
 
5643
  #. translators: %s HTML tags
5644
+ #: settings.php:5808
5645
  msgid "Create, edit and check %s ads.txt %s file"
5646
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5647
 
5648
  #. translators: %s HTML tags
5649
+ #: settings.php:5809
5650
  msgid ""
5651
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5652
  "AdSense)"
5655
  "AdSense)"
5656
 
5657
  #. translators: %s HTML tags
5658
+ #: settings.php:5810
5659
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5660
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5661
 
5662
  #. translators: %s HTML tags
5663
+ #: settings.php:5811
5664
  msgid "%s Public web reports %s for clients, export to PDF"
5665
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5666
 
5667
  #. translators: %s HTML tags
5668
+ #: settings.php:5812
5669
  msgid "Support for %s A/B testing %s"
5670
  msgstr "Podpora za %s A/B testiranje %s"
5671
 
5672
  #. translators: %s HTML tags
5673
+ #: settings.php:5813
5674
  msgid "Frequency capping - %s limit impressions or clicks %s"
5675
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5676
 
5677
  #. translators: %s HTML tags
5678
+ #: settings.php:5814
5679
  msgid "Click fraud %s protection %s"
5680
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5681
 
5682
  #. translators: %s HTML tags
5683
+ #: settings.php:5815
5684
  msgid "Support for %s GDPR consent cookie checks %s"
5685
  msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
5686
 
5687
  #. translators: %s HTML tags
5688
+ #: settings.php:5816
5689
  msgid "Support for %s lazy loading %s"
5690
  msgstr "Podpora za %s leno nalaganje %s"
5691
 
5692
  #. translators: %s HTML tags
5693
+ #: settings.php:5817
5694
  msgid "Support for ads on %s AMP pages %s"
5695
  msgstr "Podpora za oglase na %s AMP straneh %s"
5696
 
5697
  #. translators: %s HTML tags
5698
+ #: settings.php:5818
5699
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5700
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5701
 
5702
  #. translators: %s HTML tags
5703
+ #: settings.php:5819
5704
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5705
  msgstr ""
5706
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5707
 
5708
  #. translators: %s HTML tags
5709
+ #: settings.php:5821
5710
  msgid "%s Banner %s code generator"
5711
  msgstr "Generator kode za %s pasice %s"
5712
 
5713
  #. translators: %s HTML tags
5714
+ #: settings.php:5822
5715
  msgid "Support for %s header and footer %s code"
5716
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5717
 
5718
  #. translators: %s HTML tags
5719
+ #: settings.php:5823
5720
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5721
  msgstr ""
5722
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5723
 
5724
  #. translators: %s HTML tags
5725
+ #: settings.php:5824
5726
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5727
  msgstr ""
5728
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5729
  "strežnika"
5730
 
5731
  #. translators: %s HTML tags
5732
+ #: settings.php:5825
5733
  msgid "Client-side %s mobile device detection %s (works with caching)"
5734
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5735
 
5736
  #. translators: %s HTML tags
5737
+ #: settings.php:5826
5738
  msgid ""
5739
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5740
  "protection"
5743
  "vsebine"
5744
 
5745
  #. translators: %s HTML tags
5746
+ #: settings.php:5827
5747
  msgid "%s Ad blocking statistics %s"
5748
  msgstr "%s Statistika blokiranja oglasov %s"
5749
 
5750
  #. translators: %s HTML tags
5751
+ #: settings.php:5828
5752
  msgid ""
5753
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5754
  "referrers, operating systems, browsers"
5757
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5758
 
5759
  #. translators: %s HTML tags
5760
+ #: settings.php:5829
5761
  msgid ""
5762
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5763
  msgstr ""
5764
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5765
 
5766
  #. translators: %s HTML tags
5767
+ #: settings.php:5830
5768
  msgid "%s Multisite options %s to limit settings on the sites"
5769
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5770
 
5771
  #. translators: %s HTML tags
5772
+ #: settings.php:5831
5773
  msgid "%s Import/Export %s block or plugin settings"
5774
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5775
 
5776
  #. translators: %s HTML tags
5777
+ #: settings.php:5832
5778
  msgid "%s Insertion scheduling %s with fallback option"
5779
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5780
 
5781
  #. translators: %s HTML tags
5782
+ #: settings.php:5833
5783
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5784
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5785
 
5786
  #. translators: %s HTML tags
5787
+ #: settings.php:5834
5788
  msgid "Simple troubleshooting with many %s debugging functions %s"
5789
  msgstr ""
5790
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5791
 
5792
  #. translators: %s HTML tags
5793
+ #: settings.php:5835
5794
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5795
  msgstr ""
5796
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5797
 
5798
  #. translators: %s HTML tags
5799
+ #: settings.php:5836
5800
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5801
  msgstr ""
5802
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5803
 
5804
  #. translators: %s HTML tags
5805
+ #: settings.php:5837
5806
  msgid ""
5807
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5808
  msgstr ""
5809
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5810
 
5811
  #. translators: %s HTML tags
5812
+ #: settings.php:5838
5813
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5814
  msgstr ""
5815
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5816
 
5817
  #. translators: %s HTML tags
5818
+ #: settings.php:5839
5819
  msgid "No ads on the settings page"
5820
  msgstr "Stran z nastavitvami brez oglasov"
5821
 
5822
  #. translators: %s HTML tags
5823
+ #: settings.php:5840
5824
  msgid "Premium support"
5825
  msgstr "Vrhunska podpora"
5826
 
5827
  #. translators: %s HTML tags
5828
+ #: settings.php:5843
5829
  msgid ""
5830
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5831
  "website with many advertising features to automatically insert adverts on "
5852
  "bodo ohranile)."
5853
 
5854
  #. translators: %s HTML tags
5855
+ #: settings.php:5856
5856
  msgid "Looking for %s Pro Ad Management plugin? %s"
5857
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5858
 
5859
  #. translators: %s HTML tags
5860
+ #: settings.php:5861
5861
  msgid "Ads between posts"
5862
  msgstr "Oglasi med prispevki"
5863
 
5864
  #. translators: %s HTML tags
5865
+ #: settings.php:5862
5866
  msgid "Ads between comments"
5867
  msgstr "Oglasi med komentarji"
5868
 
5869
  #. translators: %s HTML tags
5870
+ #: settings.php:5863
5871
  msgid "Support via email"
5872
  msgstr "Podpora prek elektronske pošte"
5873
 
5874
  #. translators: %s HTML tags
5875
+ #: settings.php:5869
5876
  msgid "%s Sticky positions %s"
5877
  msgstr "%s Lepljivi položaji %s"
5878
 
5879
  #. translators: %s HTML tags
5880
+ #: settings.php:5870
5881
  msgid "%s Limit insertions %s"
5882
  msgstr "%s Omeji vstavljanja %s"
5883
 
5884
  #. translators: %s HTML tags
5885
+ #: settings.php:5871
5886
  msgid "%s Clearance %s options"
5887
  msgstr "Možnosti %s izogibanja %s"
5888
 
5889
  #. translators: %s HTML tags
5890
+ #: settings.php:5877
5891
  msgid "Ad rotation"
5892
  msgstr "Vrtenje oglasov"
5893
 
5894
  #. translators: %s HTML tags
5895
+ #: settings.php:5878
5896
  msgid "%s A/B testing %s"
5897
  msgstr "%s A/B testiranje %s"
5898
 
5899
  #. translators: %s HTML tags
5900
+ #: settings.php:5879
5901
  msgid "%s Ad tracking %s"
5902
  msgstr "%s Sledenje oglasom %s"
5903
 
5904
  #. translators: %s HTML tags
5905
+ #: settings.php:5885
5906
  msgid "Support for %s AMP pages %s"
5907
  msgstr "Podpora za %s AMP strani %s"
5908
 
5909
  #. translators: %s HTML tags
5910
+ #: settings.php:5886
5911
  msgid "%s Ad blocking detection %s"
5912
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5913
 
5914
  #. translators: %s HTML tags
5915
+ #: settings.php:5887
5916
  msgid "%s Mobile device detection %s"
5917
  msgstr "%s Zaznavanje mobilne naprave %s"
5918
 
5919
  #. translators: %s HTML tags
5920
+ #: settings.php:5894
5921
  msgid "64 code blocks"
5922
  msgstr "64 kodnih blokov"
5923
 
5924
  #. translators: %s HTML tags
5925
+ #: settings.php:5895
5926
  msgid "%s GEO targeting %s"
5927
  msgstr "%s GEO ciljanje %s"
5928
 
5929
  #. translators: %s HTML tags
5930
+ #: settings.php:5896
5931
  msgid "%s Scheduling %s"
5932
  msgstr "%s Urnik %s"
5933
 
6819
  msgid "CSS selector"
6820
  msgstr "CSS selektor"
6821
 
6822
+ #: strings.php:294
6823
+ msgid "Use current selector"
6824
+ msgstr "Uporabi trenutni selektor"
6825
 
6826
+ #: strings.php:295
6827
+ msgid "ELEMENT"
6828
+ msgstr "ELEMENT"
6829
 
6830
+ #: strings.php:296
6831
+ msgid "PATH"
6832
+ msgstr "POT"
6833
 
6834
+ #: strings.php:297
6835
+ msgid "SELECTOR"
6836
+ msgstr "SELEKTOR"
6837
 
6838
+ #. Description of the plugin/theme
6839
+ msgid ""
6840
+ "Ad management with many advanced advertising features to insert ads at "
6841
+ "optimal positions"
6842
+ msgstr ""
6843
+ "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
6844
+ "na optimalna mesta"
6845
 
6846
  #~ msgid "The latest PHP version: "
6847
  #~ msgstr "Zadnja različica PHP: "
7082
  #~ msgid "Contain"
7083
  #~ msgstr "Vsebovano"
7084
 
 
 
 
7085
  #~ msgid "Widget positions"
7086
  #~ msgstr "Položaji gradnikov"
7087
 
languages/ad-inserter.pot CHANGED
@@ -1,490 +1,495 @@
1
- # Copyright (C) 2021 Ad Inserter
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.8\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2021-12-31 11:55:17+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:300
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:316
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:323
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:409
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:416
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:425
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:432
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:443
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
- #: ad-inserter.php:450
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
- #: ad-inserter.php:1121
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
- #: ad-inserter.php:1126
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:1131 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:1136 strings.php:105
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
- #: ad-inserter.php:1141 strings.php:106
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
- #: ad-inserter.php:1146 strings.php:170
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
- #: ad-inserter.php:1193
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
- #: ad-inserter.php:1197
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
- #: ad-inserter.php:1495
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
- #: ad-inserter.php:1869 ad-inserter.php:3309
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
- #: ad-inserter.php:2612
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
- #: ad-inserter.php:2612
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
- #: ad-inserter.php:2613
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
- #: ad-inserter.php:2614
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
- #: ad-inserter.php:2615
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
- #: ad-inserter.php:2616
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
- #: ad-inserter.php:2617
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
- #: ad-inserter.php:3004
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:3007
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
- #: ad-inserter.php:3011
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
- #: ad-inserter.php:3016
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
- #: ad-inserter.php:3019
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
- #: ad-inserter.php:3032
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:3034
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:3040
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:3057 ad-inserter.php:3092
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:3064
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
- #: ad-inserter.php:3074
 
 
 
 
 
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr ""
196
 
197
- #: ad-inserter.php:3106
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:3106
204
  msgid "Safe mode"
205
  msgstr ""
206
 
207
  #. translators: %s: Ad Inserter
208
- #: ad-inserter.php:3201
209
  msgctxt "Meta box name"
210
  msgid "%s Individual Exceptions"
211
  msgstr ""
212
 
213
- #: ad-inserter.php:3230 ad-inserter.php:11567 class.php:2521
214
- #: includes/preview.php:2343 includes/preview.php:2388
215
- #: includes/preview.php:2425 settings.php:4476 strings.php:3
216
  msgid "Block"
217
  msgstr ""
218
 
219
- #: ad-inserter.php:3231 includes/functions.php:4627 settings.php:4477
220
- #: settings.php:4567
221
  msgid "Name"
222
  msgstr ""
223
 
224
- #: ad-inserter.php:3234 settings.php:1247
225
  msgid "Default insertion"
226
  msgstr ""
227
 
228
  #. translators: For this post or page
229
- #: ad-inserter.php:3237
230
  msgctxt "Page"
231
  msgid "For this"
232
  msgstr ""
233
 
234
- #: ad-inserter.php:3238
235
  msgctxt "Post"
236
  msgid "For this"
237
  msgstr ""
238
 
239
- #: ad-inserter.php:3250
240
  msgctxt "Enabled/disabled on all"
241
  msgid "pages"
242
  msgstr ""
243
 
244
- #: ad-inserter.php:3253
245
  msgctxt "Enabled/disabled on all"
246
  msgid "posts"
247
  msgstr ""
248
 
249
- #: ad-inserter.php:3270 ad-inserter.php:3282 strings.php:176
250
  msgid "Enabled"
251
  msgstr ""
252
 
253
  #. translators: Menu items
254
- #: ad-inserter.php:3270 ad-inserter.php:3282
255
- #: includes/functions-check-now.php:2402 includes/functions.php:2954
256
- #: includes/functions.php:3317 strings.php:16
257
  msgid "Disabled"
258
  msgstr ""
259
 
260
- #: ad-inserter.php:3272
261
  msgid "No individual exceptions"
262
  msgstr ""
263
 
264
  #. translators: Not enabled for pages or posts
265
- #: ad-inserter.php:3274
266
  msgid "Not enabled for"
267
  msgstr ""
268
 
269
  #. translators: No individual exceptions enabled for pages or posts
270
- #: ad-inserter.php:3302
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:3307
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:3310 settings.php:1225
282
  msgid "Tag / Archive pages"
283
  msgstr ""
284
 
285
- #: ad-inserter.php:3312
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:3313
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:3315
298
  msgid "For more information check page %s"
299
  msgstr ""
300
 
301
  #. translators: Ad Inserter Exceptions documentation page
302
- #: ad-inserter.php:3317
303
  msgid "Individual Exceptions"
304
  msgstr ""
305
 
306
- #: ad-inserter.php:3363
307
  msgid "STATIC PAGE"
308
  msgstr ""
309
 
310
- #: ad-inserter.php:3366
311
  msgid "POST"
312
  msgstr ""
313
 
314
- #: ad-inserter.php:3369
315
  msgid "HOMEPAGE"
316
  msgstr ""
317
 
318
- #: ad-inserter.php:3372
319
  msgid "CATEGORY PAGE"
320
  msgstr ""
321
 
322
- #: ad-inserter.php:3375
323
  msgid "SEARCH PAGE"
324
  msgstr ""
325
 
326
- #: ad-inserter.php:3378
327
  msgid "ARCHIVE PAGE"
328
  msgstr ""
329
 
330
- #: ad-inserter.php:3381
331
  msgid "ERROR 404 PAGE"
332
  msgstr ""
333
 
334
- #: ad-inserter.php:3384
335
  msgid "AJAX CALL"
336
  msgstr ""
337
 
338
- #: ad-inserter.php:3387
339
  msgid "UNKNOWN PAGE TYPE"
340
  msgstr ""
341
 
342
- #: ad-inserter.php:3404
343
  msgid "Click to delete ad blocking detection cokies"
344
  msgstr ""
345
 
346
- #: ad-inserter.php:3405
347
  msgid "AD BLOCKING STATUS UNKNOWN"
348
  msgstr ""
349
 
350
  #. translators: %s: AdSense Auto Ads
351
- #: ad-inserter.php:3434
352
  msgid ""
353
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
354
  "positions"
355
  msgstr ""
356
 
357
- #: ad-inserter.php:3580
358
  msgid "Code for insertion"
359
  msgstr ""
360
 
361
- #: ad-inserter.php:3580
362
  msgid "character"
363
  msgid_plural "characters"
364
  msgstr[0] ""
365
  msgstr[1] ""
366
 
367
- #: ad-inserter.php:3596
368
  msgid "Header code"
369
  msgstr ""
370
 
371
- #: ad-inserter.php:3596
372
  msgctxt "Header code"
373
  msgid "DISABLED"
374
  msgstr ""
375
 
376
- #: ad-inserter.php:3596 ad-inserter.php:3852
377
  msgid "character inserted"
378
  msgid_plural "characters inserted"
379
  msgstr[0] ""
380
  msgstr[1] ""
381
 
382
- #: ad-inserter.php:3614
383
  msgid "Click to delete the cookie for the consents"
384
  msgstr ""
385
 
386
- #: ad-inserter.php:3852
387
  msgid "Footer code"
388
  msgstr ""
389
 
390
- #: ad-inserter.php:3852
391
  msgctxt "Footer code"
392
  msgid "DISABLED"
393
  msgstr ""
394
 
395
- #: ad-inserter.php:3863
396
  msgid "JAVASCRIPT NOT WORKING"
397
  msgstr ""
398
 
399
- #: ad-inserter.php:3863
400
  msgid "NO JAVASCRIPT ERRORS"
401
  msgstr ""
402
 
403
- #: ad-inserter.php:3863
404
  msgid "JAVASCRIPT ERRORS"
405
  msgstr ""
406
 
407
  #. translators: block name (block with default settings)
408
- #: ad-inserter.php:6686
409
  msgctxt "Block name"
410
  msgid "Default"
411
  msgstr ""
412
 
413
  #. translators: %s: Ad Inserter
414
- #: ad-inserter.php:7130 ad-inserter.php:7445
415
  msgid "Invalid data received - %s settings not saved."
416
  msgstr ""
417
 
418
  #. translators: %s: Ad Inserter
419
- #: ad-inserter.php:7415
420
  msgid "Error importing %s settings."
421
  msgstr ""
422
 
423
- #: ad-inserter.php:7416
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:7443
430
  msgid "Settings saved."
431
  msgstr ""
432
 
433
- #: ad-inserter.php:7465
434
  msgid "Settings cleared."
435
  msgstr ""
436
 
437
  #. Translators: Post/Static page must have between X and Y words
438
- #: ad-inserter.php:7841 ad-inserter.php:7843 ad-inserter.php:7866
439
- #: settings.php:2277
440
  msgid "word"
441
  msgid_plural "words"
442
  msgstr[0] ""
443
  msgstr[1] ""
444
 
445
- #: ad-inserter.php:7880 ad-inserter.php:8007
446
  msgid "HTML TAGS REMOVED"
447
  msgstr ""
448
 
449
- #: ad-inserter.php:8086
450
  msgid "BEFORE COMMENTS"
451
  msgstr ""
452
 
453
- #: ad-inserter.php:8211
454
  msgid "AFTER COMMENTS"
455
  msgstr ""
456
 
457
- #: ad-inserter.php:8288
458
  msgid "BETWEEN COMMENTS"
459
  msgstr ""
460
 
461
- #: ad-inserter.php:10845 ad-inserter.php:10934
462
  msgctxt "category name"
463
  msgid "Uncategorized"
464
  msgstr ""
465
 
466
- #: ad-inserter.php:11165
467
  msgid "requires WordPress 4.6 or newer"
468
  msgstr ""
469
 
470
- #: ad-inserter.php:11165
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:11435
477
  msgid "Thank you for installing"
478
  msgstr ""
479
 
480
  #. translators: Opt-in message: %s: HTML tags
481
- #: ad-inserter.php:11437
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:11439
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 +497,7 @@ msgid ""
492
  msgstr ""
493
 
494
  #. translators: Deactivation message: %s: HTML tags
495
- #: ad-inserter.php:11479
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 +505,56 @@ msgid ""
500
  msgstr ""
501
 
502
  #. translators: %s: Ad Inserter
503
- #: ad-inserter.php:11525
504
  msgid "%s block."
505
  msgstr ""
506
 
507
  #. translators: widget title
508
- #: ad-inserter.php:11541 ad-inserter.php:11576
509
  msgid "Processing log"
510
  msgstr ""
511
 
512
  #. translators: widget title
513
- #: ad-inserter.php:11543 ad-inserter.php:11577
514
  msgid "Dummy widget"
515
  msgstr ""
516
 
517
  #. translators: widget title
518
- #: ad-inserter.php:11545 ad-inserter.php:11575
519
  msgid "Debugging tools"
520
  msgstr ""
521
 
522
  #. translators: block status (widget title)
523
- #: ad-inserter.php:11552
524
  msgctxt "block"
525
  msgid "PAUSED"
526
  msgstr ""
527
 
528
- #: ad-inserter.php:11553
529
  msgid "WIDGET DISABLED"
530
  msgstr ""
531
 
532
- #: ad-inserter.php:11554
533
  msgid "Unknown block"
534
  msgstr ""
535
 
536
- #: ad-inserter.php:11562 includes/functions-check-now.php:3262
537
- #: includes/functions.php:5106 settings.php:1277
538
  msgid "Title"
539
  msgstr ""
540
 
541
- #: ad-inserter.php:11584
542
  msgctxt "Widget"
543
  msgid "Sticky"
544
  msgstr ""
545
 
546
- #: ad-inserter.php:11635
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:11636
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,189 +562,204 @@ msgid ""
557
  msgstr ""
558
 
559
  #. translators: %s: Ad Inserter
560
- #: class.php:611 class.php:620 class.php:623
561
  msgid "PHP error in %s block"
562
  msgstr ""
563
 
564
- #: class.php:2471
565
  msgid "Counters"
566
  msgstr ""
567
 
568
- #: class.php:2475
569
  msgid "Content"
570
  msgstr ""
571
 
572
- #: class.php:2480
573
  msgid "Excerpt"
574
  msgstr ""
575
 
576
- #: class.php:2485 strings.php:17
577
  msgid "Before post"
578
  msgstr ""
579
 
580
- #: class.php:2490 strings.php:18
581
  msgid "After post"
582
  msgstr ""
583
 
584
- #: class.php:2495 strings.php:25
585
  msgid "Between posts"
586
  msgstr ""
587
 
588
- #: class.php:2500 settings.php:2011 settings.php:4494
589
  msgid "Widget"
590
  msgstr ""
591
 
592
- #: class.php:2505 settings.php:4492
593
  msgid "PHP function call"
594
  msgstr ""
595
 
596
  #. Translators: %s: custom hook name
597
- #: class.php:2515
598
  msgid "Custom hook %s call"
599
  msgstr ""
600
 
601
- #: class.php:2551
602
  msgid "AJAX REQUEST"
603
  msgstr ""
604
 
605
- #: class.php:2554
606
  msgid "Ajax request for block in iframe"
607
  msgstr ""
608
 
609
- #: class.php:2588
610
  msgid "Ajax request url, click to open it in a new tab"
611
  msgstr ""
612
 
613
- #: class.php:2591
614
  msgid "IN THE LOOP"
615
  msgstr ""
616
 
617
- #: class.php:2591
618
  msgid "YES"
619
  msgstr ""
620
 
621
- #: class.php:2591
622
  msgid "NO"
623
  msgstr ""
624
 
625
- #: class.php:2626
626
  msgid "BLOCK"
627
  msgstr ""
628
 
629
- #: class.php:2626
630
  msgctxt "block or widget"
631
  msgid "INSERTED BUT NOT VISIBLE"
632
  msgstr ""
633
 
634
- #: class.php:2857
635
  msgctxt "viewports"
636
  msgid "ALL"
637
  msgstr ""
638
 
639
- #: class.php:2890 class.php:2931 class.php:4516 strings.php:282
640
  msgctxt "Block"
641
  msgid "HIDDEN"
642
  msgstr ""
643
 
644
- #: class.php:2938 class.php:4519 strings.php:281
645
  msgctxt "Block"
646
  msgid "VISIBLE"
647
  msgstr ""
648
 
649
- #: class.php:3621 class.php:3708
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
650
  msgid "ACTIVE GROUPS"
651
  msgstr ""
652
 
653
- #: class.php:4190
654
  msgid "start='%s' end='%s' days='%s' type='%s'"
655
  msgstr ""
656
 
657
- #: class.php:4198
658
  msgid "parameters='%s' type='%s'"
659
  msgstr ""
660
 
661
- #: class.php:4200
662
  msgid "cookies='%s' type='%s'"
663
  msgstr ""
664
 
665
  #. translators: %s: list parameters and type
666
- #: class.php:4202
667
  msgid "referers='%s' type='%s'"
668
  msgstr ""
669
 
670
  #. translators: %s: list parameters and type
671
- #: class.php:4204
672
  msgid "clients='%s' type='%s'"
673
  msgstr ""
674
 
675
  #. translators: %s: list parameters and type
676
- #: class.php:4399
677
  msgid "countries='%s' type='%s'"
678
  msgstr ""
679
 
680
  #. translators: %s: list parameters and type
681
- #: class.php:4401
682
  msgid "ip addresses='%s' type='%s'"
683
  msgstr ""
684
 
685
- #: class.php:4516 class.php:4519
686
  msgid "viewport='%s' type='%s'"
687
  msgstr ""
688
 
689
- #: class.php:4642 strings.php:283
690
  msgctxt "alternative block"
691
  msgid "FALLBACK"
692
  msgstr ""
693
 
694
- #: class.php:5210 strings.php:275
695
  msgid "BEFORE"
696
  msgstr ""
697
 
698
- #: class.php:5218 strings.php:277
699
  msgid "PREPEND CONTENT"
700
  msgstr ""
701
 
702
- #: class.php:5222 strings.php:278
703
  msgid "APPEND CONTENT"
704
  msgstr ""
705
 
706
- #: class.php:5226 strings.php:279
707
  msgid "REPLACE CONTENT"
708
  msgstr ""
709
 
710
- #: class.php:5230 strings.php:280
711
  msgid "REPLACE ELEMENT"
712
  msgstr ""
713
 
714
- #: class.php:5241 strings.php:276
715
  msgid "AFTER"
716
  msgstr ""
717
 
718
- #: class.php:5311 includes/preview.php:2388 includes/preview.php:2425
719
  msgid "Code"
720
  msgstr ""
721
 
722
- #: class.php:5314
723
  msgid "for block"
724
  msgstr ""
725
 
726
- #: class.php:9556
727
  msgid ""
728
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
729
  "extension for PHP."
730
  msgstr ""
731
 
732
  #: includes/editor.php:4 includes/placeholders.php:350
733
- #: includes/preview.php:2329 strings.php:288
734
  msgid "Use"
735
  msgstr ""
736
 
737
- #: includes/editor.php:5 includes/preview.php:2330
738
  msgid "Reset"
739
  msgstr ""
740
 
741
  #: includes/editor.php:6 includes/placeholders.php:352
742
- #: includes/preview.php:2332 settings.php:3813 strings.php:229 strings.php:287
743
  msgid "Cancel"
744
  msgstr ""
745
 
@@ -748,7 +768,7 @@ msgid "Visual Code Editor"
748
  msgstr ""
749
 
750
  #: includes/editor.php:259 includes/preview-adb.php:301
751
- #: includes/preview.php:2319
752
  msgid ""
753
  "This page was not loaded properly. Please check browser, plugins and ad "
754
  "blockers."
@@ -759,7 +779,7 @@ msgid "Error loading page"
759
  msgstr ""
760
 
761
  #: includes/editor.php:261 includes/preview-adb.php:303
762
- #: includes/preview.php:2321
763
  msgid "PAGE BLOCKED"
764
  msgstr ""
765
 
@@ -773,141 +793,141 @@ msgid "No name matches filter"
773
  msgstr ""
774
 
775
  #. translators: %s: Ad Inserter Pro
776
- #: includes/functions-check-now.php:396 includes/functions.php:430
777
  msgid ""
778
  "Import %s settings when saving - if checked, the encoded settings below will "
779
  "be imported for all blocks and settings"
780
  msgstr ""
781
 
782
- #: includes/functions-check-now.php:396 includes/functions.php:430
783
  msgid "Import Settings for"
784
  msgstr ""
785
 
786
- #: includes/functions-check-now.php:400 includes/functions.php:434
787
  msgid "Saved settings for"
788
  msgstr ""
789
 
790
- #: includes/functions-check-now.php:420 includes/functions.php:457
791
  msgid "License Key"
792
  msgstr ""
793
 
794
- #: includes/functions-check-now.php:423 includes/functions.php:460
795
  msgid "License Key for"
796
  msgstr ""
797
 
798
- #: includes/functions-check-now.php:425 includes/functions.php:462
799
  msgid "Open license page"
800
  msgstr ""
801
 
802
- #: includes/functions-check-now.php:432 includes/functions.php:469
803
  msgid "Hide license key"
804
  msgstr ""
805
 
806
- #: includes/functions-check-now.php:432 includes/functions.php:469
807
  msgid "Hide key"
808
  msgstr ""
809
 
810
- #: includes/functions-check-now.php:447 includes/functions.php:486
811
  msgid "Main content element"
812
  msgstr ""
813
 
814
- #: includes/functions-check-now.php:450 includes/functions.php:489
815
  msgid ""
816
  "Main content element (#id or .class) for 'Stick to the content' position. "
817
  "Leave empty unless position is not properly calculated."
818
  msgstr ""
819
 
820
- #: includes/functions-check-now.php:451 includes/functions.php:490
821
- #: settings.php:1434 settings.php:1474 settings.php:2956
822
  msgid "Open HTML element selector"
823
  msgstr ""
824
 
825
- #: includes/functions-check-now.php:456 includes/functions.php:495
826
  msgid "Lazy loading offset"
827
  msgstr ""
828
 
829
- #: includes/functions-check-now.php:459 includes/functions.php:498
830
  msgid "Offset of the block from the visible viewport when it should be loaded"
831
  msgstr ""
832
 
833
- #: includes/functions-check-now.php:470 includes/functions.php:510
834
  msgid "Export / Import Block Settings"
835
  msgstr ""
836
 
837
- #: includes/functions-check-now.php:485 includes/functions.php:527
838
  msgid "Track impressions and clicks for this block"
839
  msgstr ""
840
 
841
- #: includes/functions-check-now.php:485 includes/functions.php:527
842
  msgid " - global tracking disabled"
843
  msgstr ""
844
 
845
- #: includes/functions-check-now.php:492 includes/functions.php:535
846
- #: includes/functions.php:4799
847
  msgid "Generate PDF report"
848
  msgstr ""
849
 
850
- #: includes/functions-check-now.php:497 includes/functions.php:549
851
  msgid "Open public report"
852
  msgstr ""
853
 
854
- #: includes/functions-check-now.php:511 includes/functions.php:563
855
  msgid "Toggle Ad Blocking Statistics"
856
  msgstr ""
857
 
858
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
859
- #: includes/functions.php:571 includes/functions.php:4780
860
  msgid "Toggle Statistics"
861
  msgstr ""
862
 
863
- #: includes/functions-check-now.php:528 includes/functions.php:580
864
  msgid "Pin list"
865
  msgstr ""
866
 
867
  #. translators: %s: Ad Inserter Pro
868
- #: includes/functions-check-now.php:543 includes/functions.php:603
869
  msgid "%s license key is not set. Continue?"
870
  msgstr ""
871
 
872
  #. translators: %s: Ad Inserter Pro
873
- #: includes/functions-check-now.php:547 includes/functions.php:607
874
  msgid "Invalid %s license key. Continue?"
875
  msgstr ""
876
 
877
  #. translators: %s: Ad Inserter Pro
878
- #: includes/functions-check-now.php:551 includes/functions.php:611
879
  msgid "%s license overused. Continue?"
880
  msgstr ""
881
 
882
- #: includes/functions-check-now.php:555 includes/functions.php:621
883
- #: settings.php:1182 settings.php:2389
884
  msgid "Save Settings"
885
  msgstr ""
886
 
887
- #: includes/functions-check-now.php:615 includes/functions.php:689
888
- #: includes/preview.php:2520
889
  msgid "Horizontal position"
890
  msgstr ""
891
 
892
- #: includes/functions-check-now.php:638 includes/functions.php:714
893
  msgid ""
894
  "Horizontal margin from the content or screen edge, empty means default value "
895
  "from CSS"
896
  msgstr ""
897
 
898
- #: includes/functions-check-now.php:646 includes/functions.php:722
899
- #: includes/preview.php:2580
900
  msgid "Vertical position"
901
  msgstr ""
902
 
903
- #: includes/functions-check-now.php:661 includes/functions.php:737
904
  msgid ""
905
  "Vertical margin from the top or bottom screen edge, empty means default "
906
  "value from CSS"
907
  msgstr ""
908
 
909
- #: includes/functions-check-now.php:686 includes/functions.php:768
910
- #: includes/preview.php:2635
911
  msgid "Animation"
912
  msgstr ""
913
 
@@ -921,22 +941,22 @@ msgid ""
921
  "(#id or .class) becomes visible"
922
  msgstr ""
923
 
924
- #: includes/functions-check-now.php:717 includes/functions.php:803
925
- #: includes/functions.php:830
926
  msgid "Offset"
927
  msgstr ""
928
 
929
- #: includes/functions-check-now.php:717 includes/functions.php:803
930
- #: includes/functions.php:830
931
  msgid "Offset of trigger element"
932
  msgstr ""
933
 
934
- #: includes/functions-check-now.php:721 includes/functions.php:807
935
- #: includes/functions.php:834 settings.php:1489
936
  msgid "Delay"
937
  msgstr ""
938
 
939
- #: includes/functions-check-now.php:721 includes/functions.php:807
940
  msgid "Delay animation after trigger condition"
941
  msgstr ""
942
 
@@ -949,147 +969,147 @@ msgid "Trigger animation only once"
949
  msgstr ""
950
 
951
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
952
- #: includes/functions-check-now.php:2546 includes/functions.php:942
953
- #: includes/functions.php:3106 includes/functions.php:3122
954
  msgid "Tracking is globally disabled"
955
  msgstr ""
956
 
957
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
958
- #: includes/functions-check-now.php:2550 includes/functions.php:946
959
- #: includes/functions.php:3110 includes/functions.php:3126
960
  msgid "Tracking for this block is disabled"
961
  msgstr ""
962
 
963
- #: includes/functions-check-now.php:780 includes/functions.php:953
964
  msgid "Double click to toggle controls in public reports"
965
  msgstr ""
966
 
967
- #: includes/functions-check-now.php:786 includes/functions.php:959
968
- #: includes/functions.php:4349 settings.php:3733 settings.php:3769
969
- #: settings.php:3830 strings.php:243
970
  msgid "Loading..."
971
  msgstr ""
972
 
973
- #: includes/functions-check-now.php:807 includes/functions.php:980
974
  msgid ""
975
  "Clear statistics data for the selected range - clear both dates to delete "
976
  "all data for this block"
977
  msgstr ""
978
 
979
- #: includes/functions-check-now.php:811 includes/functions.php:984
980
  msgid "Auto refresh data for the selected range every 60 seconds"
981
  msgstr ""
982
 
983
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
984
- #: includes/functions.php:987 includes/functions.php:8085
985
  msgid "Load data for last month"
986
  msgstr ""
987
 
988
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
989
- #: includes/functions.php:987 includes/functions.php:8085
990
  msgid "Last Month"
991
  msgstr ""
992
 
993
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
994
- #: includes/functions.php:990 includes/functions.php:8088
995
  msgid "Load data for this month"
996
  msgstr ""
997
 
998
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
999
- #: includes/functions.php:990 includes/functions.php:8088
1000
  msgid "This Month"
1001
  msgstr ""
1002
 
1003
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1004
- #: includes/functions.php:993 includes/functions.php:8091
1005
  msgid "Load data for this year"
1006
  msgstr ""
1007
 
1008
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1009
- #: includes/functions.php:993 includes/functions.php:8091
1010
  msgid "This Year"
1011
  msgstr ""
1012
 
1013
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1014
- #: includes/functions.php:996 includes/functions.php:8094
1015
  msgid "Load data for the last 15 days"
1016
  msgstr ""
1017
 
1018
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1019
- #: includes/functions.php:999 includes/functions.php:8097
1020
  msgid "Load data for the last 30 days"
1021
  msgstr ""
1022
 
1023
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1024
- #: includes/functions.php:1002 includes/functions.php:8100
1025
  msgid "Load data for the last 90 days"
1026
  msgstr ""
1027
 
1028
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1029
- #: includes/functions.php:1005 includes/functions.php:8103
1030
  msgid "Load data for the last 180 days"
1031
  msgstr ""
1032
 
1033
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1034
- #: includes/functions.php:1008 includes/functions.php:8106
1035
  msgid "Load data for the last 365 days"
1036
  msgstr ""
1037
 
1038
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1039
- #: includes/functions.php:1018 includes/functions.php:8116
1040
  msgid "Load data for the selected range"
1041
  msgstr ""
1042
 
1043
- #: includes/functions-check-now.php:861 includes/functions.php:1035
1044
  msgid ""
1045
  "Import settings when saving - if checked, the encoded settings below will be "
1046
  "imported for this block"
1047
  msgstr ""
1048
 
1049
- #: includes/functions-check-now.php:861 includes/functions.php:1035
1050
  msgid "Import settings for block"
1051
  msgstr ""
1052
 
1053
- #: includes/functions-check-now.php:865 includes/functions.php:1039
1054
  msgid ""
1055
  "Import block name when saving - if checked and 'Import settings for block' "
1056
  "is also checked, the name from encoded settings below will be imported for "
1057
  "this block"
1058
  msgstr ""
1059
 
1060
- #: includes/functions-check-now.php:865 includes/functions.php:1039
1061
  msgid "Import block name"
1062
  msgstr ""
1063
 
1064
- #: includes/functions-check-now.php:869 includes/functions.php:1043
1065
  msgid "Saved settings for block"
1066
  msgstr ""
1067
 
1068
- #: includes/functions-check-now.php:882 includes/functions.php:1058
1069
  msgid "Export / Import Ad Inserter Pro Settings"
1070
  msgstr ""
1071
 
1072
- #: includes/functions-check-now.php:892 includes/functions.php:1077
1073
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1074
  msgstr ""
1075
 
1076
- #: includes/functions-check-now.php:894 includes/functions.php:1079
1077
  msgid "Clear All Statistics Data"
1078
  msgstr ""
1079
 
1080
- #: includes/functions-check-now.php:921 includes/functions.php:1113
1081
  msgid "Toggle country/city editor"
1082
  msgstr ""
1083
 
1084
- #: includes/functions-check-now.php:927 includes/functions.php:1119
1085
  msgid "IP Addresses"
1086
  msgstr ""
1087
 
1088
- #: includes/functions-check-now.php:930 includes/functions.php:1122
1089
  msgid "Toggle IP address editor"
1090
  msgstr ""
1091
 
1092
- #: includes/functions-check-now.php:933 includes/functions.php:1125
1093
  msgid ""
1094
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1095
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
@@ -1103,25 +1123,25 @@ msgstr ""
1103
  msgid "Whitelist IP addresses"
1104
  msgstr ""
1105
 
1106
- #: includes/functions-check-now.php:952 includes/functions.php:1141
1107
  msgid "Countries"
1108
  msgstr ""
1109
 
1110
- #: includes/functions-check-now.php:953 includes/functions.php:1142
1111
  msgid "Cities"
1112
  msgstr ""
1113
 
1114
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1115
- #: includes/functions.php:1146 includes/functions.php:4745
1116
  msgid "Toggle country editor"
1117
  msgstr ""
1118
 
1119
- #: includes/functions-check-now.php:960 includes/functions.php:1149
1120
  msgid "Toggle city editor"
1121
  msgstr ""
1122
 
1123
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1124
- #: includes/functions.php:1153 includes/functions.php:4748
1125
  msgid "Comma separated country ISO Alpha-2 codes"
1126
  msgstr ""
1127
 
@@ -1134,212 +1154,212 @@ msgid "Whitelist countries"
1134
  msgstr ""
1135
 
1136
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1137
- #: includes/functions.php:1730 includes/functions.php:2065
1138
  msgid "Enter license key"
1139
  msgstr ""
1140
 
1141
  #. translators: %s: Ad Inserter Pro
1142
- #: includes/functions-check-now.php:1389 includes/functions.php:1736
1143
  msgid ""
1144
  "%s license key is not set. Plugin functionality is limited and updates are "
1145
  "disabled."
1146
  msgstr ""
1147
 
1148
  #. translators: %s: Ad Inserter Pro
1149
- #: includes/functions-check-now.php:1403 includes/functions.php:1750
1150
  msgid "Warning: %s plugin update server is not accessible"
1151
  msgstr ""
1152
 
1153
  #. translators: updates are not available
1154
- #: includes/functions-check-now.php:1405 includes/functions.php:1752
1155
  msgid "updates"
1156
  msgstr ""
1157
 
1158
  #. translators: updates are not available
1159
- #: includes/functions-check-now.php:1407 includes/functions.php:1754
1160
  msgid "are not available"
1161
  msgstr ""
1162
 
1163
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1164
- #: includes/functions.php:1759 includes/functions.php:2074
1165
  msgid "Check license key"
1166
  msgstr ""
1167
 
1168
  #. translators: %s: Ad Inserter Pro
1169
- #: includes/functions-check-now.php:1418 includes/functions.php:1765
1170
  msgid "Invalid %s license key."
1171
  msgstr ""
1172
 
1173
  #. translators: %s: Ad Inserter Pro
1174
- #: includes/functions-check-now.php:1427 includes/functions.php:1774
1175
  msgid "%s license expired. Plugin updates are disabled."
1176
  msgstr ""
1177
 
1178
- #: includes/functions-check-now.php:1428 includes/functions.php:1775
1179
  msgid "Renew license"
1180
  msgstr ""
1181
 
1182
  #. translators: %s: Ad Inserter Pro
1183
- #: includes/functions-check-now.php:1436 includes/functions.php:1783
1184
  msgid "%s license overused. Plugin updates are disabled."
1185
  msgstr ""
1186
 
1187
- #: includes/functions-check-now.php:1437 includes/functions.php:1784
1188
  msgid "Manage licenses"
1189
  msgstr ""
1190
 
1191
- #: includes/functions-check-now.php:1437 includes/functions.php:1784
1192
  msgid "Upgrade license"
1193
  msgstr ""
1194
 
1195
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1196
- #: includes/functions-check-now.php:1684 includes/functions.php:2067
1197
  msgid ""
1198
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1199
  "limited and updates are disabled."
1200
  msgstr ""
1201
 
1202
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1203
- #: includes/functions-check-now.php:1693 includes/functions.php:2076
1204
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1205
  msgstr ""
1206
 
1207
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1208
- #: includes/functions-check-now.php:1709 includes/functions.php:2092
1209
  msgid ""
1210
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1211
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1212
  msgstr ""
1213
 
1214
  #. translators: 1, 3: HTML tags, 2: percentage
1215
- #: includes/functions-check-now.php:1716 includes/functions.php:2099
1216
  msgid ""
1217
  "During the license period and 30 days after the license has expired we offer "
1218
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1219
  msgstr ""
1220
 
1221
- #: includes/functions-check-now.php:1726 includes/functions.php:2109
1222
  msgid "No, thank you."
1223
  msgstr ""
1224
 
1225
- #: includes/functions-check-now.php:1729 includes/functions.php:2112
1226
  msgid "Not now, maybe later."
1227
  msgstr ""
1228
 
1229
- #: includes/functions-check-now.php:1743 includes/functions.php:2126
1230
  msgid "Renew the licence"
1231
  msgstr ""
1232
 
1233
- #: includes/functions-check-now.php:1745 includes/functions.php:2128
1234
  msgid "Update license status"
1235
  msgstr ""
1236
 
1237
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1238
- #: includes/functions-check-now.php:1756 includes/functions.php:2141
1239
  msgid ""
1240
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1241
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1242
  msgstr ""
1243
 
1244
  #. Translators: %s: HTML tag
1245
- #: includes/functions-check-now.php:1778 includes/functions.php:2201
1246
  msgid "Warning: %s MaxMind IP geolocation database not found."
1247
  msgstr ""
1248
 
1249
- #: includes/functions-check-now.php:2331 includes/functions.php:2883
1250
  msgid "Geolocation"
1251
  msgstr ""
1252
 
1253
- #: includes/functions-check-now.php:2335 includes/functions.php:2887
1254
- #: settings.php:4481
1255
  msgid "Exceptions"
1256
  msgstr ""
1257
 
1258
- #: includes/functions-check-now.php:2340 includes/functions.php:2892
1259
  msgid "Multisite"
1260
  msgstr ""
1261
 
1262
- #: includes/functions-check-now.php:2345 includes/functions.php:2897
1263
- #: settings.php:4487
1264
  msgid "Tracking"
1265
  msgstr ""
1266
 
1267
  #. translators: %d: days, hours, minutes
1268
- #: includes/functions-check-now.php:2376 includes/functions.php:2931
1269
  msgid "Scheduled in %d days %d hours %d minutes"
1270
  msgstr ""
1271
 
1272
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1273
  #. HTML code for long dash separator
1274
- #: includes/functions-check-now.php:2385 includes/functions.php:2940
1275
  msgid "Active %s expires in %d days %d hours %d minutes"
1276
  msgstr ""
1277
 
1278
- #: includes/functions-check-now.php:2389 includes/functions.php:2944
1279
  msgid "Expired"
1280
  msgstr ""
1281
 
1282
- #: includes/functions-check-now.php:2397 includes/functions.php:2970
1283
- #: settings.php:1544 settings.php:1559 settings.php:1681 settings.php:2275
1284
  msgid "and"
1285
  msgstr ""
1286
 
1287
- #: includes/functions-check-now.php:2400 includes/functions.php:2952
1288
  msgid "fallback"
1289
  msgstr ""
1290
 
1291
- #: includes/functions-check-now.php:2401 includes/functions.php:2953
1292
  msgid "Block to be used when scheduling expires"
1293
  msgstr ""
1294
 
1295
- #: includes/functions-check-now.php:2426 includes/functions.php:2992
1296
  msgid "Load in iframe"
1297
  msgstr ""
1298
 
1299
- #: includes/functions-check-now.php:2430 includes/functions.php:2996
1300
- #: includes/placeholders.php:387 settings.php:1142 settings.php:2302
1301
  msgid "Width"
1302
  msgstr ""
1303
 
1304
- #: includes/functions-check-now.php:2431 includes/functions.php:2997
1305
  msgid "iframe width, empty means full width (100%)"
1306
  msgstr ""
1307
 
1308
- #: includes/functions-check-now.php:2437 includes/functions.php:3003
1309
- #: includes/placeholders.php:382 settings.php:1148 settings.php:2306
1310
  msgid "Height"
1311
  msgstr ""
1312
 
1313
- #: includes/functions-check-now.php:2438 includes/functions.php:3004
1314
  msgid "iframe height, empty means adjust it to iframe content height"
1315
  msgstr ""
1316
 
1317
- #: includes/functions-check-now.php:2445 includes/functions.php:3011
1318
  msgid "Ad label in iframe"
1319
  msgstr ""
1320
 
1321
- #: includes/functions-check-now.php:2450 includes/functions.php:3016
1322
  msgid "Preview iframe code"
1323
  msgstr ""
1324
 
1325
- #: includes/functions-check-now.php:2450 includes/functions.php:3016
1326
- #: includes/preview.php:2341 settings.php:1177 settings.php:3027
1327
  msgid "Preview"
1328
  msgstr ""
1329
 
1330
- #: includes/functions-check-now.php:2464 includes/functions.php:3032
1331
- #: settings.php:4488
1332
  msgid "Limits"
1333
  msgstr ""
1334
 
1335
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1336
- #: includes/functions-check-now.php:4430 includes/functions.php:3037
1337
- #: includes/functions.php:6606 includes/functions.php:6671 settings.php:2439
1338
  msgid "Ad Blocking"
1339
  msgstr ""
1340
 
1341
  #. translators: 1, 2 and 3, 4: HTML tags
1342
- #: includes/functions-check-now.php:2478 includes/functions.php:3048
1343
  msgid ""
1344
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1345
  "for tracking!"
@@ -1347,13 +1367,13 @@ msgstr ""
1347
 
1348
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1349
  #. header
1350
- #: includes/functions-check-now.php:2487 includes/functions.php:3057
1351
  msgid ""
1352
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1353
  "enabled and automatic insertion %6$s!"
1354
  msgstr ""
1355
 
1356
- #: includes/functions-check-now.php:2554 includes/functions.php:3130
1357
  msgid "Click fraud protection is globally disabled"
1358
  msgstr ""
1359
 
@@ -1362,14 +1382,14 @@ msgid "Max clicks per time period are not defined"
1362
  msgstr ""
1363
 
1364
  #. Translators: Max n impressions
1365
- #: includes/functions-check-now.php:2572 includes/functions.php:3144
1366
  msgid "General limits"
1367
  msgstr ""
1368
 
1369
  #. Translators: Max n impressions per x days
1370
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1371
- #: includes/functions-check-now.php:2675 includes/functions.php:3150
1372
- #: includes/functions.php:3162 includes/functions.php:3247
1373
  msgid "Current value"
1374
  msgstr ""
1375
 
@@ -1385,14 +1405,14 @@ msgstr ""
1385
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1386
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1387
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1388
- #: includes/functions.php:3169 includes/functions.php:3179
1389
- #: includes/functions.php:3198 includes/functions.php:3208
1390
- #: includes/functions.php:3254 includes/functions.php:3263
1391
- #: includes/functions.php:3281 includes/functions.php:3290 settings.php:2187
1392
  msgid "Max"
1393
  msgstr ""
1394
 
1395
- #: includes/functions-check-now.php:2598 includes/functions.php:3170
1396
  msgid ""
1397
  "Maximum number of impressions for this block. Empty means no general "
1398
  "impression limit."
@@ -1404,14 +1424,14 @@ msgstr ""
1404
  #. Translators: Max n impressions per x days
1405
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1406
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1407
- #: includes/functions.php:3172 includes/functions.php:3182
1408
- #: includes/functions.php:3257 includes/functions.php:3266
1409
  msgid "impression"
1410
  msgid_plural "impressions"
1411
  msgstr[0] ""
1412
  msgstr[1] ""
1413
 
1414
- #: includes/functions-check-now.php:2608 includes/functions.php:3180
1415
  msgid ""
1416
  "Maximum number of impressions per time period. Empty means no time limit."
1417
  msgstr ""
@@ -1422,14 +1442,14 @@ msgstr ""
1422
  #. Translators: Max n clicks per x days
1423
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1424
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1425
- #: includes/functions.php:3186 includes/functions.php:3215
1426
- #: includes/functions.php:3270 includes/functions.php:3297
1427
- #: includes/functions.php:5015
1428
  msgid "per"
1429
  msgstr ""
1430
 
1431
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1432
- #: includes/functions.php:3187 includes/functions.php:3216
1433
  msgid "Time period in days. Empty means no time limit."
1434
  msgstr ""
1435
 
@@ -1441,17 +1461,17 @@ msgstr ""
1441
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1442
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1443
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1444
- #: includes/functions.php:3189 includes/functions.php:3218
1445
- #: includes/functions.php:3273 includes/functions.php:3300
1446
- #: includes/functions.php:3432 includes/functions.php:5018
1447
- #: includes/functions.php:5028 strings.php:219 strings.php:220 strings.php:221
1448
  #: strings.php:222 strings.php:223 strings.php:224
1449
  msgid "day"
1450
  msgid_plural "days"
1451
  msgstr[0] ""
1452
  msgstr[1] ""
1453
 
1454
- #: includes/functions-check-now.php:2627 includes/functions.php:3199
1455
  msgid ""
1456
  "Maximum number of clicks on this block. Empty means no general click limit."
1457
  msgstr ""
@@ -1462,25 +1482,25 @@ msgstr ""
1462
  #. Translators: Max n clicks per x days
1463
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1464
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1465
- #: includes/functions-check-now.php:4578 includes/functions.php:3201
1466
- #: includes/functions.php:3211 includes/functions.php:3284
1467
- #: includes/functions.php:3293 includes/functions.php:5015
1468
- #: includes/functions.php:6946
1469
  msgid "click"
1470
  msgid_plural "clicks"
1471
  msgstr[0] ""
1472
  msgstr[1] ""
1473
 
1474
- #: includes/functions-check-now.php:2637 includes/functions.php:3209
1475
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1476
  msgstr ""
1477
 
1478
- #: includes/functions-check-now.php:2662 includes/functions.php:3234
1479
  msgid "Individual visitor limits"
1480
  msgstr ""
1481
 
1482
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1483
- #: includes/functions.php:3238 includes/functions.php:3240
1484
  msgid ""
1485
  "When specified number of clicks on this block for a visitor will be reached "
1486
  "in the specified time period, all blocks that have click fraud protection "
@@ -1488,81 +1508,81 @@ msgid ""
1488
  "general plugin settings."
1489
  msgstr ""
1490
 
1491
- #: includes/functions-check-now.php:2668 includes/functions.php:3240
1492
  msgid "Trigger click fraud protection"
1493
  msgstr ""
1494
 
1495
- #: includes/functions-check-now.php:2683 includes/functions.php:3255
1496
  msgid ""
1497
  "Maximum number of impressions of this block for each visitor. Empty means no "
1498
  "impression limit."
1499
  msgstr ""
1500
 
1501
- #: includes/functions-check-now.php:2692 includes/functions.php:3264
1502
  msgid ""
1503
  "Maximum number of impressions per time period for each visitor. Empty means "
1504
  "no impression limit per time period for visitors."
1505
  msgstr ""
1506
 
1507
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1508
- #: includes/functions.php:3271 includes/functions.php:3298
1509
- #: includes/functions.php:5018
1510
  msgid ""
1511
  "Time period in days. Use decimal value (with decimal point) for shorter "
1512
  "periods. Empty means no time limit."
1513
  msgstr ""
1514
 
1515
- #: includes/functions-check-now.php:2710 includes/functions.php:3282
1516
  msgid ""
1517
  "Maximum number of clicks on this block for each visitor. Empty means no "
1518
  "click limit."
1519
  msgstr ""
1520
 
1521
- #: includes/functions-check-now.php:2719 includes/functions.php:3291
1522
- #: includes/functions.php:5015
1523
  msgid ""
1524
  "Maximum number of clicks per time period for each visitor. Empty means no "
1525
  "click limit per time period for visitors."
1526
  msgstr ""
1527
 
1528
- #: includes/functions-check-now.php:2745 includes/functions.php:3341
1529
  msgid "When ad blocking is detected"
1530
  msgstr ""
1531
 
1532
- #: includes/functions-check-now.php:2754 includes/functions.php:3350
1533
  msgid "replacement"
1534
  msgstr ""
1535
 
1536
- #: includes/functions-check-now.php:2755 includes/functions.php:3351
1537
  msgid "Block to be shown when ad blocking is detected"
1538
  msgstr ""
1539
 
1540
- #: includes/functions-check-now.php:2756 includes/functions.php:3352
1541
  msgctxt "replacement"
1542
  msgid "None"
1543
  msgstr ""
1544
 
1545
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1546
- #: includes/functions.php:3369 includes/functions.php:8329
1547
  msgid "Close button"
1548
  msgstr ""
1549
 
1550
- #: includes/functions-check-now.php:2825 includes/functions.php:3423
1551
  msgid "Auto close after"
1552
  msgstr ""
1553
 
1554
- #: includes/functions-check-now.php:2826 includes/functions.php:3424
1555
  msgid ""
1556
  "Time in seconds in which the ad will automatically close. Leave empty to "
1557
  "disable auto closing."
1558
  msgstr ""
1559
 
1560
  #. Translators: Don't show for x days
1561
- #: includes/functions-check-now.php:2831 includes/functions.php:3429
1562
  msgid "Don't show for"
1563
  msgstr ""
1564
 
1565
- #: includes/functions-check-now.php:2832 includes/functions.php:3430
1566
  msgid ""
1567
  "Time in days in which closed ad will not be shown again. Use decimal value "
1568
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1570,12 +1590,12 @@ msgid ""
1570
  msgstr ""
1571
 
1572
  #. Translators: Delay showing for x pageviews
1573
- #: includes/functions-check-now.php:2852 includes/functions.php:3452
1574
- #: includes/functions.php:3458
1575
  msgid "Delay showing for"
1576
  msgstr ""
1577
 
1578
- #: includes/functions-check-now.php:2853 includes/functions.php:3459
1579
  msgid ""
1580
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1581
  "empty to insert the code for the first pageview."
@@ -1584,72 +1604,72 @@ msgstr ""
1584
  #. Translators: Delay showing for x pageviews
1585
  #. Translators: Show every x pageviews
1586
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1587
- #: includes/functions.php:3461 includes/functions.php:3468
1588
  msgid "pageview"
1589
  msgid_plural "pageviews"
1590
  msgstr[0] ""
1591
  msgstr[1] ""
1592
 
1593
  #. Translators: Show every x pageviews
1594
- #: includes/functions-check-now.php:2859 includes/functions.php:3465
1595
  msgid "Show every"
1596
  msgid_plural "Show every"
1597
  msgstr[0] ""
1598
  msgstr[1] ""
1599
 
1600
- #: includes/functions-check-now.php:2860 includes/functions.php:3466
1601
  msgid ""
1602
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1603
  "for every pageview."
1604
  msgstr ""
1605
 
1606
- #: includes/functions-check-now.php:2879 includes/functions.php:3491
1607
- #: settings.php:907
1608
  msgid "Lazy loading"
1609
  msgstr ""
1610
 
1611
  #. Translators: %s MaxMind
1612
- #: includes/functions-check-now.php:2936 includes/functions.php:4669
1613
  msgid "This product includes GeoLite2 data created by %s"
1614
  msgstr ""
1615
 
1616
- #: includes/functions-check-now.php:2947 includes/functions.php:4682
1617
  msgid "IP geolocation database"
1618
  msgstr ""
1619
 
1620
- #: includes/functions-check-now.php:2950 includes/functions.php:4685
1621
  msgid "Select IP geolocation database."
1622
  msgstr ""
1623
 
1624
- #: includes/functions-check-now.php:2961 includes/functions.php:4696
1625
  msgid "Automatic database updates"
1626
  msgstr ""
1627
 
1628
- #: includes/functions-check-now.php:2964 includes/functions.php:4699
1629
  msgid ""
1630
  "Automatically download and update free GeoLite2 IP geolocation database by "
1631
  "MaxMind"
1632
  msgstr ""
1633
 
1634
- #: includes/functions-check-now.php:2972 includes/functions.php:4716
1635
  msgid "Database"
1636
  msgstr ""
1637
 
1638
- #: includes/functions-check-now.php:2975 includes/functions.php:4719
1639
  msgid ""
1640
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1641
  msgstr ""
1642
 
1643
  #. translators: %d: group number
1644
- #: includes/functions-check-now.php:2993 includes/functions.php:4737
1645
  msgid "Group %d"
1646
  msgstr ""
1647
 
1648
- #: includes/functions-check-now.php:2999 includes/functions.php:4743
1649
  msgid "countries"
1650
  msgstr ""
1651
 
1652
- #: includes/functions-check-now.php:3044 includes/functions.php:4788
1653
  msgid ""
1654
  "Enable impression and click tracking. You also need to enable tracking for "
1655
  "each block you want to track."
@@ -1659,79 +1679,79 @@ msgstr ""
1659
  msgid "Generate report"
1660
  msgstr ""
1661
 
1662
- #: includes/functions-check-now.php:3059 includes/functions.php:4807
1663
  msgid "Impression and Click Tracking"
1664
  msgstr ""
1665
 
1666
- #: includes/functions-check-now.php:3060 includes/functions.php:4808
1667
- #: settings.php:2906
1668
  msgctxt "ad blocking detection"
1669
  msgid "NOT ENABLED"
1670
  msgstr ""
1671
 
1672
- #: includes/functions-check-now.php:3076 includes/functions.php:4824
1673
  msgid "Internal"
1674
  msgstr ""
1675
 
1676
- #: includes/functions-check-now.php:3080 includes/functions.php:4828
1677
  msgid "Track impressions and clicks with internal tracking and statistics"
1678
  msgstr ""
1679
 
1680
- #: includes/functions-check-now.php:3085 includes/functions.php:4833
1681
  msgid "External"
1682
  msgstr ""
1683
 
1684
- #: includes/functions-check-now.php:3089 includes/functions.php:4837
1685
  msgid ""
1686
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1687
  "code installed)"
1688
  msgstr ""
1689
 
1690
- #: includes/functions-check-now.php:3094 includes/functions.php:4842
1691
  msgid "Track Pageviews"
1692
  msgstr ""
1693
 
1694
- #: includes/functions-check-now.php:3100 includes/functions.php:4848
1695
  msgid "Track Pageviews by Device (as configured for viewports)"
1696
  msgstr ""
1697
 
1698
- #: includes/functions-check-now.php:3110 includes/functions.php:4858
1699
  msgid "Track for Logged in Users"
1700
  msgstr ""
1701
 
1702
- #: includes/functions-check-now.php:3116 includes/functions.php:4864
1703
  msgid "Track impressions and clicks from logged in users"
1704
  msgstr ""
1705
 
1706
- #: includes/functions-check-now.php:3126 includes/functions.php:4874
1707
  msgid "Click Detection"
1708
  msgstr ""
1709
 
1710
- #: includes/functions-check-now.php:3132 includes/functions.php:4880
1711
  msgid ""
1712
  "Standard method detects clicks only on banners with links, Advanced method "
1713
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1714
  msgstr ""
1715
 
1716
- #: includes/functions-check-now.php:3151 includes/functions.php:5001
1717
  msgid "Click fraud protection"
1718
  msgstr ""
1719
 
1720
- #: includes/functions-check-now.php:3155 includes/functions.php:5005
1721
  msgid "Globally enable click fraud protection for selected blocks."
1722
  msgstr ""
1723
 
1724
- #: includes/functions-check-now.php:3161 includes/functions.php:5025
1725
  msgid "Protection time"
1726
  msgstr ""
1727
 
1728
- #: includes/functions-check-now.php:3162 includes/functions.php:5028
1729
  msgid ""
1730
  "Time period in days in which blocks with enabled click fraud protection will "
1731
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1732
  msgstr ""
1733
 
1734
- #: includes/functions-check-now.php:3181 includes/functions.php:4908
1735
  msgid "Report header image"
1736
  msgstr ""
1737
 
@@ -1742,150 +1762,150 @@ msgid ""
1742
  "reset to default image."
1743
  msgstr ""
1744
 
1745
- #: includes/functions-check-now.php:3185 includes/functions.php:4912
1746
  #: strings.php:255
1747
  msgid "Select or upload header image"
1748
  msgstr ""
1749
 
1750
- #: includes/functions-check-now.php:3190 includes/functions.php:4917
1751
  msgid "Report header title"
1752
  msgstr ""
1753
 
1754
- #: includes/functions-check-now.php:3193 includes/functions.php:4920
1755
  msgid ""
1756
  "Title to be displayed in the header of the statistics report. Text or HTML "
1757
  "code, clear to reset to default text."
1758
  msgstr ""
1759
 
1760
- #: includes/functions-check-now.php:3198 includes/functions.php:4925
1761
  msgid "Report header description"
1762
  msgstr ""
1763
 
1764
- #: includes/functions-check-now.php:3201 includes/functions.php:4928
1765
  msgid ""
1766
  "Description to be displayed in the header of the statistics report. Text or "
1767
  "HTML code, clear to reset to default text."
1768
  msgstr ""
1769
 
1770
- #: includes/functions-check-now.php:3206 includes/functions.php:4933
1771
  msgid "Report footer"
1772
  msgstr ""
1773
 
1774
- #: includes/functions-check-now.php:3209 includes/functions.php:4936
1775
  msgid ""
1776
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1777
  "to default text."
1778
  msgstr ""
1779
 
1780
- #: includes/functions-check-now.php:3214 includes/functions.php:4941
1781
  msgid "Public report key"
1782
  msgstr ""
1783
 
1784
- #: includes/functions-check-now.php:3217 includes/functions.php:4944
1785
  msgid "String to generate unique report IDs. Clear to reset to default value."
1786
  msgstr ""
1787
 
1788
- #: includes/functions-check-now.php:3249 includes/functions.php:5085
1789
  msgid "Are you sure you want to clear all exceptions for block"
1790
  msgstr ""
1791
 
1792
- #: includes/functions-check-now.php:3250 includes/functions.php:5086
1793
  msgid "Clear all exceptions for block"
1794
  msgstr ""
1795
 
1796
- #: includes/functions-check-now.php:3257 includes/functions.php:5099
1797
  msgid "Are you sure you want to clear all exceptions?"
1798
  msgstr ""
1799
 
1800
- #: includes/functions-check-now.php:3257 includes/functions.php:5099
1801
  msgid "Clear all exceptions for all blocks"
1802
  msgstr ""
1803
 
1804
- #: includes/functions-check-now.php:3262 includes/functions.php:5106
1805
- #: settings.php:4064 settings.php:4569
1806
  msgid "Type"
1807
  msgstr ""
1808
 
1809
- #: includes/functions-check-now.php:3280 includes/functions.php:5125
1810
- #: includes/functions.php:5126
1811
  msgid "View"
1812
  msgstr ""
1813
 
1814
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1815
- #: includes/functions-check-now.php:3292 includes/functions.php:5127
1816
- #: includes/functions.php:5141 includes/functions.php:5145
1817
- #: includes/placeholders.php:351 includes/preview.php:2711 settings.php:1420
1818
- #: settings.php:3819
1819
  msgid "Edit"
1820
  msgstr ""
1821
 
1822
- #: includes/functions-check-now.php:3311 includes/functions.php:5173
1823
  msgid "Are you sure you want to clear all exceptions for"
1824
  msgstr ""
1825
 
1826
- #: includes/functions-check-now.php:3312 includes/functions.php:5174
1827
  msgid "Clear all exceptions for"
1828
  msgstr ""
1829
 
1830
- #: includes/functions-check-now.php:3325 includes/functions.php:5190
1831
  msgid "No exceptions"
1832
  msgstr ""
1833
 
1834
  #. translators: %s: Ad Inserter Pro
1835
- #: includes/functions-check-now.php:3336 includes/functions.php:5201
1836
  msgid "%s options for network blogs"
1837
  msgstr ""
1838
 
1839
  #. translators: %s: Ad Inserter Pro
1840
- #: includes/functions-check-now.php:3341 includes/functions.php:5206
1841
  msgid "Enable %s widgets for sub-sites"
1842
  msgstr ""
1843
 
1844
- #: includes/functions-check-now.php:3341 includes/functions.php:5206
1845
  msgid "Widgets"
1846
  msgstr ""
1847
 
1848
- #: includes/functions-check-now.php:3346 includes/functions.php:5211
1849
  msgid "Enable PHP code processing for sub-sites"
1850
  msgstr ""
1851
 
1852
- #: includes/functions-check-now.php:3346 includes/functions.php:5211
1853
  msgid "PHP Processing"
1854
  msgstr ""
1855
 
1856
  #. translators: %s: Ad Inserter Pro
1857
- #: includes/functions-check-now.php:3351 includes/functions.php:5216
1858
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1859
  msgstr ""
1860
 
1861
- #: includes/functions-check-now.php:3351 includes/functions.php:5216
1862
  msgid "Post/Page exceptions"
1863
  msgstr ""
1864
 
1865
  #. translators: %s: Ad Inserter Pro
1866
- #: includes/functions-check-now.php:3356 includes/functions.php:5221
1867
  msgid "Enable %s settings page for sub-sites"
1868
  msgstr ""
1869
 
1870
- #: includes/functions-check-now.php:3356 includes/functions.php:5221
1871
  msgid "Settings page"
1872
  msgstr ""
1873
 
1874
  #. translators: %s: Ad Inserter Pro
1875
- #: includes/functions-check-now.php:3361 includes/functions.php:5226
1876
  msgid "Enable %s settings of main site to be used for all blogs"
1877
  msgstr ""
1878
 
1879
- #: includes/functions-check-now.php:3361 includes/functions.php:5226
1880
  msgid "Main site settings used for all blogs"
1881
  msgstr ""
1882
 
1883
- #: includes/functions-check-now.php:3372 includes/functions.php:5244
1884
- #: settings.php:2905
1885
  msgid "Ad Blocking Detection"
1886
  msgstr ""
1887
 
1888
- #: includes/functions-check-now.php:3378 includes/functions.php:5250
1889
  msgid ""
1890
  "Standard method is reliable but should be used only if Advanced method does "
1891
  "not work. Advanced method recreates files used for detection with random "
@@ -1894,507 +1914,553 @@ msgid ""
1894
  msgstr ""
1895
 
1896
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
1897
- #: includes/functions-check-now.php:4140 includes/functions.php:6237
1898
- #: includes/functions.php:6345 includes/functions.php:6370
1899
  msgid "AD BLOCKING"
1900
  msgstr ""
1901
 
1902
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
1903
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
1904
- #: includes/functions.php:6238 includes/functions.php:6281
1905
- #: includes/functions.php:6339 includes/functions.php:6371
1906
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1907
  msgstr ""
1908
 
1909
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
1910
- #: includes/functions-check-now.php:4147 includes/functions.php:6241
1911
- #: includes/functions.php:6338 includes/functions.php:6377
1912
  msgid "NO AD BLOCKING"
1913
  msgstr ""
1914
 
1915
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
1916
- #: includes/functions.php:6280 includes/functions.php:6287
1917
  msgid "AD BLOCKING REPLACEMENT"
1918
  msgstr ""
1919
 
1920
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
1921
- #: includes/functions.php:6459 includes/functions.php:6670
1922
  msgid "Pageviews"
1923
  msgstr ""
1924
 
1925
- #: includes/functions-check-now.php:4366 includes/functions.php:6605
1926
  msgctxt "Version"
1927
  msgid "Unknown"
1928
  msgstr ""
1929
 
1930
- #: includes/functions-check-now.php:4366 includes/functions.php:6605
1931
  msgctxt "Times"
1932
  msgid "DISPLAYED"
1933
  msgstr ""
1934
 
1935
- #: includes/functions-check-now.php:4366 includes/functions.php:6605
1936
  msgid "No version"
1937
  msgstr ""
1938
 
1939
- #: includes/functions-check-now.php:4367 includes/functions.php:6606
1940
  msgctxt "Times"
1941
  msgid "BLOCKED"
1942
  msgstr ""
1943
 
1944
- #: includes/functions-check-now.php:4429 includes/functions.php:6670
1945
  msgid "Impressions"
1946
  msgstr ""
1947
 
1948
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
1949
- #: includes/functions-check-now.php:4486 includes/functions.php:6671
1950
- #: includes/functions.php:6672 includes/functions.php:6854
1951
  msgid "Clicks"
1952
  msgstr ""
1953
 
1954
- #: includes/functions-check-now.php:4431 includes/functions.php:6672
1955
  msgid "events"
1956
  msgstr ""
1957
 
1958
- #: includes/functions-check-now.php:4432 includes/functions.php:6673
1959
  msgid "Ad Blocking Share"
1960
  msgstr ""
1961
 
1962
  #. translators: CTR as Click Through Rate
1963
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
1964
- #: includes/functions.php:6673 includes/functions.php:6860
1965
  msgid "CTR"
1966
  msgstr ""
1967
 
1968
- #: includes/functions-check-now.php:4574 includes/functions.php:6942
1969
  msgid "pageviews"
1970
  msgid_plural "pageviews"
1971
  msgstr[0] ""
1972
  msgstr[1] ""
1973
 
1974
- #: includes/functions-check-now.php:4574 includes/functions.php:6942
1975
  msgid "impressions"
1976
  msgid_plural "impressions"
1977
  msgstr[0] ""
1978
  msgstr[1] ""
1979
 
1980
- #: includes/functions-check-now.php:4578 includes/functions.php:6946
1981
  msgid "event"
1982
  msgid_plural "events"
1983
  msgstr[0] ""
1984
  msgstr[1] ""
1985
 
1986
- #: includes/functions-check-now.php:4673 includes/functions.php:7041
1987
  msgctxt "Pageviews / Impressions"
1988
  msgid "Average"
1989
  msgstr ""
1990
 
1991
- #: includes/functions-check-now.php:4694 includes/functions.php:7062
1992
  msgctxt "Ad Blocking / Clicks"
1993
  msgid "Average"
1994
  msgstr ""
1995
 
1996
- #: includes/functions-check-now.php:4718 includes/functions.php:7086
1997
  msgctxt "Ad Blocking Share / CTR"
1998
  msgid "Average"
1999
  msgstr ""
2000
 
2001
  #. Translators: %s: Ad Inserter Pro
2002
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
2003
- #: includes/functions-check-now.php:5335 includes/functions.php:7360
2004
- #: includes/functions.php:7457 includes/functions.php:8030 strings.php:204
2005
  msgid "%s Report"
2006
  msgstr ""
2007
 
2008
- #: includes/functions-check-now.php:5241 includes/functions.php:7935
2009
  msgid "for last month"
2010
  msgstr ""
2011
 
2012
- #: includes/functions-check-now.php:5246 includes/functions.php:7940
2013
  msgid "for this month"
2014
  msgstr ""
2015
 
2016
- #: includes/functions-check-now.php:5251 includes/functions.php:7945
2017
  msgid "for this year"
2018
  msgstr ""
2019
 
2020
- #: includes/functions-check-now.php:5256 includes/functions.php:7950
2021
  msgid "for the last 15 days"
2022
  msgstr ""
2023
 
2024
- #: includes/functions-check-now.php:5261 includes/functions.php:7955
2025
  msgid "for the last 30 days"
2026
  msgstr ""
2027
 
2028
- #: includes/functions-check-now.php:5266 includes/functions.php:7960
2029
  msgid "for the last 90 days"
2030
  msgstr ""
2031
 
2032
- #: includes/functions-check-now.php:5271 includes/functions.php:7965
2033
  msgid "for the last 180 days"
2034
  msgstr ""
2035
 
2036
- #: includes/functions-check-now.php:5276 includes/functions.php:7970
2037
  msgid "for the last 365 days"
2038
  msgstr ""
2039
 
2040
- #: includes/functions.php:542 includes/functions.php:4795
 
 
 
 
 
 
 
 
 
 
 
 
2041
  msgid "Generate CSV report"
2042
  msgstr ""
2043
 
2044
  #. translators: %s: Ad Inserter Pro
2045
- #: includes/functions.php:615
2046
  msgid "Invalid %s version. Continue?"
2047
  msgstr ""
2048
 
2049
- #: includes/functions.php:787
2050
  msgid "Show"
2051
  msgstr ""
2052
 
2053
- #: includes/functions.php:799 includes/functions.php:826
2054
  msgid ""
2055
  "Trigger value: page scroll in %, page scroll in px or element with selector "
2056
  "(#id or .class) scrolls in or out of screen"
2057
  msgstr ""
2058
 
2059
- #: includes/functions.php:813
2060
  msgid "Hide"
2061
  msgstr ""
2062
 
2063
- #: includes/functions.php:844 includes/preview.php:2653
2064
  msgid "Background"
2065
  msgstr ""
2066
 
2067
  #. translators: %s HTML body tag
2068
- #: includes/functions.php:851
2069
  msgid "Set %s background"
2070
  msgstr ""
2071
 
2072
- #: includes/functions.php:864
2073
  msgid "Image to be used for the background"
2074
  msgstr ""
2075
 
2076
- #: includes/functions.php:869
2077
  msgid "Color"
2078
  msgstr ""
2079
 
2080
- #: includes/functions.php:870 includes/preview.php:2472
2081
  msgid "Color to be used for the background"
2082
  msgstr ""
2083
 
2084
- #: includes/functions.php:873 includes/preview.php:2477
2085
  msgid "Image size"
2086
  msgstr ""
2087
 
2088
- #: includes/functions.php:883
2089
  msgid "Repeat"
2090
  msgstr ""
2091
 
2092
- #: includes/functions.php:896
2093
  msgid "Select image"
2094
  msgstr ""
2095
 
2096
- #: includes/functions.php:1130 includes/functions.php:1158 settings.php:1807
2097
- #: settings.php:1830 settings.php:1853 settings.php:1876 settings.php:1899
2098
- #: settings.php:1922 settings.php:1945 settings.php:1967 settings.php:1989
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2099
  msgid "Click to select black or white list"
2100
  msgstr ""
2101
 
2102
  #. translators: %s: Ad Inserter Pro
2103
- #: includes/functions.php:1792
2104
  msgid "Invalid %s version."
2105
  msgstr ""
2106
 
2107
- #: includes/functions.php:1793
2108
  msgid "Check license"
2109
  msgstr ""
2110
 
2111
- #: includes/functions.php:1808
2112
  msgid "License"
2113
  msgstr ""
2114
 
2115
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2116
- #: includes/functions.php:2153
2117
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2118
  msgstr ""
2119
 
2120
  #. Translators: %s: HTML tags
2121
- #: includes/functions.php:2206
2122
  msgid ""
2123
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2124
  "account %s and create license key."
2125
  msgstr ""
2126
 
2127
- #: includes/functions.php:2968
2128
  msgid "Start date"
2129
  msgstr ""
2130
 
2131
- #: includes/functions.php:2968
2132
  msgid "Enter date in format yyyy-mm-dd"
2133
  msgstr ""
2134
 
2135
- #: includes/functions.php:2968
2136
  msgid "empty means every day as defined by hours and days in week"
2137
  msgstr ""
2138
 
2139
- #: includes/functions.php:2969
2140
  msgid "Start time"
2141
  msgstr ""
2142
 
2143
- #: includes/functions.php:2969
2144
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2145
  msgstr ""
2146
 
2147
- #: includes/functions.php:2971
2148
  msgid "End date"
2149
  msgstr ""
2150
 
2151
- #: includes/functions.php:2972
2152
  msgid "End time"
2153
  msgstr ""
2154
 
2155
- #: includes/functions.php:2975
2156
  msgid "Select wanted days in week"
2157
  msgstr ""
2158
 
2159
- #: includes/functions.php:3315
2160
  msgid "Fallback"
2161
  msgstr ""
2162
 
2163
- #: includes/functions.php:3316
2164
  msgid "Block to be used when a limit is reached"
2165
  msgstr ""
2166
 
2167
- #: includes/functions.php:3340
2168
  msgid "Ad blocking detection is disabled"
2169
  msgstr ""
2170
 
2171
- #: includes/functions.php:3453
2172
  msgid ""
2173
  "Time in ms before the code is inserted (and ad displayed). Leave empty to "
2174
  "insert the code without any additional delay."
2175
  msgstr ""
2176
 
2177
- #: includes/functions.php:3496
2178
  msgid "Wait for user interaction"
2179
  msgstr ""
2180
 
2181
- #: includes/functions.php:3501
2182
  msgid "Protected"
2183
  msgstr ""
2184
 
2185
- #: includes/functions.php:3504
2186
  msgid "Manual loading"
2187
  msgstr ""
2188
 
2189
- #: includes/functions.php:3595
2190
  msgid "IP address blocked"
2191
  msgid_plural "IP addresses blocked"
2192
  msgstr[0] ""
2193
  msgstr[1] ""
2194
 
2195
- #: includes/functions.php:3598 includes/functions.php:3647
2196
  msgid "No IP address blocked"
2197
  msgstr ""
2198
 
2199
- #: includes/functions.php:3660
2200
  msgid "Blocked IP address"
2201
  msgstr ""
2202
 
2203
- #: includes/functions.php:3660
2204
  msgid "Country"
2205
  msgstr ""
2206
 
2207
- #: includes/functions.php:3660
2208
  msgid "Time to expiration"
2209
  msgstr ""
2210
 
2211
- #: includes/functions.php:3662 strings.php:226
2212
  msgid "Delete"
2213
  msgstr ""
2214
 
2215
- #: includes/functions.php:3677
2216
  msgid "Delete IP address"
2217
  msgstr ""
2218
 
2219
- #: includes/functions.php:4234
2220
  msgid "CONNECTED"
2221
  msgstr ""
2222
 
2223
- #: includes/functions.php:4235
2224
  msgid "Disconnect website"
2225
  msgstr ""
2226
 
2227
- #: includes/functions.php:4251
2228
  msgid "MANAGED BY"
2229
  msgstr ""
2230
 
2231
- #: includes/functions.php:4272
2232
- msgid "Remote managenent"
2233
  msgstr ""
2234
 
2235
- #: includes/functions.php:4276
2236
  msgid "Allow to connect and manage plugin settings"
2237
  msgstr ""
2238
 
2239
- #: includes/functions.php:4278
2240
  msgid "String to allow plugin management. Clear to reset to default value."
2241
  msgstr ""
2242
 
2243
- #: includes/functions.php:4286
2244
  msgid "Check remote IP address"
2245
  msgstr ""
2246
 
2247
- #: includes/functions.php:4290
2248
  msgid "Check IP address of remote management website"
2249
  msgstr ""
2250
 
2251
- #: includes/functions.php:4292
2252
  msgid "Allowed IP addresses of remote management websites"
2253
  msgstr ""
2254
 
2255
  #. Translators: %s: Ad Inserter Pro
2256
- #: includes/functions.php:4315
2257
  msgid "Manage %s on other websites"
2258
  msgstr ""
2259
 
2260
- #: includes/functions.php:4330
2261
  msgid "Add website"
2262
  msgstr ""
2263
 
2264
- #: includes/functions.php:4334
2265
  msgid "Rearrange website order"
2266
  msgstr ""
2267
 
2268
- #: includes/functions.php:4338
2269
  msgid "Cancel changes"
2270
  msgstr ""
2271
 
2272
- #: includes/functions.php:4342
2273
  msgid "Save changes"
2274
  msgstr ""
2275
 
2276
- #: includes/functions.php:4444 includes/functions.php:4447
2277
- #: includes/functions.php:4450 includes/functions.php:4455
2278
  msgid "Invalid data received from"
2279
  msgstr ""
2280
 
2281
- #: includes/functions.php:4454 includes/functions.php:4458
2282
  msgid "Error connecting to"
2283
  msgstr ""
2284
 
2285
- #: includes/functions.php:4454
2286
  msgid "No data received"
2287
  msgstr ""
2288
 
2289
- #: includes/functions.php:4499
2290
  msgid "Error saving websites"
2291
  msgstr ""
2292
 
2293
- #: includes/functions.php:4539
2294
  msgid "Can't connect to itself"
2295
  msgstr ""
2296
 
2297
- #: includes/functions.php:4590
2298
  msgid "Connect website"
2299
  msgstr ""
2300
 
2301
- #: includes/functions.php:4594
2302
  msgid "Delete website"
2303
  msgstr ""
2304
 
2305
- #: includes/functions.php:4610
2306
  msgid "Key"
2307
  msgstr ""
2308
 
2309
- #: includes/functions.php:4628
2310
  msgid "Address"
2311
  msgstr ""
2312
 
2313
- #: includes/functions.php:4641
2314
  msgid "No website configured"
2315
  msgstr ""
2316
 
2317
- #: includes/functions.php:4642
2318
  msgid "No website matches search keywords"
2319
  msgstr ""
2320
 
2321
  #. Translators: %s HTML tags
2322
- #: includes/functions.php:4671
2323
  msgid "Create and manage %s MaxMind license key %s"
2324
  msgstr ""
2325
 
2326
- #: includes/functions.php:4707
2327
  msgid "MaxMind license key"
2328
  msgstr ""
2329
 
2330
- #: includes/functions.php:4710
2331
  msgid "Enter license key obtained from MaxMind"
2332
  msgstr ""
2333
 
2334
- #: includes/functions.php:4911
2335
  msgid ""
2336
  "Image or logo to be displayed in the header of the statistics report. "
2337
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2338
  "reset to default image."
2339
  msgstr ""
2340
 
2341
- #: includes/functions.php:4959
2342
  msgid "Event category"
2343
  msgstr ""
2344
 
2345
- #: includes/functions.php:4962
2346
  msgid ""
2347
  "Category name used for external tracking events. You can use tags to get the "
2348
  "event, the number or the name of the block that caused the event."
2349
  msgstr ""
2350
 
2351
- #: includes/functions.php:4967
2352
  msgid "Event action"
2353
  msgstr ""
2354
 
2355
- #: includes/functions.php:4970
2356
  msgid ""
2357
  "Action name used for external tracking events. You can use tags to get the "
2358
  "event, the number or the name of the block that caused the event."
2359
  msgstr ""
2360
 
2361
- #: includes/functions.php:4975
2362
  msgid "Event label"
2363
  msgstr ""
2364
 
2365
- #: includes/functions.php:4978
2366
  msgid ""
2367
  "Label name used for external tracking events. You can use tags to get the "
2368
  "event, the number or the name of the block that caused the event."
2369
  msgstr ""
2370
 
2371
- #: includes/functions.php:5011
2372
  msgid "Global visitor limits"
2373
  msgstr ""
2374
 
2375
- #: includes/functions.php:5034
2376
  msgid "Block IP address"
2377
  msgstr ""
2378
 
2379
- #: includes/functions.php:5039
2380
  msgid "Block visitor's IP address when protection is activated"
2381
  msgstr ""
2382
 
2383
- #: includes/functions.php:5041
2384
  msgid "Click to show blocked IP addresses"
2385
  msgstr ""
2386
 
2387
  #. translators: %s: Ad Inserter Pro
2388
- #: includes/functions.php:5231
2389
  msgid "Show link to %s settings page for each site on the Sites page"
2390
  msgstr ""
2391
 
2392
  #. translators: %s: Ad Inserter Pro
2393
- #: includes/functions.php:5231
2394
  msgid "Show link to %s on the Sites page"
2395
  msgstr ""
2396
 
2397
- #: includes/functions.php:5273 settings.php:3203
2398
  msgid ""
2399
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2400
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -2403,15 +2469,15 @@ msgid ""
2403
  "administrators debugging is always enabled."
2404
  msgstr ""
2405
 
2406
- #: includes/functions.php:5275 settings.php:3205
2407
  msgid "Remote debugging"
2408
  msgstr ""
2409
 
2410
- #: includes/functions.php:6753
2411
  msgid "Date"
2412
  msgstr ""
2413
 
2414
- #: includes/functions.php:7221 includes/functions.php:7232
2415
  msgid "File %s missing."
2416
  msgstr ""
2417
 
@@ -2439,11 +2505,11 @@ msgstr ""
2439
  msgid "Placeholder"
2440
  msgstr ""
2441
 
2442
- #: includes/placeholders.php:361 settings.php:980 settings.php:4570
2443
  msgid "Size"
2444
  msgstr ""
2445
 
2446
- #: includes/placeholders.php:377 includes/preview.php:2469
2447
  msgid "Background color"
2448
  msgstr ""
2449
 
@@ -2507,7 +2573,7 @@ msgstr ""
2507
  msgid "Remove dummy paragraph"
2508
  msgstr ""
2509
 
2510
- #: includes/preview-adb.php:6 includes/preview.php:2329
2511
  msgid "Use current settings"
2512
  msgstr ""
2513
 
@@ -2534,7 +2600,7 @@ msgctxt "Button"
2534
  msgid "Default"
2535
  msgstr ""
2536
 
2537
- #: includes/preview-adb.php:9 includes/preview.php:2332
2538
  msgid "Close preview window"
2539
  msgstr ""
2540
 
@@ -2547,67 +2613,67 @@ msgstr ""
2547
  msgid "Ad Blocking Detected Message Preview"
2548
  msgstr ""
2549
 
2550
- #: includes/preview-adb.php:360 settings.php:3040
2551
  msgid "Message CSS"
2552
  msgstr ""
2553
 
2554
- #: includes/preview-adb.php:365 settings.php:3048
2555
  msgid "Overlay CSS"
2556
  msgstr ""
2557
 
2558
- #: includes/preview.php:265
2559
  msgid "Sticky Code Preview"
2560
  msgstr ""
2561
 
2562
- #: includes/preview.php:265
2563
  msgid "Code Preview"
2564
  msgstr ""
2565
 
2566
- #: includes/preview.php:2327
2567
  msgid "Highlight inserted code"
2568
  msgstr ""
2569
 
2570
- #: includes/preview.php:2327
2571
  msgid "Highlight"
2572
  msgstr ""
2573
 
2574
- #: includes/preview.php:2330
2575
  msgid "Reset to block settings"
2576
  msgstr ""
2577
 
2578
- #: includes/preview.php:2345
2579
  msgid "AdSense ad unit"
2580
  msgstr ""
2581
 
2582
- #: includes/preview.php:2414
2583
  msgid "wrapping div"
2584
  msgstr ""
2585
 
2586
- #: includes/preview.php:2419 includes/preview.php:2426
2587
  msgid "background"
2588
  msgstr ""
2589
 
2590
- #: includes/preview.php:2453 includes/preview.php:2665 settings.php:1381
2591
  msgid "Alignment"
2592
  msgstr ""
2593
 
2594
- #: includes/preview.php:2490
2595
  msgid "Repeat image"
2596
  msgstr ""
2597
 
2598
- #: includes/preview.php:2572
2599
  msgid "Horizontal margin"
2600
  msgstr ""
2601
 
2602
- #: includes/preview.php:2624
2603
  msgid "Vertical margin"
2604
  msgstr ""
2605
 
2606
- #: includes/preview.php:2648
2607
  msgid "Animate"
2608
  msgstr ""
2609
 
2610
- #: includes/preview.php:2720
2611
  msgid ""
2612
  "This is a preview of the code between dummy paragraphs. Here you can test "
2613
  "various block alignments, visually edit margin and padding values of the "
@@ -2617,14 +2683,14 @@ msgid ""
2617
  "restores all the values to those of the current block."
2618
  msgstr ""
2619
 
2620
- #: includes/preview.php:2723
2621
  msgid ""
2622
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2623
  "code with the alignment and style as it is set for this block. Highlight "
2624
  "button highlights background, wrapping div margin and code area."
2625
  msgstr ""
2626
 
2627
- #: includes/preview.php:2725
2628
  msgid ""
2629
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2630
  "code was loaded from your AdSense account. The ad block is displayed on a "
@@ -2632,7 +2698,7 @@ msgid ""
2632
  "highlight ad block."
2633
  msgstr ""
2634
 
2635
- #: includes/preview.php:2731
2636
  msgid ""
2637
  "You can resize the window (and refresh the page to reload ads) to check "
2638
  "display with different screen widths.\n"
@@ -2640,7 +2706,7 @@ msgid ""
2640
  "settings will be copied to the active block."
2641
  msgstr ""
2642
 
2643
- #: includes/preview.php:2733
2644
  msgid ""
2645
  "Please note that the code, block name, alignment and style are taken from "
2646
  "the current block settings (may not be saved).\n"
@@ -2648,9 +2714,9 @@ msgid ""
2648
  "padding can't be set. However, you can use own HTML code for the block."
2649
  msgstr ""
2650
 
2651
- #: includes/preview.php:2738 includes/preview.php:2752
2652
- #: includes/preview.php:2762 includes/preview.php:2772
2653
- #: includes/preview.php:2782
2654
  msgid ""
2655
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2656
  "code with it's settings is called a block.\n"
@@ -2664,9 +2730,9 @@ msgid ""
2664
  "and manual insertion."
2665
  msgstr ""
2666
 
2667
- #: includes/preview.php:2743 includes/preview.php:2757
2668
- #: includes/preview.php:2767 includes/preview.php:2777
2669
- #: includes/preview.php:2787
2670
  msgid ""
2671
  "Few very important things you need to know in order to insert code and "
2672
  "display some ad:\n"
@@ -2679,7 +2745,7 @@ msgid ""
2679
  "individual post/page exceptions."
2680
  msgstr ""
2681
 
2682
- #: includes/preview.php:2749
2683
  msgid ""
2684
  "This is a preview of the code for sticky ads. Here you can test various "
2685
  "horizontal and vertical alignments, close button locations, visually edit "
@@ -2704,7 +2770,7 @@ msgstr ""
2704
  msgid "Online documentation"
2705
  msgstr ""
2706
 
2707
- #: settings.php:206 settings.php:798 settings.php:2406
2708
  msgid "Show AdSense ad units"
2709
  msgstr ""
2710
 
@@ -2712,7 +2778,7 @@ msgstr ""
2712
  msgid "Edit ads.txt file"
2713
  msgstr ""
2714
 
2715
- #: settings.php:218 settings.php:1207
2716
  msgid "Check theme for available positions for automatic insertion"
2717
  msgstr ""
2718
 
@@ -2823,7 +2889,7 @@ msgid ""
2823
  "fields empty for equal option shares."
2824
  msgstr ""
2825
 
2826
- #: settings.php:309 settings.php:2144 settings.php:4483
2827
  msgid "Scheduling"
2828
  msgstr ""
2829
 
@@ -2845,329 +2911,321 @@ msgstr ""
2845
  msgid "General Settings"
2846
  msgstr ""
2847
 
2848
- #: settings.php:746 settings.php:2758 settings.php:2825 settings.php:3020
2849
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2850
  msgstr ""
2851
 
2852
- #: settings.php:753
2853
  msgid "Toggle tools"
2854
  msgstr ""
2855
 
2856
- #: settings.php:761
2857
  msgid "Process PHP code in block"
2858
  msgstr ""
2859
 
2860
- #: settings.php:768
2861
  msgid "Disable insertion of this block"
2862
  msgstr ""
2863
 
2864
- #: settings.php:780
2865
  msgid "Toggle code generator"
2866
  msgstr ""
2867
 
2868
- #: settings.php:784
2869
  msgid "Toggle rotation editor"
2870
  msgstr ""
2871
 
2872
- #: settings.php:788
2873
  msgid "Open visual HTML editor"
2874
  msgstr ""
2875
 
2876
- #: settings.php:807
2877
  msgid "Clear block"
2878
  msgstr ""
2879
 
2880
- #: settings.php:812 settings.php:4436
2881
  msgid "Copy block"
2882
  msgstr ""
2883
 
2884
- #: settings.php:816
2885
  msgid "Paste name"
2886
  msgstr ""
2887
 
2888
- #: settings.php:820
2889
  msgid "Paste code"
2890
  msgstr ""
2891
 
2892
- #: settings.php:824
2893
  msgid "Paste settings"
2894
  msgstr ""
2895
 
2896
- #: settings.php:828
2897
  msgid "Paste block (name, code and settings)"
2898
  msgstr ""
2899
 
2900
- #: settings.php:847
2901
  msgid "Rotation groups"
2902
  msgstr ""
2903
 
2904
- #: settings.php:851
2905
  msgid "Remove option"
2906
  msgstr ""
2907
 
2908
- #: settings.php:855
2909
  msgid "Add option"
2910
  msgstr ""
2911
 
2912
- #: settings.php:870
2913
  msgid "Import code"
2914
  msgstr ""
2915
 
2916
- #: settings.php:874
2917
  msgid "Generate code"
2918
  msgstr ""
2919
 
2920
- #: settings.php:879
2921
  msgid "Banner"
2922
  msgstr ""
2923
 
2924
- #: settings.php:891
2925
  msgid "Image"
2926
  msgstr ""
2927
 
2928
- #: settings.php:899
2929
  msgid "Alt text"
2930
  msgstr ""
2931
 
2932
- #: settings.php:913
2933
- msgid "Link"
2934
- msgstr ""
2935
-
2936
- #: settings.php:924
2937
- msgid "Open link in a new tab"
2938
- msgstr ""
2939
-
2940
- #: settings.php:927
2941
  msgid "Select Image"
2942
  msgstr ""
2943
 
2944
- #: settings.php:928
2945
  msgid "Select Placeholder"
2946
  msgstr ""
2947
 
2948
- #: settings.php:940
2949
  msgid "Comment"
2950
  msgstr ""
2951
 
2952
- #: settings.php:949
2953
  msgctxt "AdSense"
2954
  msgid "Publisher ID"
2955
  msgstr ""
2956
 
2957
- #: settings.php:958
2958
  msgctxt "AdSense"
2959
  msgid "Ad Slot ID"
2960
  msgstr ""
2961
 
2962
- #: settings.php:967
2963
  msgid "Ad Type"
2964
  msgstr ""
2965
 
2966
- #: settings.php:992 settings.php:1133
2967
  msgid "AMP Ad"
2968
  msgstr ""
2969
 
2970
- #: settings.php:1005 settings.php:1155
2971
  msgid "Block on consent"
2972
  msgstr ""
2973
 
2974
- #: settings.php:1016
2975
  msgid "Show ad units from your AdSense account"
2976
  msgstr ""
2977
 
2978
- #: settings.php:1016
2979
  msgid "AdSense ad units"
2980
  msgstr ""
2981
 
2982
- #: settings.php:1033
2983
  msgctxt "AdSense"
2984
  msgid "Layout"
2985
  msgstr ""
2986
 
2987
- #: settings.php:1042
2988
  msgctxt "AdSense"
2989
  msgid "Layout Key"
2990
  msgstr ""
2991
 
2992
- #: settings.php:1052
2993
  msgid "Full width"
2994
  msgstr ""
2995
 
2996
- #: settings.php:1054
2997
  msgctxt "Full width"
2998
  msgid "Enabled"
2999
  msgstr ""
3000
 
3001
- #: settings.php:1055
3002
  msgctxt "Full width"
3003
  msgid "Disabled"
3004
  msgstr ""
3005
 
3006
- #: settings.php:1173
3007
  msgid ""
3008
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3009
  "Cookie or Referer (domain)"
3010
  msgstr ""
3011
 
3012
- #: settings.php:1173
3013
  msgid "Lists"
3014
  msgstr ""
3015
 
3016
- #: settings.php:1174
3017
  msgid "Widget, Shortcode and PHP function call"
3018
  msgstr ""
3019
 
3020
- #: settings.php:1174
3021
  msgid "Manual"
3022
  msgstr ""
3023
 
3024
- #: settings.php:1175
3025
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3026
  msgstr ""
3027
 
3028
- #: settings.php:1175
3029
  msgid "Devices"
3030
  msgstr ""
3031
 
3032
- #: settings.php:1176
3033
  msgid ""
3034
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3035
  "feeds), Filter, Scheduling, General tag"
3036
  msgstr ""
3037
 
3038
- #: settings.php:1176
3039
  msgid "Misc"
3040
  msgstr ""
3041
 
3042
- #: settings.php:1177
3043
  msgid "Preview code and alignment"
3044
  msgstr ""
3045
 
3046
- #: settings.php:1180 settings.php:2387
3047
  msgid ""
3048
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3049
  "editor is active before saving settings."
3050
  msgstr ""
3051
 
3052
- #: settings.php:1193 settings.php:1194
3053
  msgid "Enable insertion on posts"
3054
  msgstr ""
3055
 
3056
- #: settings.php:1194 settings.php:3612
3057
  msgid "Posts"
3058
  msgstr ""
3059
 
3060
- #: settings.php:1198 settings.php:1199
3061
  msgid ""
3062
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3063
  "page or theme homepage (available positions may depend on hooks used by the "
3064
  "theme)"
3065
  msgstr ""
3066
 
3067
- #: settings.php:1199 settings.php:3614
3068
  msgid "Homepage"
3069
  msgstr ""
3070
 
3071
- #: settings.php:1203 settings.php:1204
3072
  msgid "Enable insertion on category blog pages (including sub-pages)"
3073
  msgstr ""
3074
 
3075
- #: settings.php:1204 settings.php:3615
3076
  msgid "Category pages"
3077
  msgstr ""
3078
 
3079
- #: settings.php:1214 settings.php:1215
3080
  msgid "Enable insertion on static pages"
3081
  msgstr ""
3082
 
3083
- #: settings.php:1215 settings.php:3613
3084
  msgid "Static pages"
3085
  msgstr ""
3086
 
3087
- #: settings.php:1219 settings.php:1220
3088
  msgid "Enable insertion on search blog pages"
3089
  msgstr ""
3090
 
3091
- #: settings.php:1220 settings.php:3617
3092
  msgid "Search pages"
3093
  msgstr ""
3094
 
3095
- #: settings.php:1224 settings.php:1225
3096
  msgid "Enable insertion on tag or archive blog pages"
3097
  msgstr ""
3098
 
3099
- #: settings.php:1228
3100
  msgid "Toggle settings for default insertion and list of individual exceptions"
3101
  msgstr ""
3102
 
3103
- #: settings.php:1240
3104
  msgid ""
3105
  "Enable individual post/page exceptions for insertion of this block. They can "
3106
  "be configured on the individual post/page editor page (in the settings below "
3107
  "the editor)."
3108
  msgstr ""
3109
 
3110
- #: settings.php:1241
3111
  msgid ""
3112
  "Enable individual post/page exceptions for insertion of this block. When "
3113
  "enabled they can be configured on the individual post/page editor page (in "
3114
  "the settings below the editor)."
3115
  msgstr ""
3116
 
3117
- #: settings.php:1241
3118
  msgid "Use exceptions for individual posts or pages to change insertion"
3119
  msgstr ""
3120
 
3121
  #. Translators: Enabled means...
3122
- #: settings.php:1249
3123
  msgid ""
3124
  "means the insertion for this block is enabled by default and disabled for "
3125
  "exceptions."
3126
  msgstr ""
3127
 
3128
  #. Translators: Disabled means...
3129
- #: settings.php:1250
3130
  msgid ""
3131
  "means the insertion for this block is disabled by default and enabled for "
3132
  "exceptions."
3133
  msgstr ""
3134
 
3135
- #: settings.php:1251
3136
  msgid ""
3137
  "When individual post/page exceptions are enabled they can be configured on "
3138
  "the individual post/page editor page (in the settings below the editor)."
3139
  msgstr ""
3140
 
3141
- #: settings.php:1259
3142
  msgid ""
3143
  "No exception for post or static page defined. Block will not be inserted."
3144
  msgstr ""
3145
 
3146
- #: settings.php:1264
3147
  msgid ""
3148
  "Settings for individual exceptions have been updated. Please check all "
3149
  "blocks that have exceptions and and then save settings."
3150
  msgstr ""
3151
 
3152
- #: settings.php:1277
3153
  msgctxt "post"
3154
  msgid "Type"
3155
  msgstr ""
3156
 
3157
  #. translators: %d: block number
3158
- #: settings.php:1282
3159
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3160
  msgstr ""
3161
 
3162
- #: settings.php:1283
3163
  msgid "Clear listed exceptions for block"
3164
  msgstr ""
3165
 
3166
- #: settings.php:1312 settings.php:1460 settings.php:2141
3167
  msgid "Insertion"
3168
  msgstr ""
3169
 
3170
- #: settings.php:1350
3171
  msgid ""
3172
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3173
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3177,7 +3235,7 @@ msgid ""
3177
  "negative number means counting from the opposite direction"
3178
  msgstr ""
3179
 
3180
- #: settings.php:1351
3181
  msgid ""
3182
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3183
  "means every N images, empty means all images, 0 means random image, value "
@@ -3187,178 +3245,178 @@ msgid ""
3187
  "direction"
3188
  msgstr ""
3189
 
3190
- #: settings.php:1364
3191
  msgid ""
3192
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3193
  "numbers, %N means every N excerpts, empty means all excerpts"
3194
  msgstr ""
3195
 
3196
- #: settings.php:1365
3197
  msgid ""
3198
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3199
  "numbers, %N means every N posts, empty means all posts"
3200
  msgstr ""
3201
 
3202
- #: settings.php:1366
3203
  msgid ""
3204
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3205
  "numbers, %N means every N comments, empty means all comments"
3206
  msgstr ""
3207
 
3208
- #: settings.php:1373
3209
  msgid "Toggle paragraph counting settings"
3210
  msgstr ""
3211
 
3212
- #: settings.php:1374
3213
  msgid "Toggle paragraph clearance settings"
3214
  msgstr ""
3215
 
3216
- #: settings.php:1377
3217
  msgid "Toggle insertion filter settings"
3218
  msgstr ""
3219
 
3220
- #: settings.php:1395
3221
  msgid "Toggle insertion and alignment icons"
3222
  msgstr ""
3223
 
3224
- #: settings.php:1409
3225
  msgid "Custom CSS code for the wrapping div"
3226
  msgstr ""
3227
 
3228
- #: settings.php:1412 settings.php:1413 settings.php:1414 settings.php:1415
3229
- #: settings.php:1416 settings.php:1417
3230
  msgid "CSS code for the wrapping div, click to edit"
3231
  msgstr ""
3232
 
3233
- #: settings.php:1430
3234
  msgid "HTML element"
3235
  msgstr ""
3236
 
3237
- #: settings.php:1443
3238
  msgid "HTML element selector or comma separated list of selectors"
3239
  msgstr ""
3240
 
3241
- #: settings.php:1449 settings.php:2916
3242
  msgid "Action"
3243
  msgstr ""
3244
 
3245
- #: settings.php:1461
3246
  msgid ""
3247
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3248
  "Server-side insertion inserts block when the page is generated but needs "
3249
  "Output buffering enabled."
3250
  msgstr ""
3251
 
3252
- #: settings.php:1471
3253
  msgid "Wait for"
3254
  msgstr ""
3255
 
3256
- #: settings.php:1483
3257
  msgid "Wait for HTML element to be loaded"
3258
  msgstr ""
3259
 
3260
- #: settings.php:1490
3261
  msgid "Time in ms to delay insertion"
3262
  msgstr ""
3263
 
3264
- #: settings.php:1495
3265
  msgid "Code position"
3266
  msgstr ""
3267
 
3268
- #: settings.php:1496
3269
  msgid ""
3270
  "Page position where the code for client-side insertion will be inserted."
3271
  msgstr ""
3272
 
3273
- #: settings.php:1514
3274
  msgid "Count"
3275
  msgstr ""
3276
 
3277
- #: settings.php:1520
3278
  msgid "paragraphs with tags"
3279
  msgstr ""
3280
 
3281
- #: settings.php:1526
3282
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3283
  msgstr ""
3284
 
3285
- #: settings.php:1535
3286
  msgid "that have between"
3287
  msgstr ""
3288
 
3289
- #: settings.php:1541
3290
  msgid "Minimum number of paragraph words, leave empty for no limit"
3291
  msgstr ""
3292
 
3293
- #: settings.php:1550
3294
  msgid "Maximum number of paragraph words, leave empty for no limit"
3295
  msgstr ""
3296
 
3297
- #: settings.php:1553
3298
  msgid "words"
3299
  msgstr ""
3300
 
3301
- #: settings.php:1568 settings.php:1615 settings.php:1729 settings.php:1755
3302
  msgid "Comma separated texts"
3303
  msgstr ""
3304
 
3305
  #. translators: inside [HTML tags] elements that contain
3306
- #: settings.php:1587
3307
  msgid "inside"
3308
  msgstr ""
3309
 
3310
- #: settings.php:1593
3311
  msgid "Comma separated HTML tag names of container elements"
3312
  msgstr ""
3313
 
3314
  #. translators: inside [HTML tags] elements that contain
3315
- #: settings.php:1602
3316
  msgid "elements that"
3317
  msgstr ""
3318
 
3319
- #: settings.php:1625
3320
  msgid ""
3321
  "Count also paragraphs inside these elements - defined on general plugin "
3322
  "settings page - tab [*] / tab General"
3323
  msgstr ""
3324
 
3325
- #: settings.php:1632 settings.php:1633
3326
  msgid ""
3327
  "If checked it will search for the text only in tag attributes like [[id]], "
3328
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
3329
  "will be searched."
3330
  msgstr ""
3331
 
3332
- #: settings.php:1633
3333
  msgid "Check only tag attributes"
3334
  msgstr ""
3335
 
3336
  #. Translators: %s: HTML tags
3337
- #: settings.php:1638
3338
  msgid "Count inside %s elements"
3339
  msgstr ""
3340
 
3341
  #. Translators: Do not insert for first X and last Y paragraphs
3342
- #: settings.php:1646
3343
  msgid "Do not insert for first"
3344
  msgid_plural "Do not insert for first"
3345
  msgstr[0] ""
3346
  msgstr[1] ""
3347
 
3348
- #: settings.php:1652
3349
  msgid ""
3350
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3351
  "first paragraphs"
3352
  msgstr ""
3353
 
3354
  #. Translators: Do not insert for first X and last Y paragraphs
3355
- #: settings.php:1655
3356
  msgid "and last"
3357
  msgid_plural "and last"
3358
  msgstr[0] ""
3359
  msgstr[1] ""
3360
 
3361
- #: settings.php:1661
3362
  msgid ""
3363
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3364
  "last paragraphs"
@@ -3366,124 +3424,124 @@ msgstr ""
3366
 
3367
  #. Translators: Do not insert for first X and last Y paragraphs
3368
  #. Translators: Post/Static page must have between X and Y paragraphs
3369
- #: settings.php:1664 settings.php:1690
3370
  msgid "paragraph"
3371
  msgid_plural "paragraphs"
3372
  msgstr[0] ""
3373
  msgstr[1] ""
3374
 
3375
- #: settings.php:1672 settings.php:2273
3376
  msgid "Post/Static page must have between"
3377
  msgstr ""
3378
 
3379
- #: settings.php:1678
3380
  msgid "Minimum number of paragraphs, leave empty for no limit"
3381
  msgstr ""
3382
 
3383
- #: settings.php:1687
3384
  msgid "Maximum number of paragraphs, leave empty for no limit"
3385
  msgstr ""
3386
 
3387
- #: settings.php:1698
3388
  msgid "Minimum number of words in paragraphs above"
3389
  msgstr ""
3390
 
3391
- #: settings.php:1704
3392
  msgid ""
3393
  "Used only with automatic insertion After paragraph and empty paragraph "
3394
  "numbers"
3395
  msgstr ""
3396
 
3397
- #: settings.php:1714 settings.php:1740
3398
  msgid "In"
3399
  msgstr ""
3400
 
3401
- #: settings.php:1720
3402
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3403
  msgstr ""
3404
 
3405
- #: settings.php:1723
3406
  msgid "paragraphs above avoid"
3407
  msgstr ""
3408
 
3409
- #: settings.php:1746
3410
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3411
  msgstr ""
3412
 
3413
- #: settings.php:1749
3414
  msgid "paragraphs below avoid"
3415
  msgstr ""
3416
 
3417
- #: settings.php:1765
3418
  msgid "If text is found"
3419
  msgstr ""
3420
 
3421
- #: settings.php:1772
3422
  msgid "check up to"
3423
  msgstr ""
3424
 
3425
- #: settings.php:1780
3426
  msgctxt "check up to"
3427
  msgid "paragraphs"
3428
  msgstr ""
3429
 
3430
- #: settings.php:1796
3431
  msgid "Categories"
3432
  msgstr ""
3433
 
3434
- #: settings.php:1799
3435
  msgid "Toggle category editor"
3436
  msgstr ""
3437
 
3438
- #: settings.php:1802
3439
  msgid "Comma separated category slugs"
3440
  msgstr ""
3441
 
3442
- #: settings.php:1819
3443
  msgid "Tags"
3444
  msgstr ""
3445
 
3446
- #: settings.php:1822
3447
  msgid "Toggle tag editor"
3448
  msgstr ""
3449
 
3450
- #: settings.php:1825
3451
  msgid "Comma separated tag slugs"
3452
  msgstr ""
3453
 
3454
- #: settings.php:1842
3455
  msgid "Taxonomies"
3456
  msgstr ""
3457
 
3458
- #: settings.php:1845
3459
  msgid "Toggle taxonomy editor"
3460
  msgstr ""
3461
 
3462
- #: settings.php:1848
3463
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3464
  msgstr ""
3465
 
3466
- #: settings.php:1865
3467
  msgid "Post IDs"
3468
  msgstr ""
3469
 
3470
- #: settings.php:1868
3471
  msgid "Toggle post/page ID editor"
3472
  msgstr ""
3473
 
3474
- #: settings.php:1871
3475
  msgid "Comma separated post/page IDs"
3476
  msgstr ""
3477
 
3478
- #: settings.php:1888
3479
  msgid "Urls"
3480
  msgstr ""
3481
 
3482
- #: settings.php:1891
3483
  msgid "Toggle url editor"
3484
  msgstr ""
3485
 
3486
- #: settings.php:1894
3487
  msgid ""
3488
  "Comma separated urls (page addresses) starting with / after domain name (e."
3489
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3491,207 +3549,207 @@ msgid ""
3491
  "start*. *url-pattern*, *url-end)"
3492
  msgstr ""
3493
 
3494
- #: settings.php:1910
3495
  msgid "Url parameters"
3496
  msgstr ""
3497
 
3498
- #: settings.php:1914
3499
  msgid "Toggle url parameter and cookie editor"
3500
  msgstr ""
3501
 
3502
- #: settings.php:1917
3503
  msgid ""
3504
  "Comma separated url query parameters or cookies with optional values (use "
3505
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
3506
  msgstr ""
3507
 
3508
- #: settings.php:1933
3509
  msgid "Cookies"
3510
  msgstr ""
3511
 
3512
- #: settings.php:1937
3513
  msgid "Toggle cookie editor"
3514
  msgstr ""
3515
 
3516
- #: settings.php:1940
3517
  msgid ""
3518
  "Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
3519
  msgstr ""
3520
 
3521
- #: settings.php:1956
3522
  msgid "Referrers"
3523
  msgstr ""
3524
 
3525
- #: settings.php:1959
3526
  msgid "Toggle referer editor"
3527
  msgstr ""
3528
 
3529
- #: settings.php:1962
3530
  msgid ""
3531
  "Comma separated domains, use # for no referrer, you can also use partial "
3532
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3533
  msgstr ""
3534
 
3535
- #: settings.php:1978
3536
  msgid "Clients"
3537
  msgstr ""
3538
 
3539
- #: settings.php:1981
3540
  msgid "Toggle client editor"
3541
  msgstr ""
3542
 
3543
- #: settings.php:1984
3544
  msgid ""
3545
  "Comma separated names (operating systems, browsers, devices). You can also "
3546
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
3547
  "pattern*, *user-agent-end)"
3548
  msgstr ""
3549
 
3550
- #: settings.php:2010
3551
  msgid "Enable widget for this block"
3552
  msgstr ""
3553
 
3554
- #: settings.php:2015
3555
  msgid "Sidebars (or widget positions) where this widget is used"
3556
  msgstr ""
3557
 
3558
- #: settings.php:2022
3559
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3560
  msgstr ""
3561
 
3562
- #: settings.php:2023 settings.php:4493
3563
  msgid "Shortcode"
3564
  msgstr ""
3565
 
3566
- #: settings.php:2038
3567
  msgid ""
3568
  "Enable PHP function call to insert this block at any position in theme file. "
3569
  "If function is disabled for block it will return empty string."
3570
  msgstr ""
3571
 
3572
- #: settings.php:2039
3573
  msgid "PHP function"
3574
  msgstr ""
3575
 
3576
- #: settings.php:2054
3577
  msgid "Client-side device detection"
3578
  msgstr ""
3579
 
3580
- #: settings.php:2055
3581
  msgid "Server-side device detection"
3582
  msgstr ""
3583
 
3584
- #: settings.php:2062
3585
  msgid "Use client-side detection to"
3586
  msgstr ""
3587
 
3588
- #: settings.php:2064
3589
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3590
  msgstr ""
3591
 
3592
  #. Translators: only on (the following devices): viewport names (devices)
3593
  #. listed
3594
- #: settings.php:2069
3595
  msgid "only on"
3596
  msgstr ""
3597
 
3598
- #: settings.php:2097
3599
  msgid "Device min width %s px"
3600
  msgstr ""
3601
 
3602
- #: settings.php:2123
3603
  msgid "Use server-side detection to insert block only for"
3604
  msgstr ""
3605
 
3606
- #: settings.php:2142
3607
  msgid "Filter"
3608
  msgstr ""
3609
 
3610
- #: settings.php:2143
3611
  msgid "Word Count"
3612
  msgstr ""
3613
 
3614
- #: settings.php:2145
3615
  msgid "Display"
3616
  msgstr ""
3617
 
3618
- #: settings.php:2147 settings.php:2432
3619
  msgid "General"
3620
  msgstr ""
3621
 
3622
- #: settings.php:2159
3623
  msgid "Old settings for AMP pages detected"
3624
  msgstr ""
3625
 
3626
- #: settings.php:2159
3627
  msgid ""
3628
  "To insert different codes on normal and AMP pages separate them with "
3629
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3630
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3631
  msgstr ""
3632
 
3633
- #: settings.php:2159
3634
  msgid "AMP pages"
3635
  msgstr ""
3636
 
3637
- #: settings.php:2164
3638
  msgid "Enable insertion for Ajax requests"
3639
  msgstr ""
3640
 
3641
- #: settings.php:2164
3642
  msgid "Ajax requests"
3643
  msgstr ""
3644
 
3645
- #: settings.php:2169
3646
  msgid "Enable insertion in RSS feeds"
3647
  msgstr ""
3648
 
3649
- #: settings.php:2169
3650
  msgid "RSS Feed"
3651
  msgstr ""
3652
 
3653
- #: settings.php:2174
3654
  msgid "Enable insertion on page for Error 404: Page not found"
3655
  msgstr ""
3656
 
3657
- #: settings.php:2174
3658
  msgid "Error 404 page"
3659
  msgstr ""
3660
 
3661
- #: settings.php:2186
3662
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3663
  msgstr ""
3664
 
3665
- #: settings.php:2187
3666
  msgid "insertions"
3667
  msgstr ""
3668
 
3669
- #: settings.php:2189
3670
  msgid ""
3671
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3672
  "General)"
3673
  msgstr ""
3674
 
3675
- #: settings.php:2192 settings.php:2620
3676
  msgid "Max blocks per page"
3677
  msgstr ""
3678
 
3679
- #: settings.php:2204
3680
  msgid "Insert for"
3681
  msgstr ""
3682
 
3683
- #: settings.php:2212
3684
  msgid ""
3685
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
3686
  "is currently active). Might speed up insertion on content pages when "
3687
  "[[the_content]] filter hook is called multiple times."
3688
  msgstr ""
3689
 
3690
- #: settings.php:2216
3691
  msgid "Insert only in the loop"
3692
  msgstr ""
3693
 
3694
- #: settings.php:2219
3695
  msgid ""
3696
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
3697
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
@@ -3699,24 +3757,24 @@ msgid ""
3699
  "footer."
3700
  msgstr ""
3701
 
3702
- #: settings.php:2223
3703
  msgid "Embed JS code"
3704
  msgstr ""
3705
 
3706
- #: settings.php:2226
3707
  msgid ""
3708
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3709
  msgstr ""
3710
 
3711
- #: settings.php:2230
3712
  msgid "Disable caching"
3713
  msgstr ""
3714
 
3715
- #: settings.php:2242
3716
  msgid "Filter insertions"
3717
  msgstr ""
3718
 
3719
- #: settings.php:2245
3720
  msgid ""
3721
  "Filter multiple insertions by specifying wanted insertions for this block - "
3722
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3724,808 +3782,814 @@ msgid ""
3724
  "using only one insertion type."
3725
  msgstr ""
3726
 
3727
- #: settings.php:2248
3728
  msgid "using"
3729
  msgstr ""
3730
 
3731
- #: settings.php:2267
3732
  msgid "Checked means specified calls are unwanted"
3733
  msgstr ""
3734
 
3735
- #: settings.php:2267
3736
  msgid "Invert filter"
3737
  msgstr ""
3738
 
3739
- #: settings.php:2274
3740
  msgid "Minimum number of post/static page words, leave empty for no limit"
3741
  msgstr ""
3742
 
3743
- #: settings.php:2276
3744
  msgid "Maximum number of post/static page words, leave empty for no limit"
3745
  msgstr ""
3746
 
3747
- #: settings.php:2289
3748
  msgid "for"
3749
  msgstr ""
3750
 
3751
- #: settings.php:2289
3752
  msgid "days after publishing"
3753
  msgstr ""
3754
 
3755
- #: settings.php:2291
3756
  msgid "Not available"
3757
  msgstr ""
3758
 
3759
  #. Translators: do not translate [[width]] - it is a CSS property
3760
- #: settings.php:2303
3761
  msgid ""
3762
  "Block width: empty means width not defined, number means width in pixels, "
3763
  "any other value means CSS [[width]] property"
3764
  msgstr ""
3765
 
3766
  #. Translators: do not translate [[height]] - it is a CSS property
3767
- #: settings.php:2307
3768
  msgid ""
3769
  "Block height: empty means height not defined, number means height in pixels, "
3770
  "any other value means CSS [[height]] property"
3771
  msgstr ""
3772
 
3773
- #: settings.php:2313 settings.php:2612
 
 
 
 
 
 
3774
  msgid "Ad label"
3775
  msgstr ""
3776
 
3777
- #: settings.php:2334
3778
  msgid "General tag"
3779
  msgstr ""
3780
 
3781
- #: settings.php:2338
3782
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3783
  msgstr ""
3784
 
3785
  #. translators: %s: HTML tags
3786
- #: settings.php:2347
3787
  msgid ""
3788
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3789
  "client-side device detection!"
3790
  msgstr ""
3791
 
3792
  #. translators: %s: HTML tags for text and link
3793
- #: settings.php:2361
3794
  msgid ""
3795
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3796
  "side %s insertion. Use %s Server-side %s insertion."
3797
  msgstr ""
3798
 
3799
- #: settings.php:2377
3800
  msgid "Settings"
3801
  msgstr ""
3802
 
3803
- #: settings.php:2380
3804
  msgid "Settings timestamp"
3805
  msgstr ""
3806
 
3807
- #: settings.php:2396
3808
  msgid "Are you sure you want to reset all settings?"
3809
  msgstr ""
3810
 
3811
- #: settings.php:2396
3812
  msgid "Reset All Settings"
3813
  msgstr ""
3814
 
3815
- #: settings.php:2433
3816
  msgid "Viewports"
3817
  msgstr ""
3818
 
3819
- #: settings.php:2434
3820
  msgid "Hooks"
3821
  msgstr ""
3822
 
3823
- #: settings.php:2435
3824
  msgid "Header"
3825
  msgstr ""
3826
 
3827
- #: settings.php:2436 strings.php:30
3828
  msgid "Footer"
3829
  msgstr ""
3830
 
3831
- #: settings.php:2441
3832
  msgid "Debugging"
3833
  msgstr ""
3834
 
3835
- #: settings.php:2451
3836
  msgid "Plugin priority"
3837
  msgstr ""
3838
 
3839
- #: settings.php:2459
3840
  msgid "Output buffering"
3841
  msgstr ""
3842
 
3843
- #: settings.php:2462
3844
  msgid "Needed for position Above header but may not work with all themes"
3845
  msgstr ""
3846
 
3847
- #: settings.php:2470
3848
  msgid "Syntax highlighting theme"
3849
  msgstr ""
3850
 
3851
- #: settings.php:2477
3852
  msgctxt "no syntax highlighting themes"
3853
  msgid "None"
3854
  msgstr ""
3855
 
3856
- #: settings.php:2478
3857
  msgid "No Syntax Highlighting"
3858
  msgstr ""
3859
 
3860
- #: settings.php:2480
3861
  msgctxt "syntax highlighting themes"
3862
  msgid "Light"
3863
  msgstr ""
3864
 
3865
- #: settings.php:2495
3866
  msgctxt "syntax highlighting themes"
3867
  msgid "Dark"
3868
  msgstr ""
3869
 
3870
- #: settings.php:2521
3871
  msgid "Tab setup delay"
3872
  msgstr ""
3873
 
3874
- #: settings.php:2529
3875
  msgid "Min. user role for ind. exceptions editing"
3876
  msgstr ""
3877
 
3878
- #: settings.php:2539
3879
  msgid "Disable caching for logged in administrators"
3880
  msgstr ""
3881
 
3882
- #: settings.php:2542
3883
  msgid ""
3884
  "Enabled means that logged in administrators will see non-cached (live) pages "
3885
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3886
  msgstr ""
3887
 
3888
- #: settings.php:2550
3889
  msgid "Wait for jQuery"
3890
  msgstr ""
3891
 
3892
- #: settings.php:2553
3893
  msgid ""
3894
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
3895
  "it will run the scripts that may need it"
3896
  msgstr ""
3897
 
3898
- #: settings.php:2561
3899
  msgid "Sticky widget mode"
3900
  msgstr ""
3901
 
3902
- #: settings.php:2564
3903
  msgid ""
3904
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3905
  "mode works with most themes but may reload ads on page load."
3906
  msgstr ""
3907
 
3908
- #: settings.php:2572
3909
  msgid "Sticky widget top margin"
3910
  msgstr ""
3911
 
3912
- #: settings.php:2580
3913
  msgid "Dynamic blocks"
3914
  msgstr ""
3915
 
3916
- #: settings.php:2593
3917
  msgid "Functions for paragraph counting"
3918
  msgstr ""
3919
 
3920
- #: settings.php:2596
3921
  msgid ""
3922
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3923
  "functions if paragraphs are not counted properly on non-english pages."
3924
  msgstr ""
3925
 
3926
- #: settings.php:2604
3927
  msgid "No paragraph counting inside"
3928
  msgstr ""
3929
 
3930
- #: settings.php:2615
3931
  msgid "Label text or HTML code"
3932
  msgstr ""
3933
 
3934
- #: settings.php:2623
3935
  msgid ""
3936
  "Maximum number of inserted blocks per page. You need to enable Max page "
3937
  "insertions (button Misc / tab Insertion) to count block for this limit."
3938
  msgstr ""
3939
 
3940
- #: settings.php:2637
3941
  msgid "Plugin usage tracking"
3942
  msgstr ""
3943
 
3944
  #. translators: %s: Ad Inserter
3945
- #: settings.php:2640
3946
  msgid ""
3947
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3948
  "Only information regarding the WordPress environment and %s usage is "
3949
  "recorded (once per month and on events like plugin activation/deactivation)."
3950
  msgstr ""
3951
 
3952
- #: settings.php:2658
3953
  msgid "CSS class name for the wrapping div"
3954
  msgstr ""
3955
 
3956
- #: settings.php:2658
3957
  msgid "Block class name"
3958
  msgstr ""
3959
 
3960
- #: settings.php:2664
3961
  msgid "Include block number class"
3962
  msgstr ""
3963
 
3964
- #: settings.php:2664
3965
  msgid "Block number class"
3966
  msgstr ""
3967
 
3968
- #: settings.php:2669
3969
  msgid "Include block name class"
3970
  msgstr ""
3971
 
3972
- #: settings.php:2669
3973
  msgid "Block name class"
3974
  msgstr ""
3975
 
3976
- #: settings.php:2674
3977
  msgid ""
3978
  "Instead of alignment classes generate inline alignment styles for blocks"
3979
  msgstr ""
3980
 
3981
- #: settings.php:2674
3982
  msgid "Inline styles"
3983
  msgstr ""
3984
 
3985
- #: settings.php:2680
3986
  msgid "Preview of the block wrapping code"
3987
  msgstr ""
3988
 
3989
- #: settings.php:2681
3990
  msgid "Wrapping div"
3991
  msgstr ""
3992
 
3993
- #: settings.php:2682 settings.php:3158
3994
  msgid "BLOCK CODE"
3995
  msgstr ""
3996
 
3997
- #: settings.php:2690
3998
  msgid "Viewport Settings used for client-side device detection"
3999
  msgstr ""
4000
 
4001
  #. Translators: %d: viewport number
4002
- #: settings.php:2698
4003
  msgid "Viewport %d name"
4004
  msgstr ""
4005
 
4006
- #: settings.php:2701
4007
  msgid "min width"
4008
  msgstr ""
4009
 
4010
- #: settings.php:2712
4011
  msgid "Custom Hooks"
4012
  msgstr ""
4013
 
4014
- #: settings.php:2724 settings.php:2727
4015
  msgid "Enable hook"
4016
  msgstr ""
4017
 
4018
  #. translators: %d: hook number
4019
- #: settings.php:2727
4020
  msgid "Hook %d name"
4021
  msgstr ""
4022
 
4023
- #: settings.php:2730
4024
  msgid "Hook name for automatic insertion selection"
4025
  msgstr ""
4026
 
4027
- #: settings.php:2733
4028
  msgid "action"
4029
  msgstr ""
4030
 
4031
- #: settings.php:2736
4032
  msgid "Action name as used in the do_action () function"
4033
  msgstr ""
4034
 
4035
- #: settings.php:2739
4036
  msgid "priority"
4037
  msgstr ""
4038
 
4039
- #: settings.php:2742
4040
  msgid "Priority for the hook (default is 10)"
4041
  msgstr ""
4042
 
4043
- #: settings.php:2763
4044
  msgid "Enable insertion of this code into HTML page header"
4045
  msgstr ""
4046
 
4047
- #: settings.php:2767 settings.php:2834 settings.php:3025
4048
  msgid "Process PHP code"
4049
  msgstr ""
4050
 
4051
- #: settings.php:2771
4052
  msgid "HTML Page Header Code"
4053
  msgstr ""
4054
 
4055
- #: settings.php:2779
4056
  msgid "Code in the %s section of the HTML page"
4057
  msgstr ""
4058
 
4059
- #: settings.php:2780
4060
  msgctxt "code in the header"
4061
  msgid "NOT ENABLED"
4062
  msgstr ""
4063
 
4064
- #: settings.php:2797 settings.php:2865
4065
  msgid "Use server-side detection to insert code only for"
4066
  msgstr ""
4067
 
4068
- #: settings.php:2812
4069
  msgid ""
4070
  "Enable insertion of this code into HTML page header on page for Error 404: "
4071
  "Page not found"
4072
  msgstr ""
4073
 
4074
- #: settings.php:2812 settings.php:2880
4075
  msgid "Insert on Error 404 page"
4076
  msgstr ""
4077
 
4078
- #: settings.php:2830
4079
  msgid "Enable insertion of this code into HTML page footer"
4080
  msgstr ""
4081
 
4082
- #: settings.php:2838
4083
  msgid "HTML Page Footer Code"
4084
  msgstr ""
4085
 
4086
  #. translators: %s: HTML tags
4087
- #: settings.php:2846
4088
  msgid "Code before the %s tag of the HTML page"
4089
  msgstr ""
4090
 
4091
- #: settings.php:2847
4092
  msgctxt "code in the footer"
4093
  msgid "NOT ENABLED"
4094
  msgstr ""
4095
 
4096
- #: settings.php:2880
4097
  msgid ""
4098
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4099
  "Page not found"
4100
  msgstr ""
4101
 
4102
- #: settings.php:2896
4103
  msgid "Code for ad blocking detection inserted. Click for details."
4104
  msgstr ""
4105
 
4106
- #: settings.php:2901
4107
  msgid "Enable detection of ad blocking"
4108
  msgstr ""
4109
 
4110
- #: settings.php:2919
4111
  msgid "Global action when ad blocking is detected"
4112
  msgstr ""
4113
 
4114
- #: settings.php:2925
4115
  msgid "No action for"
4116
  msgstr ""
4117
 
4118
- #: settings.php:2926
4119
  msgid "Exceptions for global action when ad blocking is detected."
4120
  msgstr ""
4121
 
4122
- #: settings.php:2936
4123
  msgid "Delay Action"
4124
  msgstr ""
4125
 
4126
- #: settings.php:2939
4127
  msgid ""
4128
  "Number of page views to delay action when ad blocking is detected. Leave "
4129
  "empty for no delay (action fires on first page view). Sets cookie."
4130
  msgstr ""
4131
 
4132
- #: settings.php:2939
4133
  msgctxt "Delay Action for x "
4134
  msgid "page views"
4135
  msgstr ""
4136
 
4137
- #: settings.php:2944
4138
  msgid "No Action Period"
4139
  msgstr ""
4140
 
4141
- #: settings.php:2947
4142
  msgid ""
4143
  "Number of days to supress action when ad blocking is detected. Leave empty "
4144
  "for no no-action period (action fires always after defined page view delay). "
4145
  "Sets cookie."
4146
  msgstr ""
4147
 
4148
- #: settings.php:2947
4149
  msgctxt "no action period"
4150
  msgid "days"
4151
  msgstr ""
4152
 
4153
- #: settings.php:2952
4154
  msgid "Custom Selectors"
4155
  msgstr ""
4156
 
4157
- #: settings.php:2955
4158
  msgid ""
4159
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4160
  "blocking detection. Invisible element or element with zero height means ad "
4161
  "blocking is present."
4162
  msgstr ""
4163
 
4164
- #: settings.php:2962
4165
  msgid ""
4166
  "Use external scripts for ad blocking detection. Disable when you need to "
4167
  "obtain user consent before collecting personal information. In such case use "
4168
  "shortcut to insert external scripts after the consent is given."
4169
  msgstr ""
4170
 
4171
- #: settings.php:2962
4172
  msgid "Use external scripts"
4173
  msgstr ""
4174
 
4175
- #: settings.php:2976
4176
  msgid "Redirection Page"
4177
  msgstr ""
4178
 
4179
- #: settings.php:2988
4180
  msgid "Custom Url"
4181
  msgstr ""
4182
 
4183
- #: settings.php:2993
4184
  msgid ""
4185
  "Static page for redirection when ad blocking is detected. For other pages "
4186
  "select Custom url and set it below."
4187
  msgstr ""
4188
 
4189
- #: settings.php:3002
4190
  msgid "Custom Redirection Url"
4191
  msgstr ""
4192
 
4193
- #: settings.php:3014
4194
  msgid "Message HTML code"
4195
  msgstr ""
4196
 
4197
- #: settings.php:3027
4198
  msgid "Preview message when ad blocking is detected"
4199
  msgstr ""
4200
 
4201
- #: settings.php:3056
4202
  msgid "Prevent visitors from closing the warning message"
4203
  msgstr ""
4204
 
4205
- #: settings.php:3056
4206
  msgid "Undismissible Message"
4207
  msgstr ""
4208
 
4209
- #: settings.php:3062
4210
  msgid "Not undismissible for"
4211
  msgstr ""
4212
 
4213
- #: settings.php:3063
4214
  msgid "Users which can close the warning message."
4215
  msgstr ""
4216
 
4217
- #: settings.php:3100
4218
  msgid ""
4219
  "Force showing admin toolbar for administrators when viewing site. Enable "
4220
  "this option when you are logged in as admin and you don't see admin toolbar."
4221
  msgstr ""
4222
 
4223
- #: settings.php:3108
4224
  msgid "Disable header code (Header tab)"
4225
  msgstr ""
4226
 
4227
- #: settings.php:3112
4228
  msgid "Disable footer code (Footer tab)"
4229
  msgstr ""
4230
 
4231
  #. translators: %s: Ad Inserter
4232
- #: settings.php:3116
4233
  msgid "Disable %s JavaScript code"
4234
  msgstr ""
4235
 
4236
  #. translators: %s: Ad Inserter
4237
- #: settings.php:3120
4238
  msgid "Disable %s CSS code"
4239
  msgstr ""
4240
 
4241
  #. translators: %s: Ad Inserter
4242
- #: settings.php:3124
4243
  msgid "Disable %s HTML code"
4244
  msgstr ""
4245
 
4246
- #: settings.php:3128
4247
  msgid ""
4248
  "Disable PHP code processing (in all blocks including header and footer code)"
4249
  msgstr ""
4250
 
4251
- #: settings.php:3132
4252
  msgid "Disable insertion of all blocks"
4253
  msgstr ""
4254
 
4255
- #: settings.php:3136
4256
  msgid "Disable insertions"
4257
  msgstr ""
4258
 
4259
  #. translators: %s: Ad Inserter
4260
- #: settings.php:3148
4261
  msgid "%s CSS CODE"
4262
  msgstr ""
4263
 
4264
- #: settings.php:3151
4265
  msgid "HEADER CODE"
4266
  msgstr ""
4267
 
4268
  #. translators: %s: PHP tags
4269
- #: settings.php:3157
4270
  msgid "BLOCK PHP CODE"
4271
  msgstr ""
4272
 
4273
  #. translators: %s: Ad Inserter
4274
- #: settings.php:3162
4275
  msgid "%s HTML CODE"
4276
  msgstr ""
4277
 
4278
  #. translators: %s: Ad Inserter
4279
- #: settings.php:3164
4280
  msgid "%s JS CODE"
4281
  msgstr ""
4282
 
4283
- #: settings.php:3167
4284
  msgid "FOOTER CODE"
4285
  msgstr ""
4286
 
4287
- #: settings.php:3176
4288
  msgid "Force showing admin toolbar when viewing site"
4289
  msgstr ""
4290
 
4291
- #: settings.php:3183
4292
  msgid "Enable debugging functions in admin toolbar"
4293
  msgstr ""
4294
 
4295
- #: settings.php:3185
4296
  msgid "Debugging functions in admin toolbar"
4297
  msgstr ""
4298
 
4299
- #: settings.php:3192
4300
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4301
  msgstr ""
4302
 
4303
- #: settings.php:3194
4304
  msgid "Debugging functions on mobile screens"
4305
  msgstr ""
4306
 
4307
- #: settings.php:3214
4308
  msgid ""
4309
  "Disable translation to see original texts for the settings and messages in "
4310
  "English"
4311
  msgstr ""
4312
 
4313
- #: settings.php:3216
4314
  msgid "Disable translation"
4315
  msgstr ""
4316
 
4317
- #: settings.php:3600
4318
  msgid "Available positions for current theme"
4319
  msgstr ""
4320
 
4321
- #: settings.php:3601
4322
  msgid "Error checking pages"
4323
  msgstr ""
4324
 
4325
- #: settings.php:3604
4326
  msgid "Toggle theme checker for available positions for automatic insertion"
4327
  msgstr ""
4328
 
4329
- #: settings.php:3604
4330
  msgctxt "Button"
4331
  msgid "Check"
4332
  msgstr ""
4333
 
4334
- #: settings.php:3611
4335
  msgid "Position"
4336
  msgstr ""
4337
 
4338
- #: settings.php:3616
4339
  msgid "Archive pages"
4340
  msgstr ""
4341
 
4342
- #: settings.php:3675
4343
  msgid ""
4344
  "Position not available because output buffering (tab [*]) is not enabled"
4345
  msgstr ""
4346
 
4347
- #: settings.php:3678 strings.php:251
4348
  msgid "Position not checked yet"
4349
  msgstr ""
4350
 
4351
- #: settings.php:3714
4352
  msgid "Toggle active/all blocks"
4353
  msgstr ""
4354
 
4355
- #: settings.php:3719 strings.php:238
4356
  msgid "Rearrange block order"
4357
  msgstr ""
4358
 
4359
- #: settings.php:3725
4360
  msgid "Save new block order"
4361
  msgstr ""
4362
 
4363
- #: settings.php:3751
4364
  msgid "Toggle active/all ad units"
4365
  msgstr ""
4366
 
4367
- #: settings.php:3755
4368
  msgid "Reload AdSense ad units"
4369
  msgstr ""
4370
 
4371
- #: settings.php:3759
4372
  msgid "Clear authorization to access AdSense account"
4373
  msgstr ""
4374
 
4375
- #: settings.php:3763 settings.php:4656 settings.php:4723 strings.php:246
4376
  msgid "Google AdSense Homepage"
4377
  msgstr ""
4378
 
4379
- #: settings.php:3784
4380
  msgid "Switch to physical ads.txt file"
4381
  msgstr ""
4382
 
4383
- #: settings.php:3785
4384
  msgid "Switch to virtual ads.txt file"
4385
  msgstr ""
4386
 
4387
  #. translators: %s: ads.txt
4388
- #: settings.php:3805
4389
  msgid "Open %s"
4390
  msgstr ""
4391
 
4392
- #: settings.php:3813
4393
  msgid "Reload ads.txt file"
4394
  msgstr ""
4395
 
4396
- #: settings.php:3819 settings.php:4788
4397
  msgid "Save"
4398
  msgstr ""
4399
 
4400
  #. translators: %s: Ad Inserter
4401
- #: settings.php:3999
4402
  msgid "ads.txt file: %s virtual ads.txt file"
4403
  msgstr ""
4404
 
4405
- #: settings.php:4004 settings.php:4024 strings.php:225
4406
  msgid "Warning"
4407
  msgstr ""
4408
 
4409
  #. translators: %s: Ad Inserter
4410
- #: settings.php:4004
4411
  msgid "%s virtual file ads.txt not found"
4412
  msgstr ""
4413
 
4414
- #: settings.php:4012
4415
  msgid "IMPORTANT"
4416
  msgstr ""
4417
 
4418
- #: settings.php:4012
4419
  msgid "ads.txt file must be placed on the root domain"
4420
  msgstr ""
4421
 
4422
- #: settings.php:4017
4423
  msgid "ads.txt file"
4424
  msgstr ""
4425
 
4426
- #: settings.php:4017
4427
  msgid "NOT WRITABLE"
4428
  msgstr ""
4429
 
4430
- #: settings.php:4024
4431
  msgid "file %s not found"
4432
  msgstr ""
4433
 
4434
- #: settings.php:4034
4435
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4436
  msgstr ""
4437
 
4438
  #. translators: %s: Ad Inserter
4439
- #: settings.php:4040
4440
  msgid "%s virtual ads.txt file"
4441
  msgstr ""
4442
 
4443
- #: settings.php:4062
4444
  msgid "Advertising system"
4445
  msgstr ""
4446
 
4447
- #: settings.php:4063
4448
  msgid "Account ID"
4449
  msgstr ""
4450
 
4451
- #: settings.php:4065
4452
  msgid "Certification authority ID"
4453
  msgstr ""
4454
 
4455
- #: settings.php:4080
4456
  msgid "Account ID found in block and present in ads.txt"
4457
  msgstr ""
4458
 
4459
- #: settings.php:4084
4460
  msgid "Account ID found in block but not present in ads.txt"
4461
  msgstr ""
4462
 
4463
- #: settings.php:4433
4464
  msgid "Preview block"
4465
  msgstr ""
4466
 
4467
- #: settings.php:4440
4468
  msgid "Pause block"
4469
  msgstr ""
4470
 
4471
- #: settings.php:4479
4472
  msgid "Automatic insertion"
4473
  msgstr ""
4474
 
4475
  #. translators: %s HTML tags
4476
- #: settings.php:4480 settings.php:5825
4477
  msgid "PHP code processing"
4478
  msgstr ""
4479
 
4480
- #: settings.php:4482
4481
  msgid "Device detection"
4482
  msgstr ""
4483
 
4484
- #: settings.php:4505
4485
  msgid "No active block"
4486
  msgstr ""
4487
 
4488
- #: settings.php:4506
4489
  msgid "No block matches search keywords"
4490
  msgstr ""
4491
 
4492
- #: settings.php:4566
4493
  msgid "Ad unit"
4494
  msgstr ""
4495
 
4496
- #: settings.php:4568
4497
  msgid "Slot ID"
4498
  msgstr ""
4499
 
4500
- #: settings.php:4595
4501
  msgid "Copy AdSense code"
4502
  msgstr ""
4503
 
4504
- #: settings.php:4598
4505
  msgid "Preview AdSense ad"
4506
  msgstr ""
4507
 
4508
- #: settings.php:4601
4509
  msgid "Get AdSense code"
4510
  msgstr ""
4511
 
4512
  #. translators: %s: HTML tags
4513
- #: settings.php:4633
4514
  msgid ""
4515
  "Please %s clear authorization %s with the button %s above and once again "
4516
  "authorize access to your AdSense account."
4517
  msgstr ""
4518
 
4519
- #: settings.php:4652
4520
  msgid "AdSense Integration"
4521
  msgstr ""
4522
 
4523
- #: settings.php:4654
4524
  msgid "AdSense Integration - Step 2"
4525
  msgstr ""
4526
 
4527
  #. translators: %s: HTML tags
4528
- #: settings.php:4660
4529
  msgid ""
4530
  "Authorize %s to access your AdSense account. Click on the %s Get "
4531
  "Authorization Code %s button to open a new window where you can allow "
@@ -4534,7 +4598,7 @@ msgid ""
4534
  msgstr ""
4535
 
4536
  #. translators: %s: HTML tags
4537
- #: settings.php:4667
4538
  msgid ""
4539
  "If you get error, can't access ad units or would like to use own Google API "
4540
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4542,7 +4606,7 @@ msgid ""
4542
  msgstr ""
4543
 
4544
  #. translators: %s: HTML tags
4545
- #: settings.php:4669
4546
  msgid ""
4547
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4548
  "Authorization Code %s button to open a new window where you can allow "
@@ -4551,38 +4615,38 @@ msgid ""
4551
  msgstr ""
4552
 
4553
  #. translators: %s: HTML tags
4554
- #: settings.php:4676
4555
  msgid ""
4556
  "If you get error %s invalid client %s click on the button %s Clear and "
4557
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4558
  msgstr ""
4559
 
4560
- #: settings.php:4687
4561
  msgid "Get Authorization Code"
4562
  msgstr ""
4563
 
4564
- #: settings.php:4690
4565
  msgid "Enter Authorization Code"
4566
  msgstr ""
4567
 
4568
- #: settings.php:4700
4569
  msgid "Use own API IDs"
4570
  msgstr ""
4571
 
4572
- #: settings.php:4702
4573
  msgid "Clear and return to Step 1"
4574
  msgstr ""
4575
 
4576
- #: settings.php:4706
4577
  msgid "Authorize"
4578
  msgstr ""
4579
 
4580
- #: settings.php:4722
4581
  msgid "AdSense Integration - Step 1"
4582
  msgstr ""
4583
 
4584
  #. translators: %s: Ad Inserter
4585
- #: settings.php:4726
4586
  msgid ""
4587
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4588
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4591,226 +4655,232 @@ msgid ""
4591
  msgstr ""
4592
 
4593
  #. translators: %s: HTML tags
4594
- #: settings.php:4735
4595
  msgid "Go to %s Google APIs and Services console %s"
4596
  msgstr ""
4597
 
4598
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4599
- #: settings.php:4736
4600
  msgid ""
4601
  "Create %1$s project - if the project and IDs are already created click on "
4602
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
4603
  msgstr ""
4604
 
4605
  #. translators: %s: HTML tags
4606
- #: settings.php:4737
4607
  msgid ""
4608
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4609
  "create a new project"
4610
  msgstr ""
4611
 
4612
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4613
- #: settings.php:4738
4614
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4615
  msgstr ""
4616
 
4617
  #. translators: %s: HTML tags
4618
- #: settings.php:4739
4619
  msgid ""
4620
  "Click on project selection, wait for the project to be created and then and "
4621
  "select %s as the current project"
4622
  msgstr ""
4623
 
4624
  #. translators: %s: HTML tags
4625
- #: settings.php:4740
4626
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4627
  msgstr ""
4628
 
4629
  #. translators: %s: HTML tags
4630
- #: settings.php:4741
4631
  msgid "Search for adsense and enable %s"
4632
  msgstr ""
4633
 
4634
  #. translators: %s: HTML tags
4635
- #: settings.php:4742
4636
  msgid "Click on %s CREATE CREDENTIALS %s"
4637
  msgstr ""
4638
 
4639
  #. translators: %s: HTML tags
4640
- #: settings.php:4743
4641
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
4642
  msgstr ""
4643
 
4644
  #. translators: %s: HTML tags
4645
- #: settings.php:4744
4646
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4647
  msgstr ""
4648
 
4649
  #. translators: %s: HTML tags
4650
- #: settings.php:4745
4651
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4652
  msgstr ""
4653
 
4654
  #. translators: %s: HTML tags
4655
- #: settings.php:4746
4656
  msgid "Click on %s What credentials do I need? %s"
4657
  msgstr ""
4658
 
4659
  #. translators: %s: HTML tags
4660
- #: settings.php:4747
4661
  msgid ""
4662
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
4663
  "Consent Screen %s"
4664
  msgstr ""
4665
 
4666
  #. translators: %s: HTML tags
4667
- #: settings.php:4748
4668
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
4669
  msgstr ""
4670
 
4671
  #. translators: %s: HTML tags
4672
- #: settings.php:4749
4673
  msgid ""
4674
  "For %s App name %s enter %s and for %s User support email %s select your "
4675
  "Google account email address"
4676
  msgstr ""
4677
 
4678
  #. translators: %s: HTML tags
4679
- #: settings.php:4750
4680
  msgid ""
4681
  "For %s Developer contact information %s enter your email address and click "
4682
  "on %s SAVE AND CONTINUE %s"
4683
  msgstr ""
4684
 
4685
  #. translators: %s: HTML tags
4686
- #: settings.php:4751
4687
  msgid ""
4688
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
4689
  "add your Google account email address"
4690
  msgstr ""
4691
 
4692
  #. translators: %s: HTML tags
4693
- #: settings.php:4752
4694
  msgid ""
4695
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
4696
  msgstr ""
4697
 
4698
  #. translators: %s: HTML tags
4699
- #: settings.php:4753
4700
  msgid ""
4701
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4702
  "Ad Inserter client %s and then click on %s REFRESH %s"
4703
  msgstr ""
4704
 
4705
  #. translators: %s: HTML tags
4706
- #: settings.php:4754
4707
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
4708
  msgstr ""
4709
 
4710
  #. translators: %s: HTML tags
4711
- #: settings.php:4755
4712
  msgid ""
4713
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4714
  "secret %s"
4715
  msgstr ""
4716
 
4717
- #: settings.php:4756
4718
  msgid "Copy them to the appropriate fields below"
4719
  msgstr ""
4720
 
4721
- #: settings.php:4762
4722
  msgid "Client ID"
4723
  msgstr ""
4724
 
4725
- #: settings.php:4765
4726
  msgid "Enter Client ID"
4727
  msgstr ""
4728
 
4729
- #: settings.php:4770
4730
  msgid "Client secret"
4731
  msgstr ""
4732
 
4733
- #: settings.php:4773
4734
  msgid "Enter Client secret"
4735
  msgstr ""
4736
 
4737
- #: settings.php:4783
4738
  msgid "Use default API IDs"
4739
  msgstr ""
4740
 
4741
- #: settings.php:4884
4742
  msgid "All posts"
4743
  msgstr ""
4744
 
4745
- #: settings.php:4885
4746
  msgid "All static pages"
4747
  msgstr ""
4748
 
4749
- #: settings.php:5452 settings.php:5465 settings.php:5479 settings.php:5493
4750
- #: settings.php:5507
 
 
 
 
 
 
 
 
4751
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4752
  msgstr ""
4753
 
4754
- #: settings.php:5457 settings.php:5470 settings.php:5484 settings.php:5498
4755
- #: settings.php:5512 settings.php:5707 settings.php:5710 settings.php:5712
4756
- #: settings.php:5721 settings.php:5730 settings.php:5735 settings.php:5743
4757
- #: settings.php:5744 settings.php:5747 settings.php:5750 settings.php:5754
4758
- #: settings.php:5764 settings.php:5768
4759
  msgid "Looking for AdSense alternative?"
4760
  msgstr ""
4761
 
4762
- #: settings.php:5524
4763
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4764
  msgstr ""
4765
 
4766
- #: settings.php:5529 settings.php:5704 settings.php:5725 settings.php:5753
4767
- #: settings.php:5772
4768
  msgid "Use Infolinks ads with Adsense to earn more"
4769
  msgstr ""
4770
 
4771
- #: settings.php:5550 settings.php:5600
4772
  msgid "Support plugin development"
4773
  msgstr ""
4774
 
4775
- #: settings.php:5555 settings.php:5601
4776
  msgid ""
4777
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4778
  "reviewing the plugin on WordPres"
4779
  msgstr ""
4780
 
4781
- #: settings.php:5555
4782
  msgctxt "Review Ad Inserter"
4783
  msgid "Review"
4784
  msgstr ""
4785
 
4786
- #: settings.php:5560
4787
  msgid ""
4788
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4789
  "rating the plugin on WordPres"
4790
  msgstr ""
4791
 
4792
- #: settings.php:5560
4793
  msgctxt "Rate Ad Inserter"
4794
  msgid "Rate"
4795
  msgstr ""
4796
 
4797
- #: settings.php:5565
4798
  msgid ""
4799
  "Support free Ad Inserter development. If you are making money with Ad "
4800
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4801
  "you!"
4802
  msgstr ""
4803
 
4804
- #: settings.php:5565
4805
  msgid "Donate"
4806
  msgstr ""
4807
 
4808
- #: settings.php:5572 settings.php:5616
4809
  msgid "Average rating of the plugin - Thank you!"
4810
  msgstr ""
4811
 
4812
  #. translators: %s: Ad Inserter, HTML tags
4813
- #: settings.php:5583
4814
  msgid ""
4815
  "You've been using %s for a while now, and I hope you're happy with it. "
4816
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4819,384 +4889,384 @@ msgid ""
4819
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4820
  msgstr ""
4821
 
4822
- #: settings.php:5601
4823
  msgid "Review"
4824
  msgstr ""
4825
 
4826
- #: settings.php:5605
4827
  msgid "Ad Inserter on Twitter"
4828
  msgstr ""
4829
 
4830
- #: settings.php:5606
4831
  msgid "Ad Inserter on Facebook"
4832
  msgstr ""
4833
 
4834
- #: settings.php:5609
4835
  msgid "Follow Ad Inserter"
4836
  msgstr ""
4837
 
4838
  #. translators: %s: HTML tags
4839
- #: settings.php:5636
4840
  msgid ""
4841
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4842
  "and %s Common Settings %s pages"
4843
  msgstr ""
4844
 
4845
  #. translators: %s: HTML tags
4846
- #: settings.php:5648
4847
  msgid ""
4848
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4849
  "Auto ads, %s %s AMP ads %s"
4850
  msgstr ""
4851
 
4852
  #. translators: %s: HTML tags
4853
- #: settings.php:5665
4854
  msgid ""
4855
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4856
  "purchase you refer to us"
4857
  msgstr ""
4858
 
4859
  #. translators: %s: HTML tags
4860
- #: settings.php:5672
4861
  msgid ""
4862
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4863
  "diagnose and fix the problem."
4864
  msgstr ""
4865
 
4866
  #. translators: %s: HTML tags
4867
- #: settings.php:5676
4868
  msgid ""
4869
  "If you need any kind of help or support, please do not hesitate to open a "
4870
  "thread on the %s support forum. %s"
4871
  msgstr ""
4872
 
4873
- #: settings.php:5703 settings.php:5773 settings.php:5777
4874
  msgid "Code preview with visual CSS editor"
4875
  msgstr ""
4876
 
4877
- #: settings.php:5706 settings.php:5734
4878
  msgid "Ad blocking detection and content protection"
4879
  msgstr ""
4880
 
4881
- #: settings.php:5709 settings.php:5762
4882
  msgid "A/B testing - Track ad impressions and clicks"
4883
  msgstr ""
4884
 
4885
- #: settings.php:5726
4886
  msgid "Insert ads on AMP pages"
4887
  msgstr ""
4888
 
4889
- #: settings.php:5785
4890
  msgid "Looking for Pro Ad Management plugin?"
4891
  msgstr ""
4892
 
4893
- #: settings.php:5786
4894
  msgid "To Optimally Monetize your WordPress website?"
4895
  msgstr ""
4896
 
4897
  #. Translators: %s: price of Ad Inserter Pro
4898
- #: settings.php:5787
4899
  msgid "Different license types starting from %s"
4900
  msgstr ""
4901
 
4902
  #. translators: %s HTML tags
4903
- #: settings.php:5790
4904
  msgid "%s AdSense Integration %s"
4905
  msgstr ""
4906
 
4907
  #. translators: %s HTML tags
4908
- #: settings.php:5791
4909
  msgid "Syntax highlighting %s editor %s"
4910
  msgstr ""
4911
 
4912
  #. translators: %s HTML tags
4913
- #: settings.php:5792
4914
  msgid "%s Code preview %s with visual CSS editor"
4915
  msgstr ""
4916
 
4917
  #. translators: %s HTML tags
4918
- #: settings.php:5793
4919
  msgid "Simple user interface - all settings on a single page"
4920
  msgstr ""
4921
 
4922
  #. translators: %s HTML tags
4923
- #: settings.php:5794
4924
  msgid ""
4925
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4926
  "image / excerpt"
4927
  msgstr ""
4928
 
4929
  #. translators: %s HTML tags
4930
- #: settings.php:5795
4931
  msgid "%s Automatic insertion %s between posts on blog pages"
4932
  msgstr ""
4933
 
4934
  #. translators: %s HTML tags
4935
- #: settings.php:5796
4936
  msgid "%s Automatic insertion %s before, between and after comments"
4937
  msgstr ""
4938
 
4939
  #. translators: %s HTML tags
4940
- #: settings.php:5797
4941
  msgid "%s Automatic insertion %s after %s or before %s tag"
4942
  msgstr ""
4943
 
4944
  #. translators: %s HTML tags
4945
- #: settings.php:5798
4946
  msgid "Automatic insertion at %s custom hook positions %s"
4947
  msgstr ""
4948
 
4949
  #. translators: %s HTML tags
4950
- #: settings.php:5799
4951
  msgid ""
4952
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4953
  "selectors)"
4954
  msgstr ""
4955
 
4956
  #. translators: %s HTML tags
4957
- #: settings.php:5800
4958
  msgid "%s Insertion exceptions %s for individual posts and pages"
4959
  msgstr ""
4960
 
4961
  #. translators: %s HTML tags
4962
- #: settings.php:5801
4963
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4964
  msgstr ""
4965
 
4966
  #. translators: %s HTML tags
4967
- #: settings.php:5802
4968
  msgid ""
4969
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4970
  "scrolls)"
4971
  msgstr ""
4972
 
4973
  #. translators: %s HTML tags
4974
- #: settings.php:5803
4975
  msgid "%s Background ads %s with one or left and right background images"
4976
  msgstr ""
4977
 
4978
  #. translators: %s HTML tags
4979
- #: settings.php:5804
4980
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4981
  msgstr ""
4982
 
4983
  #. translators: %s HTML tags
4984
- #: settings.php:5805
4985
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4986
  msgstr ""
4987
 
4988
  #. translators: %s HTML tags
4989
- #: settings.php:5806
4990
  msgid ""
4991
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4992
  "visible)"
4993
  msgstr ""
4994
 
4995
  #. translators: %s HTML tags
4996
- #: settings.php:5807
4997
  msgid ""
4998
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4999
  msgstr ""
5000
 
5001
  #. translators: %s HTML tags
5002
- #: settings.php:5808
5003
  msgid "Block %s alignment and style %s customizations"
5004
  msgstr ""
5005
 
5006
  #. translators: %s HTML tags
5007
- #: settings.php:5809
5008
  msgid ""
5009
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5010
  "TOS)"
5011
  msgstr ""
5012
 
5013
  #. translators: %s HTML tags
5014
- #: settings.php:5810
5015
  msgid ""
5016
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5017
  "feeds"
5018
  msgstr ""
5019
 
5020
  #. translators: %s HTML tags
5021
- #: settings.php:5811
5022
  msgid "%s Ad rotation %s (works also with caching)"
5023
  msgstr ""
5024
 
5025
  #. translators: %s HTML tags
5026
- #: settings.php:5812
5027
  msgid "Ad rotation %s optimization based on CTR %s"
5028
  msgstr ""
5029
 
5030
  #. translators: %s HTML tags
5031
- #: settings.php:5813
5032
  msgid "Create, edit and check %s ads.txt %s file"
5033
  msgstr ""
5034
 
5035
  #. translators: %s HTML tags
5036
- #: settings.php:5814
5037
  msgid ""
5038
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5039
  "AdSense)"
5040
  msgstr ""
5041
 
5042
  #. translators: %s HTML tags
5043
- #: settings.php:5815
5044
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5045
  msgstr ""
5046
 
5047
  #. translators: %s HTML tags
5048
- #: settings.php:5816
5049
  msgid "%s Public web reports %s for clients, export to PDF"
5050
  msgstr ""
5051
 
5052
  #. translators: %s HTML tags
5053
- #: settings.php:5817
5054
  msgid "Support for %s A/B testing %s"
5055
  msgstr ""
5056
 
5057
  #. translators: %s HTML tags
5058
- #: settings.php:5818
5059
  msgid "Frequency capping - %s limit impressions or clicks %s"
5060
  msgstr ""
5061
 
5062
  #. translators: %s HTML tags
5063
- #: settings.php:5819
5064
  msgid "Click fraud %s protection %s"
5065
  msgstr ""
5066
 
5067
  #. translators: %s HTML tags
5068
- #: settings.php:5820
5069
  msgid "Support for %s GDPR consent cookie checks %s"
5070
  msgstr ""
5071
 
5072
  #. translators: %s HTML tags
5073
- #: settings.php:5821
5074
  msgid "Support for %s lazy loading %s"
5075
  msgstr ""
5076
 
5077
  #. translators: %s HTML tags
5078
- #: settings.php:5822
5079
  msgid "Support for ads on %s AMP pages %s"
5080
  msgstr ""
5081
 
5082
  #. translators: %s HTML tags
5083
- #: settings.php:5823
5084
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5085
  msgstr ""
5086
 
5087
  #. translators: %s HTML tags
5088
- #: settings.php:5824
5089
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5090
  msgstr ""
5091
 
5092
  #. translators: %s HTML tags
5093
- #: settings.php:5826
5094
  msgid "%s Banner %s code generator"
5095
  msgstr ""
5096
 
5097
  #. translators: %s HTML tags
5098
- #: settings.php:5827
5099
  msgid "Support for %s header and footer %s code"
5100
  msgstr ""
5101
 
5102
  #. translators: %s HTML tags
5103
- #: settings.php:5828
5104
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5105
  msgstr ""
5106
 
5107
  #. translators: %s HTML tags
5108
- #: settings.php:5829
5109
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5110
  msgstr ""
5111
 
5112
  #. translators: %s HTML tags
5113
- #: settings.php:5830
5114
  msgid "Client-side %s mobile device detection %s (works with caching)"
5115
  msgstr ""
5116
 
5117
  #. translators: %s HTML tags
5118
- #: settings.php:5831
5119
  msgid ""
5120
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5121
  "protection"
5122
  msgstr ""
5123
 
5124
  #. translators: %s HTML tags
5125
- #: settings.php:5832
5126
  msgid "%s Ad blocking statistics %s"
5127
  msgstr ""
5128
 
5129
  #. translators: %s HTML tags
5130
- #: settings.php:5833
5131
  msgid ""
5132
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5133
  "referrers, operating systems, browsers"
5134
  msgstr ""
5135
 
5136
  #. translators: %s HTML tags
5137
- #: settings.php:5834
5138
  msgid ""
5139
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5140
  msgstr ""
5141
 
5142
  #. translators: %s HTML tags
5143
- #: settings.php:5835
5144
  msgid "%s Multisite options %s to limit settings on the sites"
5145
  msgstr ""
5146
 
5147
  #. translators: %s HTML tags
5148
- #: settings.php:5836
5149
  msgid "%s Import/Export %s block or plugin settings"
5150
  msgstr ""
5151
 
5152
  #. translators: %s HTML tags
5153
- #: settings.php:5837
5154
  msgid "%s Insertion scheduling %s with fallback option"
5155
  msgstr ""
5156
 
5157
  #. translators: %s HTML tags
5158
- #: settings.php:5838
5159
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5160
  msgstr ""
5161
 
5162
  #. translators: %s HTML tags
5163
- #: settings.php:5839
5164
  msgid "Simple troubleshooting with many %s debugging functions %s"
5165
  msgstr ""
5166
 
5167
  #. translators: %s HTML tags
5168
- #: settings.php:5840
5169
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5170
  msgstr ""
5171
 
5172
  #. translators: %s HTML tags
5173
- #: settings.php:5841
5174
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5175
  msgstr ""
5176
 
5177
  #. translators: %s HTML tags
5178
- #: settings.php:5842
5179
  msgid ""
5180
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5181
  msgstr ""
5182
 
5183
  #. translators: %s HTML tags
5184
- #: settings.php:5843
5185
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5186
  msgstr ""
5187
 
5188
  #. translators: %s HTML tags
5189
- #: settings.php:5844
5190
  msgid "No ads on the settings page"
5191
  msgstr ""
5192
 
5193
  #. translators: %s HTML tags
5194
- #: settings.php:5845
5195
  msgid "Premium support"
5196
  msgstr ""
5197
 
5198
  #. translators: %s HTML tags
5199
- #: settings.php:5848
5200
  msgid ""
5201
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5202
  "website with many advertising features to automatically insert adverts on "
@@ -5211,82 +5281,82 @@ msgid ""
5211
  msgstr ""
5212
 
5213
  #. translators: %s HTML tags
5214
- #: settings.php:5861
5215
  msgid "Looking for %s Pro Ad Management plugin? %s"
5216
  msgstr ""
5217
 
5218
  #. translators: %s HTML tags
5219
- #: settings.php:5866
5220
  msgid "Ads between posts"
5221
  msgstr ""
5222
 
5223
  #. translators: %s HTML tags
5224
- #: settings.php:5867
5225
  msgid "Ads between comments"
5226
  msgstr ""
5227
 
5228
  #. translators: %s HTML tags
5229
- #: settings.php:5868
5230
  msgid "Support via email"
5231
  msgstr ""
5232
 
5233
  #. translators: %s HTML tags
5234
- #: settings.php:5874
5235
  msgid "%s Sticky positions %s"
5236
  msgstr ""
5237
 
5238
  #. translators: %s HTML tags
5239
- #: settings.php:5875
5240
  msgid "%s Limit insertions %s"
5241
  msgstr ""
5242
 
5243
  #. translators: %s HTML tags
5244
- #: settings.php:5876
5245
  msgid "%s Clearance %s options"
5246
  msgstr ""
5247
 
5248
  #. translators: %s HTML tags
5249
- #: settings.php:5882
5250
  msgid "Ad rotation"
5251
  msgstr ""
5252
 
5253
  #. translators: %s HTML tags
5254
- #: settings.php:5883
5255
  msgid "%s A/B testing %s"
5256
  msgstr ""
5257
 
5258
  #. translators: %s HTML tags
5259
- #: settings.php:5884
5260
  msgid "%s Ad tracking %s"
5261
  msgstr ""
5262
 
5263
  #. translators: %s HTML tags
5264
- #: settings.php:5890
5265
  msgid "Support for %s AMP pages %s"
5266
  msgstr ""
5267
 
5268
  #. translators: %s HTML tags
5269
- #: settings.php:5891
5270
  msgid "%s Ad blocking detection %s"
5271
  msgstr ""
5272
 
5273
  #. translators: %s HTML tags
5274
- #: settings.php:5892
5275
  msgid "%s Mobile device detection %s"
5276
  msgstr ""
5277
 
5278
  #. translators: %s HTML tags
5279
- #: settings.php:5899
5280
  msgid "64 code blocks"
5281
  msgstr ""
5282
 
5283
  #. translators: %s HTML tags
5284
- #: settings.php:5900
5285
  msgid "%s GEO targeting %s"
5286
  msgstr ""
5287
 
5288
  #. translators: %s HTML tags
5289
- #: settings.php:5901
5290
  msgid "%s Scheduling %s"
5291
  msgstr ""
5292
 
1
+ # Copyright (C) 2022 Ad Inserter
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.9\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2022-01-17 17:22:54+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: ad-inserter.php:308
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:324
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:331
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:417
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:424
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:433
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:440
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:451
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
+ #: ad-inserter.php:458
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
+ #: ad-inserter.php:1127
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
+ #: ad-inserter.php:1132
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:1137 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:1142 strings.php:105
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
+ #: ad-inserter.php:1147 strings.php:106
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
+ #: ad-inserter.php:1152 strings.php:170
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
+ #: ad-inserter.php:1199
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
+ #: ad-inserter.php:1203
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
+ #: ad-inserter.php:1501
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
+ #: ad-inserter.php:1875 ad-inserter.php:3339
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
+ #: ad-inserter.php:2628
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
+ #: ad-inserter.php:2628
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
+ #: ad-inserter.php:2629
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
+ #: ad-inserter.php:2630
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
+ #: ad-inserter.php:2631
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
+ #: ad-inserter.php:2632
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
+ #: ad-inserter.php:2633
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
+ #: ad-inserter.php:3027
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:3030
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
+ #: ad-inserter.php:3034
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
+ #: ad-inserter.php:3039
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
+ #: ad-inserter.php:3042
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
+ #: ad-inserter.php:3055
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:3057
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:3063
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:3080 ad-inserter.php:3122
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:3087
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
+ #. translators: 1: Ad Inserter, 2, 3: HTML tags
193
+ #: ad-inserter.php:3094
194
+ msgid "Error: plugin settings corrupt"
195
+ msgstr ""
196
+
197
+ #: ad-inserter.php:3104
198
  msgctxt "Menu item"
199
  msgid "Settings"
200
  msgstr ""
201
 
202
+ #: ad-inserter.php:3136
203
  msgid ""
204
  "Load settings page in safe mode to avoid collisions with other plugins or "
205
  "theme"
206
  msgstr ""
207
 
208
+ #: ad-inserter.php:3136
209
  msgid "Safe mode"
210
  msgstr ""
211
 
212
  #. translators: %s: Ad Inserter
213
+ #: ad-inserter.php:3231
214
  msgctxt "Meta box name"
215
  msgid "%s Individual Exceptions"
216
  msgstr ""
217
 
218
+ #: ad-inserter.php:3260 ad-inserter.php:11685 class.php:2557
219
+ #: includes/preview.php:2369 includes/preview.php:2414
220
+ #: includes/preview.php:2451 settings.php:4494 strings.php:3
221
  msgid "Block"
222
  msgstr ""
223
 
224
+ #: ad-inserter.php:3261 includes/functions.php:4688 settings.php:4495
225
+ #: settings.php:4585
226
  msgid "Name"
227
  msgstr ""
228
 
229
+ #: ad-inserter.php:3264 settings.php:1254
230
  msgid "Default insertion"
231
  msgstr ""
232
 
233
  #. translators: For this post or page
234
+ #: ad-inserter.php:3267
235
  msgctxt "Page"
236
  msgid "For this"
237
  msgstr ""
238
 
239
+ #: ad-inserter.php:3268
240
  msgctxt "Post"
241
  msgid "For this"
242
  msgstr ""
243
 
244
+ #: ad-inserter.php:3280
245
  msgctxt "Enabled/disabled on all"
246
  msgid "pages"
247
  msgstr ""
248
 
249
+ #: ad-inserter.php:3283
250
  msgctxt "Enabled/disabled on all"
251
  msgid "posts"
252
  msgstr ""
253
 
254
+ #: ad-inserter.php:3300 ad-inserter.php:3312 strings.php:176
255
  msgid "Enabled"
256
  msgstr ""
257
 
258
  #. translators: Menu items
259
+ #: ad-inserter.php:3300 ad-inserter.php:3312
260
+ #: includes/functions-check-now.php:2402 includes/functions.php:3012
261
+ #: includes/functions.php:3375 strings.php:16
262
  msgid "Disabled"
263
  msgstr ""
264
 
265
+ #: ad-inserter.php:3302
266
  msgid "No individual exceptions"
267
  msgstr ""
268
 
269
  #. translators: Not enabled for pages or posts
270
+ #: ad-inserter.php:3304
271
  msgid "Not enabled for"
272
  msgstr ""
273
 
274
  #. translators: No individual exceptions enabled for pages or posts
275
+ #: ad-inserter.php:3332
276
  msgid "No block has individual exceptions enabled"
277
  msgstr ""
278
 
279
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
280
+ #: ad-inserter.php:3337
281
  msgid ""
282
  "Default insertion can be configured for each block on %1$s page - button "
283
  "next to %2$s checkbox."
284
  msgstr ""
285
 
286
+ #: ad-inserter.php:3340 settings.php:1232
287
  msgid "Tag / Archive pages"
288
  msgstr ""
289
 
290
+ #: ad-inserter.php:3342
291
  msgid ""
292
  "When individual exceptions for a block are enabled, a checkbox will be "
293
  "listed here to change default insertion for this post or page."
294
  msgstr ""
295
 
296
+ #: ad-inserter.php:3343
297
  msgid ""
298
  "This way you can individually enable or disable blocks on specific posts or "
299
  "pages."
300
  msgstr ""
301
 
302
+ #: ad-inserter.php:3345
303
  msgid "For more information check page %s"
304
  msgstr ""
305
 
306
  #. translators: Ad Inserter Exceptions documentation page
307
+ #: ad-inserter.php:3347
308
  msgid "Individual Exceptions"
309
  msgstr ""
310
 
311
+ #: ad-inserter.php:3393
312
  msgid "STATIC PAGE"
313
  msgstr ""
314
 
315
+ #: ad-inserter.php:3396
316
  msgid "POST"
317
  msgstr ""
318
 
319
+ #: ad-inserter.php:3399
320
  msgid "HOMEPAGE"
321
  msgstr ""
322
 
323
+ #: ad-inserter.php:3402
324
  msgid "CATEGORY PAGE"
325
  msgstr ""
326
 
327
+ #: ad-inserter.php:3405
328
  msgid "SEARCH PAGE"
329
  msgstr ""
330
 
331
+ #: ad-inserter.php:3408
332
  msgid "ARCHIVE PAGE"
333
  msgstr ""
334
 
335
+ #: ad-inserter.php:3411
336
  msgid "ERROR 404 PAGE"
337
  msgstr ""
338
 
339
+ #: ad-inserter.php:3414
340
  msgid "AJAX CALL"
341
  msgstr ""
342
 
343
+ #: ad-inserter.php:3417
344
  msgid "UNKNOWN PAGE TYPE"
345
  msgstr ""
346
 
347
+ #: ad-inserter.php:3434
348
  msgid "Click to delete ad blocking detection cokies"
349
  msgstr ""
350
 
351
+ #: ad-inserter.php:3435
352
  msgid "AD BLOCKING STATUS UNKNOWN"
353
  msgstr ""
354
 
355
  #. translators: %s: AdSense Auto Ads
356
+ #: ad-inserter.php:3464
357
  msgid ""
358
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
359
  "positions"
360
  msgstr ""
361
 
362
+ #: ad-inserter.php:3610
363
  msgid "Code for insertion"
364
  msgstr ""
365
 
366
+ #: ad-inserter.php:3610
367
  msgid "character"
368
  msgid_plural "characters"
369
  msgstr[0] ""
370
  msgstr[1] ""
371
 
372
+ #: ad-inserter.php:3626
373
  msgid "Header code"
374
  msgstr ""
375
 
376
+ #: ad-inserter.php:3626
377
  msgctxt "Header code"
378
  msgid "DISABLED"
379
  msgstr ""
380
 
381
+ #: ad-inserter.php:3626 ad-inserter.php:3882
382
  msgid "character inserted"
383
  msgid_plural "characters inserted"
384
  msgstr[0] ""
385
  msgstr[1] ""
386
 
387
+ #: ad-inserter.php:3644
388
  msgid "Click to delete the cookie for the consents"
389
  msgstr ""
390
 
391
+ #: ad-inserter.php:3882
392
  msgid "Footer code"
393
  msgstr ""
394
 
395
+ #: ad-inserter.php:3882
396
  msgctxt "Footer code"
397
  msgid "DISABLED"
398
  msgstr ""
399
 
400
+ #: ad-inserter.php:3893
401
  msgid "JAVASCRIPT NOT WORKING"
402
  msgstr ""
403
 
404
+ #: ad-inserter.php:3893
405
  msgid "NO JAVASCRIPT ERRORS"
406
  msgstr ""
407
 
408
+ #: ad-inserter.php:3893
409
  msgid "JAVASCRIPT ERRORS"
410
  msgstr ""
411
 
412
  #. translators: block name (block with default settings)
413
+ #: ad-inserter.php:6739
414
  msgctxt "Block name"
415
  msgid "Default"
416
  msgstr ""
417
 
418
  #. translators: %s: Ad Inserter
419
+ #: ad-inserter.php:7188 ad-inserter.php:7503
420
  msgid "Invalid data received - %s settings not saved."
421
  msgstr ""
422
 
423
  #. translators: %s: Ad Inserter
424
+ #: ad-inserter.php:7473
425
  msgid "Error importing %s settings."
426
  msgstr ""
427
 
428
+ #: ad-inserter.php:7474
429
  msgid "Error importing settings for block"
430
  msgid_plural "Error importing settings for blocks:"
431
  msgstr[0] ""
432
  msgstr[1] ""
433
 
434
+ #: ad-inserter.php:7501
435
  msgid "Settings saved."
436
  msgstr ""
437
 
438
+ #: ad-inserter.php:7523
439
  msgid "Settings cleared."
440
  msgstr ""
441
 
442
  #. Translators: Post/Static page must have between X and Y words
443
+ #: ad-inserter.php:7899 ad-inserter.php:7901 ad-inserter.php:7924
444
+ #: settings.php:2284
445
  msgid "word"
446
  msgid_plural "words"
447
  msgstr[0] ""
448
  msgstr[1] ""
449
 
450
+ #: ad-inserter.php:7938 ad-inserter.php:8065
451
  msgid "HTML TAGS REMOVED"
452
  msgstr ""
453
 
454
+ #: ad-inserter.php:8144
455
  msgid "BEFORE COMMENTS"
456
  msgstr ""
457
 
458
+ #: ad-inserter.php:8269
459
  msgid "AFTER COMMENTS"
460
  msgstr ""
461
 
462
+ #: ad-inserter.php:8346
463
  msgid "BETWEEN COMMENTS"
464
  msgstr ""
465
 
466
+ #: ad-inserter.php:10962 ad-inserter.php:11051
467
  msgctxt "category name"
468
  msgid "Uncategorized"
469
  msgstr ""
470
 
471
+ #: ad-inserter.php:11282
472
  msgid "requires WordPress 4.6 or newer"
473
  msgstr ""
474
 
475
+ #: ad-inserter.php:11282
476
  msgid "Please update!"
477
  msgstr ""
478
 
479
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
480
  #. name with HTML tags will be added)
481
+ #: ad-inserter.php:11553
482
  msgid "Thank you for installing"
483
  msgstr ""
484
 
485
  #. translators: Opt-in message: %s: HTML tags
486
+ #: ad-inserter.php:11555
487
  msgid ""
488
  "We would like to %s track its usage %s on your site. This is completely "
489
  "optional and can be disabled at any time."
490
  msgstr ""
491
 
492
+ #: ad-inserter.php:11557
493
  msgid ""
494
  "We don't record any sensitive data, only information regarding the WordPress "
495
  "environment and plugin usage, which will help us to make improvements to the "
497
  msgstr ""
498
 
499
  #. translators: Deactivation message: %s: HTML tags
500
+ #: ad-inserter.php:11597
501
  msgid ""
502
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
503
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
505
  msgstr ""
506
 
507
  #. translators: %s: Ad Inserter
508
+ #: ad-inserter.php:11643
509
  msgid "%s block."
510
  msgstr ""
511
 
512
  #. translators: widget title
513
+ #: ad-inserter.php:11659 ad-inserter.php:11694
514
  msgid "Processing log"
515
  msgstr ""
516
 
517
  #. translators: widget title
518
+ #: ad-inserter.php:11661 ad-inserter.php:11695
519
  msgid "Dummy widget"
520
  msgstr ""
521
 
522
  #. translators: widget title
523
+ #: ad-inserter.php:11663 ad-inserter.php:11693
524
  msgid "Debugging tools"
525
  msgstr ""
526
 
527
  #. translators: block status (widget title)
528
+ #: ad-inserter.php:11670
529
  msgctxt "block"
530
  msgid "PAUSED"
531
  msgstr ""
532
 
533
+ #: ad-inserter.php:11671
534
  msgid "WIDGET DISABLED"
535
  msgstr ""
536
 
537
+ #: ad-inserter.php:11672
538
  msgid "Unknown block"
539
  msgstr ""
540
 
541
+ #: ad-inserter.php:11680 includes/functions-check-now.php:3262
542
+ #: includes/functions.php:5167 settings.php:1284
543
  msgid "Title"
544
  msgstr ""
545
 
546
+ #: ad-inserter.php:11702
547
  msgctxt "Widget"
548
  msgid "Sticky"
549
  msgstr ""
550
 
551
+ #: ad-inserter.php:11753
552
  msgid ""
553
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
554
  "Inserter you need to first deactivate Ad Inserter Pro."
555
  msgstr ""
556
 
557
+ #: ad-inserter.php:11754
558
  msgid ""
559
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
560
  "will clear all settings that are available only in the Pro version "
562
  msgstr ""
563
 
564
  #. translators: %s: Ad Inserter
565
+ #: class.php:621 class.php:630 class.php:633
566
  msgid "PHP error in %s block"
567
  msgstr ""
568
 
569
+ #: class.php:2507
570
  msgid "Counters"
571
  msgstr ""
572
 
573
+ #: class.php:2511
574
  msgid "Content"
575
  msgstr ""
576
 
577
+ #: class.php:2516
578
  msgid "Excerpt"
579
  msgstr ""
580
 
581
+ #: class.php:2521 strings.php:17
582
  msgid "Before post"
583
  msgstr ""
584
 
585
+ #: class.php:2526 strings.php:18
586
  msgid "After post"
587
  msgstr ""
588
 
589
+ #: class.php:2531 strings.php:25
590
  msgid "Between posts"
591
  msgstr ""
592
 
593
+ #: class.php:2536 settings.php:2018 settings.php:4512
594
  msgid "Widget"
595
  msgstr ""
596
 
597
+ #: class.php:2541 settings.php:4510
598
  msgid "PHP function call"
599
  msgstr ""
600
 
601
  #. Translators: %s: custom hook name
602
+ #: class.php:2551
603
  msgid "Custom hook %s call"
604
  msgstr ""
605
 
606
+ #: class.php:2587
607
  msgid "AJAX REQUEST"
608
  msgstr ""
609
 
610
+ #: class.php:2590
611
  msgid "Ajax request for block in iframe"
612
  msgstr ""
613
 
614
+ #: class.php:2624
615
  msgid "Ajax request url, click to open it in a new tab"
616
  msgstr ""
617
 
618
+ #: class.php:2627
619
  msgid "IN THE LOOP"
620
  msgstr ""
621
 
622
+ #: class.php:2627
623
  msgid "YES"
624
  msgstr ""
625
 
626
+ #: class.php:2627
627
  msgid "NO"
628
  msgstr ""
629
 
630
+ #: class.php:2662
631
  msgid "BLOCK"
632
  msgstr ""
633
 
634
+ #: class.php:2662
635
  msgctxt "block or widget"
636
  msgid "INSERTED BUT NOT VISIBLE"
637
  msgstr ""
638
 
639
+ #: class.php:2893
640
  msgctxt "viewports"
641
  msgid "ALL"
642
  msgstr ""
643
 
644
+ #: class.php:2929 class.php:2970 class.php:4678 strings.php:282
645
  msgctxt "Block"
646
  msgid "HIDDEN"
647
  msgstr ""
648
 
649
+ #: class.php:2977 class.php:4681 strings.php:281
650
  msgctxt "Block"
651
  msgid "VISIBLE"
652
  msgstr ""
653
 
654
+ #: class.php:3039
655
+ msgctxt "fallback"
656
+ msgid "INACTIVE"
657
+ msgstr ""
658
+
659
+ #: class.php:3040
660
+ msgctxt "fallback"
661
+ msgid "ACTIVE"
662
+ msgstr ""
663
+
664
+ #: class.php:3062
665
+ msgctxt "Block"
666
+ msgid "FALLBACK CODE"
667
+ msgstr ""
668
+
669
+ #: class.php:3756 class.php:3854
670
  msgid "ACTIVE GROUPS"
671
  msgstr ""
672
 
673
+ #: class.php:4352
674
  msgid "start='%s' end='%s' days='%s' type='%s'"
675
  msgstr ""
676
 
677
+ #: class.php:4360
678
  msgid "parameters='%s' type='%s'"
679
  msgstr ""
680
 
681
+ #: class.php:4362
682
  msgid "cookies='%s' type='%s'"
683
  msgstr ""
684
 
685
  #. translators: %s: list parameters and type
686
+ #: class.php:4364
687
  msgid "referers='%s' type='%s'"
688
  msgstr ""
689
 
690
  #. translators: %s: list parameters and type
691
+ #: class.php:4366
692
  msgid "clients='%s' type='%s'"
693
  msgstr ""
694
 
695
  #. translators: %s: list parameters and type
696
+ #: class.php:4561
697
  msgid "countries='%s' type='%s'"
698
  msgstr ""
699
 
700
  #. translators: %s: list parameters and type
701
+ #: class.php:4563
702
  msgid "ip addresses='%s' type='%s'"
703
  msgstr ""
704
 
705
+ #: class.php:4678 class.php:4681
706
  msgid "viewport='%s' type='%s'"
707
  msgstr ""
708
 
709
+ #: class.php:4804 strings.php:283
710
  msgctxt "alternative block"
711
  msgid "FALLBACK"
712
  msgstr ""
713
 
714
+ #: class.php:5386 strings.php:275
715
  msgid "BEFORE"
716
  msgstr ""
717
 
718
+ #: class.php:5394 strings.php:277
719
  msgid "PREPEND CONTENT"
720
  msgstr ""
721
 
722
+ #: class.php:5398 strings.php:278
723
  msgid "APPEND CONTENT"
724
  msgstr ""
725
 
726
+ #: class.php:5402 strings.php:279
727
  msgid "REPLACE CONTENT"
728
  msgstr ""
729
 
730
+ #: class.php:5406 strings.php:280
731
  msgid "REPLACE ELEMENT"
732
  msgstr ""
733
 
734
+ #: class.php:5417 strings.php:276
735
  msgid "AFTER"
736
  msgstr ""
737
 
738
+ #: class.php:5487 includes/preview.php:2414 includes/preview.php:2451
739
  msgid "Code"
740
  msgstr ""
741
 
742
+ #: class.php:5490
743
  msgid "for block"
744
  msgstr ""
745
 
746
+ #: class.php:9769
747
  msgid ""
748
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
749
  "extension for PHP."
750
  msgstr ""
751
 
752
  #: includes/editor.php:4 includes/placeholders.php:350
753
+ #: includes/preview.php:2355 strings.php:288
754
  msgid "Use"
755
  msgstr ""
756
 
757
+ #: includes/editor.php:5 includes/preview.php:2356
758
  msgid "Reset"
759
  msgstr ""
760
 
761
  #: includes/editor.php:6 includes/placeholders.php:352
762
+ #: includes/preview.php:2358 settings.php:3831 strings.php:229 strings.php:287
763
  msgid "Cancel"
764
  msgstr ""
765
 
768
  msgstr ""
769
 
770
  #: includes/editor.php:259 includes/preview-adb.php:301
771
+ #: includes/preview.php:2345
772
  msgid ""
773
  "This page was not loaded properly. Please check browser, plugins and ad "
774
  "blockers."
779
  msgstr ""
780
 
781
  #: includes/editor.php:261 includes/preview-adb.php:303
782
+ #: includes/preview.php:2347
783
  msgid "PAGE BLOCKED"
784
  msgstr ""
785
 
793
  msgstr ""
794
 
795
  #. translators: %s: Ad Inserter Pro
796
+ #: includes/functions-check-now.php:396 includes/functions.php:435
797
  msgid ""
798
  "Import %s settings when saving - if checked, the encoded settings below will "
799
  "be imported for all blocks and settings"
800
  msgstr ""
801
 
802
+ #: includes/functions-check-now.php:396
803
  msgid "Import Settings for"
804
  msgstr ""
805
 
806
+ #: includes/functions-check-now.php:400
807
  msgid "Saved settings for"
808
  msgstr ""
809
 
810
+ #: includes/functions-check-now.php:420 includes/functions.php:470
811
  msgid "License Key"
812
  msgstr ""
813
 
814
+ #: includes/functions-check-now.php:423 includes/functions.php:473
815
  msgid "License Key for"
816
  msgstr ""
817
 
818
+ #: includes/functions-check-now.php:425 includes/functions.php:475
819
  msgid "Open license page"
820
  msgstr ""
821
 
822
+ #: includes/functions-check-now.php:432 includes/functions.php:482
823
  msgid "Hide license key"
824
  msgstr ""
825
 
826
+ #: includes/functions-check-now.php:432 includes/functions.php:482
827
  msgid "Hide key"
828
  msgstr ""
829
 
830
+ #: includes/functions-check-now.php:447 includes/functions.php:499
831
  msgid "Main content element"
832
  msgstr ""
833
 
834
+ #: includes/functions-check-now.php:450 includes/functions.php:502
835
  msgid ""
836
  "Main content element (#id or .class) for 'Stick to the content' position. "
837
  "Leave empty unless position is not properly calculated."
838
  msgstr ""
839
 
840
+ #: includes/functions-check-now.php:451 includes/functions.php:503
841
+ #: settings.php:1441 settings.php:1481 settings.php:2972
842
  msgid "Open HTML element selector"
843
  msgstr ""
844
 
845
+ #: includes/functions-check-now.php:456 includes/functions.php:508
846
  msgid "Lazy loading offset"
847
  msgstr ""
848
 
849
+ #: includes/functions-check-now.php:459 includes/functions.php:511
850
  msgid "Offset of the block from the visible viewport when it should be loaded"
851
  msgstr ""
852
 
853
+ #: includes/functions-check-now.php:470 includes/functions.php:523
854
  msgid "Export / Import Block Settings"
855
  msgstr ""
856
 
857
+ #: includes/functions-check-now.php:485 includes/functions.php:540
858
  msgid "Track impressions and clicks for this block"
859
  msgstr ""
860
 
861
+ #: includes/functions-check-now.php:485 includes/functions.php:540
862
  msgid " - global tracking disabled"
863
  msgstr ""
864
 
865
+ #: includes/functions-check-now.php:492 includes/functions.php:548
866
+ #: includes/functions.php:4860
867
  msgid "Generate PDF report"
868
  msgstr ""
869
 
870
+ #: includes/functions-check-now.php:497 includes/functions.php:562
871
  msgid "Open public report"
872
  msgstr ""
873
 
874
+ #: includes/functions-check-now.php:511 includes/functions.php:576
875
  msgid "Toggle Ad Blocking Statistics"
876
  msgstr ""
877
 
878
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
879
+ #: includes/functions.php:584 includes/functions.php:4841
880
  msgid "Toggle Statistics"
881
  msgstr ""
882
 
883
+ #: includes/functions-check-now.php:528 includes/functions.php:593
884
  msgid "Pin list"
885
  msgstr ""
886
 
887
  #. translators: %s: Ad Inserter Pro
888
+ #: includes/functions-check-now.php:543 includes/functions.php:616
889
  msgid "%s license key is not set. Continue?"
890
  msgstr ""
891
 
892
  #. translators: %s: Ad Inserter Pro
893
+ #: includes/functions-check-now.php:547 includes/functions.php:620
894
  msgid "Invalid %s license key. Continue?"
895
  msgstr ""
896
 
897
  #. translators: %s: Ad Inserter Pro
898
+ #: includes/functions-check-now.php:551 includes/functions.php:624
899
  msgid "%s license overused. Continue?"
900
  msgstr ""
901
 
902
+ #: includes/functions-check-now.php:555 includes/functions.php:634
903
+ #: settings.php:1189 settings.php:2405
904
  msgid "Save Settings"
905
  msgstr ""
906
 
907
+ #: includes/functions-check-now.php:615 includes/functions.php:702
908
+ #: includes/preview.php:2546
909
  msgid "Horizontal position"
910
  msgstr ""
911
 
912
+ #: includes/functions-check-now.php:638 includes/functions.php:727
913
  msgid ""
914
  "Horizontal margin from the content or screen edge, empty means default value "
915
  "from CSS"
916
  msgstr ""
917
 
918
+ #: includes/functions-check-now.php:646 includes/functions.php:735
919
+ #: includes/preview.php:2606
920
  msgid "Vertical position"
921
  msgstr ""
922
 
923
+ #: includes/functions-check-now.php:661 includes/functions.php:750
924
  msgid ""
925
  "Vertical margin from the top or bottom screen edge, empty means default "
926
  "value from CSS"
927
  msgstr ""
928
 
929
+ #: includes/functions-check-now.php:686 includes/functions.php:781
930
+ #: includes/preview.php:2661
931
  msgid "Animation"
932
  msgstr ""
933
 
941
  "(#id or .class) becomes visible"
942
  msgstr ""
943
 
944
+ #: includes/functions-check-now.php:717 includes/functions.php:816
945
+ #: includes/functions.php:843
946
  msgid "Offset"
947
  msgstr ""
948
 
949
+ #: includes/functions-check-now.php:717 includes/functions.php:816
950
+ #: includes/functions.php:843
951
  msgid "Offset of trigger element"
952
  msgstr ""
953
 
954
+ #: includes/functions-check-now.php:721 includes/functions.php:820
955
+ #: includes/functions.php:847 settings.php:1496
956
  msgid "Delay"
957
  msgstr ""
958
 
959
+ #: includes/functions-check-now.php:721 includes/functions.php:820
960
  msgid "Delay animation after trigger condition"
961
  msgstr ""
962
 
969
  msgstr ""
970
 
971
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
972
+ #: includes/functions-check-now.php:2546 includes/functions.php:1000
973
+ #: includes/functions.php:3164 includes/functions.php:3180
974
  msgid "Tracking is globally disabled"
975
  msgstr ""
976
 
977
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
978
+ #: includes/functions-check-now.php:2550 includes/functions.php:1004
979
+ #: includes/functions.php:3168 includes/functions.php:3184
980
  msgid "Tracking for this block is disabled"
981
  msgstr ""
982
 
983
+ #: includes/functions-check-now.php:780 includes/functions.php:1011
984
  msgid "Double click to toggle controls in public reports"
985
  msgstr ""
986
 
987
+ #: includes/functions-check-now.php:786 includes/functions.php:1017
988
+ #: includes/functions.php:4410 settings.php:3751 settings.php:3787
989
+ #: settings.php:3848 strings.php:243
990
  msgid "Loading..."
991
  msgstr ""
992
 
993
+ #: includes/functions-check-now.php:807 includes/functions.php:1038
994
  msgid ""
995
  "Clear statistics data for the selected range - clear both dates to delete "
996
  "all data for this block"
997
  msgstr ""
998
 
999
+ #: includes/functions-check-now.php:811 includes/functions.php:1042
1000
  msgid "Auto refresh data for the selected range every 60 seconds"
1001
  msgstr ""
1002
 
1003
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1004
+ #: includes/functions.php:1045 includes/functions.php:8170
1005
  msgid "Load data for last month"
1006
  msgstr ""
1007
 
1008
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1009
+ #: includes/functions.php:1045 includes/functions.php:8170
1010
  msgid "Last Month"
1011
  msgstr ""
1012
 
1013
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1014
+ #: includes/functions.php:1048 includes/functions.php:8173
1015
  msgid "Load data for this month"
1016
  msgstr ""
1017
 
1018
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1019
+ #: includes/functions.php:1048 includes/functions.php:8173
1020
  msgid "This Month"
1021
  msgstr ""
1022
 
1023
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1024
+ #: includes/functions.php:1051 includes/functions.php:8176
1025
  msgid "Load data for this year"
1026
  msgstr ""
1027
 
1028
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1029
+ #: includes/functions.php:1051 includes/functions.php:8176
1030
  msgid "This Year"
1031
  msgstr ""
1032
 
1033
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1034
+ #: includes/functions.php:1054 includes/functions.php:8179
1035
  msgid "Load data for the last 15 days"
1036
  msgstr ""
1037
 
1038
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1039
+ #: includes/functions.php:1057 includes/functions.php:8182
1040
  msgid "Load data for the last 30 days"
1041
  msgstr ""
1042
 
1043
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1044
+ #: includes/functions.php:1060 includes/functions.php:8185
1045
  msgid "Load data for the last 90 days"
1046
  msgstr ""
1047
 
1048
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1049
+ #: includes/functions.php:1063 includes/functions.php:8188
1050
  msgid "Load data for the last 180 days"
1051
  msgstr ""
1052
 
1053
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1054
+ #: includes/functions.php:1066 includes/functions.php:8191
1055
  msgid "Load data for the last 365 days"
1056
  msgstr ""
1057
 
1058
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1059
+ #: includes/functions.php:1076 includes/functions.php:8201
1060
  msgid "Load data for the selected range"
1061
  msgstr ""
1062
 
1063
+ #: includes/functions-check-now.php:861 includes/functions.php:1093
1064
  msgid ""
1065
  "Import settings when saving - if checked, the encoded settings below will be "
1066
  "imported for this block"
1067
  msgstr ""
1068
 
1069
+ #: includes/functions-check-now.php:861 includes/functions.php:1093
1070
  msgid "Import settings for block"
1071
  msgstr ""
1072
 
1073
+ #: includes/functions-check-now.php:865 includes/functions.php:1097
1074
  msgid ""
1075
  "Import block name when saving - if checked and 'Import settings for block' "
1076
  "is also checked, the name from encoded settings below will be imported for "
1077
  "this block"
1078
  msgstr ""
1079
 
1080
+ #: includes/functions-check-now.php:865 includes/functions.php:1097
1081
  msgid "Import block name"
1082
  msgstr ""
1083
 
1084
+ #: includes/functions-check-now.php:869 includes/functions.php:1101
1085
  msgid "Saved settings for block"
1086
  msgstr ""
1087
 
1088
+ #: includes/functions-check-now.php:882 includes/functions.php:1116
1089
  msgid "Export / Import Ad Inserter Pro Settings"
1090
  msgstr ""
1091
 
1092
+ #: includes/functions-check-now.php:892 includes/functions.php:1135
1093
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1094
  msgstr ""
1095
 
1096
+ #: includes/functions-check-now.php:894 includes/functions.php:1137
1097
  msgid "Clear All Statistics Data"
1098
  msgstr ""
1099
 
1100
+ #: includes/functions-check-now.php:921 includes/functions.php:1171
1101
  msgid "Toggle country/city editor"
1102
  msgstr ""
1103
 
1104
+ #: includes/functions-check-now.php:927 includes/functions.php:1177
1105
  msgid "IP Addresses"
1106
  msgstr ""
1107
 
1108
+ #: includes/functions-check-now.php:930 includes/functions.php:1180
1109
  msgid "Toggle IP address editor"
1110
  msgstr ""
1111
 
1112
+ #: includes/functions-check-now.php:933 includes/functions.php:1183
1113
  msgid ""
1114
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1115
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1123
  msgid "Whitelist IP addresses"
1124
  msgstr ""
1125
 
1126
+ #: includes/functions-check-now.php:952 includes/functions.php:1199
1127
  msgid "Countries"
1128
  msgstr ""
1129
 
1130
+ #: includes/functions-check-now.php:953 includes/functions.php:1200
1131
  msgid "Cities"
1132
  msgstr ""
1133
 
1134
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1135
+ #: includes/functions.php:1204 includes/functions.php:4806
1136
  msgid "Toggle country editor"
1137
  msgstr ""
1138
 
1139
+ #: includes/functions-check-now.php:960 includes/functions.php:1207
1140
  msgid "Toggle city editor"
1141
  msgstr ""
1142
 
1143
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1144
+ #: includes/functions.php:1211 includes/functions.php:4809
1145
  msgid "Comma separated country ISO Alpha-2 codes"
1146
  msgstr ""
1147
 
1154
  msgstr ""
1155
 
1156
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1157
+ #: includes/functions.php:1788 includes/functions.php:2123
1158
  msgid "Enter license key"
1159
  msgstr ""
1160
 
1161
  #. translators: %s: Ad Inserter Pro
1162
+ #: includes/functions-check-now.php:1389 includes/functions.php:1794
1163
  msgid ""
1164
  "%s license key is not set. Plugin functionality is limited and updates are "
1165
  "disabled."
1166
  msgstr ""
1167
 
1168
  #. translators: %s: Ad Inserter Pro
1169
+ #: includes/functions-check-now.php:1403 includes/functions.php:1808
1170
  msgid "Warning: %s plugin update server is not accessible"
1171
  msgstr ""
1172
 
1173
  #. translators: updates are not available
1174
+ #: includes/functions-check-now.php:1405 includes/functions.php:1810
1175
  msgid "updates"
1176
  msgstr ""
1177
 
1178
  #. translators: updates are not available
1179
+ #: includes/functions-check-now.php:1407 includes/functions.php:1812
1180
  msgid "are not available"
1181
  msgstr ""
1182
 
1183
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1184
+ #: includes/functions.php:1817 includes/functions.php:2132
1185
  msgid "Check license key"
1186
  msgstr ""
1187
 
1188
  #. translators: %s: Ad Inserter Pro
1189
+ #: includes/functions-check-now.php:1418 includes/functions.php:1823
1190
  msgid "Invalid %s license key."
1191
  msgstr ""
1192
 
1193
  #. translators: %s: Ad Inserter Pro
1194
+ #: includes/functions-check-now.php:1427 includes/functions.php:1832
1195
  msgid "%s license expired. Plugin updates are disabled."
1196
  msgstr ""
1197
 
1198
+ #: includes/functions-check-now.php:1428 includes/functions.php:1833
1199
  msgid "Renew license"
1200
  msgstr ""
1201
 
1202
  #. translators: %s: Ad Inserter Pro
1203
+ #: includes/functions-check-now.php:1436 includes/functions.php:1841
1204
  msgid "%s license overused. Plugin updates are disabled."
1205
  msgstr ""
1206
 
1207
+ #: includes/functions-check-now.php:1437 includes/functions.php:1842
1208
  msgid "Manage licenses"
1209
  msgstr ""
1210
 
1211
+ #: includes/functions-check-now.php:1437 includes/functions.php:1842
1212
  msgid "Upgrade license"
1213
  msgstr ""
1214
 
1215
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1216
+ #: includes/functions-check-now.php:1684 includes/functions.php:2125
1217
  msgid ""
1218
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1219
  "limited and updates are disabled."
1220
  msgstr ""
1221
 
1222
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1223
+ #: includes/functions-check-now.php:1693 includes/functions.php:2134
1224
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1225
  msgstr ""
1226
 
1227
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1228
+ #: includes/functions-check-now.php:1709 includes/functions.php:2150
1229
  msgid ""
1230
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1231
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1232
  msgstr ""
1233
 
1234
  #. translators: 1, 3: HTML tags, 2: percentage
1235
+ #: includes/functions-check-now.php:1716 includes/functions.php:2157
1236
  msgid ""
1237
  "During the license period and 30 days after the license has expired we offer "
1238
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1239
  msgstr ""
1240
 
1241
+ #: includes/functions-check-now.php:1726 includes/functions.php:2167
1242
  msgid "No, thank you."
1243
  msgstr ""
1244
 
1245
+ #: includes/functions-check-now.php:1729 includes/functions.php:2170
1246
  msgid "Not now, maybe later."
1247
  msgstr ""
1248
 
1249
+ #: includes/functions-check-now.php:1743 includes/functions.php:2184
1250
  msgid "Renew the licence"
1251
  msgstr ""
1252
 
1253
+ #: includes/functions-check-now.php:1745 includes/functions.php:2186
1254
  msgid "Update license status"
1255
  msgstr ""
1256
 
1257
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1258
+ #: includes/functions-check-now.php:1756 includes/functions.php:2199
1259
  msgid ""
1260
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1261
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1262
  msgstr ""
1263
 
1264
  #. Translators: %s: HTML tag
1265
+ #: includes/functions-check-now.php:1778 includes/functions.php:2259
1266
  msgid "Warning: %s MaxMind IP geolocation database not found."
1267
  msgstr ""
1268
 
1269
+ #: includes/functions-check-now.php:2331 includes/functions.php:2941
1270
  msgid "Geolocation"
1271
  msgstr ""
1272
 
1273
+ #: includes/functions-check-now.php:2335 includes/functions.php:2945
1274
+ #: settings.php:4499
1275
  msgid "Exceptions"
1276
  msgstr ""
1277
 
1278
+ #: includes/functions-check-now.php:2340 includes/functions.php:2950
1279
  msgid "Multisite"
1280
  msgstr ""
1281
 
1282
+ #: includes/functions-check-now.php:2345 includes/functions.php:2955
1283
+ #: settings.php:4505
1284
  msgid "Tracking"
1285
  msgstr ""
1286
 
1287
  #. translators: %d: days, hours, minutes
1288
+ #: includes/functions-check-now.php:2376 includes/functions.php:2989
1289
  msgid "Scheduled in %d days %d hours %d minutes"
1290
  msgstr ""
1291
 
1292
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1293
  #. HTML code for long dash separator
1294
+ #: includes/functions-check-now.php:2385 includes/functions.php:2998
1295
  msgid "Active %s expires in %d days %d hours %d minutes"
1296
  msgstr ""
1297
 
1298
+ #: includes/functions-check-now.php:2389 includes/functions.php:3002
1299
  msgid "Expired"
1300
  msgstr ""
1301
 
1302
+ #: includes/functions-check-now.php:2397 includes/functions.php:3028
1303
+ #: settings.php:1551 settings.php:1566 settings.php:1688 settings.php:2282
1304
  msgid "and"
1305
  msgstr ""
1306
 
1307
+ #: includes/functions-check-now.php:2400 includes/functions.php:3010
1308
  msgid "fallback"
1309
  msgstr ""
1310
 
1311
+ #: includes/functions-check-now.php:2401 includes/functions.php:3011
1312
  msgid "Block to be used when scheduling expires"
1313
  msgstr ""
1314
 
1315
+ #: includes/functions-check-now.php:2426 includes/functions.php:3050
1316
  msgid "Load in iframe"
1317
  msgstr ""
1318
 
1319
+ #: includes/functions-check-now.php:2430 includes/functions.php:3054
1320
+ #: includes/placeholders.php:387 settings.php:1149 settings.php:2309
1321
  msgid "Width"
1322
  msgstr ""
1323
 
1324
+ #: includes/functions-check-now.php:2431 includes/functions.php:3055
1325
  msgid "iframe width, empty means full width (100%)"
1326
  msgstr ""
1327
 
1328
+ #: includes/functions-check-now.php:2437 includes/functions.php:3061
1329
+ #: includes/placeholders.php:382 settings.php:1155 settings.php:2313
1330
  msgid "Height"
1331
  msgstr ""
1332
 
1333
+ #: includes/functions-check-now.php:2438 includes/functions.php:3062
1334
  msgid "iframe height, empty means adjust it to iframe content height"
1335
  msgstr ""
1336
 
1337
+ #: includes/functions-check-now.php:2445 includes/functions.php:3069
1338
  msgid "Ad label in iframe"
1339
  msgstr ""
1340
 
1341
+ #: includes/functions-check-now.php:2450 includes/functions.php:3074
1342
  msgid "Preview iframe code"
1343
  msgstr ""
1344
 
1345
+ #: includes/functions-check-now.php:2450 includes/functions.php:3074
1346
+ #: includes/preview.php:2367 settings.php:1184 settings.php:3043
1347
  msgid "Preview"
1348
  msgstr ""
1349
 
1350
+ #: includes/functions-check-now.php:2464 includes/functions.php:3090
1351
+ #: settings.php:4506
1352
  msgid "Limits"
1353
  msgstr ""
1354
 
1355
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1356
+ #: includes/functions-check-now.php:4430 includes/functions.php:3095
1357
+ #: includes/functions.php:6667 includes/functions.php:6732 settings.php:2455
1358
  msgid "Ad Blocking"
1359
  msgstr ""
1360
 
1361
  #. translators: 1, 2 and 3, 4: HTML tags
1362
+ #: includes/functions-check-now.php:2478 includes/functions.php:3106
1363
  msgid ""
1364
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1365
  "for tracking!"
1367
 
1368
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1369
  #. header
1370
+ #: includes/functions-check-now.php:2487 includes/functions.php:3115
1371
  msgid ""
1372
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1373
  "enabled and automatic insertion %6$s!"
1374
  msgstr ""
1375
 
1376
+ #: includes/functions-check-now.php:2554 includes/functions.php:3188
1377
  msgid "Click fraud protection is globally disabled"
1378
  msgstr ""
1379
 
1382
  msgstr ""
1383
 
1384
  #. Translators: Max n impressions
1385
+ #: includes/functions-check-now.php:2572 includes/functions.php:3202
1386
  msgid "General limits"
1387
  msgstr ""
1388
 
1389
  #. Translators: Max n impressions per x days
1390
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1391
+ #: includes/functions-check-now.php:2675 includes/functions.php:3208
1392
+ #: includes/functions.php:3220 includes/functions.php:3305
1393
  msgid "Current value"
1394
  msgstr ""
1395
 
1405
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1406
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1407
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1408
+ #: includes/functions.php:3227 includes/functions.php:3237
1409
+ #: includes/functions.php:3256 includes/functions.php:3266
1410
+ #: includes/functions.php:3312 includes/functions.php:3321
1411
+ #: includes/functions.php:3339 includes/functions.php:3348 settings.php:2194
1412
  msgid "Max"
1413
  msgstr ""
1414
 
1415
+ #: includes/functions-check-now.php:2598 includes/functions.php:3228
1416
  msgid ""
1417
  "Maximum number of impressions for this block. Empty means no general "
1418
  "impression limit."
1424
  #. Translators: Max n impressions per x days
1425
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1426
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1427
+ #: includes/functions.php:3230 includes/functions.php:3240
1428
+ #: includes/functions.php:3315 includes/functions.php:3324
1429
  msgid "impression"
1430
  msgid_plural "impressions"
1431
  msgstr[0] ""
1432
  msgstr[1] ""
1433
 
1434
+ #: includes/functions-check-now.php:2608 includes/functions.php:3238
1435
  msgid ""
1436
  "Maximum number of impressions per time period. Empty means no time limit."
1437
  msgstr ""
1442
  #. Translators: Max n clicks per x days
1443
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1444
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1445
+ #: includes/functions.php:3244 includes/functions.php:3273
1446
+ #: includes/functions.php:3328 includes/functions.php:3355
1447
+ #: includes/functions.php:5076
1448
  msgid "per"
1449
  msgstr ""
1450
 
1451
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1452
+ #: includes/functions.php:3245 includes/functions.php:3274
1453
  msgid "Time period in days. Empty means no time limit."
1454
  msgstr ""
1455
 
1461
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1462
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1463
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1464
+ #: includes/functions.php:3247 includes/functions.php:3276
1465
+ #: includes/functions.php:3331 includes/functions.php:3358
1466
+ #: includes/functions.php:3490 includes/functions.php:5079
1467
+ #: includes/functions.php:5089 strings.php:219 strings.php:220 strings.php:221
1468
  #: strings.php:222 strings.php:223 strings.php:224
1469
  msgid "day"
1470
  msgid_plural "days"
1471
  msgstr[0] ""
1472
  msgstr[1] ""
1473
 
1474
+ #: includes/functions-check-now.php:2627 includes/functions.php:3257
1475
  msgid ""
1476
  "Maximum number of clicks on this block. Empty means no general click limit."
1477
  msgstr ""
1482
  #. Translators: Max n clicks per x days
1483
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1484
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1485
+ #: includes/functions-check-now.php:4578 includes/functions.php:3259
1486
+ #: includes/functions.php:3269 includes/functions.php:3342
1487
+ #: includes/functions.php:3351 includes/functions.php:5076
1488
+ #: includes/functions.php:7007
1489
  msgid "click"
1490
  msgid_plural "clicks"
1491
  msgstr[0] ""
1492
  msgstr[1] ""
1493
 
1494
+ #: includes/functions-check-now.php:2637 includes/functions.php:3267
1495
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1496
  msgstr ""
1497
 
1498
+ #: includes/functions-check-now.php:2662 includes/functions.php:3292
1499
  msgid "Individual visitor limits"
1500
  msgstr ""
1501
 
1502
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1503
+ #: includes/functions.php:3296 includes/functions.php:3298
1504
  msgid ""
1505
  "When specified number of clicks on this block for a visitor will be reached "
1506
  "in the specified time period, all blocks that have click fraud protection "
1508
  "general plugin settings."
1509
  msgstr ""
1510
 
1511
+ #: includes/functions-check-now.php:2668 includes/functions.php:3298
1512
  msgid "Trigger click fraud protection"
1513
  msgstr ""
1514
 
1515
+ #: includes/functions-check-now.php:2683 includes/functions.php:3313
1516
  msgid ""
1517
  "Maximum number of impressions of this block for each visitor. Empty means no "
1518
  "impression limit."
1519
  msgstr ""
1520
 
1521
+ #: includes/functions-check-now.php:2692 includes/functions.php:3322
1522
  msgid ""
1523
  "Maximum number of impressions per time period for each visitor. Empty means "
1524
  "no impression limit per time period for visitors."
1525
  msgstr ""
1526
 
1527
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1528
+ #: includes/functions.php:3329 includes/functions.php:3356
1529
+ #: includes/functions.php:5079
1530
  msgid ""
1531
  "Time period in days. Use decimal value (with decimal point) for shorter "
1532
  "periods. Empty means no time limit."
1533
  msgstr ""
1534
 
1535
+ #: includes/functions-check-now.php:2710 includes/functions.php:3340
1536
  msgid ""
1537
  "Maximum number of clicks on this block for each visitor. Empty means no "
1538
  "click limit."
1539
  msgstr ""
1540
 
1541
+ #: includes/functions-check-now.php:2719 includes/functions.php:3349
1542
+ #: includes/functions.php:5076
1543
  msgid ""
1544
  "Maximum number of clicks per time period for each visitor. Empty means no "
1545
  "click limit per time period for visitors."
1546
  msgstr ""
1547
 
1548
+ #: includes/functions-check-now.php:2745 includes/functions.php:3399
1549
  msgid "When ad blocking is detected"
1550
  msgstr ""
1551
 
1552
+ #: includes/functions-check-now.php:2754 includes/functions.php:3408
1553
  msgid "replacement"
1554
  msgstr ""
1555
 
1556
+ #: includes/functions-check-now.php:2755 includes/functions.php:3409
1557
  msgid "Block to be shown when ad blocking is detected"
1558
  msgstr ""
1559
 
1560
+ #: includes/functions-check-now.php:2756 includes/functions.php:3410
1561
  msgctxt "replacement"
1562
  msgid "None"
1563
  msgstr ""
1564
 
1565
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1566
+ #: includes/functions.php:3427 includes/functions.php:8414
1567
  msgid "Close button"
1568
  msgstr ""
1569
 
1570
+ #: includes/functions-check-now.php:2825 includes/functions.php:3481
1571
  msgid "Auto close after"
1572
  msgstr ""
1573
 
1574
+ #: includes/functions-check-now.php:2826 includes/functions.php:3482
1575
  msgid ""
1576
  "Time in seconds in which the ad will automatically close. Leave empty to "
1577
  "disable auto closing."
1578
  msgstr ""
1579
 
1580
  #. Translators: Don't show for x days
1581
+ #: includes/functions-check-now.php:2831 includes/functions.php:3487
1582
  msgid "Don't show for"
1583
  msgstr ""
1584
 
1585
+ #: includes/functions-check-now.php:2832 includes/functions.php:3488
1586
  msgid ""
1587
  "Time in days in which closed ad will not be shown again. Use decimal value "
1588
  "(with decimal point) for shorter time period or leave empty to show it again "
1590
  msgstr ""
1591
 
1592
  #. Translators: Delay showing for x pageviews
1593
+ #: includes/functions-check-now.php:2852 includes/functions.php:3510
1594
+ #: includes/functions.php:3516
1595
  msgid "Delay showing for"
1596
  msgstr ""
1597
 
1598
+ #: includes/functions-check-now.php:2853 includes/functions.php:3517
1599
  msgid ""
1600
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1601
  "empty to insert the code for the first pageview."
1604
  #. Translators: Delay showing for x pageviews
1605
  #. Translators: Show every x pageviews
1606
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1607
+ #: includes/functions.php:3519 includes/functions.php:3526
1608
  msgid "pageview"
1609
  msgid_plural "pageviews"
1610
  msgstr[0] ""
1611
  msgstr[1] ""
1612
 
1613
  #. Translators: Show every x pageviews
1614
+ #: includes/functions-check-now.php:2859 includes/functions.php:3523
1615
  msgid "Show every"
1616
  msgid_plural "Show every"
1617
  msgstr[0] ""
1618
  msgstr[1] ""
1619
 
1620
+ #: includes/functions-check-now.php:2860 includes/functions.php:3524
1621
  msgid ""
1622
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1623
  "for every pageview."
1624
  msgstr ""
1625
 
1626
+ #: includes/functions-check-now.php:2879 includes/functions.php:3549
1627
+ #: settings.php:914
1628
  msgid "Lazy loading"
1629
  msgstr ""
1630
 
1631
  #. Translators: %s MaxMind
1632
+ #: includes/functions-check-now.php:2936 includes/functions.php:4730
1633
  msgid "This product includes GeoLite2 data created by %s"
1634
  msgstr ""
1635
 
1636
+ #: includes/functions-check-now.php:2947 includes/functions.php:4743
1637
  msgid "IP geolocation database"
1638
  msgstr ""
1639
 
1640
+ #: includes/functions-check-now.php:2950 includes/functions.php:4746
1641
  msgid "Select IP geolocation database."
1642
  msgstr ""
1643
 
1644
+ #: includes/functions-check-now.php:2961 includes/functions.php:4757
1645
  msgid "Automatic database updates"
1646
  msgstr ""
1647
 
1648
+ #: includes/functions-check-now.php:2964 includes/functions.php:4760
1649
  msgid ""
1650
  "Automatically download and update free GeoLite2 IP geolocation database by "
1651
  "MaxMind"
1652
  msgstr ""
1653
 
1654
+ #: includes/functions-check-now.php:2972 includes/functions.php:4777
1655
  msgid "Database"
1656
  msgstr ""
1657
 
1658
+ #: includes/functions-check-now.php:2975 includes/functions.php:4780
1659
  msgid ""
1660
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1661
  msgstr ""
1662
 
1663
  #. translators: %d: group number
1664
+ #: includes/functions-check-now.php:2993 includes/functions.php:4798
1665
  msgid "Group %d"
1666
  msgstr ""
1667
 
1668
+ #: includes/functions-check-now.php:2999 includes/functions.php:4804
1669
  msgid "countries"
1670
  msgstr ""
1671
 
1672
+ #: includes/functions-check-now.php:3044 includes/functions.php:4849
1673
  msgid ""
1674
  "Enable impression and click tracking. You also need to enable tracking for "
1675
  "each block you want to track."
1679
  msgid "Generate report"
1680
  msgstr ""
1681
 
1682
+ #: includes/functions-check-now.php:3059 includes/functions.php:4868
1683
  msgid "Impression and Click Tracking"
1684
  msgstr ""
1685
 
1686
+ #: includes/functions-check-now.php:3060 includes/functions.php:4869
1687
+ #: settings.php:2922
1688
  msgctxt "ad blocking detection"
1689
  msgid "NOT ENABLED"
1690
  msgstr ""
1691
 
1692
+ #: includes/functions-check-now.php:3076 includes/functions.php:4885
1693
  msgid "Internal"
1694
  msgstr ""
1695
 
1696
+ #: includes/functions-check-now.php:3080 includes/functions.php:4889
1697
  msgid "Track impressions and clicks with internal tracking and statistics"
1698
  msgstr ""
1699
 
1700
+ #: includes/functions-check-now.php:3085 includes/functions.php:4894
1701
  msgid "External"
1702
  msgstr ""
1703
 
1704
+ #: includes/functions-check-now.php:3089 includes/functions.php:4898
1705
  msgid ""
1706
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1707
  "code installed)"
1708
  msgstr ""
1709
 
1710
+ #: includes/functions-check-now.php:3094 includes/functions.php:4903
1711
  msgid "Track Pageviews"
1712
  msgstr ""
1713
 
1714
+ #: includes/functions-check-now.php:3100 includes/functions.php:4909
1715
  msgid "Track Pageviews by Device (as configured for viewports)"
1716
  msgstr ""
1717
 
1718
+ #: includes/functions-check-now.php:3110 includes/functions.php:4919
1719
  msgid "Track for Logged in Users"
1720
  msgstr ""
1721
 
1722
+ #: includes/functions-check-now.php:3116 includes/functions.php:4925
1723
  msgid "Track impressions and clicks from logged in users"
1724
  msgstr ""
1725
 
1726
+ #: includes/functions-check-now.php:3126 includes/functions.php:4935
1727
  msgid "Click Detection"
1728
  msgstr ""
1729
 
1730
+ #: includes/functions-check-now.php:3132 includes/functions.php:4941
1731
  msgid ""
1732
  "Standard method detects clicks only on banners with links, Advanced method "
1733
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1734
  msgstr ""
1735
 
1736
+ #: includes/functions-check-now.php:3151 includes/functions.php:5062
1737
  msgid "Click fraud protection"
1738
  msgstr ""
1739
 
1740
+ #: includes/functions-check-now.php:3155 includes/functions.php:5066
1741
  msgid "Globally enable click fraud protection for selected blocks."
1742
  msgstr ""
1743
 
1744
+ #: includes/functions-check-now.php:3161 includes/functions.php:5086
1745
  msgid "Protection time"
1746
  msgstr ""
1747
 
1748
+ #: includes/functions-check-now.php:3162 includes/functions.php:5089
1749
  msgid ""
1750
  "Time period in days in which blocks with enabled click fraud protection will "
1751
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1752
  msgstr ""
1753
 
1754
+ #: includes/functions-check-now.php:3181 includes/functions.php:4969
1755
  msgid "Report header image"
1756
  msgstr ""
1757
 
1762
  "reset to default image."
1763
  msgstr ""
1764
 
1765
+ #: includes/functions-check-now.php:3185 includes/functions.php:4973
1766
  #: strings.php:255
1767
  msgid "Select or upload header image"
1768
  msgstr ""
1769
 
1770
+ #: includes/functions-check-now.php:3190 includes/functions.php:4978
1771
  msgid "Report header title"
1772
  msgstr ""
1773
 
1774
+ #: includes/functions-check-now.php:3193 includes/functions.php:4981
1775
  msgid ""
1776
  "Title to be displayed in the header of the statistics report. Text or HTML "
1777
  "code, clear to reset to default text."
1778
  msgstr ""
1779
 
1780
+ #: includes/functions-check-now.php:3198 includes/functions.php:4986
1781
  msgid "Report header description"
1782
  msgstr ""
1783
 
1784
+ #: includes/functions-check-now.php:3201 includes/functions.php:4989
1785
  msgid ""
1786
  "Description to be displayed in the header of the statistics report. Text or "
1787
  "HTML code, clear to reset to default text."
1788
  msgstr ""
1789
 
1790
+ #: includes/functions-check-now.php:3206 includes/functions.php:4994
1791
  msgid "Report footer"
1792
  msgstr ""
1793
 
1794
+ #: includes/functions-check-now.php:3209 includes/functions.php:4997
1795
  msgid ""
1796
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1797
  "to default text."
1798
  msgstr ""
1799
 
1800
+ #: includes/functions-check-now.php:3214 includes/functions.php:5002
1801
  msgid "Public report key"
1802
  msgstr ""
1803
 
1804
+ #: includes/functions-check-now.php:3217 includes/functions.php:5005
1805
  msgid "String to generate unique report IDs. Clear to reset to default value."
1806
  msgstr ""
1807
 
1808
+ #: includes/functions-check-now.php:3249 includes/functions.php:5146
1809
  msgid "Are you sure you want to clear all exceptions for block"
1810
  msgstr ""
1811
 
1812
+ #: includes/functions-check-now.php:3250 includes/functions.php:5147
1813
  msgid "Clear all exceptions for block"
1814
  msgstr ""
1815
 
1816
+ #: includes/functions-check-now.php:3257 includes/functions.php:5160
1817
  msgid "Are you sure you want to clear all exceptions?"
1818
  msgstr ""
1819
 
1820
+ #: includes/functions-check-now.php:3257 includes/functions.php:5160
1821
  msgid "Clear all exceptions for all blocks"
1822
  msgstr ""
1823
 
1824
+ #: includes/functions-check-now.php:3262 includes/functions.php:5167
1825
+ #: settings.php:4082 settings.php:4587
1826
  msgid "Type"
1827
  msgstr ""
1828
 
1829
+ #: includes/functions-check-now.php:3280 includes/functions.php:5186
1830
+ #: includes/functions.php:5187
1831
  msgid "View"
1832
  msgstr ""
1833
 
1834
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1835
+ #: includes/functions-check-now.php:3292 includes/functions.php:5188
1836
+ #: includes/functions.php:5202 includes/functions.php:5206
1837
+ #: includes/placeholders.php:351 includes/preview.php:2737 settings.php:1427
1838
+ #: settings.php:3837
1839
  msgid "Edit"
1840
  msgstr ""
1841
 
1842
+ #: includes/functions-check-now.php:3311 includes/functions.php:5234
1843
  msgid "Are you sure you want to clear all exceptions for"
1844
  msgstr ""
1845
 
1846
+ #: includes/functions-check-now.php:3312 includes/functions.php:5235
1847
  msgid "Clear all exceptions for"
1848
  msgstr ""
1849
 
1850
+ #: includes/functions-check-now.php:3325 includes/functions.php:5251
1851
  msgid "No exceptions"
1852
  msgstr ""
1853
 
1854
  #. translators: %s: Ad Inserter Pro
1855
+ #: includes/functions-check-now.php:3336 includes/functions.php:5262
1856
  msgid "%s options for network blogs"
1857
  msgstr ""
1858
 
1859
  #. translators: %s: Ad Inserter Pro
1860
+ #: includes/functions-check-now.php:3341 includes/functions.php:5267
1861
  msgid "Enable %s widgets for sub-sites"
1862
  msgstr ""
1863
 
1864
+ #: includes/functions-check-now.php:3341 includes/functions.php:5267
1865
  msgid "Widgets"
1866
  msgstr ""
1867
 
1868
+ #: includes/functions-check-now.php:3346 includes/functions.php:5272
1869
  msgid "Enable PHP code processing for sub-sites"
1870
  msgstr ""
1871
 
1872
+ #: includes/functions-check-now.php:3346 includes/functions.php:5272
1873
  msgid "PHP Processing"
1874
  msgstr ""
1875
 
1876
  #. translators: %s: Ad Inserter Pro
1877
+ #: includes/functions-check-now.php:3351 includes/functions.php:5277
1878
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1879
  msgstr ""
1880
 
1881
+ #: includes/functions-check-now.php:3351 includes/functions.php:5277
1882
  msgid "Post/Page exceptions"
1883
  msgstr ""
1884
 
1885
  #. translators: %s: Ad Inserter Pro
1886
+ #: includes/functions-check-now.php:3356 includes/functions.php:5282
1887
  msgid "Enable %s settings page for sub-sites"
1888
  msgstr ""
1889
 
1890
+ #: includes/functions-check-now.php:3356 includes/functions.php:5282
1891
  msgid "Settings page"
1892
  msgstr ""
1893
 
1894
  #. translators: %s: Ad Inserter Pro
1895
+ #: includes/functions-check-now.php:3361 includes/functions.php:5287
1896
  msgid "Enable %s settings of main site to be used for all blogs"
1897
  msgstr ""
1898
 
1899
+ #: includes/functions-check-now.php:3361 includes/functions.php:5287
1900
  msgid "Main site settings used for all blogs"
1901
  msgstr ""
1902
 
1903
+ #: includes/functions-check-now.php:3372 includes/functions.php:5305
1904
+ #: settings.php:2921
1905
  msgid "Ad Blocking Detection"
1906
  msgstr ""
1907
 
1908
+ #: includes/functions-check-now.php:3378 includes/functions.php:5311
1909
  msgid ""
1910
  "Standard method is reliable but should be used only if Advanced method does "
1911
  "not work. Advanced method recreates files used for detection with random "
1914
  msgstr ""
1915
 
1916
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
1917
+ #: includes/functions-check-now.php:4140 includes/functions.php:6298
1918
+ #: includes/functions.php:6406 includes/functions.php:6431
1919
  msgid "AD BLOCKING"
1920
  msgstr ""
1921
 
1922
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
1923
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
1924
+ #: includes/functions.php:6299 includes/functions.php:6342
1925
+ #: includes/functions.php:6400 includes/functions.php:6432
1926
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1927
  msgstr ""
1928
 
1929
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
1930
+ #: includes/functions-check-now.php:4147 includes/functions.php:6302
1931
+ #: includes/functions.php:6399 includes/functions.php:6438
1932
  msgid "NO AD BLOCKING"
1933
  msgstr ""
1934
 
1935
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
1936
+ #: includes/functions.php:6341 includes/functions.php:6348
1937
  msgid "AD BLOCKING REPLACEMENT"
1938
  msgstr ""
1939
 
1940
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
1941
+ #: includes/functions.php:6520 includes/functions.php:6731
1942
  msgid "Pageviews"
1943
  msgstr ""
1944
 
1945
+ #: includes/functions-check-now.php:4366 includes/functions.php:6666
1946
  msgctxt "Version"
1947
  msgid "Unknown"
1948
  msgstr ""
1949
 
1950
+ #: includes/functions-check-now.php:4366 includes/functions.php:6666
1951
  msgctxt "Times"
1952
  msgid "DISPLAYED"
1953
  msgstr ""
1954
 
1955
+ #: includes/functions-check-now.php:4366 includes/functions.php:6666
1956
  msgid "No version"
1957
  msgstr ""
1958
 
1959
+ #: includes/functions-check-now.php:4367 includes/functions.php:6667
1960
  msgctxt "Times"
1961
  msgid "BLOCKED"
1962
  msgstr ""
1963
 
1964
+ #: includes/functions-check-now.php:4429 includes/functions.php:6731
1965
  msgid "Impressions"
1966
  msgstr ""
1967
 
1968
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
1969
+ #: includes/functions-check-now.php:4486 includes/functions.php:6732
1970
+ #: includes/functions.php:6733 includes/functions.php:6915
1971
  msgid "Clicks"
1972
  msgstr ""
1973
 
1974
+ #: includes/functions-check-now.php:4431 includes/functions.php:6733
1975
  msgid "events"
1976
  msgstr ""
1977
 
1978
+ #: includes/functions-check-now.php:4432 includes/functions.php:6734
1979
  msgid "Ad Blocking Share"
1980
  msgstr ""
1981
 
1982
  #. translators: CTR as Click Through Rate
1983
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
1984
+ #: includes/functions.php:6734 includes/functions.php:6921
1985
  msgid "CTR"
1986
  msgstr ""
1987
 
1988
+ #: includes/functions-check-now.php:4574 includes/functions.php:7003
1989
  msgid "pageviews"
1990
  msgid_plural "pageviews"
1991
  msgstr[0] ""
1992
  msgstr[1] ""
1993
 
1994
+ #: includes/functions-check-now.php:4574 includes/functions.php:7003
1995
  msgid "impressions"
1996
  msgid_plural "impressions"
1997
  msgstr[0] ""
1998
  msgstr[1] ""
1999
 
2000
+ #: includes/functions-check-now.php:4578 includes/functions.php:7007
2001
  msgid "event"
2002
  msgid_plural "events"
2003
  msgstr[0] ""
2004
  msgstr[1] ""
2005
 
2006
+ #: includes/functions-check-now.php:4673 includes/functions.php:7102
2007
  msgctxt "Pageviews / Impressions"
2008
  msgid "Average"
2009
  msgstr ""
2010
 
2011
+ #: includes/functions-check-now.php:4694 includes/functions.php:7123
2012
  msgctxt "Ad Blocking / Clicks"
2013
  msgid "Average"
2014
  msgstr ""
2015
 
2016
+ #: includes/functions-check-now.php:4718 includes/functions.php:7147
2017
  msgctxt "Ad Blocking Share / CTR"
2018
  msgid "Average"
2019
  msgstr ""
2020
 
2021
  #. Translators: %s: Ad Inserter Pro
2022
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
2023
+ #: includes/functions-check-now.php:5335 includes/functions.php:7445
2024
+ #: includes/functions.php:7542 includes/functions.php:8115 strings.php:204
2025
  msgid "%s Report"
2026
  msgstr ""
2027
 
2028
+ #: includes/functions-check-now.php:5241 includes/functions.php:8020
2029
  msgid "for last month"
2030
  msgstr ""
2031
 
2032
+ #: includes/functions-check-now.php:5246 includes/functions.php:8025
2033
  msgid "for this month"
2034
  msgstr ""
2035
 
2036
+ #: includes/functions-check-now.php:5251 includes/functions.php:8030
2037
  msgid "for this year"
2038
  msgstr ""
2039
 
2040
+ #: includes/functions-check-now.php:5256 includes/functions.php:8035
2041
  msgid "for the last 15 days"
2042
  msgstr ""
2043
 
2044
+ #: includes/functions-check-now.php:5261 includes/functions.php:8040
2045
  msgid "for the last 30 days"
2046
  msgstr ""
2047
 
2048
+ #: includes/functions-check-now.php:5266 includes/functions.php:8045
2049
  msgid "for the last 90 days"
2050
  msgstr ""
2051
 
2052
+ #: includes/functions-check-now.php:5271 includes/functions.php:8050
2053
  msgid "for the last 180 days"
2054
  msgstr ""
2055
 
2056
+ #: includes/functions-check-now.php:5276 includes/functions.php:8055
2057
  msgid "for the last 365 days"
2058
  msgstr ""
2059
 
2060
+ #: includes/functions.php:435
2061
+ msgid "Import plugin settings"
2062
+ msgstr ""
2063
+
2064
+ #: includes/functions.php:443
2065
+ msgid "Load settings from a file"
2066
+ msgstr ""
2067
+
2068
+ #: includes/functions.php:446
2069
+ msgid "Save settings to a file"
2070
+ msgstr ""
2071
+
2072
+ #: includes/functions.php:555 includes/functions.php:4856
2073
  msgid "Generate CSV report"
2074
  msgstr ""
2075
 
2076
  #. translators: %s: Ad Inserter Pro
2077
+ #: includes/functions.php:628
2078
  msgid "Invalid %s version. Continue?"
2079
  msgstr ""
2080
 
2081
+ #: includes/functions.php:800
2082
  msgid "Show"
2083
  msgstr ""
2084
 
2085
+ #: includes/functions.php:812 includes/functions.php:839
2086
  msgid ""
2087
  "Trigger value: page scroll in %, page scroll in px or element with selector "
2088
  "(#id or .class) scrolls in or out of screen"
2089
  msgstr ""
2090
 
2091
+ #: includes/functions.php:826
2092
  msgid "Hide"
2093
  msgstr ""
2094
 
2095
+ #: includes/functions.php:857 includes/preview.php:2679
2096
  msgid "Background"
2097
  msgstr ""
2098
 
2099
  #. translators: %s HTML body tag
2100
+ #: includes/functions.php:864
2101
  msgid "Set %s background"
2102
  msgstr ""
2103
 
2104
+ #: includes/functions.php:877 includes/functions.php:936
2105
  msgid "Image to be used for the background"
2106
  msgstr ""
2107
 
2108
+ #: includes/functions.php:882
2109
  msgid "Color"
2110
  msgstr ""
2111
 
2112
+ #: includes/functions.php:883 includes/preview.php:2498
2113
  msgid "Color to be used for the background"
2114
  msgstr ""
2115
 
2116
+ #: includes/functions.php:886 includes/preview.php:2503
2117
  msgid "Image size"
2118
  msgstr ""
2119
 
2120
+ #: includes/functions.php:896
2121
  msgid "Repeat"
2122
  msgstr ""
2123
 
2124
+ #: includes/functions.php:909
2125
  msgid "Select image"
2126
  msgstr ""
2127
 
2128
+ #: includes/functions.php:936
2129
+ msgid "Parallax background"
2130
+ msgstr ""
2131
+
2132
+ #: includes/functions.php:939
2133
+ msgid "Select background image"
2134
+ msgstr ""
2135
+
2136
+ #: includes/functions.php:943
2137
+ msgid "Shift"
2138
+ msgstr ""
2139
+
2140
+ #: includes/functions.php:944
2141
+ msgid ""
2142
+ "Background image shift in pixels when the block scrolls from top to bottom, "
2143
+ "empty means no shift"
2144
+ msgstr ""
2145
+
2146
+ #: includes/functions.php:952 settings.php:920
2147
+ msgid "Link"
2148
+ msgstr ""
2149
+
2150
+ #: includes/functions.php:952
2151
+ msgid "The destination page when the background is clicked"
2152
+ msgstr ""
2153
+
2154
+ #: includes/functions.php:954 settings.php:931
2155
+ msgid "Open link in a new tab"
2156
+ msgstr ""
2157
+
2158
+ #: includes/functions.php:957
2159
+ msgid "New tab"
2160
+ msgstr ""
2161
+
2162
+ #: includes/functions.php:1188 includes/functions.php:1216 settings.php:1814
2163
+ #: settings.php:1837 settings.php:1860 settings.php:1883 settings.php:1906
2164
+ #: settings.php:1929 settings.php:1952 settings.php:1974 settings.php:1996
2165
  msgid "Click to select black or white list"
2166
  msgstr ""
2167
 
2168
  #. translators: %s: Ad Inserter Pro
2169
+ #: includes/functions.php:1850
2170
  msgid "Invalid %s version."
2171
  msgstr ""
2172
 
2173
+ #: includes/functions.php:1851
2174
  msgid "Check license"
2175
  msgstr ""
2176
 
2177
+ #: includes/functions.php:1866
2178
  msgid "License"
2179
  msgstr ""
2180
 
2181
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2182
+ #: includes/functions.php:2211
2183
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2184
  msgstr ""
2185
 
2186
  #. Translators: %s: HTML tags
2187
+ #: includes/functions.php:2264
2188
  msgid ""
2189
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2190
  "account %s and create license key."
2191
  msgstr ""
2192
 
2193
+ #: includes/functions.php:3026
2194
  msgid "Start date"
2195
  msgstr ""
2196
 
2197
+ #: includes/functions.php:3026
2198
  msgid "Enter date in format yyyy-mm-dd"
2199
  msgstr ""
2200
 
2201
+ #: includes/functions.php:3026
2202
  msgid "empty means every day as defined by hours and days in week"
2203
  msgstr ""
2204
 
2205
+ #: includes/functions.php:3027
2206
  msgid "Start time"
2207
  msgstr ""
2208
 
2209
+ #: includes/functions.php:3027
2210
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2211
  msgstr ""
2212
 
2213
+ #: includes/functions.php:3029
2214
  msgid "End date"
2215
  msgstr ""
2216
 
2217
+ #: includes/functions.php:3030
2218
  msgid "End time"
2219
  msgstr ""
2220
 
2221
+ #: includes/functions.php:3033
2222
  msgid "Select wanted days in week"
2223
  msgstr ""
2224
 
2225
+ #: includes/functions.php:3373
2226
  msgid "Fallback"
2227
  msgstr ""
2228
 
2229
+ #: includes/functions.php:3374
2230
  msgid "Block to be used when a limit is reached"
2231
  msgstr ""
2232
 
2233
+ #: includes/functions.php:3398
2234
  msgid "Ad blocking detection is disabled"
2235
  msgstr ""
2236
 
2237
+ #: includes/functions.php:3511
2238
  msgid ""
2239
  "Time in ms before the code is inserted (and ad displayed). Leave empty to "
2240
  "insert the code without any additional delay."
2241
  msgstr ""
2242
 
2243
+ #: includes/functions.php:3554
2244
  msgid "Wait for user interaction"
2245
  msgstr ""
2246
 
2247
+ #: includes/functions.php:3559
2248
  msgid "Protected"
2249
  msgstr ""
2250
 
2251
+ #: includes/functions.php:3562
2252
  msgid "Manual loading"
2253
  msgstr ""
2254
 
2255
+ #: includes/functions.php:3656
2256
  msgid "IP address blocked"
2257
  msgid_plural "IP addresses blocked"
2258
  msgstr[0] ""
2259
  msgstr[1] ""
2260
 
2261
+ #: includes/functions.php:3659 includes/functions.php:3708
2262
  msgid "No IP address blocked"
2263
  msgstr ""
2264
 
2265
+ #: includes/functions.php:3721
2266
  msgid "Blocked IP address"
2267
  msgstr ""
2268
 
2269
+ #: includes/functions.php:3721
2270
  msgid "Country"
2271
  msgstr ""
2272
 
2273
+ #: includes/functions.php:3721
2274
  msgid "Time to expiration"
2275
  msgstr ""
2276
 
2277
+ #: includes/functions.php:3723 strings.php:226
2278
  msgid "Delete"
2279
  msgstr ""
2280
 
2281
+ #: includes/functions.php:3738
2282
  msgid "Delete IP address"
2283
  msgstr ""
2284
 
2285
+ #: includes/functions.php:4295
2286
  msgid "CONNECTED"
2287
  msgstr ""
2288
 
2289
+ #: includes/functions.php:4296
2290
  msgid "Disconnect website"
2291
  msgstr ""
2292
 
2293
+ #: includes/functions.php:4312
2294
  msgid "MANAGED BY"
2295
  msgstr ""
2296
 
2297
+ #: includes/functions.php:4333
2298
+ msgid "Remote management"
2299
  msgstr ""
2300
 
2301
+ #: includes/functions.php:4337
2302
  msgid "Allow to connect and manage plugin settings"
2303
  msgstr ""
2304
 
2305
+ #: includes/functions.php:4339
2306
  msgid "String to allow plugin management. Clear to reset to default value."
2307
  msgstr ""
2308
 
2309
+ #: includes/functions.php:4347
2310
  msgid "Check remote IP address"
2311
  msgstr ""
2312
 
2313
+ #: includes/functions.php:4351
2314
  msgid "Check IP address of remote management website"
2315
  msgstr ""
2316
 
2317
+ #: includes/functions.php:4353
2318
  msgid "Allowed IP addresses of remote management websites"
2319
  msgstr ""
2320
 
2321
  #. Translators: %s: Ad Inserter Pro
2322
+ #: includes/functions.php:4376
2323
  msgid "Manage %s on other websites"
2324
  msgstr ""
2325
 
2326
+ #: includes/functions.php:4391
2327
  msgid "Add website"
2328
  msgstr ""
2329
 
2330
+ #: includes/functions.php:4395
2331
  msgid "Rearrange website order"
2332
  msgstr ""
2333
 
2334
+ #: includes/functions.php:4399
2335
  msgid "Cancel changes"
2336
  msgstr ""
2337
 
2338
+ #: includes/functions.php:4403
2339
  msgid "Save changes"
2340
  msgstr ""
2341
 
2342
+ #: includes/functions.php:4505 includes/functions.php:4508
2343
+ #: includes/functions.php:4511 includes/functions.php:4516
2344
  msgid "Invalid data received from"
2345
  msgstr ""
2346
 
2347
+ #: includes/functions.php:4515 includes/functions.php:4519
2348
  msgid "Error connecting to"
2349
  msgstr ""
2350
 
2351
+ #: includes/functions.php:4515
2352
  msgid "No data received"
2353
  msgstr ""
2354
 
2355
+ #: includes/functions.php:4560
2356
  msgid "Error saving websites"
2357
  msgstr ""
2358
 
2359
+ #: includes/functions.php:4600
2360
  msgid "Can't connect to itself"
2361
  msgstr ""
2362
 
2363
+ #: includes/functions.php:4651
2364
  msgid "Connect website"
2365
  msgstr ""
2366
 
2367
+ #: includes/functions.php:4655
2368
  msgid "Delete website"
2369
  msgstr ""
2370
 
2371
+ #: includes/functions.php:4671
2372
  msgid "Key"
2373
  msgstr ""
2374
 
2375
+ #: includes/functions.php:4689
2376
  msgid "Address"
2377
  msgstr ""
2378
 
2379
+ #: includes/functions.php:4702
2380
  msgid "No website configured"
2381
  msgstr ""
2382
 
2383
+ #: includes/functions.php:4703
2384
  msgid "No website matches search keywords"
2385
  msgstr ""
2386
 
2387
  #. Translators: %s HTML tags
2388
+ #: includes/functions.php:4732
2389
  msgid "Create and manage %s MaxMind license key %s"
2390
  msgstr ""
2391
 
2392
+ #: includes/functions.php:4768
2393
  msgid "MaxMind license key"
2394
  msgstr ""
2395
 
2396
+ #: includes/functions.php:4771
2397
  msgid "Enter license key obtained from MaxMind"
2398
  msgstr ""
2399
 
2400
+ #: includes/functions.php:4972
2401
  msgid ""
2402
  "Image or logo to be displayed in the header of the statistics report. "
2403
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2404
  "reset to default image."
2405
  msgstr ""
2406
 
2407
+ #: includes/functions.php:5020
2408
  msgid "Event category"
2409
  msgstr ""
2410
 
2411
+ #: includes/functions.php:5023
2412
  msgid ""
2413
  "Category name used for external tracking events. You can use tags to get the "
2414
  "event, the number or the name of the block that caused the event."
2415
  msgstr ""
2416
 
2417
+ #: includes/functions.php:5028
2418
  msgid "Event action"
2419
  msgstr ""
2420
 
2421
+ #: includes/functions.php:5031
2422
  msgid ""
2423
  "Action name used for external tracking events. You can use tags to get the "
2424
  "event, the number or the name of the block that caused the event."
2425
  msgstr ""
2426
 
2427
+ #: includes/functions.php:5036
2428
  msgid "Event label"
2429
  msgstr ""
2430
 
2431
+ #: includes/functions.php:5039
2432
  msgid ""
2433
  "Label name used for external tracking events. You can use tags to get the "
2434
  "event, the number or the name of the block that caused the event."
2435
  msgstr ""
2436
 
2437
+ #: includes/functions.php:5072
2438
  msgid "Global visitor limits"
2439
  msgstr ""
2440
 
2441
+ #: includes/functions.php:5095
2442
  msgid "Block IP address"
2443
  msgstr ""
2444
 
2445
+ #: includes/functions.php:5100
2446
  msgid "Block visitor's IP address when protection is activated"
2447
  msgstr ""
2448
 
2449
+ #: includes/functions.php:5102
2450
  msgid "Click to show blocked IP addresses"
2451
  msgstr ""
2452
 
2453
  #. translators: %s: Ad Inserter Pro
2454
+ #: includes/functions.php:5292
2455
  msgid "Show link to %s settings page for each site on the Sites page"
2456
  msgstr ""
2457
 
2458
  #. translators: %s: Ad Inserter Pro
2459
+ #: includes/functions.php:5292
2460
  msgid "Show link to %s on the Sites page"
2461
  msgstr ""
2462
 
2463
+ #: includes/functions.php:5334 settings.php:3219
2464
  msgid ""
2465
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2466
  "tags, processing) by url parameters for non-logged in users. Enable this "
2469
  "administrators debugging is always enabled."
2470
  msgstr ""
2471
 
2472
+ #: includes/functions.php:5336 settings.php:3221
2473
  msgid "Remote debugging"
2474
  msgstr ""
2475
 
2476
+ #: includes/functions.php:6814
2477
  msgid "Date"
2478
  msgstr ""
2479
 
2480
+ #: includes/functions.php:7303 includes/functions.php:7314
2481
  msgid "File %s missing."
2482
  msgstr ""
2483
 
2505
  msgid "Placeholder"
2506
  msgstr ""
2507
 
2508
+ #: includes/placeholders.php:361 settings.php:987 settings.php:4588
2509
  msgid "Size"
2510
  msgstr ""
2511
 
2512
+ #: includes/placeholders.php:377 includes/preview.php:2495 settings.php:2318
2513
  msgid "Background color"
2514
  msgstr ""
2515
 
2573
  msgid "Remove dummy paragraph"
2574
  msgstr ""
2575
 
2576
+ #: includes/preview-adb.php:6 includes/preview.php:2355
2577
  msgid "Use current settings"
2578
  msgstr ""
2579
 
2600
  msgid "Default"
2601
  msgstr ""
2602
 
2603
+ #: includes/preview-adb.php:9 includes/preview.php:2358
2604
  msgid "Close preview window"
2605
  msgstr ""
2606
 
2613
  msgid "Ad Blocking Detected Message Preview"
2614
  msgstr ""
2615
 
2616
+ #: includes/preview-adb.php:360 settings.php:3056
2617
  msgid "Message CSS"
2618
  msgstr ""
2619
 
2620
+ #: includes/preview-adb.php:365 settings.php:3064
2621
  msgid "Overlay CSS"
2622
  msgstr ""
2623
 
2624
+ #: includes/preview.php:283
2625
  msgid "Sticky Code Preview"
2626
  msgstr ""
2627
 
2628
+ #: includes/preview.php:283
2629
  msgid "Code Preview"
2630
  msgstr ""
2631
 
2632
+ #: includes/preview.php:2353
2633
  msgid "Highlight inserted code"
2634
  msgstr ""
2635
 
2636
+ #: includes/preview.php:2353
2637
  msgid "Highlight"
2638
  msgstr ""
2639
 
2640
+ #: includes/preview.php:2356
2641
  msgid "Reset to block settings"
2642
  msgstr ""
2643
 
2644
+ #: includes/preview.php:2371
2645
  msgid "AdSense ad unit"
2646
  msgstr ""
2647
 
2648
+ #: includes/preview.php:2440
2649
  msgid "wrapping div"
2650
  msgstr ""
2651
 
2652
+ #: includes/preview.php:2445 includes/preview.php:2452
2653
  msgid "background"
2654
  msgstr ""
2655
 
2656
+ #: includes/preview.php:2479 includes/preview.php:2691 settings.php:1388
2657
  msgid "Alignment"
2658
  msgstr ""
2659
 
2660
+ #: includes/preview.php:2516
2661
  msgid "Repeat image"
2662
  msgstr ""
2663
 
2664
+ #: includes/preview.php:2598
2665
  msgid "Horizontal margin"
2666
  msgstr ""
2667
 
2668
+ #: includes/preview.php:2650
2669
  msgid "Vertical margin"
2670
  msgstr ""
2671
 
2672
+ #: includes/preview.php:2674
2673
  msgid "Animate"
2674
  msgstr ""
2675
 
2676
+ #: includes/preview.php:2746
2677
  msgid ""
2678
  "This is a preview of the code between dummy paragraphs. Here you can test "
2679
  "various block alignments, visually edit margin and padding values of the "
2683
  "restores all the values to those of the current block."
2684
  msgstr ""
2685
 
2686
+ #: includes/preview.php:2749
2687
  msgid ""
2688
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2689
  "code with the alignment and style as it is set for this block. Highlight "
2690
  "button highlights background, wrapping div margin and code area."
2691
  msgstr ""
2692
 
2693
+ #: includes/preview.php:2751
2694
  msgid ""
2695
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2696
  "code was loaded from your AdSense account. The ad block is displayed on a "
2698
  "highlight ad block."
2699
  msgstr ""
2700
 
2701
+ #: includes/preview.php:2757
2702
  msgid ""
2703
  "You can resize the window (and refresh the page to reload ads) to check "
2704
  "display with different screen widths.\n"
2706
  "settings will be copied to the active block."
2707
  msgstr ""
2708
 
2709
+ #: includes/preview.php:2759
2710
  msgid ""
2711
  "Please note that the code, block name, alignment and style are taken from "
2712
  "the current block settings (may not be saved).\n"
2714
  "padding can't be set. However, you can use own HTML code for the block."
2715
  msgstr ""
2716
 
2717
+ #: includes/preview.php:2764 includes/preview.php:2778
2718
+ #: includes/preview.php:2788 includes/preview.php:2798
2719
+ #: includes/preview.php:2808
2720
  msgid ""
2721
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2722
  "code with it's settings is called a block.\n"
2730
  "and manual insertion."
2731
  msgstr ""
2732
 
2733
+ #: includes/preview.php:2769 includes/preview.php:2783
2734
+ #: includes/preview.php:2793 includes/preview.php:2803
2735
+ #: includes/preview.php:2813
2736
  msgid ""
2737
  "Few very important things you need to know in order to insert code and "
2738
  "display some ad:\n"
2745
  "individual post/page exceptions."
2746
  msgstr ""
2747
 
2748
+ #: includes/preview.php:2775
2749
  msgid ""
2750
  "This is a preview of the code for sticky ads. Here you can test various "
2751
  "horizontal and vertical alignments, close button locations, visually edit "
2770
  msgid "Online documentation"
2771
  msgstr ""
2772
 
2773
+ #: settings.php:206 settings.php:805 settings.php:2422
2774
  msgid "Show AdSense ad units"
2775
  msgstr ""
2776
 
2778
  msgid "Edit ads.txt file"
2779
  msgstr ""
2780
 
2781
+ #: settings.php:218 settings.php:1214
2782
  msgid "Check theme for available positions for automatic insertion"
2783
  msgstr ""
2784
 
2889
  "fields empty for equal option shares."
2890
  msgstr ""
2891
 
2892
+ #: settings.php:309 settings.php:2151 settings.php:4501
2893
  msgid "Scheduling"
2894
  msgstr ""
2895
 
2911
  msgid "General Settings"
2912
  msgstr ""
2913
 
2914
+ #: settings.php:753 settings.php:2774 settings.php:2841 settings.php:3036
2915
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2916
  msgstr ""
2917
 
2918
+ #: settings.php:760
2919
  msgid "Toggle tools"
2920
  msgstr ""
2921
 
2922
+ #: settings.php:768
2923
  msgid "Process PHP code in block"
2924
  msgstr ""
2925
 
2926
+ #: settings.php:775
2927
  msgid "Disable insertion of this block"
2928
  msgstr ""
2929
 
2930
+ #: settings.php:787
2931
  msgid "Toggle code generator"
2932
  msgstr ""
2933
 
2934
+ #: settings.php:791
2935
  msgid "Toggle rotation editor"
2936
  msgstr ""
2937
 
2938
+ #: settings.php:795
2939
  msgid "Open visual HTML editor"
2940
  msgstr ""
2941
 
2942
+ #: settings.php:814
2943
  msgid "Clear block"
2944
  msgstr ""
2945
 
2946
+ #: settings.php:819 settings.php:4454
2947
  msgid "Copy block"
2948
  msgstr ""
2949
 
2950
+ #: settings.php:823
2951
  msgid "Paste name"
2952
  msgstr ""
2953
 
2954
+ #: settings.php:827
2955
  msgid "Paste code"
2956
  msgstr ""
2957
 
2958
+ #: settings.php:831
2959
  msgid "Paste settings"
2960
  msgstr ""
2961
 
2962
+ #: settings.php:835
2963
  msgid "Paste block (name, code and settings)"
2964
  msgstr ""
2965
 
2966
+ #: settings.php:854
2967
  msgid "Rotation groups"
2968
  msgstr ""
2969
 
2970
+ #: settings.php:858
2971
  msgid "Remove option"
2972
  msgstr ""
2973
 
2974
+ #: settings.php:862
2975
  msgid "Add option"
2976
  msgstr ""
2977
 
2978
+ #: settings.php:877
2979
  msgid "Import code"
2980
  msgstr ""
2981
 
2982
+ #: settings.php:881
2983
  msgid "Generate code"
2984
  msgstr ""
2985
 
2986
+ #: settings.php:886
2987
  msgid "Banner"
2988
  msgstr ""
2989
 
2990
+ #: settings.php:898
2991
  msgid "Image"
2992
  msgstr ""
2993
 
2994
+ #: settings.php:906
2995
  msgid "Alt text"
2996
  msgstr ""
2997
 
2998
+ #: settings.php:934
 
 
 
 
 
 
 
 
2999
  msgid "Select Image"
3000
  msgstr ""
3001
 
3002
+ #: settings.php:935
3003
  msgid "Select Placeholder"
3004
  msgstr ""
3005
 
3006
+ #: settings.php:947
3007
  msgid "Comment"
3008
  msgstr ""
3009
 
3010
+ #: settings.php:956
3011
  msgctxt "AdSense"
3012
  msgid "Publisher ID"
3013
  msgstr ""
3014
 
3015
+ #: settings.php:965
3016
  msgctxt "AdSense"
3017
  msgid "Ad Slot ID"
3018
  msgstr ""
3019
 
3020
+ #: settings.php:974
3021
  msgid "Ad Type"
3022
  msgstr ""
3023
 
3024
+ #: settings.php:999 settings.php:1140
3025
  msgid "AMP Ad"
3026
  msgstr ""
3027
 
3028
+ #: settings.php:1012 settings.php:1162
3029
  msgid "Block on consent"
3030
  msgstr ""
3031
 
3032
+ #: settings.php:1023
3033
  msgid "Show ad units from your AdSense account"
3034
  msgstr ""
3035
 
3036
+ #: settings.php:1023
3037
  msgid "AdSense ad units"
3038
  msgstr ""
3039
 
3040
+ #: settings.php:1040
3041
  msgctxt "AdSense"
3042
  msgid "Layout"
3043
  msgstr ""
3044
 
3045
+ #: settings.php:1049
3046
  msgctxt "AdSense"
3047
  msgid "Layout Key"
3048
  msgstr ""
3049
 
3050
+ #: settings.php:1059
3051
  msgid "Full width"
3052
  msgstr ""
3053
 
3054
+ #: settings.php:1061
3055
  msgctxt "Full width"
3056
  msgid "Enabled"
3057
  msgstr ""
3058
 
3059
+ #: settings.php:1062
3060
  msgctxt "Full width"
3061
  msgid "Disabled"
3062
  msgstr ""
3063
 
3064
+ #: settings.php:1180
3065
  msgid ""
3066
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3067
  "Cookie or Referer (domain)"
3068
  msgstr ""
3069
 
3070
+ #: settings.php:1180
3071
  msgid "Lists"
3072
  msgstr ""
3073
 
3074
+ #: settings.php:1181
3075
  msgid "Widget, Shortcode and PHP function call"
3076
  msgstr ""
3077
 
3078
+ #: settings.php:1181
3079
  msgid "Manual"
3080
  msgstr ""
3081
 
3082
+ #: settings.php:1182
3083
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3084
  msgstr ""
3085
 
3086
+ #: settings.php:1182
3087
  msgid "Devices"
3088
  msgstr ""
3089
 
3090
+ #: settings.php:1183
3091
  msgid ""
3092
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3093
  "feeds), Filter, Scheduling, General tag"
3094
  msgstr ""
3095
 
3096
+ #: settings.php:1183
3097
  msgid "Misc"
3098
  msgstr ""
3099
 
3100
+ #: settings.php:1184
3101
  msgid "Preview code and alignment"
3102
  msgstr ""
3103
 
3104
+ #: settings.php:1187 settings.php:2403
3105
  msgid ""
3106
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3107
  "editor is active before saving settings."
3108
  msgstr ""
3109
 
3110
+ #: settings.php:1200 settings.php:1201
3111
  msgid "Enable insertion on posts"
3112
  msgstr ""
3113
 
3114
+ #: settings.php:1201 settings.php:3630
3115
  msgid "Posts"
3116
  msgstr ""
3117
 
3118
+ #: settings.php:1205 settings.php:1206
3119
  msgid ""
3120
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3121
  "page or theme homepage (available positions may depend on hooks used by the "
3122
  "theme)"
3123
  msgstr ""
3124
 
3125
+ #: settings.php:1206 settings.php:3632
3126
  msgid "Homepage"
3127
  msgstr ""
3128
 
3129
+ #: settings.php:1210 settings.php:1211
3130
  msgid "Enable insertion on category blog pages (including sub-pages)"
3131
  msgstr ""
3132
 
3133
+ #: settings.php:1211 settings.php:3633
3134
  msgid "Category pages"
3135
  msgstr ""
3136
 
3137
+ #: settings.php:1221 settings.php:1222
3138
  msgid "Enable insertion on static pages"
3139
  msgstr ""
3140
 
3141
+ #: settings.php:1222 settings.php:3631
3142
  msgid "Static pages"
3143
  msgstr ""
3144
 
3145
+ #: settings.php:1226 settings.php:1227
3146
  msgid "Enable insertion on search blog pages"
3147
  msgstr ""
3148
 
3149
+ #: settings.php:1227 settings.php:3635
3150
  msgid "Search pages"
3151
  msgstr ""
3152
 
3153
+ #: settings.php:1231 settings.php:1232
3154
  msgid "Enable insertion on tag or archive blog pages"
3155
  msgstr ""
3156
 
3157
+ #: settings.php:1235
3158
  msgid "Toggle settings for default insertion and list of individual exceptions"
3159
  msgstr ""
3160
 
3161
+ #: settings.php:1247
3162
  msgid ""
3163
  "Enable individual post/page exceptions for insertion of this block. They can "
3164
  "be configured on the individual post/page editor page (in the settings below "
3165
  "the editor)."
3166
  msgstr ""
3167
 
3168
+ #: settings.php:1248
3169
  msgid ""
3170
  "Enable individual post/page exceptions for insertion of this block. When "
3171
  "enabled they can be configured on the individual post/page editor page (in "
3172
  "the settings below the editor)."
3173
  msgstr ""
3174
 
3175
+ #: settings.php:1248
3176
  msgid "Use exceptions for individual posts or pages to change insertion"
3177
  msgstr ""
3178
 
3179
  #. Translators: Enabled means...
3180
+ #: settings.php:1256
3181
  msgid ""
3182
  "means the insertion for this block is enabled by default and disabled for "
3183
  "exceptions."
3184
  msgstr ""
3185
 
3186
  #. Translators: Disabled means...
3187
+ #: settings.php:1257
3188
  msgid ""
3189
  "means the insertion for this block is disabled by default and enabled for "
3190
  "exceptions."
3191
  msgstr ""
3192
 
3193
+ #: settings.php:1258
3194
  msgid ""
3195
  "When individual post/page exceptions are enabled they can be configured on "
3196
  "the individual post/page editor page (in the settings below the editor)."
3197
  msgstr ""
3198
 
3199
+ #: settings.php:1266
3200
  msgid ""
3201
  "No exception for post or static page defined. Block will not be inserted."
3202
  msgstr ""
3203
 
3204
+ #: settings.php:1271
3205
  msgid ""
3206
  "Settings for individual exceptions have been updated. Please check all "
3207
  "blocks that have exceptions and and then save settings."
3208
  msgstr ""
3209
 
3210
+ #: settings.php:1284
3211
  msgctxt "post"
3212
  msgid "Type"
3213
  msgstr ""
3214
 
3215
  #. translators: %d: block number
3216
+ #: settings.php:1289
3217
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3218
  msgstr ""
3219
 
3220
+ #: settings.php:1290
3221
  msgid "Clear listed exceptions for block"
3222
  msgstr ""
3223
 
3224
+ #: settings.php:1319 settings.php:1467 settings.php:2148
3225
  msgid "Insertion"
3226
  msgstr ""
3227
 
3228
+ #: settings.php:1357
3229
  msgid ""
3230
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3231
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3235
  "negative number means counting from the opposite direction"
3236
  msgstr ""
3237
 
3238
+ #: settings.php:1358
3239
  msgid ""
3240
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3241
  "means every N images, empty means all images, 0 means random image, value "
3245
  "direction"
3246
  msgstr ""
3247
 
3248
+ #: settings.php:1371
3249
  msgid ""
3250
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3251
  "numbers, %N means every N excerpts, empty means all excerpts"
3252
  msgstr ""
3253
 
3254
+ #: settings.php:1372
3255
  msgid ""
3256
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3257
  "numbers, %N means every N posts, empty means all posts"
3258
  msgstr ""
3259
 
3260
+ #: settings.php:1373
3261
  msgid ""
3262
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3263
  "numbers, %N means every N comments, empty means all comments"
3264
  msgstr ""
3265
 
3266
+ #: settings.php:1380
3267
  msgid "Toggle paragraph counting settings"
3268
  msgstr ""
3269
 
3270
+ #: settings.php:1381
3271
  msgid "Toggle paragraph clearance settings"
3272
  msgstr ""
3273
 
3274
+ #: settings.php:1384
3275
  msgid "Toggle insertion filter settings"
3276
  msgstr ""
3277
 
3278
+ #: settings.php:1402
3279
  msgid "Toggle insertion and alignment icons"
3280
  msgstr ""
3281
 
3282
+ #: settings.php:1416
3283
  msgid "Custom CSS code for the wrapping div"
3284
  msgstr ""
3285
 
3286
+ #: settings.php:1419 settings.php:1420 settings.php:1421 settings.php:1422
3287
+ #: settings.php:1423 settings.php:1424
3288
  msgid "CSS code for the wrapping div, click to edit"
3289
  msgstr ""
3290
 
3291
+ #: settings.php:1437
3292
  msgid "HTML element"
3293
  msgstr ""
3294
 
3295
+ #: settings.php:1450
3296
  msgid "HTML element selector or comma separated list of selectors"
3297
  msgstr ""
3298
 
3299
+ #: settings.php:1456 settings.php:2932
3300
  msgid "Action"
3301
  msgstr ""
3302
 
3303
+ #: settings.php:1468
3304
  msgid ""
3305
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3306
  "Server-side insertion inserts block when the page is generated but needs "
3307
  "Output buffering enabled."
3308
  msgstr ""
3309
 
3310
+ #: settings.php:1478
3311
  msgid "Wait for"
3312
  msgstr ""
3313
 
3314
+ #: settings.php:1490
3315
  msgid "Wait for HTML element to be loaded"
3316
  msgstr ""
3317
 
3318
+ #: settings.php:1497
3319
  msgid "Time in ms to delay insertion"
3320
  msgstr ""
3321
 
3322
+ #: settings.php:1502
3323
  msgid "Code position"
3324
  msgstr ""
3325
 
3326
+ #: settings.php:1503
3327
  msgid ""
3328
  "Page position where the code for client-side insertion will be inserted."
3329
  msgstr ""
3330
 
3331
+ #: settings.php:1521
3332
  msgid "Count"
3333
  msgstr ""
3334
 
3335
+ #: settings.php:1527
3336
  msgid "paragraphs with tags"
3337
  msgstr ""
3338
 
3339
+ #: settings.php:1533
3340
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3341
  msgstr ""
3342
 
3343
+ #: settings.php:1542
3344
  msgid "that have between"
3345
  msgstr ""
3346
 
3347
+ #: settings.php:1548
3348
  msgid "Minimum number of paragraph words, leave empty for no limit"
3349
  msgstr ""
3350
 
3351
+ #: settings.php:1557
3352
  msgid "Maximum number of paragraph words, leave empty for no limit"
3353
  msgstr ""
3354
 
3355
+ #: settings.php:1560
3356
  msgid "words"
3357
  msgstr ""
3358
 
3359
+ #: settings.php:1575 settings.php:1622 settings.php:1736 settings.php:1762
3360
  msgid "Comma separated texts"
3361
  msgstr ""
3362
 
3363
  #. translators: inside [HTML tags] elements that contain
3364
+ #: settings.php:1594
3365
  msgid "inside"
3366
  msgstr ""
3367
 
3368
+ #: settings.php:1600
3369
  msgid "Comma separated HTML tag names of container elements"
3370
  msgstr ""
3371
 
3372
  #. translators: inside [HTML tags] elements that contain
3373
+ #: settings.php:1609
3374
  msgid "elements that"
3375
  msgstr ""
3376
 
3377
+ #: settings.php:1632
3378
  msgid ""
3379
  "Count also paragraphs inside these elements - defined on general plugin "
3380
  "settings page - tab [*] / tab General"
3381
  msgstr ""
3382
 
3383
+ #: settings.php:1639 settings.php:1640
3384
  msgid ""
3385
  "If checked it will search for the text only in tag attributes like [[id]], "
3386
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
3387
  "will be searched."
3388
  msgstr ""
3389
 
3390
+ #: settings.php:1640
3391
  msgid "Check only tag attributes"
3392
  msgstr ""
3393
 
3394
  #. Translators: %s: HTML tags
3395
+ #: settings.php:1645
3396
  msgid "Count inside %s elements"
3397
  msgstr ""
3398
 
3399
  #. Translators: Do not insert for first X and last Y paragraphs
3400
+ #: settings.php:1653
3401
  msgid "Do not insert for first"
3402
  msgid_plural "Do not insert for first"
3403
  msgstr[0] ""
3404
  msgstr[1] ""
3405
 
3406
+ #: settings.php:1659
3407
  msgid ""
3408
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3409
  "first paragraphs"
3410
  msgstr ""
3411
 
3412
  #. Translators: Do not insert for first X and last Y paragraphs
3413
+ #: settings.php:1662
3414
  msgid "and last"
3415
  msgid_plural "and last"
3416
  msgstr[0] ""
3417
  msgstr[1] ""
3418
 
3419
+ #: settings.php:1668
3420
  msgid ""
3421
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3422
  "last paragraphs"
3424
 
3425
  #. Translators: Do not insert for first X and last Y paragraphs
3426
  #. Translators: Post/Static page must have between X and Y paragraphs
3427
+ #: settings.php:1671 settings.php:1697
3428
  msgid "paragraph"
3429
  msgid_plural "paragraphs"
3430
  msgstr[0] ""
3431
  msgstr[1] ""
3432
 
3433
+ #: settings.php:1679 settings.php:2280
3434
  msgid "Post/Static page must have between"
3435
  msgstr ""
3436
 
3437
+ #: settings.php:1685
3438
  msgid "Minimum number of paragraphs, leave empty for no limit"
3439
  msgstr ""
3440
 
3441
+ #: settings.php:1694
3442
  msgid "Maximum number of paragraphs, leave empty for no limit"
3443
  msgstr ""
3444
 
3445
+ #: settings.php:1705
3446
  msgid "Minimum number of words in paragraphs above"
3447
  msgstr ""
3448
 
3449
+ #: settings.php:1711
3450
  msgid ""
3451
  "Used only with automatic insertion After paragraph and empty paragraph "
3452
  "numbers"
3453
  msgstr ""
3454
 
3455
+ #: settings.php:1721 settings.php:1747
3456
  msgid "In"
3457
  msgstr ""
3458
 
3459
+ #: settings.php:1727
3460
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3461
  msgstr ""
3462
 
3463
+ #: settings.php:1730
3464
  msgid "paragraphs above avoid"
3465
  msgstr ""
3466
 
3467
+ #: settings.php:1753
3468
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3469
  msgstr ""
3470
 
3471
+ #: settings.php:1756
3472
  msgid "paragraphs below avoid"
3473
  msgstr ""
3474
 
3475
+ #: settings.php:1772
3476
  msgid "If text is found"
3477
  msgstr ""
3478
 
3479
+ #: settings.php:1779
3480
  msgid "check up to"
3481
  msgstr ""
3482
 
3483
+ #: settings.php:1787
3484
  msgctxt "check up to"
3485
  msgid "paragraphs"
3486
  msgstr ""
3487
 
3488
+ #: settings.php:1803
3489
  msgid "Categories"
3490
  msgstr ""
3491
 
3492
+ #: settings.php:1806
3493
  msgid "Toggle category editor"
3494
  msgstr ""
3495
 
3496
+ #: settings.php:1809
3497
  msgid "Comma separated category slugs"
3498
  msgstr ""
3499
 
3500
+ #: settings.php:1826
3501
  msgid "Tags"
3502
  msgstr ""
3503
 
3504
+ #: settings.php:1829
3505
  msgid "Toggle tag editor"
3506
  msgstr ""
3507
 
3508
+ #: settings.php:1832
3509
  msgid "Comma separated tag slugs"
3510
  msgstr ""
3511
 
3512
+ #: settings.php:1849
3513
  msgid "Taxonomies"
3514
  msgstr ""
3515
 
3516
+ #: settings.php:1852
3517
  msgid "Toggle taxonomy editor"
3518
  msgstr ""
3519
 
3520
+ #: settings.php:1855
3521
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3522
  msgstr ""
3523
 
3524
+ #: settings.php:1872
3525
  msgid "Post IDs"
3526
  msgstr ""
3527
 
3528
+ #: settings.php:1875
3529
  msgid "Toggle post/page ID editor"
3530
  msgstr ""
3531
 
3532
+ #: settings.php:1878
3533
  msgid "Comma separated post/page IDs"
3534
  msgstr ""
3535
 
3536
+ #: settings.php:1895
3537
  msgid "Urls"
3538
  msgstr ""
3539
 
3540
+ #: settings.php:1898
3541
  msgid "Toggle url editor"
3542
  msgstr ""
3543
 
3544
+ #: settings.php:1901
3545
  msgid ""
3546
  "Comma separated urls (page addresses) starting with / after domain name (e."
3547
  "g. /permalink-url, use only when you need to taget a specific url not "
3549
  "start*. *url-pattern*, *url-end)"
3550
  msgstr ""
3551
 
3552
+ #: settings.php:1917
3553
  msgid "Url parameters"
3554
  msgstr ""
3555
 
3556
+ #: settings.php:1921
3557
  msgid "Toggle url parameter and cookie editor"
3558
  msgstr ""
3559
 
3560
+ #: settings.php:1924
3561
  msgid ""
3562
  "Comma separated url query parameters or cookies with optional values (use "
3563
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
3564
  msgstr ""
3565
 
3566
+ #: settings.php:1940
3567
  msgid "Cookies"
3568
  msgstr ""
3569
 
3570
+ #: settings.php:1944
3571
  msgid "Toggle cookie editor"
3572
  msgstr ""
3573
 
3574
+ #: settings.php:1947
3575
  msgid ""
3576
  "Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
3577
  msgstr ""
3578
 
3579
+ #: settings.php:1963
3580
  msgid "Referrers"
3581
  msgstr ""
3582
 
3583
+ #: settings.php:1966
3584
  msgid "Toggle referer editor"
3585
  msgstr ""
3586
 
3587
+ #: settings.php:1969
3588
  msgid ""
3589
  "Comma separated domains, use # for no referrer, you can also use partial "
3590
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3591
  msgstr ""
3592
 
3593
+ #: settings.php:1985
3594
  msgid "Clients"
3595
  msgstr ""
3596
 
3597
+ #: settings.php:1988
3598
  msgid "Toggle client editor"
3599
  msgstr ""
3600
 
3601
+ #: settings.php:1991
3602
  msgid ""
3603
  "Comma separated names (operating systems, browsers, devices). You can also "
3604
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
3605
  "pattern*, *user-agent-end)"
3606
  msgstr ""
3607
 
3608
+ #: settings.php:2017
3609
  msgid "Enable widget for this block"
3610
  msgstr ""
3611
 
3612
+ #: settings.php:2022
3613
  msgid "Sidebars (or widget positions) where this widget is used"
3614
  msgstr ""
3615
 
3616
+ #: settings.php:2029
3617
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3618
  msgstr ""
3619
 
3620
+ #: settings.php:2030 settings.php:4511
3621
  msgid "Shortcode"
3622
  msgstr ""
3623
 
3624
+ #: settings.php:2045
3625
  msgid ""
3626
  "Enable PHP function call to insert this block at any position in theme file. "
3627
  "If function is disabled for block it will return empty string."
3628
  msgstr ""
3629
 
3630
+ #: settings.php:2046
3631
  msgid "PHP function"
3632
  msgstr ""
3633
 
3634
+ #: settings.php:2061
3635
  msgid "Client-side device detection"
3636
  msgstr ""
3637
 
3638
+ #: settings.php:2062
3639
  msgid "Server-side device detection"
3640
  msgstr ""
3641
 
3642
+ #: settings.php:2069
3643
  msgid "Use client-side detection to"
3644
  msgstr ""
3645
 
3646
+ #: settings.php:2071
3647
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3648
  msgstr ""
3649
 
3650
  #. Translators: only on (the following devices): viewport names (devices)
3651
  #. listed
3652
+ #: settings.php:2076
3653
  msgid "only on"
3654
  msgstr ""
3655
 
3656
+ #: settings.php:2104
3657
  msgid "Device min width %s px"
3658
  msgstr ""
3659
 
3660
+ #: settings.php:2130
3661
  msgid "Use server-side detection to insert block only for"
3662
  msgstr ""
3663
 
3664
+ #: settings.php:2149
3665
  msgid "Filter"
3666
  msgstr ""
3667
 
3668
+ #: settings.php:2150
3669
  msgid "Word Count"
3670
  msgstr ""
3671
 
3672
+ #: settings.php:2152
3673
  msgid "Display"
3674
  msgstr ""
3675
 
3676
+ #: settings.php:2154 settings.php:2448
3677
  msgid "General"
3678
  msgstr ""
3679
 
3680
+ #: settings.php:2166
3681
  msgid "Old settings for AMP pages detected"
3682
  msgstr ""
3683
 
3684
+ #: settings.php:2166
3685
  msgid ""
3686
  "To insert different codes on normal and AMP pages separate them with "
3687
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3688
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3689
  msgstr ""
3690
 
3691
+ #: settings.php:2166
3692
  msgid "AMP pages"
3693
  msgstr ""
3694
 
3695
+ #: settings.php:2171
3696
  msgid "Enable insertion for Ajax requests"
3697
  msgstr ""
3698
 
3699
+ #: settings.php:2171
3700
  msgid "Ajax requests"
3701
  msgstr ""
3702
 
3703
+ #: settings.php:2176
3704
  msgid "Enable insertion in RSS feeds"
3705
  msgstr ""
3706
 
3707
+ #: settings.php:2176
3708
  msgid "RSS Feed"
3709
  msgstr ""
3710
 
3711
+ #: settings.php:2181
3712
  msgid "Enable insertion on page for Error 404: Page not found"
3713
  msgstr ""
3714
 
3715
+ #: settings.php:2181
3716
  msgid "Error 404 page"
3717
  msgstr ""
3718
 
3719
+ #: settings.php:2193
3720
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3721
  msgstr ""
3722
 
3723
+ #: settings.php:2194
3724
  msgid "insertions"
3725
  msgstr ""
3726
 
3727
+ #: settings.php:2196
3728
  msgid ""
3729
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3730
  "General)"
3731
  msgstr ""
3732
 
3733
+ #: settings.php:2199 settings.php:2636
3734
  msgid "Max blocks per page"
3735
  msgstr ""
3736
 
3737
+ #: settings.php:2211
3738
  msgid "Insert for"
3739
  msgstr ""
3740
 
3741
+ #: settings.php:2219
3742
  msgid ""
3743
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
3744
  "is currently active). Might speed up insertion on content pages when "
3745
  "[[the_content]] filter hook is called multiple times."
3746
  msgstr ""
3747
 
3748
+ #: settings.php:2223
3749
  msgid "Insert only in the loop"
3750
  msgstr ""
3751
 
3752
+ #: settings.php:2226
3753
  msgid ""
3754
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
3755
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
3757
  "footer."
3758
  msgstr ""
3759
 
3760
+ #: settings.php:2230
3761
  msgid "Embed JS code"
3762
  msgstr ""
3763
 
3764
+ #: settings.php:2233
3765
  msgid ""
3766
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3767
  msgstr ""
3768
 
3769
+ #: settings.php:2237
3770
  msgid "Disable caching"
3771
  msgstr ""
3772
 
3773
+ #: settings.php:2249
3774
  msgid "Filter insertions"
3775
  msgstr ""
3776
 
3777
+ #: settings.php:2252
3778
  msgid ""
3779
  "Filter multiple insertions by specifying wanted insertions for this block - "
3780
  "single number, comma separated numbers or %N for every N insertions - empty "
3782
  "using only one insertion type."
3783
  msgstr ""
3784
 
3785
+ #: settings.php:2255
3786
  msgid "using"
3787
  msgstr ""
3788
 
3789
+ #: settings.php:2274
3790
  msgid "Checked means specified calls are unwanted"
3791
  msgstr ""
3792
 
3793
+ #: settings.php:2274
3794
  msgid "Invert filter"
3795
  msgstr ""
3796
 
3797
+ #: settings.php:2281
3798
  msgid "Minimum number of post/static page words, leave empty for no limit"
3799
  msgstr ""
3800
 
3801
+ #: settings.php:2283
3802
  msgid "Maximum number of post/static page words, leave empty for no limit"
3803
  msgstr ""
3804
 
3805
+ #: settings.php:2296
3806
  msgid "for"
3807
  msgstr ""
3808
 
3809
+ #: settings.php:2296
3810
  msgid "days after publishing"
3811
  msgstr ""
3812
 
3813
+ #: settings.php:2298
3814
  msgid "Not available"
3815
  msgstr ""
3816
 
3817
  #. Translators: do not translate [[width]] - it is a CSS property
3818
+ #: settings.php:2310
3819
  msgid ""
3820
  "Block width: empty means width not defined, number means width in pixels, "
3821
  "any other value means CSS [[width]] property"
3822
  msgstr ""
3823
 
3824
  #. Translators: do not translate [[height]] - it is a CSS property
3825
+ #: settings.php:2314
3826
  msgid ""
3827
  "Block height: empty means height not defined, number means height in pixels, "
3828
  "any other value means CSS [[height]] property"
3829
  msgstr ""
3830
 
3831
+ #: settings.php:2320
3832
+ msgid ""
3833
+ "Block background: empty means background not defined, #hex number means HTML "
3834
+ "color"
3835
+ msgstr ""
3836
+
3837
+ #: settings.php:2327 settings.php:2628
3838
  msgid "Ad label"
3839
  msgstr ""
3840
 
3841
+ #: settings.php:2350
3842
  msgid "General tag"
3843
  msgstr ""
3844
 
3845
+ #: settings.php:2354
3846
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3847
  msgstr ""
3848
 
3849
  #. translators: %s: HTML tags
3850
+ #: settings.php:2363
3851
  msgid ""
3852
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3853
  "client-side device detection!"
3854
  msgstr ""
3855
 
3856
  #. translators: %s: HTML tags for text and link
3857
+ #: settings.php:2377
3858
  msgid ""
3859
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3860
  "side %s insertion. Use %s Server-side %s insertion."
3861
  msgstr ""
3862
 
3863
+ #: settings.php:2393
3864
  msgid "Settings"
3865
  msgstr ""
3866
 
3867
+ #: settings.php:2396
3868
  msgid "Settings timestamp"
3869
  msgstr ""
3870
 
3871
+ #: settings.php:2412
3872
  msgid "Are you sure you want to reset all settings?"
3873
  msgstr ""
3874
 
3875
+ #: settings.php:2412
3876
  msgid "Reset All Settings"
3877
  msgstr ""
3878
 
3879
+ #: settings.php:2449
3880
  msgid "Viewports"
3881
  msgstr ""
3882
 
3883
+ #: settings.php:2450
3884
  msgid "Hooks"
3885
  msgstr ""
3886
 
3887
+ #: settings.php:2451
3888
  msgid "Header"
3889
  msgstr ""
3890
 
3891
+ #: settings.php:2452 strings.php:30
3892
  msgid "Footer"
3893
  msgstr ""
3894
 
3895
+ #: settings.php:2457
3896
  msgid "Debugging"
3897
  msgstr ""
3898
 
3899
+ #: settings.php:2467
3900
  msgid "Plugin priority"
3901
  msgstr ""
3902
 
3903
+ #: settings.php:2475
3904
  msgid "Output buffering"
3905
  msgstr ""
3906
 
3907
+ #: settings.php:2478
3908
  msgid "Needed for position Above header but may not work with all themes"
3909
  msgstr ""
3910
 
3911
+ #: settings.php:2486
3912
  msgid "Syntax highlighting theme"
3913
  msgstr ""
3914
 
3915
+ #: settings.php:2493
3916
  msgctxt "no syntax highlighting themes"
3917
  msgid "None"
3918
  msgstr ""
3919
 
3920
+ #: settings.php:2494
3921
  msgid "No Syntax Highlighting"
3922
  msgstr ""
3923
 
3924
+ #: settings.php:2496
3925
  msgctxt "syntax highlighting themes"
3926
  msgid "Light"
3927
  msgstr ""
3928
 
3929
+ #: settings.php:2511
3930
  msgctxt "syntax highlighting themes"
3931
  msgid "Dark"
3932
  msgstr ""
3933
 
3934
+ #: settings.php:2537
3935
  msgid "Tab setup delay"
3936
  msgstr ""
3937
 
3938
+ #: settings.php:2545
3939
  msgid "Min. user role for ind. exceptions editing"
3940
  msgstr ""
3941
 
3942
+ #: settings.php:2555
3943
  msgid "Disable caching for logged in administrators"
3944
  msgstr ""
3945
 
3946
+ #: settings.php:2558
3947
  msgid ""
3948
  "Enabled means that logged in administrators will see non-cached (live) pages "
3949
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3950
  msgstr ""
3951
 
3952
+ #: settings.php:2566
3953
  msgid "Wait for jQuery"
3954
  msgstr ""
3955
 
3956
+ #: settings.php:2569
3957
  msgid ""
3958
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
3959
  "it will run the scripts that may need it"
3960
  msgstr ""
3961
 
3962
+ #: settings.php:2577
3963
  msgid "Sticky widget mode"
3964
  msgstr ""
3965
 
3966
+ #: settings.php:2580
3967
  msgid ""
3968
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3969
  "mode works with most themes but may reload ads on page load."
3970
  msgstr ""
3971
 
3972
+ #: settings.php:2588
3973
  msgid "Sticky widget top margin"
3974
  msgstr ""
3975
 
3976
+ #: settings.php:2596
3977
  msgid "Dynamic blocks"
3978
  msgstr ""
3979
 
3980
+ #: settings.php:2609
3981
  msgid "Functions for paragraph counting"
3982
  msgstr ""
3983
 
3984
+ #: settings.php:2612
3985
  msgid ""
3986
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3987
  "functions if paragraphs are not counted properly on non-english pages."
3988
  msgstr ""
3989
 
3990
+ #: settings.php:2620
3991
  msgid "No paragraph counting inside"
3992
  msgstr ""
3993
 
3994
+ #: settings.php:2631
3995
  msgid "Label text or HTML code"
3996
  msgstr ""
3997
 
3998
+ #: settings.php:2639
3999
  msgid ""
4000
  "Maximum number of inserted blocks per page. You need to enable Max page "
4001
  "insertions (button Misc / tab Insertion) to count block for this limit."
4002
  msgstr ""
4003
 
4004
+ #: settings.php:2653
4005
  msgid "Plugin usage tracking"
4006
  msgstr ""
4007
 
4008
  #. translators: %s: Ad Inserter
4009
+ #: settings.php:2656
4010
  msgid ""
4011
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4012
  "Only information regarding the WordPress environment and %s usage is "
4013
  "recorded (once per month and on events like plugin activation/deactivation)."
4014
  msgstr ""
4015
 
4016
+ #: settings.php:2674
4017
  msgid "CSS class name for the wrapping div"
4018
  msgstr ""
4019
 
4020
+ #: settings.php:2674
4021
  msgid "Block class name"
4022
  msgstr ""
4023
 
4024
+ #: settings.php:2680
4025
  msgid "Include block number class"
4026
  msgstr ""
4027
 
4028
+ #: settings.php:2680
4029
  msgid "Block number class"
4030
  msgstr ""
4031
 
4032
+ #: settings.php:2685
4033
  msgid "Include block name class"
4034
  msgstr ""
4035
 
4036
+ #: settings.php:2685
4037
  msgid "Block name class"
4038
  msgstr ""
4039
 
4040
+ #: settings.php:2690
4041
  msgid ""
4042
  "Instead of alignment classes generate inline alignment styles for blocks"
4043
  msgstr ""
4044
 
4045
+ #: settings.php:2690
4046
  msgid "Inline styles"
4047
  msgstr ""
4048
 
4049
+ #: settings.php:2696
4050
  msgid "Preview of the block wrapping code"
4051
  msgstr ""
4052
 
4053
+ #: settings.php:2697
4054
  msgid "Wrapping div"
4055
  msgstr ""
4056
 
4057
+ #: settings.php:2698 settings.php:3174
4058
  msgid "BLOCK CODE"
4059
  msgstr ""
4060
 
4061
+ #: settings.php:2706
4062
  msgid "Viewport Settings used for client-side device detection"
4063
  msgstr ""
4064
 
4065
  #. Translators: %d: viewport number
4066
+ #: settings.php:2714
4067
  msgid "Viewport %d name"
4068
  msgstr ""
4069
 
4070
+ #: settings.php:2717
4071
  msgid "min width"
4072
  msgstr ""
4073
 
4074
+ #: settings.php:2728
4075
  msgid "Custom Hooks"
4076
  msgstr ""
4077
 
4078
+ #: settings.php:2740 settings.php:2743
4079
  msgid "Enable hook"
4080
  msgstr ""
4081
 
4082
  #. translators: %d: hook number
4083
+ #: settings.php:2743
4084
  msgid "Hook %d name"
4085
  msgstr ""
4086
 
4087
+ #: settings.php:2746
4088
  msgid "Hook name for automatic insertion selection"
4089
  msgstr ""
4090
 
4091
+ #: settings.php:2749
4092
  msgid "action"
4093
  msgstr ""
4094
 
4095
+ #: settings.php:2752
4096
  msgid "Action name as used in the do_action () function"
4097
  msgstr ""
4098
 
4099
+ #: settings.php:2755
4100
  msgid "priority"
4101
  msgstr ""
4102
 
4103
+ #: settings.php:2758
4104
  msgid "Priority for the hook (default is 10)"
4105
  msgstr ""
4106
 
4107
+ #: settings.php:2779
4108
  msgid "Enable insertion of this code into HTML page header"
4109
  msgstr ""
4110
 
4111
+ #: settings.php:2783 settings.php:2850 settings.php:3041
4112
  msgid "Process PHP code"
4113
  msgstr ""
4114
 
4115
+ #: settings.php:2787
4116
  msgid "HTML Page Header Code"
4117
  msgstr ""
4118
 
4119
+ #: settings.php:2795
4120
  msgid "Code in the %s section of the HTML page"
4121
  msgstr ""
4122
 
4123
+ #: settings.php:2796
4124
  msgctxt "code in the header"
4125
  msgid "NOT ENABLED"
4126
  msgstr ""
4127
 
4128
+ #: settings.php:2813 settings.php:2881
4129
  msgid "Use server-side detection to insert code only for"
4130
  msgstr ""
4131
 
4132
+ #: settings.php:2828
4133
  msgid ""
4134
  "Enable insertion of this code into HTML page header on page for Error 404: "
4135
  "Page not found"
4136
  msgstr ""
4137
 
4138
+ #: settings.php:2828 settings.php:2896
4139
  msgid "Insert on Error 404 page"
4140
  msgstr ""
4141
 
4142
+ #: settings.php:2846
4143
  msgid "Enable insertion of this code into HTML page footer"
4144
  msgstr ""
4145
 
4146
+ #: settings.php:2854
4147
  msgid "HTML Page Footer Code"
4148
  msgstr ""
4149
 
4150
  #. translators: %s: HTML tags
4151
+ #: settings.php:2862
4152
  msgid "Code before the %s tag of the HTML page"
4153
  msgstr ""
4154
 
4155
+ #: settings.php:2863
4156
  msgctxt "code in the footer"
4157
  msgid "NOT ENABLED"
4158
  msgstr ""
4159
 
4160
+ #: settings.php:2896
4161
  msgid ""
4162
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4163
  "Page not found"
4164
  msgstr ""
4165
 
4166
+ #: settings.php:2912
4167
  msgid "Code for ad blocking detection inserted. Click for details."
4168
  msgstr ""
4169
 
4170
+ #: settings.php:2917
4171
  msgid "Enable detection of ad blocking"
4172
  msgstr ""
4173
 
4174
+ #: settings.php:2935
4175
  msgid "Global action when ad blocking is detected"
4176
  msgstr ""
4177
 
4178
+ #: settings.php:2941
4179
  msgid "No action for"
4180
  msgstr ""
4181
 
4182
+ #: settings.php:2942
4183
  msgid "Exceptions for global action when ad blocking is detected."
4184
  msgstr ""
4185
 
4186
+ #: settings.php:2952
4187
  msgid "Delay Action"
4188
  msgstr ""
4189
 
4190
+ #: settings.php:2955
4191
  msgid ""
4192
  "Number of page views to delay action when ad blocking is detected. Leave "
4193
  "empty for no delay (action fires on first page view). Sets cookie."
4194
  msgstr ""
4195
 
4196
+ #: settings.php:2955
4197
  msgctxt "Delay Action for x "
4198
  msgid "page views"
4199
  msgstr ""
4200
 
4201
+ #: settings.php:2960
4202
  msgid "No Action Period"
4203
  msgstr ""
4204
 
4205
+ #: settings.php:2963
4206
  msgid ""
4207
  "Number of days to supress action when ad blocking is detected. Leave empty "
4208
  "for no no-action period (action fires always after defined page view delay). "
4209
  "Sets cookie."
4210
  msgstr ""
4211
 
4212
+ #: settings.php:2963
4213
  msgctxt "no action period"
4214
  msgid "days"
4215
  msgstr ""
4216
 
4217
+ #: settings.php:2968
4218
  msgid "Custom Selectors"
4219
  msgstr ""
4220
 
4221
+ #: settings.php:2971
4222
  msgid ""
4223
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4224
  "blocking detection. Invisible element or element with zero height means ad "
4225
  "blocking is present."
4226
  msgstr ""
4227
 
4228
+ #: settings.php:2978
4229
  msgid ""
4230
  "Use external scripts for ad blocking detection. Disable when you need to "
4231
  "obtain user consent before collecting personal information. In such case use "
4232
  "shortcut to insert external scripts after the consent is given."
4233
  msgstr ""
4234
 
4235
+ #: settings.php:2978
4236
  msgid "Use external scripts"
4237
  msgstr ""
4238
 
4239
+ #: settings.php:2992
4240
  msgid "Redirection Page"
4241
  msgstr ""
4242
 
4243
+ #: settings.php:3004
4244
  msgid "Custom Url"
4245
  msgstr ""
4246
 
4247
+ #: settings.php:3009
4248
  msgid ""
4249
  "Static page for redirection when ad blocking is detected. For other pages "
4250
  "select Custom url and set it below."
4251
  msgstr ""
4252
 
4253
+ #: settings.php:3018
4254
  msgid "Custom Redirection Url"
4255
  msgstr ""
4256
 
4257
+ #: settings.php:3030
4258
  msgid "Message HTML code"
4259
  msgstr ""
4260
 
4261
+ #: settings.php:3043
4262
  msgid "Preview message when ad blocking is detected"
4263
  msgstr ""
4264
 
4265
+ #: settings.php:3072
4266
  msgid "Prevent visitors from closing the warning message"
4267
  msgstr ""
4268
 
4269
+ #: settings.php:3072
4270
  msgid "Undismissible Message"
4271
  msgstr ""
4272
 
4273
+ #: settings.php:3078
4274
  msgid "Not undismissible for"
4275
  msgstr ""
4276
 
4277
+ #: settings.php:3079
4278
  msgid "Users which can close the warning message."
4279
  msgstr ""
4280
 
4281
+ #: settings.php:3116
4282
  msgid ""
4283
  "Force showing admin toolbar for administrators when viewing site. Enable "
4284
  "this option when you are logged in as admin and you don't see admin toolbar."
4285
  msgstr ""
4286
 
4287
+ #: settings.php:3124
4288
  msgid "Disable header code (Header tab)"
4289
  msgstr ""
4290
 
4291
+ #: settings.php:3128
4292
  msgid "Disable footer code (Footer tab)"
4293
  msgstr ""
4294
 
4295
  #. translators: %s: Ad Inserter
4296
+ #: settings.php:3132
4297
  msgid "Disable %s JavaScript code"
4298
  msgstr ""
4299
 
4300
  #. translators: %s: Ad Inserter
4301
+ #: settings.php:3136
4302
  msgid "Disable %s CSS code"
4303
  msgstr ""
4304
 
4305
  #. translators: %s: Ad Inserter
4306
+ #: settings.php:3140
4307
  msgid "Disable %s HTML code"
4308
  msgstr ""
4309
 
4310
+ #: settings.php:3144
4311
  msgid ""
4312
  "Disable PHP code processing (in all blocks including header and footer code)"
4313
  msgstr ""
4314
 
4315
+ #: settings.php:3148
4316
  msgid "Disable insertion of all blocks"
4317
  msgstr ""
4318
 
4319
+ #: settings.php:3152
4320
  msgid "Disable insertions"
4321
  msgstr ""
4322
 
4323
  #. translators: %s: Ad Inserter
4324
+ #: settings.php:3164
4325
  msgid "%s CSS CODE"
4326
  msgstr ""
4327
 
4328
+ #: settings.php:3167
4329
  msgid "HEADER CODE"
4330
  msgstr ""
4331
 
4332
  #. translators: %s: PHP tags
4333
+ #: settings.php:3173
4334
  msgid "BLOCK PHP CODE"
4335
  msgstr ""
4336
 
4337
  #. translators: %s: Ad Inserter
4338
+ #: settings.php:3178
4339
  msgid "%s HTML CODE"
4340
  msgstr ""
4341
 
4342
  #. translators: %s: Ad Inserter
4343
+ #: settings.php:3180
4344
  msgid "%s JS CODE"
4345
  msgstr ""
4346
 
4347
+ #: settings.php:3183
4348
  msgid "FOOTER CODE"
4349
  msgstr ""
4350
 
4351
+ #: settings.php:3192
4352
  msgid "Force showing admin toolbar when viewing site"
4353
  msgstr ""
4354
 
4355
+ #: settings.php:3199
4356
  msgid "Enable debugging functions in admin toolbar"
4357
  msgstr ""
4358
 
4359
+ #: settings.php:3201
4360
  msgid "Debugging functions in admin toolbar"
4361
  msgstr ""
4362
 
4363
+ #: settings.php:3208
4364
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4365
  msgstr ""
4366
 
4367
+ #: settings.php:3210
4368
  msgid "Debugging functions on mobile screens"
4369
  msgstr ""
4370
 
4371
+ #: settings.php:3230
4372
  msgid ""
4373
  "Disable translation to see original texts for the settings and messages in "
4374
  "English"
4375
  msgstr ""
4376
 
4377
+ #: settings.php:3232
4378
  msgid "Disable translation"
4379
  msgstr ""
4380
 
4381
+ #: settings.php:3618
4382
  msgid "Available positions for current theme"
4383
  msgstr ""
4384
 
4385
+ #: settings.php:3619
4386
  msgid "Error checking pages"
4387
  msgstr ""
4388
 
4389
+ #: settings.php:3622
4390
  msgid "Toggle theme checker for available positions for automatic insertion"
4391
  msgstr ""
4392
 
4393
+ #: settings.php:3622
4394
  msgctxt "Button"
4395
  msgid "Check"
4396
  msgstr ""
4397
 
4398
+ #: settings.php:3629
4399
  msgid "Position"
4400
  msgstr ""
4401
 
4402
+ #: settings.php:3634
4403
  msgid "Archive pages"
4404
  msgstr ""
4405
 
4406
+ #: settings.php:3693
4407
  msgid ""
4408
  "Position not available because output buffering (tab [*]) is not enabled"
4409
  msgstr ""
4410
 
4411
+ #: settings.php:3696 strings.php:251
4412
  msgid "Position not checked yet"
4413
  msgstr ""
4414
 
4415
+ #: settings.php:3732
4416
  msgid "Toggle active/all blocks"
4417
  msgstr ""
4418
 
4419
+ #: settings.php:3737 strings.php:238
4420
  msgid "Rearrange block order"
4421
  msgstr ""
4422
 
4423
+ #: settings.php:3743
4424
  msgid "Save new block order"
4425
  msgstr ""
4426
 
4427
+ #: settings.php:3769
4428
  msgid "Toggle active/all ad units"
4429
  msgstr ""
4430
 
4431
+ #: settings.php:3773
4432
  msgid "Reload AdSense ad units"
4433
  msgstr ""
4434
 
4435
+ #: settings.php:3777
4436
  msgid "Clear authorization to access AdSense account"
4437
  msgstr ""
4438
 
4439
+ #: settings.php:3781 settings.php:4674 settings.php:4741 strings.php:246
4440
  msgid "Google AdSense Homepage"
4441
  msgstr ""
4442
 
4443
+ #: settings.php:3802
4444
  msgid "Switch to physical ads.txt file"
4445
  msgstr ""
4446
 
4447
+ #: settings.php:3803
4448
  msgid "Switch to virtual ads.txt file"
4449
  msgstr ""
4450
 
4451
  #. translators: %s: ads.txt
4452
+ #: settings.php:3823
4453
  msgid "Open %s"
4454
  msgstr ""
4455
 
4456
+ #: settings.php:3831
4457
  msgid "Reload ads.txt file"
4458
  msgstr ""
4459
 
4460
+ #: settings.php:3837 settings.php:4806
4461
  msgid "Save"
4462
  msgstr ""
4463
 
4464
  #. translators: %s: Ad Inserter
4465
+ #: settings.php:4017
4466
  msgid "ads.txt file: %s virtual ads.txt file"
4467
  msgstr ""
4468
 
4469
+ #: settings.php:4022 settings.php:4042 strings.php:225
4470
  msgid "Warning"
4471
  msgstr ""
4472
 
4473
  #. translators: %s: Ad Inserter
4474
+ #: settings.php:4022
4475
  msgid "%s virtual file ads.txt not found"
4476
  msgstr ""
4477
 
4478
+ #: settings.php:4030
4479
  msgid "IMPORTANT"
4480
  msgstr ""
4481
 
4482
+ #: settings.php:4030
4483
  msgid "ads.txt file must be placed on the root domain"
4484
  msgstr ""
4485
 
4486
+ #: settings.php:4035
4487
  msgid "ads.txt file"
4488
  msgstr ""
4489
 
4490
+ #: settings.php:4035
4491
  msgid "NOT WRITABLE"
4492
  msgstr ""
4493
 
4494
+ #: settings.php:4042
4495
  msgid "file %s not found"
4496
  msgstr ""
4497
 
4498
+ #: settings.php:4052
4499
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4500
  msgstr ""
4501
 
4502
  #. translators: %s: Ad Inserter
4503
+ #: settings.php:4058
4504
  msgid "%s virtual ads.txt file"
4505
  msgstr ""
4506
 
4507
+ #: settings.php:4080
4508
  msgid "Advertising system"
4509
  msgstr ""
4510
 
4511
+ #: settings.php:4081
4512
  msgid "Account ID"
4513
  msgstr ""
4514
 
4515
+ #: settings.php:4083
4516
  msgid "Certification authority ID"
4517
  msgstr ""
4518
 
4519
+ #: settings.php:4098
4520
  msgid "Account ID found in block and present in ads.txt"
4521
  msgstr ""
4522
 
4523
+ #: settings.php:4102
4524
  msgid "Account ID found in block but not present in ads.txt"
4525
  msgstr ""
4526
 
4527
+ #: settings.php:4451
4528
  msgid "Preview block"
4529
  msgstr ""
4530
 
4531
+ #: settings.php:4458
4532
  msgid "Pause block"
4533
  msgstr ""
4534
 
4535
+ #: settings.php:4497
4536
  msgid "Automatic insertion"
4537
  msgstr ""
4538
 
4539
  #. translators: %s HTML tags
4540
+ #: settings.php:4498 settings.php:5820
4541
  msgid "PHP code processing"
4542
  msgstr ""
4543
 
4544
+ #: settings.php:4500
4545
  msgid "Device detection"
4546
  msgstr ""
4547
 
4548
+ #: settings.php:4523
4549
  msgid "No active block"
4550
  msgstr ""
4551
 
4552
+ #: settings.php:4524
4553
  msgid "No block matches search keywords"
4554
  msgstr ""
4555
 
4556
+ #: settings.php:4584
4557
  msgid "Ad unit"
4558
  msgstr ""
4559
 
4560
+ #: settings.php:4586
4561
  msgid "Slot ID"
4562
  msgstr ""
4563
 
4564
+ #: settings.php:4613
4565
  msgid "Copy AdSense code"
4566
  msgstr ""
4567
 
4568
+ #: settings.php:4616
4569
  msgid "Preview AdSense ad"
4570
  msgstr ""
4571
 
4572
+ #: settings.php:4619
4573
  msgid "Get AdSense code"
4574
  msgstr ""
4575
 
4576
  #. translators: %s: HTML tags
4577
+ #: settings.php:4651
4578
  msgid ""
4579
  "Please %s clear authorization %s with the button %s above and once again "
4580
  "authorize access to your AdSense account."
4581
  msgstr ""
4582
 
4583
+ #: settings.php:4670
4584
  msgid "AdSense Integration"
4585
  msgstr ""
4586
 
4587
+ #: settings.php:4672
4588
  msgid "AdSense Integration - Step 2"
4589
  msgstr ""
4590
 
4591
  #. translators: %s: HTML tags
4592
+ #: settings.php:4678
4593
  msgid ""
4594
  "Authorize %s to access your AdSense account. Click on the %s Get "
4595
  "Authorization Code %s button to open a new window where you can allow "
4598
  msgstr ""
4599
 
4600
  #. translators: %s: HTML tags
4601
+ #: settings.php:4685
4602
  msgid ""
4603
  "If you get error, can't access ad units or would like to use own Google API "
4604
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4606
  msgstr ""
4607
 
4608
  #. translators: %s: HTML tags
4609
+ #: settings.php:4687
4610
  msgid ""
4611
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4612
  "Authorization Code %s button to open a new window where you can allow "
4615
  msgstr ""
4616
 
4617
  #. translators: %s: HTML tags
4618
+ #: settings.php:4694
4619
  msgid ""
4620
  "If you get error %s invalid client %s click on the button %s Clear and "
4621
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4622
  msgstr ""
4623
 
4624
+ #: settings.php:4705
4625
  msgid "Get Authorization Code"
4626
  msgstr ""
4627
 
4628
+ #: settings.php:4708
4629
  msgid "Enter Authorization Code"
4630
  msgstr ""
4631
 
4632
+ #: settings.php:4718
4633
  msgid "Use own API IDs"
4634
  msgstr ""
4635
 
4636
+ #: settings.php:4720
4637
  msgid "Clear and return to Step 1"
4638
  msgstr ""
4639
 
4640
+ #: settings.php:4724
4641
  msgid "Authorize"
4642
  msgstr ""
4643
 
4644
+ #: settings.php:4740
4645
  msgid "AdSense Integration - Step 1"
4646
  msgstr ""
4647
 
4648
  #. translators: %s: Ad Inserter
4649
+ #: settings.php:4744
4650
  msgid ""
4651
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4652
  "To do this you need to authorize %s to access your AdSense account. The "
4655
  msgstr ""
4656
 
4657
  #. translators: %s: HTML tags
4658
+ #: settings.php:4753
4659
  msgid "Go to %s Google APIs and Services console %s"
4660
  msgstr ""
4661
 
4662
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4663
+ #: settings.php:4754
4664
  msgid ""
4665
  "Create %1$s project - if the project and IDs are already created click on "
4666
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
4667
  msgstr ""
4668
 
4669
  #. translators: %s: HTML tags
4670
+ #: settings.php:4755
4671
  msgid ""
4672
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4673
  "create a new project"
4674
  msgstr ""
4675
 
4676
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4677
+ #: settings.php:4756
4678
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4679
  msgstr ""
4680
 
4681
  #. translators: %s: HTML tags
4682
+ #: settings.php:4757
4683
  msgid ""
4684
  "Click on project selection, wait for the project to be created and then and "
4685
  "select %s as the current project"
4686
  msgstr ""
4687
 
4688
  #. translators: %s: HTML tags
4689
+ #: settings.php:4758
4690
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4691
  msgstr ""
4692
 
4693
  #. translators: %s: HTML tags
4694
+ #: settings.php:4759
4695
  msgid "Search for adsense and enable %s"
4696
  msgstr ""
4697
 
4698
  #. translators: %s: HTML tags
4699
+ #: settings.php:4760
4700
  msgid "Click on %s CREATE CREDENTIALS %s"
4701
  msgstr ""
4702
 
4703
  #. translators: %s: HTML tags
4704
+ #: settings.php:4761
4705
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
4706
  msgstr ""
4707
 
4708
  #. translators: %s: HTML tags
4709
+ #: settings.php:4762
4710
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4711
  msgstr ""
4712
 
4713
  #. translators: %s: HTML tags
4714
+ #: settings.php:4763
4715
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4716
  msgstr ""
4717
 
4718
  #. translators: %s: HTML tags
4719
+ #: settings.php:4764
4720
  msgid "Click on %s What credentials do I need? %s"
4721
  msgstr ""
4722
 
4723
  #. translators: %s: HTML tags
4724
+ #: settings.php:4765
4725
  msgid ""
4726
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
4727
  "Consent Screen %s"
4728
  msgstr ""
4729
 
4730
  #. translators: %s: HTML tags
4731
+ #: settings.php:4766
4732
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
4733
  msgstr ""
4734
 
4735
  #. translators: %s: HTML tags
4736
+ #: settings.php:4767
4737
  msgid ""
4738
  "For %s App name %s enter %s and for %s User support email %s select your "
4739
  "Google account email address"
4740
  msgstr ""
4741
 
4742
  #. translators: %s: HTML tags
4743
+ #: settings.php:4768
4744
  msgid ""
4745
  "For %s Developer contact information %s enter your email address and click "
4746
  "on %s SAVE AND CONTINUE %s"
4747
  msgstr ""
4748
 
4749
  #. translators: %s: HTML tags
4750
+ #: settings.php:4769
4751
  msgid ""
4752
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
4753
  "add your Google account email address"
4754
  msgstr ""
4755
 
4756
  #. translators: %s: HTML tags
4757
+ #: settings.php:4770
4758
  msgid ""
4759
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
4760
  msgstr ""
4761
 
4762
  #. translators: %s: HTML tags
4763
+ #: settings.php:4771
4764
  msgid ""
4765
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4766
  "Ad Inserter client %s and then click on %s REFRESH %s"
4767
  msgstr ""
4768
 
4769
  #. translators: %s: HTML tags
4770
+ #: settings.php:4772
4771
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
4772
  msgstr ""
4773
 
4774
  #. translators: %s: HTML tags
4775
+ #: settings.php:4773
4776
  msgid ""
4777
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4778
  "secret %s"
4779
  msgstr ""
4780
 
4781
+ #: settings.php:4774
4782
  msgid "Copy them to the appropriate fields below"
4783
  msgstr ""
4784
 
4785
+ #: settings.php:4780
4786
  msgid "Client ID"
4787
  msgstr ""
4788
 
4789
+ #: settings.php:4783
4790
  msgid "Enter Client ID"
4791
  msgstr ""
4792
 
4793
+ #: settings.php:4788
4794
  msgid "Client secret"
4795
  msgstr ""
4796
 
4797
+ #: settings.php:4791
4798
  msgid "Enter Client secret"
4799
  msgstr ""
4800
 
4801
+ #: settings.php:4801
4802
  msgid "Use default API IDs"
4803
  msgstr ""
4804
 
4805
+ #: settings.php:4902
4806
  msgid "All posts"
4807
  msgstr ""
4808
 
4809
+ #: settings.php:4903
4810
  msgid "All static pages"
4811
  msgstr ""
4812
 
4813
+ #: settings.php:5473
4814
+ msgid "Maximize Your Ad Revenue With Header Bidding"
4815
+ msgstr ""
4816
+
4817
+ #: settings.php:5478 settings.php:5701 settings.php:5715 settings.php:5744
4818
+ #: settings.php:5772
4819
+ msgid "Maximize Your Ad Revenue"
4820
+ msgstr ""
4821
+
4822
+ #: settings.php:5487 settings.php:5501
4823
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4824
  msgstr ""
4825
 
4826
+ #: settings.php:5492 settings.php:5506 settings.php:5704 settings.php:5706
4827
+ #: settings.php:5724 settings.php:5729 settings.php:5737 settings.php:5738
4828
+ #: settings.php:5741 settings.php:5748 settings.php:5759 settings.php:5763
 
 
4829
  msgid "Looking for AdSense alternative?"
4830
  msgstr ""
4831
 
4832
+ #: settings.php:5518
4833
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4834
  msgstr ""
4835
 
4836
+ #: settings.php:5523 settings.php:5698 settings.php:5719 settings.php:5747
4837
+ #: settings.php:5767
4838
  msgid "Use Infolinks ads with Adsense to earn more"
4839
  msgstr ""
4840
 
4841
+ #: settings.php:5544 settings.php:5594
4842
  msgid "Support plugin development"
4843
  msgstr ""
4844
 
4845
+ #: settings.php:5549 settings.php:5595
4846
  msgid ""
4847
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4848
  "reviewing the plugin on WordPres"
4849
  msgstr ""
4850
 
4851
+ #: settings.php:5549
4852
  msgctxt "Review Ad Inserter"
4853
  msgid "Review"
4854
  msgstr ""
4855
 
4856
+ #: settings.php:5554
4857
  msgid ""
4858
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4859
  "rating the plugin on WordPres"
4860
  msgstr ""
4861
 
4862
+ #: settings.php:5554
4863
  msgctxt "Rate Ad Inserter"
4864
  msgid "Rate"
4865
  msgstr ""
4866
 
4867
+ #: settings.php:5559
4868
  msgid ""
4869
  "Support free Ad Inserter development. If you are making money with Ad "
4870
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4871
  "you!"
4872
  msgstr ""
4873
 
4874
+ #: settings.php:5559
4875
  msgid "Donate"
4876
  msgstr ""
4877
 
4878
+ #: settings.php:5566 settings.php:5610
4879
  msgid "Average rating of the plugin - Thank you!"
4880
  msgstr ""
4881
 
4882
  #. translators: %s: Ad Inserter, HTML tags
4883
+ #: settings.php:5577
4884
  msgid ""
4885
  "You've been using %s for a while now, and I hope you're happy with it. "
4886
  "Positive %s reviews %s are a great way to show your appreciation for my "
4889
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4890
  msgstr ""
4891
 
4892
+ #: settings.php:5595
4893
  msgid "Review"
4894
  msgstr ""
4895
 
4896
+ #: settings.php:5599
4897
  msgid "Ad Inserter on Twitter"
4898
  msgstr ""
4899
 
4900
+ #: settings.php:5600
4901
  msgid "Ad Inserter on Facebook"
4902
  msgstr ""
4903
 
4904
+ #: settings.php:5603
4905
  msgid "Follow Ad Inserter"
4906
  msgstr ""
4907
 
4908
  #. translators: %s: HTML tags
4909
+ #: settings.php:5630
4910
  msgid ""
4911
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4912
  "and %s Common Settings %s pages"
4913
  msgstr ""
4914
 
4915
  #. translators: %s: HTML tags
4916
+ #: settings.php:5642
4917
  msgid ""
4918
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4919
  "Auto ads, %s %s AMP ads %s"
4920
  msgstr ""
4921
 
4922
  #. translators: %s: HTML tags
4923
+ #: settings.php:5659
4924
  msgid ""
4925
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4926
  "purchase you refer to us"
4927
  msgstr ""
4928
 
4929
  #. translators: %s: HTML tags
4930
+ #: settings.php:5666
4931
  msgid ""
4932
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4933
  "diagnose and fix the problem."
4934
  msgstr ""
4935
 
4936
  #. translators: %s: HTML tags
4937
+ #: settings.php:5670
4938
  msgid ""
4939
  "If you need any kind of help or support, please do not hesitate to open a "
4940
  "thread on the %s support forum. %s"
4941
  msgstr ""
4942
 
4943
+ #: settings.php:5697 settings.php:5756 settings.php:5768
4944
  msgid "Code preview with visual CSS editor"
4945
  msgstr ""
4946
 
4947
+ #: settings.php:5700 settings.php:5728
4948
  msgid "Ad blocking detection and content protection"
4949
  msgstr ""
4950
 
4951
+ #: settings.php:5703 settings.php:5757
4952
  msgid "A/B testing - Track ad impressions and clicks"
4953
  msgstr ""
4954
 
4955
+ #: settings.php:5720
4956
  msgid "Insert ads on AMP pages"
4957
  msgstr ""
4958
 
4959
+ #: settings.php:5780
4960
  msgid "Looking for Pro Ad Management plugin?"
4961
  msgstr ""
4962
 
4963
+ #: settings.php:5781
4964
  msgid "To Optimally Monetize your WordPress website?"
4965
  msgstr ""
4966
 
4967
  #. Translators: %s: price of Ad Inserter Pro
4968
+ #: settings.php:5782
4969
  msgid "Different license types starting from %s"
4970
  msgstr ""
4971
 
4972
  #. translators: %s HTML tags
4973
+ #: settings.php:5785
4974
  msgid "%s AdSense Integration %s"
4975
  msgstr ""
4976
 
4977
  #. translators: %s HTML tags
4978
+ #: settings.php:5786
4979
  msgid "Syntax highlighting %s editor %s"
4980
  msgstr ""
4981
 
4982
  #. translators: %s HTML tags
4983
+ #: settings.php:5787
4984
  msgid "%s Code preview %s with visual CSS editor"
4985
  msgstr ""
4986
 
4987
  #. translators: %s HTML tags
4988
+ #: settings.php:5788
4989
  msgid "Simple user interface - all settings on a single page"
4990
  msgstr ""
4991
 
4992
  #. translators: %s HTML tags
4993
+ #: settings.php:5789
4994
  msgid ""
4995
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4996
  "image / excerpt"
4997
  msgstr ""
4998
 
4999
  #. translators: %s HTML tags
5000
+ #: settings.php:5790
5001
  msgid "%s Automatic insertion %s between posts on blog pages"
5002
  msgstr ""
5003
 
5004
  #. translators: %s HTML tags
5005
+ #: settings.php:5791
5006
  msgid "%s Automatic insertion %s before, between and after comments"
5007
  msgstr ""
5008
 
5009
  #. translators: %s HTML tags
5010
+ #: settings.php:5792
5011
  msgid "%s Automatic insertion %s after %s or before %s tag"
5012
  msgstr ""
5013
 
5014
  #. translators: %s HTML tags
5015
+ #: settings.php:5793
5016
  msgid "Automatic insertion at %s custom hook positions %s"
5017
  msgstr ""
5018
 
5019
  #. translators: %s HTML tags
5020
+ #: settings.php:5794
5021
  msgid ""
5022
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5023
  "selectors)"
5024
  msgstr ""
5025
 
5026
  #. translators: %s HTML tags
5027
+ #: settings.php:5795
5028
  msgid "%s Insertion exceptions %s for individual posts and pages"
5029
  msgstr ""
5030
 
5031
  #. translators: %s HTML tags
5032
+ #: settings.php:5796
5033
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5034
  msgstr ""
5035
 
5036
  #. translators: %s HTML tags
5037
+ #: settings.php:5797
5038
  msgid ""
5039
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5040
  "scrolls)"
5041
  msgstr ""
5042
 
5043
  #. translators: %s HTML tags
5044
+ #: settings.php:5798
5045
  msgid "%s Background ads %s with one or left and right background images"
5046
  msgstr ""
5047
 
5048
  #. translators: %s HTML tags
5049
+ #: settings.php:5799
5050
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5051
  msgstr ""
5052
 
5053
  #. translators: %s HTML tags
5054
+ #: settings.php:5800
5055
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5056
  msgstr ""
5057
 
5058
  #. translators: %s HTML tags
5059
+ #: settings.php:5801
5060
  msgid ""
5061
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5062
  "visible)"
5063
  msgstr ""
5064
 
5065
  #. translators: %s HTML tags
5066
+ #: settings.php:5802
5067
  msgid ""
5068
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5069
  msgstr ""
5070
 
5071
  #. translators: %s HTML tags
5072
+ #: settings.php:5803
5073
  msgid "Block %s alignment and style %s customizations"
5074
  msgstr ""
5075
 
5076
  #. translators: %s HTML tags
5077
+ #: settings.php:5804
5078
  msgid ""
5079
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5080
  "TOS)"
5081
  msgstr ""
5082
 
5083
  #. translators: %s HTML tags
5084
+ #: settings.php:5805
5085
  msgid ""
5086
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5087
  "feeds"
5088
  msgstr ""
5089
 
5090
  #. translators: %s HTML tags
5091
+ #: settings.php:5806
5092
  msgid "%s Ad rotation %s (works also with caching)"
5093
  msgstr ""
5094
 
5095
  #. translators: %s HTML tags
5096
+ #: settings.php:5807
5097
  msgid "Ad rotation %s optimization based on CTR %s"
5098
  msgstr ""
5099
 
5100
  #. translators: %s HTML tags
5101
+ #: settings.php:5808
5102
  msgid "Create, edit and check %s ads.txt %s file"
5103
  msgstr ""
5104
 
5105
  #. translators: %s HTML tags
5106
+ #: settings.php:5809
5107
  msgid ""
5108
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5109
  "AdSense)"
5110
  msgstr ""
5111
 
5112
  #. translators: %s HTML tags
5113
+ #: settings.php:5810
5114
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5115
  msgstr ""
5116
 
5117
  #. translators: %s HTML tags
5118
+ #: settings.php:5811
5119
  msgid "%s Public web reports %s for clients, export to PDF"
5120
  msgstr ""
5121
 
5122
  #. translators: %s HTML tags
5123
+ #: settings.php:5812
5124
  msgid "Support for %s A/B testing %s"
5125
  msgstr ""
5126
 
5127
  #. translators: %s HTML tags
5128
+ #: settings.php:5813
5129
  msgid "Frequency capping - %s limit impressions or clicks %s"
5130
  msgstr ""
5131
 
5132
  #. translators: %s HTML tags
5133
+ #: settings.php:5814
5134
  msgid "Click fraud %s protection %s"
5135
  msgstr ""
5136
 
5137
  #. translators: %s HTML tags
5138
+ #: settings.php:5815
5139
  msgid "Support for %s GDPR consent cookie checks %s"
5140
  msgstr ""
5141
 
5142
  #. translators: %s HTML tags
5143
+ #: settings.php:5816
5144
  msgid "Support for %s lazy loading %s"
5145
  msgstr ""
5146
 
5147
  #. translators: %s HTML tags
5148
+ #: settings.php:5817
5149
  msgid "Support for ads on %s AMP pages %s"
5150
  msgstr ""
5151
 
5152
  #. translators: %s HTML tags
5153
+ #: settings.php:5818
5154
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5155
  msgstr ""
5156
 
5157
  #. translators: %s HTML tags
5158
+ #: settings.php:5819
5159
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5160
  msgstr ""
5161
 
5162
  #. translators: %s HTML tags
5163
+ #: settings.php:5821
5164
  msgid "%s Banner %s code generator"
5165
  msgstr ""
5166
 
5167
  #. translators: %s HTML tags
5168
+ #: settings.php:5822
5169
  msgid "Support for %s header and footer %s code"
5170
  msgstr ""
5171
 
5172
  #. translators: %s HTML tags
5173
+ #: settings.php:5823
5174
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5175
  msgstr ""
5176
 
5177
  #. translators: %s HTML tags
5178
+ #: settings.php:5824
5179
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5180
  msgstr ""
5181
 
5182
  #. translators: %s HTML tags
5183
+ #: settings.php:5825
5184
  msgid "Client-side %s mobile device detection %s (works with caching)"
5185
  msgstr ""
5186
 
5187
  #. translators: %s HTML tags
5188
+ #: settings.php:5826
5189
  msgid ""
5190
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5191
  "protection"
5192
  msgstr ""
5193
 
5194
  #. translators: %s HTML tags
5195
+ #: settings.php:5827
5196
  msgid "%s Ad blocking statistics %s"
5197
  msgstr ""
5198
 
5199
  #. translators: %s HTML tags
5200
+ #: settings.php:5828
5201
  msgid ""
5202
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5203
  "referrers, operating systems, browsers"
5204
  msgstr ""
5205
 
5206
  #. translators: %s HTML tags
5207
+ #: settings.php:5829
5208
  msgid ""
5209
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5210
  msgstr ""
5211
 
5212
  #. translators: %s HTML tags
5213
+ #: settings.php:5830
5214
  msgid "%s Multisite options %s to limit settings on the sites"
5215
  msgstr ""
5216
 
5217
  #. translators: %s HTML tags
5218
+ #: settings.php:5831
5219
  msgid "%s Import/Export %s block or plugin settings"
5220
  msgstr ""
5221
 
5222
  #. translators: %s HTML tags
5223
+ #: settings.php:5832
5224
  msgid "%s Insertion scheduling %s with fallback option"
5225
  msgstr ""
5226
 
5227
  #. translators: %s HTML tags
5228
+ #: settings.php:5833
5229
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5230
  msgstr ""
5231
 
5232
  #. translators: %s HTML tags
5233
+ #: settings.php:5834
5234
  msgid "Simple troubleshooting with many %s debugging functions %s"
5235
  msgstr ""
5236
 
5237
  #. translators: %s HTML tags
5238
+ #: settings.php:5835
5239
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5240
  msgstr ""
5241
 
5242
  #. translators: %s HTML tags
5243
+ #: settings.php:5836
5244
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5245
  msgstr ""
5246
 
5247
  #. translators: %s HTML tags
5248
+ #: settings.php:5837
5249
  msgid ""
5250
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5251
  msgstr ""
5252
 
5253
  #. translators: %s HTML tags
5254
+ #: settings.php:5838
5255
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5256
  msgstr ""
5257
 
5258
  #. translators: %s HTML tags
5259
+ #: settings.php:5839
5260
  msgid "No ads on the settings page"
5261
  msgstr ""
5262
 
5263
  #. translators: %s HTML tags
5264
+ #: settings.php:5840
5265
  msgid "Premium support"
5266
  msgstr ""
5267
 
5268
  #. translators: %s HTML tags
5269
+ #: settings.php:5843
5270
  msgid ""
5271
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5272
  "website with many advertising features to automatically insert adverts on "
5281
  msgstr ""
5282
 
5283
  #. translators: %s HTML tags
5284
+ #: settings.php:5856
5285
  msgid "Looking for %s Pro Ad Management plugin? %s"
5286
  msgstr ""
5287
 
5288
  #. translators: %s HTML tags
5289
+ #: settings.php:5861
5290
  msgid "Ads between posts"
5291
  msgstr ""
5292
 
5293
  #. translators: %s HTML tags
5294
+ #: settings.php:5862
5295
  msgid "Ads between comments"
5296
  msgstr ""
5297
 
5298
  #. translators: %s HTML tags
5299
+ #: settings.php:5863
5300
  msgid "Support via email"
5301
  msgstr ""
5302
 
5303
  #. translators: %s HTML tags
5304
+ #: settings.php:5869
5305
  msgid "%s Sticky positions %s"
5306
  msgstr ""
5307
 
5308
  #. translators: %s HTML tags
5309
+ #: settings.php:5870
5310
  msgid "%s Limit insertions %s"
5311
  msgstr ""
5312
 
5313
  #. translators: %s HTML tags
5314
+ #: settings.php:5871
5315
  msgid "%s Clearance %s options"
5316
  msgstr ""
5317
 
5318
  #. translators: %s HTML tags
5319
+ #: settings.php:5877
5320
  msgid "Ad rotation"
5321
  msgstr ""
5322
 
5323
  #. translators: %s HTML tags
5324
+ #: settings.php:5878
5325
  msgid "%s A/B testing %s"
5326
  msgstr ""
5327
 
5328
  #. translators: %s HTML tags
5329
+ #: settings.php:5879
5330
  msgid "%s Ad tracking %s"
5331
  msgstr ""
5332
 
5333
  #. translators: %s HTML tags
5334
+ #: settings.php:5885
5335
  msgid "Support for %s AMP pages %s"
5336
  msgstr ""
5337
 
5338
  #. translators: %s HTML tags
5339
+ #: settings.php:5886
5340
  msgid "%s Ad blocking detection %s"
5341
  msgstr ""
5342
 
5343
  #. translators: %s HTML tags
5344
+ #: settings.php:5887
5345
  msgid "%s Mobile device detection %s"
5346
  msgstr ""
5347
 
5348
  #. translators: %s HTML tags
5349
+ #: settings.php:5894
5350
  msgid "64 code blocks"
5351
  msgstr ""
5352
 
5353
  #. translators: %s HTML tags
5354
+ #: settings.php:5895
5355
  msgid "%s GEO targeting %s"
5356
  msgstr ""
5357
 
5358
  #. translators: %s HTML tags
5359
+ #: settings.php:5896
5360
  msgid "%s Scheduling %s"
5361
  msgstr ""
5362
 
readme.txt CHANGED
@@ -4,9 +4,9 @@ Contributors: adinserter, spacetime
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
5
  Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, in-feed ads, sticky fixed widgets, hooks
6
  Requires at least: 4.9
7
- Tested up to: 5.8
8
  Requires PHP: 5.6
9
- Stable tag: 2.7.9
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
@@ -67,6 +67,7 @@ It's all about the [settings](https://adinserter.pro/documentation).
67
  * Insert images, HTML, CSS, Javascript or PHP code
68
  * Code generator for banners and placeholders
69
  * AdSense code generator
 
70
  * Visual advert editor - create adverts from scratch
71
  * Manual insertion: widgets, shortcodes, PHP function call
72
  * Sticky (fixed) widgets (sticky sidebar - the sidebar does not move when the page is scrolled)
@@ -131,6 +132,7 @@ It's all about the [settings](https://adinserter.pro/documentation).
131
  * [Sticky (floating) ads](https://adinserter.pro/documentation/sticky-ads) with animations (fade, slide, turn, flip, zoom)
132
  * Animation trigger for sticky ads (page scroll in % or px, HTML element becomes visible)
133
  * [background ads (skin ads)](https://adinserter.pro/documentation/sticky-ads#background-ads)
 
134
  * Support for sticky ad bar
135
  * Support for scheduling date and time with fallback option
136
  * Support to show ads as soon as the GDPR consent is given
@@ -255,8 +257,10 @@ Auto ads may not be suitable for some WordPress themes or layouts. In such cases
255
 
256
  = I have installed code for AdSense but the ad blocks are blank. =
257
 
258
- Blank ad block means that the code is inserted properly only the ad code doesn't display ads.
259
- Please check <a href="https://adinserter.pro/documentation/troubleshooting#ads-not-displayed">Ads Not Displayed</a> for more information. You can also try other ad networks.
 
 
260
 
261
  = What is GDPR? =
262
 
@@ -351,6 +355,13 @@ If you are not happy to reveal this information and you have opted in, simply di
351
 
352
  == Changelog ==
353
 
 
 
 
 
 
 
 
354
  = 2.7.9 =
355
  - Bug fix for timed rotations
356
  - Bug fix for tr_TR translation
@@ -609,6 +620,13 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
609
 
610
  == Upgrade Notice ==
611
 
 
 
 
 
 
 
 
612
  = 2.7.9 =
613
  Bug fix for timed rotations;
614
  Bug fix for tr_TR translation;
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
5
  Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, in-feed ads, sticky fixed widgets, hooks
6
  Requires at least: 4.9
7
+ Tested up to: 5.9
8
  Requires PHP: 5.6
9
+ Stable tag: 2.7.10
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
67
  * Insert images, HTML, CSS, Javascript or PHP code
68
  * Code generator for banners and placeholders
69
  * AdSense code generator
70
+ * Support to detect, hide or replace blank AdSense blocks
71
  * Visual advert editor - create adverts from scratch
72
  * Manual insertion: widgets, shortcodes, PHP function call
73
  * Sticky (fixed) widgets (sticky sidebar - the sidebar does not move when the page is scrolled)
132
  * [Sticky (floating) ads](https://adinserter.pro/documentation/sticky-ads) with animations (fade, slide, turn, flip, zoom)
133
  * Animation trigger for sticky ads (page scroll in % or px, HTML element becomes visible)
134
  * [background ads (skin ads)](https://adinserter.pro/documentation/sticky-ads#background-ads)
135
+ * Parallax ads
136
  * Support for sticky ad bar
137
  * Support for scheduling date and time with fallback option
138
  * Support to show ads as soon as the GDPR consent is given
257
 
258
  = I have installed code for AdSense but the ad blocks are blank. =
259
 
260
+ Blank ad block means that the code is inserted properly, only the ad code doesn't display ads.
261
+ This happens when Google for some reason does not serve ads for the website, page or specific ad block - the block remains unfilled.
262
+ Ad Inserter can detect, [hide](https://adinserter.pro/documentation/adsense-ads#hiding-blank-adsense-blocks) or [replace](https://adinserter.pro/documentation/adsense-ads#replacing-blank-adsense-blocks) blank AdSense blocks.
263
+ Please check <a href="https://adinserter.pro/documentation/troubleshooting#ads-not-displayed">Ads Not Displayed</a> for more information.
264
 
265
  = What is GDPR? =
266
 
355
 
356
  == Changelog ==
357
 
358
+ = 2.7.10 =
359
+ - Security fix for XSS (Reported by Krzysztof Zajac via WPScan)
360
+ - Added support to detect and replace blank AdSense blocks
361
+ - Added support to load and save plugins settings to a file (Pro only)
362
+ - Added support for parallax ads (Pro only)
363
+ - Few fixes
364
+
365
  = 2.7.9 =
366
  - Bug fix for timed rotations
367
  - Bug fix for tr_TR translation
620
 
621
  == Upgrade Notice ==
622
 
623
+ = 2.7.10 =
624
+ Security fix for XSS (Reported by Krzysztof Zajac via WPScan);
625
+ Added support to detect and replace blank AdSense blocks;
626
+ Added support to load and save plugins settings to a file (Pro only);
627
+ Added support for parallax ads (Pro only);
628
+ Few fixes
629
+
630
  = 2.7.9 =
631
  Bug fix for timed rotations;
632
  Bug fix for tr_TR translation;
settings.php CHANGED
@@ -602,12 +602,19 @@ function generate_settings_form (){
602
 
603
  $adb_block_action_active = $obj->get_adb_block_action () != AI_ADB_BLOCK_ACTION_DO_NOTHING;
604
 
 
 
 
 
 
 
605
  $display_options =
606
- $obj->get_block_width () != '' || $obj->get_block_height () != '' || $obj->get_show_label () ||
607
  $obj->get_lazy_loading () || $obj->get_wait_for_interaction () || $obj->get_protected () || $obj->get_manual_loading () != AI_MANUAL_LOADING_DISABLED ||
608
  $obj->get_close_button () || $obj->get_auto_close_time () || $obj->get_stay_closed_time () ||
609
  $obj->get_delay_time () || $obj->get_delay_showing () || $obj->get_show_every () ||
610
- $obj->get_iframe ();
 
611
 
612
  $limits_options =
613
  $obj->get_max_impressions () || ($obj->get_limit_impressions_per_time_period () && $obj->get_limit_impressions_time_period ()) ||
@@ -1379,7 +1386,7 @@ function generate_settings_form (){
1379
  </td>
1380
  <td style="width: 5%; overflow: hidden; padding-left: 10px;">
1381
  <?php _e('Alignment', 'ad-inserter'); ?>
1382
- <select id="block-alignment-<?php echo $block; ?>" name="<?php echo AI_OPTION_ALIGNMENT_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_alignment_type(); ?>">
1383
  <option data-img-src="<?php echo plugins_url ('css/images/blank.png', __FILE__); ?>" data-img-class="automatic-insertion im-default" value="<?php echo AI_ALIGNMENT_DEFAULT; ?>" data-title="<?php echo AI_TEXT_DEFAULT; ?>" <?php echo ($obj->get_alignment_type() == AI_ALIGNMENT_DEFAULT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DEFAULT; ?></option>
1384
  <option data-img-src="<?php echo plugins_url ('css/images/blank.png', __FILE__); ?>" data-img-class="automatic-insertion im-align-left" value="<?php echo AI_ALIGNMENT_LEFT; ?>" data-title="<?php echo AI_TEXT_LEFT; ?>" <?php echo ($obj->get_alignment_type() == AI_ALIGNMENT_LEFT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_LEFT; ?></option>
1385
  <option data-img-src="<?php echo plugins_url ('css/images/blank.png', __FILE__); ?>" data-img-class="automatic-insertion im-center" value="<?php echo AI_ALIGNMENT_CENTER; ?>" data-title="<?php echo AI_TEXT_CENTER; ?>" <?php echo ($obj->get_alignment_type() == AI_ALIGNMENT_CENTER) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_CENTER; ?></option>
@@ -2302,11 +2309,18 @@ function generate_settings_form (){
2302
  <?php _e ('Width', 'ad-inserter'); ?>
2303
  <input type="text" name="<?php echo AI_OPTION_BLOCK_WIDTH, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_block_width (); ?>" value="<?php echo $obj->get_block_width (); ?>" title= "<?php /* Translators: do not translate [[width]] - it is a CSS property */ _e ('Block width: empty means width not defined, number means width in pixels, any other value means CSS [[width]] property', 'ad-inserter'); ?>" size="3" maxlength="8" />
2304
  </td>
2305
- <td style="padding-left: 20px; width: 80%;">
2306
  <?php _e ('Height', 'ad-inserter'); ?>
2307
  <input type="text" name="<?php echo AI_OPTION_BLOCK_HEIGHT, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_block_height (); ?>" value="<?php echo $obj->get_block_height (); ?>" title= "<?php /* Translators: do not translate [[height]] - it is a CSS property */ _e ('Block height: empty means height not defined, number means height in pixels, any other value means CSS [[height]] property', 'ad-inserter'); ?>" size="3" maxlength="8" />
2308
  </td>
2309
 
 
 
 
 
 
 
 
2310
  <td style="padding-left: 20px; width: 10%;">
2311
  <input type="hidden" name="<?php echo AI_OPTION_SHOW_LABEL, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
2312
  <input id="show-label-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_SHOW_LABEL, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_show_label (); ?>" <?php if ($obj->get_show_label () == AI_ENABLED) echo 'checked '; ?> />
@@ -2324,6 +2338,8 @@ function generate_settings_form (){
2324
  <?php if (function_exists ('ai_delay_showing')) ai_delay_showing ($block, $obj, $default); ?>
2325
 
2326
  <?php if (function_exists ('ai_iframes')) ai_iframes ($block, $obj, $default); ?>
 
 
2327
  </div>
2328
 
2329
  <?php if (function_exists ('ai_limits_adb_action')) ai_limits_adb_action ($block, $obj, $default); ?>
@@ -3492,6 +3508,8 @@ function generate_settings_form (){
3492
  replace_blocked_image ('ai-ez-6', 'ez-6.png', 'block');
3493
  replace_blocked_image ('ai-ez-7', 'ez-7.jpg', 'block');
3494
  replace_blocked_image ('ai-ez-8', 'ez-8.jpg', 'block');
 
 
3495
  replace_blocked_image ('ai-pro-1', 'icon-256x256.jpg', 'block');
3496
  replace_blocked_image ('ai-pro-2', 'ai-charts-250.png', 'block');
3497
  replace_blocked_image ('ai-pro-3', 'ai-countries-250.png', 'block');
@@ -4172,7 +4190,7 @@ function ai_change_settings () {
4172
  $ai_options = ai_raw_remote_options ();
4173
  }
4174
 
4175
- if ($ai_options === false) $ai_options = ai_get_option (AI_OPTION_NAME);
4176
 
4177
  $update_settings = false;
4178
 
@@ -4263,7 +4281,7 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks, $active_
4263
  $current_options = ai_raw_remote_options ();
4264
  }
4265
 
4266
- if ($current_options === false) $current_options = ai_get_option (AI_OPTION_NAME);
4267
 
4268
  $new_options = $current_options;
4269
 
@@ -5444,44 +5462,20 @@ function ai_check_page () {
5444
  function sidebar_addense_alternative () { ?>
5445
 
5446
  <?php
5447
- switch (rand (5, 12)) {
5448
  case 1:
5449
- ?>
5450
- <div class="ai-form header rounded">
5451
- <div style="float: left;">
5452
- <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Blank ad blocks? Looking for AdSense alternative?', 'ad-inserter'); ?></h2>
5453
- </div>
5454
- <div style="clear: both;"></div>
5455
- </div>
5456
- <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
5457
- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-4" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-4.gif" /></a>
5458
- </div>
5459
- <?php
5460
- break;
5461
  case 2:
5462
- ?>
5463
- <div class="ai-form header rounded">
5464
- <div style="float: left;">
5465
- <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Blank ad blocks? Looking for AdSense alternative?', 'ad-inserter'); ?></h2>
5466
- </div>
5467
- <div style="clear: both;"></div>
5468
- </div>
5469
- <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
5470
- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-7" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-7.gif" /></a>
5471
- </div>
5472
- <?php
5473
- break;
5474
  case 3:
5475
  case 4:
5476
  ?>
5477
  <div class="ai-form header rounded">
5478
  <div style="float: left;">
5479
- <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Blank ad blocks? Looking for AdSense alternative?', 'ad-inserter'); ?></h2>
5480
  </div>
5481
  <div style="clear: both;"></div>
5482
  </div>
5483
  <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
5484
- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-6" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-6.gif" /></a>
5485
  </div>
5486
  <?php
5487
  break;
@@ -5703,8 +5697,8 @@ function sidebar_pro () {
5703
  <!-- <a href='https://adinserter.pro/documentation/code-preview' class="clear-link" title="<?php _e ('Code preview with visual CSS editor', 'ad-inserter'); ?>" target="_blank"><img id="ai-preview" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-preview-250.png" /></a>-->
5704
  <a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-3.jpg" /></a>
5705
  <?php break; case 1: ?>
5706
- <a href='https://adinserter.pro/documentation/ad-blocking-detection' class="clear-link" title="<?php _e ('Ad blocking detection and content protection', 'ad-inserter'); ?>" target="_blank"><img id="ai-adb" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-adb.png" /></a>
5707
- <!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-9" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-9.jpg" /></a>-->
5708
  <?php break; case 2: ?>
5709
  <a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="clear-link" title="<?php _e ('A/B testing - Track ad impressions and clicks', 'ad-inserter'); ?>" target="_blank"><img id="ai-pro-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-charts-250.png" /></a>
5710
  <!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-9" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-9.jpg" /></a>-->
@@ -5717,8 +5711,8 @@ function sidebar_pro () {
5717
  <?php switch ($version) {
5718
  case 0:
5719
  ?>
5720
- <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>
5721
- <!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-2.jpg" /></a>-->
5722
  <?php break;
5723
  case 1:
5724
  ?>
@@ -5746,8 +5740,8 @@ function sidebar_pro () {
5746
  <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>
5747
  <!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-2.jpg" /></a>-->
5748
  <?php break; case 2: ?>
5749
- <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>
5750
- <!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-2.jpg" /></a>-->
5751
  <?php break; case 3: ?>
5752
  <!-- <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>-->
5753
  <a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-2.jpg" /></a>
@@ -5759,7 +5753,8 @@ function sidebar_pro () {
5759
  <?php switch ($version) {
5760
  case 0:
5761
  ?>
5762
- <a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="clear-link" title="<?php _e ('A/B testing - Track ad impressions and clicks', 'ad-inserter'); ?>" target="_blank"><img id="ai-pro-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-charts-250.png" /></a>
 
5763
  <!-- <a href="https://adinserter.pro/" class="clear-link" title="Automate ad placement on posts and pages" target="_blank"><img id="ai-pro-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>icon-256x256.jpg" /></a>-->
5764
  <!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-8" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-8.gif" /></a>-->
5765
  <?php break;
@@ -5774,7 +5769,7 @@ function sidebar_pro () {
5774
  <?php break;
5775
  case 3:
5776
  ?>
5777
- <a href='https://adinserter.pro/documentation/code-preview' class="clear-link" title="<?php _e ('Code preview with visual CSS editor', 'ad-inserter'); ?>" target="_blank"><img id="ai-preview" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-preview-250.png" /></a>
5778
  <?php break;
5779
  } ?>
5780
  </div>
602
 
603
  $adb_block_action_active = $obj->get_adb_block_action () != AI_ADB_BLOCK_ACTION_DO_NOTHING;
604
 
605
+ $parallax_options = false;
606
+ for ($index = 1; $index <= 3; $index ++) {
607
+ $parallax_options |= $obj->get_parallax ($index) && $obj->get_parallax_image ($index) != '';
608
+ if ($parallax_options) break;
609
+ }
610
+
611
  $display_options =
612
+ $obj->get_block_width () != '' || $obj->get_block_height () != '' || $obj->get_block_background_color () != '' || $obj->get_show_label () ||
613
  $obj->get_lazy_loading () || $obj->get_wait_for_interaction () || $obj->get_protected () || $obj->get_manual_loading () != AI_MANUAL_LOADING_DISABLED ||
614
  $obj->get_close_button () || $obj->get_auto_close_time () || $obj->get_stay_closed_time () ||
615
  $obj->get_delay_time () || $obj->get_delay_showing () || $obj->get_show_every () ||
616
+ $obj->get_iframe () ||
617
+ $parallax_options;
618
 
619
  $limits_options =
620
  $obj->get_max_impressions () || ($obj->get_limit_impressions_per_time_period () && $obj->get_limit_impressions_time_period ()) ||
1386
  </td>
1387
  <td style="width: 5%; overflow: hidden; padding-left: 10px;">
1388
  <?php _e('Alignment', 'ad-inserter'); ?>
1389
+ <select id="block-alignment-<?php echo $block; ?>" style="margin-bottom: 3px;" name="<?php echo AI_OPTION_ALIGNMENT_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_alignment_type(); ?>">
1390
  <option data-img-src="<?php echo plugins_url ('css/images/blank.png', __FILE__); ?>" data-img-class="automatic-insertion im-default" value="<?php echo AI_ALIGNMENT_DEFAULT; ?>" data-title="<?php echo AI_TEXT_DEFAULT; ?>" <?php echo ($obj->get_alignment_type() == AI_ALIGNMENT_DEFAULT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DEFAULT; ?></option>
1391
  <option data-img-src="<?php echo plugins_url ('css/images/blank.png', __FILE__); ?>" data-img-class="automatic-insertion im-align-left" value="<?php echo AI_ALIGNMENT_LEFT; ?>" data-title="<?php echo AI_TEXT_LEFT; ?>" <?php echo ($obj->get_alignment_type() == AI_ALIGNMENT_LEFT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_LEFT; ?></option>
1392
  <option data-img-src="<?php echo plugins_url ('css/images/blank.png', __FILE__); ?>" data-img-class="automatic-insertion im-center" value="<?php echo AI_ALIGNMENT_CENTER; ?>" data-title="<?php echo AI_TEXT_CENTER; ?>" <?php echo ($obj->get_alignment_type() == AI_ALIGNMENT_CENTER) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_CENTER; ?></option>
2309
  <?php _e ('Width', 'ad-inserter'); ?>
2310
  <input type="text" name="<?php echo AI_OPTION_BLOCK_WIDTH, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_block_width (); ?>" value="<?php echo $obj->get_block_width (); ?>" title= "<?php /* Translators: do not translate [[width]] - it is a CSS property */ _e ('Block width: empty means width not defined, number means width in pixels, any other value means CSS [[width]] property', 'ad-inserter'); ?>" size="3" maxlength="8" />
2311
  </td>
2312
+ <td style="padding-left: 20px; width: 10%;">
2313
  <?php _e ('Height', 'ad-inserter'); ?>
2314
  <input type="text" name="<?php echo AI_OPTION_BLOCK_HEIGHT, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_block_height (); ?>" value="<?php echo $obj->get_block_height (); ?>" title= "<?php /* Translators: do not translate [[height]] - it is a CSS property */ _e ('Block height: empty means height not defined, number means height in pixels, any other value means CSS [[height]] property', 'ad-inserter'); ?>" size="3" maxlength="8" />
2315
  </td>
2316
 
2317
+ <td style="padding-left: 20px; width: 70%;">
2318
+ <?php _e ('Background color', 'ad-inserter'); ?>
2319
+
2320
+ <input id="block-bkg-color-<?php echo $block; ?>" style="font-family: monospace;" type="text" title= "<?php _e ('Block background: empty means background not defined, #hex number means HTML color', 'ad-inserter'); ?>" size="7" maxlength="7" name="<?php echo AI_OPTION_BLOCK_BACKGROUND_COLOR, WP_FORM_FIELD_POSTFIX, $block; ?>" value="<?php echo $obj->get_block_background_color (); ?>" default="<?php echo $default->get_block_background_color (); ?>" />
2321
+ <span id="block-color-<?php echo $block; ?>" style="display: inline-block; width: 24px; height: 24px; border: 1px solid #ddd; border-radius: 4px; vertical-align: top; margin-left: 10px;"></span>
2322
+ </td>
2323
+
2324
  <td style="padding-left: 20px; width: 10%;">
2325
  <input type="hidden" name="<?php echo AI_OPTION_SHOW_LABEL, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
2326
  <input id="show-label-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_SHOW_LABEL, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_show_label (); ?>" <?php if ($obj->get_show_label () == AI_ENABLED) echo 'checked '; ?> />
2338
  <?php if (function_exists ('ai_delay_showing')) ai_delay_showing ($block, $obj, $default); ?>
2339
 
2340
  <?php if (function_exists ('ai_iframes')) ai_iframes ($block, $obj, $default); ?>
2341
+
2342
+ <?php if (function_exists ('ai_parallax')) ai_parallax ($block, $obj, $default); ?>
2343
  </div>
2344
 
2345
  <?php if (function_exists ('ai_limits_adb_action')) ai_limits_adb_action ($block, $obj, $default); ?>
3508
  replace_blocked_image ('ai-ez-6', 'ez-6.png', 'block');
3509
  replace_blocked_image ('ai-ez-7', 'ez-7.jpg', 'block');
3510
  replace_blocked_image ('ai-ez-8', 'ez-8.jpg', 'block');
3511
+ replace_blocked_image ('ai-sa-1', 'sa-1.png', 'block');
3512
+ replace_blocked_image ('ai-sa-2', 'sa-2.gif', 'block');
3513
  replace_blocked_image ('ai-pro-1', 'icon-256x256.jpg', 'block');
3514
  replace_blocked_image ('ai-pro-2', 'ai-charts-250.png', 'block');
3515
  replace_blocked_image ('ai-pro-3', 'ai-countries-250.png', 'block');
4190
  $ai_options = ai_raw_remote_options ();
4191
  }
4192
 
4193
+ if ($ai_options === false) $ai_options = ai_get_option (AI_OPTION_NAME, array ());
4194
 
4195
  $update_settings = false;
4196
 
4281
  $current_options = ai_raw_remote_options ();
4282
  }
4283
 
4284
+ if ($current_options === false) $current_options = ai_get_option (AI_OPTION_NAME, array ());
4285
 
4286
  $new_options = $current_options;
4287
 
5462
  function sidebar_addense_alternative () { ?>
5463
 
5464
  <?php
5465
+ switch (rand (1, 12)) {
5466
  case 1:
 
 
 
 
 
 
 
 
 
 
 
 
5467
  case 2:
 
 
 
 
 
 
 
 
 
 
 
 
5468
  case 3:
5469
  case 4:
5470
  ?>
5471
  <div class="ai-form header rounded">
5472
  <div style="float: left;">
5473
+ <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Maximize Your Ad Revenue With Header Bidding', 'ad-inserter'); ?></h2>
5474
  </div>
5475
  <div style="clear: both;"></div>
5476
  </div>
5477
  <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
5478
+ <a href='https://setupad.com/maximise-your-ad-revenue-with-header-bidding/?utm_source=ad-inserter-plugin&utm_medium=banner&utm_campaign=728x90-Maximise-Your-Ad-Revenue' class="clear-link" title="<?php _e ('Maximize Your Ad Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-sa-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>sa-2.gif" /></a>
5479
  </div>
5480
  <?php
5481
  break;
5697
  <!-- <a href='https://adinserter.pro/documentation/code-preview' class="clear-link" title="<?php _e ('Code preview with visual CSS editor', 'ad-inserter'); ?>" target="_blank"><img id="ai-preview" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-preview-250.png" /></a>-->
5698
  <a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-3.jpg" /></a>
5699
  <?php break; case 1: ?>
5700
+ <!-- <a href='https://adinserter.pro/documentation/ad-blocking-detection' class="clear-link" title="<?php _e ('Ad blocking detection and content protection', 'ad-inserter'); ?>" target="_blank"><img id="ai-adb" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-adb.png" /></a>-->
5701
+ <a href='https://setupad.com/maximise-your-ad-revenue-with-header-bidding/?utm_source=ad-inserter-plugin&utm_medium=banner&utm_campaign=250x250-Maximise-Your-Ad-Revenue' class="clear-link" title="<?php _e ('Maximize Your Ad Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-sa-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>sa-1.png" /></a>
5702
  <?php break; case 2: ?>
5703
  <a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="clear-link" title="<?php _e ('A/B testing - Track ad impressions and clicks', 'ad-inserter'); ?>" target="_blank"><img id="ai-pro-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-charts-250.png" /></a>
5704
  <!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-9" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-9.jpg" /></a>-->
5711
  <?php switch ($version) {
5712
  case 0:
5713
  ?>
5714
+ <!-- <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>-->
5715
+ <a href='https://setupad.com/maximise-your-ad-revenue-with-header-bidding/?utm_source=ad-inserter-plugin&utm_medium=banner&utm_campaign=250x250-Maximise-Your-Ad-Revenue' class="clear-link" title="<?php _e ('Maximize Your Ad Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-sa-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>sa-1.png" /></a>
5716
  <?php break;
5717
  case 1:
5718
  ?>
5740
  <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>
5741
  <!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-2.jpg" /></a>-->
5742
  <?php break; case 2: ?>
5743
+ <!-- <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>-->
5744
+ <a href='https://setupad.com/maximise-your-ad-revenue-with-header-bidding/?utm_source=ad-inserter-plugin&utm_medium=banner&utm_campaign=250x250-Maximise-Your-Ad-Revenue' class="clear-link" title="<?php _e ('Maximize Your Ad Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-sa-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>sa-1.png" /></a>
5745
  <?php break; case 3: ?>
5746
  <!-- <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>-->
5747
  <a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-2.jpg" /></a>
5753
  <?php switch ($version) {
5754
  case 0:
5755
  ?>
5756
+ <a href='https://adinserter.pro/documentation/code-preview' class="clear-link" title="<?php _e ('Code preview with visual CSS editor', 'ad-inserter'); ?>" target="_blank"><img id="ai-preview" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-preview-250.png" /></a>
5757
+ <!-- <a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="clear-link" title="<?php _e ('A/B testing - Track ad impressions and clicks', 'ad-inserter'); ?>" target="_blank"><img id="ai-pro-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-charts-250.png" /></a>-->
5758
  <!-- <a href="https://adinserter.pro/" class="clear-link" title="Automate ad placement on posts and pages" target="_blank"><img id="ai-pro-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>icon-256x256.jpg" /></a>-->
5759
  <!-- <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-8" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-8.gif" /></a>-->
5760
  <?php break;
5769
  <?php break;
5770
  case 3:
5771
  ?>
5772
+ <a href='https://setupad.com/maximise-your-ad-revenue-with-header-bidding/?utm_source=ad-inserter-plugin&utm_medium=banner&utm_campaign=250x250-Maximise-Your-Ad-Revenue' class="clear-link" title="<?php _e ('Maximize Your Ad Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-sa-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>sa-1.png" /></a>
5773
  <?php break;
5774
  } ?>
5775
  </div>