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

Version Description

  • Added support to hide ad label when unfilled AdSense block is hidden
  • Simplified AdSense API authorization process
  • Few minor bug fixes, cosmetic changes and code improvements
Download this release

Release Info

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

Code changes from version 2.7.17 to 2.7.18

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.7.17
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,11 @@ Requires PHP: 5.6
17
 
18
  Change Log
19
 
 
 
 
 
 
20
  Ad Inserter 2.7.17 - 2022-07-06
21
  - Fixed bug for url parameters check
22
  - Added support for reCaptcha v3 score check (Pro only)
@@ -917,6 +922,8 @@ function ai_buffering_end () {
917
  }
918
  }
919
 
 
 
920
  if (isset ($ai_db_options_extract [HTML_ELEMENT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && class_exists ('DOMDocument')) {
921
 
922
  $php_version = explode ('.', PHP_VERSION);
@@ -6181,6 +6188,11 @@ function ai_ajax () {
6181
  if (get_remote_debugging ()) {
6182
  global $ai_db_options, $ai_db_options_multisite;
6183
 
 
 
 
 
 
6184
  if (function_exists ('ai_check_remote_settings')) {
6185
  ai_check_remote_settings ();
6186
  }
@@ -6512,7 +6524,7 @@ function ai_ajax_backend () {
6512
  delete_transient (AI_TRANSIENT_ADSENSE_TOKEN);
6513
  delete_transient (AI_TRANSIENT_ADSENSE_ADS);
6514
  }
6515
- else update_option (AI_ADSENSE_AUTH_CODE, base64_decode ($_GET ['adsense-authorization-code']));
6516
  }
6517
  }
6518
 
@@ -7850,6 +7862,20 @@ function ai_content_hook ($content = '') {
7850
 
7851
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
7852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7853
  // TEMP CHECK
7854
  if (get_plugin_priority () % 2 == 1) {
7855
  if (strpos ($content, '<!-- ' . AI_CONTENT_MARKER) !== false) {
@@ -7861,14 +7887,8 @@ function ai_content_hook ($content = '') {
7861
  }
7862
  }
7863
 
7864
- $globals_name = AI_CONTENT_COUNTER_NAME;
7865
-
7866
  $special_element_tags = explode (',', str_replace (' ', '', get_no_paragraph_counting_inside ()));
7867
 
7868
- if (!isset ($ad_inserter_globals [$globals_name])) {
7869
- $ad_inserter_globals [$globals_name] = 1;
7870
- } else $ad_inserter_globals [$globals_name] ++;
7871
-
7872
  if ($debug_processing) {
7873
  ai_log ("CONTENT HOOK START [" . $ad_inserter_globals [$globals_name] . (in_the_loop () ? ', IN THE LOOP' : ', NOT IN THE LOOP') . ']');
7874
  $ai_processing_time_active = $ai_wp_data [AI_PROCESSING_TIME];
@@ -8976,12 +8996,13 @@ function ai_process_shortcode (&$block, $atts) {
8976
  $random_value_limits = trim ($parameters ['random']);
8977
  $random_value = '';
8978
  if ($random_value_limits == '') {
 
8979
  $random_value = rand ();
8980
  } else {
8981
  if (strpos ($random_value_limits, ',') !== false) {
8982
  $limits = explode (',', $random_value_limits);
8983
- $random_value = rand ($limits [0], $limits [1]);
8984
- } else $random_value = rand (0, $random_value_limits);
8985
  }
8986
 
8987
  return ($random_value);
@@ -11093,7 +11114,9 @@ function ai_process_fallback_separator ($code, $shortcode_data) {
11093
  break;
11094
  }
11095
 
11096
- $processed_code = "<div class='ai-fallback-adsense'>" . $processed_code . "</div>\n";
 
 
11097
 
11098
  if ($insert_code) {
11099
  $ai_code = base64_encode (ai_strip_js_markers (trim ($codes [1])));
@@ -11795,7 +11818,7 @@ if (defined ('AI_PLUGIN_TRACKING') && AI_PLUGIN_TRACKING) {
11795
  __("Thank you for installing", 'ad-inserter') . ' [STRONG][NAME][/STRONG]. ' .
11796
  // translators: Opt-in message: %s: HTML tags
11797
  sprintf (__("We would like to %s track its usage %s on your site. This is completely optional and can be disabled at any time.", 'ad-inserter'),
11798
- '<a href="https://wordpress.org/plugins/ad-inserter/#privacy%20policy%20%E2%80%93%20plugin%20usage%20tracking" target=_blank" style="text-decoration: none; box-shadow: 0 0 0;">', '</a>') . '[P]' .
11799
  __("We don't record any sensitive data, only information regarding the WordPress environment and plugin usage, which will help us to make improvements to the plugin.", 'ad-inserter');
11800
 
11801
  return $text;
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.7.18
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.18 - 2022-09-01
21
+ - Added support to hide ad label when unfilled AdSense block is hidden
22
+ - Simplified AdSense API authorization process
23
+ - Few minor bug fixes, cosmetic changes and code improvements
24
+
25
  Ad Inserter 2.7.17 - 2022-07-06
26
  - Fixed bug for url parameters check
27
  - Added support for reCaptcha v3 score check (Pro only)
922
  }
923
  }
924
 
925
+ $body = preg_replace ('/<!-- ' . AI_CONTENT_MARKER . " (\d+) -->\n/", '', $body);
926
+
927
  if (isset ($ai_db_options_extract [HTML_ELEMENT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && class_exists ('DOMDocument')) {
928
 
929
  $php_version = explode ('.', PHP_VERSION);
6188
  if (get_remote_debugging ()) {
6189
  global $ai_db_options, $ai_db_options_multisite;
6190
 
6191
+ if (isset ($_GET ["ai-show-errors"])) {
6192
+ ini_set ('display_errors', 1);
6193
+ error_reporting (E_ALL);
6194
+ }
6195
+
6196
  if (function_exists ('ai_check_remote_settings')) {
6197
  ai_check_remote_settings ();
6198
  }
6524
  delete_transient (AI_TRANSIENT_ADSENSE_TOKEN);
6525
  delete_transient (AI_TRANSIENT_ADSENSE_ADS);
6526
  }
6527
+ // else update_option (AI_ADSENSE_AUTH_CODE, base64_decode ($_GET ['adsense-authorization-code']));
6528
  }
6529
  }
6530
 
7862
 
7863
  $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
7864
 
7865
+ $globals_name = AI_CONTENT_COUNTER_NAME;
7866
+
7867
+ if (!isset ($ad_inserter_globals [$globals_name])) {
7868
+ $ad_inserter_globals [$globals_name] = 1;
7869
+ } else $ad_inserter_globals [$globals_name] ++;
7870
+
7871
+ if (!is_string ($content)) {
7872
+ if ($debug_processing) {
7873
+ ai_log ("CONTENT HOOK START [" . $ad_inserter_globals [$globals_name] . (in_the_loop () ? ', IN THE LOOP' : ', NOT IN THE LOOP') . '] - CONTENT NOT STRING - NO PROCESING');
7874
+ ai_log ("");
7875
+ }
7876
+ return $content;
7877
+ }
7878
+
7879
  // TEMP CHECK
7880
  if (get_plugin_priority () % 2 == 1) {
7881
  if (strpos ($content, '<!-- ' . AI_CONTENT_MARKER) !== false) {
7887
  }
7888
  }
7889
 
 
 
7890
  $special_element_tags = explode (',', str_replace (' ', '', get_no_paragraph_counting_inside ()));
7891
 
 
 
 
 
7892
  if ($debug_processing) {
7893
  ai_log ("CONTENT HOOK START [" . $ad_inserter_globals [$globals_name] . (in_the_loop () ? ', IN THE LOOP' : ', NOT IN THE LOOP') . ']');
7894
  $ai_processing_time_active = $ai_wp_data [AI_PROCESSING_TIME];
8996
  $random_value_limits = trim ($parameters ['random']);
8997
  $random_value = '';
8998
  if ($random_value_limits == '') {
8999
+ // Not used
9000
  $random_value = rand ();
9001
  } else {
9002
  if (strpos ($random_value_limits, ',') !== false) {
9003
  $limits = explode (',', $random_value_limits);
9004
+ $random_value = rand ((int) $limits [0], (int) $limits [1]);
9005
+ } else $random_value = rand (0, (int) $random_value_limits);
9006
  }
9007
 
9008
  return ($random_value);
11114
  break;
11115
  }
11116
 
11117
+ $empty_fallback_code_class = trim ($codes [1]) == '' ? " ai-empty-code" : '';
11118
+
11119
+ $processed_code = "<div class='ai-fallback-adsense{$empty_fallback_code_class}'>" . $processed_code . "</div>\n";
11120
 
11121
  if ($insert_code) {
11122
  $ai_code = base64_encode (ai_strip_js_markers (trim ($codes [1])));
11818
  __("Thank you for installing", 'ad-inserter') . ' [STRONG][NAME][/STRONG]. ' .
11819
  // translators: Opt-in message: %s: HTML tags
11820
  sprintf (__("We would like to %s track its usage %s on your site. This is completely optional and can be disabled at any time.", 'ad-inserter'),
11821
+ '<a href="https://wordpress.org/plugins/ad-inserter/#privacy%20policy%20-%20plugin%20usage%20tracking" target=_blank" style="text-decoration: none; box-shadow: 0 0 0;">', '</a>') . '[P]' .
11822
  __("We don't record any sensitive data, only information regarding the WordPress environment and plugin usage, which will help us to make improvements to the plugin.", 'ad-inserter');
11823
 
11824
  return $text;
class.php CHANGED
@@ -3106,7 +3106,9 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3106
  $debug_fallback_code = $debug_fallback->bar (_x('FALLBACK CODE', 'Block', 'ad-inserter'), '', 'AdSense UNFILLED', '&nbsp;');
3107
  }
3108
 
3109
- $processed_code = "<div class='ai-fallback-adsense'>" . $processed_code . "</div>\n";
 
 
3110
 
3111
  if ($insert_code) {
3112
  $ai_code = $this->base64_encode_w3tc (ai_strip_js_markers ($debug_fallback_code . trim ($codes [1])), false);
@@ -5098,7 +5100,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
5098
  if (is_numeric ($width)) {
5099
  $width .= 'px';
5100
  }
5101
- $style .= 'width: ' . $width . ';';
5102
 
5103
  $processed_code = "<div style='$style'>\n" . $processed_code ."\n</div>\n";
5104
  }
@@ -8857,6 +8859,9 @@ echo '</body>
8857
  function check_id ($ids = null, $id_type = AI_WHITE_LIST) {
8858
  global $ai_wp_data;
8859
 
 
 
 
8860
  if ($ids === null) {
8861
  $ids = trim ($this->get_id_list());
8862
  $id_type = $this->get_id_list_type();
@@ -10110,7 +10115,7 @@ class ai_code_generator {
10110
  if (strpos ($style_line, $viewport_class) !== false) {
10111
 
10112
  $min_width = preg_match ("/min-width\s*:\s*(\d+)px/", $style_line, $min_width_match);
10113
- $viewport_width = $min_width ? $min_width_match [1] : '';
10114
 
10115
  if ($viewport_width == $viewport_widths [$index]) {
10116
  $styles = explode ($viewport_class, $style_line);
3106
  $debug_fallback_code = $debug_fallback->bar (_x('FALLBACK CODE', 'Block', 'ad-inserter'), '', 'AdSense UNFILLED', '&nbsp;');
3107
  }
3108
 
3109
+ $empty_fallback_code_class = trim ($codes [1]) == '' ? " ai-empty-code" : '';
3110
+
3111
+ $processed_code = "<div class='ai-fallback-adsense{$empty_fallback_code_class}'>" . $processed_code . "</div>\n";
3112
 
3113
  if ($insert_code) {
3114
  $ai_code = $this->base64_encode_w3tc (ai_strip_js_markers ($debug_fallback_code . trim ($codes [1])), false);
5100
  if (is_numeric ($width)) {
5101
  $width .= 'px';
5102
  }
5103
+ $style = 'width: ' . $width . ';';
5104
 
5105
  $processed_code = "<div style='$style'>\n" . $processed_code ."\n</div>\n";
5106
  }
8859
  function check_id ($ids = null, $id_type = AI_WHITE_LIST) {
8860
  global $ai_wp_data;
8861
 
8862
+ // Check post IDs only on posts and static pages
8863
+ if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_POST && $ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_STATIC) return true;
8864
+
8865
  if ($ids === null) {
8866
  $ids = trim ($this->get_id_list());
8867
  $id_type = $this->get_id_list_type();
10115
  if (strpos ($style_line, $viewport_class) !== false) {
10116
 
10117
  $min_width = preg_match ("/min-width\s*:\s*(\d+)px/", $style_line, $min_width_match);
10118
+ $viewport_width = $min_width ? $min_width_match [1] : 0;
10119
 
10120
  if ($viewport_width == $viewport_widths [$index]) {
10121
  $styles = explode ($viewport_class, $style_line);
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.17');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
@@ -1265,8 +1265,8 @@ define ('AI_DEBUG_AD_BLOCKING_STATUS', 0x40);
1265
 
1266
  if (defined ('AI_ADSENSE_API_IDS')) {
1267
  if (!defined ('AI_CI_STRING')) {
1268
- define ('AI_CI_STRING', 'MzUwNTk3MTU2NDMwLWJzdWU1ODdmbzFjdTU4NDk1Z3B2amoxaHBnYWJ1OGpsLmFwcHMuZ29vZ2xldXNlcmNvbnRlbnQuY29t');
1269
- define ('AI_CS_STRING', 'eFMwZ2I1bzNWVmtRZ29RRGpEOVl6Yk96');
1270
  }
1271
  }
1272
 
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
+ define ('AD_INSERTER_VERSION', '2.7.18');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
1265
 
1266
  if (defined ('AI_ADSENSE_API_IDS')) {
1267
  if (!defined ('AI_CI_STRING')) {
1268
+ define ('AI_CI_STRING', 'MzUwNTk3MTU2NDMwLWloanFxZjBtcjFzMGp0Z2phamJiMnY0MzJlZHEyNzJpLmFwcHMuZ29vZ2xldXNlcmNvbnRlbnQuY29t');
1269
+ define ('AI_CS_STRING', 'R09DU1BYLWVZRnFMSHV0ZDZmQzQyUHdpbTA5VnJuOWE3WWc=');
1270
  }
1271
  }
1272
 
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.7.17"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
@@ -129,20 +129,20 @@ a.clear-link, a.clear-link:hover, a.clear-link:focus {
129
  box-shadow: 0 0 0;
130
  }
131
 
132
- .rounded {
133
  border-radius: 5px;
134
  }
135
 
136
- .ai-form.rounded input, .ai-form.rounded select {
137
  border-radius: 5px;
138
  }
139
 
140
- .ai-form.rounded input[type=submit], .ai-button.ui-button.ui-corner-all.ui-widget {
141
  border: 1px solid #d3d3d3;
142
  background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
143
  }
144
 
145
- #ai-form div.rounded, #ai-sidebar div.rounded {
146
  margin: 8px 0;
147
  padding: 8px;
148
  border: 1px solid rgb(221, 221, 221);
@@ -227,10 +227,10 @@ a.clear-link, a.clear-link:hover, a.clear-link:focus {
227
  .exceptions td.button-delete {
228
  cursor: pointer;
229
  }
230
- .small-button .ui-button-text-only .ui-button-text {
231
  padding: 0px;
232
  }
233
- .responsive-table td {
234
  white-space: nowrap;
235
  padding: 0;
236
  }
1
  #ai-data {
2
+ font-family: "2.7.18"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
129
  box-shadow: 0 0 0;
130
  }
131
 
132
+ .ai-rounded {
133
  border-radius: 5px;
134
  }
135
 
136
+ .ai-form.ai-rounded input, .ai-form.ai-rounded select {
137
  border-radius: 5px;
138
  }
139
 
140
+ .ai-form.ai-rounded input[type=submit], .ai-button.ui-button.ui-corner-all.ui-widget {
141
  border: 1px solid #d3d3d3;
142
  background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
143
  }
144
 
145
+ #ai-form div.ai-rounded, #ai-sidebar div.ai-rounded {
146
  margin: 8px 0;
147
  padding: 8px;
148
  border: 1px solid rgb(221, 221, 221);
227
  .exceptions td.button-delete {
228
  cursor: pointer;
229
  }
230
+ .ai-small-button .ui-button-text-only .ui-button-text {
231
  padding: 0px;
232
  }
233
+ .ai-responsive-table td {
234
  white-space: nowrap;
235
  padding: 0;
236
  }
images/ai-recaptcha-250.png ADDED
Binary file
images/sa-1.png DELETED
Binary file
images/sa-2.gif DELETED
Binary file
includes/adsense-api.php CHANGED
@@ -3,12 +3,7 @@
3
  //ini_set ('display_errors', 1);
4
  //error_reporting (E_ALL);
5
 
6
- // GPT
7
- // define ('AI_ADSENSE_CLIENT_ID', '607114800573.apps.googleusercontent.com');
8
- // define ('AI_ADSENSE_CLIENT_SECRET', '2muX2P9FHRNtm6BURa49t1z6');
9
- // define ('AI_ADSENSE_DEVELOPER_KEY', 'AIzaSyCDZtqhLeAp1XM-xS52nzQ7NwnrOH0UE2U');
10
-
11
- if (defined ('AI_CI_STRING') /*&& get_option (AI_ADSENSE_OWN_IDS) === false*/) {
12
  define ('AI_ADSENSE_CLIENT_ID', base64_decode (AI_CI_STRING));
13
  define ('AI_ADSENSE_CLIENT_SECRET', base64_decode (AI_CS_STRING));
14
  }
@@ -43,11 +38,16 @@ class adsense_api {
43
 
44
  $this->apiClient->setClientId (AI_ADSENSE_CLIENT_ID);
45
  $this->apiClient->setClientSecret (AI_ADSENSE_CLIENT_SECRET);
46
- $this->apiClient->setRedirectUri ('urn:ietf:wg:oauth:2.0:oob');
47
-
48
  $this->apiClient->setScopes (array ('https://www.googleapis.com/auth/adsense.readonly'));
49
  $this->apiClient->setAccessType ('offline');
50
 
 
 
 
 
 
 
51
  $this->adSenseService = new Google_Service_AdSense ($this->apiClient);
52
  }
53
 
3
  //ini_set ('display_errors', 1);
4
  //error_reporting (E_ALL);
5
 
6
+ if (defined ('AI_CI_STRING') && get_option (AI_ADSENSE_OWN_IDS) === false) {
 
 
 
 
 
7
  define ('AI_ADSENSE_CLIENT_ID', base64_decode (AI_CI_STRING));
8
  define ('AI_ADSENSE_CLIENT_SECRET', base64_decode (AI_CS_STRING));
9
  }
38
 
39
  $this->apiClient->setClientId (AI_ADSENSE_CLIENT_ID);
40
  $this->apiClient->setClientSecret (AI_ADSENSE_CLIENT_SECRET);
41
+ $this->apiClient->setRedirectUri ('https://a.adinserter.pro/');
 
42
  $this->apiClient->setScopes (array ('https://www.googleapis.com/auth/adsense.readonly'));
43
  $this->apiClient->setAccessType ('offline');
44
 
45
+ $adsense_api_state = array (
46
+ 'nonce' => base64_encode (wp_create_nonce ("adinserter_data")),
47
+ 'return-url' => base64_encode (admin_url ('options-general.php?page=ad-inserter.php')),
48
+ );
49
+ $this->apiClient->setState (base64_encode (serialize ($adsense_api_state)));
50
+
51
  $this->adSenseService = new Google_Service_AdSense ($this->apiClient);
52
  }
53
 
includes/js/ai-insert.js CHANGED
@@ -288,7 +288,8 @@ ai_insert_adsense_fallback_codes = function (adsense_unfilled_ins) {
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);
@@ -300,6 +301,13 @@ ai_insert_adsense_fallback_codes = function (adsense_unfilled_ins) {
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
  }
288
 
289
  adsense_unfilled_ins.style.display = "none";
290
 
291
+ var fallback_wrapper = adsense_unfilled_ins.closest ('.ai-fallback-adsense');
292
+ var fallback_div = fallback_wrapper.nextElementSibling;
293
 
294
  if (!!fallback_div.getAttribute ('data-code')) {
295
  var inserted = ai_insert_code (fallback_div);
301
  fallback_div.style.display = "block";
302
  }
303
 
304
+ if (fallback_wrapper.classList.contains ('ai-empty-code')) {
305
+ var label_div = adsense_unfilled_ins.closest ('.AI_FUNCT_GET_BLOCK_CLASS_NAME').getElementsByClassName ('code-block-label');
306
+ if (label_div.length != 0) {
307
+ label_div [0].style.display = "none";
308
+ }
309
+ }
310
+
311
  if (ai_debug) {
312
  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');
313
  }
includes/js/ai-insert.min.js CHANGED
@@ -1,25 +1,25 @@
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-position"),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);
1
+ var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.arrayIteratorImpl=function(a){var f=0;return function(){return f<a.length?{done:!1,value:a[f++]}:{done:!0}}};$jscomp.arrayIterator=function(a){return{next:$jscomp.arrayIteratorImpl(a)}};$jscomp.makeIterator=function(a){var f="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return f?f.call(a):$jscomp.arrayIterator(a)};
2
+ ai_insert=function(a,f,n){for(var k=-1!=f.indexOf(":eq")?jQuery(f):document.querySelectorAll(f),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=n;var p=v.getElementsByClassName("ai-selector-counter")[0];null!=p&&(p.innerText=u+1);p=v.getElementsByClassName("ai-debug-name ai-main")[0];if(null!=p){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")&&(p.innerText=m+" "+f+" ("+c.tagName.toLowerCase()+selector_string+")")}p=document.createRange();m=!0;try{var w=p.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 f(p,m){return null==p?!1:p.classList?p.classList.contains(m):-1<(" "+p.className+" ").indexOf(" "+m+" ")}function n(p,m){null!=p&&(p.classList?p.classList.add(m):p.className+=" "+m)}function k(p,m){null!=p&&(p.classList?p.classList.remove(m):p.className=p.className.replace(new RegExp("(^|\\b)"+m.split(" ").join("|")+"(\\b|$)","gi")," "))}if("undefined"!=typeof a){var u=!1;if(f(a,"no-visibility-check")||a.offsetWidth||a.offsetHeight||a.getClientRects().length){u=
7
+ a.getAttribute("data-code");var y=a.getAttribute("data-insertion-position"),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(p){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
+ f(v,"ai-debug-bar")&&f(v,"ai-debug-script")&&(k(v,"ai-debug-script"),n(v,"ai-debug-viewport-invisible")),k(a,"ai-viewports");return u}};
9
+ ai_insert_list_code=function(a){var f=document.getElementsByClassName(a)[0];if("undefined"!=typeof f){var n=ai_insert_code(f),k=f.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME");if(k){n||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=""))}f.classList.remove(a);n&&
10
+ ai_process_elements()}};ai_insert_viewport_code=function(a){var f=document.getElementsByClassName(a)[0];if("undefined"!=typeof f){var n=ai_insert_code(f);f.classList.remove(a);n&&(a=f.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME"),null!=a&&(n=f.getAttribute("style"),null!=n&&a.setAttribute("style",a.getAttribute("style")+" "+n)));setTimeout(function(){f.removeAttribute("style")},2);ai_process_elements()}};
11
+ ai_insert_adsense_fallback_codes=function(a){a.style.display="none";var f=a.closest(".ai-fallback-adsense"),n=f.nextElementSibling;n.getAttribute("data-code")?ai_insert_code(n)&&ai_process_elements():n.style.display="block";f.classList.contains("ai-empty-code")&&(a=a.closest(".AI_FUNCT_GET_BLOCK_CLASS_NAME").getElementsByClassName("code-block-label"),0!=a.length&&(a[0].style.display="none"))};
12
+ ai_insert_code_by_class=function(a){var f=document.getElementsByClassName(a)[0];"undefined"!=typeof f&&(ai_insert_code(f),f.classList.remove(a))};ai_insert_client_code=function(a,f){var n=document.getElementsByClassName(a)[0];if("undefined"!=typeof n){var k=n.getAttribute("data-code");null!=k&&ai_check_block()&&ai_check_and_insert_block()&&(n.setAttribute("data-code",k.substring(Math.floor(f/19))),ai_insert_code_by_class(a),n.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,f){for(var n=$jscomp.makeIterator(a),k=n.next();!k.done;k=n.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,f,n){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,g){var b=d[e];d[e]=function(){if(g.length==arguments.length)return g.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 g=0,b;b=d[g];g++)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,g,b){for(var h=0,l;l=d[h];h++)g(l,e,b)&&b.push({callback:e.callback,elem:l}),0<l.childNodes.length&&c.checkChildNodesRecursively(l.childNodes,e,g,b)},mergeArrays:function(d,e){var g={},b;for(b in d)d.hasOwnProperty(b)&&(g[b]=d[b]);for(b in e)e.hasOwnProperty(b)&&(g[b]=e[b]);return g},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,g,b){d={target:d,selector:e,options:g,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,g;g=this._eventsBucket[e];e--)d(g)&&(this._beforeRemoving&&this._beforeRemoving(g),(g=this._eventsBucket.splice(e,1))&&g.length&&(g[0].callback=null))};t.prototype.beforeAdding=function(d){this._beforeAdding=
20
+ d};t.prototype.beforeRemoving=function(d){this._beforeRemoving=d};return t}(),p=function(t,d){var e=new v,g=this,b={fireOnAttributesModification:!1};e.beforeAdding(function(h){var l=h.target;if(l===a.document||l===a)l=document.getElementsByTagName("html")[0];var q=new MutationObserver(function(x){d.call(this,x,h)});var r=t(h.options);q.observe(l,r);h.observer=q;h.me=g});e.beforeRemoving(function(h){h.observer.disconnect()});this.bindEvent=function(h,l,q){l=c.mergeArrays(b,l);for(var r=c.toElementsArray(this),
21
+ x=0;x<r.length;x++)e.addEvent(r[x],h,l,q)};this.unbindEvent=function(){var h=c.toElementsArray(this);e.removeEvent(function(l){for(var q=0;q<h.length;q++)if(this===n||l.target===h[q])return!0;return!1})};this.unbindEventWithSelectorOrCallback=function(h){var l=c.toElementsArray(this);e.removeEvent("function"===typeof h?function(q){for(var r=0;r<l.length;r++)if((this===n||q.target===l[r])&&q.callback===h)return!0;return!1}:function(q){for(var r=0;r<l.length;r++)if((this===n||q.target===l[r])&&q.selector===
22
+ h)return!0;return!1})};this.unbindEventWithSelectorAndCallback=function(h,l){var q=c.toElementsArray(this);e.removeEvent(function(r){for(var x=0;x<q.length;x++)if((this===n||r.target===q[x])&&r.selector===h&&r.callback===l)return!0;return!1})};return this},m=new function(){function t(g,b,h){return c.matchesSelector(g,b.selector)&&(g._id===n&&(g._id=y++),-1==b.firedElems.indexOf(g._id))?(b.firedElems.push(g._id),!0):!1}var d={fireOnAttributesModification:!1,onceOnly:!1,existing:!1};m=new p(function(g){var b=
23
+ {attributes:!1,childList:!0,subtree:!0};g.fireOnAttributesModification&&(b.attributes=!0);return b},function(g,b){g.forEach(function(h){var l=h.addedNodes,q=h.target,r=[];null!==l&&0<l.length?c.checkChildNodesRecursively(l,b,t,r):"attributes"===h.type&&t(q,b,r)&&r.push({callback:b.callback,elem:q});c.callCallbacks(r,b)})});var e=m.bindEvent;m.bindEvent=function(g,b,h){"undefined"===typeof h?(h=b,b=d):b=c.mergeArrays(d,b);var l=c.toElementsArray(this);if(b.existing){for(var q=[],r=0;r<l.length;r++)for(var x=
24
+ l[r].querySelectorAll(g),z=0;z<x.length;z++)q.push({callback:h,elem:x[z]});if(b.onceOnly&&q.length)return h.call(q[0].elem,q[0].elem);setTimeout(c.callCallbacks,1,q)}e.call(this,g,b,h)};return m},w=new function(){function t(g,b){return c.matchesSelector(g,b.selector)}var d={};w=new p(function(){return{childList:!0,subtree:!0}},function(g,b){g.forEach(function(h){h=h.removedNodes;var l=[];null!==h&&0<h.length&&c.checkChildNodesRecursively(h,b,t,l);c.callCallbacks(l,b)})});var e=w.bindEvent;w.bindEvent=
25
+ function(g,b,h){"undefined"===typeof h?(h=b,b=d):b=c.mergeArrays(d,b);e.call(this,g,b,h)};return w};f&&u(f.fn);u(HTMLElement.prototype);u(NodeList.prototype);u(HTMLCollection.prototype);u(HTMLDocument.prototype);u(Window.prototype);f={};k(m,f,"unbindAllArrive");k(w,f,"unbindAllLeave");return f}}(window,"undefined"===typeof jQuery?null:jQuery,void 0);
includes/mobiledetect/Mobile_Detect.php CHANGED
@@ -18,7 +18,7 @@
18
  * @author Nick Ilyin <nick.ilyin@gmail.com>
19
  * Original author: Victor Stanciu <vic.stanciu@gmail.com>
20
  *
21
- * @version 2.8.34
22
  */
23
  class ai_Mobile_Detect
24
  {
@@ -61,7 +61,7 @@ class ai_Mobile_Detect
61
  /**
62
  * Stores the version number of the current release.
63
  */
64
- const VERSION = '2.8.34';
65
 
66
  /**
67
  * A type for the version() method indicating a string return value.
@@ -165,12 +165,13 @@ class ai_Mobile_Detect
165
  protected static $phoneDevices = array(
166
  'iPhone' => '\biPhone\b|\biPod\b', // |\biTunes
167
  'BlackBerry' => 'BlackBerry|\bBB10\b|rim[0-9]+|\b(BBA100|BBB100|BBD100|BBE100|BBF100|STH100)\b-[0-9]+',
 
168
  'HTC' => 'HTC|HTC.*(Sensation|Evo|Vision|Explorer|6800|8100|8900|A7272|S510e|C110e|Legend|Desire|T8282)|APX515CKT|Qtek9090|APA9292KT|HD_mini|Sensation.*Z710e|PG86100|Z715e|Desire.*(A8181|HD)|ADR6200|ADR6400L|ADR6425|001HT|Inspire 4G|Android.*\bEVO\b|T-Mobile G1|Z520m|Android [0-9.]+; Pixel',
169
  'Nexus' => 'Nexus One|Nexus S|Galaxy.*Nexus|Android.*Nexus.*Mobile|Nexus 4|Nexus 5|Nexus 6',
170
  // @todo: Is 'Dell Streak' a tablet or a phone? ;)
171
  'Dell' => 'Dell[;]? (Streak|Aero|Venue|Venue Pro|Flash|Smoke|Mini 3iX)|XCD28|XCD35|\b001DL\b|\b101DL\b|\bGS01\b',
172
  'Motorola' => 'Motorola|DROIDX|DROID BIONIC|\bDroid\b.*Build|Android.*Xoom|HRI39|MOT-|A1260|A1680|A555|A853|A855|A953|A955|A956|Motorola.*ELECTRIFY|Motorola.*i1|i867|i940|MB200|MB300|MB501|MB502|MB508|MB511|MB520|MB525|MB526|MB611|MB612|MB632|MB810|MB855|MB860|MB861|MB865|MB870|ME501|ME502|ME511|ME525|ME600|ME632|ME722|ME811|ME860|ME863|ME865|MT620|MT710|MT716|MT720|MT810|MT870|MT917|Motorola.*TITANIUM|WX435|WX445|XT300|XT301|XT311|XT316|XT317|XT319|XT320|XT390|XT502|XT530|XT531|XT532|XT535|XT603|XT610|XT611|XT615|XT681|XT701|XT702|XT711|XT720|XT800|XT806|XT860|XT862|XT875|XT882|XT883|XT894|XT901|XT907|XT909|XT910|XT912|XT928|XT926|XT915|XT919|XT925|XT1021|\bMoto E\b|XT1068|XT1092|XT1052',
173
- 'Samsung' => '\bSamsung\b|SM-G950F|SM-G955F|SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B3730|GT-B3740|GT-B5510|GT-B5512|GT-B5722|GT-B6520|GT-B7300|GT-B7320|GT-B7330|GT-B7350|GT-B7510|GT-B7722|GT-B7800|GT-C3010|GT-C3011|GT-C3060|GT-C3200|GT-C3212|GT-C3212I|GT-C3262|GT-C3222|GT-C3300|GT-C3300K|GT-C3303|GT-C3303K|GT-C3310|GT-C3322|GT-C3330|GT-C3350|GT-C3500|GT-C3510|GT-C3530|GT-C3630|GT-C3780|GT-C5010|GT-C5212|GT-C6620|GT-C6625|GT-C6712|GT-E1050|GT-E1070|GT-E1075|GT-E1080|GT-E1081|GT-E1085|GT-E1087|GT-E1100|GT-E1107|GT-E1110|GT-E1120|GT-E1125|GT-E1130|GT-E1160|GT-E1170|GT-E1175|GT-E1180|GT-E1182|GT-E1200|GT-E1210|GT-E1225|GT-E1230|GT-E1390|GT-E2100|GT-E2120|GT-E2121|GT-E2152|GT-E2220|GT-E2222|GT-E2230|GT-E2232|GT-E2250|GT-E2370|GT-E2550|GT-E2652|GT-E3210|GT-E3213|GT-I5500|GT-I5503|GT-I5700|GT-I5800|GT-I5801|GT-I6410|GT-I6420|GT-I7110|GT-I7410|GT-I7500|GT-I8000|GT-I8150|GT-I8160|GT-I8190|GT-I8320|GT-I8330|GT-I8350|GT-I8530|GT-I8700|GT-I8703|GT-I8910|GT-I9000|GT-I9001|GT-I9003|GT-I9010|GT-I9020|GT-I9023|GT-I9070|GT-I9082|GT-I9100|GT-I9103|GT-I9220|GT-I9250|GT-I9300|GT-I9305|GT-I9500|GT-I9505|GT-M3510|GT-M5650|GT-M7500|GT-M7600|GT-M7603|GT-M8800|GT-M8910|GT-N7000|GT-S3110|GT-S3310|GT-S3350|GT-S3353|GT-S3370|GT-S3650|GT-S3653|GT-S3770|GT-S3850|GT-S5210|GT-S5220|GT-S5229|GT-S5230|GT-S5233|GT-S5250|GT-S5253|GT-S5260|GT-S5263|GT-S5270|GT-S5300|GT-S5330|GT-S5350|GT-S5360|GT-S5363|GT-S5369|GT-S5380|GT-S5380D|GT-S5560|GT-S5570|GT-S5600|GT-S5603|GT-S5610|GT-S5620|GT-S5660|GT-S5670|GT-S5690|GT-S5750|GT-S5780|GT-S5830|GT-S5839|GT-S6102|GT-S6500|GT-S7070|GT-S7200|GT-S7220|GT-S7230|GT-S7233|GT-S7250|GT-S7500|GT-S7530|GT-S7550|GT-S7562|GT-S7710|GT-S8000|GT-S8003|GT-S8500|GT-S8530|GT-S8600|SCH-A310|SCH-A530|SCH-A570|SCH-A610|SCH-A630|SCH-A650|SCH-A790|SCH-A795|SCH-A850|SCH-A870|SCH-A890|SCH-A930|SCH-A950|SCH-A970|SCH-A990|SCH-I100|SCH-I110|SCH-I400|SCH-I405|SCH-I500|SCH-I510|SCH-I515|SCH-I600|SCH-I730|SCH-I760|SCH-I770|SCH-I830|SCH-I910|SCH-I920|SCH-I959|SCH-LC11|SCH-N150|SCH-N300|SCH-R100|SCH-R300|SCH-R351|SCH-R400|SCH-R410|SCH-T300|SCH-U310|SCH-U320|SCH-U350|SCH-U360|SCH-U365|SCH-U370|SCH-U380|SCH-U410|SCH-U430|SCH-U450|SCH-U460|SCH-U470|SCH-U490|SCH-U540|SCH-U550|SCH-U620|SCH-U640|SCH-U650|SCH-U660|SCH-U700|SCH-U740|SCH-U750|SCH-U810|SCH-U820|SCH-U900|SCH-U940|SCH-U960|SCS-26UC|SGH-A107|SGH-A117|SGH-A127|SGH-A137|SGH-A157|SGH-A167|SGH-A177|SGH-A187|SGH-A197|SGH-A227|SGH-A237|SGH-A257|SGH-A437|SGH-A517|SGH-A597|SGH-A637|SGH-A657|SGH-A667|SGH-A687|SGH-A697|SGH-A707|SGH-A717|SGH-A727|SGH-A737|SGH-A747|SGH-A767|SGH-A777|SGH-A797|SGH-A817|SGH-A827|SGH-A837|SGH-A847|SGH-A867|SGH-A877|SGH-A887|SGH-A897|SGH-A927|SGH-B100|SGH-B130|SGH-B200|SGH-B220|SGH-C100|SGH-C110|SGH-C120|SGH-C130|SGH-C140|SGH-C160|SGH-C170|SGH-C180|SGH-C200|SGH-C207|SGH-C210|SGH-C225|SGH-C230|SGH-C417|SGH-C450|SGH-D307|SGH-D347|SGH-D357|SGH-D407|SGH-D415|SGH-D780|SGH-D807|SGH-D980|SGH-E105|SGH-E200|SGH-E315|SGH-E316|SGH-E317|SGH-E335|SGH-E590|SGH-E635|SGH-E715|SGH-E890|SGH-F300|SGH-F480|SGH-I200|SGH-I300|SGH-I320|SGH-I550|SGH-I577|SGH-I600|SGH-I607|SGH-I617|SGH-I627|SGH-I637|SGH-I677|SGH-I700|SGH-I717|SGH-I727|SGH-i747M|SGH-I777|SGH-I780|SGH-I827|SGH-I847|SGH-I857|SGH-I896|SGH-I897|SGH-I900|SGH-I907|SGH-I917|SGH-I927|SGH-I937|SGH-I997|SGH-J150|SGH-J200|SGH-L170|SGH-L700|SGH-M110|SGH-M150|SGH-M200|SGH-N105|SGH-N500|SGH-N600|SGH-N620|SGH-N625|SGH-N700|SGH-N710|SGH-P107|SGH-P207|SGH-P300|SGH-P310|SGH-P520|SGH-P735|SGH-P777|SGH-Q105|SGH-R210|SGH-R220|SGH-R225|SGH-S105|SGH-S307|SGH-T109|SGH-T119|SGH-T139|SGH-T209|SGH-T219|SGH-T229|SGH-T239|SGH-T249|SGH-T259|SGH-T309|SGH-T319|SGH-T329|SGH-T339|SGH-T349|SGH-T359|SGH-T369|SGH-T379|SGH-T409|SGH-T429|SGH-T439|SGH-T459|SGH-T469|SGH-T479|SGH-T499|SGH-T509|SGH-T519|SGH-T539|SGH-T559|SGH-T589|SGH-T609|SGH-T619|SGH-T629|SGH-T639|SGH-T659|SGH-T669|SGH-T679|SGH-T709|SGH-T719|SGH-T729|SGH-T739|SGH-T746|SGH-T749|SGH-T759|SGH-T769|SGH-T809|SGH-T819|SGH-T839|SGH-T919|SGH-T929|SGH-T939|SGH-T959|SGH-T989|SGH-U100|SGH-U200|SGH-U800|SGH-V205|SGH-V206|SGH-X100|SGH-X105|SGH-X120|SGH-X140|SGH-X426|SGH-X427|SGH-X475|SGH-X495|SGH-X497|SGH-X507|SGH-X600|SGH-X610|SGH-X620|SGH-X630|SGH-X700|SGH-X820|SGH-X890|SGH-Z130|SGH-Z150|SGH-Z170|SGH-ZX10|SGH-ZX20|SHW-M110|SPH-A120|SPH-A400|SPH-A420|SPH-A460|SPH-A500|SPH-A560|SPH-A600|SPH-A620|SPH-A660|SPH-A700|SPH-A740|SPH-A760|SPH-A790|SPH-A800|SPH-A820|SPH-A840|SPH-A880|SPH-A900|SPH-A940|SPH-A960|SPH-D600|SPH-D700|SPH-D710|SPH-D720|SPH-I300|SPH-I325|SPH-I330|SPH-I350|SPH-I500|SPH-I600|SPH-I700|SPH-L700|SPH-M100|SPH-M220|SPH-M240|SPH-M300|SPH-M305|SPH-M320|SPH-M330|SPH-M350|SPH-M360|SPH-M370|SPH-M380|SPH-M510|SPH-M540|SPH-M550|SPH-M560|SPH-M570|SPH-M580|SPH-M610|SPH-M620|SPH-M630|SPH-M800|SPH-M810|SPH-M850|SPH-M900|SPH-M910|SPH-M920|SPH-M930|SPH-N100|SPH-N200|SPH-N240|SPH-N300|SPH-N400|SPH-Z400|SWC-E100|SCH-i909|GT-N7100|GT-N7105|SCH-I535|SM-N900A|SGH-I317|SGH-T999L|GT-S5360B|GT-I8262|GT-S6802|GT-S6312|GT-S6310|GT-S5312|GT-S5310|GT-I9105|GT-I8510|GT-S6790N|SM-G7105|SM-N9005|GT-S5301|GT-I9295|GT-I9195|SM-C101|GT-S7392|GT-S7560|GT-B7610|GT-I5510|GT-S7582|GT-S7530E|GT-I8750|SM-G9006V|SM-G9008V|SM-G9009D|SM-G900A|SM-G900D|SM-G900F|SM-G900H|SM-G900I|SM-G900J|SM-G900K|SM-G900L|SM-G900M|SM-G900P|SM-G900R4|SM-G900S|SM-G900T|SM-G900V|SM-G900W8|SHV-E160K|SCH-P709|SCH-P729|SM-T2558|GT-I9205|SM-G9350|SM-J120F|SM-G920F|SM-G920V|SM-G930F|SM-N910C|SM-A310F|GT-I9190|SM-J500FN|SM-G903F|SM-J330F',
174
  'LG' => '\bLG\b;|LG[- ]?(C800|C900|E400|E610|E900|E-900|F160|F180K|F180L|F180S|730|855|L160|LS740|LS840|LS970|LU6200|MS690|MS695|MS770|MS840|MS870|MS910|P500|P700|P705|VM696|AS680|AS695|AX840|C729|E970|GS505|272|C395|E739BK|E960|L55C|L75C|LS696|LS860|P769BK|P350|P500|P509|P870|UN272|US730|VS840|VS950|LN272|LN510|LS670|LS855|LW690|MN270|MN510|P509|P769|P930|UN200|UN270|UN510|UN610|US670|US740|US760|UX265|UX840|VN271|VN530|VS660|VS700|VS740|VS750|VS910|VS920|VS930|VX9200|VX11000|AX840A|LW770|P506|P925|P999|E612|D955|D802|MS323|M257)|LM-G710',
175
  'Sony' => 'SonyST|SonyLT|SonyEricsson|SonyEricssonLT15iv|LT18i|E10i|LT28h|LT26w|SonyEricssonMT27i|C5303|C6902|C6903|C6906|C6943|D2533',
176
  'Asus' => 'Asus.*Galaxy|PadFone.*Mobile',
@@ -220,7 +221,7 @@ class ai_Mobile_Detect
220
  'NexusTablet' => 'Android.*Nexus[\s]+(7|9|10)',
221
  // https://en.wikipedia.org/wiki/Pixel_C
222
  'GoogleTablet' => 'Android.*Pixel C',
223
- 'SamsungTablet' => 'SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|GT-P7501|GT-N5100|GT-N5105|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|SHV-E230S|SHW-M180K|SHW-M180L|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|GT-I9200|GT-P5200|GT-P5210|GT-P5210X|SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|SM-P601|SM-P605|SM-P900|SM-P901|SM-T217|SM-T217A|SM-T217S|SM-P6000|SM-T3100|SGH-I467|XE500|SM-T110|GT-P5220|GT-I9200X|GT-N5110X|GT-N5120|SM-P905|SM-T111|SM-T2105|SM-T315|SM-T320|SM-T320X|SM-T321|SM-T520|SM-T525|SM-T530NU|SM-T230NU|SM-T330NU|SM-T900|XE500T1C|SM-P605V|SM-P905V|SM-T337V|SM-T537V|SM-T707V|SM-T807V|SM-P600X|SM-P900X|SM-T210X|SM-T230|SM-T230X|SM-T325|GT-P7503|SM-T531|SM-T330|SM-T530|SM-T705|SM-T705C|SM-T535|SM-T331|SM-T800|SM-T700|SM-T537|SM-T807|SM-P907A|SM-T337A|SM-T537A|SM-T707A|SM-T807A|SM-T237|SM-T807P|SM-P607T|SM-T217T|SM-T337T|SM-T807T|SM-T116NQ|SM-T116BU|SM-P550|SM-T350|SM-T550|SM-T9000|SM-P9000|SM-T705Y|SM-T805|GT-P3113|SM-T710|SM-T810|SM-T815|SM-T360|SM-T533|SM-T113|SM-T335|SM-T715|SM-T560|SM-T670|SM-T677|SM-T377|SM-T567|SM-T357T|SM-T555|SM-T561|SM-T713|SM-T719|SM-T813|SM-T819|SM-T580|SM-T355Y?|SM-T280|SM-T817A|SM-T820|SM-W700|SM-P580|SM-T587|SM-P350|SM-P555M|SM-P355M|SM-T113NU|SM-T815Y|SM-T585|SM-T285|SM-T825|SM-W708|SM-T835|SM-T830|SM-T837V|SM-T720|SM-T510|SM-T387V', // SCH-P709|SCH-P729|SM-T2558|GT-I9205 - Samsung Mega - treat them like a regular phone.
224
  // http://docs.aws.amazon.com/silk/latest/developerguide/user-agent.html
225
  'Kindle' => 'Kindle|Silk.*Accelerated|Android.*\b(KFOT|KFTT|KFJWI|KFJWA|KFOTE|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|WFJWAE|KFSAWA|KFSAWI|KFASWI|KFARWI|KFFOWI|KFGIWI|KFMEWI)\b|Android.*Silk/[0-9.]+ like Chrome/[0-9.]+ (?!Mobile)',
226
  // Only the Surface tablets with Windows RT are considered mobile.
@@ -336,8 +337,8 @@ class ai_Mobile_Detect
336
  'AdvanTablet' => 'Android.* \b(E3A|T3X|T5C|T5B|T3E|T3C|T3B|T1J|T1F|T2A|T1H|T1i|E1C|T1-E|T5-A|T4|E1-B|T2Ci|T1-B|T1-D|O1-A|E1-A|T1-A|T3A|T4i)\b ',
337
  // http://www.danytech.com/category/tablet-pc
338
  'DanyTechTablet' => 'Genius Tab G3|Genius Tab S2|Genius Tab Q3|Genius Tab G4|Genius Tab Q4|Genius Tab G-II|Genius TAB GII|Genius TAB GIII|Genius Tab S1',
339
- // http://www.galapad.net/product.html
340
- 'GalapadTablet' => 'Android.*\bG1\b(?!\))',
341
  // http://www.micromaxinfo.com/tablet/funbook
342
  'MicromaxTablet' => 'Funbook|Micromax.*\b(P250|P560|P360|P362|P600|P300|P350|P500|P275)\b',
343
  // http://www.karbonnmobiles.com/products_tablet.php
@@ -495,6 +496,9 @@ class ai_Mobile_Detect
495
  'iOS' => '\biPhone.*Mobile|\biPod|\biPad|AppleCoreMedia',
496
  // https://en.wikipedia.org/wiki/IPadOS
497
  'iPadOS' => 'CPU OS 13',
 
 
 
498
  // http://en.wikipedia.org/wiki/MeeGo
499
  // @todo: research MeeGo in UAs
500
  'MeeGoOS' => 'MeeGo',
@@ -524,14 +528,16 @@ class ai_Mobile_Detect
524
  'Dolfin' => '\bDolfin\b',
525
  'Opera' => 'Opera.*Mini|Opera.*Mobi|Android.*Opera|Mobile.*OPR/[0-9.]+$|Coast/[0-9.]+',
526
  'Skyfire' => 'Skyfire',
527
- 'Edge' => 'Mobile Safari/[.0-9]* Edge',
 
528
  'IE' => 'IEMobile|MSIEMobile', // |Trident/[.0-9]+
529
  'Firefox' => 'fennec|firefox.*maemo|(Mobile|Tablet).*Firefox|Firefox.*Mobile|FxiOS',
530
  'Bolt' => 'bolt',
531
  'TeaShark' => 'teashark',
532
  'Blazer' => 'Blazer',
533
  // @reference: http://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariWebContent/OptimizingforSafarioniPhone/OptimizingforSafarioniPhone.html#//apple_ref/doc/uid/TP40006517-SW3
534
- 'Safari' => 'Version.*Mobile.*Safari|Safari.*Mobile|MobileSafari',
 
535
  // http://en.wikipedia.org/wiki/Midori_(web_browser)
536
  //'Midori' => 'midori',
537
  //'Tizen' => 'Tizen',
@@ -566,8 +572,8 @@ class ai_Mobile_Detect
566
  // Experimental. When a mobile device wants to switch to 'Desktop Mode'.
567
  // http://scottcate.com/technology/windows-phone-8-ie10-desktop-or-mobile/
568
  // https://github.com/serbanghita/Mobile-Detect/issues/57#issuecomment-15024011
569
- // https://developers.facebook.com/docs/sharing/best-practices
570
- 'Bot' => 'Googlebot|facebookexternalhit|Google-AMPHTML|s~amp-validator|AdsBot-Google|Google Keyword Suggestion|Facebot|YandexBot|YandexMobileBot|bingbot|ia_archiver|AhrefsBot|Ezooms|GSLFbot|WBSearchBot|Twitterbot|TweetmemeBot|Twikle|PaperLiBot|Wotbox|UnwindFetchor|Exabot|MJ12bot|YandexImages|TurnitinBot|Pingdom|contentkingapp',
571
  'MobileBot' => 'Googlebot-Mobile|AdsBot-Google-Mobile|YahooSeeker/M1A1-R2D2',
572
  'DesktopMode' => 'WPDesktop',
573
  'TV' => 'SonyDTV|HbbTV', // experimental
@@ -649,6 +655,7 @@ class ai_Mobile_Detect
649
  'Tizen' => 'Tizen/[VER]',
650
  'Webkit' => 'webkit[ /][VER]',
651
  'PaleMoon' => 'PaleMoon/[VER]',
 
652
 
653
  // Engine
654
  'Gecko' => 'Gecko/[VER]',
@@ -659,6 +666,7 @@ class ai_Mobile_Detect
659
  // OS
660
  'iOS' => ' \bi?OS\b [VER][ ;]{1}',
661
  'Android' => 'Android [VER]',
 
662
  'BlackBerry' => array('BlackBerry[\w]+/[VER]', 'BlackBerry.*Version/[VER]', 'Version/[VER]'),
663
  'BREW' => 'BREW [VER]',
664
  'Java' => 'Java/[VER]',
@@ -1053,7 +1061,7 @@ class ai_Mobile_Detect
1053
 
1054
  foreach ($this->getMobileHeaders() as $mobileHeader => $matchType) {
1055
  if (isset($this->httpHeaders[$mobileHeader])) {
1056
- if (is_array($matchType['matches'])) {
1057
  foreach ($matchType['matches'] as $_match) {
1058
  if (strpos($this->httpHeaders[$mobileHeader], $_match) !== false) {
1059
  return true;
@@ -1397,6 +1405,9 @@ class ai_Mobile_Detect
1397
  // Meego 1.2 - Tested on Nokia 950 and N9
1398
  $this->is('MeeGoOS') ||
1399
 
 
 
 
1400
  // Tizen (pre-release) - Tested on early hardware
1401
  $this->is('Tizen') ||
1402
 
18
  * @author Nick Ilyin <nick.ilyin@gmail.com>
19
  * Original author: Victor Stanciu <vic.stanciu@gmail.com>
20
  *
21
+ * @version 2.8.36
22
  */
23
  class ai_Mobile_Detect
24
  {
61
  /**
62
  * Stores the version number of the current release.
63
  */
64
+ const VERSION = '2.8.36';
65
 
66
  /**
67
  * A type for the version() method indicating a string return value.
165
  protected static $phoneDevices = array(
166
  'iPhone' => '\biPhone\b|\biPod\b', // |\biTunes
167
  'BlackBerry' => 'BlackBerry|\bBB10\b|rim[0-9]+|\b(BBA100|BBB100|BBD100|BBE100|BBF100|STH100)\b-[0-9]+',
168
+ 'Pixel' => '; \bPixel\b',
169
  'HTC' => 'HTC|HTC.*(Sensation|Evo|Vision|Explorer|6800|8100|8900|A7272|S510e|C110e|Legend|Desire|T8282)|APX515CKT|Qtek9090|APA9292KT|HD_mini|Sensation.*Z710e|PG86100|Z715e|Desire.*(A8181|HD)|ADR6200|ADR6400L|ADR6425|001HT|Inspire 4G|Android.*\bEVO\b|T-Mobile G1|Z520m|Android [0-9.]+; Pixel',
170
  'Nexus' => 'Nexus One|Nexus S|Galaxy.*Nexus|Android.*Nexus.*Mobile|Nexus 4|Nexus 5|Nexus 6',
171
  // @todo: Is 'Dell Streak' a tablet or a phone? ;)
172
  'Dell' => 'Dell[;]? (Streak|Aero|Venue|Venue Pro|Flash|Smoke|Mini 3iX)|XCD28|XCD35|\b001DL\b|\b101DL\b|\bGS01\b',
173
  'Motorola' => 'Motorola|DROIDX|DROID BIONIC|\bDroid\b.*Build|Android.*Xoom|HRI39|MOT-|A1260|A1680|A555|A853|A855|A953|A955|A956|Motorola.*ELECTRIFY|Motorola.*i1|i867|i940|MB200|MB300|MB501|MB502|MB508|MB511|MB520|MB525|MB526|MB611|MB612|MB632|MB810|MB855|MB860|MB861|MB865|MB870|ME501|ME502|ME511|ME525|ME600|ME632|ME722|ME811|ME860|ME863|ME865|MT620|MT710|MT716|MT720|MT810|MT870|MT917|Motorola.*TITANIUM|WX435|WX445|XT300|XT301|XT311|XT316|XT317|XT319|XT320|XT390|XT502|XT530|XT531|XT532|XT535|XT603|XT610|XT611|XT615|XT681|XT701|XT702|XT711|XT720|XT800|XT806|XT860|XT862|XT875|XT882|XT883|XT894|XT901|XT907|XT909|XT910|XT912|XT928|XT926|XT915|XT919|XT925|XT1021|\bMoto E\b|XT1068|XT1092|XT1052',
174
+ 'Samsung' => '\bSamsung\b|SM-G950F|SM-G955F|SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B3730|GT-B3740|GT-B5510|GT-B5512|GT-B5722|GT-B6520|GT-B7300|GT-B7320|GT-B7330|GT-B7350|GT-B7510|GT-B7722|GT-B7800|GT-C3010|GT-C3011|GT-C3060|GT-C3200|GT-C3212|GT-C3212I|GT-C3262|GT-C3222|GT-C3300|GT-C3300K|GT-C3303|GT-C3303K|GT-C3310|GT-C3322|GT-C3330|GT-C3350|GT-C3500|GT-C3510|GT-C3530|GT-C3630|GT-C3780|GT-C5010|GT-C5212|GT-C6620|GT-C6625|GT-C6712|GT-E1050|GT-E1070|GT-E1075|GT-E1080|GT-E1081|GT-E1085|GT-E1087|GT-E1100|GT-E1107|GT-E1110|GT-E1120|GT-E1125|GT-E1130|GT-E1160|GT-E1170|GT-E1175|GT-E1180|GT-E1182|GT-E1200|GT-E1210|GT-E1225|GT-E1230|GT-E1390|GT-E2100|GT-E2120|GT-E2121|GT-E2152|GT-E2220|GT-E2222|GT-E2230|GT-E2232|GT-E2250|GT-E2370|GT-E2550|GT-E2652|GT-E3210|GT-E3213|GT-I5500|GT-I5503|GT-I5700|GT-I5800|GT-I5801|GT-I6410|GT-I6420|GT-I7110|GT-I7410|GT-I7500|GT-I8000|GT-I8150|GT-I8160|GT-I8190|GT-I8320|GT-I8330|GT-I8350|GT-I8530|GT-I8700|GT-I8703|GT-I8910|GT-I9000|GT-I9001|GT-I9003|GT-I9010|GT-I9020|GT-I9023|GT-I9070|GT-I9082|GT-I9100|GT-I9103|GT-I9220|GT-I9250|GT-I9300|GT-I9305|GT-I9500|GT-I9505|GT-M3510|GT-M5650|GT-M7500|GT-M7600|GT-M7603|GT-M8800|GT-M8910|GT-N7000|GT-S3110|GT-S3310|GT-S3350|GT-S3353|GT-S3370|GT-S3650|GT-S3653|GT-S3770|GT-S3850|GT-S5210|GT-S5220|GT-S5229|GT-S5230|GT-S5233|GT-S5250|GT-S5253|GT-S5260|GT-S5263|GT-S5270|GT-S5300|GT-S5330|GT-S5350|GT-S5360|GT-S5363|GT-S5369|GT-S5380|GT-S5380D|GT-S5560|GT-S5570|GT-S5600|GT-S5603|GT-S5610|GT-S5620|GT-S5660|GT-S5670|GT-S5690|GT-S5750|GT-S5780|GT-S5830|GT-S5839|GT-S6102|GT-S6500|GT-S7070|GT-S7200|GT-S7220|GT-S7230|GT-S7233|GT-S7250|GT-S7500|GT-S7530|GT-S7550|GT-S7562|GT-S7710|GT-S8000|GT-S8003|GT-S8500|GT-S8530|GT-S8600|SCH-A310|SCH-A530|SCH-A570|SCH-A610|SCH-A630|SCH-A650|SCH-A790|SCH-A795|SCH-A850|SCH-A870|SCH-A890|SCH-A930|SCH-A950|SCH-A970|SCH-A990|SCH-I100|SCH-I110|SCH-I400|SCH-I405|SCH-I500|SCH-I510|SCH-I515|SCH-I600|SCH-I730|SCH-I760|SCH-I770|SCH-I830|SCH-I910|SCH-I920|SCH-I959|SCH-LC11|SCH-N150|SCH-N300|SCH-R100|SCH-R300|SCH-R351|SCH-R400|SCH-R410|SCH-T300|SCH-U310|SCH-U320|SCH-U350|SCH-U360|SCH-U365|SCH-U370|SCH-U380|SCH-U410|SCH-U430|SCH-U450|SCH-U460|SCH-U470|SCH-U490|SCH-U540|SCH-U550|SCH-U620|SCH-U640|SCH-U650|SCH-U660|SCH-U700|SCH-U740|SCH-U750|SCH-U810|SCH-U820|SCH-U900|SCH-U940|SCH-U960|SCS-26UC|SGH-A107|SGH-A117|SGH-A127|SGH-A137|SGH-A157|SGH-A167|SGH-A177|SGH-A187|SGH-A197|SGH-A227|SGH-A237|SGH-A257|SGH-A437|SGH-A517|SGH-A597|SGH-A637|SGH-A657|SGH-A667|SGH-A687|SGH-A697|SGH-A707|SGH-A717|SGH-A727|SGH-A737|SGH-A747|SGH-A767|SGH-A777|SGH-A797|SGH-A817|SGH-A827|SGH-A837|SGH-A847|SGH-A867|SGH-A877|SGH-A887|SGH-A897|SGH-A927|SGH-B100|SGH-B130|SGH-B200|SGH-B220|SGH-C100|SGH-C110|SGH-C120|SGH-C130|SGH-C140|SGH-C160|SGH-C170|SGH-C180|SGH-C200|SGH-C207|SGH-C210|SGH-C225|SGH-C230|SGH-C417|SGH-C450|SGH-D307|SGH-D347|SGH-D357|SGH-D407|SGH-D415|SGH-D780|SGH-D807|SGH-D980|SGH-E105|SGH-E200|SGH-E315|SGH-E316|SGH-E317|SGH-E335|SGH-E590|SGH-E635|SGH-E715|SGH-E890|SGH-F300|SGH-F480|SGH-I200|SGH-I300|SGH-I320|SGH-I550|SGH-I577|SGH-I600|SGH-I607|SGH-I617|SGH-I627|SGH-I637|SGH-I677|SGH-I700|SGH-I717|SGH-I727|SGH-i747M|SGH-I777|SGH-I780|SGH-I827|SGH-I847|SGH-I857|SGH-I896|SGH-I897|SGH-I900|SGH-I907|SGH-I917|SGH-I927|SGH-I937|SGH-I997|SGH-J150|SGH-J200|SGH-L170|SGH-L700|SGH-M110|SGH-M150|SGH-M200|SGH-N105|SGH-N500|SGH-N600|SGH-N620|SGH-N625|SGH-N700|SGH-N710|SGH-P107|SGH-P207|SGH-P300|SGH-P310|SGH-P520|SGH-P735|SGH-P777|SGH-Q105|SGH-R210|SGH-R220|SGH-R225|SGH-S105|SGH-S307|SGH-T109|SGH-T119|SGH-T139|SGH-T209|SGH-T219|SGH-T229|SGH-T239|SGH-T249|SGH-T259|SGH-T309|SGH-T319|SGH-T329|SGH-T339|SGH-T349|SGH-T359|SGH-T369|SGH-T379|SGH-T409|SGH-T429|SGH-T439|SGH-T459|SGH-T469|SGH-T479|SGH-T499|SGH-T509|SGH-T519|SGH-T539|SGH-T559|SGH-T589|SGH-T609|SGH-T619|SGH-T629|SGH-T639|SGH-T659|SGH-T669|SGH-T679|SGH-T709|SGH-T719|SGH-T729|SGH-T739|SGH-T746|SGH-T749|SGH-T759|SGH-T769|SGH-T809|SGH-T819|SGH-T839|SGH-T919|SGH-T929|SGH-T939|SGH-T959|SGH-T989|SGH-U100|SGH-U200|SGH-U800|SGH-V205|SGH-V206|SGH-X100|SGH-X105|SGH-X120|SGH-X140|SGH-X426|SGH-X427|SGH-X475|SGH-X495|SGH-X497|SGH-X507|SGH-X600|SGH-X610|SGH-X620|SGH-X630|SGH-X700|SGH-X820|SGH-X890|SGH-Z130|SGH-Z150|SGH-Z170|SGH-ZX10|SGH-ZX20|SHW-M110|SPH-A120|SPH-A400|SPH-A420|SPH-A460|SPH-A500|SPH-A560|SPH-A600|SPH-A620|SPH-A660|SPH-A700|SPH-A740|SPH-A760|SPH-A790|SPH-A800|SPH-A820|SPH-A840|SPH-A880|SPH-A900|SPH-A940|SPH-A960|SPH-D600|SPH-D700|SPH-D710|SPH-D720|SPH-I300|SPH-I325|SPH-I330|SPH-I350|SPH-I500|SPH-I600|SPH-I700|SPH-L700|SPH-M100|SPH-M220|SPH-M240|SPH-M300|SPH-M305|SPH-M320|SPH-M330|SPH-M350|SPH-M360|SPH-M370|SPH-M380|SPH-M510|SPH-M540|SPH-M550|SPH-M560|SPH-M570|SPH-M580|SPH-M610|SPH-M620|SPH-M630|SPH-M800|SPH-M810|SPH-M850|SPH-M900|SPH-M910|SPH-M920|SPH-M930|SPH-N100|SPH-N200|SPH-N240|SPH-N300|SPH-N400|SPH-Z400|SWC-E100|SCH-i909|GT-N7100|GT-N7105|SCH-I535|SM-N900A|SGH-I317|SGH-T999L|GT-S5360B|GT-I8262|GT-S6802|GT-S6312|GT-S6310|GT-S5312|GT-S5310|GT-I9105|GT-I8510|GT-S6790N|SM-G7105|SM-N9005|GT-S5301|GT-I9295|GT-I9195|SM-C101|GT-S7392|GT-S7560|GT-B7610|GT-I5510|GT-S7582|GT-S7530E|GT-I8750|SM-G9006V|SM-G9008V|SM-G9009D|SM-G900A|SM-G900D|SM-G900F|SM-G900H|SM-G900I|SM-G900J|SM-G900K|SM-G900L|SM-G900M|SM-G900P|SM-G900R4|SM-G900S|SM-G900T|SM-G900V|SM-G900W8|SHV-E160K|SCH-P709|SCH-P729|SM-T2558|GT-I9205|SM-G9350|SM-J120F|SM-G920F|SM-G920V|SM-G930F|SM-N910C|SM-A310F|GT-I9190|SM-J500FN|SM-G903F|SM-J330F|SM-G610F|SM-G981B',
175
  'LG' => '\bLG\b;|LG[- ]?(C800|C900|E400|E610|E900|E-900|F160|F180K|F180L|F180S|730|855|L160|LS740|LS840|LS970|LU6200|MS690|MS695|MS770|MS840|MS870|MS910|P500|P700|P705|VM696|AS680|AS695|AX840|C729|E970|GS505|272|C395|E739BK|E960|L55C|L75C|LS696|LS860|P769BK|P350|P500|P509|P870|UN272|US730|VS840|VS950|LN272|LN510|LS670|LS855|LW690|MN270|MN510|P509|P769|P930|UN200|UN270|UN510|UN610|US670|US740|US760|UX265|UX840|VN271|VN530|VS660|VS700|VS740|VS750|VS910|VS920|VS930|VX9200|VX11000|AX840A|LW770|P506|P925|P999|E612|D955|D802|MS323|M257)|LM-G710',
176
  'Sony' => 'SonyST|SonyLT|SonyEricsson|SonyEricssonLT15iv|LT18i|E10i|LT28h|LT26w|SonyEricssonMT27i|C5303|C6902|C6903|C6906|C6943|D2533',
177
  'Asus' => 'Asus.*Galaxy|PadFone.*Mobile',
221
  'NexusTablet' => 'Android.*Nexus[\s]+(7|9|10)',
222
  // https://en.wikipedia.org/wiki/Pixel_C
223
  'GoogleTablet' => 'Android.*Pixel C',
224
+ 'SamsungTablet' => 'SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|GT-P7501|GT-N5100|GT-N5105|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|SHV-E230S|SHW-M180K|SHW-M180L|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|GT-I9200|GT-P5200|GT-P5210|GT-P5210X|SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|SM-P601|SM-P605|SM-P900|SM-P901|SM-T217|SM-T217A|SM-T217S|SM-P6000|SM-T3100|SGH-I467|XE500|SM-T110|GT-P5220|GT-I9200X|GT-N5110X|GT-N5120|SM-P905|SM-T111|SM-T2105|SM-T315|SM-T320|SM-T320X|SM-T321|SM-T520|SM-T525|SM-T530NU|SM-T230NU|SM-T330NU|SM-T900|XE500T1C|SM-P605V|SM-P905V|SM-T337V|SM-T537V|SM-T707V|SM-T807V|SM-P600X|SM-P900X|SM-T210X|SM-T230|SM-T230X|SM-T325|GT-P7503|SM-T531|SM-T330|SM-T530|SM-T705|SM-T705C|SM-T535|SM-T331|SM-T800|SM-T700|SM-T537|SM-T807|SM-P907A|SM-T337A|SM-T537A|SM-T707A|SM-T807A|SM-T237|SM-T807P|SM-P607T|SM-T217T|SM-T337T|SM-T807T|SM-T116NQ|SM-T116BU|SM-P550|SM-T350|SM-T550|SM-T9000|SM-P9000|SM-T705Y|SM-T805|GT-P3113|SM-T710|SM-T810|SM-T815|SM-T360|SM-T533|SM-T113|SM-T335|SM-T715|SM-T560|SM-T670|SM-T677|SM-T377|SM-T567|SM-T357T|SM-T555|SM-T561|SM-T713|SM-T719|SM-T813|SM-T819|SM-T580|SM-T355Y?|SM-T280|SM-T817A|SM-T820|SM-W700|SM-P580|SM-T587|SM-P350|SM-P555M|SM-P355M|SM-T113NU|SM-T815Y|SM-T585|SM-T285|SM-T825|SM-W708|SM-T835|SM-T830|SM-T837V|SM-T720|SM-T510|SM-T387V|SM-P610|SM-T290|SM-T515|SM-T590|SM-T595|SM-T725|SM-T817P|SM-P585N0|SM-T395|SM-T295|SM-T865|SM-P610N|SM-P615|SM-T970', // SCH-P709|SCH-P729|SM-T2558|GT-I9205 - Samsung Mega - treat them like a regular phone.
225
  // http://docs.aws.amazon.com/silk/latest/developerguide/user-agent.html
226
  'Kindle' => 'Kindle|Silk.*Accelerated|Android.*\b(KFOT|KFTT|KFJWI|KFJWA|KFOTE|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|WFJWAE|KFSAWA|KFSAWI|KFASWI|KFARWI|KFFOWI|KFGIWI|KFMEWI)\b|Android.*Silk/[0-9.]+ like Chrome/[0-9.]+ (?!Mobile)',
227
  // Only the Surface tablets with Windows RT are considered mobile.
337
  'AdvanTablet' => 'Android.* \b(E3A|T3X|T5C|T5B|T3E|T3C|T3B|T1J|T1F|T2A|T1H|T1i|E1C|T1-E|T5-A|T4|E1-B|T2Ci|T1-B|T1-D|O1-A|E1-A|T1-A|T3A|T4i)\b ',
338
  // http://www.danytech.com/category/tablet-pc
339
  'DanyTechTablet' => 'Genius Tab G3|Genius Tab S2|Genius Tab Q3|Genius Tab G4|Genius Tab Q4|Genius Tab G-II|Genius TAB GII|Genius TAB GIII|Genius Tab S1',
340
+ // http://www.galapad.net/product.html ; https://github.com/serbanghita/Mobile-Detect/issues/761
341
+ 'GalapadTablet' => 'Android [0-9.]+; [a-z-]+; \bG1\b',
342
  // http://www.micromaxinfo.com/tablet/funbook
343
  'MicromaxTablet' => 'Funbook|Micromax.*\b(P250|P560|P360|P362|P600|P300|P350|P500|P275)\b',
344
  // http://www.karbonnmobiles.com/products_tablet.php
496
  'iOS' => '\biPhone.*Mobile|\biPod|\biPad|AppleCoreMedia',
497
  // https://en.wikipedia.org/wiki/IPadOS
498
  'iPadOS' => 'CPU OS 13',
499
+ // @reference https://en.m.wikipedia.org/wiki/Sailfish_OS
500
+ // https://sailfishos.org/
501
+ 'SailfishOS' => 'Sailfish',
502
  // http://en.wikipedia.org/wiki/MeeGo
503
  // @todo: research MeeGo in UAs
504
  'MeeGoOS' => 'MeeGo',
528
  'Dolfin' => '\bDolfin\b',
529
  'Opera' => 'Opera.*Mini|Opera.*Mobi|Android.*Opera|Mobile.*OPR/[0-9.]+$|Coast/[0-9.]+',
530
  'Skyfire' => 'Skyfire',
531
+ // Added "Edge on iOS" https://github.com/serbanghita/Mobile-Detect/issues/764
532
+ 'Edge' => '\bEdgiOS\b|Mobile Safari/[.0-9]* Edge',
533
  'IE' => 'IEMobile|MSIEMobile', // |Trident/[.0-9]+
534
  'Firefox' => 'fennec|firefox.*maemo|(Mobile|Tablet).*Firefox|Firefox.*Mobile|FxiOS',
535
  'Bolt' => 'bolt',
536
  'TeaShark' => 'teashark',
537
  'Blazer' => 'Blazer',
538
  // @reference: http://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariWebContent/OptimizingforSafarioniPhone/OptimizingforSafarioniPhone.html#//apple_ref/doc/uid/TP40006517-SW3
539
+ // Excluded "Edge on iOS" https://github.com/serbanghita/Mobile-Detect/issues/764
540
+ 'Safari' => 'Version((?!\bEdgiOS\b).)*Mobile.*Safari|Safari.*Mobile|MobileSafari',
541
  // http://en.wikipedia.org/wiki/Midori_(web_browser)
542
  //'Midori' => 'midori',
543
  //'Tizen' => 'Tizen',
572
  // Experimental. When a mobile device wants to switch to 'Desktop Mode'.
573
  // http://scottcate.com/technology/windows-phone-8-ie10-desktop-or-mobile/
574
  // https://github.com/serbanghita/Mobile-Detect/issues/57#issuecomment-15024011
575
+ // https://developers.facebook.com/docs/sharing/webmasters/crawler/
576
+ 'Bot' => 'Googlebot|facebookexternalhit|Google-AMPHTML|s~amp-validator|AdsBot-Google|Google Keyword Suggestion|Facebot|YandexBot|YandexMobileBot|bingbot|ia_archiver|AhrefsBot|Ezooms|GSLFbot|WBSearchBot|Twitterbot|TweetmemeBot|Twikle|PaperLiBot|Wotbox|UnwindFetchor|Exabot|MJ12bot|YandexImages|TurnitinBot|Pingdom|contentkingapp|AspiegelBot',
577
  'MobileBot' => 'Googlebot-Mobile|AdsBot-Google-Mobile|YahooSeeker/M1A1-R2D2',
578
  'DesktopMode' => 'WPDesktop',
579
  'TV' => 'SonyDTV|HbbTV', // experimental
655
  'Tizen' => 'Tizen/[VER]',
656
  'Webkit' => 'webkit[ /][VER]',
657
  'PaleMoon' => 'PaleMoon/[VER]',
658
+ 'SailfishBrowser' => 'SailfishBrowser/[VER]',
659
 
660
  // Engine
661
  'Gecko' => 'Gecko/[VER]',
666
  // OS
667
  'iOS' => ' \bi?OS\b [VER][ ;]{1}',
668
  'Android' => 'Android [VER]',
669
+ 'Sailfish' => 'Sailfish [VER]',
670
  'BlackBerry' => array('BlackBerry[\w]+/[VER]', 'BlackBerry.*Version/[VER]', 'Version/[VER]'),
671
  'BREW' => 'BREW [VER]',
672
  'Java' => 'Java/[VER]',
1061
 
1062
  foreach ($this->getMobileHeaders() as $mobileHeader => $matchType) {
1063
  if (isset($this->httpHeaders[$mobileHeader])) {
1064
+ if (isset($matchType['matches']) && is_array($matchType['matches'])) {
1065
  foreach ($matchType['matches'] as $_match) {
1066
  if (strpos($this->httpHeaders[$mobileHeader], $_match) !== false) {
1067
  return true;
1405
  // Meego 1.2 - Tested on Nokia 950 and N9
1406
  $this->is('MeeGoOS') ||
1407
 
1408
+ // Sailfish OS
1409
+ $this->is('SailfishOS') ||
1410
+
1411
  // Tizen (pre-release) - Tested on early hardware
1412
  $this->is('Tizen') ||
1413
 
includes/preview.php CHANGED
@@ -2116,10 +2116,10 @@ body.sticky {
2116
  background: #fff;
2117
  }
2118
 
2119
- .responsive-table td {
2120
  white-space: nowrap;
2121
  }
2122
- .small-button .ui-button-text-only .ui-button-text {
2123
  padding: 0;
2124
  }
2125
  #margin-background {
@@ -2777,7 +2777,7 @@ input {
2777
 
2778
  </div>
2779
 
2780
- <table class="responsive-table"<?php if ($sticky) echo 'style="height: 60px;"'; ?>>
2781
  <tr>
2782
  <td style="vertical-align: middle; padding:0;">
2783
  <span id="css-label" style="vertical-align: middle; margin: 4px 0 0 0 0; width: 36px; font-size: 14px; font-weight: bold; display: none;">CSS</span>
2116
  background: #fff;
2117
  }
2118
 
2119
+ .ai-responsive-table td {
2120
  white-space: nowrap;
2121
  }
2122
+ .ai-small-button .ui-button-text-only .ui-button-text {
2123
  padding: 0;
2124
  }
2125
  #margin-background {
2777
 
2778
  </div>
2779
 
2780
+ <table class="ai-responsive-table"<?php if ($sticky) echo ' style="height: 60px;"'; ?>>
2781
  <tr>
2782
  <td style="vertical-align: middle; padding:0;">
2783
  <span id="css-label" style="vertical-align: middle; margin: 4px 0 0 0 0; width: 36px; font-size: 14px; font-weight: bold; display: none;">CSS</span>
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.7.17"
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
@@ -5564,7 +5564,8 @@ jQuery(document).ready (function($) {
5564
 
5565
  $(".authorize-adsense", data_container).click (function () {
5566
 
5567
- var authorization_code = $("input#adsense-authorization-code").val ();
 
5568
 
5569
  $('#adsense-list-controls').show ();
5570
  data_container.text (ai_admin.loading);
1
+ var javascript_version = "2.7.18"
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
5564
 
5565
  $(".authorize-adsense", data_container).click (function () {
5566
 
5567
+ // var authorization_code = $("input#adsense-authorization-code").val ();
5568
+ var authorization_code = '';
5569
 
5570
  $('#adsense-list-controls').show ();
5571
  data_container.text (ai_admin.loading);
js/ad-inserter.min.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version="2.7.17",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=
@@ -210,22 +210,22 @@ e=c.hasClass("rearrange");c.removeClass("rearrange").hide();a("#ai-rearrange").r
210
  d+"&all="+f+"&start="+start+"&end="+end+"&active="+active_tab+c+g+b+"&ai_check="+ai_nonce,function(q,t,v){a("#ai-loading").hide();"error"==t?(q="Error downloading list data: "+v.status+" "+v.statusText,r.html(q),debug&&console.log(q)):(za(),"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"),
211
  c=a("#adsense-list-data");c.load(ajaxurl+"?action=ai_ajax_backend&adsense-list="+d+"&all="+f+"&update_ad_units="+(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(),
212
  q=a("input#adsense-client-secret").val();c.text(ai_admin.loading);a("#ai-loading").show();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,v,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="";
213
- ka(authorization_code)})):a("#adsense-authorization-code",c).length?(a("#adsense-list-controls").hide(),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");ka(r)})):(a("#adsense-list-controls").show(),e=a("#adsense-data",c).data("publisher-id"),"undefined"==typeof e&&(e=
214
- ""),a("label#google-adsense-button").attr("title",ai_admin.google_adsense_homepage+" "+e).tooltip({track:!0,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 v=t["error-message"];if(""==v){t=t.code;debug&&
215
- console.log(t);v=a("#ai-clipboard-template");var B=a("#ai-clipboard");B.html(v.html());B.find("input#name-edit-999").attr("value",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:",v)}).fail(function(t,v,B){console.log("Error downloading AdSense code: "+
216
- t.status+" "+t.statusText)}).always(function(){a("#ai-loading").hide()})}),a("label.adsense-preview-code").click(function(){var r=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=
217
- a(this).closest("tr").data("id");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(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,v){console.log("Error downloading AdSense code: "+
218
- q.status+" "+q.statusText)}).always(function(){a("#ai-loading").hide()})}),c.disableSelection())})}function O(){ads_txt_reload=!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"==
219
- 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&&(c="text",b.addClass("editor"),a("#ads-txt-search").hide());switch(c){case "text":a("#ads-txt-search").hide();b.removeClass("dashicons-edit");b.addClass("dashicons-yes-alt");b.addClass("green");b.attr("title",b.attr("title-editor")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250});d.removeClass("dashicons-download");d.addClass("dashicons-no");0!=a("#ads-txt-missing").length?
220
- (d.removeClass("red"),d.attr("title",d.attr("title-table")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})):(d.addClass("red"),d.attr("title",d.attr("title-editor")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}));break;case "table":b.removeClass("dashicons-yes-alt"),b.removeClass("green"),b.addClass("dashicons-edit"),b.attr("title",b.attr("title-table")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}),d.removeClass("dashicons-no"),d.removeClass("red"),
221
- d.addClass("dashicons-download"),d.attr("title",d.attr("title-table")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})}a("#ads-txt-controls").show()}})}function Va(b){var d=a("#ads-txt-data"),f=a("#ads-txt-editor"),c=a("#ads-txt-reload"),e=a("#ads-txt-virtual").hasClass("violet")?"1":"0";d={text:b64e(d.find("textarea#ads-txt-text").val())};a("#ads-txt-error").text("");f.removeClass("green");f.addClass("red");a.post(ajaxurl+"?action=ai_ajax_backend&ads-txt=save&virtual="+e+"&ai_check="+
222
- ai_nonce,d).done(function(g){}).fail(function(g,n,r){f.removeClass("red");f.addClass("green");g="Error saving ads.txt file: "+g.status+" "+g.statusText;a("#ads-txt-error").text(g);debug&&console.log(g)}).always(function(){f.removeClass("editor");f.removeClass("green");f.removeClass("red");f.removeClass("dashicons-yes-alt");f.addClass("dashicons-edit");f.attr("title",f.attr("title-editor")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250});c.addClass("dashicons-download");c.removeClass("dashicons-no");
223
- c.removeClass("red");c.attr("title",c.attr("title-editor")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250});a("#ads-txt-search").show();b&&setTimeout(function(){O()},100)})}function na(b){var d=parseInt(a("select#insertion-type-"+b+" option:selected").attr("value")),f=a("#page-types-"+b);switch(d){case AI_BEFORE_HTML_ELEMENT:case AI_AFTER_HTML_ELEMENT:case AI_INSIDE_HTML_ELEMENT:f.find("td.ai-page-type").removeClass("ai-unavailable");return}"po pa hp cp ap sp".split(" ").forEach(function(c,
224
- e){var g=a("table.check-pages").attr("data-positions-"+c);null!=g&&(-1!=JSON.parse(g).indexOf(d)?f.find("td.ai-page-type.ai-"+c).removeClass("ai-unavailable").find("input, label").removeAttr("title").tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}):f.find("td.ai-page-type.ai-"+c).addClass("ai-unavailable").find("input, label").attr("title",ai_admin.position_might_not_available).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}))})}function Wa(b,d,f){var c=d.closest(".ai-check-pages").find(".ai-error-message");
225
- a.get(ajaxurl+"?action=ai_ajax_backend&check-page="+b+"&ai_check="+ai_nonce,function(e){if(""!=e){debug&&console.log("AI CHECK PAGES:",e);try{var g=JSON.parse(e),n=g.positions,r=g.urls;debug&&console.log("AI CHECK PAGES positions:",n);debug&&console.log("AI CHECK PAGES urls:",r);a("table.check-pages").attr("data-positions-"+b,JSON.stringify(n));a("table.check-pages").attr("data-urls-"+b,JSON.stringify(r));a("table.check-pages td.ai-position.ai-"+b).each(function(){a(this).removeClass("ai-not-checked");
226
- var q=a(this).data("insertion");-1==n.indexOf(q)?a(this).addClass("ai-no").attr("title",ai_admin.position_not_available):a(this).addClass("ai-yes").attr("title",ai_admin.position_available);a(this).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})});null!=r&&0!=r.length&&a("table.check-pages a.ai-"+b).each(function(q,t){"undefined"!=typeof r[q]&&a(this).attr("href",r[q]).show()})}catch(q){c.find(".ai-error-message-text").text(e),c.show(),console.log("AI CHECK PAGES: JSON error decoding available positions: "+
227
- e)}}}).fail(function(e,g,n){c.find(".ai-error-message-text").text(e.status+" "+e.statusText);c.show();console.log("AI CHECK PAGES: Error loading positions for",b+":",e.status,e.statusText)}).always(function(){if(f){a("#ai-loading").hide();a("#ai-loading-2").hide();d.find("span.ui-button-text").removeClass("on");for(var e=start;e<=end;e++)na(e)}})}function Aa(){var b=[];if(0!=ai_tab_setup_delay){0!=active_tab&&b.push(0);for(var d=end;d>=start;d--)d!=active_tab&&b.push(d)}tabs_to_configure=b.concat(tabs_to_configure);
228
- 0!=ai_tab_setup_delay&&setTimeout(ia,3*ai_tab_setup_delay);b=16;0!=active_tab&&(b=active_tab-start);a("#ai-tab-container").tabs({active:b});a("#ai-plugin-settings-tab-container").tabs({active:active_tab_0});debug_title&&a("#plugin_name").css("color","#00f");0==active_tab?la():fa(active_tab);a("#dummy-tabs").hide();a("#ai-tabs").show();a("#ai-tab-container").on("tabsbeforeactivate",function(f,c){var e=c.newTab.attr("id");e.includes("ai-tab")&&(active_tab=e=parseInt(e.replace("ai-tab","")),debug&&console.log("on tabsbeforeactivate",
229
  active_tab),ya())});a(".ai-plugin-tab").click(function(){active_tab_0=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=
230
  a(this),c=a(this).closest(".ai-check-pages").find(".ai-error-message");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,
231
  showBody:" | ",fade:250})});a("table.ai-page-types td.ai-page-type").each(function(){a(this).removeClass("ai-unavailable")});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");
1
+ var javascript_version="2.7.18",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=
210
  d+"&all="+f+"&start="+start+"&end="+end+"&active="+active_tab+c+g+b+"&ai_check="+ai_nonce,function(q,t,v){a("#ai-loading").hide();"error"==t?(q="Error downloading list data: "+v.status+" "+v.statusText,r.html(q),debug&&console.log(q)):(za(),"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"),
211
  c=a("#adsense-list-data");c.load(ajaxurl+"?action=ai_ajax_backend&adsense-list="+d+"&all="+f+"&update_ad_units="+(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(),
212
  q=a("input#adsense-client-secret").val();c.text(ai_admin.loading);a("#ai-loading").show();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,v,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="";
213
+ ka(authorization_code)})):a("#adsense-authorization-code",c).length?(a("#adsense-list-controls").hide(),a("button.ai-top-button",c).button().show(),a(".authorize-adsense",c).click(function(){var r="";a("#adsense-list-controls").show();c.text(ai_admin.loading);a(this).hasClass("clear-adsense")&&(r="");a(this).hasClass("own-ids")&&(r="own-ids");ka(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",
214
+ ai_admin.google_adsense_homepage+" "+e).tooltip({track:!0,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 v=t["error-message"];if(""==v){t=t.code;debug&&console.log(t);v=a("#ai-clipboard-template");var B=
215
+ a("#ai-clipboard");B.html(v.html());B.find("input#name-edit-999").attr("value",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:",v)}).fail(function(t,v,B){console.log("Error downloading AdSense code: "+t.status+" "+t.statusText)}).always(function(){a("#ai-loading").hide()})}),
216
+ a("label.adsense-preview-code").click(function(){var r=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");
217
+ 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(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,v){console.log("Error downloading AdSense code: "+q.status+" "+q.statusText)}).always(function(){a("#ai-loading").hide()})}),
218
+ c.disableSelection())})}function O(){ads_txt_reload=!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),
219
+ debug&&console.log(n);else{0!=a("#ads-txt-missing").length&&(c="text",b.addClass("editor"),a("#ads-txt-search").hide());switch(c){case "text":a("#ads-txt-search").hide();b.removeClass("dashicons-edit");b.addClass("dashicons-yes-alt");b.addClass("green");b.attr("title",b.attr("title-editor")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250});d.removeClass("dashicons-download");d.addClass("dashicons-no");0!=a("#ads-txt-missing").length?(d.removeClass("red"),d.attr("title",d.attr("title-table")).tooltip({track:!0,
220
+ delay:700,showURL:!1,showBody:" | ",fade:250})):(d.addClass("red"),d.attr("title",d.attr("title-editor")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}));break;case "table":b.removeClass("dashicons-yes-alt"),b.removeClass("green"),b.addClass("dashicons-edit"),b.attr("title",b.attr("title-table")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}),d.removeClass("dashicons-no"),d.removeClass("red"),d.addClass("dashicons-download"),d.attr("title",d.attr("title-table")).tooltip({track:!0,
221
+ delay:700,showURL:!1,showBody:" | ",fade:250})}a("#ads-txt-controls").show()}})}function Va(b){var d=a("#ads-txt-data"),f=a("#ads-txt-editor"),c=a("#ads-txt-reload"),e=a("#ads-txt-virtual").hasClass("violet")?"1":"0";d={text:b64e(d.find("textarea#ads-txt-text").val())};a("#ads-txt-error").text("");f.removeClass("green");f.addClass("red");a.post(ajaxurl+"?action=ai_ajax_backend&ads-txt=save&virtual="+e+"&ai_check="+ai_nonce,d).done(function(g){}).fail(function(g,n,r){f.removeClass("red");f.addClass("green");
222
+ g="Error saving ads.txt file: "+g.status+" "+g.statusText;a("#ads-txt-error").text(g);debug&&console.log(g)}).always(function(){f.removeClass("editor");f.removeClass("green");f.removeClass("red");f.removeClass("dashicons-yes-alt");f.addClass("dashicons-edit");f.attr("title",f.attr("title-editor")).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250});c.addClass("dashicons-download");c.removeClass("dashicons-no");c.removeClass("red");c.attr("title",c.attr("title-editor")).tooltip({track:!0,
223
+ delay:700,showURL:!1,showBody:" | ",fade:250});a("#ads-txt-search").show();b&&setTimeout(function(){O()},100)})}function na(b){var d=parseInt(a("select#insertion-type-"+b+" option:selected").attr("value")),f=a("#page-types-"+b);switch(d){case AI_BEFORE_HTML_ELEMENT:case AI_AFTER_HTML_ELEMENT:case AI_INSIDE_HTML_ELEMENT:f.find("td.ai-page-type").removeClass("ai-unavailable");return}"po pa hp cp ap sp".split(" ").forEach(function(c,e){var g=a("table.check-pages").attr("data-positions-"+c);null!=g&&
224
+ (-1!=JSON.parse(g).indexOf(d)?f.find("td.ai-page-type.ai-"+c).removeClass("ai-unavailable").find("input, label").removeAttr("title").tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}):f.find("td.ai-page-type.ai-"+c).addClass("ai-unavailable").find("input, label").attr("title",ai_admin.position_might_not_available).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250}))})}function Wa(b,d,f){var c=d.closest(".ai-check-pages").find(".ai-error-message");a.get(ajaxurl+"?action=ai_ajax_backend&check-page="+
225
+ b+"&ai_check="+ai_nonce,function(e){if(""!=e){debug&&console.log("AI CHECK PAGES:",e);try{var g=JSON.parse(e),n=g.positions,r=g.urls;debug&&console.log("AI CHECK PAGES positions:",n);debug&&console.log("AI CHECK PAGES urls:",r);a("table.check-pages").attr("data-positions-"+b,JSON.stringify(n));a("table.check-pages").attr("data-urls-"+b,JSON.stringify(r));a("table.check-pages td.ai-position.ai-"+b).each(function(){a(this).removeClass("ai-not-checked");var q=a(this).data("insertion");-1==n.indexOf(q)?
226
+ a(this).addClass("ai-no").attr("title",ai_admin.position_not_available):a(this).addClass("ai-yes").attr("title",ai_admin.position_available);a(this).tooltip({track:!0,delay:700,showURL:!1,showBody:" | ",fade:250})});null!=r&&0!=r.length&&a("table.check-pages a.ai-"+b).each(function(q,t){"undefined"!=typeof r[q]&&a(this).attr("href",r[q]).show()})}catch(q){c.find(".ai-error-message-text").text(e),c.show(),console.log("AI CHECK PAGES: JSON error decoding available positions: "+e)}}}).fail(function(e,
227
+ g,n){c.find(".ai-error-message-text").text(e.status+" "+e.statusText);c.show();console.log("AI CHECK PAGES: Error loading positions for",b+":",e.status,e.statusText)}).always(function(){if(f){a("#ai-loading").hide();a("#ai-loading-2").hide();d.find("span.ui-button-text").removeClass("on");for(var e=start;e<=end;e++)na(e)}})}function Aa(){var b=[];if(0!=ai_tab_setup_delay){0!=active_tab&&b.push(0);for(var d=end;d>=start;d--)d!=active_tab&&b.push(d)}tabs_to_configure=b.concat(tabs_to_configure);0!=
228
+ ai_tab_setup_delay&&setTimeout(ia,3*ai_tab_setup_delay);b=16;0!=active_tab&&(b=active_tab-start);a("#ai-tab-container").tabs({active:b});a("#ai-plugin-settings-tab-container").tabs({active:active_tab_0});debug_title&&a("#plugin_name").css("color","#00f");0==active_tab?la():fa(active_tab);a("#dummy-tabs").hide();a("#ai-tabs").show();a("#ai-tab-container").on("tabsbeforeactivate",function(f,c){var e=c.newTab.attr("id");e.includes("ai-tab")&&(active_tab=e=parseInt(e.replace("ai-tab","")),debug&&console.log("on tabsbeforeactivate",
229
  active_tab),ya())});a(".ai-plugin-tab").click(function(){active_tab_0=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=
230
  a(this),c=a(this).closest(".ai-check-pages").find(".ai-error-message");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,
231
  showBody:" | ",fade:250})});a("table.ai-page-types td.ai-page-type").each(function(){a(this).removeClass("ai-unavailable")});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");
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: 2022-02-08 15:27:07+00:00\n"
8
- "PO-Revision-Date: 2022-02-08 16:27+0100\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
@@ -14,136 +14,136 @@ msgstr ""
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
16
  "%100<=4 ? 2 : 3);\n"
17
- "X-Generator: Poedit 3.0.1\n"
18
 
19
- #: ad-inserter.php:319
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:335
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:342
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:428
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:435
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:444
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:451
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:462
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
- #: ad-inserter.php:469
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:1138
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
- #: ad-inserter.php:1143
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:1148 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:1153 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:1158 strings.php:106
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
- #: ad-inserter.php:1163 strings.php:171
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
- #: ad-inserter.php:1210
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
- #: ad-inserter.php:1214
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
- #: ad-inserter.php:1517
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
- #: ad-inserter.php:1891 ad-inserter.php:3355
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
- #: ad-inserter.php:2644
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
- #: ad-inserter.php:2644
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
- #: ad-inserter.php:2645
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
- #: ad-inserter.php:2646
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
- #: ad-inserter.php:2647
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
- #: ad-inserter.php:2648
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
- #: ad-inserter.php:2649
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:3043
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:3046
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
- #: ad-inserter.php:3050
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
- #: ad-inserter.php:3055
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:3058
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:3071
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:3073
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,33 +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:3079
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:3096 ad-inserter.php:3138
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:3103
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:3110
205
  msgid "Error: plugin settings corrupt"
206
  msgstr "Napaka: okvarjene nastavitve vtičnika"
207
 
208
- #: ad-inserter.php:3120
209
  msgctxt "Menu item"
210
  msgid "Settings"
211
  msgstr "Nastavitve"
212
 
213
- #: ad-inserter.php:3152
214
  msgid ""
215
  "Load settings page in safe mode to avoid collisions with other plugins or "
216
  "theme"
@@ -218,79 +218,79 @@ msgstr ""
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:3152
222
  msgid "Safe mode"
223
  msgstr "Varni način"
224
 
225
  #. translators: %s: Ad Inserter
226
- #: ad-inserter.php:3247
227
  msgctxt "Meta box name"
228
  msgid "%s Individual Exceptions"
229
  msgstr "Posamezne Izjeme za %s"
230
 
231
- #: ad-inserter.php:3276 ad-inserter.php:11749 class.php:2571
232
  #: includes/preview.php:2419 includes/preview.php:2464
233
- #: includes/preview.php:2501 settings.php:4525 strings.php:3
234
  msgid "Block"
235
  msgstr "Blok"
236
 
237
- #: ad-inserter.php:3277 includes/functions.php:4688 settings.php:4526
238
- #: settings.php:4616
239
  msgid "Name"
240
  msgstr "Ime"
241
 
242
- #: ad-inserter.php:3280 settings.php:1260
243
  msgid "Default insertion"
244
  msgstr "Privzeto vstavljanje"
245
 
246
  #. translators: For this post or page
247
- #: ad-inserter.php:3283
248
  msgctxt "Page"
249
  msgid "For this"
250
  msgstr "Za to"
251
 
252
- #: ad-inserter.php:3284
253
  msgctxt "Post"
254
  msgid "For this"
255
  msgstr "Za ta"
256
 
257
- #: ad-inserter.php:3296
258
  msgctxt "Enabled/disabled on all"
259
  msgid "pages"
260
  msgstr "straneh"
261
 
262
- #: ad-inserter.php:3299
263
  msgctxt "Enabled/disabled on all"
264
  msgid "posts"
265
  msgstr "prispevkih"
266
 
267
- #: ad-inserter.php:3316 ad-inserter.php:3328 strings.php:177
268
  msgid "Enabled"
269
  msgstr "Omogočeno"
270
 
271
  #. translators: Menu items
272
- #: ad-inserter.php:3316 ad-inserter.php:3328
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:3318
279
  msgid "No individual exceptions"
280
  msgstr "Ni posameznih izjem"
281
 
282
  #. translators: Not enabled for pages or posts
283
- #: ad-inserter.php:3320
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:3348
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:3353
294
  msgid ""
295
  "Default insertion can be configured for each block on %1$s page - button "
296
  "next to %2$s checkbox."
@@ -298,11 +298,11 @@ msgstr ""
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:3356 settings.php:1238
302
  msgid "Tag / Archive pages"
303
  msgstr "Strani oznak / arhiva"
304
 
305
- #: ad-inserter.php:3358
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,7 +310,7 @@ msgstr ""
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:3359
314
  msgid ""
315
  "This way you can individually enable or disable blocks on specific posts or "
316
  "pages."
@@ -318,61 +318,61 @@ msgstr ""
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:3361
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:3363
327
  msgid "Individual Exceptions"
328
  msgstr "Posamezne Izjeme"
329
 
330
- #: ad-inserter.php:3409
331
  msgid "STATIC PAGE"
332
  msgstr "STATIČNA STRAN"
333
 
334
- #: ad-inserter.php:3412
335
  msgid "POST"
336
  msgstr "PRISPEVEK"
337
 
338
- #: ad-inserter.php:3415
339
  msgid "HOMEPAGE"
340
  msgstr "DOMAČA STRAN"
341
 
342
- #: ad-inserter.php:3418
343
  msgid "CATEGORY PAGE"
344
  msgstr "STRAN KATEGORIJE"
345
 
346
- #: ad-inserter.php:3421
347
  msgid "SEARCH PAGE"
348
  msgstr "STRAN ISKANJE"
349
 
350
- #: ad-inserter.php:3424
351
  msgid "ARCHIVE PAGE"
352
  msgstr "STRAN ARHIVA"
353
 
354
- #: ad-inserter.php:3427
355
  msgid "ERROR 404 PAGE"
356
  msgstr "STRAN NAPAKA 404"
357
 
358
- #: ad-inserter.php:3430
359
  msgid "AJAX CALL"
360
  msgstr "AJAX KLIC"
361
 
362
- #: ad-inserter.php:3433
363
  msgid "UNKNOWN PAGE TYPE"
364
  msgstr "NEZNAN TIP STRANI"
365
 
366
- #: ad-inserter.php:3450
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:3451
371
  msgid "AD BLOCKING STATUS UNKNOWN"
372
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
373
 
374
  #. translators: %s: AdSense Auto Ads
375
- #: ad-inserter.php:3480
376
  msgid ""
377
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
378
  "positions"
@@ -380,11 +380,11 @@ msgstr ""
380
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
381
  "položaje"
382
 
383
- #: ad-inserter.php:3626
384
  msgid "Code for insertion"
385
  msgstr "Koda za vstavljanje"
386
 
387
- #: ad-inserter.php:3626
388
  msgid "character"
389
  msgid_plural "characters"
390
  msgstr[0] "znak"
@@ -392,16 +392,16 @@ msgstr[1] "znaka"
392
  msgstr[2] "znaki"
393
  msgstr[3] "znakov"
394
 
395
- #: ad-inserter.php:3641
396
  msgid "Header code"
397
  msgstr "Koda v glavi"
398
 
399
- #: ad-inserter.php:3641
400
  msgctxt "Header code"
401
  msgid "DISABLED"
402
  msgstr "ONEMOGOČENA"
403
 
404
- #: ad-inserter.php:3641 ad-inserter.php:3902
405
  msgid "character inserted"
406
  msgid_plural "characters inserted"
407
  msgstr[0] "znak vstavljen"
@@ -409,52 +409,52 @@ msgstr[1] "znaka vstavljena"
409
  msgstr[2] "znaki vstavljeni"
410
  msgstr[3] "znakov vstavljenih"
411
 
412
- #: ad-inserter.php:3659
413
  msgid "Click to delete the cookie for the consents"
414
  msgstr "Klikni za brisanje piškotka za soglasja"
415
 
416
- #: ad-inserter.php:3663 ad-inserter.php:3911
417
  msgid "UNFILTERED HTML DISABLED"
418
  msgstr "NEFILTRIRANI HTML ONEMOGOČEN"
419
 
420
- #: ad-inserter.php:3902
421
  msgid "Footer code"
422
  msgstr "Koda v nogi"
423
 
424
- #: ad-inserter.php:3902
425
  msgctxt "Footer code"
426
  msgid "DISABLED"
427
  msgstr "ONEMOGOČENA"
428
 
429
- #: ad-inserter.php:3916
430
  msgid "JAVASCRIPT NOT WORKING"
431
  msgstr "JAVASCRIPT NE DELA"
432
 
433
- #: ad-inserter.php:3916
434
  msgid "NO JAVASCRIPT ERRORS"
435
  msgstr "BREZ JAVASCRIPT NAPAK"
436
 
437
- #: ad-inserter.php:3916
438
  msgid "JAVASCRIPT ERRORS"
439
  msgstr "JAVASCRIPT NAPAKE"
440
 
441
  #. translators: block name (block with default settings)
442
- #: ad-inserter.php:6784
443
  msgctxt "Block name"
444
  msgid "Default"
445
  msgstr "Privzeti"
446
 
447
  #. translators: %s: Ad Inserter
448
- #: ad-inserter.php:7233 ad-inserter.php:7545
449
  msgid "Invalid data received - %s settings not saved."
450
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
451
 
452
  #. translators: %s: Ad Inserter
453
- #: ad-inserter.php:7519
454
  msgid "Error importing %s settings."
455
  msgstr "Napaka pri uvozu %s nastavitev."
456
 
457
- #: ad-inserter.php:7520
458
  msgid "Error importing settings for block"
459
  msgid_plural "Error importing settings for blocks:"
460
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -462,17 +462,17 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
462
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
463
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
464
 
465
- #: ad-inserter.php:7543
466
  msgid "Settings saved."
467
  msgstr "Nastavitve shranjene."
468
 
469
- #: ad-inserter.php:7565
470
  msgid "Settings cleared."
471
  msgstr "Nastavitve ponastavljene."
472
 
473
  #. Translators: Post/Static page must have between X and Y words
474
- #: ad-inserter.php:7941 ad-inserter.php:7943 ad-inserter.php:7966
475
- #: settings.php:2290
476
  msgid "word"
477
  msgid_plural "words"
478
  msgstr[0] "besedo"
@@ -480,43 +480,43 @@ msgstr[1] "besedi"
480
  msgstr[2] "besede"
481
  msgstr[3] "besed"
482
 
483
- #: ad-inserter.php:7980 ad-inserter.php:8107
484
  msgid "HTML TAGS REMOVED"
485
  msgstr "HTML ZNAČKE ODSTRANJENE"
486
 
487
- #: ad-inserter.php:8186
488
  msgid "BEFORE COMMENTS"
489
  msgstr "PRED KOMENTARJI"
490
 
491
- #: ad-inserter.php:8311
492
  msgid "AFTER COMMENTS"
493
  msgstr "PO KOMETARJIH"
494
 
495
- #: ad-inserter.php:8388
496
  msgid "BETWEEN COMMENTS"
497
  msgstr "MED KOMENTARJI"
498
 
499
- #: ad-inserter.php:11006 ad-inserter.php:11107
500
  msgctxt "category name"
501
  msgid "Uncategorized"
502
  msgstr "Nekategorizirano"
503
 
504
- #: ad-inserter.php:11342
505
  msgid "requires WordPress 4.6 or newer"
506
  msgstr "potrebuje WordPress 4.6 ali novejši"
507
 
508
- #: ad-inserter.php:11342
509
  msgid "Please update!"
510
  msgstr "Prosimo, posodobite!"
511
 
512
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
513
  #. name with HTML tags will be added)
514
- #: ad-inserter.php:11617
515
  msgid "Thank you for installing"
516
  msgstr "Hvala za namestitev vtičnika"
517
 
518
  #. translators: Opt-in message: %s: HTML tags
519
- #: ad-inserter.php:11619
520
  msgid ""
521
  "We would like to %s track its usage %s on your site. This is completely "
522
  "optional and can be disabled at any time."
@@ -524,7 +524,7 @@ msgstr ""
524
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
525
  "izbirno in se lahko izključi kadarkoli."
526
 
527
- #: ad-inserter.php:11621
528
  msgid ""
529
  "We don't record any sensitive data, only information regarding the WordPress "
530
  "environment and plugin usage, which will help us to make improvements to the "
@@ -534,7 +534,7 @@ msgstr ""
534
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
535
 
536
  #. translators: Deactivation message: %s: HTML tags
537
- #: ad-inserter.php:11661
538
  msgid ""
539
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
540
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -545,50 +545,50 @@ msgstr ""
545
  "nam %s in poskušali vam bomo pomagati."
546
 
547
  #. translators: %s: Ad Inserter
548
- #: ad-inserter.php:11707
549
  msgid "%s block."
550
  msgstr "%s blok."
551
 
552
  #. translators: widget title
553
- #: ad-inserter.php:11723 ad-inserter.php:11758
554
  msgid "Processing log"
555
  msgstr "Dnevnik procesiranja"
556
 
557
  #. translators: widget title
558
- #: ad-inserter.php:11725 ad-inserter.php:11759
559
  msgid "Dummy widget"
560
  msgstr "Prazen gradnik"
561
 
562
  #. translators: widget title
563
- #: ad-inserter.php:11727 ad-inserter.php:11757
564
  msgid "Debugging tools"
565
  msgstr "Orodja za razhroščevanje"
566
 
567
  #. translators: block status (widget title)
568
- #: ad-inserter.php:11734
569
  msgctxt "block"
570
  msgid "PAUSED"
571
  msgstr "USTAVLJEN"
572
 
573
- #: ad-inserter.php:11735
574
  msgid "WIDGET DISABLED"
575
  msgstr "GRADNIK ONEMOGOČEN"
576
 
577
- #: ad-inserter.php:11736
578
  msgid "Unknown block"
579
  msgstr "Neznan blok"
580
 
581
- #: ad-inserter.php:11744 includes/functions-check-now.php:3262
582
- #: includes/functions.php:5167 settings.php:1290
583
  msgid "Title"
584
  msgstr "Naslov"
585
 
586
- #: ad-inserter.php:11766
587
  msgctxt "Widget"
588
  msgid "Sticky"
589
  msgstr "Lepljiv"
590
 
591
- #: ad-inserter.php:11817
592
  msgid ""
593
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
594
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -597,7 +597,7 @@ msgstr ""
597
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
598
  "Inserter Pro."
599
 
600
- #: ad-inserter.php:11818
601
  msgid ""
602
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
603
  "will clear all settings that are available only in the Pro version "
@@ -608,188 +608,188 @@ msgstr ""
608
  "različici (dodatne nastavitve blokov in vtičnika)!"
609
 
610
  #. translators: %s: Ad Inserter
611
- #: class.php:626 class.php:635 class.php:638
612
  msgid "PHP error in %s block"
613
  msgstr "PHP napaka v bloku %s"
614
 
615
- #: class.php:2521
616
  msgid "Counters"
617
  msgstr "Števci"
618
 
619
- #: class.php:2525
620
  msgid "Content"
621
  msgstr "Vsebina"
622
 
623
- #: class.php:2530
624
  msgid "Excerpt"
625
  msgstr "Izvleček"
626
 
627
- #: class.php:2535 strings.php:17
628
  msgid "Before post"
629
  msgstr "Pred prispevkom"
630
 
631
- #: class.php:2540 strings.php:18
632
  msgid "After post"
633
  msgstr "Za prispevkom"
634
 
635
- #: class.php:2545 strings.php:25
636
  msgid "Between posts"
637
  msgstr "Med prispevki"
638
 
639
- #: class.php:2550 settings.php:2024 settings.php:4543
640
  msgid "Widget"
641
  msgstr "Gradnik"
642
 
643
- #: class.php:2555 settings.php:4541
644
  msgid "PHP function call"
645
  msgstr "Klic PHP funkcije"
646
 
647
  #. Translators: %s: custom hook name
648
- #: class.php:2565
649
  msgid "Custom hook %s call"
650
  msgstr "Klic ročice po meri %s"
651
 
652
- #: class.php:2613
653
  msgid "AJAX REQUEST"
654
  msgstr "AJAX ZAHTEVEK"
655
 
656
- #: class.php:2616
657
  msgid "Ajax request for block in iframe"
658
  msgstr "Ajax zahtevek za blok v iframe-u"
659
 
660
- #: class.php:2650
661
  msgid "Ajax request url, click to open it in a new tab"
662
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
663
 
664
- #: class.php:2653
665
  msgid "IN THE LOOP"
666
  msgstr "V ZANKI"
667
 
668
- #: class.php:2653
669
  msgid "YES"
670
  msgstr "DA"
671
 
672
- #: class.php:2653
673
  msgid "NO"
674
  msgstr "NE"
675
 
676
- #: class.php:2688
677
  msgid "BLOCK"
678
  msgstr "BLOK"
679
 
680
- #: class.php:2688
681
  msgctxt "block or widget"
682
  msgid "INSERTED BUT NOT VISIBLE"
683
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
684
 
685
- #: class.php:2919
686
  msgctxt "viewports"
687
  msgid "ALL"
688
  msgstr "VSI"
689
 
690
- #: class.php:2955 class.php:2996 class.php:4704 strings.php:283
691
  msgctxt "Block"
692
  msgid "HIDDEN"
693
  msgstr "SKRIT"
694
 
695
- #: class.php:3003 class.php:4707 strings.php:282
696
  msgctxt "Block"
697
  msgid "VISIBLE"
698
  msgstr "VIDEN"
699
 
700
- #: class.php:3065
701
  msgctxt "fallback"
702
  msgid "INACTIVE"
703
  msgstr "NEAKTIVNA"
704
 
705
- #: class.php:3066
706
  msgctxt "fallback"
707
  msgid "ACTIVE"
708
  msgstr "AKTIVNA"
709
 
710
- #: class.php:3088
711
  msgctxt "Block"
712
  msgid "FALLBACK CODE"
713
  msgstr "REZERVNA KODA"
714
 
715
- #: class.php:3782 class.php:3880
716
  msgid "ACTIVE GROUPS"
717
  msgstr "AKTIVNE SKUPINE"
718
 
719
- #: class.php:4378
720
  msgid "start='%s' end='%s' days='%s' type='%s'"
721
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
722
 
723
- #: class.php:4386
724
  msgid "parameters='%s' type='%s'"
725
  msgstr "parametri='%s' tip='%s'"
726
 
727
- #: class.php:4388
728
  msgid "cookies='%s' type='%s'"
729
  msgstr "piškotki='%s' tip='%s'"
730
 
731
  #. translators: %s: list parameters and type
732
- #: class.php:4390
733
  msgid "referers='%s' type='%s'"
734
  msgstr "napotitelji='%s' tip='%s'"
735
 
736
  #. translators: %s: list parameters and type
737
- #: class.php:4392
738
  msgid "clients='%s' type='%s'"
739
  msgstr "odjemalci='%s' tip='%s'"
740
 
741
  #. translators: %s: list parameters and type
742
- #: class.php:4587
743
  msgid "countries='%s' type='%s'"
744
  msgstr "države='%s' tip='%s'"
745
 
746
  #. translators: %s: list parameters and type
747
- #: class.php:4589
748
  msgid "ip addresses='%s' type='%s'"
749
  msgstr "ip naslovi='%s' tip='%s'"
750
 
751
- #: class.php:4704 class.php:4707
752
  msgid "viewport='%s' type='%s'"
753
  msgstr "pogled='%s' tip='%s'"
754
 
755
- #: class.php:4830 strings.php:284
756
  msgctxt "alternative block"
757
  msgid "FALLBACK"
758
  msgstr "REZERVA"
759
 
760
- #: class.php:5415 strings.php:276
761
  msgid "BEFORE"
762
  msgstr "PRED"
763
 
764
- #: class.php:5423 strings.php:278
765
  msgid "PREPEND CONTENT"
766
  msgstr "DODAJ PRED VSEBINO"
767
 
768
- #: class.php:5427 strings.php:279
769
  msgid "APPEND CONTENT"
770
  msgstr "DODAJ ZA VSEBINO"
771
 
772
- #: class.php:5431 strings.php:280
773
  msgid "REPLACE CONTENT"
774
  msgstr "NADOMESTI VSEBINO"
775
 
776
- #: class.php:5435 strings.php:281
777
  msgid "REPLACE ELEMENT"
778
  msgstr "NADOMESTI ELEMENT"
779
 
780
- #: class.php:5446 strings.php:277
781
  msgid "AFTER"
782
  msgstr "ZA"
783
 
784
- #: class.php:5516 includes/preview.php:2464 includes/preview.php:2501
785
  msgid "Code"
786
  msgstr "Koda"
787
 
788
- #: class.php:5519
789
  msgid "for block"
790
  msgstr "za blok"
791
 
792
- #: class.php:9817
793
  msgid ""
794
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
795
  "extension for PHP."
@@ -807,7 +807,7 @@ msgid "Reset"
807
  msgstr "Ponastavi"
808
 
809
  #: includes/editor.php:6 includes/placeholders.php:352
810
- #: includes/preview.php:2408 settings.php:3862 strings.php:230 strings.php:288
811
  msgid "Cancel"
812
  msgstr "Prekliči"
813
 
@@ -824,7 +824,7 @@ msgstr ""
824
  "Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
825
  "blokiranje oglasov."
826
 
827
- #: includes/editor.php:261 settings.php:256
828
  msgid "Error loading page"
829
  msgstr "Napaka pri nalaganju strani"
830
 
@@ -833,17 +833,17 @@ msgstr "Napaka pri nalaganju strani"
833
  msgid "PAGE BLOCKED"
834
  msgstr "STRAN BLOKIRANA"
835
 
836
- #: includes/functions-check-now.php:288 includes/functions.php:325
837
  msgid "%d of %d names shown"
838
  msgstr "Prikazanih %d od %d imen"
839
 
840
  #. translators: %s: name filter
841
- #: includes/functions-check-now.php:307 includes/functions.php:344
842
  msgid "No name matches filter"
843
  msgstr "Noben podatek ne ustreza filtru"
844
 
845
  #. translators: %s: Ad Inserter Pro
846
- #: includes/functions-check-now.php:396 includes/functions.php:435
847
  msgid ""
848
  "Import %s settings when saving - if checked, the encoded settings below will "
849
  "be imported for all blocks and settings"
@@ -859,31 +859,31 @@ msgstr "Uvozi Nastavitve za"
859
  msgid "Saved settings for"
860
  msgstr "Shranjene nastavitve za"
861
 
862
- #: includes/functions-check-now.php:420 includes/functions.php:470
863
  msgid "License Key"
864
  msgstr "Licenčni Ključ"
865
 
866
- #: includes/functions-check-now.php:423 includes/functions.php:473
867
  msgid "License Key for"
868
  msgstr "Licenčni Ključ za"
869
 
870
- #: includes/functions-check-now.php:425 includes/functions.php:475
871
  msgid "Open license page"
872
  msgstr "Odpri licenčno stran"
873
 
874
- #: includes/functions-check-now.php:432 includes/functions.php:482
875
  msgid "Hide license key"
876
  msgstr "Skrij licenčni ključ"
877
 
878
- #: includes/functions-check-now.php:432 includes/functions.php:482
879
  msgid "Hide key"
880
  msgstr "Skrij ključ"
881
 
882
- #: includes/functions-check-now.php:447 includes/functions.php:499
883
  msgid "Main content element"
884
  msgstr "Glavni element vsebine"
885
 
886
- #: includes/functions-check-now.php:450 includes/functions.php:502
887
  msgid ""
888
  "Main content element (#id or .class) for 'Stick to the content' position. "
889
  "Leave empty unless position is not properly calculated."
@@ -891,79 +891,79 @@ msgstr ""
891
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
892
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
893
 
894
- #: includes/functions-check-now.php:451 includes/functions.php:503
895
- #: settings.php:1447 settings.php:1487 settings.php:2999
896
  msgid "Open HTML element selector"
897
  msgstr "Odpri izbirnik HTML elementa"
898
 
899
- #: includes/functions-check-now.php:456 includes/functions.php:508
900
  msgid "Lazy loading offset"
901
  msgstr "Zamik za leno nalaganje"
902
 
903
- #: includes/functions-check-now.php:459 includes/functions.php:511
904
  msgid "Offset of the block from the visible viewport when it should be loaded"
905
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
906
 
907
- #: includes/functions-check-now.php:470 includes/functions.php:523
908
  msgid "Export / Import Block Settings"
909
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
910
 
911
- #: includes/functions-check-now.php:485 includes/functions.php:540
912
  msgid "Track impressions and clicks for this block"
913
  msgstr "Sledi prikazom in klikom za ta blok"
914
 
915
- #: includes/functions-check-now.php:485 includes/functions.php:540
916
  msgid " - global tracking disabled"
917
  msgstr " - globalno sledenje onemogočeno"
918
 
919
- #: includes/functions-check-now.php:492 includes/functions.php:548
920
- #: includes/functions.php:4860
921
  msgid "Generate PDF report"
922
  msgstr "Generiraj PDF poročilo"
923
 
924
- #: includes/functions-check-now.php:497 includes/functions.php:562
925
  msgid "Open public report"
926
  msgstr "Odpri javno poročilo"
927
 
928
- #: includes/functions-check-now.php:511 includes/functions.php:576
929
  msgid "Toggle Ad Blocking Statistics"
930
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
931
 
932
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
933
- #: includes/functions.php:584 includes/functions.php:4841
934
  msgid "Toggle Statistics"
935
  msgstr "Preklopi Statistiko"
936
 
937
- #: includes/functions-check-now.php:528 includes/functions.php:593
938
  msgid "Pin list"
939
  msgstr "Pripni seznam"
940
 
941
  #. translators: %s: Ad Inserter Pro
942
- #: includes/functions-check-now.php:543 includes/functions.php:616
943
  msgid "%s license key is not set. Continue?"
944
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
945
 
946
  #. translators: %s: Ad Inserter Pro
947
- #: includes/functions-check-now.php:547 includes/functions.php:620
948
  msgid "Invalid %s license key. Continue?"
949
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
950
 
951
  #. translators: %s: Ad Inserter Pro
952
- #: includes/functions-check-now.php:551 includes/functions.php:624
953
  msgid "%s license overused. Continue?"
954
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
955
 
956
- #: includes/functions-check-now.php:555 includes/functions.php:634
957
- #: settings.php:1195 settings.php:2411
958
  msgid "Save Settings"
959
  msgstr "Shrani Nastavitve"
960
 
961
- #: includes/functions-check-now.php:615 includes/functions.php:702
962
  #: includes/preview.php:2596
963
  msgid "Horizontal position"
964
  msgstr "Vodoravni položaj"
965
 
966
- #: includes/functions-check-now.php:638 includes/functions.php:727
967
  msgid ""
968
  "Horizontal margin from the content or screen edge, empty means default value "
969
  "from CSS"
@@ -971,12 +971,12 @@ msgstr ""
971
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
972
  "iz CSS"
973
 
974
- #: includes/functions-check-now.php:646 includes/functions.php:735
975
  #: includes/preview.php:2656
976
  msgid "Vertical position"
977
  msgstr "Navpični položaj"
978
 
979
- #: includes/functions-check-now.php:661 includes/functions.php:750
980
  msgid ""
981
  "Vertical margin from the top or bottom screen edge, empty means default "
982
  "value from CSS"
@@ -984,7 +984,7 @@ msgstr ""
984
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
985
  "iz CSS"
986
 
987
- #: includes/functions-check-now.php:686 includes/functions.php:781
988
  #: includes/preview.php:2711
989
  msgid "Animation"
990
  msgstr "Animacija"
@@ -1001,22 +1001,22 @@ msgstr ""
1001
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
1002
  "selektorjem (#id ali .razred) postane viden"
1003
 
1004
- #: includes/functions-check-now.php:717 includes/functions.php:816
1005
- #: includes/functions.php:843
1006
  msgid "Offset"
1007
  msgstr "Zamik"
1008
 
1009
- #: includes/functions-check-now.php:717 includes/functions.php:816
1010
- #: includes/functions.php:843
1011
  msgid "Offset of trigger element"
1012
  msgstr "Zamik sprožilnega elementa"
1013
 
1014
- #: includes/functions-check-now.php:721 includes/functions.php:820
1015
- #: includes/functions.php:847 settings.php:1502
1016
  msgid "Delay"
1017
  msgstr "Zakasnitev"
1018
 
1019
- #: includes/functions-check-now.php:721 includes/functions.php:820
1020
  msgid "Delay animation after trigger condition"
1021
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
1022
 
@@ -1029,28 +1029,28 @@ msgid "Trigger animation only once"
1029
  msgstr "Sproži animacijo samo enkrat"
1030
 
1031
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
1032
- #: includes/functions-check-now.php:2546 includes/functions.php:1000
1033
- #: includes/functions.php:3164 includes/functions.php:3180
1034
  msgid "Tracking is globally disabled"
1035
  msgstr "Sledenje je globalno onemogočeno"
1036
 
1037
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
1038
- #: includes/functions-check-now.php:2550 includes/functions.php:1004
1039
- #: includes/functions.php:3168 includes/functions.php:3184
1040
  msgid "Tracking for this block is disabled"
1041
  msgstr "Sledenje za ta blok je onemogočeno"
1042
 
1043
- #: includes/functions-check-now.php:780 includes/functions.php:1011
1044
  msgid "Double click to toggle controls in public reports"
1045
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1046
 
1047
- #: includes/functions-check-now.php:786 includes/functions.php:1017
1048
- #: includes/functions.php:4410 settings.php:3782 settings.php:3818
1049
- #: settings.php:3879 strings.php:244
1050
  msgid "Loading..."
1051
  msgstr "Nalagam..."
1052
 
1053
- #: includes/functions-check-now.php:807 includes/functions.php:1038
1054
  msgid ""
1055
  "Clear statistics data for the selected range - clear both dates to delete "
1056
  "all data for this block"
@@ -1058,71 +1058,71 @@ msgstr ""
1058
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
1059
  "brisanje vseh podatkov za ta blok"
1060
 
1061
- #: includes/functions-check-now.php:811 includes/functions.php:1042
1062
  msgid "Auto refresh data for the selected range every 60 seconds"
1063
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1064
 
1065
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1066
- #: includes/functions.php:1045 includes/functions.php:8195
1067
  msgid "Load data for last month"
1068
  msgstr "Naloži podatke za zadnji mesec"
1069
 
1070
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1071
- #: includes/functions.php:1045 includes/functions.php:8195
1072
  msgid "Last Month"
1073
  msgstr "Zadnji Mesec"
1074
 
1075
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1076
- #: includes/functions.php:1048 includes/functions.php:8198
1077
  msgid "Load data for this month"
1078
  msgstr "Naloži podatke za ta mesec"
1079
 
1080
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1081
- #: includes/functions.php:1048 includes/functions.php:8198
1082
  msgid "This Month"
1083
  msgstr "Ta Mesec"
1084
 
1085
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1086
- #: includes/functions.php:1051 includes/functions.php:8201
1087
  msgid "Load data for this year"
1088
  msgstr "Naloži podatke za to leto"
1089
 
1090
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1091
- #: includes/functions.php:1051 includes/functions.php:8201
1092
  msgid "This Year"
1093
  msgstr "To Leto"
1094
 
1095
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1096
- #: includes/functions.php:1054 includes/functions.php:8204
1097
  msgid "Load data for the last 15 days"
1098
  msgstr "Naloži podatke za zadnjih 15 dni"
1099
 
1100
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1101
- #: includes/functions.php:1057 includes/functions.php:8207
1102
  msgid "Load data for the last 30 days"
1103
  msgstr "Naloži podatke za zadnjih 30 dni"
1104
 
1105
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1106
- #: includes/functions.php:1060 includes/functions.php:8210
1107
  msgid "Load data for the last 90 days"
1108
  msgstr "Naloži podatke za zadnjih 90 dni"
1109
 
1110
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1111
- #: includes/functions.php:1063 includes/functions.php:8213
1112
  msgid "Load data for the last 180 days"
1113
  msgstr "Naloži podatke za zadnjih 180 dni"
1114
 
1115
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1116
- #: includes/functions.php:1066 includes/functions.php:8216
1117
  msgid "Load data for the last 365 days"
1118
  msgstr "Naloži podatke za zadnjih 365 dni"
1119
 
1120
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1121
- #: includes/functions.php:1076 includes/functions.php:8226
1122
  msgid "Load data for the selected range"
1123
  msgstr "Naloži podatke za izbrano obdobje"
1124
 
1125
- #: includes/functions-check-now.php:861 includes/functions.php:1093
1126
  msgid ""
1127
  "Import settings when saving - if checked, the encoded settings below will be "
1128
  "imported for this block"
@@ -1130,11 +1130,11 @@ msgstr ""
1130
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1131
  "nastavitve spodaj uvozile za ta blok"
1132
 
1133
- #: includes/functions-check-now.php:861 includes/functions.php:1093
1134
  msgid "Import settings for block"
1135
  msgstr "Uvozi nastavitve za blok"
1136
 
1137
- #: includes/functions-check-now.php:865 includes/functions.php:1097
1138
  msgid ""
1139
  "Import block name when saving - if checked and 'Import settings for block' "
1140
  "is also checked, the name from encoded settings below will be imported for "
@@ -1144,41 +1144,41 @@ msgstr ""
1144
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1145
  "uvozilo za ta blok"
1146
 
1147
- #: includes/functions-check-now.php:865 includes/functions.php:1097
1148
  msgid "Import block name"
1149
  msgstr "Uvozi ime bloka"
1150
 
1151
- #: includes/functions-check-now.php:869 includes/functions.php:1101
1152
  msgid "Saved settings for block"
1153
  msgstr "Shranjene nastavitve za blok"
1154
 
1155
- #: includes/functions-check-now.php:882 includes/functions.php:1116
1156
  msgid "Export / Import Ad Inserter Pro Settings"
1157
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1158
 
1159
- #: includes/functions-check-now.php:892 includes/functions.php:1135
1160
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1161
  msgstr ""
1162
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1163
  "bloke?"
1164
 
1165
- #: includes/functions-check-now.php:894 includes/functions.php:1137
1166
  msgid "Clear All Statistics Data"
1167
  msgstr "Pobriši Vse Podatke o Statistiki"
1168
 
1169
- #: includes/functions-check-now.php:921 includes/functions.php:1171
1170
  msgid "Toggle country/city editor"
1171
  msgstr "Preklopi urejevalnik držav/mest"
1172
 
1173
- #: includes/functions-check-now.php:927 includes/functions.php:1177
1174
  msgid "IP Addresses"
1175
  msgstr "IP Naslovi"
1176
 
1177
- #: includes/functions-check-now.php:930 includes/functions.php:1180
1178
  msgid "Toggle IP address editor"
1179
  msgstr "Preklopi urejevalnik IP nslovov"
1180
 
1181
- #: includes/functions-check-now.php:933 includes/functions.php:1183
1182
  msgid ""
1183
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1184
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
@@ -1194,25 +1194,25 @@ msgstr "Črni seznam IP naslovov"
1194
  msgid "Whitelist IP addresses"
1195
  msgstr "Beli seznam IP naslovov"
1196
 
1197
- #: includes/functions-check-now.php:952 includes/functions.php:1199
1198
  msgid "Countries"
1199
  msgstr "Države"
1200
 
1201
- #: includes/functions-check-now.php:953 includes/functions.php:1200
1202
  msgid "Cities"
1203
  msgstr "Mesta"
1204
 
1205
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1206
- #: includes/functions.php:1204 includes/functions.php:4806
1207
  msgid "Toggle country editor"
1208
  msgstr "Preklopi urejevalnik držav"
1209
 
1210
- #: includes/functions-check-now.php:960 includes/functions.php:1207
1211
  msgid "Toggle city editor"
1212
  msgstr "Preklopi urejevalnik mest"
1213
 
1214
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1215
- #: includes/functions.php:1211 includes/functions.php:4809
1216
  msgid "Comma separated country ISO Alpha-2 codes"
1217
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1218
 
@@ -1225,12 +1225,12 @@ msgid "Whitelist countries"
1225
  msgstr "Beli seznam držav"
1226
 
1227
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1228
- #: includes/functions.php:1788 includes/functions.php:2123
1229
  msgid "Enter license key"
1230
  msgstr "Vnesite licenčni ključ"
1231
 
1232
  #. translators: %s: Ad Inserter Pro
1233
- #: includes/functions-check-now.php:1389 includes/functions.php:1794
1234
  msgid ""
1235
  "%s license key is not set. Plugin functionality is limited and updates are "
1236
  "disabled."
@@ -1239,55 +1239,55 @@ msgstr ""
1239
  "posodobitve onemogočene."
1240
 
1241
  #. translators: %s: Ad Inserter Pro
1242
- #: includes/functions-check-now.php:1403 includes/functions.php:1808
1243
  msgid "Warning: %s plugin update server is not accessible"
1244
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1245
 
1246
  #. translators: updates are not available
1247
- #: includes/functions-check-now.php:1405 includes/functions.php:1810
1248
  msgid "updates"
1249
  msgstr "posodobitve"
1250
 
1251
  #. translators: updates are not available
1252
- #: includes/functions-check-now.php:1407 includes/functions.php:1812
1253
  msgid "are not available"
1254
  msgstr "niso na razpolago"
1255
 
1256
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1257
- #: includes/functions.php:1817 includes/functions.php:2132
1258
  msgid "Check license key"
1259
  msgstr "Preverite licenčni ključ"
1260
 
1261
  #. translators: %s: Ad Inserter Pro
1262
- #: includes/functions-check-now.php:1418 includes/functions.php:1823
1263
  msgid "Invalid %s license key."
1264
  msgstr "Neveljaven %s licenčni ključ."
1265
 
1266
  #. translators: %s: Ad Inserter Pro
1267
- #: includes/functions-check-now.php:1427 includes/functions.php:1832
1268
  msgid "%s license expired. Plugin updates are disabled."
1269
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1270
 
1271
- #: includes/functions-check-now.php:1428 includes/functions.php:1833
1272
  msgid "Renew license"
1273
  msgstr "Obnovite licenco"
1274
 
1275
  #. translators: %s: Ad Inserter Pro
1276
- #: includes/functions-check-now.php:1436 includes/functions.php:1841
1277
  msgid "%s license overused. Plugin updates are disabled."
1278
  msgstr ""
1279
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1280
 
1281
- #: includes/functions-check-now.php:1437 includes/functions.php:1842
1282
  msgid "Manage licenses"
1283
  msgstr "Upravljajte z licencami"
1284
 
1285
- #: includes/functions-check-now.php:1437 includes/functions.php:1842
1286
  msgid "Upgrade license"
1287
  msgstr "Nadgradite licenco"
1288
 
1289
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1290
- #: includes/functions-check-now.php:1684 includes/functions.php:2125
1291
  msgid ""
1292
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1293
  "limited and updates are disabled."
@@ -1296,12 +1296,12 @@ msgstr ""
1296
  "so omejene in posodobitve onemogočene."
1297
 
1298
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1299
- #: includes/functions-check-now.php:1693 includes/functions.php:2134
1300
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1301
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1302
 
1303
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1304
- #: includes/functions-check-now.php:1709 includes/functions.php:2150
1305
  msgid ""
1306
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1307
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1311,7 +1311,7 @@ msgstr ""
1311
  "pogrešate. %3$s"
1312
 
1313
  #. translators: 1, 3: HTML tags, 2: percentage
1314
- #: includes/functions-check-now.php:1716 includes/functions.php:2157
1315
  msgid ""
1316
  "During the license period and 30 days after the license has expired we offer "
1317
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
@@ -1319,24 +1319,24 @@ msgstr ""
1319
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1320
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1321
 
1322
- #: includes/functions-check-now.php:1726 includes/functions.php:2167
1323
  msgid "No, thank you."
1324
  msgstr "Ne, hvala."
1325
 
1326
- #: includes/functions-check-now.php:1729 includes/functions.php:2170
1327
  msgid "Not now, maybe later."
1328
  msgstr "Ne zdaj, mogoče kasneje."
1329
 
1330
- #: includes/functions-check-now.php:1743 includes/functions.php:2184
1331
  msgid "Renew the licence"
1332
  msgstr "Obnovi licenco"
1333
 
1334
- #: includes/functions-check-now.php:1745 includes/functions.php:2186
1335
  msgid "Update license status"
1336
  msgstr "Posodobi status licence"
1337
 
1338
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1339
- #: includes/functions-check-now.php:1756 includes/functions.php:2199
1340
  msgid ""
1341
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1342
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1346,105 +1346,106 @@ msgstr ""
1346
  "Nadgradite licenco %7$s"
1347
 
1348
  #. Translators: %s: HTML tag
1349
- #: includes/functions-check-now.php:1778 includes/functions.php:2259
1350
  msgid "Warning: %s MaxMind IP geolocation database not found."
1351
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1352
 
1353
- #: includes/functions-check-now.php:2331 includes/functions.php:2941
1354
  msgid "Geolocation"
1355
  msgstr "Geolokacija"
1356
 
1357
- #: includes/functions-check-now.php:2335 includes/functions.php:2945
1358
- #: settings.php:4530
1359
  msgid "Exceptions"
1360
  msgstr "Izjeme"
1361
 
1362
- #: includes/functions-check-now.php:2340 includes/functions.php:2950
1363
  msgid "Multisite"
1364
  msgstr "Multisite"
1365
 
1366
- #: includes/functions-check-now.php:2345 includes/functions.php:2955
1367
- #: settings.php:4536
1368
  msgid "Tracking"
1369
  msgstr "Sledenje"
1370
 
1371
  #. translators: %d: days, hours, minutes
1372
- #: includes/functions-check-now.php:2376 includes/functions.php:2989
1373
  msgid "Scheduled in %d days %d hours %d minutes"
1374
  msgstr "Planirano v %d dneh %d urah %d minutah"
1375
 
1376
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1377
  #. HTML code for long dash separator
1378
- #: includes/functions-check-now.php:2385 includes/functions.php:2998
1379
  msgid "Active %s expires in %d days %d hours %d minutes"
1380
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1381
 
1382
- #: includes/functions-check-now.php:2389 includes/functions.php:3002
1383
  msgid "Expired"
1384
  msgstr "Poteklo"
1385
 
1386
- #: includes/functions-check-now.php:2397 includes/functions.php:3028
1387
- #: settings.php:1557 settings.php:1572 settings.php:1694 settings.php:2288
1388
  msgid "and"
1389
  msgstr "in"
1390
 
1391
- #: includes/functions-check-now.php:2400 includes/functions.php:3010
1392
  msgid "fallback"
1393
  msgstr "rezerva"
1394
 
1395
- #: includes/functions-check-now.php:2401 includes/functions.php:3011
1396
  msgid "Block to be used when scheduling expires"
1397
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1398
 
1399
- #: includes/functions-check-now.php:2426 includes/functions.php:3050
1400
  msgid "Load in iframe"
1401
  msgstr "Naloži v iframe-u"
1402
 
1403
- #: includes/functions-check-now.php:2430 includes/functions.php:3054
1404
- #: includes/placeholders.php:387 settings.php:1155 settings.php:2315
1405
  msgid "Width"
1406
  msgstr "Širina"
1407
 
1408
- #: includes/functions-check-now.php:2431 includes/functions.php:3055
1409
  msgid "iframe width, empty means full width (100%)"
1410
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1411
 
1412
- #: includes/functions-check-now.php:2437 includes/functions.php:3061
1413
- #: includes/placeholders.php:382 settings.php:1161 settings.php:2319
1414
  msgid "Height"
1415
  msgstr "Višina"
1416
 
1417
- #: includes/functions-check-now.php:2438 includes/functions.php:3062
1418
  msgid "iframe height, empty means adjust it to iframe content height"
1419
  msgstr ""
1420
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1421
 
1422
- #: includes/functions-check-now.php:2445 includes/functions.php:3069
1423
  msgid "Ad label in iframe"
1424
  msgstr "Oznaka oglasa v iframe-u"
1425
 
1426
- #: includes/functions-check-now.php:2450 includes/functions.php:3074
1427
  msgid "Preview iframe code"
1428
  msgstr "Predpreglej kodo iframe"
1429
 
1430
- #: includes/functions-check-now.php:2450 includes/functions.php:3074
1431
- #: includes/preview.php:2417 settings.php:1190 settings.php:3072
1432
  msgid "Preview"
1433
  msgstr "Predogled"
1434
 
1435
- #: includes/functions-check-now.php:2464 includes/functions.php:3090
1436
- #: settings.php:4537
1437
  msgid "Limits"
1438
  msgstr "Omejitve"
1439
 
1440
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1441
- #: includes/functions-check-now.php:4430 includes/functions.php:3095
1442
- #: includes/functions.php:6668 includes/functions.php:6733 settings.php:2462
 
1443
  msgid "Ad Blocking"
1444
  msgstr "Blokiranje Oglasov"
1445
 
1446
  #. translators: 1, 2 and 3, 4: HTML tags
1447
- #: includes/functions-check-now.php:2478 includes/functions.php:3106
1448
  msgid ""
1449
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1450
  "for tracking!"
@@ -1454,7 +1455,7 @@ msgstr ""
1454
 
1455
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1456
  #. header
1457
- #: includes/functions-check-now.php:2487 includes/functions.php:3115
1458
  msgid ""
1459
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1460
  "enabled and automatic insertion %6$s!"
@@ -1462,7 +1463,7 @@ msgstr ""
1462
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1463
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1464
 
1465
- #: includes/functions-check-now.php:2554 includes/functions.php:3188
1466
  msgid "Click fraud protection is globally disabled"
1467
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1468
 
@@ -1471,14 +1472,14 @@ msgid "Max clicks per time period are not defined"
1471
  msgstr "Največje število klikov na časovno enoto ni definirano"
1472
 
1473
  #. Translators: Max n impressions
1474
- #: includes/functions-check-now.php:2572 includes/functions.php:3202
1475
  msgid "General limits"
1476
  msgstr "Splošne omejitve"
1477
 
1478
  #. Translators: Max n impressions per x days
1479
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1480
- #: includes/functions-check-now.php:2675 includes/functions.php:3208
1481
- #: includes/functions.php:3220 includes/functions.php:3305
1482
  msgid "Current value"
1483
  msgstr "Trenutna vrednost"
1484
 
@@ -1494,14 +1495,14 @@ msgstr "Trenutna vrednost"
1494
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1495
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1496
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1497
- #: includes/functions.php:3227 includes/functions.php:3237
1498
- #: includes/functions.php:3256 includes/functions.php:3266
1499
- #: includes/functions.php:3312 includes/functions.php:3321
1500
- #: includes/functions.php:3339 includes/functions.php:3348 settings.php:2200
1501
  msgid "Max"
1502
  msgstr "Največ"
1503
 
1504
- #: includes/functions-check-now.php:2598 includes/functions.php:3228
1505
  msgid ""
1506
  "Maximum number of impressions for this block. Empty means no general "
1507
  "impression limit."
@@ -1515,8 +1516,8 @@ msgstr ""
1515
  #. Translators: Max n impressions per x days
1516
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1517
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1518
- #: includes/functions.php:3230 includes/functions.php:3240
1519
- #: includes/functions.php:3315 includes/functions.php:3324
1520
  msgid "impression"
1521
  msgid_plural "impressions"
1522
  msgstr[0] "prikaz"
@@ -1524,7 +1525,7 @@ msgstr[1] "prikaza"
1524
  msgstr[2] "prikazi"
1525
  msgstr[3] "prikazov"
1526
 
1527
- #: includes/functions-check-now.php:2608 includes/functions.php:3238
1528
  msgid ""
1529
  "Maximum number of impressions per time period. Empty means no time limit."
1530
  msgstr ""
@@ -1537,14 +1538,14 @@ msgstr ""
1537
  #. Translators: Max n clicks per x days
1538
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1539
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1540
- #: includes/functions.php:3244 includes/functions.php:3273
1541
- #: includes/functions.php:3328 includes/functions.php:3355
1542
- #: includes/functions.php:5076
1543
  msgid "per"
1544
  msgstr "na"
1545
 
1546
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1547
- #: includes/functions.php:3245 includes/functions.php:3274
1548
  msgid "Time period in days. Empty means no time limit."
1549
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1550
 
@@ -1556,10 +1557,10 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1556
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1557
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1558
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1559
- #: includes/functions.php:3247 includes/functions.php:3276
1560
- #: includes/functions.php:3331 includes/functions.php:3358
1561
- #: includes/functions.php:3490 includes/functions.php:5079
1562
- #: includes/functions.php:5089 strings.php:220 strings.php:221 strings.php:222
1563
  #: strings.php:223 strings.php:224 strings.php:225
1564
  msgid "day"
1565
  msgid_plural "days"
@@ -1568,7 +1569,7 @@ msgstr[1] "dni"
1568
  msgstr[2] "dni"
1569
  msgstr[3] "dni"
1570
 
1571
- #: includes/functions-check-now.php:2627 includes/functions.php:3257
1572
  msgid ""
1573
  "Maximum number of clicks on this block. Empty means no general click limit."
1574
  msgstr ""
@@ -1581,10 +1582,10 @@ msgstr ""
1581
  #. Translators: Max n clicks per x days
1582
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1583
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1584
- #: includes/functions-check-now.php:4578 includes/functions.php:3259
1585
- #: includes/functions.php:3269 includes/functions.php:3342
1586
- #: includes/functions.php:3351 includes/functions.php:5076
1587
- #: includes/functions.php:7008
1588
  msgid "click"
1589
  msgid_plural "clicks"
1590
  msgstr[0] "klik"
@@ -1592,18 +1593,18 @@ msgstr[1] "klika"
1592
  msgstr[2] "kliki"
1593
  msgstr[3] "klikov"
1594
 
1595
- #: includes/functions-check-now.php:2637 includes/functions.php:3267
1596
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1597
  msgstr ""
1598
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1599
  "omejitev."
1600
 
1601
- #: includes/functions-check-now.php:2662 includes/functions.php:3292
1602
  msgid "Individual visitor limits"
1603
  msgstr "Omejitve posameznih obiskovalcev"
1604
 
1605
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1606
- #: includes/functions.php:3296 includes/functions.php:3298
1607
  msgid ""
1608
  "When specified number of clicks on this block for a visitor will be reached "
1609
  "in the specified time period, all blocks that have click fraud protection "
@@ -1615,11 +1616,11 @@ msgstr ""
1615
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1616
  "pred goljufijo s kliki."
1617
 
1618
- #: includes/functions-check-now.php:2668 includes/functions.php:3298
1619
  msgid "Trigger click fraud protection"
1620
  msgstr "Sproži zaščito pred goljufijo s kliki"
1621
 
1622
- #: includes/functions-check-now.php:2683 includes/functions.php:3313
1623
  msgid ""
1624
  "Maximum number of impressions of this block for each visitor. Empty means no "
1625
  "impression limit."
@@ -1627,7 +1628,7 @@ msgstr ""
1627
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1628
  "pomeni brez omejitev prikazov."
1629
 
1630
- #: includes/functions-check-now.php:2692 includes/functions.php:3322
1631
  msgid ""
1632
  "Maximum number of impressions per time period for each visitor. Empty means "
1633
  "no impression limit per time period for visitors."
@@ -1636,8 +1637,8 @@ msgstr ""
1636
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1637
 
1638
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1639
- #: includes/functions.php:3329 includes/functions.php:3356
1640
- #: includes/functions.php:5079
1641
  msgid ""
1642
  "Time period in days. Use decimal value (with decimal point) for shorter "
1643
  "periods. Empty means no time limit."
@@ -1645,7 +1646,7 @@ msgstr ""
1645
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1646
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1647
 
1648
- #: includes/functions-check-now.php:2710 includes/functions.php:3340
1649
  msgid ""
1650
  "Maximum number of clicks on this block for each visitor. Empty means no "
1651
  "click limit."
@@ -1653,8 +1654,8 @@ msgstr ""
1653
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1654
  "brez omejitev klikov."
1655
 
1656
- #: includes/functions-check-now.php:2719 includes/functions.php:3349
1657
- #: includes/functions.php:5076
1658
  msgid ""
1659
  "Maximum number of clicks per time period for each visitor. Empty means no "
1660
  "click limit per time period for visitors."
@@ -1662,33 +1663,33 @@ msgstr ""
1662
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1663
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1664
 
1665
- #: includes/functions-check-now.php:2745 includes/functions.php:3399
1666
  msgid "When ad blocking is detected"
1667
  msgstr "Ko je blokiranje oglasov zaznano"
1668
 
1669
- #: includes/functions-check-now.php:2754 includes/functions.php:3408
1670
  msgid "replacement"
1671
  msgstr "nadomestek"
1672
 
1673
- #: includes/functions-check-now.php:2755 includes/functions.php:3409
1674
  msgid "Block to be shown when ad blocking is detected"
1675
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1676
 
1677
- #: includes/functions-check-now.php:2756 includes/functions.php:3410
1678
  msgctxt "replacement"
1679
  msgid "None"
1680
  msgstr "Noben"
1681
 
1682
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1683
- #: includes/functions.php:3427 includes/functions.php:8439
1684
  msgid "Close button"
1685
  msgstr "Gumb Zapri"
1686
 
1687
- #: includes/functions-check-now.php:2825 includes/functions.php:3481
1688
  msgid "Auto close after"
1689
  msgstr "Ssamodejno zapri po"
1690
 
1691
- #: includes/functions-check-now.php:2826 includes/functions.php:3482
1692
  msgid ""
1693
  "Time in seconds in which the ad will automatically close. Leave empty to "
1694
  "disable auto closing."
@@ -1697,11 +1698,11 @@ msgstr ""
1697
  "izključitev samodejnega zapiranja."
1698
 
1699
  #. Translators: Don't show for x days
1700
- #: includes/functions-check-now.php:2831 includes/functions.php:3487
1701
  msgid "Don't show for"
1702
  msgstr "Ne prikaži"
1703
 
1704
- #: includes/functions-check-now.php:2832 includes/functions.php:3488
1705
  msgid ""
1706
  "Time in days in which closed ad will not be shown again. Use decimal value "
1707
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1712,12 +1713,12 @@ msgstr ""
1712
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1713
 
1714
  #. Translators: Delay showing for x pageviews
1715
- #: includes/functions-check-now.php:2852 includes/functions.php:3510
1716
- #: includes/functions.php:3516
1717
  msgid "Delay showing for"
1718
  msgstr "Zakasni prikaz za"
1719
 
1720
- #: includes/functions-check-now.php:2853 includes/functions.php:3517
1721
  msgid ""
1722
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1723
  "empty to insert the code for the first pageview."
@@ -1728,7 +1729,7 @@ msgstr ""
1728
  #. Translators: Delay showing for x pageviews
1729
  #. Translators: Show every x pageviews
1730
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1731
- #: includes/functions.php:3519 includes/functions.php:3526
1732
  msgid "pageview"
1733
  msgid_plural "pageviews"
1734
  msgstr[0] "ogled strani"
@@ -1737,7 +1738,7 @@ msgstr[2] "oglede strani"
1737
  msgstr[3] "ogledov strani"
1738
 
1739
  #. Translators: Show every x pageviews
1740
- #: includes/functions-check-now.php:2859 includes/functions.php:3523
1741
  msgid "Show every"
1742
  msgid_plural "Show every"
1743
  msgstr[0] "Prikaži vsak"
@@ -1745,7 +1746,7 @@ msgstr[1] "Prikaži vsaka"
1745
  msgstr[2] "Prikaži vsake"
1746
  msgstr[3] "Prikaži vsakih"
1747
 
1748
- #: includes/functions-check-now.php:2860 includes/functions.php:3524
1749
  msgid ""
1750
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1751
  "for every pageview."
@@ -1753,29 +1754,29 @@ msgstr ""
1753
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1754
  "vstavljanje kode pri vsakem ogledu strani."
1755
 
1756
- #: includes/functions-check-now.php:2879 includes/functions.php:3549
1757
- #: settings.php:919
1758
  msgid "Lazy loading"
1759
  msgstr "Leno nalaganje"
1760
 
1761
  #. Translators: %s MaxMind
1762
- #: includes/functions-check-now.php:2936 includes/functions.php:4730
1763
  msgid "This product includes GeoLite2 data created by %s"
1764
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1765
 
1766
- #: includes/functions-check-now.php:2947 includes/functions.php:4743
1767
  msgid "IP geolocation database"
1768
  msgstr "Podatkovna baza za IP geolokacijo"
1769
 
1770
- #: includes/functions-check-now.php:2950 includes/functions.php:4746
1771
  msgid "Select IP geolocation database."
1772
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1773
 
1774
- #: includes/functions-check-now.php:2961 includes/functions.php:4757
1775
  msgid "Automatic database updates"
1776
  msgstr "Samodejna posodobitev podatkovne baze"
1777
 
1778
- #: includes/functions-check-now.php:2964 includes/functions.php:4760
1779
  msgid ""
1780
  "Automatically download and update free GeoLite2 IP geolocation database by "
1781
  "MaxMind"
@@ -1783,11 +1784,11 @@ msgstr ""
1783
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1784
  "podatkovno bazo MaxMind"
1785
 
1786
- #: includes/functions-check-now.php:2972 includes/functions.php:4777
1787
  msgid "Database"
1788
  msgstr "Podatkovna baza"
1789
 
1790
- #: includes/functions-check-now.php:2975 includes/functions.php:4780
1791
  msgid ""
1792
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1793
  msgstr ""
@@ -1795,15 +1796,15 @@ msgstr ""
1795
  "podatkovne baze"
1796
 
1797
  #. translators: %d: group number
1798
- #: includes/functions-check-now.php:2993 includes/functions.php:4798
1799
  msgid "Group %d"
1800
  msgstr "Skupina %d"
1801
 
1802
- #: includes/functions-check-now.php:2999 includes/functions.php:4804
1803
  msgid "countries"
1804
  msgstr "države"
1805
 
1806
- #: includes/functions-check-now.php:3044 includes/functions.php:4849
1807
  msgid ""
1808
  "Enable impression and click tracking. You also need to enable tracking for "
1809
  "each block you want to track."
@@ -1815,29 +1816,29 @@ msgstr ""
1815
  msgid "Generate report"
1816
  msgstr "Generiraj poročilo"
1817
 
1818
- #: includes/functions-check-now.php:3059 includes/functions.php:4868
1819
  msgid "Impression and Click Tracking"
1820
  msgstr "Sledenje Prikazov in Klikov"
1821
 
1822
- #: includes/functions-check-now.php:3060 includes/functions.php:4869
1823
- #: settings.php:2933
1824
  msgctxt "ad blocking detection"
1825
  msgid "NOT ENABLED"
1826
  msgstr "NI OMOGOČENO"
1827
 
1828
- #: includes/functions-check-now.php:3076 includes/functions.php:4885
1829
  msgid "Internal"
1830
  msgstr "Notranje"
1831
 
1832
- #: includes/functions-check-now.php:3080 includes/functions.php:4889
1833
  msgid "Track impressions and clicks with internal tracking and statistics"
1834
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1835
 
1836
- #: includes/functions-check-now.php:3085 includes/functions.php:4894
1837
  msgid "External"
1838
  msgstr "Zunanje"
1839
 
1840
- #: includes/functions-check-now.php:3089 includes/functions.php:4898
1841
  msgid ""
1842
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1843
  "code installed)"
@@ -1845,27 +1846,27 @@ msgstr ""
1845
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1846
  "kodo za sledenje)"
1847
 
1848
- #: includes/functions-check-now.php:3094 includes/functions.php:4903
1849
  msgid "Track Pageviews"
1850
  msgstr "Sledi Ogledom Strani"
1851
 
1852
- #: includes/functions-check-now.php:3100 includes/functions.php:4909
1853
  msgid "Track Pageviews by Device (as configured for viewports)"
1854
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1855
 
1856
- #: includes/functions-check-now.php:3110 includes/functions.php:4919
1857
  msgid "Track for Logged in Users"
1858
  msgstr "Sledi za Prijavljene Upor."
1859
 
1860
- #: includes/functions-check-now.php:3116 includes/functions.php:4925
1861
  msgid "Track impressions and clicks from logged in users"
1862
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1863
 
1864
- #: includes/functions-check-now.php:3126 includes/functions.php:4935
1865
  msgid "Click Detection"
1866
  msgstr "Zaznavanje klikov"
1867
 
1868
- #: includes/functions-check-now.php:3132 includes/functions.php:4941
1869
  msgid ""
1870
  "Standard method detects clicks only on banners with links, Advanced method "
1871
  "can detect clicks on any kind of ads, but it is slightly less accurate"
@@ -1873,19 +1874,19 @@ msgstr ""
1873
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1874
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1875
 
1876
- #: includes/functions-check-now.php:3151 includes/functions.php:5062
1877
  msgid "Click fraud protection"
1878
  msgstr "Zaščita pred goljufijo s kliki"
1879
 
1880
- #: includes/functions-check-now.php:3155 includes/functions.php:5066
1881
  msgid "Globally enable click fraud protection for selected blocks."
1882
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1883
 
1884
- #: includes/functions-check-now.php:3161 includes/functions.php:5086
1885
  msgid "Protection time"
1886
  msgstr "Čas zaščite"
1887
 
1888
- #: includes/functions-check-now.php:3162 includes/functions.php:5089
1889
  msgid ""
1890
  "Time period in days in which blocks with enabled click fraud protection will "
1891
  "be hidden. Use decimal value (with decimal point) for shorter periods."
@@ -1894,7 +1895,7 @@ msgstr ""
1894
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1895
  "za krajša obdobja."
1896
 
1897
- #: includes/functions-check-now.php:3181 includes/functions.php:4969
1898
  msgid "Report header image"
1899
  msgstr "Slika v glavi poročila"
1900
 
@@ -1908,16 +1909,16 @@ msgstr ""
1908
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1909
  "ponastavitev na privzeto sliko."
1910
 
1911
- #: includes/functions-check-now.php:3185 includes/functions.php:4973
1912
  #: strings.php:256
1913
  msgid "Select or upload header image"
1914
  msgstr "Izberi ali naloži sliko glave"
1915
 
1916
- #: includes/functions-check-now.php:3190 includes/functions.php:4978
1917
  msgid "Report header title"
1918
  msgstr "Naslov v glavi poročila"
1919
 
1920
- #: includes/functions-check-now.php:3193 includes/functions.php:4981
1921
  msgid ""
1922
  "Title to be displayed in the header of the statistics report. Text or HTML "
1923
  "code, clear to reset to default text."
@@ -1925,11 +1926,11 @@ msgstr ""
1925
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1926
  "pobrišite za ponastavitev na privzeto besedilo."
1927
 
1928
- #: includes/functions-check-now.php:3198 includes/functions.php:4986
1929
  msgid "Report header description"
1930
  msgstr "Opis v glavi poročila"
1931
 
1932
- #: includes/functions-check-now.php:3201 includes/functions.php:4989
1933
  msgid ""
1934
  "Description to be displayed in the header of the statistics report. Text or "
1935
  "HTML code, clear to reset to default text."
@@ -1937,11 +1938,11 @@ msgstr ""
1937
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1938
  "pobrišite za ponastavitev na privzeto besedilo."
1939
 
1940
- #: includes/functions-check-now.php:3206 includes/functions.php:4994
1941
  msgid "Report footer"
1942
  msgstr "Noga poročila"
1943
 
1944
- #: includes/functions-check-now.php:3209 includes/functions.php:4997
1945
  msgid ""
1946
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1947
  "to default text."
@@ -1949,118 +1950,118 @@ msgstr ""
1949
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1950
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1951
 
1952
- #: includes/functions-check-now.php:3214 includes/functions.php:5002
1953
  msgid "Public report key"
1954
  msgstr "Ključ za javno poročilo"
1955
 
1956
- #: includes/functions-check-now.php:3217 includes/functions.php:5005
1957
  msgid "String to generate unique report IDs. Clear to reset to default value."
1958
  msgstr ""
1959
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1960
  "privzeto vrednost."
1961
 
1962
- #: includes/functions-check-now.php:3249 includes/functions.php:5146
1963
  msgid "Are you sure you want to clear all exceptions for block"
1964
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1965
 
1966
- #: includes/functions-check-now.php:3250 includes/functions.php:5147
1967
  msgid "Clear all exceptions for block"
1968
  msgstr "Pobriši vse izjeme za blok"
1969
 
1970
- #: includes/functions-check-now.php:3257 includes/functions.php:5160
1971
  msgid "Are you sure you want to clear all exceptions?"
1972
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1973
 
1974
- #: includes/functions-check-now.php:3257 includes/functions.php:5160
1975
  msgid "Clear all exceptions for all blocks"
1976
  msgstr "Pobriši vse izjeme za vse bloke"
1977
 
1978
- #: includes/functions-check-now.php:3262 includes/functions.php:5167
1979
- #: settings.php:4113 settings.php:4618
1980
  msgid "Type"
1981
  msgstr "Vrsta"
1982
 
1983
- #: includes/functions-check-now.php:3280 includes/functions.php:5186
1984
- #: includes/functions.php:5187
1985
  msgid "View"
1986
  msgstr "Poglej"
1987
 
1988
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1989
- #: includes/functions-check-now.php:3292 includes/functions.php:5188
1990
- #: includes/functions.php:5202 includes/functions.php:5206
1991
- #: includes/placeholders.php:351 includes/preview.php:2799 settings.php:1433
1992
- #: settings.php:3868
1993
  msgid "Edit"
1994
  msgstr "Uredi"
1995
 
1996
- #: includes/functions-check-now.php:3311 includes/functions.php:5234
1997
  msgid "Are you sure you want to clear all exceptions for"
1998
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1999
 
2000
- #: includes/functions-check-now.php:3312 includes/functions.php:5235
2001
  msgid "Clear all exceptions for"
2002
  msgstr "Pobriši vse izjeme za"
2003
 
2004
- #: includes/functions-check-now.php:3325 includes/functions.php:5251
2005
  msgid "No exceptions"
2006
  msgstr "Brez izjem"
2007
 
2008
  #. translators: %s: Ad Inserter Pro
2009
- #: includes/functions-check-now.php:3336 includes/functions.php:5262
2010
  msgid "%s options for network blogs"
2011
  msgstr "%s izbire za omrežne bloge"
2012
 
2013
  #. translators: %s: Ad Inserter Pro
2014
- #: includes/functions-check-now.php:3341 includes/functions.php:5267
2015
  msgid "Enable %s widgets for sub-sites"
2016
  msgstr "Omogoči %s gradnik za pod-spletišča"
2017
 
2018
- #: includes/functions-check-now.php:3341 includes/functions.php:5267
2019
  msgid "Widgets"
2020
  msgstr "Gradniki"
2021
 
2022
- #: includes/functions-check-now.php:3346 includes/functions.php:5272
2023
  msgid "Enable PHP code processing for sub-sites"
2024
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
2025
 
2026
- #: includes/functions-check-now.php:3346 includes/functions.php:5272
2027
  msgid "PHP Processing"
2028
  msgstr "PHP Procesiranje"
2029
 
2030
  #. translators: %s: Ad Inserter Pro
2031
- #: includes/functions-check-now.php:3351 includes/functions.php:5277
2032
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2033
  msgstr ""
2034
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2035
 
2036
- #: includes/functions-check-now.php:3351 includes/functions.php:5277
2037
  msgid "Post/Page exceptions"
2038
  msgstr "Izjeme prispevkov/strani"
2039
 
2040
  #. translators: %s: Ad Inserter Pro
2041
- #: includes/functions-check-now.php:3356 includes/functions.php:5282
2042
  msgid "Enable %s settings page for sub-sites"
2043
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2044
 
2045
- #: includes/functions-check-now.php:3356 includes/functions.php:5282
2046
  msgid "Settings page"
2047
  msgstr "Stran z nastavitvami"
2048
 
2049
  #. translators: %s: Ad Inserter Pro
2050
- #: includes/functions-check-now.php:3361 includes/functions.php:5287
2051
  msgid "Enable %s settings of main site to be used for all blogs"
2052
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2053
 
2054
- #: includes/functions-check-now.php:3361 includes/functions.php:5287
2055
  msgid "Main site settings used for all blogs"
2056
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2057
 
2058
- #: includes/functions-check-now.php:3372 includes/functions.php:5305
2059
- #: settings.php:2932
2060
  msgid "Ad Blocking Detection"
2061
  msgstr "Zaznavanje Blokiranja Oglasov"
2062
 
2063
- #: includes/functions-check-now.php:3378 includes/functions.php:5311
2064
  msgid ""
2065
  "Standard method is reliable but should be used only if Advanced method does "
2066
  "not work. Advanced method recreates files used for detection with random "
@@ -2073,78 +2074,82 @@ msgstr ""
2073
  "dostopna"
2074
 
2075
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
2076
- #: includes/functions-check-now.php:4140 includes/functions.php:6299
2077
- #: includes/functions.php:6407 includes/functions.php:6432
2078
  msgid "AD BLOCKING"
2079
  msgstr "BLOKIRANJE OGLASOV"
2080
 
2081
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
2082
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
2083
- #: includes/functions.php:6300 includes/functions.php:6343
2084
- #: includes/functions.php:6401 includes/functions.php:6433
2085
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2086
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2087
 
2088
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
2089
- #: includes/functions-check-now.php:4147 includes/functions.php:6303
2090
- #: includes/functions.php:6400 includes/functions.php:6439
2091
  msgid "NO AD BLOCKING"
2092
  msgstr "NI BLOKIRANJA OGLASOV"
2093
 
2094
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
2095
- #: includes/functions.php:6342 includes/functions.php:6349
2096
  msgid "AD BLOCKING REPLACEMENT"
2097
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2098
 
2099
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
2100
- #: includes/functions.php:6521 includes/functions.php:6732
2101
  msgid "Pageviews"
2102
  msgstr "Ogledi strani"
2103
 
2104
- #: includes/functions-check-now.php:4366 includes/functions.php:6667
 
2105
  msgctxt "Version"
2106
  msgid "Unknown"
2107
  msgstr "Neznana"
2108
 
2109
- #: includes/functions-check-now.php:4366 includes/functions.php:6667
 
2110
  msgctxt "Times"
2111
  msgid "DISPLAYED"
2112
  msgstr "PRIKAZANO"
2113
 
2114
- #: includes/functions-check-now.php:4366 includes/functions.php:6667
 
2115
  msgid "No version"
2116
  msgstr "Brez različice"
2117
 
2118
- #: includes/functions-check-now.php:4367 includes/functions.php:6668
 
2119
  msgctxt "Times"
2120
  msgid "BLOCKED"
2121
  msgstr "BLOKIRANO"
2122
 
2123
- #: includes/functions-check-now.php:4429 includes/functions.php:6732
2124
  msgid "Impressions"
2125
  msgstr "Prikazi"
2126
 
2127
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
2128
- #: includes/functions-check-now.php:4486 includes/functions.php:6733
2129
- #: includes/functions.php:6734 includes/functions.php:6916
2130
  msgid "Clicks"
2131
  msgstr "Kliki"
2132
 
2133
- #: includes/functions-check-now.php:4431 includes/functions.php:6734
2134
  msgid "events"
2135
  msgstr "dogodki"
2136
 
2137
- #: includes/functions-check-now.php:4432 includes/functions.php:6735
2138
  msgid "Ad Blocking Share"
2139
  msgstr "Delež blokiranja oglasov"
2140
 
2141
  #. translators: CTR as Click Through Rate
2142
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
2143
- #: includes/functions.php:6735 includes/functions.php:6922
2144
  msgid "CTR"
2145
  msgstr "CTR"
2146
 
2147
- #: includes/functions-check-now.php:4574 includes/functions.php:7004
2148
  msgid "pageviews"
2149
  msgid_plural "pageviews"
2150
  msgstr[0] "ogled strani"
@@ -2152,7 +2157,7 @@ msgstr[1] "ogleda strani"
2152
  msgstr[2] "oglede strani"
2153
  msgstr[3] "ogledov strani"
2154
 
2155
- #: includes/functions-check-now.php:4574 includes/functions.php:7004
2156
  msgid "impressions"
2157
  msgid_plural "impressions"
2158
  msgstr[0] "prikaz"
@@ -2160,7 +2165,7 @@ msgstr[1] "prikaza"
2160
  msgstr[2] "prikazi"
2161
  msgstr[3] "prikazov"
2162
 
2163
- #: includes/functions-check-now.php:4578 includes/functions.php:7008
2164
  msgid "event"
2165
  msgid_plural "events"
2166
  msgstr[0] "dogodek"
@@ -2168,86 +2173,103 @@ msgstr[1] "dogodka"
2168
  msgstr[2] "dogodki"
2169
  msgstr[3] "dogodkov"
2170
 
2171
- #: includes/functions-check-now.php:4673 includes/functions.php:7103
2172
  msgctxt "Pageviews / Impressions"
2173
  msgid "Average"
2174
  msgstr "Povprečni"
2175
 
2176
- #: includes/functions-check-now.php:4694 includes/functions.php:7124
2177
  msgctxt "Ad Blocking / Clicks"
2178
  msgid "Average"
2179
  msgstr "Povprečno"
2180
 
2181
- #: includes/functions-check-now.php:4718 includes/functions.php:7148
2182
  msgctxt "Ad Blocking Share / CTR"
2183
  msgid "Average"
2184
  msgstr "Povprečni"
2185
 
2186
  #. Translators: %s: Ad Inserter Pro
2187
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
2188
- #: includes/functions-check-now.php:5335 includes/functions.php:7446
2189
- #: includes/functions.php:7543 includes/functions.php:8140 strings.php:205
2190
  msgid "%s Report"
2191
  msgstr "%s Poročilo"
2192
 
2193
- #: includes/functions-check-now.php:5241 includes/functions.php:8045
2194
  msgid "for last month"
2195
  msgstr "za zadnji mesec"
2196
 
2197
- #: includes/functions-check-now.php:5246 includes/functions.php:8050
2198
  msgid "for this month"
2199
  msgstr "za ta mesec"
2200
 
2201
- #: includes/functions-check-now.php:5251 includes/functions.php:8055
2202
  msgid "for this year"
2203
  msgstr "za to leto"
2204
 
2205
- #: includes/functions-check-now.php:5256 includes/functions.php:8060
2206
  msgid "for the last 15 days"
2207
  msgstr "za zadnjih 15 dni"
2208
 
2209
- #: includes/functions-check-now.php:5261 includes/functions.php:8065
2210
  msgid "for the last 30 days"
2211
  msgstr "za zadnjih 30 dni"
2212
 
2213
- #: includes/functions-check-now.php:5266 includes/functions.php:8070
2214
  msgid "for the last 90 days"
2215
  msgstr "za zadnjih 90 dni"
2216
 
2217
- #: includes/functions-check-now.php:5271 includes/functions.php:8075
2218
  msgid "for the last 180 days"
2219
  msgstr "za zadnjih 180 dni"
2220
 
2221
- #: includes/functions-check-now.php:5276 includes/functions.php:8080
2222
  msgid "for the last 365 days"
2223
  msgstr "za zadnjih 365 dni"
2224
 
2225
- #: includes/functions.php:435
2226
  msgid "Import plugin settings"
2227
  msgstr "Uvozite nastavitve vtičnika"
2228
 
2229
- #: includes/functions.php:443
2230
  msgid "Load settings from a file"
2231
  msgstr "Naložite nastavitve iz datoteke"
2232
 
2233
- #: includes/functions.php:446
2234
  msgid "Save settings to a file"
2235
  msgstr "Shranite nastavitve v datoteko"
2236
 
2237
- #: includes/functions.php:555 includes/functions.php:4856
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2238
  msgid "Generate CSV report"
2239
  msgstr "Generiraj CSV poročilo"
2240
 
2241
  #. translators: %s: Ad Inserter Pro
2242
- #: includes/functions.php:628
2243
  msgid "Invalid %s version. Continue?"
2244
  msgstr "Neveljavna izdaja %s. Nadaljujem?"
2245
 
2246
- #: includes/functions.php:800
2247
  msgid "Show"
2248
  msgstr "Pokaži"
2249
 
2250
- #: includes/functions.php:812 includes/functions.php:839
2251
  msgid ""
2252
  "Trigger value: page scroll in %, page scroll in px or element with selector "
2253
  "(#id or .class) scrolls in or out of screen"
@@ -2255,56 +2277,56 @@ msgstr ""
2255
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
2256
  "selektorjem (#id ali .razred) se pomakne izven zaslona"
2257
 
2258
- #: includes/functions.php:826
2259
  msgid "Hide"
2260
  msgstr "Skrij"
2261
 
2262
- #: includes/functions.php:857 includes/preview.php:2729
2263
  msgid "Background"
2264
  msgstr "Ozadje"
2265
 
2266
  #. translators: %s HTML body tag
2267
- #: includes/functions.php:864
2268
  msgid "Set %s background"
2269
  msgstr "Nastavi ozadje za %s"
2270
 
2271
- #: includes/functions.php:877 includes/functions.php:936
2272
  msgid "Image to be used for the background"
2273
  msgstr "Slika, ki bo uporabljena za ozadje"
2274
 
2275
- #: includes/functions.php:882
2276
  msgid "Color"
2277
  msgstr "Barva"
2278
 
2279
- #: includes/functions.php:883 includes/preview.php:2548
2280
  msgid "Color to be used for the background"
2281
  msgstr "Barva, ki bo uporabljena za ozadje"
2282
 
2283
- #: includes/functions.php:886 includes/preview.php:2553
2284
  msgid "Image size"
2285
  msgstr "Velikost slike"
2286
 
2287
- #: includes/functions.php:896
2288
  msgid "Repeat"
2289
  msgstr "Ponavljanje"
2290
 
2291
- #: includes/functions.php:909
2292
  msgid "Select image"
2293
  msgstr "Izberi sliko"
2294
 
2295
- #: includes/functions.php:936
2296
  msgid "Parallax background"
2297
  msgstr "Ozadje za paralakso"
2298
 
2299
- #: includes/functions.php:939
2300
  msgid "Select background image"
2301
  msgstr "Izberi sliko ozadja"
2302
 
2303
- #: includes/functions.php:943
2304
  msgid "Shift"
2305
  msgstr "Pomik"
2306
 
2307
- #: includes/functions.php:944
2308
  msgid ""
2309
  "Background image shift in pixels when the block scrolls from top to bottom, "
2310
  "empty means no shift"
@@ -2312,48 +2334,48 @@ msgstr ""
2312
  "Pomik slike ozadja v točkah, ko se blok pomakne od vrha k dnu, prazno pomeni "
2313
  "brez pomika"
2314
 
2315
- #: includes/functions.php:952 settings.php:925
2316
  msgid "Link"
2317
  msgstr "Povezava"
2318
 
2319
- #: includes/functions.php:952
2320
  msgid "The destination page when the background is clicked"
2321
  msgstr "Ciljna stran pri kliku na ozadje"
2322
 
2323
- #: includes/functions.php:954 settings.php:936
2324
  msgid "Open link in a new tab"
2325
  msgstr "Odpri povezavo v novem zavihku"
2326
 
2327
- #: includes/functions.php:957
2328
  msgid "New tab"
2329
  msgstr "Nov zavihek"
2330
 
2331
- #: includes/functions.php:1188 includes/functions.php:1216 settings.php:1820
2332
- #: settings.php:1843 settings.php:1866 settings.php:1889 settings.php:1912
2333
- #: settings.php:1935 settings.php:1958 settings.php:1980 settings.php:2002
2334
  msgid "Click to select black or white list"
2335
  msgstr "Klikni za za izbor črnega ali belega seznama"
2336
 
2337
  #. translators: %s: Ad Inserter Pro
2338
- #: includes/functions.php:1850
2339
  msgid "Invalid %s version."
2340
  msgstr "Neveljavna izdaja %s."
2341
 
2342
- #: includes/functions.php:1851
2343
  msgid "Check license"
2344
  msgstr "Preverite licenco"
2345
 
2346
- #: includes/functions.php:1866
2347
  msgid "License"
2348
  msgstr "Licenca"
2349
 
2350
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2351
- #: includes/functions.php:2211
2352
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2353
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2354
 
2355
  #. Translators: %s: HTML tags
2356
- #: includes/functions.php:2264
2357
  msgid ""
2358
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2359
  "account %s and create license key."
@@ -2361,51 +2383,51 @@ msgstr ""
2361
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2362
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2363
 
2364
- #: includes/functions.php:3026
2365
  msgid "Start date"
2366
  msgstr "Začetni datum"
2367
 
2368
- #: includes/functions.php:3026
2369
  msgid "Enter date in format yyyy-mm-dd"
2370
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2371
 
2372
- #: includes/functions.php:3026
2373
  msgid "empty means every day as defined by hours and days in week"
2374
  msgstr "prazno pomeni vsak dan kot določeno z urami in dnevi v tednu"
2375
 
2376
- #: includes/functions.php:3027
2377
  msgid "Start time"
2378
  msgstr "Začetni čas"
2379
 
2380
- #: includes/functions.php:3027
2381
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2382
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2383
 
2384
- #: includes/functions.php:3029
2385
  msgid "End date"
2386
  msgstr "Končni datum"
2387
 
2388
- #: includes/functions.php:3030
2389
  msgid "End time"
2390
  msgstr "Končni čas"
2391
 
2392
- #: includes/functions.php:3033
2393
  msgid "Select wanted days in week"
2394
  msgstr "Izberite želene dneve v tednu"
2395
 
2396
- #: includes/functions.php:3373
2397
  msgid "Fallback"
2398
  msgstr "Rezerva"
2399
 
2400
- #: includes/functions.php:3374
2401
  msgid "Block to be used when a limit is reached"
2402
  msgstr "Blok, ki naj bo prikazan, ko je dosežena meja"
2403
 
2404
- #: includes/functions.php:3398
2405
  msgid "Ad blocking detection is disabled"
2406
  msgstr "Zaznavanje blokiranja oglasov je onemogočeno"
2407
 
2408
- #: includes/functions.php:3511
2409
  msgid ""
2410
  "Time in ms before the code is inserted (and ad displayed). Leave empty to "
2411
  "insert the code without any additional delay."
@@ -2413,19 +2435,23 @@ msgstr ""
2413
  "Čas v ms preden je koda vstavljena (in oglas prikazan). Pustite prazno za "
2414
  "vstavljanje kode brez dodatne zakasnitve."
2415
 
2416
- #: includes/functions.php:3554
 
 
 
 
2417
  msgid "Wait for user interaction"
2418
  msgstr "Čakaj na interakcijo uporabnika"
2419
 
2420
- #: includes/functions.php:3559
2421
- msgid "Protected"
2422
- msgstr "Zaščiten"
2423
-
2424
- #: includes/functions.php:3562
2425
  msgid "Manual loading"
2426
  msgstr "Ročno nalaganje"
2427
 
2428
- #: includes/functions.php:3656
 
 
 
 
2429
  msgid "IP address blocked"
2430
  msgid_plural "IP addresses blocked"
2431
  msgstr[0] "blokiran IP naslov"
@@ -2433,148 +2459,152 @@ msgstr[1] "blokirana IP naslova"
2433
  msgstr[2] "blokirani IP naslovi"
2434
  msgstr[3] "blokiranih IP naslovov"
2435
 
2436
- #: includes/functions.php:3659 includes/functions.php:3708
2437
  msgid "No IP address blocked"
2438
  msgstr "Noben IP naslov ni blokiran"
2439
 
2440
- #: includes/functions.php:3721
2441
  msgid "Blocked IP address"
2442
  msgstr "Blokirani IP naslovi"
2443
 
2444
- #: includes/functions.php:3721
2445
  msgid "Country"
2446
  msgstr "Država"
2447
 
2448
- #: includes/functions.php:3721
2449
  msgid "Time to expiration"
2450
  msgstr "Čas do poteka"
2451
 
2452
- #: includes/functions.php:3723 strings.php:227
2453
  msgid "Delete"
2454
  msgstr "Pobriši"
2455
 
2456
- #: includes/functions.php:3738
2457
  msgid "Delete IP address"
2458
  msgstr "Briši IP naslov"
2459
 
2460
- #: includes/functions.php:4295
 
 
 
 
2461
  msgid "CONNECTED"
2462
  msgstr "POVEZAN"
2463
 
2464
- #: includes/functions.php:4296
2465
  msgid "Disconnect website"
2466
  msgstr "Razveži spletno mesto"
2467
 
2468
- #: includes/functions.php:4312
2469
  msgid "MANAGED BY"
2470
  msgstr "UPRAVLJAN S STRANI"
2471
 
2472
- #: includes/functions.php:4333
2473
  msgid "Remote management"
2474
  msgstr "Oddaljeno upravljanje"
2475
 
2476
- #: includes/functions.php:4337
2477
  msgid "Allow to connect and manage plugin settings"
2478
  msgstr "Dovoli povezavo in upravljanje z nastavitvami vtičnika"
2479
 
2480
- #: includes/functions.php:4339
2481
  msgid "String to allow plugin management. Clear to reset to default value."
2482
  msgstr ""
2483
  "Niz za dovolitev upravjanja z vtičnikom. Pobrišite za ponastavitev na "
2484
  "privzeto vrednost."
2485
 
2486
- #: includes/functions.php:4347
2487
  msgid "Check remote IP address"
2488
  msgstr "Preveri oddaljeni IP naslov"
2489
 
2490
- #: includes/functions.php:4351
2491
  msgid "Check IP address of remote management website"
2492
  msgstr "Preveri IP naslov oddaljenega spletnega mesta za upravljanje"
2493
 
2494
- #: includes/functions.php:4353
2495
  msgid "Allowed IP addresses of remote management websites"
2496
  msgstr "Dovoljeni IP naslovi oddaljenih spletnih mest za upravljanje"
2497
 
2498
  #. Translators: %s: Ad Inserter Pro
2499
- #: includes/functions.php:4376
2500
  msgid "Manage %s on other websites"
2501
  msgstr "Upravljajte %s na drugih spletnih mestih"
2502
 
2503
- #: includes/functions.php:4391
2504
  msgid "Add website"
2505
  msgstr "Dodaj spletno mesto"
2506
 
2507
- #: includes/functions.php:4395
2508
  msgid "Rearrange website order"
2509
  msgstr "Preuredi vrstni red spletnih mest"
2510
 
2511
- #: includes/functions.php:4399
2512
  msgid "Cancel changes"
2513
  msgstr "Prekliči spremembe"
2514
 
2515
- #: includes/functions.php:4403
2516
  msgid "Save changes"
2517
  msgstr "Shrani spremembe"
2518
 
2519
- #: includes/functions.php:4505 includes/functions.php:4508
2520
- #: includes/functions.php:4511 includes/functions.php:4516
2521
  msgid "Invalid data received from"
2522
  msgstr "Prejeti neveljavni podatki od"
2523
 
2524
- #: includes/functions.php:4515 includes/functions.php:4519
2525
  msgid "Error connecting to"
2526
  msgstr "Napaka pri povezovanju na"
2527
 
2528
- #: includes/functions.php:4515
2529
  msgid "No data received"
2530
  msgstr "Nobenih podatkov ni bilo prejetih"
2531
 
2532
- #: includes/functions.php:4560
2533
  msgid "Error saving websites"
2534
  msgstr "Napaka pri shranjevanju spletnih mest"
2535
 
2536
- #: includes/functions.php:4600
2537
  msgid "Can't connect to itself"
2538
  msgstr "Ne morem se povezati nase"
2539
 
2540
- #: includes/functions.php:4651
2541
  msgid "Connect website"
2542
  msgstr "Pveži spletno mesto"
2543
 
2544
- #: includes/functions.php:4655
2545
  msgid "Delete website"
2546
  msgstr "Izbriši spletno mesto"
2547
 
2548
- #: includes/functions.php:4671
2549
  msgid "Key"
2550
  msgstr "Ključ"
2551
 
2552
- #: includes/functions.php:4689
2553
  msgid "Address"
2554
  msgstr "Naslov"
2555
 
2556
- #: includes/functions.php:4702
2557
  msgid "No website configured"
2558
  msgstr "Nobeno spletno mesto ni nastavljeno"
2559
 
2560
- #: includes/functions.php:4703
2561
  msgid "No website matches search keywords"
2562
  msgstr "Nobeno spletno mesto ne ustreza iskalnim ključnim besedam"
2563
 
2564
  #. Translators: %s HTML tags
2565
- #: includes/functions.php:4732
2566
  msgid "Create and manage %s MaxMind license key %s"
2567
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2568
 
2569
- #: includes/functions.php:4768
2570
  msgid "MaxMind license key"
2571
  msgstr "MaxMind licenčni ključ"
2572
 
2573
- #: includes/functions.php:4771
2574
  msgid "Enter license key obtained from MaxMind"
2575
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2576
 
2577
- #: includes/functions.php:4972
2578
  msgid ""
2579
  "Image or logo to be displayed in the header of the statistics report. "
2580
  "Absolute path starting with '/' or relative path to the image file. Clear to "
@@ -2584,11 +2614,11 @@ msgstr ""
2584
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
2585
  "ponastavitev na privzeto sliko."
2586
 
2587
- #: includes/functions.php:5020
2588
  msgid "Event category"
2589
  msgstr "Kategorija dogodka"
2590
 
2591
- #: includes/functions.php:5023
2592
  msgid ""
2593
  "Category name used for external tracking events. You can use tags to get the "
2594
  "event, the number or the name of the block that caused the event."
@@ -2596,11 +2626,11 @@ msgstr ""
2596
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2597
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2598
 
2599
- #: includes/functions.php:5028
2600
  msgid "Event action"
2601
  msgstr "Akcija dogodka"
2602
 
2603
- #: includes/functions.php:5031
2604
  msgid ""
2605
  "Action name used for external tracking events. You can use tags to get the "
2606
  "event, the number or the name of the block that caused the event."
@@ -2608,11 +2638,11 @@ msgstr ""
2608
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2609
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2610
 
2611
- #: includes/functions.php:5036
2612
  msgid "Event label"
2613
  msgstr "Oznaka dogodka"
2614
 
2615
- #: includes/functions.php:5039
2616
  msgid ""
2617
  "Label name used for external tracking events. You can use tags to get the "
2618
  "event, the number or the name of the block that caused the event."
@@ -2620,35 +2650,35 @@ msgstr ""
2620
  "Ime oznake uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2621
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2622
 
2623
- #: includes/functions.php:5072
2624
  msgid "Global visitor limits"
2625
  msgstr "Globalne omejitve obiskovalca"
2626
 
2627
- #: includes/functions.php:5095
2628
  msgid "Block IP address"
2629
  msgstr "Blokiraj IP naslov"
2630
 
2631
- #: includes/functions.php:5100
2632
  msgid "Block visitor's IP address when protection is activated"
2633
  msgstr "Blokiraj obiskovalčev IP naslov, ko je aktivirana zaščita"
2634
 
2635
- #: includes/functions.php:5102
2636
  msgid "Click to show blocked IP addresses"
2637
  msgstr "Kliknite za prikaz blokiranih IP naslovov"
2638
 
2639
  #. translators: %s: Ad Inserter Pro
2640
- #: includes/functions.php:5292
2641
  msgid "Show link to %s settings page for each site on the Sites page"
2642
  msgstr ""
2643
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2644
  "Spletišča"
2645
 
2646
  #. translators: %s: Ad Inserter Pro
2647
- #: includes/functions.php:5292
2648
  msgid "Show link to %s on the Sites page"
2649
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2650
 
2651
- #: includes/functions.php:5334 settings.php:3248
2652
  msgid ""
2653
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2654
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -2663,15 +2693,23 @@ msgstr ""
2663
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
2664
  "vedno omogočeno."
2665
 
2666
- #: includes/functions.php:5336 settings.php:3250
2667
  msgid "Remote debugging"
2668
  msgstr "Oddaljeno razhroščevanje"
2669
 
2670
- #: includes/functions.php:6815
 
 
 
 
 
 
 
 
2671
  msgid "Date"
2672
  msgstr "Datum"
2673
 
2674
- #: includes/functions.php:7304 includes/functions.php:7315
2675
  msgid "File %s missing."
2676
  msgstr "Datoteka %s ni najdena."
2677
 
@@ -2699,11 +2737,11 @@ msgstr "Zapri urejevalnik polnila"
2699
  msgid "Placeholder"
2700
  msgstr "Polnilo"
2701
 
2702
- #: includes/placeholders.php:361 settings.php:992 settings.php:4619
2703
  msgid "Size"
2704
  msgstr "Velikost"
2705
 
2706
- #: includes/placeholders.php:377 includes/preview.php:2545 settings.php:2324
2707
  msgid "Background color"
2708
  msgstr "Barva ozadja"
2709
 
@@ -2832,11 +2870,11 @@ msgstr "Prekliči"
2832
  msgid "Ad Blocking Detected Message Preview"
2833
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2834
 
2835
- #: includes/preview-adb.php:360 settings.php:3085
2836
  msgid "Message CSS"
2837
  msgstr "CSS sporočila"
2838
 
2839
- #: includes/preview-adb.php:365 settings.php:3093
2840
  msgid "Overlay CSS"
2841
  msgstr "CSS prevleke"
2842
 
@@ -2872,7 +2910,7 @@ msgstr "div za ovijanje"
2872
  msgid "background"
2873
  msgstr "ozadje"
2874
 
2875
- #: includes/preview.php:2529 includes/preview.php:2741 settings.php:1394
2876
  msgid "Alignment"
2877
  msgstr "Poravnava"
2878
 
@@ -3029,7 +3067,7 @@ msgstr ""
3029
  "Opozorilo: vtičnik Ad Inserter Pro je zastarel - ni bil preverjen z "
3030
  "različico WordPres"
3031
 
3032
- #: settings.php:114 settings.php:117
3033
  msgid ""
3034
  "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
3035
  msgstr ""
@@ -3037,7 +3075,7 @@ msgstr ""
3037
  "vedno izjeme"
3038
 
3039
  #. translators: %s: HTML link code
3040
- #: settings.php:124
3041
  msgid ""
3042
  "Warning: %s Unfiltered HTML %s is disabled for this website - most ad codes "
3043
  "can't be used"
@@ -3045,32 +3083,36 @@ msgstr ""
3045
  "Opozorilo: %s Nefiltriran HTML %s je onemogočen za to spletišče - večino "
3046
  "oglasnih kod ni mogoče uporabiti"
3047
 
3048
- #: settings.php:207
3049
  msgid "Online documentation"
3050
  msgstr "Spletna Dokumentacija"
3051
 
3052
- #: settings.php:211 settings.php:810 settings.php:2428
 
 
 
 
3053
  msgid "Show AdSense ad units"
3054
  msgstr "Pokaži oglasne enote AdSense"
3055
 
3056
- #: settings.php:220
3057
  msgid "Edit ads.txt file"
3058
  msgstr "Uredi datoteko ads.txt"
3059
 
3060
- #: settings.php:223 settings.php:1220
3061
  msgid "Check theme for available positions for automatic insertion"
3062
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
3063
 
3064
- #: settings.php:227
3065
  msgid "List all blocks"
3066
  msgstr "Izpiši seznam vseh blokov"
3067
 
3068
- #: settings.php:234
3069
  msgid "Loaded plugin JavaScript file version"
3070
  msgstr "Naložena različica JavaScript datoteke vtičnika"
3071
 
3072
  #. translators: %s: HTML tags
3073
- #: settings.php:236
3074
  msgid ""
3075
  "Wrong or %s missing version parameter %s of the JavaScript file, probably "
3076
  "due to inappropriate caching."
@@ -3078,7 +3120,7 @@ msgstr ""
3078
  "Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
3079
  "zaradi nepravilnega predpomnjenja."
3080
 
3081
- #: settings.php:237
3082
  msgid ""
3083
  "Missing version parameter of the JavaScript file, probably due to "
3084
  "inappropriate caching."
@@ -3086,7 +3128,7 @@ msgstr ""
3086
  "Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
3087
  "predpomnjenja."
3088
 
3089
- #: settings.php:238
3090
  msgid ""
3091
  "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
3092
  "caching."
@@ -3094,7 +3136,7 @@ msgstr ""
3094
  "Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
3095
  "zaradi nepravilnega predpomnjenja."
3096
 
3097
- #: settings.php:239 settings.php:250
3098
  msgid ""
3099
  "Please delete browser's cache and all other caches used and then reload this "
3100
  "page."
@@ -3102,12 +3144,12 @@ msgstr ""
3102
  "Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
3103
  "potem na novo naložite to stran."
3104
 
3105
- #: settings.php:245
3106
  msgid "Loaded plugin CSS file version"
3107
  msgstr "Naložena različica CSS datoteke vtičnika"
3108
 
3109
  #. translators: %s: HTML tags
3110
- #: settings.php:247
3111
  msgid ""
3112
  "Wrong or %s missing version parameter %s of the CSS file, probably due to "
3113
  "inappropriate caching."
@@ -3115,7 +3157,7 @@ msgstr ""
3115
  "Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
3116
  "nepravilnega predpomnjenja."
3117
 
3118
- #: settings.php:248
3119
  msgid ""
3120
  "Missing version parameter of the CSS file, probably due to inappropriate "
3121
  "caching."
@@ -3123,39 +3165,39 @@ msgstr ""
3123
  "Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
3124
  "predpomnjenja."
3125
 
3126
- #: settings.php:249
3127
  msgid ""
3128
  "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
3129
  msgstr ""
3130
  "Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
3131
  "nepravilnega predpomnjenja."
3132
 
3133
- #: settings.php:256 settings.php:282
3134
  msgid "WARNING"
3135
  msgstr "OPOZORILO"
3136
 
3137
  #. translators: %s: HTML tags
3138
- #: settings.php:258
3139
  msgid "Page may %s not be loaded properly. %s"
3140
  msgstr "Stran mogoče %s ni naložena pravilno. %s"
3141
 
3142
- #: settings.php:259
3143
  msgid ""
3144
  "Check ad blocking software that may block CSS, JavaScript or image files."
3145
  msgstr ""
3146
  "Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
3147
  "JavaScript ali slikovne datoteke."
3148
 
3149
- #: settings.php:268
3150
  msgid "SAFE MODE"
3151
  msgstr "VARNI NAČIN"
3152
 
3153
  #. translators: %s: HTML tags
3154
- #: settings.php:270
3155
  msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
3156
  msgstr "Stran je naložena v %s varnem načinu. %s Vse skripte niso naložene."
3157
 
3158
- #: settings.php:282
3159
  msgid ""
3160
  "To disable debugging functions and to enable insertions go to tab [*] / tab "
3161
  "Debugging"
@@ -3163,23 +3205,23 @@ msgstr ""
3163
  "Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
3164
  "na zavihek [*] / zavihek Razhroščevanje"
3165
 
3166
- #: settings.php:284
3167
  msgid "Debugging functions enabled - some code is not inserted"
3168
  msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
3169
 
3170
- #: settings.php:301
3171
  msgid "Group name"
3172
  msgstr "Ime skupine"
3173
 
3174
- #: settings.php:302
3175
  msgid "Option name"
3176
  msgstr "Ime različice"
3177
 
3178
- #: settings.php:308
3179
  msgid "Share"
3180
  msgstr "Delež"
3181
 
3182
- #: settings.php:311
3183
  msgid ""
3184
  "Option share in percents - 0 means option is disabled, if share for one "
3185
  "option is not defined it will be calculated automatically. Leave all share "
@@ -3189,19 +3231,19 @@ msgstr ""
3189
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
3190
  "prazne za enakomerno porazdelitev deležev različic."
3191
 
3192
- #: settings.php:314 settings.php:2157 settings.php:4532
3193
  msgid "Scheduling"
3194
  msgstr "Urnik"
3195
 
3196
- #: settings.php:317
3197
  msgid "Scheduling parameters"
3198
  msgstr "Parametri urnika"
3199
 
3200
- #: settings.php:320
3201
  msgid "Time"
3202
  msgstr "Čas"
3203
 
3204
- #: settings.php:323
3205
  msgid ""
3206
  "Option time in seconds - 0 means option is disabled and will be skipped. "
3207
  "Leave all time fields empty for no timed rotation."
@@ -3209,162 +3251,162 @@ msgstr ""
3209
  "Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
3210
  "preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
3211
 
3212
- #: settings.php:494
3213
  msgid "General Settings"
3214
  msgstr "Splošne Nastavitve"
3215
 
3216
- #: settings.php:758 settings.php:2781 settings.php:2850 settings.php:3063
3217
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3218
  msgstr ""
3219
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
3220
 
3221
- #: settings.php:765
3222
  msgid "Toggle tools"
3223
  msgstr "Preklopi orodja"
3224
 
3225
- #: settings.php:773
3226
  msgid "Process PHP code in block"
3227
  msgstr "Procesiraj PHP kodo v bloku"
3228
 
3229
- #: settings.php:780
3230
  msgid "Disable insertion of this block"
3231
  msgstr "Onemogoči vstavljanje tega bloka"
3232
 
3233
- #: settings.php:792
3234
  msgid "Toggle code generator"
3235
  msgstr "Preklopi generator kode"
3236
 
3237
- #: settings.php:796
3238
  msgid "Toggle rotation editor"
3239
  msgstr "Preklopi urejevalnik rotacije"
3240
 
3241
- #: settings.php:800
3242
  msgid "Open visual HTML editor"
3243
  msgstr "Odpri vizualni HTML urejevalnik"
3244
 
3245
- #: settings.php:819
3246
  msgid "Clear block"
3247
  msgstr "Počisti blok"
3248
 
3249
- #: settings.php:824 settings.php:4485
3250
  msgid "Copy block"
3251
  msgstr "Kopiraj blok"
3252
 
3253
- #: settings.php:828
3254
  msgid "Paste name"
3255
  msgstr "Prilepi ime"
3256
 
3257
- #: settings.php:832
3258
  msgid "Paste code"
3259
  msgstr "Prilepi kodo"
3260
 
3261
- #: settings.php:836
3262
  msgid "Paste settings"
3263
  msgstr "Prilepi nastavitve"
3264
 
3265
- #: settings.php:840
3266
  msgid "Paste block (name, code and settings)"
3267
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
3268
 
3269
- #: settings.php:859
3270
  msgid "Rotation groups"
3271
  msgstr "Skupine za rotacijo"
3272
 
3273
- #: settings.php:863
3274
  msgid "Remove option"
3275
  msgstr "Odstrani različico"
3276
 
3277
- #: settings.php:867
3278
  msgid "Add option"
3279
  msgstr "Dodaj različico"
3280
 
3281
- #: settings.php:882
3282
  msgid "Import code"
3283
  msgstr "Uvozi kodo"
3284
 
3285
- #: settings.php:886
3286
  msgid "Generate code"
3287
  msgstr "Generiraj kodo"
3288
 
3289
- #: settings.php:891
3290
  msgid "Banner"
3291
  msgstr "Pasica"
3292
 
3293
- #: settings.php:903
3294
  msgid "Image"
3295
  msgstr "Slika"
3296
 
3297
- #: settings.php:911
3298
  msgid "Alt text"
3299
  msgstr "Besedilo alt"
3300
 
3301
- #: settings.php:939
3302
  msgid "Select Image"
3303
  msgstr "Izberi Sliko"
3304
 
3305
- #: settings.php:940
3306
  msgid "Select Placeholder"
3307
  msgstr "Izberi Polnilo"
3308
 
3309
- #: settings.php:952
3310
  msgid "Comment"
3311
  msgstr "Komentar"
3312
 
3313
- #: settings.php:961
3314
  msgctxt "AdSense"
3315
  msgid "Publisher ID"
3316
  msgstr "ID založnika"
3317
 
3318
- #: settings.php:970
3319
  msgctxt "AdSense"
3320
  msgid "Ad Slot ID"
3321
  msgstr "ID mesta"
3322
 
3323
- #: settings.php:979
3324
  msgid "Ad Type"
3325
  msgstr "Vrsta"
3326
 
3327
- #: settings.php:1004 settings.php:1146
3328
  msgid "AMP Ad"
3329
  msgstr "AMP Oglas"
3330
 
3331
- #: settings.php:1018 settings.php:1168
3332
  msgid "Block on consent"
3333
  msgstr "Blokiraj ob soglasju"
3334
 
3335
- #: settings.php:1029
3336
  msgid "Show ad units from your AdSense account"
3337
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3338
 
3339
- #: settings.php:1029
3340
  msgid "AdSense ad units"
3341
  msgstr "Oglasne enote AdSense"
3342
 
3343
- #: settings.php:1046
3344
  msgctxt "AdSense"
3345
  msgid "Layout"
3346
  msgstr "Postavitev"
3347
 
3348
- #: settings.php:1055
3349
  msgctxt "AdSense"
3350
  msgid "Layout Key"
3351
  msgstr "Ključ postavitve"
3352
 
3353
- #: settings.php:1065
3354
  msgid "Full width"
3355
  msgstr "Celotna širina"
3356
 
3357
- #: settings.php:1067
3358
  msgctxt "Full width"
3359
  msgid "Enabled"
3360
  msgstr "Omogočena"
3361
 
3362
- #: settings.php:1068
3363
  msgctxt "Full width"
3364
  msgid "Disabled"
3365
  msgstr "Onemogočena"
3366
 
3367
- #: settings.php:1186
3368
  msgid ""
3369
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3370
  "Cookie or Referer (domain)"
@@ -3372,28 +3414,28 @@ msgstr ""
3372
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3373
  "parametrov, Piškotkov ali napotiteljev (domen)"
3374
 
3375
- #: settings.php:1186
3376
  msgid "Lists"
3377
  msgstr "Seznami"
3378
 
3379
- #: settings.php:1187
3380
  msgid "Widget, Shortcode and PHP function call"
3381
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3382
 
3383
- #: settings.php:1187
3384
  msgid "Manual"
3385
  msgstr "Ročno"
3386
 
3387
- #: settings.php:1188
3388
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3389
  msgstr ""
3390
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3391
 
3392
- #: settings.php:1188
3393
  msgid "Devices"
3394
  msgstr "Naprave"
3395
 
3396
- #: settings.php:1189
3397
  msgid ""
3398
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3399
  "feeds), Filter, Scheduling, General tag"
@@ -3401,15 +3443,15 @@ msgstr ""
3401
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3402
  "RSS), Filter, Urnik, Splošna oznaka"
3403
 
3404
- #: settings.php:1189
3405
  msgid "Misc"
3406
  msgstr "Razno"
3407
 
3408
- #: settings.php:1190
3409
  msgid "Preview code and alignment"
3410
  msgstr "Predogled kode in poravnave"
3411
 
3412
- #: settings.php:1193 settings.php:2409
3413
  msgid ""
3414
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3415
  "editor is active before saving settings."
@@ -3417,15 +3459,15 @@ msgstr ""
3417
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3418
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3419
 
3420
- #: settings.php:1206 settings.php:1207
3421
  msgid "Enable insertion on posts"
3422
  msgstr "Omogoči vstavljanje na prispevkih"
3423
 
3424
- #: settings.php:1207 settings.php:3661
3425
  msgid "Posts"
3426
  msgstr "Prispevki"
3427
 
3428
- #: settings.php:1211 settings.php:1212
3429
  msgid ""
3430
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3431
  "page or theme homepage (available positions may depend on hooks used by the "
@@ -3435,43 +3477,43 @@ msgstr ""
3435
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3436
  "lahko odvisni od ročic, ki jih tema uporablja)"
3437
 
3438
- #: settings.php:1212 settings.php:3663
3439
  msgid "Homepage"
3440
  msgstr "Domača stran"
3441
 
3442
- #: settings.php:1216 settings.php:1217
3443
  msgid "Enable insertion on category blog pages (including sub-pages)"
3444
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3445
 
3446
- #: settings.php:1217 settings.php:3664
3447
  msgid "Category pages"
3448
  msgstr "Strani kategorij"
3449
 
3450
- #: settings.php:1227 settings.php:1228
3451
  msgid "Enable insertion on static pages"
3452
  msgstr "Omogoči vstavljanje na statičnih straneh"
3453
 
3454
- #: settings.php:1228 settings.php:3662
3455
  msgid "Static pages"
3456
  msgstr "Statične strani"
3457
 
3458
- #: settings.php:1232 settings.php:1233
3459
  msgid "Enable insertion on search blog pages"
3460
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3461
 
3462
- #: settings.php:1233 settings.php:3666
3463
  msgid "Search pages"
3464
  msgstr "Iskalne strani"
3465
 
3466
- #: settings.php:1237 settings.php:1238
3467
  msgid "Enable insertion on tag or archive blog pages"
3468
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3469
 
3470
- #: settings.php:1241
3471
  msgid "Toggle settings for default insertion and list of individual exceptions"
3472
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3473
 
3474
- #: settings.php:1253
3475
  msgid ""
3476
  "Enable individual post/page exceptions for insertion of this block. They can "
3477
  "be configured on the individual post/page editor page (in the settings below "
@@ -3481,7 +3523,7 @@ msgstr ""
3481
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3482
  "nastavitvah pod urejevalnikom)."
3483
 
3484
- #: settings.php:1254
3485
  msgid ""
3486
  "Enable individual post/page exceptions for insertion of this block. When "
3487
  "enabled they can be configured on the individual post/page editor page (in "
@@ -3491,13 +3533,13 @@ msgstr ""
3491
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3492
  "strani (v nastavitvah pod urejevalnikom)."
3493
 
3494
- #: settings.php:1254
3495
  msgid "Use exceptions for individual posts or pages to change insertion"
3496
  msgstr ""
3497
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3498
 
3499
  #. Translators: Enabled means...
3500
- #: settings.php:1262
3501
  msgid ""
3502
  "means the insertion for this block is enabled by default and disabled for "
3503
  "exceptions."
@@ -3506,7 +3548,7 @@ msgstr ""
3506
  "izjeme."
3507
 
3508
  #. Translators: Disabled means...
3509
- #: settings.php:1263
3510
  msgid ""
3511
  "means the insertion for this block is disabled by default and enabled for "
3512
  "exceptions."
@@ -3514,7 +3556,7 @@ msgstr ""
3514
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3515
  "izjeme."
3516
 
3517
- #: settings.php:1264
3518
  msgid ""
3519
  "When individual post/page exceptions are enabled they can be configured on "
3520
  "the individual post/page editor page (in the settings below the editor)."
@@ -3523,13 +3565,13 @@ msgstr ""
3523
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3524
  "urejevalnikom)."
3525
 
3526
- #: settings.php:1272
3527
  msgid ""
3528
  "No exception for post or static page defined. Block will not be inserted."
3529
  msgstr ""
3530
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3531
 
3532
- #: settings.php:1277
3533
  msgid ""
3534
  "Settings for individual exceptions have been updated. Please check all "
3535
  "blocks that have exceptions and and then save settings."
@@ -3537,25 +3579,25 @@ msgstr ""
3537
  "Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
3538
  "bloke, ki imajo izjeme in potem shranite nastavitve."
3539
 
3540
- #: settings.php:1290
3541
  msgctxt "post"
3542
  msgid "Type"
3543
  msgstr "Vrsta"
3544
 
3545
  #. translators: %d: block number
3546
- #: settings.php:1295
3547
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3548
  msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
3549
 
3550
- #: settings.php:1296
3551
  msgid "Clear listed exceptions for block"
3552
  msgstr "Pobriši izpisane izjeme za blok"
3553
 
3554
- #: settings.php:1325 settings.php:1473 settings.php:2154
3555
  msgid "Insertion"
3556
  msgstr "Vstavljanje"
3557
 
3558
- #: settings.php:1363
3559
  msgid ""
3560
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3561
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3571,7 +3613,7 @@ msgstr ""
3571
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3572
  "število pomeni štetje z nasprotne smeri"
3573
 
3574
- #: settings.php:1364
3575
  msgid ""
3576
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3577
  "means every N images, empty means all images, 0 means random image, value "
@@ -3586,7 +3628,7 @@ msgstr ""
3586
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3587
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3588
 
3589
- #: settings.php:1377
3590
  msgid ""
3591
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3592
  "numbers, %N means every N excerpts, empty means all excerpts"
@@ -3595,7 +3637,7 @@ msgstr ""
3595
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3596
  "izvlečki"
3597
 
3598
- #: settings.php:1378
3599
  msgid ""
3600
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3601
  "numbers, %N means every N posts, empty means all posts"
@@ -3604,7 +3646,7 @@ msgstr ""
3604
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3605
  "prispevki"
3606
 
3607
- #: settings.php:1379
3608
  msgid ""
3609
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3610
  "numbers, %N means every N comments, empty means all comments"
@@ -3613,44 +3655,44 @@ msgstr ""
3613
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3614
  "vsi komentarji"
3615
 
3616
- #: settings.php:1386
3617
  msgid "Toggle paragraph counting settings"
3618
  msgstr "Preklopi nastavitve za štetje odstavkov"
3619
 
3620
- #: settings.php:1387
3621
  msgid "Toggle paragraph clearance settings"
3622
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3623
 
3624
- #: settings.php:1390
3625
  msgid "Toggle insertion filter settings"
3626
  msgstr "Preklopi nastavitve filtra vstavljanja"
3627
 
3628
- #: settings.php:1408
3629
  msgid "Toggle insertion and alignment icons"
3630
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3631
 
3632
- #: settings.php:1422
3633
  msgid "Custom CSS code for the wrapping div"
3634
  msgstr "CSS koda po meri za div za ovijanje"
3635
 
3636
- #: settings.php:1425 settings.php:1426 settings.php:1427 settings.php:1428
3637
- #: settings.php:1429 settings.php:1430
3638
  msgid "CSS code for the wrapping div, click to edit"
3639
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3640
 
3641
- #: settings.php:1443
3642
  msgid "HTML element"
3643
  msgstr "HTML element"
3644
 
3645
- #: settings.php:1456
3646
  msgid "HTML element selector or comma separated list of selectors"
3647
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3648
 
3649
- #: settings.php:1462 settings.php:2959
3650
  msgid "Action"
3651
  msgstr "Akcija"
3652
 
3653
- #: settings.php:1474
3654
  msgid ""
3655
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3656
  "Server-side insertion inserts block when the page is generated but needs "
@@ -3660,76 +3702,76 @@ msgstr ""
3660
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3661
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3662
 
3663
- #: settings.php:1484
3664
  msgid "Wait for"
3665
  msgstr "Čakaj na"
3666
 
3667
- #: settings.php:1496
3668
  msgid "Wait for HTML element to be loaded"
3669
  msgstr "Čakaj, da se naloži HTML element"
3670
 
3671
- #: settings.php:1503
3672
  msgid "Time in ms to delay insertion"
3673
  msgstr "Čas v ms za zakasnitev vstavljanja"
3674
 
3675
- #: settings.php:1508
3676
  msgid "Code position"
3677
  msgstr "Položaj kode"
3678
 
3679
- #: settings.php:1509
3680
  msgid ""
3681
  "Page position where the code for client-side insertion will be inserted."
3682
  msgstr ""
3683
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3684
 
3685
- #: settings.php:1527
3686
  msgid "Count"
3687
  msgstr "Štej"
3688
 
3689
- #: settings.php:1533
3690
  msgid "paragraphs with tags"
3691
  msgstr "odstavke z značkami"
3692
 
3693
- #: settings.php:1539
3694
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3695
  msgstr ""
3696
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3697
 
3698
- #: settings.php:1548
3699
  msgid "that have between"
3700
  msgstr "ki imajo med"
3701
 
3702
- #: settings.php:1554
3703
  msgid "Minimum number of paragraph words, leave empty for no limit"
3704
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3705
 
3706
- #: settings.php:1563
3707
  msgid "Maximum number of paragraph words, leave empty for no limit"
3708
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3709
 
3710
- #: settings.php:1566
3711
  msgid "words"
3712
  msgstr "besed"
3713
 
3714
- #: settings.php:1581 settings.php:1628 settings.php:1742 settings.php:1768
3715
  msgid "Comma separated texts"
3716
  msgstr "Z vejico ločena besedila"
3717
 
3718
  #. translators: inside [HTML tags] elements that contain
3719
- #: settings.php:1600
3720
  msgid "inside"
3721
  msgstr "znotraj"
3722
 
3723
- #: settings.php:1606
3724
  msgid "Comma separated HTML tag names of container elements"
3725
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3726
 
3727
  #. translators: inside [HTML tags] elements that contain
3728
- #: settings.php:1615
3729
  msgid "elements that"
3730
  msgstr "elementov, ki"
3731
 
3732
- #: settings.php:1638
3733
  msgid ""
3734
  "Count also paragraphs inside these elements - defined on general plugin "
3735
  "settings page - tab [*] / tab General"
@@ -3737,7 +3779,7 @@ msgstr ""
3737
  "Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
3738
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3739
 
3740
- #: settings.php:1645 settings.php:1646
3741
  msgid ""
3742
  "If checked it will search for the text only in tag attributes like [[id]], "
3743
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
@@ -3747,17 +3789,17 @@ msgstr ""
3747
  "[[class]], [[style]], itd. V nasprotnem bo preiskana celotna značka vključno "
3748
  "z njeno vsebino."
3749
 
3750
- #: settings.php:1646
3751
  msgid "Check only tag attributes"
3752
  msgstr "Preveri samo atribute značke"
3753
 
3754
  #. Translators: %s: HTML tags
3755
- #: settings.php:1651
3756
  msgid "Count inside %s elements"
3757
  msgstr "Štej znotraj elementov %s"
3758
 
3759
  #. Translators: Do not insert for first X and last Y paragraphs
3760
- #: settings.php:1659
3761
  msgid "Do not insert for first"
3762
  msgid_plural "Do not insert for first"
3763
  msgstr[0] "Ne vstavi za prvi"
@@ -3765,7 +3807,7 @@ msgstr[1] "Ne vstavi za prva"
3765
  msgstr[2] "Ne vstavi za prve"
3766
  msgstr[3] "Ne vstavi za prvih"
3767
 
3768
- #: settings.php:1665
3769
  msgid ""
3770
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3771
  "first paragraphs"
@@ -3774,7 +3816,7 @@ msgstr ""
3774
  "odstavkov"
3775
 
3776
  #. Translators: Do not insert for first X and last Y paragraphs
3777
- #: settings.php:1668
3778
  msgid "and last"
3779
  msgid_plural "and last"
3780
  msgstr[0] "in zadnji"
@@ -3782,7 +3824,7 @@ msgstr[1] "in zadnja"
3782
  msgstr[2] "in zadnje"
3783
  msgstr[3] "in zadnjih"
3784
 
3785
- #: settings.php:1674
3786
  msgid ""
3787
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3788
  "last paragraphs"
@@ -3792,7 +3834,7 @@ msgstr ""
3792
 
3793
  #. Translators: Do not insert for first X and last Y paragraphs
3794
  #. Translators: Post/Static page must have between X and Y paragraphs
3795
- #: settings.php:1677 settings.php:1703
3796
  msgid "paragraph"
3797
  msgid_plural "paragraphs"
3798
  msgstr[0] "odstavek"
@@ -3800,23 +3842,23 @@ msgstr[1] "odstavka"
3800
  msgstr[2] "odstavke"
3801
  msgstr[3] "odstavkov"
3802
 
3803
- #: settings.php:1685 settings.php:2286
3804
  msgid "Post/Static page must have between"
3805
  msgstr "Prispevek/Statična stran mora imeti med"
3806
 
3807
- #: settings.php:1691
3808
  msgid "Minimum number of paragraphs, leave empty for no limit"
3809
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3810
 
3811
- #: settings.php:1700
3812
  msgid "Maximum number of paragraphs, leave empty for no limit"
3813
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3814
 
3815
- #: settings.php:1711
3816
  msgid "Minimum number of words in paragraphs above"
3817
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3818
 
3819
- #: settings.php:1717
3820
  msgid ""
3821
  "Used only with automatic insertion After paragraph and empty paragraph "
3822
  "numbers"
@@ -3824,96 +3866,96 @@ msgstr ""
3824
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3825
  "številkami odstavkov"
3826
 
3827
- #: settings.php:1727 settings.php:1753
3828
  msgid "In"
3829
  msgstr "V"
3830
 
3831
- #: settings.php:1733
3832
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3833
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3834
 
3835
- #: settings.php:1736
3836
  msgid "paragraphs above avoid"
3837
  msgstr "odstavkih zgoraj se izogni"
3838
 
3839
- #: settings.php:1759
3840
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3841
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3842
 
3843
- #: settings.php:1762
3844
  msgid "paragraphs below avoid"
3845
  msgstr "odstavkih spodaj se izogni"
3846
 
3847
- #: settings.php:1778
3848
  msgid "If text is found"
3849
  msgstr "Če je besedilo najdeno"
3850
 
3851
- #: settings.php:1785
3852
  msgid "check up to"
3853
  msgstr "preveri do"
3854
 
3855
- #: settings.php:1793
3856
  msgctxt "check up to"
3857
  msgid "paragraphs"
3858
  msgstr "odstavkov"
3859
 
3860
- #: settings.php:1809
3861
  msgid "Categories"
3862
  msgstr "Kategorije"
3863
 
3864
- #: settings.php:1812
3865
  msgid "Toggle category editor"
3866
  msgstr "Preklopi urejevalnik kategorij"
3867
 
3868
- #: settings.php:1815
3869
  msgid "Comma separated category slugs"
3870
  msgstr "Z vejico ločeni ključi kategorij"
3871
 
3872
- #: settings.php:1832
3873
  msgid "Tags"
3874
  msgstr "Oznake"
3875
 
3876
- #: settings.php:1835
3877
  msgid "Toggle tag editor"
3878
  msgstr "Preklopi urejevalnik oznak"
3879
 
3880
- #: settings.php:1838
3881
  msgid "Comma separated tag slugs"
3882
  msgstr "Z vejico ločeni ključi oznak"
3883
 
3884
- #: settings.php:1855
3885
  msgid "Taxonomies"
3886
  msgstr "Taksonomije"
3887
 
3888
- #: settings.php:1858
3889
  msgid "Toggle taxonomy editor"
3890
  msgstr "Preklopi urejevalnik taksonomij"
3891
 
3892
- #: settings.php:1861
3893
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3894
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3895
 
3896
- #: settings.php:1878
3897
  msgid "Post IDs"
3898
  msgstr "ID-ji prispevkov"
3899
 
3900
- #: settings.php:1881
3901
  msgid "Toggle post/page ID editor"
3902
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3903
 
3904
- #: settings.php:1884
3905
  msgid "Comma separated post/page IDs"
3906
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3907
 
3908
- #: settings.php:1901
3909
  msgid "Urls"
3910
  msgstr "Url-ji"
3911
 
3912
- #: settings.php:1904
3913
  msgid "Toggle url editor"
3914
  msgstr "Preklopi urejevalnik url-jev"
3915
 
3916
- #: settings.php:1907
3917
  msgid ""
3918
  "Comma separated urls (page addresses) starting with / after domain name (e."
3919
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3925,15 +3967,15 @@ msgstr ""
3925
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3926
  "začetek*. *url-vzorec*, *url-konec)"
3927
 
3928
- #: settings.php:1923
3929
  msgid "Url parameters"
3930
  msgstr "Url parametri"
3931
 
3932
- #: settings.php:1927
3933
  msgid "Toggle url parameter and cookie editor"
3934
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3935
 
3936
- #: settings.php:1930
3937
  msgid ""
3938
  "Comma separated url query parameters or cookies with optional values (use "
3939
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
@@ -3942,30 +3984,30 @@ msgstr ""
3942
  "vrednostmi (uporabite 'parameter', 'parameter=vrednost', 'piškotek' or "
3943
  "'piškotek=vrednost')"
3944
 
3945
- #: settings.php:1946
3946
  msgid "Cookies"
3947
  msgstr "Piškotki"
3948
 
3949
- #: settings.php:1950
3950
  msgid "Toggle cookie editor"
3951
  msgstr "Preklopi urejevalnik piškotkov"
3952
 
3953
- #: settings.php:1953
3954
  msgid ""
3955
  "Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
3956
  msgstr ""
3957
  "Z vejico ločeni piškotki z neobveznimi vrednostmi (uporabite 'piškotek' ali "
3958
  "'piškotek=vrednost')"
3959
 
3960
- #: settings.php:1969
3961
  msgid "Referrers"
3962
  msgstr "Napotitelji"
3963
 
3964
- #: settings.php:1972
3965
  msgid "Toggle referrer editor"
3966
  msgstr "Preklopi urejevalnik napotiteljev"
3967
 
3968
- #: settings.php:1975
3969
  msgid ""
3970
  "Comma separated domains, use # for no referrer, you can also use partial "
3971
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
@@ -3973,15 +4015,15 @@ msgstr ""
3973
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3974
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3975
 
3976
- #: settings.php:1991
3977
  msgid "Clients"
3978
  msgstr "Odjemalci"
3979
 
3980
- #: settings.php:1994
3981
  msgid "Toggle client editor"
3982
  msgstr "Preklopi urejevalnik odjemalcev"
3983
 
3984
- #: settings.php:1997
3985
  msgid ""
3986
  "Comma separated names (operating systems, browsers, devices). You can also "
3987
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
@@ -3991,25 +4033,25 @@ msgstr ""
3991
  "lahko tudi delne nize uporabniškega agenta z * (začetek-uporabnšikega-"
3992
  "agenta*. *vzorec-uporabnšikega-agenta*, *konec-uporabnšikega-agenta)"
3993
 
3994
- #: settings.php:2023
3995
  msgid "Enable widget for this block"
3996
  msgstr "Omogočite gradnik za ta blok"
3997
 
3998
- #: settings.php:2028
3999
  msgid "Sidebars (or widget positions) where this widget is used"
4000
  msgstr ""
4001
  "Stranske vrstice (ali položaji gradnikov) kjer je ta gradnik uporabljen"
4002
 
4003
- #: settings.php:2035
4004
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
4005
  msgstr ""
4006
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
4007
 
4008
- #: settings.php:2036 settings.php:4542
4009
  msgid "Shortcode"
4010
  msgstr "Kratka koda"
4011
 
4012
- #: settings.php:2051
4013
  msgid ""
4014
  "Enable PHP function call to insert this block at any position in theme file. "
4015
  "If function is disabled for block it will return empty string."
@@ -4018,62 +4060,62 @@ msgstr ""
4018
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
4019
  "prazen niz."
4020
 
4021
- #: settings.php:2052
4022
  msgid "PHP function"
4023
  msgstr "PHP funkcija"
4024
 
4025
- #: settings.php:2067
4026
  msgid "Client-side device detection"
4027
  msgstr "Zaznavanje naprave na strani odjemalca"
4028
 
4029
- #: settings.php:2068
4030
  msgid "Server-side device detection"
4031
  msgstr "Zaznavanje naprave na strani strežnika"
4032
 
4033
- #: settings.php:2075
4034
  msgid "Use client-side detection to"
4035
  msgstr "Uporabi zaznavanje na strani odjemalca in"
4036
 
4037
- #: settings.php:2077
4038
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
4039
  msgstr ""
4040
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
4041
 
4042
  #. Translators: only on (the following devices): viewport names (devices)
4043
  #. listed
4044
- #: settings.php:2082
4045
  msgid "only on"
4046
  msgstr "samo na"
4047
 
4048
- #: settings.php:2110
4049
  msgid "Device min width %s px"
4050
  msgstr "Najmanjša širina naprave %s px"
4051
 
4052
- #: settings.php:2136
4053
  msgid "Use server-side detection to insert block only for"
4054
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
4055
 
4056
- #: settings.php:2155
4057
  msgid "Filter"
4058
  msgstr "Filter"
4059
 
4060
- #: settings.php:2156
4061
  msgid "Word Count"
4062
  msgstr "Število Besed"
4063
 
4064
- #: settings.php:2158
4065
  msgid "Display"
4066
  msgstr "Prikaz"
4067
 
4068
- #: settings.php:2160 settings.php:2455
4069
  msgid "General"
4070
  msgstr "Splošno"
4071
 
4072
- #: settings.php:2172
4073
  msgid "Old settings for AMP pages detected"
4074
  msgstr "Zaznane stare nastavitve za AMP strani"
4075
 
4076
- #: settings.php:2172
4077
  msgid ""
4078
  "To insert different codes on normal and AMP pages separate them with "
4079
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
@@ -4084,44 +4126,44 @@ msgstr ""
4084
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
4085
  "separatorja)."
4086
 
4087
- #: settings.php:2172
4088
  msgid "AMP pages"
4089
  msgstr "AMP strani"
4090
 
4091
- #: settings.php:2177
4092
  msgid "Enable insertion for Ajax requests"
4093
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
4094
 
4095
- #: settings.php:2177
4096
  msgid "Ajax requests"
4097
  msgstr "Ajax zahteve"
4098
 
4099
- #: settings.php:2182
4100
  msgid "Enable insertion in RSS feeds"
4101
  msgstr "Omogoči vstavljanje v RSS virih"
4102
 
4103
- #: settings.php:2182
4104
  msgid "RSS Feed"
4105
  msgstr "RSS Vir"
4106
 
4107
- #: settings.php:2187
4108
  msgid "Enable insertion on page for Error 404: Page not found"
4109
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
4110
 
4111
- #: settings.php:2187
4112
  msgid "Error 404 page"
4113
  msgstr "Stran napake 404"
4114
 
4115
- #: settings.php:2199
4116
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
4117
  msgstr ""
4118
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
4119
 
4120
- #: settings.php:2200
4121
  msgid "insertions"
4122
  msgstr "vstavljanj"
4123
 
4124
- #: settings.php:2202
4125
  msgid ""
4126
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
4127
  "General)"
@@ -4129,15 +4171,15 @@ msgstr ""
4129
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
4130
  "zavihek Splošno)"
4131
 
4132
- #: settings.php:2205 settings.php:2643
4133
  msgid "Max blocks per page"
4134
  msgstr "Največ blokov na stran"
4135
 
4136
- #: settings.php:2217
4137
  msgid "Insert for"
4138
  msgstr "Vstavi za"
4139
 
4140
- #: settings.php:2225
4141
  msgid ""
4142
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
4143
  "is currently active). Might speed up insertion on content pages when "
@@ -4147,11 +4189,11 @@ msgstr ""
4147
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
4148
  "filter [[the_content]] večkrat klican."
4149
 
4150
- #: settings.php:2229
4151
  msgid "Insert only in the loop"
4152
  msgstr "Vstavi samo v zanki"
4153
 
4154
- #: settings.php:2232
4155
  msgid ""
4156
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
4157
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
@@ -4162,26 +4204,26 @@ msgstr ""
4162
  "HTML kodo bloka. V nasprotnem bo Javascript koda vstavljena v nogi. "
4163
  "Javascript funkcije vtičnika bodo še vedno vstavljene v nogi."
4164
 
4165
- #: settings.php:2236
4166
  msgid "Embed JS code"
4167
  msgstr "Vgnezdi JS kodo"
4168
 
4169
- #: settings.php:2239
4170
  msgid ""
4171
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
4172
  msgstr ""
4173
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
4174
  "Rocket"
4175
 
4176
- #: settings.php:2243
4177
  msgid "Disable caching"
4178
  msgstr "Onemogoči predpomnjenje"
4179
 
4180
- #: settings.php:2255
4181
  msgid "Filter insertions"
4182
  msgstr "Filtriraj vstavljanja"
4183
 
4184
- #: settings.php:2258
4185
  msgid ""
4186
  "Filter multiple insertions by specifying wanted insertions for this block - "
4187
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -4193,44 +4235,44 @@ msgstr ""
4193
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
4194
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
4195
 
4196
- #: settings.php:2261
4197
  msgid "using"
4198
  msgstr "z uporabo"
4199
 
4200
- #: settings.php:2280
4201
  msgid "Checked means specified calls are unwanted"
4202
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
4203
 
4204
- #: settings.php:2280
4205
  msgid "Invert filter"
4206
  msgstr "Obrni filter"
4207
 
4208
- #: settings.php:2287
4209
  msgid "Minimum number of post/static page words, leave empty for no limit"
4210
  msgstr ""
4211
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4212
  "omejitev"
4213
 
4214
- #: settings.php:2289
4215
  msgid "Maximum number of post/static page words, leave empty for no limit"
4216
  msgstr ""
4217
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4218
  "omejitev"
4219
 
4220
- #: settings.php:2302
4221
  msgid "for"
4222
  msgstr "za"
4223
 
4224
- #: settings.php:2302
4225
  msgid "days after publishing"
4226
  msgstr "dni po objavi"
4227
 
4228
- #: settings.php:2304
4229
  msgid "Not available"
4230
  msgstr "Ni na razpolago"
4231
 
4232
  #. Translators: do not translate [[width]] - it is a CSS property
4233
- #: settings.php:2316
4234
  msgid ""
4235
  "Block width: empty means width not defined, number means width in pixels, "
4236
  "any other value means CSS [[width]] property"
@@ -4239,7 +4281,7 @@ msgstr ""
4239
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[width]]"
4240
 
4241
  #. Translators: do not translate [[height]] - it is a CSS property
4242
- #: settings.php:2320
4243
  msgid ""
4244
  "Block height: empty means height not defined, number means height in pixels, "
4245
  "any other value means CSS [[height]] property"
@@ -4247,7 +4289,7 @@ msgstr ""
4247
  "Višina bloka: prazno pomeni višina ni določena, število pomeni višino v "
4248
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[height]]"
4249
 
4250
- #: settings.php:2326
4251
  msgid ""
4252
  "Block background: empty means background not defined, #hex number means HTML "
4253
  "color"
@@ -4255,20 +4297,20 @@ msgstr ""
4255
  "Ozadje bloka: prazno pomeni, da ozadje ni definirano, #heksadecimalno "
4256
  "število pomeni HTML barvo"
4257
 
4258
- #: settings.php:2333 settings.php:2635
4259
  msgid "Ad label"
4260
  msgstr "Oznaka oglasa"
4261
 
4262
- #: settings.php:2356
4263
  msgid "General tag"
4264
  msgstr "Splošna oznaka"
4265
 
4266
- #: settings.php:2360
4267
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
4268
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
4269
 
4270
  #. translators: %s: HTML tags
4271
- #: settings.php:2369
4272
  msgid ""
4273
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4274
  "client-side device detection!"
@@ -4277,7 +4319,7 @@ msgstr ""
4277
  "potrebna za zaznavanje naprave na strani odjemalca!"
4278
 
4279
  #. translators: %s: HTML tags for text and link
4280
- #: settings.php:2383
4281
  msgid ""
4282
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4283
  "side %s insertion. Use %s Server-side %s insertion."
@@ -4286,90 +4328,90 @@ msgstr ""
4286
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4287
  "strežnika%s."
4288
 
4289
- #: settings.php:2399
4290
  msgid "Settings"
4291
  msgstr "Nastavitve"
4292
 
4293
- #: settings.php:2402
4294
  msgid "Settings timestamp"
4295
  msgstr "Časovni žig nastavitev"
4296
 
4297
- #: settings.php:2418
4298
  msgid "Are you sure you want to reset all settings?"
4299
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4300
 
4301
- #: settings.php:2418
4302
  msgid "Reset All Settings"
4303
  msgstr "Ponastavi Vse Nastavitve"
4304
 
4305
- #: settings.php:2456
4306
  msgid "Viewports"
4307
  msgstr "Pogledi"
4308
 
4309
- #: settings.php:2457
4310
  msgid "Hooks"
4311
  msgstr "Ročice"
4312
 
4313
- #: settings.php:2458
4314
  msgid "Header"
4315
  msgstr "Glava"
4316
 
4317
- #: settings.php:2459 strings.php:30
4318
  msgid "Footer"
4319
  msgstr "Noga"
4320
 
4321
- #: settings.php:2464
4322
  msgid "Debugging"
4323
  msgstr "Razhroščevanje"
4324
 
4325
- #: settings.php:2474
4326
  msgid "Plugin priority"
4327
  msgstr "Prednost vtičnika"
4328
 
4329
- #: settings.php:2482
4330
  msgid "Output buffering"
4331
  msgstr "Predpomnjenje izhoda"
4332
 
4333
- #: settings.php:2485
4334
  msgid "Needed for position Above header but may not work with all themes"
4335
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4336
 
4337
- #: settings.php:2493
4338
  msgid "Syntax highlighting theme"
4339
  msgstr "Tema za poudarjanje sintakse"
4340
 
4341
- #: settings.php:2500
4342
  msgctxt "no syntax highlighting themes"
4343
  msgid "None"
4344
  msgstr "Brez"
4345
 
4346
- #: settings.php:2501
4347
  msgid "No Syntax Highlighting"
4348
  msgstr "Brez Poudarjanja Sintakse"
4349
 
4350
- #: settings.php:2503
4351
  msgctxt "syntax highlighting themes"
4352
  msgid "Light"
4353
  msgstr "Svetle"
4354
 
4355
- #: settings.php:2518
4356
  msgctxt "syntax highlighting themes"
4357
  msgid "Dark"
4358
  msgstr "Temne"
4359
 
4360
- #: settings.php:2544
4361
  msgid "Tab setup delay"
4362
  msgstr "Zakasnitev nastavitev zavihka"
4363
 
4364
- #: settings.php:2552
4365
  msgid "Min. user role for ind. exceptions editing"
4366
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4367
 
4368
- #: settings.php:2562
4369
  msgid "Disable caching for logged in administrators"
4370
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4371
 
4372
- #: settings.php:2565
4373
  msgid ""
4374
  "Enabled means that logged in administrators will see non-cached (live) pages "
4375
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
@@ -4377,11 +4419,11 @@ msgstr ""
4377
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4378
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4379
 
4380
- #: settings.php:2573
4381
  msgid "Wait for jQuery"
4382
  msgstr "Čakaj na jQuery"
4383
 
4384
- #: settings.php:2576
4385
  msgid ""
4386
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4387
  "it will run the scripts that may need it"
@@ -4389,11 +4431,11 @@ msgstr ""
4389
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4390
  "bo pognal svoje skripte, ki jo potrebujejo"
4391
 
4392
- #: settings.php:2584
4393
  msgid "Sticky widget mode"
4394
  msgstr "Način za lepljive gradnike"
4395
 
4396
- #: settings.php:2587
4397
  msgid ""
4398
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4399
  "mode works with most themes but may reload ads on page load."
@@ -4402,19 +4444,19 @@ msgstr ""
4402
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4403
  "nalaganju strani."
4404
 
4405
- #: settings.php:2595
4406
  msgid "Sticky widget top margin"
4407
  msgstr "Zgornji rob za lepljiv gradnik"
4408
 
4409
- #: settings.php:2603
4410
  msgid "Dynamic blocks"
4411
  msgstr "Dinamični bloki"
4412
 
4413
- #: settings.php:2616
4414
  msgid "Functions for paragraph counting"
4415
  msgstr "Funkcije za štetje odstavkov"
4416
 
4417
- #: settings.php:2619
4418
  msgid ""
4419
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4420
  "functions if paragraphs are not counted properly on non-english pages."
@@ -4423,15 +4465,15 @@ msgstr ""
4423
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4424
  "šteti."
4425
 
4426
- #: settings.php:2627
4427
  msgid "No paragraph counting inside"
4428
  msgstr "Ni štetja odstavkov znotraj"
4429
 
4430
- #: settings.php:2638
4431
  msgid "Label text or HTML code"
4432
  msgstr "Besedilo oznake ali HTML koda"
4433
 
4434
- #: settings.php:2646
4435
  msgid ""
4436
  "Maximum number of inserted blocks per page. You need to enable Max page "
4437
  "insertions (button Misc / tab Insertion) to count block for this limit."
@@ -4440,12 +4482,12 @@ msgstr ""
4440
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4441
  "omejitev."
4442
 
4443
- #: settings.php:2660
4444
  msgid "Plugin usage tracking"
4445
  msgstr "Sledenje uporabe vtičnika"
4446
 
4447
  #. translators: %s: Ad Inserter
4448
- #: settings.php:2663
4449
  msgid ""
4450
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4451
  "Only information regarding the WordPress environment and %s usage is "
@@ -4455,125 +4497,142 @@ msgstr ""
4455
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4456
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4457
 
4458
- #: settings.php:2681
4459
  msgid "CSS class name for the wrapping div"
4460
  msgstr "Ime CSS razreda za div za ovijanje"
4461
 
4462
- #: settings.php:2681
4463
  msgid "Block class name"
4464
  msgstr "Ime razreda za blok"
4465
 
4466
- #: settings.php:2687
4467
  msgid "Include block number class"
4468
  msgstr "Vključi razred številke bloka"
4469
 
4470
- #: settings.php:2687
4471
  msgid "Block number class"
4472
  msgstr "Razred številke bloka"
4473
 
4474
- #: settings.php:2692
4475
  msgid "Include block name class"
4476
  msgstr "Vključi razred imena bloka"
4477
 
4478
- #: settings.php:2692
4479
  msgid "Block name class"
4480
  msgstr "Razred imena bloka"
4481
 
4482
- #: settings.php:2697
4483
  msgid ""
4484
  "Instead of alignment classes generate inline alignment styles for blocks"
4485
  msgstr ""
4486
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4487
 
4488
- #: settings.php:2697
4489
  msgid "Inline styles"
4490
  msgstr "Medvrstični slogi"
4491
 
4492
- #: settings.php:2703
4493
  msgid "Preview of the block wrapping code"
4494
  msgstr "Predogled kode za ovijanje blokov"
4495
 
4496
- #: settings.php:2704
4497
  msgid "Wrapping div"
4498
  msgstr "div za ovijanje"
4499
 
4500
- #: settings.php:2705 settings.php:3203
4501
  msgid "BLOCK CODE"
4502
  msgstr "KODA BLOKA"
4503
 
4504
- #: settings.php:2713
4505
  msgid "Viewport Settings used for client-side device detection"
4506
  msgstr ""
4507
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4508
 
4509
  #. Translators: %d: viewport number
4510
- #: settings.php:2721
4511
  msgid "Viewport %d name"
4512
  msgstr "Ime pogleda %d"
4513
 
4514
- #: settings.php:2724
4515
  msgid "min width"
4516
  msgstr "najmanjša širina"
4517
 
4518
- #: settings.php:2735
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4519
  msgid "Custom Hooks"
4520
  msgstr "Ročice Po Meri"
4521
 
4522
- #: settings.php:2747 settings.php:2750
4523
  msgid "Enable hook"
4524
  msgstr "Omogoči ročico"
4525
 
4526
  #. translators: %d: hook number
4527
- #: settings.php:2750
4528
  msgid "Hook %d name"
4529
  msgstr "Ime ročice %d"
4530
 
4531
- #: settings.php:2753
4532
  msgid "Hook name for automatic insertion selection"
4533
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4534
 
4535
- #: settings.php:2756
4536
  msgid "action"
4537
  msgstr "akcija"
4538
 
4539
- #: settings.php:2759
4540
  msgid "Action name as used in the do_action () function"
4541
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4542
 
4543
- #: settings.php:2762
4544
  msgid "priority"
4545
  msgstr "prednost"
4546
 
4547
- #: settings.php:2765
4548
  msgid "Priority for the hook (default is 10)"
4549
  msgstr "Prednost za ročico (privzeta je 10)"
4550
 
4551
- #: settings.php:2786
4552
  msgid "Enable insertion of this code into HTML page header"
4553
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4554
 
4555
- #: settings.php:2791 settings.php:2860 settings.php:3069
4556
  msgid "Process PHP code"
4557
  msgstr "Procesiraj PHP kodo"
4558
 
4559
- #: settings.php:2796
4560
  msgid "HTML Page Header Code"
4561
  msgstr "Koda v Glavi HTML Strani"
4562
 
4563
- #: settings.php:2804
4564
  msgid "Code in the %s section of the HTML page"
4565
  msgstr "Koda v %s delu HTML strani"
4566
 
4567
- #: settings.php:2805
4568
  msgctxt "code in the header"
4569
  msgid "NOT ENABLED"
4570
  msgstr "NI OMOGOČENA"
4571
 
4572
- #: settings.php:2822 settings.php:2892
4573
  msgid "Use server-side detection to insert code only for"
4574
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4575
 
4576
- #: settings.php:2837
4577
  msgid ""
4578
  "Enable insertion of this code into HTML page header on page for Error 404: "
4579
  "Page not found"
@@ -4581,29 +4640,29 @@ msgstr ""
4581
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4582
  "obstaja"
4583
 
4584
- #: settings.php:2837 settings.php:2907
4585
  msgid "Insert on Error 404 page"
4586
  msgstr "Vstavi na strani Napake 404"
4587
 
4588
- #: settings.php:2855
4589
  msgid "Enable insertion of this code into HTML page footer"
4590
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4591
 
4592
- #: settings.php:2865
4593
  msgid "HTML Page Footer Code"
4594
  msgstr "Koda v Nogi HTML Strani"
4595
 
4596
  #. translators: %s: HTML tags
4597
- #: settings.php:2873
4598
  msgid "Code before the %s tag of the HTML page"
4599
  msgstr "Koda pred %s značko HTML strani"
4600
 
4601
- #: settings.php:2874
4602
  msgctxt "code in the footer"
4603
  msgid "NOT ENABLED"
4604
  msgstr "NI OMOGOČENA"
4605
 
4606
- #: settings.php:2907
4607
  msgid ""
4608
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4609
  "Page not found"
@@ -4611,36 +4670,36 @@ msgstr ""
4611
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4612
  "Stran ne obstaja"
4613
 
4614
- #: settings.php:2923
4615
  msgid "Code for ad blocking detection inserted. Click for details."
4616
  msgstr ""
4617
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4618
 
4619
- #: settings.php:2928
4620
  msgid "Enable detection of ad blocking"
4621
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4622
 
4623
- #: settings.php:2943
4624
  msgid "Enabled for"
4625
  msgstr "Omogočeno za"
4626
 
4627
- #: settings.php:2962
4628
  msgid "Global action when ad blocking is detected"
4629
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4630
 
4631
- #: settings.php:2968
4632
  msgid "No action for"
4633
  msgstr "Ni akcije za"
4634
 
4635
- #: settings.php:2969
4636
  msgid "Exceptions for global action when ad blocking is detected."
4637
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov."
4638
 
4639
- #: settings.php:2979
4640
  msgid "Delay Action"
4641
  msgstr "Zakasni Akcijo"
4642
 
4643
- #: settings.php:2982
4644
  msgid ""
4645
  "Number of page views to delay action when ad blocking is detected. Leave "
4646
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -4649,16 +4708,16 @@ msgstr ""
4649
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4650
  "strani). Nastavi piškotek."
4651
 
4652
- #: settings.php:2982
4653
  msgctxt "Delay Action for x "
4654
  msgid "page views"
4655
  msgstr "ogledov strani"
4656
 
4657
- #: settings.php:2987
4658
  msgid "No Action Period"
4659
  msgstr "Obdobje Brez Akcije"
4660
 
4661
- #: settings.php:2990
4662
  msgid ""
4663
  "Number of days to supress action when ad blocking is detected. Leave empty "
4664
  "for no no-action period (action fires always after defined page view delay). "
@@ -4668,16 +4727,16 @@ msgstr ""
4668
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4669
  "strani). Nastavi piškotek."
4670
 
4671
- #: settings.php:2990
4672
  msgctxt "no action period"
4673
  msgid "days"
4674
  msgstr "dni"
4675
 
4676
- #: settings.php:2995
4677
  msgid "Custom Selectors"
4678
  msgstr "Selektorji Po Meri"
4679
 
4680
- #: settings.php:2998
4681
  msgid ""
4682
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4683
  "blocking detection. Invisible element or element with zero height means ad "
@@ -4687,7 +4746,7 @@ msgstr ""
4687
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4688
  "pomeni prisotnost blokiranja oglasov."
4689
 
4690
- #: settings.php:3005
4691
  msgid ""
4692
  "Use external scripts for ad blocking detection. Disable when you need to "
4693
  "obtain user consent before collecting personal information. In such case use "
@@ -4698,19 +4757,19 @@ msgstr ""
4698
  "primeru uporabite kratko kodo za vstavljanje zunanjih skript po pridobitvi "
4699
  "soglasja."
4700
 
4701
- #: settings.php:3005
4702
  msgid "Use external scripts"
4703
  msgstr "Uporabi zunanje skripte"
4704
 
4705
- #: settings.php:3019
4706
  msgid "Redirection Page"
4707
  msgstr "Stran za Preusmeritev"
4708
 
4709
- #: settings.php:3031
4710
  msgid "Custom Url"
4711
  msgstr "Url Po Meri"
4712
 
4713
- #: settings.php:3036
4714
  msgid ""
4715
  "Static page for redirection when ad blocking is detected. For other pages "
4716
  "select Custom url and set it below."
@@ -4718,35 +4777,35 @@ msgstr ""
4718
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4719
  "strani izberite Url Po Meri in ga nastavite spodaj."
4720
 
4721
- #: settings.php:3045
4722
  msgid "Custom Redirection Url"
4723
  msgstr "Url za Preusmeritev Po Meri"
4724
 
4725
- #: settings.php:3057
4726
  msgid "Message HTML code"
4727
  msgstr "HTML koda sporočila"
4728
 
4729
- #: settings.php:3072
4730
  msgid "Preview message when ad blocking is detected"
4731
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4732
 
4733
- #: settings.php:3101
4734
  msgid "Prevent visitors from closing the warning message"
4735
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4736
 
4737
- #: settings.php:3101
4738
  msgid "Undismissible Message"
4739
  msgstr "Neodstranljivo Sporočilo"
4740
 
4741
- #: settings.php:3107
4742
  msgid "Not undismissible for"
4743
  msgstr "Ni neodstranljivo za"
4744
 
4745
- #: settings.php:3108
4746
  msgid "Users which can close the warning message."
4747
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4748
 
4749
- #: settings.php:3145
4750
  msgid ""
4751
  "Force showing admin toolbar for administrators when viewing site. Enable "
4752
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -4755,94 +4814,94 @@ msgstr ""
4755
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4756
  "skrbnike."
4757
 
4758
- #: settings.php:3153
4759
  msgid "Disable header code (Header tab)"
4760
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4761
 
4762
- #: settings.php:3157
4763
  msgid "Disable footer code (Footer tab)"
4764
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4765
 
4766
  #. translators: %s: Ad Inserter
4767
- #: settings.php:3161
4768
  msgid "Disable %s JavaScript code"
4769
  msgstr "Onemogoči %s JavaScript kodo"
4770
 
4771
  #. translators: %s: Ad Inserter
4772
- #: settings.php:3165
4773
  msgid "Disable %s CSS code"
4774
  msgstr "Onemogoči %s CSS kodo"
4775
 
4776
  #. translators: %s: Ad Inserter
4777
- #: settings.php:3169
4778
  msgid "Disable %s HTML code"
4779
  msgstr "Onemogoči %s HTML kodo"
4780
 
4781
- #: settings.php:3173
4782
  msgid ""
4783
  "Disable PHP code processing (in all blocks including header and footer code)"
4784
  msgstr ""
4785
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4786
 
4787
- #: settings.php:3177
4788
  msgid "Disable insertion of all blocks"
4789
  msgstr "Onemogoči vstavljanje vseh blokov"
4790
 
4791
- #: settings.php:3181
4792
  msgid "Disable insertions"
4793
  msgstr "Onemogoči vstavljanja"
4794
 
4795
  #. translators: %s: Ad Inserter
4796
- #: settings.php:3193
4797
  msgid "%s CSS CODE"
4798
  msgstr "%s CSS KODA"
4799
 
4800
- #: settings.php:3196
4801
  msgid "HEADER CODE"
4802
  msgstr "KODA GLAVE"
4803
 
4804
  #. translators: %s: PHP tags
4805
- #: settings.php:3202
4806
  msgid "BLOCK PHP CODE"
4807
  msgstr "PHP KODA BLOKA"
4808
 
4809
  #. translators: %s: Ad Inserter
4810
- #: settings.php:3207
4811
  msgid "%s HTML CODE"
4812
  msgstr "%s HTML KODA"
4813
 
4814
  #. translators: %s: Ad Inserter
4815
- #: settings.php:3209
4816
  msgid "%s JS CODE"
4817
  msgstr "%s JS KODA"
4818
 
4819
- #: settings.php:3212
4820
  msgid "FOOTER CODE"
4821
  msgstr "KODA NOGE"
4822
 
4823
- #: settings.php:3221
4824
  msgid "Force showing admin toolbar when viewing site"
4825
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4826
 
4827
- #: settings.php:3228
4828
  msgid "Enable debugging functions in admin toolbar"
4829
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4830
 
4831
- #: settings.php:3230
4832
  msgid "Debugging functions in admin toolbar"
4833
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4834
 
4835
- #: settings.php:3237
4836
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4837
  msgstr ""
4838
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4839
  "zaslonih"
4840
 
4841
- #: settings.php:3239
4842
  msgid "Debugging functions on mobile screens"
4843
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4844
 
4845
- #: settings.php:3259
4846
  msgid ""
4847
  "Disable translation to see original texts for the settings and messages in "
4848
  "English"
@@ -4850,210 +4909,210 @@ msgstr ""
4850
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4851
  "angleščini"
4852
 
4853
- #: settings.php:3261
4854
  msgid "Disable translation"
4855
  msgstr "Onemogoči prevod"
4856
 
4857
- #: settings.php:3649
4858
  msgid "Available positions for current theme"
4859
  msgstr "Razpoložljivi položaji za trenutno temo"
4860
 
4861
- #: settings.php:3650
4862
  msgid "Error checking pages"
4863
  msgstr "Napaka pri preverjanju strani"
4864
 
4865
- #: settings.php:3653
4866
  msgid "Toggle theme checker for available positions for automatic insertion"
4867
  msgstr ""
4868
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4869
 
4870
- #: settings.php:3653
4871
  msgctxt "Button"
4872
  msgid "Check"
4873
  msgstr "Preveri"
4874
 
4875
- #: settings.php:3660
4876
  msgid "Position"
4877
  msgstr "Položaj"
4878
 
4879
- #: settings.php:3665
4880
  msgid "Archive pages"
4881
  msgstr "Strani arhiva"
4882
 
4883
- #: settings.php:3724
4884
  msgid ""
4885
  "Position not available because output buffering (tab [*]) is not enabled"
4886
  msgstr ""
4887
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4888
 
4889
- #: settings.php:3727 strings.php:252
4890
  msgid "Position not checked yet"
4891
  msgstr "Položaj še ni bil preverjen"
4892
 
4893
- #: settings.php:3763
4894
  msgid "Toggle active/all blocks"
4895
  msgstr "Preklopi aktive/vse bloke"
4896
 
4897
- #: settings.php:3768 strings.php:239
4898
  msgid "Rearrange block order"
4899
  msgstr "Preuredi vrstni red blokov"
4900
 
4901
- #: settings.php:3774
4902
  msgid "Save new block order"
4903
  msgstr "Shrani vrstni red blokov"
4904
 
4905
- #: settings.php:3800
4906
  msgid "Toggle active/all ad units"
4907
  msgstr "Preklopi aktivne/vse oglasne enote"
4908
 
4909
- #: settings.php:3804
4910
  msgid "Reload AdSense ad units"
4911
  msgstr "Ponovno naloži oglasne enote AdSense"
4912
 
4913
- #: settings.php:3808
4914
  msgid "Clear authorization to access AdSense account"
4915
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4916
 
4917
- #: settings.php:3812 settings.php:4705 settings.php:4772 strings.php:247
4918
  msgid "Google AdSense Homepage"
4919
  msgstr "Google AdSense Domača Stran"
4920
 
4921
- #: settings.php:3833
4922
  msgid "Switch to physical ads.txt file"
4923
  msgstr "Preklopi na fizično datoteko ads.txt"
4924
 
4925
- #: settings.php:3834
4926
  msgid "Switch to virtual ads.txt file"
4927
  msgstr "Preklopi na navidezno datoteko ads.txt"
4928
 
4929
  #. translators: %s: ads.txt
4930
- #: settings.php:3854
4931
  msgid "Open %s"
4932
  msgstr "Odpri %s"
4933
 
4934
- #: settings.php:3862
4935
  msgid "Reload ads.txt file"
4936
  msgstr "Ponovno naloži datoteko ads.txt"
4937
 
4938
- #: settings.php:3868 settings.php:4837
4939
  msgid "Save"
4940
  msgstr "Shrani"
4941
 
4942
  #. translators: %s: Ad Inserter
4943
- #: settings.php:4048
4944
  msgid "ads.txt file: %s virtual ads.txt file"
4945
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4946
 
4947
- #: settings.php:4053 settings.php:4073 strings.php:226
4948
  msgid "Warning"
4949
  msgstr "Opozorilo"
4950
 
4951
  #. translators: %s: Ad Inserter
4952
- #: settings.php:4053
4953
  msgid "%s virtual file ads.txt not found"
4954
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4955
 
4956
- #: settings.php:4061
4957
  msgid "IMPORTANT"
4958
  msgstr "POMEMBNO"
4959
 
4960
- #: settings.php:4061
4961
  msgid "ads.txt file must be placed on the root domain"
4962
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4963
 
4964
- #: settings.php:4066
4965
  msgid "ads.txt file"
4966
  msgstr "datoteka ads.txt"
4967
 
4968
- #: settings.php:4066
4969
  msgid "NOT WRITABLE"
4970
  msgstr "NI ZAPISLJIVO"
4971
 
4972
- #: settings.php:4073
4973
  msgid "file %s not found"
4974
  msgstr "datoteka %s ni najdena"
4975
 
4976
- #: settings.php:4083
4977
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4978
  msgstr ""
4979
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4980
 
4981
  #. translators: %s: Ad Inserter
4982
- #: settings.php:4089
4983
  msgid "%s virtual ads.txt file"
4984
  msgstr "%s navidezna datoteka ads.txt"
4985
 
4986
- #: settings.php:4111
4987
  msgid "Advertising system"
4988
  msgstr "Oglaševalski sistem"
4989
 
4990
- #: settings.php:4112
4991
  msgid "Account ID"
4992
  msgstr "ID Računa"
4993
 
4994
- #: settings.php:4114
4995
  msgid "Certification authority ID"
4996
  msgstr "ID organa za potrjevanje"
4997
 
4998
- #: settings.php:4129
4999
  msgid "Account ID found in block and present in ads.txt"
5000
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
5001
 
5002
- #: settings.php:4133
5003
  msgid "Account ID found in block but not present in ads.txt"
5004
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
5005
 
5006
- #: settings.php:4482
5007
  msgid "Preview block"
5008
  msgstr "Predogled bloka"
5009
 
5010
- #: settings.php:4489
5011
  msgid "Pause block"
5012
  msgstr "Ustavite blok"
5013
 
5014
- #: settings.php:4528
5015
  msgid "Automatic insertion"
5016
  msgstr "Samodejno vstavljanje"
5017
 
5018
  #. translators: %s HTML tags
5019
- #: settings.php:4529 settings.php:5870
5020
  msgid "PHP code processing"
5021
  msgstr "Procesiranje PHP kode"
5022
 
5023
- #: settings.php:4531
5024
  msgid "Device detection"
5025
  msgstr "Zaznavanje naprave"
5026
 
5027
- #: settings.php:4554
5028
  msgid "No active block"
5029
  msgstr "Noben aktiven blok"
5030
 
5031
- #: settings.php:4555
5032
  msgid "No block matches search keywords"
5033
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
5034
 
5035
- #: settings.php:4615
5036
  msgid "Ad unit"
5037
  msgstr "Enota"
5038
 
5039
- #: settings.php:4617
5040
  msgid "Slot ID"
5041
  msgstr "ID mesta"
5042
 
5043
- #: settings.php:4644
5044
  msgid "Copy AdSense code"
5045
  msgstr "Kopiraj kodo AdSense"
5046
 
5047
- #: settings.php:4647
5048
  msgid "Preview AdSense ad"
5049
  msgstr "Predogled oglasa AdSense"
5050
 
5051
- #: settings.php:4650
5052
  msgid "Get AdSense code"
5053
  msgstr "Pridobi kodo AdSense"
5054
 
5055
  #. translators: %s: HTML tags
5056
- #: settings.php:4682
5057
  msgid ""
5058
  "Please %s clear authorization %s with the button %s above and once again "
5059
  "authorize access to your AdSense account."
@@ -5061,29 +5120,21 @@ msgstr ""
5061
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
5062
  "avtorizirajte dostop do vašega računa AdSense."
5063
 
5064
- #: settings.php:4701
5065
  msgid "AdSense Integration"
5066
  msgstr "Integracija AdSense"
5067
 
5068
- #: settings.php:4703
5069
  msgid "AdSense Integration - Step 2"
5070
  msgstr "Integracija AdSense - Korak 2"
5071
 
5072
  #. translators: %s: HTML tags
5073
- #: settings.php:4709
5074
- msgid ""
5075
- "Authorize %s to access your AdSense account. Click on the %s Get "
5076
- "Authorization Code %s button to open a new window where you can allow "
5077
- "access. When you get the code copy it to the field below and click on the "
5078
- "button %s Authorize. %s"
5079
- msgstr ""
5080
- "Avtorizirajte %s za dostop do vašega računa AdSense. Kliknite na gumb %s "
5081
- "Pridobi Avtorizacijsko Kodo, %s da se odpre novo okno kjer lahko dovolite "
5082
- "dostop. Ko dobite kodo jo skopirajte v polje spodaj in kliknite na gumb %s "
5083
- "Avtoriziraj. %s"
5084
 
5085
  #. translators: %s: HTML tags
5086
- #: settings.php:4716
5087
  msgid ""
5088
  "If you get error, can't access ad units or would like to use own Google API "
5089
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -5094,20 +5145,12 @@ msgstr ""
5094
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
5095
 
5096
  #. translators: %s: HTML tags
5097
- #: settings.php:4718
5098
- msgid ""
5099
- "Now you can authorize %s to access your AdSense account. Click on the %s Get "
5100
- "Authorization Code %s button to open a new window where you can allow "
5101
- "access. When you get the code copy it to the field below and click on the "
5102
- "button %s Authorize. %s"
5103
- msgstr ""
5104
- "Zdaj lahko avtorizirate %s za dostop do vašega AdSense računa. Kliknite na "
5105
- "gumb %s Pridobi Avtorizacijsko Kodo %s, da se odpre novo okno kjer lahko "
5106
- "dovolite dostop. Ko dobite kodo, jo skopirajte v polje spodaj in kliknite na "
5107
- "gumb %s Avtoriziraj. %s"
5108
 
5109
  #. translators: %s: HTML tags
5110
- #: settings.php:4725
5111
  msgid ""
5112
  "If you get error %s invalid client %s click on the button %s Clear and "
5113
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -5115,32 +5158,24 @@ msgstr ""
5115
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
5116
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
5117
 
5118
- #: settings.php:4736
5119
- msgid "Get Authorization Code"
5120
- msgstr "Pridobi Avtoriazcijsko Kodo"
5121
-
5122
- #: settings.php:4739
5123
- msgid "Enter Authorization Code"
5124
- msgstr "Vnesi Avorizacijsko Kodo"
5125
-
5126
- #: settings.php:4749
5127
  msgid "Use own API IDs"
5128
  msgstr "Uporabi lastne API ID-je"
5129
 
5130
- #: settings.php:4751
5131
  msgid "Clear and return to Step 1"
5132
  msgstr "Odstrani in se vrni na Korak 1"
5133
 
5134
- #: settings.php:4755
5135
  msgid "Authorize"
5136
  msgstr "Avtoriziraj"
5137
 
5138
- #: settings.php:4771
5139
  msgid "AdSense Integration - Step 1"
5140
  msgstr "Integracija AdSense - Korak 1"
5141
 
5142
  #. translators: %s: Ad Inserter
5143
- #: settings.php:4775
5144
  msgid ""
5145
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
5146
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -5153,12 +5188,12 @@ msgstr ""
5153
  "Odjemalca in Skrivnost Odjemalca."
5154
 
5155
  #. translators: %s: HTML tags
5156
- #: settings.php:4784
5157
  msgid "Go to %s Google APIs and Services console %s"
5158
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
5159
 
5160
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
5161
- #: settings.php:4785
5162
  msgid ""
5163
  "Create %1$s project - if the project and IDs are already created click on "
5164
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
@@ -5167,7 +5202,7 @@ msgstr ""
5167
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
5168
 
5169
  #. translators: %s: HTML tags
5170
- #: settings.php:4786
5171
  msgid ""
5172
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
5173
  "create a new project"
@@ -5176,12 +5211,12 @@ msgstr ""
5176
  "ustvaritev novega projekta"
5177
 
5178
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
5179
- #: settings.php:4787
5180
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
5181
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
5182
 
5183
  #. translators: %s: HTML tags
5184
- #: settings.php:4788
5185
  msgid ""
5186
  "Click on project selection, wait for the project to be created and then and "
5187
  "select %s as the current project"
@@ -5190,44 +5225,44 @@ msgstr ""
5190
  "izberite %s kot trenutni projekt"
5191
 
5192
  #. translators: %s: HTML tags
5193
- #: settings.php:4789
5194
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
5195
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
5196
 
5197
  #. translators: %s: HTML tags
5198
- #: settings.php:4790
5199
  msgid "Search for adsense and enable %s"
5200
  msgstr "Poiščite adsense in omogočite %s"
5201
 
5202
  #. translators: %s: HTML tags
5203
- #: settings.php:4791
5204
  msgid "Click on %s CREATE CREDENTIALS %s"
5205
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
5206
 
5207
  #. translators: %s: HTML tags
5208
- #: settings.php:4792
5209
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
5210
  msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
5211
 
5212
  #. translators: %s: HTML tags
5213
- #: settings.php:4793
5214
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
5215
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
5216
 
5217
  #. translators: %s: HTML tags
5218
- #: settings.php:4794
5219
  msgid "For %s What data will you be accessing? %s select %s User data %s"
5220
  msgstr ""
5221
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
5222
  "podatki %s"
5223
 
5224
  #. translators: %s: HTML tags
5225
- #: settings.php:4795
5226
  msgid "Click on %s What credentials do I need? %s"
5227
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
5228
 
5229
  #. translators: %s: HTML tags
5230
- #: settings.php:4796
5231
  msgid ""
5232
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
5233
  "Consent Screen %s"
@@ -5236,13 +5271,13 @@ msgstr ""
5236
  "Nastavite Zaslon za Soglasje %s"
5237
 
5238
  #. translators: %s: HTML tags
5239
- #: settings.php:4797
5240
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
5241
  msgstr ""
5242
  "Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
5243
 
5244
  #. translators: %s: HTML tags
5245
- #: settings.php:4798
5246
  msgid ""
5247
  "For %s App name %s enter %s and for %s User support email %s select your "
5248
  "Google account email address"
@@ -5251,7 +5286,7 @@ msgstr ""
5251
  "vaš email naslov Google računa"
5252
 
5253
  #. translators: %s: HTML tags
5254
- #: settings.php:4799
5255
  msgid ""
5256
  "For %s Developer contact information %s enter your email address and click "
5257
  "on %s SAVE AND CONTINUE %s"
@@ -5260,7 +5295,7 @@ msgstr ""
5260
  "na %s SHRANI IN NADALJUJ %s"
5261
 
5262
  #. translators: %s: HTML tags
5263
- #: settings.php:4800
5264
  msgid ""
5265
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
5266
  "add your Google account email address"
@@ -5269,7 +5304,7 @@ msgstr ""
5269
  "UPORABNIKE %s in dodajte email naslov vašga Google računa"
5270
 
5271
  #. translators: %s: HTML tags
5272
- #: settings.php:4801
5273
  msgid ""
5274
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
5275
  msgstr ""
@@ -5277,7 +5312,7 @@ msgstr ""
5277
  "NADZORNO PLOŠČO %s"
5278
 
5279
  #. translators: %s: HTML tags
5280
- #: settings.php:4802
5281
  msgid ""
5282
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5283
  "Ad Inserter client %s and then click on %s REFRESH %s"
@@ -5286,14 +5321,14 @@ msgstr ""
5286
  "vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
5287
 
5288
  #. translators: %s: HTML tags
5289
- #: settings.php:4803
5290
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
5291
  msgstr ""
5292
  "Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
5293
  "OPRAVLJENO %s"
5294
 
5295
  #. translators: %s: HTML tags
5296
- #: settings.php:4804
5297
  msgid ""
5298
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5299
  "secret %s"
@@ -5301,75 +5336,75 @@ msgstr ""
5301
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5302
  "%s Skrivnost odjemalca %s"
5303
 
5304
- #: settings.php:4805
5305
  msgid "Copy them to the appropriate fields below"
5306
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5307
 
5308
- #: settings.php:4811
5309
  msgid "Client ID"
5310
  msgstr "ID odjemalca"
5311
 
5312
- #: settings.php:4814
5313
  msgid "Enter Client ID"
5314
  msgstr "Vnesite ID odjemalca"
5315
 
5316
- #: settings.php:4819
5317
  msgid "Client secret"
5318
  msgstr "Skrivnost odjemalca"
5319
 
5320
- #: settings.php:4822
5321
  msgid "Enter Client secret"
5322
  msgstr "Vnesite Skrivnost odjemalca"
5323
 
5324
- #: settings.php:4832
5325
  msgid "Use default API IDs"
5326
  msgstr "Uporabi privzete API ID-je"
5327
 
5328
- #: settings.php:4933
5329
  msgid "All posts"
5330
  msgstr "Vsi prispevki"
5331
 
5332
- #: settings.php:4934
5333
  msgid "All static pages"
5334
  msgstr "Vse statične strani"
5335
 
5336
- #: settings.php:5504
5337
  msgid "Maximize Your Ad Revenue With Header Bidding"
5338
  msgstr "Maksimirajte Vaše Oglasne Prihodke s Preddražbo"
5339
 
5340
- #: settings.php:5509 settings.php:5751 settings.php:5765 settings.php:5794
5341
- #: settings.php:5822
5342
  msgid "Maximize Your Ad Revenue"
5343
  msgstr "Povečajte Vaš Prihodek od Oglasov"
5344
 
5345
- #: settings.php:5518 settings.php:5532
5346
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5347
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5348
 
5349
- #: settings.php:5523 settings.php:5537 settings.php:5756 settings.php:5774
5350
- #: settings.php:5787 settings.php:5788 settings.php:5798 settings.php:5813
5351
  msgid "Looking for AdSense alternative?"
5352
  msgstr "Iščete alternativo za AdSense?"
5353
 
5354
- #: settings.php:5549
5355
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5356
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5357
 
5358
- #: settings.php:5554 settings.php:5748 settings.php:5769 settings.php:5797
5359
- #: settings.php:5817
5360
  msgid "Use Infolinks ads with Adsense to earn more"
5361
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5362
 
5363
- #: settings.php:5566 settings.php:5571 settings.php:5754 settings.php:5779
5364
- #: settings.php:5791 settings.php:5807
5365
- msgid "Supercharge your AdSense revenue by upto 40%"
5366
- msgstr "Nadgradite vaš AdSense zaslužek do 40%"
5367
 
5368
- #: settings.php:5594 settings.php:5644
5369
  msgid "Support plugin development"
5370
  msgstr "Podprite razvoj vtičnika"
5371
 
5372
- #: settings.php:5599 settings.php:5645
5373
  msgid ""
5374
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5375
  "reviewing the plugin on WordPres"
@@ -5377,12 +5412,12 @@ msgstr ""
5377
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5378
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5379
 
5380
- #: settings.php:5599
5381
  msgctxt "Review Ad Inserter"
5382
  msgid "Review"
5383
  msgstr "Ocenite"
5384
 
5385
- #: settings.php:5604
5386
  msgid ""
5387
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5388
  "rating the plugin on WordPres"
@@ -5390,12 +5425,12 @@ msgstr ""
5390
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5391
  "razširiti novico z oceno vtičnika na WordPress-u"
5392
 
5393
- #: settings.php:5604
5394
  msgctxt "Rate Ad Inserter"
5395
  msgid "Rate"
5396
  msgstr "Ocenite"
5397
 
5398
- #: settings.php:5609
5399
  msgid ""
5400
  "Support free Ad Inserter development. If you are making money with Ad "
5401
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -5404,16 +5439,16 @@ msgstr ""
5404
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5405
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5406
 
5407
- #: settings.php:5609
5408
  msgid "Donate"
5409
  msgstr "Donirajte"
5410
 
5411
- #: settings.php:5616 settings.php:5660
5412
  msgid "Average rating of the plugin - Thank you!"
5413
  msgstr "Povprečna ocena vtičnika - Hvala!"
5414
 
5415
  #. translators: %s: Ad Inserter, HTML tags
5416
- #: settings.php:5627
5417
  msgid ""
5418
  "You've been using %s for a while now, and I hope you're happy with it. "
5419
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -5428,24 +5463,24 @@ msgstr ""
5428
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5429
  "bi rekli 'Hvala'."
5430
 
5431
- #: settings.php:5645
5432
  msgid "Review"
5433
  msgstr "Ocena"
5434
 
5435
- #: settings.php:5649
5436
  msgid "Ad Inserter on Twitter"
5437
  msgstr "Ad Inserter na Twitter-ju"
5438
 
5439
- #: settings.php:5650
5440
  msgid "Ad Inserter on Facebook"
5441
  msgstr "Ad Inserter na Facebook-u"
5442
 
5443
- #: settings.php:5653
5444
  msgid "Follow Ad Inserter"
5445
  msgstr "Sledi Ad Inserter-ju"
5446
 
5447
  #. translators: %s: HTML tags
5448
- #: settings.php:5680
5449
  msgid ""
5450
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5451
  "and %s Common Settings %s pages"
@@ -5454,7 +5489,7 @@ msgstr ""
5454
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5455
 
5456
  #. translators: %s: HTML tags
5457
- #: settings.php:5692
5458
  msgid ""
5459
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5460
  "Auto ads, %s %s AMP ads %s"
@@ -5463,7 +5498,7 @@ msgstr ""
5463
  "viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
5464
 
5465
  #. translators: %s: HTML tags
5466
- #: settings.php:5709
5467
  msgid ""
5468
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5469
  "purchase you refer to us"
@@ -5472,7 +5507,7 @@ msgstr ""
5472
  "nakup, ki nam ga posredujete"
5473
 
5474
  #. translators: %s: HTML tags
5475
- #: settings.php:5716
5476
  msgid ""
5477
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5478
  "diagnose and fix the problem."
@@ -5481,7 +5516,7 @@ msgstr ""
5481
  "navodili za diagnozo in rešitvami za težave."
5482
 
5483
  #. translators: %s: HTML tags
5484
- #: settings.php:5720
5485
  msgid ""
5486
  "If you need any kind of help or support, please do not hesitate to open a "
5487
  "thread on the %s support forum. %s"
@@ -5489,57 +5524,61 @@ msgstr ""
5489
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5490
  "nit na %s podpornem forumu. %s"
5491
 
5492
- #: settings.php:5747 settings.php:5806 settings.php:5818
5493
  msgid "Code preview with visual CSS editor"
5494
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5495
 
5496
- #: settings.php:5750 settings.php:5778
5497
  msgid "Ad blocking detection and content protection"
5498
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5499
 
5500
- #: settings.php:5753 settings.php:5808
5501
  msgid "A/B testing - Track ad impressions and clicks"
5502
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5503
 
5504
- #: settings.php:5770
5505
  msgid "Insert ads on AMP pages"
5506
  msgstr "Vstavite oglase na AMP straneh"
5507
 
5508
- #: settings.php:5830
 
 
 
 
5509
  msgid "Looking for Pro Ad Management plugin?"
5510
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5511
 
5512
- #: settings.php:5831
5513
  msgid "To Optimally Monetize your WordPress website?"
5514
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5515
 
5516
  #. Translators: %s: price of Ad Inserter Pro
5517
- #: settings.php:5832
5518
  msgid "Different license types starting from %s"
5519
  msgstr "Različni tipi licenc začenši od %s"
5520
 
5521
  #. translators: %s HTML tags
5522
- #: settings.php:5835
5523
  msgid "%s AdSense Integration %s"
5524
  msgstr "%s Integracija AdSense %s"
5525
 
5526
  #. translators: %s HTML tags
5527
- #: settings.php:5836
5528
  msgid "Syntax highlighting %s editor %s"
5529
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5530
 
5531
  #. translators: %s HTML tags
5532
- #: settings.php:5837
5533
  msgid "%s Code preview %s with visual CSS editor"
5534
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5535
 
5536
  #. translators: %s HTML tags
5537
- #: settings.php:5838
5538
  msgid "Simple user interface - all settings on a single page"
5539
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5540
 
5541
  #. translators: %s HTML tags
5542
- #: settings.php:5839
5543
  msgid ""
5544
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5545
  "image / excerpt"
@@ -5548,27 +5587,27 @@ msgstr ""
5548
  "%s / sliko / izvlečkom"
5549
 
5550
  #. translators: %s HTML tags
5551
- #: settings.php:5840
5552
  msgid "%s Automatic insertion %s between posts on blog pages"
5553
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5554
 
5555
  #. translators: %s HTML tags
5556
- #: settings.php:5841
5557
  msgid "%s Automatic insertion %s before, between and after comments"
5558
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5559
 
5560
  #. translators: %s HTML tags
5561
- #: settings.php:5842
5562
  msgid "%s Automatic insertion %s after %s or before %s tag"
5563
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5564
 
5565
  #. translators: %s HTML tags
5566
- #: settings.php:5843
5567
  msgid "Automatic insertion at %s custom hook positions %s"
5568
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5569
 
5570
  #. translators: %s HTML tags
5571
- #: settings.php:5844
5572
  msgid ""
5573
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5574
  "selectors)"
@@ -5577,17 +5616,17 @@ msgstr ""
5577
  "selektorjev)"
5578
 
5579
  #. translators: %s HTML tags
5580
- #: settings.php:5845
5581
  msgid "%s Insertion exceptions %s for individual posts and pages"
5582
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5583
 
5584
  #. translators: %s HTML tags
5585
- #: settings.php:5846
5586
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5587
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5588
 
5589
  #. translators: %s HTML tags
5590
- #: settings.php:5847
5591
  msgid ""
5592
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5593
  "scrolls)"
@@ -5596,24 +5635,24 @@ msgstr ""
5596
  "se stran pomika)"
5597
 
5598
  #. translators: %s HTML tags
5599
- #: settings.php:5848
5600
  msgid "%s Background ads %s with one or left and right background images"
5601
  msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
5602
 
5603
  #. translators: %s HTML tags
5604
- #: settings.php:5849
5605
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5606
  msgstr ""
5607
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5608
 
5609
  #. translators: %s HTML tags
5610
- #: settings.php:5850
5611
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5612
  msgstr ""
5613
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5614
 
5615
  #. translators: %s HTML tags
5616
- #: settings.php:5851
5617
  msgid ""
5618
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5619
  "visible)"
@@ -5622,7 +5661,7 @@ msgstr ""
5622
  "postane viden)"
5623
 
5624
  #. translators: %s HTML tags
5625
- #: settings.php:5852
5626
  msgid ""
5627
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5628
  msgstr ""
@@ -5630,12 +5669,12 @@ msgstr ""
5630
  "strani)"
5631
 
5632
  #. translators: %s HTML tags
5633
- #: settings.php:5853
5634
  msgid "Block %s alignment and style %s customizations"
5635
  msgstr "%s Poravnave in slogi %s bloka po meri"
5636
 
5637
  #. translators: %s HTML tags
5638
- #: settings.php:5854
5639
  msgid ""
5640
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5641
  "TOS)"
@@ -5643,7 +5682,7 @@ msgstr ""
5643
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5644
 
5645
  #. translators: %s HTML tags
5646
- #: settings.php:5855
5647
  msgid ""
5648
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5649
  "feeds"
@@ -5652,22 +5691,22 @@ msgstr ""
5652
  "virih"
5653
 
5654
  #. translators: %s HTML tags
5655
- #: settings.php:5856
5656
  msgid "%s Ad rotation %s (works also with caching)"
5657
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5658
 
5659
  #. translators: %s HTML tags
5660
- #: settings.php:5857
5661
  msgid "Ad rotation %s optimization based on CTR %s"
5662
  msgstr "Optimizacija vrtenja oglasov %s glede na CTR %s"
5663
 
5664
  #. translators: %s HTML tags
5665
- #: settings.php:5858
5666
  msgid "Create, edit and check %s ads.txt %s file"
5667
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5668
 
5669
  #. translators: %s HTML tags
5670
- #: settings.php:5859
5671
  msgid ""
5672
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5673
  "AdSense)"
@@ -5676,86 +5715,91 @@ msgstr ""
5676
  "AdSense)"
5677
 
5678
  #. translators: %s HTML tags
5679
- #: settings.php:5860
5680
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5681
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5682
 
5683
  #. translators: %s HTML tags
5684
- #: settings.php:5861
5685
  msgid "%s Public web reports %s for clients, export to PDF"
5686
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5687
 
5688
  #. translators: %s HTML tags
5689
- #: settings.php:5862
5690
  msgid "Support for %s A/B testing %s"
5691
  msgstr "Podpora za %s A/B testiranje %s"
5692
 
5693
  #. translators: %s HTML tags
5694
- #: settings.php:5863
5695
  msgid "Frequency capping - %s limit impressions or clicks %s"
5696
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5697
 
5698
  #. translators: %s HTML tags
5699
- #: settings.php:5864
5700
  msgid "Click fraud %s protection %s"
5701
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5702
 
5703
  #. translators: %s HTML tags
5704
- #: settings.php:5865
 
 
 
 
 
5705
  msgid "Support for %s GDPR consent cookie checks %s"
5706
  msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
5707
 
5708
  #. translators: %s HTML tags
5709
- #: settings.php:5866
5710
  msgid "Support for %s lazy loading %s"
5711
  msgstr "Podpora za %s leno nalaganje %s"
5712
 
5713
  #. translators: %s HTML tags
5714
- #: settings.php:5867
5715
  msgid "Support for ads on %s AMP pages %s"
5716
  msgstr "Podpora za oglase na %s AMP straneh %s"
5717
 
5718
  #. translators: %s HTML tags
5719
- #: settings.php:5868
5720
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5721
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5722
 
5723
  #. translators: %s HTML tags
5724
- #: settings.php:5869
5725
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5726
  msgstr ""
5727
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5728
 
5729
  #. translators: %s HTML tags
5730
- #: settings.php:5871
5731
  msgid "%s Banner %s code generator"
5732
  msgstr "Generator kode za %s pasice %s"
5733
 
5734
  #. translators: %s HTML tags
5735
- #: settings.php:5872
5736
  msgid "Support for %s header and footer %s code"
5737
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5738
 
5739
  #. translators: %s HTML tags
5740
- #: settings.php:5873
5741
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5742
  msgstr ""
5743
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5744
 
5745
  #. translators: %s HTML tags
5746
- #: settings.php:5874
5747
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5748
  msgstr ""
5749
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5750
  "strežnika"
5751
 
5752
  #. translators: %s HTML tags
5753
- #: settings.php:5875
5754
  msgid "Client-side %s mobile device detection %s (works with caching)"
5755
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5756
 
5757
  #. translators: %s HTML tags
5758
- #: settings.php:5876
5759
  msgid ""
5760
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5761
  "protection"
@@ -5764,12 +5808,12 @@ msgstr ""
5764
  "vsebine"
5765
 
5766
  #. translators: %s HTML tags
5767
- #: settings.php:5877
5768
  msgid "%s Ad blocking statistics %s"
5769
  msgstr "%s Statistika blokiranja oglasov %s"
5770
 
5771
  #. translators: %s HTML tags
5772
- #: settings.php:5878
5773
  msgid ""
5774
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5775
  "referrers, operating systems, browsers"
@@ -5778,75 +5822,75 @@ msgstr ""
5778
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5779
 
5780
  #. translators: %s HTML tags
5781
- #: settings.php:5879
5782
  msgid ""
5783
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5784
  msgstr ""
5785
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5786
 
5787
  #. translators: %s HTML tags
5788
- #: settings.php:5880
5789
  msgid "%s Multisite options %s to limit settings on the sites"
5790
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5791
 
5792
  #. translators: %s HTML tags
5793
- #: settings.php:5881
5794
  msgid "%s Import/Export %s block or plugin settings"
5795
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5796
 
5797
  #. translators: %s HTML tags
5798
- #: settings.php:5882
5799
  msgid "%s Insertion scheduling %s with fallback option"
5800
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5801
 
5802
  #. translators: %s HTML tags
5803
- #: settings.php:5883
5804
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5805
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5806
 
5807
  #. translators: %s HTML tags
5808
- #: settings.php:5884
5809
  msgid "Simple troubleshooting with many %s debugging functions %s"
5810
  msgstr ""
5811
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5812
 
5813
  #. translators: %s HTML tags
5814
- #: settings.php:5885
5815
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5816
  msgstr ""
5817
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5818
 
5819
  #. translators: %s HTML tags
5820
- #: settings.php:5886
5821
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5822
  msgstr ""
5823
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5824
 
5825
  #. translators: %s HTML tags
5826
- #: settings.php:5887
5827
  msgid ""
5828
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5829
  msgstr ""
5830
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5831
 
5832
  #. translators: %s HTML tags
5833
- #: settings.php:5888
5834
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5835
  msgstr ""
5836
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5837
 
5838
  #. translators: %s HTML tags
5839
- #: settings.php:5889
5840
  msgid "No ads on the settings page"
5841
  msgstr "Stran z nastavitvami brez oglasov"
5842
 
5843
  #. translators: %s HTML tags
5844
- #: settings.php:5890
5845
  msgid "Premium support"
5846
  msgstr "Vrhunska podpora"
5847
 
5848
  #. translators: %s HTML tags
5849
- #: settings.php:5893
5850
  msgid ""
5851
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5852
  "website with many advertising features to automatically insert adverts on "
@@ -5873,82 +5917,82 @@ msgstr ""
5873
  "bodo ohranile)."
5874
 
5875
  #. translators: %s HTML tags
5876
- #: settings.php:5906
5877
  msgid "Looking for %s Pro Ad Management plugin? %s"
5878
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5879
 
5880
  #. translators: %s HTML tags
5881
- #: settings.php:5911
5882
  msgid "Ads between posts"
5883
  msgstr "Oglasi med prispevki"
5884
 
5885
  #. translators: %s HTML tags
5886
- #: settings.php:5912
5887
  msgid "Ads between comments"
5888
  msgstr "Oglasi med komentarji"
5889
 
5890
  #. translators: %s HTML tags
5891
- #: settings.php:5913
5892
  msgid "Support via email"
5893
  msgstr "Podpora prek elektronske pošte"
5894
 
5895
  #. translators: %s HTML tags
5896
- #: settings.php:5919
5897
  msgid "%s Sticky positions %s"
5898
  msgstr "%s Lepljivi položaji %s"
5899
 
5900
  #. translators: %s HTML tags
5901
- #: settings.php:5920
5902
  msgid "%s Limit insertions %s"
5903
  msgstr "%s Omeji vstavljanja %s"
5904
 
5905
  #. translators: %s HTML tags
5906
- #: settings.php:5921
5907
  msgid "%s Clearance %s options"
5908
  msgstr "Možnosti %s izogibanja %s"
5909
 
5910
  #. translators: %s HTML tags
5911
- #: settings.php:5927
5912
  msgid "Ad rotation"
5913
  msgstr "Vrtenje oglasov"
5914
 
5915
  #. translators: %s HTML tags
5916
- #: settings.php:5928
5917
  msgid "%s A/B testing %s"
5918
  msgstr "%s A/B testiranje %s"
5919
 
5920
  #. translators: %s HTML tags
5921
- #: settings.php:5929
5922
  msgid "%s Ad tracking %s"
5923
  msgstr "%s Sledenje oglasom %s"
5924
 
5925
  #. translators: %s HTML tags
5926
- #: settings.php:5935
5927
  msgid "Support for %s AMP pages %s"
5928
  msgstr "Podpora za %s AMP strani %s"
5929
 
5930
  #. translators: %s HTML tags
5931
- #: settings.php:5936
5932
  msgid "%s Ad blocking detection %s"
5933
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5934
 
5935
  #. translators: %s HTML tags
5936
- #: settings.php:5937
5937
  msgid "%s Mobile device detection %s"
5938
  msgstr "%s Zaznavanje mobilne naprave %s"
5939
 
5940
  #. translators: %s HTML tags
5941
- #: settings.php:5944
5942
  msgid "64 code blocks"
5943
  msgstr "64 kodnih blokov"
5944
 
5945
  #. translators: %s HTML tags
5946
- #: settings.php:5945
5947
  msgid "%s GEO targeting %s"
5948
  msgstr "%s GEO ciljanje %s"
5949
 
5950
  #. translators: %s HTML tags
5951
- #: settings.php:5946
5952
  msgid "%s Scheduling %s"
5953
  msgstr "%s Urnik %s"
5954
 
@@ -6868,6 +6912,37 @@ msgstr ""
6868
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
6869
  "na optimalna mesta"
6870
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6871
  #~ msgid "The latest PHP version: "
6872
  #~ msgstr "Zadnja različica PHP: "
6873
 
@@ -7344,9 +7419,6 @@ msgstr ""
7344
  #~ "preverite obstoječe niti in odprite novo, če ne nejdete odgovorov za vašo "
7345
  #~ "težavo."
7346
 
7347
- #~ msgid "Support Forum"
7348
- #~ msgstr "Podporni Forum"
7349
-
7350
  #~ msgid ""
7351
  #~ "Need more blocks, sticky ads, GEO targeting, impression and click "
7352
  #~ "tracking? Upgrade to Ad Inserter Pro"
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-08-28 10:14:49+00:00\n"
8
+ "PO-Revision-Date: 2022-08-28 12:17+0200\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
16
  "%100<=4 ? 2 : 3);\n"
17
+ "X-Generator: Poedit 3.1.1\n"
18
 
19
+ #: ad-inserter.php:353
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:369
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:376
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:462
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:469
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:478
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:485
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:496
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
+ #: ad-inserter.php:503
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:1173
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
+ #: ad-inserter.php:1178
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:1183 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:1188 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:1193 strings.php:106
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
+ #: ad-inserter.php:1198 strings.php:171
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
+ #: ad-inserter.php:1245
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
+ #: ad-inserter.php:1249
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
+ #: ad-inserter.php:1552
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
+ #: ad-inserter.php:1926 ad-inserter.php:3390
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
+ #: ad-inserter.php:2679
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
+ #: ad-inserter.php:2679
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
+ #: ad-inserter.php:2680
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
+ #: ad-inserter.php:2681
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
+ #: ad-inserter.php:2682
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
+ #: ad-inserter.php:2683
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
+ #: ad-inserter.php:2684
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:3078
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:3081
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
+ #: ad-inserter.php:3085
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
+ #: ad-inserter.php:3090
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:3093
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:3106
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:3108
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:3114
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:3131 ad-inserter.php:3173
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:3138
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:3145
205
  msgid "Error: plugin settings corrupt"
206
  msgstr "Napaka: okvarjene nastavitve vtičnika"
207
 
208
+ #: ad-inserter.php:3155
209
  msgctxt "Menu item"
210
  msgid "Settings"
211
  msgstr "Nastavitve"
212
 
213
+ #: ad-inserter.php:3187
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:3187
222
  msgid "Safe mode"
223
  msgstr "Varni način"
224
 
225
  #. translators: %s: Ad Inserter
226
+ #: ad-inserter.php:3282
227
  msgctxt "Meta box name"
228
  msgid "%s Individual Exceptions"
229
  msgstr "Posamezne Izjeme za %s"
230
 
231
+ #: ad-inserter.php:3311 ad-inserter.php:11948 class.php:2605
232
  #: includes/preview.php:2419 includes/preview.php:2464
233
+ #: includes/preview.php:2501 settings.php:4646 strings.php:3
234
  msgid "Block"
235
  msgstr "Blok"
236
 
237
+ #: ad-inserter.php:3312 includes/functions.php:4820 settings.php:4647
238
+ #: settings.php:4737
239
  msgid "Name"
240
  msgstr "Ime"
241
 
242
+ #: ad-inserter.php:3315 settings.php:1335
243
  msgid "Default insertion"
244
  msgstr "Privzeto vstavljanje"
245
 
246
  #. translators: For this post or page
247
+ #: ad-inserter.php:3318
248
  msgctxt "Page"
249
  msgid "For this"
250
  msgstr "Za to"
251
 
252
+ #: ad-inserter.php:3319
253
  msgctxt "Post"
254
  msgid "For this"
255
  msgstr "Za ta"
256
 
257
+ #: ad-inserter.php:3331
258
  msgctxt "Enabled/disabled on all"
259
  msgid "pages"
260
  msgstr "straneh"
261
 
262
+ #: ad-inserter.php:3334
263
  msgctxt "Enabled/disabled on all"
264
  msgid "posts"
265
  msgstr "prispevkih"
266
 
267
+ #: ad-inserter.php:3351 ad-inserter.php:3363 strings.php:177
268
  msgid "Enabled"
269
  msgstr "Omogočeno"
270
 
271
  #. translators: Menu items
272
+ #: ad-inserter.php:3351 ad-inserter.php:3363
273
+ #: includes/functions-check-now.php:2402 includes/functions.php:3116
274
+ #: includes/functions.php:3479 strings.php:16
275
  msgid "Disabled"
276
  msgstr "Onemogočeno"
277
 
278
+ #: ad-inserter.php:3353
279
  msgid "No individual exceptions"
280
  msgstr "Ni posameznih izjem"
281
 
282
  #. translators: Not enabled for pages or posts
283
+ #: ad-inserter.php:3355
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:3383
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:3388
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:3391 settings.php:1313
302
  msgid "Tag / Archive pages"
303
  msgstr "Strani oznak / arhiva"
304
 
305
+ #: ad-inserter.php:3393
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:3394
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:3396
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:3398
327
  msgid "Individual Exceptions"
328
  msgstr "Posamezne Izjeme"
329
 
330
+ #: ad-inserter.php:3444
331
  msgid "STATIC PAGE"
332
  msgstr "STATIČNA STRAN"
333
 
334
+ #: ad-inserter.php:3447
335
  msgid "POST"
336
  msgstr "PRISPEVEK"
337
 
338
+ #: ad-inserter.php:3450
339
  msgid "HOMEPAGE"
340
  msgstr "DOMAČA STRAN"
341
 
342
+ #: ad-inserter.php:3453
343
  msgid "CATEGORY PAGE"
344
  msgstr "STRAN KATEGORIJE"
345
 
346
+ #: ad-inserter.php:3456
347
  msgid "SEARCH PAGE"
348
  msgstr "STRAN ISKANJE"
349
 
350
+ #: ad-inserter.php:3459
351
  msgid "ARCHIVE PAGE"
352
  msgstr "STRAN ARHIVA"
353
 
354
+ #: ad-inserter.php:3462
355
  msgid "ERROR 404 PAGE"
356
  msgstr "STRAN NAPAKA 404"
357
 
358
+ #: ad-inserter.php:3465
359
  msgid "AJAX CALL"
360
  msgstr "AJAX KLIC"
361
 
362
+ #: ad-inserter.php:3468
363
  msgid "UNKNOWN PAGE TYPE"
364
  msgstr "NEZNAN TIP STRANI"
365
 
366
+ #: ad-inserter.php:3485
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:3486
371
  msgid "AD BLOCKING STATUS UNKNOWN"
372
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
373
 
374
  #. translators: %s: AdSense Auto Ads
375
+ #: ad-inserter.php:3515
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:3661
384
  msgid "Code for insertion"
385
  msgstr "Koda za vstavljanje"
386
 
387
+ #: ad-inserter.php:3661
388
  msgid "character"
389
  msgid_plural "characters"
390
  msgstr[0] "znak"
392
  msgstr[2] "znaki"
393
  msgstr[3] "znakov"
394
 
395
+ #: ad-inserter.php:3676
396
  msgid "Header code"
397
  msgstr "Koda v glavi"
398
 
399
+ #: ad-inserter.php:3676
400
  msgctxt "Header code"
401
  msgid "DISABLED"
402
  msgstr "ONEMOGOČENA"
403
 
404
+ #: ad-inserter.php:3676 ad-inserter.php:3941
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:3694
413
  msgid "Click to delete the cookie for the consents"
414
  msgstr "Klikni za brisanje piškotka za soglasja"
415
 
416
+ #: ad-inserter.php:3698 ad-inserter.php:3950
417
  msgid "UNFILTERED HTML DISABLED"
418
  msgstr "NEFILTRIRANI HTML ONEMOGOČEN"
419
 
420
+ #: ad-inserter.php:3941
421
  msgid "Footer code"
422
  msgstr "Koda v nogi"
423
 
424
+ #: ad-inserter.php:3941
425
  msgctxt "Footer code"
426
  msgid "DISABLED"
427
  msgstr "ONEMOGOČENA"
428
 
429
+ #: ad-inserter.php:3955
430
  msgid "JAVASCRIPT NOT WORKING"
431
  msgstr "JAVASCRIPT NE DELA"
432
 
433
+ #: ad-inserter.php:3955
434
  msgid "NO JAVASCRIPT ERRORS"
435
  msgstr "BREZ JAVASCRIPT NAPAK"
436
 
437
+ #: ad-inserter.php:3955
438
  msgid "JAVASCRIPT ERRORS"
439
  msgstr "JAVASCRIPT NAPAKE"
440
 
441
  #. translators: block name (block with default settings)
442
+ #: ad-inserter.php:6897
443
  msgctxt "Block name"
444
  msgid "Default"
445
  msgstr "Privzeti"
446
 
447
  #. translators: %s: Ad Inserter
448
+ #: ad-inserter.php:7346 ad-inserter.php:7663
449
  msgid "Invalid data received - %s settings not saved."
450
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
451
 
452
  #. translators: %s: Ad Inserter
453
+ #: ad-inserter.php:7637
454
  msgid "Error importing %s settings."
455
  msgstr "Napaka pri uvozu %s nastavitev."
456
 
457
+ #: ad-inserter.php:7638
458
  msgid "Error importing settings for block"
459
  msgid_plural "Error importing settings for blocks:"
460
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
462
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
463
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
464
 
465
+ #: ad-inserter.php:7661
466
  msgid "Settings saved."
467
  msgstr "Nastavitve shranjene."
468
 
469
+ #: ad-inserter.php:7683
470
  msgid "Settings cleared."
471
  msgstr "Nastavitve ponastavljene."
472
 
473
  #. Translators: Post/Static page must have between X and Y words
474
+ #: ad-inserter.php:8067 ad-inserter.php:8069 ad-inserter.php:8092
475
+ #: settings.php:2365
476
  msgid "word"
477
  msgid_plural "words"
478
  msgstr[0] "besedo"
480
  msgstr[2] "besede"
481
  msgstr[3] "besed"
482
 
483
+ #: ad-inserter.php:8106 ad-inserter.php:8233
484
  msgid "HTML TAGS REMOVED"
485
  msgstr "HTML ZNAČKE ODSTRANJENE"
486
 
487
+ #: ad-inserter.php:8312
488
  msgid "BEFORE COMMENTS"
489
  msgstr "PRED KOMENTARJI"
490
 
491
+ #: ad-inserter.php:8437
492
  msgid "AFTER COMMENTS"
493
  msgstr "PO KOMETARJIH"
494
 
495
+ #: ad-inserter.php:8514
496
  msgid "BETWEEN COMMENTS"
497
  msgstr "MED KOMENTARJI"
498
 
499
+ #: ad-inserter.php:11175 ad-inserter.php:11276
500
  msgctxt "category name"
501
  msgid "Uncategorized"
502
  msgstr "Nekategorizirano"
503
 
504
+ #: ad-inserter.php:11542
505
  msgid "requires WordPress 4.6 or newer"
506
  msgstr "potrebuje WordPress 4.6 ali novejši"
507
 
508
+ #: ad-inserter.php:11542
509
  msgid "Please update!"
510
  msgstr "Prosimo, posodobite!"
511
 
512
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
513
  #. name with HTML tags will be added)
514
+ #: ad-inserter.php:11816
515
  msgid "Thank you for installing"
516
  msgstr "Hvala za namestitev vtičnika"
517
 
518
  #. translators: Opt-in message: %s: HTML tags
519
+ #: ad-inserter.php:11818
520
  msgid ""
521
  "We would like to %s track its usage %s on your site. This is completely "
522
  "optional and can be disabled at any time."
524
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
525
  "izbirno in se lahko izključi kadarkoli."
526
 
527
+ #: ad-inserter.php:11820
528
  msgid ""
529
  "We don't record any sensitive data, only information regarding the WordPress "
530
  "environment and plugin usage, which will help us to make improvements to the "
534
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
535
 
536
  #. translators: Deactivation message: %s: HTML tags
537
+ #: ad-inserter.php:11860
538
  msgid ""
539
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
540
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
545
  "nam %s in poskušali vam bomo pomagati."
546
 
547
  #. translators: %s: Ad Inserter
548
+ #: ad-inserter.php:11906
549
  msgid "%s block."
550
  msgstr "%s blok."
551
 
552
  #. translators: widget title
553
+ #: ad-inserter.php:11922 ad-inserter.php:11957
554
  msgid "Processing log"
555
  msgstr "Dnevnik procesiranja"
556
 
557
  #. translators: widget title
558
+ #: ad-inserter.php:11924 ad-inserter.php:11958
559
  msgid "Dummy widget"
560
  msgstr "Prazen gradnik"
561
 
562
  #. translators: widget title
563
+ #: ad-inserter.php:11926 ad-inserter.php:11956
564
  msgid "Debugging tools"
565
  msgstr "Orodja za razhroščevanje"
566
 
567
  #. translators: block status (widget title)
568
+ #: ad-inserter.php:11933
569
  msgctxt "block"
570
  msgid "PAUSED"
571
  msgstr "USTAVLJEN"
572
 
573
+ #: ad-inserter.php:11934
574
  msgid "WIDGET DISABLED"
575
  msgstr "GRADNIK ONEMOGOČEN"
576
 
577
+ #: ad-inserter.php:11935
578
  msgid "Unknown block"
579
  msgstr "Neznan blok"
580
 
581
+ #: ad-inserter.php:11943 includes/functions-check-now.php:3262
582
+ #: includes/functions.php:5299 settings.php:1365
583
  msgid "Title"
584
  msgstr "Naslov"
585
 
586
+ #: ad-inserter.php:11965
587
  msgctxt "Widget"
588
  msgid "Sticky"
589
  msgstr "Lepljiv"
590
 
591
+ #: ad-inserter.php:12016
592
  msgid ""
593
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
594
  "Inserter you need to first deactivate Ad Inserter Pro."
597
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
598
  "Inserter Pro."
599
 
600
+ #: ad-inserter.php:12017
601
  msgid ""
602
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
603
  "will clear all settings that are available only in the Pro version "
608
  "različici (dodatne nastavitve blokov in vtičnika)!"
609
 
610
  #. translators: %s: Ad Inserter
611
+ #: class.php:647 class.php:656 class.php:659
612
  msgid "PHP error in %s block"
613
  msgstr "PHP napaka v bloku %s"
614
 
615
+ #: class.php:2555
616
  msgid "Counters"
617
  msgstr "Števci"
618
 
619
+ #: class.php:2559
620
  msgid "Content"
621
  msgstr "Vsebina"
622
 
623
+ #: class.php:2564
624
  msgid "Excerpt"
625
  msgstr "Izvleček"
626
 
627
+ #: class.php:2569 strings.php:17
628
  msgid "Before post"
629
  msgstr "Pred prispevkom"
630
 
631
+ #: class.php:2574 strings.php:18
632
  msgid "After post"
633
  msgstr "Za prispevkom"
634
 
635
+ #: class.php:2579 strings.php:25
636
  msgid "Between posts"
637
  msgstr "Med prispevki"
638
 
639
+ #: class.php:2584 settings.php:2099 settings.php:4664
640
  msgid "Widget"
641
  msgstr "Gradnik"
642
 
643
+ #: class.php:2589 settings.php:4662
644
  msgid "PHP function call"
645
  msgstr "Klic PHP funkcije"
646
 
647
  #. Translators: %s: custom hook name
648
+ #: class.php:2599
649
  msgid "Custom hook %s call"
650
  msgstr "Klic ročice po meri %s"
651
 
652
+ #: class.php:2637
653
  msgid "AJAX REQUEST"
654
  msgstr "AJAX ZAHTEVEK"
655
 
656
+ #: class.php:2640
657
  msgid "Ajax request for block in iframe"
658
  msgstr "Ajax zahtevek za blok v iframe-u"
659
 
660
+ #: class.php:2677
661
  msgid "Ajax request url, click to open it in a new tab"
662
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
663
 
664
+ #: class.php:2680
665
  msgid "IN THE LOOP"
666
  msgstr "V ZANKI"
667
 
668
+ #: class.php:2680
669
  msgid "YES"
670
  msgstr "DA"
671
 
672
+ #: class.php:2680
673
  msgid "NO"
674
  msgstr "NE"
675
 
676
+ #: class.php:2715
677
  msgid "BLOCK"
678
  msgstr "BLOK"
679
 
680
+ #: class.php:2715
681
  msgctxt "block or widget"
682
  msgid "INSERTED BUT NOT VISIBLE"
683
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
684
 
685
+ #: class.php:2930
686
  msgctxt "viewports"
687
  msgid "ALL"
688
  msgstr "VSI"
689
 
690
+ #: class.php:2967 class.php:3008 class.php:4785 strings.php:283
691
  msgctxt "Block"
692
  msgid "HIDDEN"
693
  msgstr "SKRIT"
694
 
695
+ #: class.php:3015 class.php:4788 strings.php:282
696
  msgctxt "Block"
697
  msgid "VISIBLE"
698
  msgstr "VIDEN"
699
 
700
+ #: class.php:3083
701
  msgctxt "fallback"
702
  msgid "INACTIVE"
703
  msgstr "NEAKTIVNA"
704
 
705
+ #: class.php:3084
706
  msgctxt "fallback"
707
  msgid "ACTIVE"
708
  msgstr "AKTIVNA"
709
 
710
+ #: class.php:3106
711
  msgctxt "Block"
712
  msgid "FALLBACK CODE"
713
  msgstr "REZERVNA KODA"
714
 
715
+ #: class.php:3851 class.php:3950
716
  msgid "ACTIVE GROUPS"
717
  msgstr "AKTIVNE SKUPINE"
718
 
719
+ #: class.php:4457
720
  msgid "start='%s' end='%s' days='%s' type='%s'"
721
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
722
 
723
+ #: class.php:4465
724
  msgid "parameters='%s' type='%s'"
725
  msgstr "parametri='%s' tip='%s'"
726
 
727
+ #: class.php:4467
728
  msgid "cookies='%s' type='%s'"
729
  msgstr "piškotki='%s' tip='%s'"
730
 
731
  #. translators: %s: list parameters and type
732
+ #: class.php:4469
733
  msgid "referers='%s' type='%s'"
734
  msgstr "napotitelji='%s' tip='%s'"
735
 
736
  #. translators: %s: list parameters and type
737
+ #: class.php:4471
738
  msgid "clients='%s' type='%s'"
739
  msgstr "odjemalci='%s' tip='%s'"
740
 
741
  #. translators: %s: list parameters and type
742
+ #: class.php:4667
743
  msgid "countries='%s' type='%s'"
744
  msgstr "države='%s' tip='%s'"
745
 
746
  #. translators: %s: list parameters and type
747
+ #: class.php:4669
748
  msgid "ip addresses='%s' type='%s'"
749
  msgstr "ip naslovi='%s' tip='%s'"
750
 
751
+ #: class.php:4785 class.php:4788
752
  msgid "viewport='%s' type='%s'"
753
  msgstr "pogled='%s' tip='%s'"
754
 
755
+ #: class.php:4923 strings.php:284
756
  msgctxt "alternative block"
757
  msgid "FALLBACK"
758
  msgstr "REZERVA"
759
 
760
+ #: class.php:5577 strings.php:276
761
  msgid "BEFORE"
762
  msgstr "PRED"
763
 
764
+ #: class.php:5585 strings.php:278
765
  msgid "PREPEND CONTENT"
766
  msgstr "DODAJ PRED VSEBINO"
767
 
768
+ #: class.php:5589 strings.php:279
769
  msgid "APPEND CONTENT"
770
  msgstr "DODAJ ZA VSEBINO"
771
 
772
+ #: class.php:5593 strings.php:280
773
  msgid "REPLACE CONTENT"
774
  msgstr "NADOMESTI VSEBINO"
775
 
776
+ #: class.php:5597 strings.php:281
777
  msgid "REPLACE ELEMENT"
778
  msgstr "NADOMESTI ELEMENT"
779
 
780
+ #: class.php:5608 strings.php:277
781
  msgid "AFTER"
782
  msgstr "ZA"
783
 
784
+ #: class.php:5677 includes/preview.php:2464 includes/preview.php:2501
785
  msgid "Code"
786
  msgstr "Koda"
787
 
788
+ #: class.php:5680
789
  msgid "for block"
790
  msgstr "za blok"
791
 
792
+ #: class.php:9964
793
  msgid ""
794
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
795
  "extension for PHP."
807
  msgstr "Ponastavi"
808
 
809
  #: includes/editor.php:6 includes/placeholders.php:352
810
+ #: includes/preview.php:2408 settings.php:3978 strings.php:230 strings.php:288
811
  msgid "Cancel"
812
  msgstr "Prekliči"
813
 
824
  "Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
825
  "blokiranje oglasov."
826
 
827
+ #: includes/editor.php:261 settings.php:331
828
  msgid "Error loading page"
829
  msgstr "Napaka pri nalaganju strani"
830
 
833
  msgid "PAGE BLOCKED"
834
  msgstr "STRAN BLOKIRANA"
835
 
836
+ #: includes/functions-check-now.php:288 includes/functions.php:326
837
  msgid "%d of %d names shown"
838
  msgstr "Prikazanih %d od %d imen"
839
 
840
  #. translators: %s: name filter
841
+ #: includes/functions-check-now.php:307 includes/functions.php:345
842
  msgid "No name matches filter"
843
  msgstr "Noben podatek ne ustreza filtru"
844
 
845
  #. translators: %s: Ad Inserter Pro
846
+ #: includes/functions-check-now.php:396 includes/functions.php:437
847
  msgid ""
848
  "Import %s settings when saving - if checked, the encoded settings below will "
849
  "be imported for all blocks and settings"
859
  msgid "Saved settings for"
860
  msgstr "Shranjene nastavitve za"
861
 
862
+ #: includes/functions-check-now.php:420 includes/functions.php:472
863
  msgid "License Key"
864
  msgstr "Licenčni Ključ"
865
 
866
+ #: includes/functions-check-now.php:423 includes/functions.php:475
867
  msgid "License Key for"
868
  msgstr "Licenčni Ključ za"
869
 
870
+ #: includes/functions-check-now.php:425 includes/functions.php:477
871
  msgid "Open license page"
872
  msgstr "Odpri licenčno stran"
873
 
874
+ #: includes/functions-check-now.php:432 includes/functions.php:484
875
  msgid "Hide license key"
876
  msgstr "Skrij licenčni ključ"
877
 
878
+ #: includes/functions-check-now.php:432 includes/functions.php:484
879
  msgid "Hide key"
880
  msgstr "Skrij ključ"
881
 
882
+ #: includes/functions-check-now.php:447 includes/functions.php:501
883
  msgid "Main content element"
884
  msgstr "Glavni element vsebine"
885
 
886
+ #: includes/functions-check-now.php:450 includes/functions.php:504
887
  msgid ""
888
  "Main content element (#id or .class) for 'Stick to the content' position. "
889
  "Leave empty unless position is not properly calculated."
891
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
892
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
893
 
894
+ #: includes/functions-check-now.php:451 includes/functions.php:505
895
+ #: settings.php:1522 settings.php:1562 settings.php:3105
896
  msgid "Open HTML element selector"
897
  msgstr "Odpri izbirnik HTML elementa"
898
 
899
+ #: includes/functions-check-now.php:456 includes/functions.php:510
900
  msgid "Lazy loading offset"
901
  msgstr "Zamik za leno nalaganje"
902
 
903
+ #: includes/functions-check-now.php:459 includes/functions.php:513
904
  msgid "Offset of the block from the visible viewport when it should be loaded"
905
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
906
 
907
+ #: includes/functions-check-now.php:470 includes/functions.php:581
908
  msgid "Export / Import Block Settings"
909
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
910
 
911
+ #: includes/functions-check-now.php:485 includes/functions.php:598
912
  msgid "Track impressions and clicks for this block"
913
  msgstr "Sledi prikazom in klikom za ta blok"
914
 
915
+ #: includes/functions-check-now.php:485 includes/functions.php:598
916
  msgid " - global tracking disabled"
917
  msgstr " - globalno sledenje onemogočeno"
918
 
919
+ #: includes/functions-check-now.php:492 includes/functions.php:606
920
+ #: includes/functions.php:4992
921
  msgid "Generate PDF report"
922
  msgstr "Generiraj PDF poročilo"
923
 
924
+ #: includes/functions-check-now.php:497 includes/functions.php:620
925
  msgid "Open public report"
926
  msgstr "Odpri javno poročilo"
927
 
928
+ #: includes/functions-check-now.php:511 includes/functions.php:634
929
  msgid "Toggle Ad Blocking Statistics"
930
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
931
 
932
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
933
+ #: includes/functions.php:642 includes/functions.php:4973
934
  msgid "Toggle Statistics"
935
  msgstr "Preklopi Statistiko"
936
 
937
+ #: includes/functions-check-now.php:528 includes/functions.php:651
938
  msgid "Pin list"
939
  msgstr "Pripni seznam"
940
 
941
  #. translators: %s: Ad Inserter Pro
942
+ #: includes/functions-check-now.php:543 includes/functions.php:674
943
  msgid "%s license key is not set. Continue?"
944
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
945
 
946
  #. translators: %s: Ad Inserter Pro
947
+ #: includes/functions-check-now.php:547 includes/functions.php:678
948
  msgid "Invalid %s license key. Continue?"
949
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
950
 
951
  #. translators: %s: Ad Inserter Pro
952
+ #: includes/functions-check-now.php:551 includes/functions.php:682
953
  msgid "%s license overused. Continue?"
954
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
955
 
956
+ #: includes/functions-check-now.php:555 includes/functions.php:692
957
+ #: settings.php:1270 settings.php:2488
958
  msgid "Save Settings"
959
  msgstr "Shrani Nastavitve"
960
 
961
+ #: includes/functions-check-now.php:615 includes/functions.php:760
962
  #: includes/preview.php:2596
963
  msgid "Horizontal position"
964
  msgstr "Vodoravni položaj"
965
 
966
+ #: includes/functions-check-now.php:638 includes/functions.php:785
967
  msgid ""
968
  "Horizontal margin from the content or screen edge, empty means default value "
969
  "from CSS"
971
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
972
  "iz CSS"
973
 
974
+ #: includes/functions-check-now.php:646 includes/functions.php:793
975
  #: includes/preview.php:2656
976
  msgid "Vertical position"
977
  msgstr "Navpični položaj"
978
 
979
+ #: includes/functions-check-now.php:661 includes/functions.php:808
980
  msgid ""
981
  "Vertical margin from the top or bottom screen edge, empty means default "
982
  "value from CSS"
984
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
985
  "iz CSS"
986
 
987
+ #: includes/functions-check-now.php:686 includes/functions.php:839
988
  #: includes/preview.php:2711
989
  msgid "Animation"
990
  msgstr "Animacija"
1001
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
1002
  "selektorjem (#id ali .razred) postane viden"
1003
 
1004
+ #: includes/functions-check-now.php:717 includes/functions.php:874
1005
+ #: includes/functions.php:901
1006
  msgid "Offset"
1007
  msgstr "Zamik"
1008
 
1009
+ #: includes/functions-check-now.php:717 includes/functions.php:874
1010
+ #: includes/functions.php:901
1011
  msgid "Offset of trigger element"
1012
  msgstr "Zamik sprožilnega elementa"
1013
 
1014
+ #: includes/functions-check-now.php:721 includes/functions.php:878
1015
+ #: includes/functions.php:905 settings.php:1577
1016
  msgid "Delay"
1017
  msgstr "Zakasnitev"
1018
 
1019
+ #: includes/functions-check-now.php:721 includes/functions.php:878
1020
  msgid "Delay animation after trigger condition"
1021
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
1022
 
1029
  msgstr "Sproži animacijo samo enkrat"
1030
 
1031
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
1032
+ #: includes/functions-check-now.php:2546 includes/functions.php:1058
1033
+ #: includes/functions.php:3268 includes/functions.php:3284
1034
  msgid "Tracking is globally disabled"
1035
  msgstr "Sledenje je globalno onemogočeno"
1036
 
1037
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
1038
+ #: includes/functions-check-now.php:2550 includes/functions.php:1062
1039
+ #: includes/functions.php:3272 includes/functions.php:3288
1040
  msgid "Tracking for this block is disabled"
1041
  msgstr "Sledenje za ta blok je onemogočeno"
1042
 
1043
+ #: includes/functions-check-now.php:780 includes/functions.php:1069
1044
  msgid "Double click to toggle controls in public reports"
1045
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1046
 
1047
+ #: includes/functions-check-now.php:786 includes/functions.php:1075
1048
+ #: includes/functions.php:4542 settings.php:3898 settings.php:3934
1049
+ #: settings.php:3995 strings.php:244
1050
  msgid "Loading..."
1051
  msgstr "Nalagam..."
1052
 
1053
+ #: includes/functions-check-now.php:807 includes/functions.php:1096
1054
  msgid ""
1055
  "Clear statistics data for the selected range - clear both dates to delete "
1056
  "all data for this block"
1058
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
1059
  "brisanje vseh podatkov za ta blok"
1060
 
1061
+ #: includes/functions-check-now.php:811 includes/functions.php:1100
1062
  msgid "Auto refresh data for the selected range every 60 seconds"
1063
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1064
 
1065
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1066
+ #: includes/functions.php:1103 includes/functions.php:8458
1067
  msgid "Load data for last month"
1068
  msgstr "Naloži podatke za zadnji mesec"
1069
 
1070
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1071
+ #: includes/functions.php:1103 includes/functions.php:8458
1072
  msgid "Last Month"
1073
  msgstr "Zadnji Mesec"
1074
 
1075
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1076
+ #: includes/functions.php:1106 includes/functions.php:8461
1077
  msgid "Load data for this month"
1078
  msgstr "Naloži podatke za ta mesec"
1079
 
1080
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1081
+ #: includes/functions.php:1106 includes/functions.php:8461
1082
  msgid "This Month"
1083
  msgstr "Ta Mesec"
1084
 
1085
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1086
+ #: includes/functions.php:1109 includes/functions.php:8464
1087
  msgid "Load data for this year"
1088
  msgstr "Naloži podatke za to leto"
1089
 
1090
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1091
+ #: includes/functions.php:1109 includes/functions.php:8464
1092
  msgid "This Year"
1093
  msgstr "To Leto"
1094
 
1095
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1096
+ #: includes/functions.php:1112 includes/functions.php:8467
1097
  msgid "Load data for the last 15 days"
1098
  msgstr "Naloži podatke za zadnjih 15 dni"
1099
 
1100
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1101
+ #: includes/functions.php:1115 includes/functions.php:8470
1102
  msgid "Load data for the last 30 days"
1103
  msgstr "Naloži podatke za zadnjih 30 dni"
1104
 
1105
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1106
+ #: includes/functions.php:1118 includes/functions.php:8473
1107
  msgid "Load data for the last 90 days"
1108
  msgstr "Naloži podatke za zadnjih 90 dni"
1109
 
1110
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1111
+ #: includes/functions.php:1121 includes/functions.php:8476
1112
  msgid "Load data for the last 180 days"
1113
  msgstr "Naloži podatke za zadnjih 180 dni"
1114
 
1115
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1116
+ #: includes/functions.php:1124 includes/functions.php:8479
1117
  msgid "Load data for the last 365 days"
1118
  msgstr "Naloži podatke za zadnjih 365 dni"
1119
 
1120
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1121
+ #: includes/functions.php:1134 includes/functions.php:8489
1122
  msgid "Load data for the selected range"
1123
  msgstr "Naloži podatke za izbrano obdobje"
1124
 
1125
+ #: includes/functions-check-now.php:861 includes/functions.php:1151
1126
  msgid ""
1127
  "Import settings when saving - if checked, the encoded settings below will be "
1128
  "imported for this block"
1130
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1131
  "nastavitve spodaj uvozile za ta blok"
1132
 
1133
+ #: includes/functions-check-now.php:861 includes/functions.php:1151
1134
  msgid "Import settings for block"
1135
  msgstr "Uvozi nastavitve za blok"
1136
 
1137
+ #: includes/functions-check-now.php:865 includes/functions.php:1155
1138
  msgid ""
1139
  "Import block name when saving - if checked and 'Import settings for block' "
1140
  "is also checked, the name from encoded settings below will be imported for "
1144
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1145
  "uvozilo za ta blok"
1146
 
1147
+ #: includes/functions-check-now.php:865 includes/functions.php:1155
1148
  msgid "Import block name"
1149
  msgstr "Uvozi ime bloka"
1150
 
1151
+ #: includes/functions-check-now.php:869 includes/functions.php:1159
1152
  msgid "Saved settings for block"
1153
  msgstr "Shranjene nastavitve za blok"
1154
 
1155
+ #: includes/functions-check-now.php:882 includes/functions.php:1174
1156
  msgid "Export / Import Ad Inserter Pro Settings"
1157
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1158
 
1159
+ #: includes/functions-check-now.php:892 includes/functions.php:1193
1160
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1161
  msgstr ""
1162
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1163
  "bloke?"
1164
 
1165
+ #: includes/functions-check-now.php:894 includes/functions.php:1195
1166
  msgid "Clear All Statistics Data"
1167
  msgstr "Pobriši Vse Podatke o Statistiki"
1168
 
1169
+ #: includes/functions-check-now.php:921 includes/functions.php:1229
1170
  msgid "Toggle country/city editor"
1171
  msgstr "Preklopi urejevalnik držav/mest"
1172
 
1173
+ #: includes/functions-check-now.php:927 includes/functions.php:1235
1174
  msgid "IP Addresses"
1175
  msgstr "IP Naslovi"
1176
 
1177
+ #: includes/functions-check-now.php:930 includes/functions.php:1238
1178
  msgid "Toggle IP address editor"
1179
  msgstr "Preklopi urejevalnik IP nslovov"
1180
 
1181
+ #: includes/functions-check-now.php:933 includes/functions.php:1241
1182
  msgid ""
1183
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1184
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1194
  msgid "Whitelist IP addresses"
1195
  msgstr "Beli seznam IP naslovov"
1196
 
1197
+ #: includes/functions-check-now.php:952 includes/functions.php:1257
1198
  msgid "Countries"
1199
  msgstr "Države"
1200
 
1201
+ #: includes/functions-check-now.php:953 includes/functions.php:1258
1202
  msgid "Cities"
1203
  msgstr "Mesta"
1204
 
1205
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1206
+ #: includes/functions.php:1262 includes/functions.php:4938
1207
  msgid "Toggle country editor"
1208
  msgstr "Preklopi urejevalnik držav"
1209
 
1210
+ #: includes/functions-check-now.php:960 includes/functions.php:1265
1211
  msgid "Toggle city editor"
1212
  msgstr "Preklopi urejevalnik mest"
1213
 
1214
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1215
+ #: includes/functions.php:1269 includes/functions.php:4941
1216
  msgid "Comma separated country ISO Alpha-2 codes"
1217
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1218
 
1225
  msgstr "Beli seznam držav"
1226
 
1227
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1228
+ #: includes/functions.php:1849 includes/functions.php:2184
1229
  msgid "Enter license key"
1230
  msgstr "Vnesite licenčni ključ"
1231
 
1232
  #. translators: %s: Ad Inserter Pro
1233
+ #: includes/functions-check-now.php:1389 includes/functions.php:1855
1234
  msgid ""
1235
  "%s license key is not set. Plugin functionality is limited and updates are "
1236
  "disabled."
1239
  "posodobitve onemogočene."
1240
 
1241
  #. translators: %s: Ad Inserter Pro
1242
+ #: includes/functions-check-now.php:1403 includes/functions.php:1869
1243
  msgid "Warning: %s plugin update server is not accessible"
1244
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1245
 
1246
  #. translators: updates are not available
1247
+ #: includes/functions-check-now.php:1405 includes/functions.php:1871
1248
  msgid "updates"
1249
  msgstr "posodobitve"
1250
 
1251
  #. translators: updates are not available
1252
+ #: includes/functions-check-now.php:1407 includes/functions.php:1873
1253
  msgid "are not available"
1254
  msgstr "niso na razpolago"
1255
 
1256
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1257
+ #: includes/functions.php:1878 includes/functions.php:2193
1258
  msgid "Check license key"
1259
  msgstr "Preverite licenčni ključ"
1260
 
1261
  #. translators: %s: Ad Inserter Pro
1262
+ #: includes/functions-check-now.php:1418 includes/functions.php:1884
1263
  msgid "Invalid %s license key."
1264
  msgstr "Neveljaven %s licenčni ključ."
1265
 
1266
  #. translators: %s: Ad Inserter Pro
1267
+ #: includes/functions-check-now.php:1427 includes/functions.php:1893
1268
  msgid "%s license expired. Plugin updates are disabled."
1269
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1270
 
1271
+ #: includes/functions-check-now.php:1428 includes/functions.php:1894
1272
  msgid "Renew license"
1273
  msgstr "Obnovite licenco"
1274
 
1275
  #. translators: %s: Ad Inserter Pro
1276
+ #: includes/functions-check-now.php:1436 includes/functions.php:1902
1277
  msgid "%s license overused. Plugin updates are disabled."
1278
  msgstr ""
1279
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1280
 
1281
+ #: includes/functions-check-now.php:1437 includes/functions.php:1903
1282
  msgid "Manage licenses"
1283
  msgstr "Upravljajte z licencami"
1284
 
1285
+ #: includes/functions-check-now.php:1437 includes/functions.php:1903
1286
  msgid "Upgrade license"
1287
  msgstr "Nadgradite licenco"
1288
 
1289
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1290
+ #: includes/functions-check-now.php:1684 includes/functions.php:2186
1291
  msgid ""
1292
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1293
  "limited and updates are disabled."
1296
  "so omejene in posodobitve onemogočene."
1297
 
1298
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1299
+ #: includes/functions-check-now.php:1693 includes/functions.php:2195
1300
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1301
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1302
 
1303
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1304
+ #: includes/functions-check-now.php:1709 includes/functions.php:2211
1305
  msgid ""
1306
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1307
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1311
  "pogrešate. %3$s"
1312
 
1313
  #. translators: 1, 3: HTML tags, 2: percentage
1314
+ #: includes/functions-check-now.php:1716 includes/functions.php:2218
1315
  msgid ""
1316
  "During the license period and 30 days after the license has expired we offer "
1317
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1319
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1320
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1321
 
1322
+ #: includes/functions-check-now.php:1726 includes/functions.php:2228
1323
  msgid "No, thank you."
1324
  msgstr "Ne, hvala."
1325
 
1326
+ #: includes/functions-check-now.php:1729 includes/functions.php:2231
1327
  msgid "Not now, maybe later."
1328
  msgstr "Ne zdaj, mogoče kasneje."
1329
 
1330
+ #: includes/functions-check-now.php:1743 includes/functions.php:2245
1331
  msgid "Renew the licence"
1332
  msgstr "Obnovi licenco"
1333
 
1334
+ #: includes/functions-check-now.php:1745 includes/functions.php:2247
1335
  msgid "Update license status"
1336
  msgstr "Posodobi status licence"
1337
 
1338
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1339
+ #: includes/functions-check-now.php:1756 includes/functions.php:2260
1340
  msgid ""
1341
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1342
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1346
  "Nadgradite licenco %7$s"
1347
 
1348
  #. Translators: %s: HTML tag
1349
+ #: includes/functions-check-now.php:1778 includes/functions.php:2320
1350
  msgid "Warning: %s MaxMind IP geolocation database not found."
1351
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1352
 
1353
+ #: includes/functions-check-now.php:2331 includes/functions.php:3045
1354
  msgid "Geolocation"
1355
  msgstr "Geolokacija"
1356
 
1357
+ #: includes/functions-check-now.php:2335 includes/functions.php:3049
1358
+ #: settings.php:4651
1359
  msgid "Exceptions"
1360
  msgstr "Izjeme"
1361
 
1362
+ #: includes/functions-check-now.php:2340 includes/functions.php:3054
1363
  msgid "Multisite"
1364
  msgstr "Multisite"
1365
 
1366
+ #: includes/functions-check-now.php:2345 includes/functions.php:3059
1367
+ #: settings.php:4657
1368
  msgid "Tracking"
1369
  msgstr "Sledenje"
1370
 
1371
  #. translators: %d: days, hours, minutes
1372
+ #: includes/functions-check-now.php:2376 includes/functions.php:3093
1373
  msgid "Scheduled in %d days %d hours %d minutes"
1374
  msgstr "Planirano v %d dneh %d urah %d minutah"
1375
 
1376
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1377
  #. HTML code for long dash separator
1378
+ #: includes/functions-check-now.php:2385 includes/functions.php:3102
1379
  msgid "Active %s expires in %d days %d hours %d minutes"
1380
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1381
 
1382
+ #: includes/functions-check-now.php:2389 includes/functions.php:3106
1383
  msgid "Expired"
1384
  msgstr "Poteklo"
1385
 
1386
+ #: includes/functions-check-now.php:2397 includes/functions.php:3132
1387
+ #: settings.php:1632 settings.php:1647 settings.php:1769 settings.php:2363
1388
  msgid "and"
1389
  msgstr "in"
1390
 
1391
+ #: includes/functions-check-now.php:2400 includes/functions.php:3114
1392
  msgid "fallback"
1393
  msgstr "rezerva"
1394
 
1395
+ #: includes/functions-check-now.php:2401 includes/functions.php:3115
1396
  msgid "Block to be used when scheduling expires"
1397
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1398
 
1399
+ #: includes/functions-check-now.php:2426 includes/functions.php:3154
1400
  msgid "Load in iframe"
1401
  msgstr "Naloži v iframe-u"
1402
 
1403
+ #: includes/functions-check-now.php:2430 includes/functions.php:3158
1404
+ #: includes/placeholders.php:387 settings.php:1230 settings.php:2390
1405
  msgid "Width"
1406
  msgstr "Širina"
1407
 
1408
+ #: includes/functions-check-now.php:2431 includes/functions.php:3159
1409
  msgid "iframe width, empty means full width (100%)"
1410
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1411
 
1412
+ #: includes/functions-check-now.php:2437 includes/functions.php:3165
1413
+ #: includes/placeholders.php:382 settings.php:1236 settings.php:2394
1414
  msgid "Height"
1415
  msgstr "Višina"
1416
 
1417
+ #: includes/functions-check-now.php:2438 includes/functions.php:3166
1418
  msgid "iframe height, empty means adjust it to iframe content height"
1419
  msgstr ""
1420
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1421
 
1422
+ #: includes/functions-check-now.php:2445 includes/functions.php:3173
1423
  msgid "Ad label in iframe"
1424
  msgstr "Oznaka oglasa v iframe-u"
1425
 
1426
+ #: includes/functions-check-now.php:2450 includes/functions.php:3178
1427
  msgid "Preview iframe code"
1428
  msgstr "Predpreglej kodo iframe"
1429
 
1430
+ #: includes/functions-check-now.php:2450 includes/functions.php:3178
1431
+ #: includes/preview.php:2417 settings.php:1265 settings.php:3178
1432
  msgid "Preview"
1433
  msgstr "Predogled"
1434
 
1435
+ #: includes/functions-check-now.php:2464 includes/functions.php:3194
1436
+ #: settings.php:4658
1437
  msgid "Limits"
1438
  msgstr "Omejitve"
1439
 
1440
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1441
+ #: includes/functions-check-now.php:4430 includes/functions.php:3199
1442
+ #: includes/functions.php:6865 includes/functions.php:6886
1443
+ #: includes/functions.php:6950 settings.php:2539
1444
  msgid "Ad Blocking"
1445
  msgstr "Blokiranje Oglasov"
1446
 
1447
  #. translators: 1, 2 and 3, 4: HTML tags
1448
+ #: includes/functions-check-now.php:2478 includes/functions.php:3210
1449
  msgid ""
1450
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1451
  "for tracking!"
1455
 
1456
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1457
  #. header
1458
+ #: includes/functions-check-now.php:2487 includes/functions.php:3219
1459
  msgid ""
1460
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1461
  "enabled and automatic insertion %6$s!"
1463
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1464
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1465
 
1466
+ #: includes/functions-check-now.php:2554 includes/functions.php:3292
1467
  msgid "Click fraud protection is globally disabled"
1468
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1469
 
1472
  msgstr "Največje število klikov na časovno enoto ni definirano"
1473
 
1474
  #. Translators: Max n impressions
1475
+ #: includes/functions-check-now.php:2572 includes/functions.php:3306
1476
  msgid "General limits"
1477
  msgstr "Splošne omejitve"
1478
 
1479
  #. Translators: Max n impressions per x days
1480
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1481
+ #: includes/functions-check-now.php:2675 includes/functions.php:3312
1482
+ #: includes/functions.php:3324 includes/functions.php:3409
1483
  msgid "Current value"
1484
  msgstr "Trenutna vrednost"
1485
 
1495
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1496
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1497
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1498
+ #: includes/functions.php:3331 includes/functions.php:3341
1499
+ #: includes/functions.php:3360 includes/functions.php:3370
1500
+ #: includes/functions.php:3416 includes/functions.php:3425
1501
+ #: includes/functions.php:3443 includes/functions.php:3452 settings.php:2275
1502
  msgid "Max"
1503
  msgstr "Največ"
1504
 
1505
+ #: includes/functions-check-now.php:2598 includes/functions.php:3332
1506
  msgid ""
1507
  "Maximum number of impressions for this block. Empty means no general "
1508
  "impression limit."
1516
  #. Translators: Max n impressions per x days
1517
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1518
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1519
+ #: includes/functions.php:3334 includes/functions.php:3344
1520
+ #: includes/functions.php:3419 includes/functions.php:3428
1521
  msgid "impression"
1522
  msgid_plural "impressions"
1523
  msgstr[0] "prikaz"
1525
  msgstr[2] "prikazi"
1526
  msgstr[3] "prikazov"
1527
 
1528
+ #: includes/functions-check-now.php:2608 includes/functions.php:3342
1529
  msgid ""
1530
  "Maximum number of impressions per time period. Empty means no time limit."
1531
  msgstr ""
1538
  #. Translators: Max n clicks per x days
1539
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1540
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1541
+ #: includes/functions.php:3348 includes/functions.php:3377
1542
+ #: includes/functions.php:3432 includes/functions.php:3459
1543
+ #: includes/functions.php:5208
1544
  msgid "per"
1545
  msgstr "na"
1546
 
1547
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1548
+ #: includes/functions.php:3349 includes/functions.php:3378
1549
  msgid "Time period in days. Empty means no time limit."
1550
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1551
 
1557
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1558
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1559
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1560
+ #: includes/functions.php:3351 includes/functions.php:3380
1561
+ #: includes/functions.php:3435 includes/functions.php:3462
1562
+ #: includes/functions.php:3594 includes/functions.php:5211
1563
+ #: includes/functions.php:5221 strings.php:220 strings.php:221 strings.php:222
1564
  #: strings.php:223 strings.php:224 strings.php:225
1565
  msgid "day"
1566
  msgid_plural "days"
1569
  msgstr[2] "dni"
1570
  msgstr[3] "dni"
1571
 
1572
+ #: includes/functions-check-now.php:2627 includes/functions.php:3361
1573
  msgid ""
1574
  "Maximum number of clicks on this block. Empty means no general click limit."
1575
  msgstr ""
1582
  #. Translators: Max n clicks per x days
1583
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1584
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1585
+ #: includes/functions-check-now.php:4578 includes/functions.php:3363
1586
+ #: includes/functions.php:3373 includes/functions.php:3446
1587
+ #: includes/functions.php:3455 includes/functions.php:5208
1588
+ #: includes/functions.php:7189
1589
  msgid "click"
1590
  msgid_plural "clicks"
1591
  msgstr[0] "klik"
1593
  msgstr[2] "kliki"
1594
  msgstr[3] "klikov"
1595
 
1596
+ #: includes/functions-check-now.php:2637 includes/functions.php:3371
1597
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1598
  msgstr ""
1599
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1600
  "omejitev."
1601
 
1602
+ #: includes/functions-check-now.php:2662 includes/functions.php:3396
1603
  msgid "Individual visitor limits"
1604
  msgstr "Omejitve posameznih obiskovalcev"
1605
 
1606
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1607
+ #: includes/functions.php:3400 includes/functions.php:3402
1608
  msgid ""
1609
  "When specified number of clicks on this block for a visitor will be reached "
1610
  "in the specified time period, all blocks that have click fraud protection "
1616
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1617
  "pred goljufijo s kliki."
1618
 
1619
+ #: includes/functions-check-now.php:2668 includes/functions.php:3402
1620
  msgid "Trigger click fraud protection"
1621
  msgstr "Sproži zaščito pred goljufijo s kliki"
1622
 
1623
+ #: includes/functions-check-now.php:2683 includes/functions.php:3417
1624
  msgid ""
1625
  "Maximum number of impressions of this block for each visitor. Empty means no "
1626
  "impression limit."
1628
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1629
  "pomeni brez omejitev prikazov."
1630
 
1631
+ #: includes/functions-check-now.php:2692 includes/functions.php:3426
1632
  msgid ""
1633
  "Maximum number of impressions per time period for each visitor. Empty means "
1634
  "no impression limit per time period for visitors."
1637
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1638
 
1639
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1640
+ #: includes/functions.php:3433 includes/functions.php:3460
1641
+ #: includes/functions.php:5211
1642
  msgid ""
1643
  "Time period in days. Use decimal value (with decimal point) for shorter "
1644
  "periods. Empty means no time limit."
1646
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1647
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1648
 
1649
+ #: includes/functions-check-now.php:2710 includes/functions.php:3444
1650
  msgid ""
1651
  "Maximum number of clicks on this block for each visitor. Empty means no "
1652
  "click limit."
1654
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1655
  "brez omejitev klikov."
1656
 
1657
+ #: includes/functions-check-now.php:2719 includes/functions.php:3453
1658
+ #: includes/functions.php:5208
1659
  msgid ""
1660
  "Maximum number of clicks per time period for each visitor. Empty means no "
1661
  "click limit per time period for visitors."
1663
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1664
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1665
 
1666
+ #: includes/functions-check-now.php:2745 includes/functions.php:3503
1667
  msgid "When ad blocking is detected"
1668
  msgstr "Ko je blokiranje oglasov zaznano"
1669
 
1670
+ #: includes/functions-check-now.php:2754 includes/functions.php:3512
1671
  msgid "replacement"
1672
  msgstr "nadomestek"
1673
 
1674
+ #: includes/functions-check-now.php:2755 includes/functions.php:3513
1675
  msgid "Block to be shown when ad blocking is detected"
1676
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1677
 
1678
+ #: includes/functions-check-now.php:2756 includes/functions.php:3514
1679
  msgctxt "replacement"
1680
  msgid "None"
1681
  msgstr "Noben"
1682
 
1683
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1684
+ #: includes/functions.php:3531 includes/functions.php:8703
1685
  msgid "Close button"
1686
  msgstr "Gumb Zapri"
1687
 
1688
+ #: includes/functions-check-now.php:2825 includes/functions.php:3585
1689
  msgid "Auto close after"
1690
  msgstr "Ssamodejno zapri po"
1691
 
1692
+ #: includes/functions-check-now.php:2826 includes/functions.php:3586
1693
  msgid ""
1694
  "Time in seconds in which the ad will automatically close. Leave empty to "
1695
  "disable auto closing."
1698
  "izključitev samodejnega zapiranja."
1699
 
1700
  #. Translators: Don't show for x days
1701
+ #: includes/functions-check-now.php:2831 includes/functions.php:3591
1702
  msgid "Don't show for"
1703
  msgstr "Ne prikaži"
1704
 
1705
+ #: includes/functions-check-now.php:2832 includes/functions.php:3592
1706
  msgid ""
1707
  "Time in days in which closed ad will not be shown again. Use decimal value "
1708
  "(with decimal point) for shorter time period or leave empty to show it again "
1713
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1714
 
1715
  #. Translators: Delay showing for x pageviews
1716
+ #: includes/functions-check-now.php:2852 includes/functions.php:3614
1717
+ #: includes/functions.php:3620
1718
  msgid "Delay showing for"
1719
  msgstr "Zakasni prikaz za"
1720
 
1721
+ #: includes/functions-check-now.php:2853 includes/functions.php:3621
1722
  msgid ""
1723
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1724
  "empty to insert the code for the first pageview."
1729
  #. Translators: Delay showing for x pageviews
1730
  #. Translators: Show every x pageviews
1731
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1732
+ #: includes/functions.php:3623 includes/functions.php:3630
1733
  msgid "pageview"
1734
  msgid_plural "pageviews"
1735
  msgstr[0] "ogled strani"
1738
  msgstr[3] "ogledov strani"
1739
 
1740
  #. Translators: Show every x pageviews
1741
+ #: includes/functions-check-now.php:2859 includes/functions.php:3627
1742
  msgid "Show every"
1743
  msgid_plural "Show every"
1744
  msgstr[0] "Prikaži vsak"
1746
  msgstr[2] "Prikaži vsake"
1747
  msgstr[3] "Prikaži vsakih"
1748
 
1749
+ #: includes/functions-check-now.php:2860 includes/functions.php:3628
1750
  msgid ""
1751
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1752
  "for every pageview."
1754
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1755
  "vstavljanje kode pri vsakem ogledu strani."
1756
 
1757
+ #: includes/functions-check-now.php:2879 includes/functions.php:3665
1758
+ #: settings.php:994
1759
  msgid "Lazy loading"
1760
  msgstr "Leno nalaganje"
1761
 
1762
  #. Translators: %s MaxMind
1763
+ #: includes/functions-check-now.php:2936 includes/functions.php:4862
1764
  msgid "This product includes GeoLite2 data created by %s"
1765
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1766
 
1767
+ #: includes/functions-check-now.php:2947 includes/functions.php:4875
1768
  msgid "IP geolocation database"
1769
  msgstr "Podatkovna baza za IP geolokacijo"
1770
 
1771
+ #: includes/functions-check-now.php:2950 includes/functions.php:4878
1772
  msgid "Select IP geolocation database."
1773
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1774
 
1775
+ #: includes/functions-check-now.php:2961 includes/functions.php:4889
1776
  msgid "Automatic database updates"
1777
  msgstr "Samodejna posodobitev podatkovne baze"
1778
 
1779
+ #: includes/functions-check-now.php:2964 includes/functions.php:4892
1780
  msgid ""
1781
  "Automatically download and update free GeoLite2 IP geolocation database by "
1782
  "MaxMind"
1784
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1785
  "podatkovno bazo MaxMind"
1786
 
1787
+ #: includes/functions-check-now.php:2972 includes/functions.php:4909
1788
  msgid "Database"
1789
  msgstr "Podatkovna baza"
1790
 
1791
+ #: includes/functions-check-now.php:2975 includes/functions.php:4912
1792
  msgid ""
1793
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1794
  msgstr ""
1796
  "podatkovne baze"
1797
 
1798
  #. translators: %d: group number
1799
+ #: includes/functions-check-now.php:2993 includes/functions.php:4930
1800
  msgid "Group %d"
1801
  msgstr "Skupina %d"
1802
 
1803
+ #: includes/functions-check-now.php:2999 includes/functions.php:4936
1804
  msgid "countries"
1805
  msgstr "države"
1806
 
1807
+ #: includes/functions-check-now.php:3044 includes/functions.php:4981
1808
  msgid ""
1809
  "Enable impression and click tracking. You also need to enable tracking for "
1810
  "each block you want to track."
1816
  msgid "Generate report"
1817
  msgstr "Generiraj poročilo"
1818
 
1819
+ #: includes/functions-check-now.php:3059 includes/functions.php:5000
1820
  msgid "Impression and Click Tracking"
1821
  msgstr "Sledenje Prikazov in Klikov"
1822
 
1823
+ #: includes/functions-check-now.php:3060 includes/functions.php:5001
1824
+ #: settings.php:3039
1825
  msgctxt "ad blocking detection"
1826
  msgid "NOT ENABLED"
1827
  msgstr "NI OMOGOČENO"
1828
 
1829
+ #: includes/functions-check-now.php:3076 includes/functions.php:5017
1830
  msgid "Internal"
1831
  msgstr "Notranje"
1832
 
1833
+ #: includes/functions-check-now.php:3080 includes/functions.php:5021
1834
  msgid "Track impressions and clicks with internal tracking and statistics"
1835
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1836
 
1837
+ #: includes/functions-check-now.php:3085 includes/functions.php:5026
1838
  msgid "External"
1839
  msgstr "Zunanje"
1840
 
1841
+ #: includes/functions-check-now.php:3089 includes/functions.php:5030
1842
  msgid ""
1843
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1844
  "code installed)"
1846
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1847
  "kodo za sledenje)"
1848
 
1849
+ #: includes/functions-check-now.php:3094 includes/functions.php:5035
1850
  msgid "Track Pageviews"
1851
  msgstr "Sledi Ogledom Strani"
1852
 
1853
+ #: includes/functions-check-now.php:3100 includes/functions.php:5041
1854
  msgid "Track Pageviews by Device (as configured for viewports)"
1855
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1856
 
1857
+ #: includes/functions-check-now.php:3110 includes/functions.php:5051
1858
  msgid "Track for Logged in Users"
1859
  msgstr "Sledi za Prijavljene Upor."
1860
 
1861
+ #: includes/functions-check-now.php:3116 includes/functions.php:5057
1862
  msgid "Track impressions and clicks from logged in users"
1863
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1864
 
1865
+ #: includes/functions-check-now.php:3126 includes/functions.php:5067
1866
  msgid "Click Detection"
1867
  msgstr "Zaznavanje klikov"
1868
 
1869
+ #: includes/functions-check-now.php:3132 includes/functions.php:5073
1870
  msgid ""
1871
  "Standard method detects clicks only on banners with links, Advanced method "
1872
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1874
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1875
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1876
 
1877
+ #: includes/functions-check-now.php:3151 includes/functions.php:5194
1878
  msgid "Click fraud protection"
1879
  msgstr "Zaščita pred goljufijo s kliki"
1880
 
1881
+ #: includes/functions-check-now.php:3155 includes/functions.php:5198
1882
  msgid "Globally enable click fraud protection for selected blocks."
1883
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1884
 
1885
+ #: includes/functions-check-now.php:3161 includes/functions.php:5218
1886
  msgid "Protection time"
1887
  msgstr "Čas zaščite"
1888
 
1889
+ #: includes/functions-check-now.php:3162 includes/functions.php:5221
1890
  msgid ""
1891
  "Time period in days in which blocks with enabled click fraud protection will "
1892
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1895
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1896
  "za krajša obdobja."
1897
 
1898
+ #: includes/functions-check-now.php:3181 includes/functions.php:5101
1899
  msgid "Report header image"
1900
  msgstr "Slika v glavi poročila"
1901
 
1909
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1910
  "ponastavitev na privzeto sliko."
1911
 
1912
+ #: includes/functions-check-now.php:3185 includes/functions.php:5105
1913
  #: strings.php:256
1914
  msgid "Select or upload header image"
1915
  msgstr "Izberi ali naloži sliko glave"
1916
 
1917
+ #: includes/functions-check-now.php:3190 includes/functions.php:5110
1918
  msgid "Report header title"
1919
  msgstr "Naslov v glavi poročila"
1920
 
1921
+ #: includes/functions-check-now.php:3193 includes/functions.php:5113
1922
  msgid ""
1923
  "Title to be displayed in the header of the statistics report. Text or HTML "
1924
  "code, clear to reset to default text."
1926
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1927
  "pobrišite za ponastavitev na privzeto besedilo."
1928
 
1929
+ #: includes/functions-check-now.php:3198 includes/functions.php:5118
1930
  msgid "Report header description"
1931
  msgstr "Opis v glavi poročila"
1932
 
1933
+ #: includes/functions-check-now.php:3201 includes/functions.php:5121
1934
  msgid ""
1935
  "Description to be displayed in the header of the statistics report. Text or "
1936
  "HTML code, clear to reset to default text."
1938
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1939
  "pobrišite za ponastavitev na privzeto besedilo."
1940
 
1941
+ #: includes/functions-check-now.php:3206 includes/functions.php:5126
1942
  msgid "Report footer"
1943
  msgstr "Noga poročila"
1944
 
1945
+ #: includes/functions-check-now.php:3209 includes/functions.php:5129
1946
  msgid ""
1947
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1948
  "to default text."
1950
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1951
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1952
 
1953
+ #: includes/functions-check-now.php:3214 includes/functions.php:5134
1954
  msgid "Public report key"
1955
  msgstr "Ključ za javno poročilo"
1956
 
1957
+ #: includes/functions-check-now.php:3217 includes/functions.php:5137
1958
  msgid "String to generate unique report IDs. Clear to reset to default value."
1959
  msgstr ""
1960
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1961
  "privzeto vrednost."
1962
 
1963
+ #: includes/functions-check-now.php:3249 includes/functions.php:5278
1964
  msgid "Are you sure you want to clear all exceptions for block"
1965
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1966
 
1967
+ #: includes/functions-check-now.php:3250 includes/functions.php:5279
1968
  msgid "Clear all exceptions for block"
1969
  msgstr "Pobriši vse izjeme za blok"
1970
 
1971
+ #: includes/functions-check-now.php:3257 includes/functions.php:5292
1972
  msgid "Are you sure you want to clear all exceptions?"
1973
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1974
 
1975
+ #: includes/functions-check-now.php:3257 includes/functions.php:5292
1976
  msgid "Clear all exceptions for all blocks"
1977
  msgstr "Pobriši vse izjeme za vse bloke"
1978
 
1979
+ #: includes/functions-check-now.php:3262 includes/functions.php:5299
1980
+ #: settings.php:4229 settings.php:4739
1981
  msgid "Type"
1982
  msgstr "Vrsta"
1983
 
1984
+ #: includes/functions-check-now.php:3280 includes/functions.php:5318
1985
+ #: includes/functions.php:5319
1986
  msgid "View"
1987
  msgstr "Poglej"
1988
 
1989
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1990
+ #: includes/functions-check-now.php:3292 includes/functions.php:5320
1991
+ #: includes/functions.php:5334 includes/functions.php:5338
1992
+ #: includes/placeholders.php:351 includes/preview.php:2799 settings.php:1508
1993
+ #: settings.php:3984
1994
  msgid "Edit"
1995
  msgstr "Uredi"
1996
 
1997
+ #: includes/functions-check-now.php:3311 includes/functions.php:5366
1998
  msgid "Are you sure you want to clear all exceptions for"
1999
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
2000
 
2001
+ #: includes/functions-check-now.php:3312 includes/functions.php:5367
2002
  msgid "Clear all exceptions for"
2003
  msgstr "Pobriši vse izjeme za"
2004
 
2005
+ #: includes/functions-check-now.php:3325 includes/functions.php:5383
2006
  msgid "No exceptions"
2007
  msgstr "Brez izjem"
2008
 
2009
  #. translators: %s: Ad Inserter Pro
2010
+ #: includes/functions-check-now.php:3336 includes/functions.php:5394
2011
  msgid "%s options for network blogs"
2012
  msgstr "%s izbire za omrežne bloge"
2013
 
2014
  #. translators: %s: Ad Inserter Pro
2015
+ #: includes/functions-check-now.php:3341 includes/functions.php:5399
2016
  msgid "Enable %s widgets for sub-sites"
2017
  msgstr "Omogoči %s gradnik za pod-spletišča"
2018
 
2019
+ #: includes/functions-check-now.php:3341 includes/functions.php:5399
2020
  msgid "Widgets"
2021
  msgstr "Gradniki"
2022
 
2023
+ #: includes/functions-check-now.php:3346 includes/functions.php:5404
2024
  msgid "Enable PHP code processing for sub-sites"
2025
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
2026
 
2027
+ #: includes/functions-check-now.php:3346 includes/functions.php:5404
2028
  msgid "PHP Processing"
2029
  msgstr "PHP Procesiranje"
2030
 
2031
  #. translators: %s: Ad Inserter Pro
2032
+ #: includes/functions-check-now.php:3351 includes/functions.php:5409
2033
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2034
  msgstr ""
2035
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2036
 
2037
+ #: includes/functions-check-now.php:3351 includes/functions.php:5409
2038
  msgid "Post/Page exceptions"
2039
  msgstr "Izjeme prispevkov/strani"
2040
 
2041
  #. translators: %s: Ad Inserter Pro
2042
+ #: includes/functions-check-now.php:3356 includes/functions.php:5414
2043
  msgid "Enable %s settings page for sub-sites"
2044
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2045
 
2046
+ #: includes/functions-check-now.php:3356 includes/functions.php:5414
2047
  msgid "Settings page"
2048
  msgstr "Stran z nastavitvami"
2049
 
2050
  #. translators: %s: Ad Inserter Pro
2051
+ #: includes/functions-check-now.php:3361 includes/functions.php:5419
2052
  msgid "Enable %s settings of main site to be used for all blogs"
2053
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2054
 
2055
+ #: includes/functions-check-now.php:3361 includes/functions.php:5419
2056
  msgid "Main site settings used for all blogs"
2057
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2058
 
2059
+ #: includes/functions-check-now.php:3372 includes/functions.php:5437
2060
+ #: settings.php:3038
2061
  msgid "Ad Blocking Detection"
2062
  msgstr "Zaznavanje Blokiranja Oglasov"
2063
 
2064
+ #: includes/functions-check-now.php:3378 includes/functions.php:5443
2065
  msgid ""
2066
  "Standard method is reliable but should be used only if Advanced method does "
2067
  "not work. Advanced method recreates files used for detection with random "
2074
  "dostopna"
2075
 
2076
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
2077
+ #: includes/functions-check-now.php:4140 includes/functions.php:6467
2078
+ #: includes/functions.php:6577 includes/functions.php:6602
2079
  msgid "AD BLOCKING"
2080
  msgstr "BLOKIRANJE OGLASOV"
2081
 
2082
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
2083
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
2084
+ #: includes/functions.php:6468 includes/functions.php:6511
2085
+ #: includes/functions.php:6571 includes/functions.php:6603
2086
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2087
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2088
 
2089
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
2090
+ #: includes/functions-check-now.php:4147 includes/functions.php:6471
2091
+ #: includes/functions.php:6570 includes/functions.php:6609
2092
  msgid "NO AD BLOCKING"
2093
  msgstr "NI BLOKIRANJA OGLASOV"
2094
 
2095
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
2096
+ #: includes/functions.php:6510 includes/functions.php:6517
2097
  msgid "AD BLOCKING REPLACEMENT"
2098
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2099
 
2100
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
2101
+ #: includes/functions.php:6697 includes/functions.php:6949
2102
  msgid "Pageviews"
2103
  msgstr "Ogledi strani"
2104
 
2105
+ #: includes/functions-check-now.php:4366 includes/functions.php:6864
2106
+ #: includes/functions.php:6885
2107
  msgctxt "Version"
2108
  msgid "Unknown"
2109
  msgstr "Neznana"
2110
 
2111
+ #: includes/functions-check-now.php:4366 includes/functions.php:6864
2112
+ #: includes/functions.php:6885
2113
  msgctxt "Times"
2114
  msgid "DISPLAYED"
2115
  msgstr "PRIKAZANO"
2116
 
2117
+ #: includes/functions-check-now.php:4366 includes/functions.php:6864
2118
+ #: includes/functions.php:6885
2119
  msgid "No version"
2120
  msgstr "Brez različice"
2121
 
2122
+ #: includes/functions-check-now.php:4367 includes/functions.php:6865
2123
+ #: includes/functions.php:6886 includes/functions.php:6890
2124
  msgctxt "Times"
2125
  msgid "BLOCKED"
2126
  msgstr "BLOKIRANO"
2127
 
2128
+ #: includes/functions-check-now.php:4429 includes/functions.php:6949
2129
  msgid "Impressions"
2130
  msgstr "Prikazi"
2131
 
2132
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
2133
+ #: includes/functions-check-now.php:4486 includes/functions.php:6950
2134
+ #: includes/functions.php:6951 includes/functions.php:7166
2135
  msgid "Clicks"
2136
  msgstr "Kliki"
2137
 
2138
+ #: includes/functions-check-now.php:4431 includes/functions.php:6951
2139
  msgid "events"
2140
  msgstr "dogodki"
2141
 
2142
+ #: includes/functions-check-now.php:4432 includes/functions.php:6952
2143
  msgid "Ad Blocking Share"
2144
  msgstr "Delež blokiranja oglasov"
2145
 
2146
  #. translators: CTR as Click Through Rate
2147
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
2148
+ #: includes/functions.php:6952 includes/functions.php:7172
2149
  msgid "CTR"
2150
  msgstr "CTR"
2151
 
2152
+ #: includes/functions-check-now.php:4574 includes/functions.php:7185
2153
  msgid "pageviews"
2154
  msgid_plural "pageviews"
2155
  msgstr[0] "ogled strani"
2157
  msgstr[2] "oglede strani"
2158
  msgstr[3] "ogledov strani"
2159
 
2160
+ #: includes/functions-check-now.php:4574 includes/functions.php:7185
2161
  msgid "impressions"
2162
  msgid_plural "impressions"
2163
  msgstr[0] "prikaz"
2165
  msgstr[2] "prikazi"
2166
  msgstr[3] "prikazov"
2167
 
2168
+ #: includes/functions-check-now.php:4578 includes/functions.php:7189
2169
  msgid "event"
2170
  msgid_plural "events"
2171
  msgstr[0] "dogodek"
2173
  msgstr[2] "dogodki"
2174
  msgstr[3] "dogodkov"
2175
 
2176
+ #: includes/functions-check-now.php:4673 includes/functions.php:7284
2177
  msgctxt "Pageviews / Impressions"
2178
  msgid "Average"
2179
  msgstr "Povprečni"
2180
 
2181
+ #: includes/functions-check-now.php:4694 includes/functions.php:7305
2182
  msgctxt "Ad Blocking / Clicks"
2183
  msgid "Average"
2184
  msgstr "Povprečno"
2185
 
2186
+ #: includes/functions-check-now.php:4718 includes/functions.php:7329
2187
  msgctxt "Ad Blocking Share / CTR"
2188
  msgid "Average"
2189
  msgstr "Povprečni"
2190
 
2191
  #. Translators: %s: Ad Inserter Pro
2192
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
2193
+ #: includes/functions-check-now.php:5335 includes/functions.php:7639
2194
+ #: includes/functions.php:7734 includes/functions.php:8403 strings.php:205
2195
  msgid "%s Report"
2196
  msgstr "%s Poročilo"
2197
 
2198
+ #: includes/functions-check-now.php:5241 includes/functions.php:8308
2199
  msgid "for last month"
2200
  msgstr "za zadnji mesec"
2201
 
2202
+ #: includes/functions-check-now.php:5246 includes/functions.php:8313
2203
  msgid "for this month"
2204
  msgstr "za ta mesec"
2205
 
2206
+ #: includes/functions-check-now.php:5251 includes/functions.php:8318
2207
  msgid "for this year"
2208
  msgstr "za to leto"
2209
 
2210
+ #: includes/functions-check-now.php:5256 includes/functions.php:8323
2211
  msgid "for the last 15 days"
2212
  msgstr "za zadnjih 15 dni"
2213
 
2214
+ #: includes/functions-check-now.php:5261 includes/functions.php:8328
2215
  msgid "for the last 30 days"
2216
  msgstr "za zadnjih 30 dni"
2217
 
2218
+ #: includes/functions-check-now.php:5266 includes/functions.php:8333
2219
  msgid "for the last 90 days"
2220
  msgstr "za zadnjih 90 dni"
2221
 
2222
+ #: includes/functions-check-now.php:5271 includes/functions.php:8338
2223
  msgid "for the last 180 days"
2224
  msgstr "za zadnjih 180 dni"
2225
 
2226
+ #: includes/functions-check-now.php:5276 includes/functions.php:8343
2227
  msgid "for the last 365 days"
2228
  msgstr "za zadnjih 365 dni"
2229
 
2230
+ #: includes/functions.php:437
2231
  msgid "Import plugin settings"
2232
  msgstr "Uvozite nastavitve vtičnika"
2233
 
2234
+ #: includes/functions.php:445
2235
  msgid "Load settings from a file"
2236
  msgstr "Naložite nastavitve iz datoteke"
2237
 
2238
+ #: includes/functions.php:448
2239
  msgid "Save settings to a file"
2240
  msgstr "Shranite nastavitve v datoteko"
2241
 
2242
+ #. translators: Enter reCAPTCHA v3 key
2243
+ #: includes/functions.php:541 includes/functions.php:549
2244
+ msgid "Enter"
2245
+ msgstr "Vnesite"
2246
+
2247
+ #: includes/functions.php:554
2248
+ msgid "Score threshold"
2249
+ msgstr "Prag rezultata"
2250
+
2251
+ #: includes/functions.php:557
2252
+ msgid ""
2253
+ "reCAPTCHA v3 score threshold for valid traffic (0 to 1, 0.0 is very likely a "
2254
+ "bot, 1.0 is very likely a good interaction)"
2255
+ msgstr ""
2256
+ "prag rezultata reCAPTCHA v3 za veljaven promet (0 to 1, 0.0 je zelo verjetno "
2257
+ "bot, 1.0 je zelo verjetno dobra interakcija)"
2258
+
2259
+ #: includes/functions.php:613 includes/functions.php:4988
2260
  msgid "Generate CSV report"
2261
  msgstr "Generiraj CSV poročilo"
2262
 
2263
  #. translators: %s: Ad Inserter Pro
2264
+ #: includes/functions.php:686
2265
  msgid "Invalid %s version. Continue?"
2266
  msgstr "Neveljavna izdaja %s. Nadaljujem?"
2267
 
2268
+ #: includes/functions.php:858
2269
  msgid "Show"
2270
  msgstr "Pokaži"
2271
 
2272
+ #: includes/functions.php:870 includes/functions.php:897
2273
  msgid ""
2274
  "Trigger value: page scroll in %, page scroll in px or element with selector "
2275
  "(#id or .class) scrolls in or out of screen"
2277
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
2278
  "selektorjem (#id ali .razred) se pomakne izven zaslona"
2279
 
2280
+ #: includes/functions.php:884
2281
  msgid "Hide"
2282
  msgstr "Skrij"
2283
 
2284
+ #: includes/functions.php:915 includes/preview.php:2729
2285
  msgid "Background"
2286
  msgstr "Ozadje"
2287
 
2288
  #. translators: %s HTML body tag
2289
+ #: includes/functions.php:922
2290
  msgid "Set %s background"
2291
  msgstr "Nastavi ozadje za %s"
2292
 
2293
+ #: includes/functions.php:935 includes/functions.php:994
2294
  msgid "Image to be used for the background"
2295
  msgstr "Slika, ki bo uporabljena za ozadje"
2296
 
2297
+ #: includes/functions.php:940
2298
  msgid "Color"
2299
  msgstr "Barva"
2300
 
2301
+ #: includes/functions.php:941 includes/preview.php:2548
2302
  msgid "Color to be used for the background"
2303
  msgstr "Barva, ki bo uporabljena za ozadje"
2304
 
2305
+ #: includes/functions.php:944 includes/preview.php:2553
2306
  msgid "Image size"
2307
  msgstr "Velikost slike"
2308
 
2309
+ #: includes/functions.php:954
2310
  msgid "Repeat"
2311
  msgstr "Ponavljanje"
2312
 
2313
+ #: includes/functions.php:967
2314
  msgid "Select image"
2315
  msgstr "Izberi sliko"
2316
 
2317
+ #: includes/functions.php:994
2318
  msgid "Parallax background"
2319
  msgstr "Ozadje za paralakso"
2320
 
2321
+ #: includes/functions.php:997
2322
  msgid "Select background image"
2323
  msgstr "Izberi sliko ozadja"
2324
 
2325
+ #: includes/functions.php:1001
2326
  msgid "Shift"
2327
  msgstr "Pomik"
2328
 
2329
+ #: includes/functions.php:1002
2330
  msgid ""
2331
  "Background image shift in pixels when the block scrolls from top to bottom, "
2332
  "empty means no shift"
2334
  "Pomik slike ozadja v točkah, ko se blok pomakne od vrha k dnu, prazno pomeni "
2335
  "brez pomika"
2336
 
2337
+ #: includes/functions.php:1010 settings.php:1000
2338
  msgid "Link"
2339
  msgstr "Povezava"
2340
 
2341
+ #: includes/functions.php:1010
2342
  msgid "The destination page when the background is clicked"
2343
  msgstr "Ciljna stran pri kliku na ozadje"
2344
 
2345
+ #: includes/functions.php:1012 settings.php:1011
2346
  msgid "Open link in a new tab"
2347
  msgstr "Odpri povezavo v novem zavihku"
2348
 
2349
+ #: includes/functions.php:1015
2350
  msgid "New tab"
2351
  msgstr "Nov zavihek"
2352
 
2353
+ #: includes/functions.php:1246 includes/functions.php:1274 settings.php:1895
2354
+ #: settings.php:1918 settings.php:1941 settings.php:1964 settings.php:1987
2355
+ #: settings.php:2010 settings.php:2033 settings.php:2055 settings.php:2077
2356
  msgid "Click to select black or white list"
2357
  msgstr "Klikni za za izbor črnega ali belega seznama"
2358
 
2359
  #. translators: %s: Ad Inserter Pro
2360
+ #: includes/functions.php:1911
2361
  msgid "Invalid %s version."
2362
  msgstr "Neveljavna izdaja %s."
2363
 
2364
+ #: includes/functions.php:1912
2365
  msgid "Check license"
2366
  msgstr "Preverite licenco"
2367
 
2368
+ #: includes/functions.php:1927
2369
  msgid "License"
2370
  msgstr "Licenca"
2371
 
2372
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2373
+ #: includes/functions.php:2272
2374
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2375
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2376
 
2377
  #. Translators: %s: HTML tags
2378
+ #: includes/functions.php:2325
2379
  msgid ""
2380
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2381
  "account %s and create license key."
2383
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2384
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2385
 
2386
+ #: includes/functions.php:3130
2387
  msgid "Start date"
2388
  msgstr "Začetni datum"
2389
 
2390
+ #: includes/functions.php:3130
2391
  msgid "Enter date in format yyyy-mm-dd"
2392
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2393
 
2394
+ #: includes/functions.php:3130
2395
  msgid "empty means every day as defined by hours and days in week"
2396
  msgstr "prazno pomeni vsak dan kot določeno z urami in dnevi v tednu"
2397
 
2398
+ #: includes/functions.php:3131
2399
  msgid "Start time"
2400
  msgstr "Začetni čas"
2401
 
2402
+ #: includes/functions.php:3131
2403
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2404
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2405
 
2406
+ #: includes/functions.php:3133
2407
  msgid "End date"
2408
  msgstr "Končni datum"
2409
 
2410
+ #: includes/functions.php:3134
2411
  msgid "End time"
2412
  msgstr "Končni čas"
2413
 
2414
+ #: includes/functions.php:3137
2415
  msgid "Select wanted days in week"
2416
  msgstr "Izberite želene dneve v tednu"
2417
 
2418
+ #: includes/functions.php:3477
2419
  msgid "Fallback"
2420
  msgstr "Rezerva"
2421
 
2422
+ #: includes/functions.php:3478
2423
  msgid "Block to be used when a limit is reached"
2424
  msgstr "Blok, ki naj bo prikazan, ko je dosežena meja"
2425
 
2426
+ #: includes/functions.php:3502
2427
  msgid "Ad blocking detection is disabled"
2428
  msgstr "Zaznavanje blokiranja oglasov je onemogočeno"
2429
 
2430
+ #: includes/functions.php:3615
2431
  msgid ""
2432
  "Time in ms before the code is inserted (and ad displayed). Leave empty to "
2433
  "insert the code without any additional delay."
2435
  "Čas v ms preden je koda vstavljena (in oglas prikazan). Pustite prazno za "
2436
  "vstavljanje kode brez dodatne zakasnitve."
2437
 
2438
+ #: includes/functions.php:3654
2439
+ msgid "Check reCAPTCHA score"
2440
+ msgstr "Preveri reCAPTCHA rezultat"
2441
+
2442
+ #: includes/functions.php:3660
2443
  msgid "Wait for user interaction"
2444
  msgstr "Čakaj na interakcijo uporabnika"
2445
 
2446
+ #: includes/functions.php:3668
 
 
 
 
2447
  msgid "Manual loading"
2448
  msgstr "Ročno nalaganje"
2449
 
2450
+ #: includes/functions.php:3687
2451
+ msgid "Protected"
2452
+ msgstr "Zaščiten"
2453
+
2454
+ #: includes/functions.php:3780
2455
  msgid "IP address blocked"
2456
  msgid_plural "IP addresses blocked"
2457
  msgstr[0] "blokiran IP naslov"
2459
  msgstr[2] "blokirani IP naslovi"
2460
  msgstr[3] "blokiranih IP naslovov"
2461
 
2462
+ #: includes/functions.php:3783 includes/functions.php:3832
2463
  msgid "No IP address blocked"
2464
  msgstr "Noben IP naslov ni blokiran"
2465
 
2466
+ #: includes/functions.php:3845
2467
  msgid "Blocked IP address"
2468
  msgstr "Blokirani IP naslovi"
2469
 
2470
+ #: includes/functions.php:3845
2471
  msgid "Country"
2472
  msgstr "Država"
2473
 
2474
+ #: includes/functions.php:3845
2475
  msgid "Time to expiration"
2476
  msgstr "Čas do poteka"
2477
 
2478
+ #: includes/functions.php:3847 strings.php:227
2479
  msgid "Delete"
2480
  msgstr "Pobriši"
2481
 
2482
+ #: includes/functions.php:3862
2483
  msgid "Delete IP address"
2484
  msgstr "Briši IP naslov"
2485
 
2486
+ #: includes/functions.php:4014
2487
+ msgid "Toggle plugin settings"
2488
+ msgstr "Preklopite nastavitve vtičnika"
2489
+
2490
+ #: includes/functions.php:4427
2491
  msgid "CONNECTED"
2492
  msgstr "POVEZAN"
2493
 
2494
+ #: includes/functions.php:4428
2495
  msgid "Disconnect website"
2496
  msgstr "Razveži spletno mesto"
2497
 
2498
+ #: includes/functions.php:4444
2499
  msgid "MANAGED BY"
2500
  msgstr "UPRAVLJAN S STRANI"
2501
 
2502
+ #: includes/functions.php:4465
2503
  msgid "Remote management"
2504
  msgstr "Oddaljeno upravljanje"
2505
 
2506
+ #: includes/functions.php:4469
2507
  msgid "Allow to connect and manage plugin settings"
2508
  msgstr "Dovoli povezavo in upravljanje z nastavitvami vtičnika"
2509
 
2510
+ #: includes/functions.php:4471
2511
  msgid "String to allow plugin management. Clear to reset to default value."
2512
  msgstr ""
2513
  "Niz za dovolitev upravjanja z vtičnikom. Pobrišite za ponastavitev na "
2514
  "privzeto vrednost."
2515
 
2516
+ #: includes/functions.php:4479
2517
  msgid "Check remote IP address"
2518
  msgstr "Preveri oddaljeni IP naslov"
2519
 
2520
+ #: includes/functions.php:4483
2521
  msgid "Check IP address of remote management website"
2522
  msgstr "Preveri IP naslov oddaljenega spletnega mesta za upravljanje"
2523
 
2524
+ #: includes/functions.php:4485
2525
  msgid "Allowed IP addresses of remote management websites"
2526
  msgstr "Dovoljeni IP naslovi oddaljenih spletnih mest za upravljanje"
2527
 
2528
  #. Translators: %s: Ad Inserter Pro
2529
+ #: includes/functions.php:4508
2530
  msgid "Manage %s on other websites"
2531
  msgstr "Upravljajte %s na drugih spletnih mestih"
2532
 
2533
+ #: includes/functions.php:4523
2534
  msgid "Add website"
2535
  msgstr "Dodaj spletno mesto"
2536
 
2537
+ #: includes/functions.php:4527
2538
  msgid "Rearrange website order"
2539
  msgstr "Preuredi vrstni red spletnih mest"
2540
 
2541
+ #: includes/functions.php:4531
2542
  msgid "Cancel changes"
2543
  msgstr "Prekliči spremembe"
2544
 
2545
+ #: includes/functions.php:4535
2546
  msgid "Save changes"
2547
  msgstr "Shrani spremembe"
2548
 
2549
+ #: includes/functions.php:4637 includes/functions.php:4640
2550
+ #: includes/functions.php:4643 includes/functions.php:4648
2551
  msgid "Invalid data received from"
2552
  msgstr "Prejeti neveljavni podatki od"
2553
 
2554
+ #: includes/functions.php:4647 includes/functions.php:4651
2555
  msgid "Error connecting to"
2556
  msgstr "Napaka pri povezovanju na"
2557
 
2558
+ #: includes/functions.php:4647
2559
  msgid "No data received"
2560
  msgstr "Nobenih podatkov ni bilo prejetih"
2561
 
2562
+ #: includes/functions.php:4692
2563
  msgid "Error saving websites"
2564
  msgstr "Napaka pri shranjevanju spletnih mest"
2565
 
2566
+ #: includes/functions.php:4732
2567
  msgid "Can't connect to itself"
2568
  msgstr "Ne morem se povezati nase"
2569
 
2570
+ #: includes/functions.php:4783
2571
  msgid "Connect website"
2572
  msgstr "Pveži spletno mesto"
2573
 
2574
+ #: includes/functions.php:4787
2575
  msgid "Delete website"
2576
  msgstr "Izbriši spletno mesto"
2577
 
2578
+ #: includes/functions.php:4803
2579
  msgid "Key"
2580
  msgstr "Ključ"
2581
 
2582
+ #: includes/functions.php:4821
2583
  msgid "Address"
2584
  msgstr "Naslov"
2585
 
2586
+ #: includes/functions.php:4834
2587
  msgid "No website configured"
2588
  msgstr "Nobeno spletno mesto ni nastavljeno"
2589
 
2590
+ #: includes/functions.php:4835
2591
  msgid "No website matches search keywords"
2592
  msgstr "Nobeno spletno mesto ne ustreza iskalnim ključnim besedam"
2593
 
2594
  #. Translators: %s HTML tags
2595
+ #: includes/functions.php:4864
2596
  msgid "Create and manage %s MaxMind license key %s"
2597
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2598
 
2599
+ #: includes/functions.php:4900
2600
  msgid "MaxMind license key"
2601
  msgstr "MaxMind licenčni ključ"
2602
 
2603
+ #: includes/functions.php:4903
2604
  msgid "Enter license key obtained from MaxMind"
2605
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2606
 
2607
+ #: includes/functions.php:5104
2608
  msgid ""
2609
  "Image or logo to be displayed in the header of the statistics report. "
2610
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2614
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
2615
  "ponastavitev na privzeto sliko."
2616
 
2617
+ #: includes/functions.php:5152
2618
  msgid "Event category"
2619
  msgstr "Kategorija dogodka"
2620
 
2621
+ #: includes/functions.php:5155
2622
  msgid ""
2623
  "Category name used for external tracking events. You can use tags to get the "
2624
  "event, the number or the name of the block that caused the event."
2626
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2627
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2628
 
2629
+ #: includes/functions.php:5160
2630
  msgid "Event action"
2631
  msgstr "Akcija dogodka"
2632
 
2633
+ #: includes/functions.php:5163
2634
  msgid ""
2635
  "Action name used for external tracking events. You can use tags to get the "
2636
  "event, the number or the name of the block that caused the event."
2638
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2639
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2640
 
2641
+ #: includes/functions.php:5168
2642
  msgid "Event label"
2643
  msgstr "Oznaka dogodka"
2644
 
2645
+ #: includes/functions.php:5171
2646
  msgid ""
2647
  "Label name used for external tracking events. You can use tags to get the "
2648
  "event, the number or the name of the block that caused the event."
2650
  "Ime oznake uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2651
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2652
 
2653
+ #: includes/functions.php:5204
2654
  msgid "Global visitor limits"
2655
  msgstr "Globalne omejitve obiskovalca"
2656
 
2657
+ #: includes/functions.php:5227
2658
  msgid "Block IP address"
2659
  msgstr "Blokiraj IP naslov"
2660
 
2661
+ #: includes/functions.php:5232
2662
  msgid "Block visitor's IP address when protection is activated"
2663
  msgstr "Blokiraj obiskovalčev IP naslov, ko je aktivirana zaščita"
2664
 
2665
+ #: includes/functions.php:5234
2666
  msgid "Click to show blocked IP addresses"
2667
  msgstr "Kliknite za prikaz blokiranih IP naslovov"
2668
 
2669
  #. translators: %s: Ad Inserter Pro
2670
+ #: includes/functions.php:5424
2671
  msgid "Show link to %s settings page for each site on the Sites page"
2672
  msgstr ""
2673
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2674
  "Spletišča"
2675
 
2676
  #. translators: %s: Ad Inserter Pro
2677
+ #: includes/functions.php:5424
2678
  msgid "Show link to %s on the Sites page"
2679
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2680
 
2681
+ #: includes/functions.php:5466 settings.php:3354
2682
  msgid ""
2683
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2684
  "tags, processing) by url parameters for non-logged in users. Enable this "
2693
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
2694
  "vedno omogočeno."
2695
 
2696
+ #: includes/functions.php:5468 settings.php:3356
2697
  msgid "Remote debugging"
2698
  msgstr "Oddaljeno razhroščevanje"
2699
 
2700
+ #: includes/functions.php:6716
2701
+ msgid "All statistics data for block %s deleted"
2702
+ msgstr "Vsi podatki o statistiki za blok %s pobrisani"
2703
+
2704
+ #: includes/functions.php:6720
2705
+ msgid "Statistics data between %s and %s deleted"
2706
+ msgstr "Podatki o statistiki med %s in %s pobrisani"
2707
+
2708
+ #: includes/functions.php:7051
2709
  msgid "Date"
2710
  msgstr "Datum"
2711
 
2712
+ #: includes/functions.php:7485 includes/functions.php:7496
2713
  msgid "File %s missing."
2714
  msgstr "Datoteka %s ni najdena."
2715
 
2737
  msgid "Placeholder"
2738
  msgstr "Polnilo"
2739
 
2740
+ #: includes/placeholders.php:361 settings.php:1067 settings.php:4740
2741
  msgid "Size"
2742
  msgstr "Velikost"
2743
 
2744
+ #: includes/placeholders.php:377 includes/preview.php:2545 settings.php:2399
2745
  msgid "Background color"
2746
  msgstr "Barva ozadja"
2747
 
2870
  msgid "Ad Blocking Detected Message Preview"
2871
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2872
 
2873
+ #: includes/preview-adb.php:360 settings.php:3191
2874
  msgid "Message CSS"
2875
  msgstr "CSS sporočila"
2876
 
2877
+ #: includes/preview-adb.php:365 settings.php:3199
2878
  msgid "Overlay CSS"
2879
  msgstr "CSS prevleke"
2880
 
2910
  msgid "background"
2911
  msgstr "ozadje"
2912
 
2913
+ #: includes/preview.php:2529 includes/preview.php:2741 settings.php:1469
2914
  msgid "Alignment"
2915
  msgstr "Poravnava"
2916
 
3067
  "Opozorilo: vtičnik Ad Inserter Pro je zastarel - ni bil preverjen z "
3068
  "različico WordPres"
3069
 
3070
+ #: settings.php:173 settings.php:176
3071
  msgid ""
3072
  "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
3073
  msgstr ""
3075
  "vedno izjeme"
3076
 
3077
  #. translators: %s: HTML link code
3078
+ #: settings.php:183
3079
  msgid ""
3080
  "Warning: %s Unfiltered HTML %s is disabled for this website - most ad codes "
3081
  "can't be used"
3083
  "Opozorilo: %s Nefiltriran HTML %s je onemogočen za to spletišče - večino "
3084
  "oglasnih kod ni mogoče uporabiti"
3085
 
3086
+ #: settings.php:278
3087
  msgid "Online documentation"
3088
  msgstr "Spletna Dokumentacija"
3089
 
3090
+ #: settings.php:281
3091
+ msgid "Support Forum"
3092
+ msgstr "Podporni Forum"
3093
+
3094
+ #: settings.php:286 settings.php:885 settings.php:2505
3095
  msgid "Show AdSense ad units"
3096
  msgstr "Pokaži oglasne enote AdSense"
3097
 
3098
+ #: settings.php:295
3099
  msgid "Edit ads.txt file"
3100
  msgstr "Uredi datoteko ads.txt"
3101
 
3102
+ #: settings.php:298 settings.php:1295
3103
  msgid "Check theme for available positions for automatic insertion"
3104
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
3105
 
3106
+ #: settings.php:302
3107
  msgid "List all blocks"
3108
  msgstr "Izpiši seznam vseh blokov"
3109
 
3110
+ #: settings.php:309
3111
  msgid "Loaded plugin JavaScript file version"
3112
  msgstr "Naložena različica JavaScript datoteke vtičnika"
3113
 
3114
  #. translators: %s: HTML tags
3115
+ #: settings.php:311
3116
  msgid ""
3117
  "Wrong or %s missing version parameter %s of the JavaScript file, probably "
3118
  "due to inappropriate caching."
3120
  "Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
3121
  "zaradi nepravilnega predpomnjenja."
3122
 
3123
+ #: settings.php:312
3124
  msgid ""
3125
  "Missing version parameter of the JavaScript file, probably due to "
3126
  "inappropriate caching."
3128
  "Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
3129
  "predpomnjenja."
3130
 
3131
+ #: settings.php:313
3132
  msgid ""
3133
  "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
3134
  "caching."
3136
  "Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
3137
  "zaradi nepravilnega predpomnjenja."
3138
 
3139
+ #: settings.php:314 settings.php:325
3140
  msgid ""
3141
  "Please delete browser's cache and all other caches used and then reload this "
3142
  "page."
3144
  "Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
3145
  "potem na novo naložite to stran."
3146
 
3147
+ #: settings.php:320
3148
  msgid "Loaded plugin CSS file version"
3149
  msgstr "Naložena različica CSS datoteke vtičnika"
3150
 
3151
  #. translators: %s: HTML tags
3152
+ #: settings.php:322
3153
  msgid ""
3154
  "Wrong or %s missing version parameter %s of the CSS file, probably due to "
3155
  "inappropriate caching."
3157
  "Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
3158
  "nepravilnega predpomnjenja."
3159
 
3160
+ #: settings.php:323
3161
  msgid ""
3162
  "Missing version parameter of the CSS file, probably due to inappropriate "
3163
  "caching."
3165
  "Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
3166
  "predpomnjenja."
3167
 
3168
+ #: settings.php:324
3169
  msgid ""
3170
  "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
3171
  msgstr ""
3172
  "Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
3173
  "nepravilnega predpomnjenja."
3174
 
3175
+ #: settings.php:331 settings.php:357
3176
  msgid "WARNING"
3177
  msgstr "OPOZORILO"
3178
 
3179
  #. translators: %s: HTML tags
3180
+ #: settings.php:333
3181
  msgid "Page may %s not be loaded properly. %s"
3182
  msgstr "Stran mogoče %s ni naložena pravilno. %s"
3183
 
3184
+ #: settings.php:334
3185
  msgid ""
3186
  "Check ad blocking software that may block CSS, JavaScript or image files."
3187
  msgstr ""
3188
  "Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
3189
  "JavaScript ali slikovne datoteke."
3190
 
3191
+ #: settings.php:343
3192
  msgid "SAFE MODE"
3193
  msgstr "VARNI NAČIN"
3194
 
3195
  #. translators: %s: HTML tags
3196
+ #: settings.php:345
3197
  msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
3198
  msgstr "Stran je naložena v %s varnem načinu. %s Vse skripte niso naložene."
3199
 
3200
+ #: settings.php:357
3201
  msgid ""
3202
  "To disable debugging functions and to enable insertions go to tab [*] / tab "
3203
  "Debugging"
3205
  "Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
3206
  "na zavihek [*] / zavihek Razhroščevanje"
3207
 
3208
+ #: settings.php:359
3209
  msgid "Debugging functions enabled - some code is not inserted"
3210
  msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
3211
 
3212
+ #: settings.php:376
3213
  msgid "Group name"
3214
  msgstr "Ime skupine"
3215
 
3216
+ #: settings.php:377
3217
  msgid "Option name"
3218
  msgstr "Ime različice"
3219
 
3220
+ #: settings.php:383
3221
  msgid "Share"
3222
  msgstr "Delež"
3223
 
3224
+ #: settings.php:386
3225
  msgid ""
3226
  "Option share in percents - 0 means option is disabled, if share for one "
3227
  "option is not defined it will be calculated automatically. Leave all share "
3231
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
3232
  "prazne za enakomerno porazdelitev deležev različic."
3233
 
3234
+ #: settings.php:389 settings.php:2232 settings.php:4653
3235
  msgid "Scheduling"
3236
  msgstr "Urnik"
3237
 
3238
+ #: settings.php:392
3239
  msgid "Scheduling parameters"
3240
  msgstr "Parametri urnika"
3241
 
3242
+ #: settings.php:395
3243
  msgid "Time"
3244
  msgstr "Čas"
3245
 
3246
+ #: settings.php:398
3247
  msgid ""
3248
  "Option time in seconds - 0 means option is disabled and will be skipped. "
3249
  "Leave all time fields empty for no timed rotation."
3251
  "Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
3252
  "preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
3253
 
3254
+ #: settings.php:569
3255
  msgid "General Settings"
3256
  msgstr "Splošne Nastavitve"
3257
 
3258
+ #: settings.php:833 settings.php:2887 settings.php:2956 settings.php:3169
3259
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3260
  msgstr ""
3261
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
3262
 
3263
+ #: settings.php:840
3264
  msgid "Toggle tools"
3265
  msgstr "Preklopi orodja"
3266
 
3267
+ #: settings.php:848
3268
  msgid "Process PHP code in block"
3269
  msgstr "Procesiraj PHP kodo v bloku"
3270
 
3271
+ #: settings.php:855
3272
  msgid "Disable insertion of this block"
3273
  msgstr "Onemogoči vstavljanje tega bloka"
3274
 
3275
+ #: settings.php:867
3276
  msgid "Toggle code generator"
3277
  msgstr "Preklopi generator kode"
3278
 
3279
+ #: settings.php:871
3280
  msgid "Toggle rotation editor"
3281
  msgstr "Preklopi urejevalnik rotacije"
3282
 
3283
+ #: settings.php:875
3284
  msgid "Open visual HTML editor"
3285
  msgstr "Odpri vizualni HTML urejevalnik"
3286
 
3287
+ #: settings.php:894
3288
  msgid "Clear block"
3289
  msgstr "Počisti blok"
3290
 
3291
+ #: settings.php:899 settings.php:4605
3292
  msgid "Copy block"
3293
  msgstr "Kopiraj blok"
3294
 
3295
+ #: settings.php:903
3296
  msgid "Paste name"
3297
  msgstr "Prilepi ime"
3298
 
3299
+ #: settings.php:907
3300
  msgid "Paste code"
3301
  msgstr "Prilepi kodo"
3302
 
3303
+ #: settings.php:911
3304
  msgid "Paste settings"
3305
  msgstr "Prilepi nastavitve"
3306
 
3307
+ #: settings.php:915
3308
  msgid "Paste block (name, code and settings)"
3309
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
3310
 
3311
+ #: settings.php:934
3312
  msgid "Rotation groups"
3313
  msgstr "Skupine za rotacijo"
3314
 
3315
+ #: settings.php:938
3316
  msgid "Remove option"
3317
  msgstr "Odstrani različico"
3318
 
3319
+ #: settings.php:942
3320
  msgid "Add option"
3321
  msgstr "Dodaj različico"
3322
 
3323
+ #: settings.php:957
3324
  msgid "Import code"
3325
  msgstr "Uvozi kodo"
3326
 
3327
+ #: settings.php:961
3328
  msgid "Generate code"
3329
  msgstr "Generiraj kodo"
3330
 
3331
+ #: settings.php:966
3332
  msgid "Banner"
3333
  msgstr "Pasica"
3334
 
3335
+ #: settings.php:978
3336
  msgid "Image"
3337
  msgstr "Slika"
3338
 
3339
+ #: settings.php:986
3340
  msgid "Alt text"
3341
  msgstr "Besedilo alt"
3342
 
3343
+ #: settings.php:1014
3344
  msgid "Select Image"
3345
  msgstr "Izberi Sliko"
3346
 
3347
+ #: settings.php:1015
3348
  msgid "Select Placeholder"
3349
  msgstr "Izberi Polnilo"
3350
 
3351
+ #: settings.php:1027
3352
  msgid "Comment"
3353
  msgstr "Komentar"
3354
 
3355
+ #: settings.php:1036
3356
  msgctxt "AdSense"
3357
  msgid "Publisher ID"
3358
  msgstr "ID založnika"
3359
 
3360
+ #: settings.php:1045
3361
  msgctxt "AdSense"
3362
  msgid "Ad Slot ID"
3363
  msgstr "ID mesta"
3364
 
3365
+ #: settings.php:1054
3366
  msgid "Ad Type"
3367
  msgstr "Vrsta"
3368
 
3369
+ #: settings.php:1079 settings.php:1221
3370
  msgid "AMP Ad"
3371
  msgstr "AMP Oglas"
3372
 
3373
+ #: settings.php:1093 settings.php:1243
3374
  msgid "Block on consent"
3375
  msgstr "Blokiraj ob soglasju"
3376
 
3377
+ #: settings.php:1104
3378
  msgid "Show ad units from your AdSense account"
3379
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3380
 
3381
+ #: settings.php:1104
3382
  msgid "AdSense ad units"
3383
  msgstr "Oglasne enote AdSense"
3384
 
3385
+ #: settings.php:1121
3386
  msgctxt "AdSense"
3387
  msgid "Layout"
3388
  msgstr "Postavitev"
3389
 
3390
+ #: settings.php:1130
3391
  msgctxt "AdSense"
3392
  msgid "Layout Key"
3393
  msgstr "Ključ postavitve"
3394
 
3395
+ #: settings.php:1140
3396
  msgid "Full width"
3397
  msgstr "Celotna širina"
3398
 
3399
+ #: settings.php:1142
3400
  msgctxt "Full width"
3401
  msgid "Enabled"
3402
  msgstr "Omogočena"
3403
 
3404
+ #: settings.php:1143
3405
  msgctxt "Full width"
3406
  msgid "Disabled"
3407
  msgstr "Onemogočena"
3408
 
3409
+ #: settings.php:1261
3410
  msgid ""
3411
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3412
  "Cookie or Referer (domain)"
3414
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3415
  "parametrov, Piškotkov ali napotiteljev (domen)"
3416
 
3417
+ #: settings.php:1261
3418
  msgid "Lists"
3419
  msgstr "Seznami"
3420
 
3421
+ #: settings.php:1262
3422
  msgid "Widget, Shortcode and PHP function call"
3423
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3424
 
3425
+ #: settings.php:1262
3426
  msgid "Manual"
3427
  msgstr "Ročno"
3428
 
3429
+ #: settings.php:1263
3430
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3431
  msgstr ""
3432
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3433
 
3434
+ #: settings.php:1263
3435
  msgid "Devices"
3436
  msgstr "Naprave"
3437
 
3438
+ #: settings.php:1264
3439
  msgid ""
3440
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3441
  "feeds), Filter, Scheduling, General tag"
3443
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3444
  "RSS), Filter, Urnik, Splošna oznaka"
3445
 
3446
+ #: settings.php:1264
3447
  msgid "Misc"
3448
  msgstr "Razno"
3449
 
3450
+ #: settings.php:1265
3451
  msgid "Preview code and alignment"
3452
  msgstr "Predogled kode in poravnave"
3453
 
3454
+ #: settings.php:1268 settings.php:2486
3455
  msgid ""
3456
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3457
  "editor is active before saving settings."
3459
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3460
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3461
 
3462
+ #: settings.php:1281 settings.php:1282
3463
  msgid "Enable insertion on posts"
3464
  msgstr "Omogoči vstavljanje na prispevkih"
3465
 
3466
+ #: settings.php:1282 settings.php:3777
3467
  msgid "Posts"
3468
  msgstr "Prispevki"
3469
 
3470
+ #: settings.php:1286 settings.php:1287
3471
  msgid ""
3472
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3473
  "page or theme homepage (available positions may depend on hooks used by the "
3477
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3478
  "lahko odvisni od ročic, ki jih tema uporablja)"
3479
 
3480
+ #: settings.php:1287 settings.php:3779
3481
  msgid "Homepage"
3482
  msgstr "Domača stran"
3483
 
3484
+ #: settings.php:1291 settings.php:1292
3485
  msgid "Enable insertion on category blog pages (including sub-pages)"
3486
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3487
 
3488
+ #: settings.php:1292 settings.php:3780
3489
  msgid "Category pages"
3490
  msgstr "Strani kategorij"
3491
 
3492
+ #: settings.php:1302 settings.php:1303
3493
  msgid "Enable insertion on static pages"
3494
  msgstr "Omogoči vstavljanje na statičnih straneh"
3495
 
3496
+ #: settings.php:1303 settings.php:3778
3497
  msgid "Static pages"
3498
  msgstr "Statične strani"
3499
 
3500
+ #: settings.php:1307 settings.php:1308
3501
  msgid "Enable insertion on search blog pages"
3502
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3503
 
3504
+ #: settings.php:1308 settings.php:3782
3505
  msgid "Search pages"
3506
  msgstr "Iskalne strani"
3507
 
3508
+ #: settings.php:1312 settings.php:1313
3509
  msgid "Enable insertion on tag or archive blog pages"
3510
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3511
 
3512
+ #: settings.php:1316
3513
  msgid "Toggle settings for default insertion and list of individual exceptions"
3514
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3515
 
3516
+ #: settings.php:1328
3517
  msgid ""
3518
  "Enable individual post/page exceptions for insertion of this block. They can "
3519
  "be configured on the individual post/page editor page (in the settings below "
3523
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3524
  "nastavitvah pod urejevalnikom)."
3525
 
3526
+ #: settings.php:1329
3527
  msgid ""
3528
  "Enable individual post/page exceptions for insertion of this block. When "
3529
  "enabled they can be configured on the individual post/page editor page (in "
3533
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3534
  "strani (v nastavitvah pod urejevalnikom)."
3535
 
3536
+ #: settings.php:1329
3537
  msgid "Use exceptions for individual posts or pages to change insertion"
3538
  msgstr ""
3539
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3540
 
3541
  #. Translators: Enabled means...
3542
+ #: settings.php:1337
3543
  msgid ""
3544
  "means the insertion for this block is enabled by default and disabled for "
3545
  "exceptions."
3548
  "izjeme."
3549
 
3550
  #. Translators: Disabled means...
3551
+ #: settings.php:1338
3552
  msgid ""
3553
  "means the insertion for this block is disabled by default and enabled for "
3554
  "exceptions."
3556
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3557
  "izjeme."
3558
 
3559
+ #: settings.php:1339
3560
  msgid ""
3561
  "When individual post/page exceptions are enabled they can be configured on "
3562
  "the individual post/page editor page (in the settings below the editor)."
3565
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3566
  "urejevalnikom)."
3567
 
3568
+ #: settings.php:1347
3569
  msgid ""
3570
  "No exception for post or static page defined. Block will not be inserted."
3571
  msgstr ""
3572
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3573
 
3574
+ #: settings.php:1352
3575
  msgid ""
3576
  "Settings for individual exceptions have been updated. Please check all "
3577
  "blocks that have exceptions and and then save settings."
3579
  "Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
3580
  "bloke, ki imajo izjeme in potem shranite nastavitve."
3581
 
3582
+ #: settings.php:1365
3583
  msgctxt "post"
3584
  msgid "Type"
3585
  msgstr "Vrsta"
3586
 
3587
  #. translators: %d: block number
3588
+ #: settings.php:1370
3589
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3590
  msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
3591
 
3592
+ #: settings.php:1371
3593
  msgid "Clear listed exceptions for block"
3594
  msgstr "Pobriši izpisane izjeme za blok"
3595
 
3596
+ #: settings.php:1400 settings.php:1548 settings.php:2229
3597
  msgid "Insertion"
3598
  msgstr "Vstavljanje"
3599
 
3600
+ #: settings.php:1438
3601
  msgid ""
3602
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3603
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3613
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3614
  "število pomeni štetje z nasprotne smeri"
3615
 
3616
+ #: settings.php:1439
3617
  msgid ""
3618
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3619
  "means every N images, empty means all images, 0 means random image, value "
3628
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3629
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3630
 
3631
+ #: settings.php:1452
3632
  msgid ""
3633
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3634
  "numbers, %N means every N excerpts, empty means all excerpts"
3637
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3638
  "izvlečki"
3639
 
3640
+ #: settings.php:1453
3641
  msgid ""
3642
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3643
  "numbers, %N means every N posts, empty means all posts"
3646
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3647
  "prispevki"
3648
 
3649
+ #: settings.php:1454
3650
  msgid ""
3651
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3652
  "numbers, %N means every N comments, empty means all comments"
3655
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3656
  "vsi komentarji"
3657
 
3658
+ #: settings.php:1461
3659
  msgid "Toggle paragraph counting settings"
3660
  msgstr "Preklopi nastavitve za štetje odstavkov"
3661
 
3662
+ #: settings.php:1462
3663
  msgid "Toggle paragraph clearance settings"
3664
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3665
 
3666
+ #: settings.php:1465
3667
  msgid "Toggle insertion filter settings"
3668
  msgstr "Preklopi nastavitve filtra vstavljanja"
3669
 
3670
+ #: settings.php:1483
3671
  msgid "Toggle insertion and alignment icons"
3672
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3673
 
3674
+ #: settings.php:1497
3675
  msgid "Custom CSS code for the wrapping div"
3676
  msgstr "CSS koda po meri za div za ovijanje"
3677
 
3678
+ #: settings.php:1500 settings.php:1501 settings.php:1502 settings.php:1503
3679
+ #: settings.php:1504 settings.php:1505
3680
  msgid "CSS code for the wrapping div, click to edit"
3681
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3682
 
3683
+ #: settings.php:1518
3684
  msgid "HTML element"
3685
  msgstr "HTML element"
3686
 
3687
+ #: settings.php:1531
3688
  msgid "HTML element selector or comma separated list of selectors"
3689
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3690
 
3691
+ #: settings.php:1537 settings.php:3065
3692
  msgid "Action"
3693
  msgstr "Akcija"
3694
 
3695
+ #: settings.php:1549
3696
  msgid ""
3697
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3698
  "Server-side insertion inserts block when the page is generated but needs "
3702
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3703
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3704
 
3705
+ #: settings.php:1559
3706
  msgid "Wait for"
3707
  msgstr "Čakaj na"
3708
 
3709
+ #: settings.php:1571
3710
  msgid "Wait for HTML element to be loaded"
3711
  msgstr "Čakaj, da se naloži HTML element"
3712
 
3713
+ #: settings.php:1578
3714
  msgid "Time in ms to delay insertion"
3715
  msgstr "Čas v ms za zakasnitev vstavljanja"
3716
 
3717
+ #: settings.php:1583
3718
  msgid "Code position"
3719
  msgstr "Položaj kode"
3720
 
3721
+ #: settings.php:1584
3722
  msgid ""
3723
  "Page position where the code for client-side insertion will be inserted."
3724
  msgstr ""
3725
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3726
 
3727
+ #: settings.php:1602
3728
  msgid "Count"
3729
  msgstr "Štej"
3730
 
3731
+ #: settings.php:1608
3732
  msgid "paragraphs with tags"
3733
  msgstr "odstavke z značkami"
3734
 
3735
+ #: settings.php:1614
3736
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3737
  msgstr ""
3738
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3739
 
3740
+ #: settings.php:1623
3741
  msgid "that have between"
3742
  msgstr "ki imajo med"
3743
 
3744
+ #: settings.php:1629
3745
  msgid "Minimum number of paragraph words, leave empty for no limit"
3746
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3747
 
3748
+ #: settings.php:1638
3749
  msgid "Maximum number of paragraph words, leave empty for no limit"
3750
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3751
 
3752
+ #: settings.php:1641
3753
  msgid "words"
3754
  msgstr "besed"
3755
 
3756
+ #: settings.php:1656 settings.php:1703 settings.php:1817 settings.php:1843
3757
  msgid "Comma separated texts"
3758
  msgstr "Z vejico ločena besedila"
3759
 
3760
  #. translators: inside [HTML tags] elements that contain
3761
+ #: settings.php:1675
3762
  msgid "inside"
3763
  msgstr "znotraj"
3764
 
3765
+ #: settings.php:1681
3766
  msgid "Comma separated HTML tag names of container elements"
3767
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3768
 
3769
  #. translators: inside [HTML tags] elements that contain
3770
+ #: settings.php:1690
3771
  msgid "elements that"
3772
  msgstr "elementov, ki"
3773
 
3774
+ #: settings.php:1713
3775
  msgid ""
3776
  "Count also paragraphs inside these elements - defined on general plugin "
3777
  "settings page - tab [*] / tab General"
3779
  "Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
3780
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3781
 
3782
+ #: settings.php:1720 settings.php:1721
3783
  msgid ""
3784
  "If checked it will search for the text only in tag attributes like [[id]], "
3785
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
3789
  "[[class]], [[style]], itd. V nasprotnem bo preiskana celotna značka vključno "
3790
  "z njeno vsebino."
3791
 
3792
+ #: settings.php:1721
3793
  msgid "Check only tag attributes"
3794
  msgstr "Preveri samo atribute značke"
3795
 
3796
  #. Translators: %s: HTML tags
3797
+ #: settings.php:1726
3798
  msgid "Count inside %s elements"
3799
  msgstr "Štej znotraj elementov %s"
3800
 
3801
  #. Translators: Do not insert for first X and last Y paragraphs
3802
+ #: settings.php:1734
3803
  msgid "Do not insert for first"
3804
  msgid_plural "Do not insert for first"
3805
  msgstr[0] "Ne vstavi za prvi"
3807
  msgstr[2] "Ne vstavi za prve"
3808
  msgstr[3] "Ne vstavi za prvih"
3809
 
3810
+ #: settings.php:1740
3811
  msgid ""
3812
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3813
  "first paragraphs"
3816
  "odstavkov"
3817
 
3818
  #. Translators: Do not insert for first X and last Y paragraphs
3819
+ #: settings.php:1743
3820
  msgid "and last"
3821
  msgid_plural "and last"
3822
  msgstr[0] "in zadnji"
3824
  msgstr[2] "in zadnje"
3825
  msgstr[3] "in zadnjih"
3826
 
3827
+ #: settings.php:1749
3828
  msgid ""
3829
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3830
  "last paragraphs"
3834
 
3835
  #. Translators: Do not insert for first X and last Y paragraphs
3836
  #. Translators: Post/Static page must have between X and Y paragraphs
3837
+ #: settings.php:1752 settings.php:1778
3838
  msgid "paragraph"
3839
  msgid_plural "paragraphs"
3840
  msgstr[0] "odstavek"
3842
  msgstr[2] "odstavke"
3843
  msgstr[3] "odstavkov"
3844
 
3845
+ #: settings.php:1760 settings.php:2361
3846
  msgid "Post/Static page must have between"
3847
  msgstr "Prispevek/Statična stran mora imeti med"
3848
 
3849
+ #: settings.php:1766
3850
  msgid "Minimum number of paragraphs, leave empty for no limit"
3851
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3852
 
3853
+ #: settings.php:1775
3854
  msgid "Maximum number of paragraphs, leave empty for no limit"
3855
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3856
 
3857
+ #: settings.php:1786
3858
  msgid "Minimum number of words in paragraphs above"
3859
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3860
 
3861
+ #: settings.php:1792
3862
  msgid ""
3863
  "Used only with automatic insertion After paragraph and empty paragraph "
3864
  "numbers"
3866
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3867
  "številkami odstavkov"
3868
 
3869
+ #: settings.php:1802 settings.php:1828
3870
  msgid "In"
3871
  msgstr "V"
3872
 
3873
+ #: settings.php:1808
3874
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3875
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3876
 
3877
+ #: settings.php:1811
3878
  msgid "paragraphs above avoid"
3879
  msgstr "odstavkih zgoraj se izogni"
3880
 
3881
+ #: settings.php:1834
3882
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3883
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3884
 
3885
+ #: settings.php:1837
3886
  msgid "paragraphs below avoid"
3887
  msgstr "odstavkih spodaj se izogni"
3888
 
3889
+ #: settings.php:1853
3890
  msgid "If text is found"
3891
  msgstr "Če je besedilo najdeno"
3892
 
3893
+ #: settings.php:1860
3894
  msgid "check up to"
3895
  msgstr "preveri do"
3896
 
3897
+ #: settings.php:1868
3898
  msgctxt "check up to"
3899
  msgid "paragraphs"
3900
  msgstr "odstavkov"
3901
 
3902
+ #: settings.php:1884
3903
  msgid "Categories"
3904
  msgstr "Kategorije"
3905
 
3906
+ #: settings.php:1887
3907
  msgid "Toggle category editor"
3908
  msgstr "Preklopi urejevalnik kategorij"
3909
 
3910
+ #: settings.php:1890
3911
  msgid "Comma separated category slugs"
3912
  msgstr "Z vejico ločeni ključi kategorij"
3913
 
3914
+ #: settings.php:1907
3915
  msgid "Tags"
3916
  msgstr "Oznake"
3917
 
3918
+ #: settings.php:1910
3919
  msgid "Toggle tag editor"
3920
  msgstr "Preklopi urejevalnik oznak"
3921
 
3922
+ #: settings.php:1913
3923
  msgid "Comma separated tag slugs"
3924
  msgstr "Z vejico ločeni ključi oznak"
3925
 
3926
+ #: settings.php:1930
3927
  msgid "Taxonomies"
3928
  msgstr "Taksonomije"
3929
 
3930
+ #: settings.php:1933
3931
  msgid "Toggle taxonomy editor"
3932
  msgstr "Preklopi urejevalnik taksonomij"
3933
 
3934
+ #: settings.php:1936
3935
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3936
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3937
 
3938
+ #: settings.php:1953
3939
  msgid "Post IDs"
3940
  msgstr "ID-ji prispevkov"
3941
 
3942
+ #: settings.php:1956
3943
  msgid "Toggle post/page ID editor"
3944
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3945
 
3946
+ #: settings.php:1959
3947
  msgid "Comma separated post/page IDs"
3948
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3949
 
3950
+ #: settings.php:1976
3951
  msgid "Urls"
3952
  msgstr "Url-ji"
3953
 
3954
+ #: settings.php:1979
3955
  msgid "Toggle url editor"
3956
  msgstr "Preklopi urejevalnik url-jev"
3957
 
3958
+ #: settings.php:1982
3959
  msgid ""
3960
  "Comma separated urls (page addresses) starting with / after domain name (e."
3961
  "g. /permalink-url, use only when you need to taget a specific url not "
3967
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3968
  "začetek*. *url-vzorec*, *url-konec)"
3969
 
3970
+ #: settings.php:1998
3971
  msgid "Url parameters"
3972
  msgstr "Url parametri"
3973
 
3974
+ #: settings.php:2002
3975
  msgid "Toggle url parameter and cookie editor"
3976
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3977
 
3978
+ #: settings.php:2005
3979
  msgid ""
3980
  "Comma separated url query parameters or cookies with optional values (use "
3981
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
3984
  "vrednostmi (uporabite 'parameter', 'parameter=vrednost', 'piškotek' or "
3985
  "'piškotek=vrednost')"
3986
 
3987
+ #: settings.php:2021
3988
  msgid "Cookies"
3989
  msgstr "Piškotki"
3990
 
3991
+ #: settings.php:2025
3992
  msgid "Toggle cookie editor"
3993
  msgstr "Preklopi urejevalnik piškotkov"
3994
 
3995
+ #: settings.php:2028
3996
  msgid ""
3997
  "Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
3998
  msgstr ""
3999
  "Z vejico ločeni piškotki z neobveznimi vrednostmi (uporabite 'piškotek' ali "
4000
  "'piškotek=vrednost')"
4001
 
4002
+ #: settings.php:2044
4003
  msgid "Referrers"
4004
  msgstr "Napotitelji"
4005
 
4006
+ #: settings.php:2047
4007
  msgid "Toggle referrer editor"
4008
  msgstr "Preklopi urejevalnik napotiteljev"
4009
 
4010
+ #: settings.php:2050
4011
  msgid ""
4012
  "Comma separated domains, use # for no referrer, you can also use partial "
4013
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
4015
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
4016
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
4017
 
4018
+ #: settings.php:2066
4019
  msgid "Clients"
4020
  msgstr "Odjemalci"
4021
 
4022
+ #: settings.php:2069
4023
  msgid "Toggle client editor"
4024
  msgstr "Preklopi urejevalnik odjemalcev"
4025
 
4026
+ #: settings.php:2072
4027
  msgid ""
4028
  "Comma separated names (operating systems, browsers, devices). You can also "
4029
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
4033
  "lahko tudi delne nize uporabniškega agenta z * (začetek-uporabnšikega-"
4034
  "agenta*. *vzorec-uporabnšikega-agenta*, *konec-uporabnšikega-agenta)"
4035
 
4036
+ #: settings.php:2098
4037
  msgid "Enable widget for this block"
4038
  msgstr "Omogočite gradnik za ta blok"
4039
 
4040
+ #: settings.php:2103
4041
  msgid "Sidebars (or widget positions) where this widget is used"
4042
  msgstr ""
4043
  "Stranske vrstice (ali položaji gradnikov) kjer je ta gradnik uporabljen"
4044
 
4045
+ #: settings.php:2110
4046
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
4047
  msgstr ""
4048
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
4049
 
4050
+ #: settings.php:2111 settings.php:4663
4051
  msgid "Shortcode"
4052
  msgstr "Kratka koda"
4053
 
4054
+ #: settings.php:2126
4055
  msgid ""
4056
  "Enable PHP function call to insert this block at any position in theme file. "
4057
  "If function is disabled for block it will return empty string."
4060
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
4061
  "prazen niz."
4062
 
4063
+ #: settings.php:2127
4064
  msgid "PHP function"
4065
  msgstr "PHP funkcija"
4066
 
4067
+ #: settings.php:2142
4068
  msgid "Client-side device detection"
4069
  msgstr "Zaznavanje naprave na strani odjemalca"
4070
 
4071
+ #: settings.php:2143
4072
  msgid "Server-side device detection"
4073
  msgstr "Zaznavanje naprave na strani strežnika"
4074
 
4075
+ #: settings.php:2150
4076
  msgid "Use client-side detection to"
4077
  msgstr "Uporabi zaznavanje na strani odjemalca in"
4078
 
4079
+ #: settings.php:2152
4080
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
4081
  msgstr ""
4082
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
4083
 
4084
  #. Translators: only on (the following devices): viewport names (devices)
4085
  #. listed
4086
+ #: settings.php:2157
4087
  msgid "only on"
4088
  msgstr "samo na"
4089
 
4090
+ #: settings.php:2185
4091
  msgid "Device min width %s px"
4092
  msgstr "Najmanjša širina naprave %s px"
4093
 
4094
+ #: settings.php:2211
4095
  msgid "Use server-side detection to insert block only for"
4096
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
4097
 
4098
+ #: settings.php:2230
4099
  msgid "Filter"
4100
  msgstr "Filter"
4101
 
4102
+ #: settings.php:2231
4103
  msgid "Word Count"
4104
  msgstr "Število Besed"
4105
 
4106
+ #: settings.php:2233
4107
  msgid "Display"
4108
  msgstr "Prikaz"
4109
 
4110
+ #: settings.php:2235 settings.php:2532
4111
  msgid "General"
4112
  msgstr "Splošno"
4113
 
4114
+ #: settings.php:2247
4115
  msgid "Old settings for AMP pages detected"
4116
  msgstr "Zaznane stare nastavitve za AMP strani"
4117
 
4118
+ #: settings.php:2247
4119
  msgid ""
4120
  "To insert different codes on normal and AMP pages separate them with "
4121
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
4126
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
4127
  "separatorja)."
4128
 
4129
+ #: settings.php:2247
4130
  msgid "AMP pages"
4131
  msgstr "AMP strani"
4132
 
4133
+ #: settings.php:2252
4134
  msgid "Enable insertion for Ajax requests"
4135
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
4136
 
4137
+ #: settings.php:2252
4138
  msgid "Ajax requests"
4139
  msgstr "Ajax zahteve"
4140
 
4141
+ #: settings.php:2257
4142
  msgid "Enable insertion in RSS feeds"
4143
  msgstr "Omogoči vstavljanje v RSS virih"
4144
 
4145
+ #: settings.php:2257
4146
  msgid "RSS Feed"
4147
  msgstr "RSS Vir"
4148
 
4149
+ #: settings.php:2262
4150
  msgid "Enable insertion on page for Error 404: Page not found"
4151
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
4152
 
4153
+ #: settings.php:2262
4154
  msgid "Error 404 page"
4155
  msgstr "Stran napake 404"
4156
 
4157
+ #: settings.php:2274
4158
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
4159
  msgstr ""
4160
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
4161
 
4162
+ #: settings.php:2275
4163
  msgid "insertions"
4164
  msgstr "vstavljanj"
4165
 
4166
+ #: settings.php:2277
4167
  msgid ""
4168
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
4169
  "General)"
4171
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
4172
  "zavihek Splošno)"
4173
 
4174
+ #: settings.php:2280 settings.php:2720
4175
  msgid "Max blocks per page"
4176
  msgstr "Največ blokov na stran"
4177
 
4178
+ #: settings.php:2292
4179
  msgid "Insert for"
4180
  msgstr "Vstavi za"
4181
 
4182
+ #: settings.php:2300
4183
  msgid ""
4184
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
4185
  "is currently active). Might speed up insertion on content pages when "
4189
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
4190
  "filter [[the_content]] večkrat klican."
4191
 
4192
+ #: settings.php:2304
4193
  msgid "Insert only in the loop"
4194
  msgstr "Vstavi samo v zanki"
4195
 
4196
+ #: settings.php:2307
4197
  msgid ""
4198
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
4199
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
4204
  "HTML kodo bloka. V nasprotnem bo Javascript koda vstavljena v nogi. "
4205
  "Javascript funkcije vtičnika bodo še vedno vstavljene v nogi."
4206
 
4207
+ #: settings.php:2311
4208
  msgid "Embed JS code"
4209
  msgstr "Vgnezdi JS kodo"
4210
 
4211
+ #: settings.php:2314
4212
  msgid ""
4213
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
4214
  msgstr ""
4215
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
4216
  "Rocket"
4217
 
4218
+ #: settings.php:2318
4219
  msgid "Disable caching"
4220
  msgstr "Onemogoči predpomnjenje"
4221
 
4222
+ #: settings.php:2330
4223
  msgid "Filter insertions"
4224
  msgstr "Filtriraj vstavljanja"
4225
 
4226
+ #: settings.php:2333
4227
  msgid ""
4228
  "Filter multiple insertions by specifying wanted insertions for this block - "
4229
  "single number, comma separated numbers or %N for every N insertions - empty "
4235
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
4236
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
4237
 
4238
+ #: settings.php:2336
4239
  msgid "using"
4240
  msgstr "z uporabo"
4241
 
4242
+ #: settings.php:2355
4243
  msgid "Checked means specified calls are unwanted"
4244
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
4245
 
4246
+ #: settings.php:2355
4247
  msgid "Invert filter"
4248
  msgstr "Obrni filter"
4249
 
4250
+ #: settings.php:2362
4251
  msgid "Minimum number of post/static page words, leave empty for no limit"
4252
  msgstr ""
4253
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4254
  "omejitev"
4255
 
4256
+ #: settings.php:2364
4257
  msgid "Maximum number of post/static page words, leave empty for no limit"
4258
  msgstr ""
4259
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4260
  "omejitev"
4261
 
4262
+ #: settings.php:2377
4263
  msgid "for"
4264
  msgstr "za"
4265
 
4266
+ #: settings.php:2377
4267
  msgid "days after publishing"
4268
  msgstr "dni po objavi"
4269
 
4270
+ #: settings.php:2379
4271
  msgid "Not available"
4272
  msgstr "Ni na razpolago"
4273
 
4274
  #. Translators: do not translate [[width]] - it is a CSS property
4275
+ #: settings.php:2391
4276
  msgid ""
4277
  "Block width: empty means width not defined, number means width in pixels, "
4278
  "any other value means CSS [[width]] property"
4281
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[width]]"
4282
 
4283
  #. Translators: do not translate [[height]] - it is a CSS property
4284
+ #: settings.php:2395
4285
  msgid ""
4286
  "Block height: empty means height not defined, number means height in pixels, "
4287
  "any other value means CSS [[height]] property"
4289
  "Višina bloka: prazno pomeni višina ni določena, število pomeni višino v "
4290
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[height]]"
4291
 
4292
+ #: settings.php:2401
4293
  msgid ""
4294
  "Block background: empty means background not defined, #hex number means HTML "
4295
  "color"
4297
  "Ozadje bloka: prazno pomeni, da ozadje ni definirano, #heksadecimalno "
4298
  "število pomeni HTML barvo"
4299
 
4300
+ #: settings.php:2410 settings.php:2712
4301
  msgid "Ad label"
4302
  msgstr "Oznaka oglasa"
4303
 
4304
+ #: settings.php:2433
4305
  msgid "General tag"
4306
  msgstr "Splošna oznaka"
4307
 
4308
+ #: settings.php:2437
4309
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
4310
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
4311
 
4312
  #. translators: %s: HTML tags
4313
+ #: settings.php:2446
4314
  msgid ""
4315
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4316
  "client-side device detection!"
4319
  "potrebna za zaznavanje naprave na strani odjemalca!"
4320
 
4321
  #. translators: %s: HTML tags for text and link
4322
+ #: settings.php:2460
4323
  msgid ""
4324
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4325
  "side %s insertion. Use %s Server-side %s insertion."
4328
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4329
  "strežnika%s."
4330
 
4331
+ #: settings.php:2476
4332
  msgid "Settings"
4333
  msgstr "Nastavitve"
4334
 
4335
+ #: settings.php:2479
4336
  msgid "Settings timestamp"
4337
  msgstr "Časovni žig nastavitev"
4338
 
4339
+ #: settings.php:2495
4340
  msgid "Are you sure you want to reset all settings?"
4341
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4342
 
4343
+ #: settings.php:2495
4344
  msgid "Reset All Settings"
4345
  msgstr "Ponastavi Vse Nastavitve"
4346
 
4347
+ #: settings.php:2533
4348
  msgid "Viewports"
4349
  msgstr "Pogledi"
4350
 
4351
+ #: settings.php:2534
4352
  msgid "Hooks"
4353
  msgstr "Ročice"
4354
 
4355
+ #: settings.php:2535
4356
  msgid "Header"
4357
  msgstr "Glava"
4358
 
4359
+ #: settings.php:2536 strings.php:30
4360
  msgid "Footer"
4361
  msgstr "Noga"
4362
 
4363
+ #: settings.php:2541
4364
  msgid "Debugging"
4365
  msgstr "Razhroščevanje"
4366
 
4367
+ #: settings.php:2551
4368
  msgid "Plugin priority"
4369
  msgstr "Prednost vtičnika"
4370
 
4371
+ #: settings.php:2559
4372
  msgid "Output buffering"
4373
  msgstr "Predpomnjenje izhoda"
4374
 
4375
+ #: settings.php:2562
4376
  msgid "Needed for position Above header but may not work with all themes"
4377
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4378
 
4379
+ #: settings.php:2570
4380
  msgid "Syntax highlighting theme"
4381
  msgstr "Tema za poudarjanje sintakse"
4382
 
4383
+ #: settings.php:2577
4384
  msgctxt "no syntax highlighting themes"
4385
  msgid "None"
4386
  msgstr "Brez"
4387
 
4388
+ #: settings.php:2578
4389
  msgid "No Syntax Highlighting"
4390
  msgstr "Brez Poudarjanja Sintakse"
4391
 
4392
+ #: settings.php:2580
4393
  msgctxt "syntax highlighting themes"
4394
  msgid "Light"
4395
  msgstr "Svetle"
4396
 
4397
+ #: settings.php:2595
4398
  msgctxt "syntax highlighting themes"
4399
  msgid "Dark"
4400
  msgstr "Temne"
4401
 
4402
+ #: settings.php:2621
4403
  msgid "Tab setup delay"
4404
  msgstr "Zakasnitev nastavitev zavihka"
4405
 
4406
+ #: settings.php:2629
4407
  msgid "Min. user role for ind. exceptions editing"
4408
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4409
 
4410
+ #: settings.php:2639
4411
  msgid "Disable caching for logged in administrators"
4412
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4413
 
4414
+ #: settings.php:2642
4415
  msgid ""
4416
  "Enabled means that logged in administrators will see non-cached (live) pages "
4417
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
4419
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4420
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4421
 
4422
+ #: settings.php:2650
4423
  msgid "Wait for jQuery"
4424
  msgstr "Čakaj na jQuery"
4425
 
4426
+ #: settings.php:2653
4427
  msgid ""
4428
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4429
  "it will run the scripts that may need it"
4431
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4432
  "bo pognal svoje skripte, ki jo potrebujejo"
4433
 
4434
+ #: settings.php:2661
4435
  msgid "Sticky widget mode"
4436
  msgstr "Način za lepljive gradnike"
4437
 
4438
+ #: settings.php:2664
4439
  msgid ""
4440
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4441
  "mode works with most themes but may reload ads on page load."
4444
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4445
  "nalaganju strani."
4446
 
4447
+ #: settings.php:2672
4448
  msgid "Sticky widget top margin"
4449
  msgstr "Zgornji rob za lepljiv gradnik"
4450
 
4451
+ #: settings.php:2680
4452
  msgid "Dynamic blocks"
4453
  msgstr "Dinamični bloki"
4454
 
4455
+ #: settings.php:2693
4456
  msgid "Functions for paragraph counting"
4457
  msgstr "Funkcije za štetje odstavkov"
4458
 
4459
+ #: settings.php:2696
4460
  msgid ""
4461
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4462
  "functions if paragraphs are not counted properly on non-english pages."
4465
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4466
  "šteti."
4467
 
4468
+ #: settings.php:2704
4469
  msgid "No paragraph counting inside"
4470
  msgstr "Ni štetja odstavkov znotraj"
4471
 
4472
+ #: settings.php:2715
4473
  msgid "Label text or HTML code"
4474
  msgstr "Besedilo oznake ali HTML koda"
4475
 
4476
+ #: settings.php:2723
4477
  msgid ""
4478
  "Maximum number of inserted blocks per page. You need to enable Max page "
4479
  "insertions (button Misc / tab Insertion) to count block for this limit."
4482
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4483
  "omejitev."
4484
 
4485
+ #: settings.php:2737
4486
  msgid "Plugin usage tracking"
4487
  msgstr "Sledenje uporabe vtičnika"
4488
 
4489
  #. translators: %s: Ad Inserter
4490
+ #: settings.php:2740
4491
  msgid ""
4492
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4493
  "Only information regarding the WordPress environment and %s usage is "
4497
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4498
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4499
 
4500
+ #: settings.php:2760
4501
  msgid "CSS class name for the wrapping div"
4502
  msgstr "Ime CSS razreda za div za ovijanje"
4503
 
4504
+ #: settings.php:2760
4505
  msgid "Block class name"
4506
  msgstr "Ime razreda za blok"
4507
 
4508
+ #: settings.php:2766
4509
  msgid "Include block number class"
4510
  msgstr "Vključi razred številke bloka"
4511
 
4512
+ #: settings.php:2766
4513
  msgid "Block number class"
4514
  msgstr "Razred številke bloka"
4515
 
4516
+ #: settings.php:2771
4517
  msgid "Include block name class"
4518
  msgstr "Vključi razred imena bloka"
4519
 
4520
+ #: settings.php:2771
4521
  msgid "Block name class"
4522
  msgstr "Razred imena bloka"
4523
 
4524
+ #: settings.php:2776
4525
  msgid ""
4526
  "Instead of alignment classes generate inline alignment styles for blocks"
4527
  msgstr ""
4528
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4529
 
4530
+ #: settings.php:2776
4531
  msgid "Inline styles"
4532
  msgstr "Medvrstični slogi"
4533
 
4534
+ #: settings.php:2782
4535
  msgid "Preview of the block wrapping code"
4536
  msgstr "Predogled kode za ovijanje blokov"
4537
 
4538
+ #: settings.php:2783
4539
  msgid "Wrapping div"
4540
  msgstr "div za ovijanje"
4541
 
4542
+ #: settings.php:2784 settings.php:3309
4543
  msgid "BLOCK CODE"
4544
  msgstr "KODA BLOKA"
4545
 
4546
+ #: settings.php:2794
4547
  msgid "Viewport Settings used for client-side device detection"
4548
  msgstr ""
4549
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4550
 
4551
  #. Translators: %d: viewport number
4552
+ #: settings.php:2802
4553
  msgid "Viewport %d name"
4554
  msgstr "Ime pogleda %d"
4555
 
4556
+ #: settings.php:2805
4557
  msgid "min width"
4558
  msgstr "najmanjša širina"
4559
 
4560
+ #: settings.php:2817
4561
+ msgid "Constants"
4562
+ msgstr "Konstante"
4563
+
4564
+ #: settings.php:2818
4565
+ msgid "Constant name"
4566
+ msgstr "Ime konstante"
4567
+
4568
+ #. Translators: %d: constant number
4569
+ #: settings.php:2828
4570
+ msgid "Constant %d name"
4571
+ msgstr "Ime konstante %d"
4572
+
4573
+ #: settings.php:2830
4574
+ msgid "Value"
4575
+ msgstr "Vrednost"
4576
+
4577
+ #: settings.php:2841
4578
  msgid "Custom Hooks"
4579
  msgstr "Ročice Po Meri"
4580
 
4581
+ #: settings.php:2853 settings.php:2856
4582
  msgid "Enable hook"
4583
  msgstr "Omogoči ročico"
4584
 
4585
  #. translators: %d: hook number
4586
+ #: settings.php:2856
4587
  msgid "Hook %d name"
4588
  msgstr "Ime ročice %d"
4589
 
4590
+ #: settings.php:2859
4591
  msgid "Hook name for automatic insertion selection"
4592
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4593
 
4594
+ #: settings.php:2862
4595
  msgid "action"
4596
  msgstr "akcija"
4597
 
4598
+ #: settings.php:2865
4599
  msgid "Action name as used in the do_action () function"
4600
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4601
 
4602
+ #: settings.php:2868
4603
  msgid "priority"
4604
  msgstr "prednost"
4605
 
4606
+ #: settings.php:2871
4607
  msgid "Priority for the hook (default is 10)"
4608
  msgstr "Prednost za ročico (privzeta je 10)"
4609
 
4610
+ #: settings.php:2892
4611
  msgid "Enable insertion of this code into HTML page header"
4612
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4613
 
4614
+ #: settings.php:2897 settings.php:2966 settings.php:3175
4615
  msgid "Process PHP code"
4616
  msgstr "Procesiraj PHP kodo"
4617
 
4618
+ #: settings.php:2902
4619
  msgid "HTML Page Header Code"
4620
  msgstr "Koda v Glavi HTML Strani"
4621
 
4622
+ #: settings.php:2910
4623
  msgid "Code in the %s section of the HTML page"
4624
  msgstr "Koda v %s delu HTML strani"
4625
 
4626
+ #: settings.php:2911
4627
  msgctxt "code in the header"
4628
  msgid "NOT ENABLED"
4629
  msgstr "NI OMOGOČENA"
4630
 
4631
+ #: settings.php:2928 settings.php:2998
4632
  msgid "Use server-side detection to insert code only for"
4633
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4634
 
4635
+ #: settings.php:2943
4636
  msgid ""
4637
  "Enable insertion of this code into HTML page header on page for Error 404: "
4638
  "Page not found"
4640
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4641
  "obstaja"
4642
 
4643
+ #: settings.php:2943 settings.php:3013
4644
  msgid "Insert on Error 404 page"
4645
  msgstr "Vstavi na strani Napake 404"
4646
 
4647
+ #: settings.php:2961
4648
  msgid "Enable insertion of this code into HTML page footer"
4649
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4650
 
4651
+ #: settings.php:2971
4652
  msgid "HTML Page Footer Code"
4653
  msgstr "Koda v Nogi HTML Strani"
4654
 
4655
  #. translators: %s: HTML tags
4656
+ #: settings.php:2979
4657
  msgid "Code before the %s tag of the HTML page"
4658
  msgstr "Koda pred %s značko HTML strani"
4659
 
4660
+ #: settings.php:2980
4661
  msgctxt "code in the footer"
4662
  msgid "NOT ENABLED"
4663
  msgstr "NI OMOGOČENA"
4664
 
4665
+ #: settings.php:3013
4666
  msgid ""
4667
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4668
  "Page not found"
4670
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4671
  "Stran ne obstaja"
4672
 
4673
+ #: settings.php:3029
4674
  msgid "Code for ad blocking detection inserted. Click for details."
4675
  msgstr ""
4676
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4677
 
4678
+ #: settings.php:3034
4679
  msgid "Enable detection of ad blocking"
4680
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4681
 
4682
+ #: settings.php:3049
4683
  msgid "Enabled for"
4684
  msgstr "Omogočeno za"
4685
 
4686
+ #: settings.php:3068
4687
  msgid "Global action when ad blocking is detected"
4688
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4689
 
4690
+ #: settings.php:3074
4691
  msgid "No action for"
4692
  msgstr "Ni akcije za"
4693
 
4694
+ #: settings.php:3075
4695
  msgid "Exceptions for global action when ad blocking is detected."
4696
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov."
4697
 
4698
+ #: settings.php:3085
4699
  msgid "Delay Action"
4700
  msgstr "Zakasni Akcijo"
4701
 
4702
+ #: settings.php:3088
4703
  msgid ""
4704
  "Number of page views to delay action when ad blocking is detected. Leave "
4705
  "empty for no delay (action fires on first page view). Sets cookie."
4708
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4709
  "strani). Nastavi piškotek."
4710
 
4711
+ #: settings.php:3088
4712
  msgctxt "Delay Action for x "
4713
  msgid "page views"
4714
  msgstr "ogledov strani"
4715
 
4716
+ #: settings.php:3093
4717
  msgid "No Action Period"
4718
  msgstr "Obdobje Brez Akcije"
4719
 
4720
+ #: settings.php:3096
4721
  msgid ""
4722
  "Number of days to supress action when ad blocking is detected. Leave empty "
4723
  "for no no-action period (action fires always after defined page view delay). "
4727
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4728
  "strani). Nastavi piškotek."
4729
 
4730
+ #: settings.php:3096
4731
  msgctxt "no action period"
4732
  msgid "days"
4733
  msgstr "dni"
4734
 
4735
+ #: settings.php:3101
4736
  msgid "Custom Selectors"
4737
  msgstr "Selektorji Po Meri"
4738
 
4739
+ #: settings.php:3104
4740
  msgid ""
4741
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4742
  "blocking detection. Invisible element or element with zero height means ad "
4746
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4747
  "pomeni prisotnost blokiranja oglasov."
4748
 
4749
+ #: settings.php:3111
4750
  msgid ""
4751
  "Use external scripts for ad blocking detection. Disable when you need to "
4752
  "obtain user consent before collecting personal information. In such case use "
4757
  "primeru uporabite kratko kodo za vstavljanje zunanjih skript po pridobitvi "
4758
  "soglasja."
4759
 
4760
+ #: settings.php:3111
4761
  msgid "Use external scripts"
4762
  msgstr "Uporabi zunanje skripte"
4763
 
4764
+ #: settings.php:3125
4765
  msgid "Redirection Page"
4766
  msgstr "Stran za Preusmeritev"
4767
 
4768
+ #: settings.php:3137
4769
  msgid "Custom Url"
4770
  msgstr "Url Po Meri"
4771
 
4772
+ #: settings.php:3142
4773
  msgid ""
4774
  "Static page for redirection when ad blocking is detected. For other pages "
4775
  "select Custom url and set it below."
4777
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4778
  "strani izberite Url Po Meri in ga nastavite spodaj."
4779
 
4780
+ #: settings.php:3151
4781
  msgid "Custom Redirection Url"
4782
  msgstr "Url za Preusmeritev Po Meri"
4783
 
4784
+ #: settings.php:3163
4785
  msgid "Message HTML code"
4786
  msgstr "HTML koda sporočila"
4787
 
4788
+ #: settings.php:3178
4789
  msgid "Preview message when ad blocking is detected"
4790
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4791
 
4792
+ #: settings.php:3207
4793
  msgid "Prevent visitors from closing the warning message"
4794
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4795
 
4796
+ #: settings.php:3207
4797
  msgid "Undismissible Message"
4798
  msgstr "Neodstranljivo Sporočilo"
4799
 
4800
+ #: settings.php:3213
4801
  msgid "Not undismissible for"
4802
  msgstr "Ni neodstranljivo za"
4803
 
4804
+ #: settings.php:3214
4805
  msgid "Users which can close the warning message."
4806
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4807
 
4808
+ #: settings.php:3251
4809
  msgid ""
4810
  "Force showing admin toolbar for administrators when viewing site. Enable "
4811
  "this option when you are logged in as admin and you don't see admin toolbar."
4814
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4815
  "skrbnike."
4816
 
4817
+ #: settings.php:3259
4818
  msgid "Disable header code (Header tab)"
4819
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4820
 
4821
+ #: settings.php:3263
4822
  msgid "Disable footer code (Footer tab)"
4823
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4824
 
4825
  #. translators: %s: Ad Inserter
4826
+ #: settings.php:3267
4827
  msgid "Disable %s JavaScript code"
4828
  msgstr "Onemogoči %s JavaScript kodo"
4829
 
4830
  #. translators: %s: Ad Inserter
4831
+ #: settings.php:3271
4832
  msgid "Disable %s CSS code"
4833
  msgstr "Onemogoči %s CSS kodo"
4834
 
4835
  #. translators: %s: Ad Inserter
4836
+ #: settings.php:3275
4837
  msgid "Disable %s HTML code"
4838
  msgstr "Onemogoči %s HTML kodo"
4839
 
4840
+ #: settings.php:3279
4841
  msgid ""
4842
  "Disable PHP code processing (in all blocks including header and footer code)"
4843
  msgstr ""
4844
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4845
 
4846
+ #: settings.php:3283
4847
  msgid "Disable insertion of all blocks"
4848
  msgstr "Onemogoči vstavljanje vseh blokov"
4849
 
4850
+ #: settings.php:3287
4851
  msgid "Disable insertions"
4852
  msgstr "Onemogoči vstavljanja"
4853
 
4854
  #. translators: %s: Ad Inserter
4855
+ #: settings.php:3299
4856
  msgid "%s CSS CODE"
4857
  msgstr "%s CSS KODA"
4858
 
4859
+ #: settings.php:3302
4860
  msgid "HEADER CODE"
4861
  msgstr "KODA GLAVE"
4862
 
4863
  #. translators: %s: PHP tags
4864
+ #: settings.php:3308
4865
  msgid "BLOCK PHP CODE"
4866
  msgstr "PHP KODA BLOKA"
4867
 
4868
  #. translators: %s: Ad Inserter
4869
+ #: settings.php:3313
4870
  msgid "%s HTML CODE"
4871
  msgstr "%s HTML KODA"
4872
 
4873
  #. translators: %s: Ad Inserter
4874
+ #: settings.php:3315
4875
  msgid "%s JS CODE"
4876
  msgstr "%s JS KODA"
4877
 
4878
+ #: settings.php:3318
4879
  msgid "FOOTER CODE"
4880
  msgstr "KODA NOGE"
4881
 
4882
+ #: settings.php:3327
4883
  msgid "Force showing admin toolbar when viewing site"
4884
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4885
 
4886
+ #: settings.php:3334
4887
  msgid "Enable debugging functions in admin toolbar"
4888
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4889
 
4890
+ #: settings.php:3336
4891
  msgid "Debugging functions in admin toolbar"
4892
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4893
 
4894
+ #: settings.php:3343
4895
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4896
  msgstr ""
4897
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4898
  "zaslonih"
4899
 
4900
+ #: settings.php:3345
4901
  msgid "Debugging functions on mobile screens"
4902
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4903
 
4904
+ #: settings.php:3365
4905
  msgid ""
4906
  "Disable translation to see original texts for the settings and messages in "
4907
  "English"
4909
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4910
  "angleščini"
4911
 
4912
+ #: settings.php:3367
4913
  msgid "Disable translation"
4914
  msgstr "Onemogoči prevod"
4915
 
4916
+ #: settings.php:3765
4917
  msgid "Available positions for current theme"
4918
  msgstr "Razpoložljivi položaji za trenutno temo"
4919
 
4920
+ #: settings.php:3766
4921
  msgid "Error checking pages"
4922
  msgstr "Napaka pri preverjanju strani"
4923
 
4924
+ #: settings.php:3769
4925
  msgid "Toggle theme checker for available positions for automatic insertion"
4926
  msgstr ""
4927
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4928
 
4929
+ #: settings.php:3769
4930
  msgctxt "Button"
4931
  msgid "Check"
4932
  msgstr "Preveri"
4933
 
4934
+ #: settings.php:3776
4935
  msgid "Position"
4936
  msgstr "Položaj"
4937
 
4938
+ #: settings.php:3781
4939
  msgid "Archive pages"
4940
  msgstr "Strani arhiva"
4941
 
4942
+ #: settings.php:3840
4943
  msgid ""
4944
  "Position not available because output buffering (tab [*]) is not enabled"
4945
  msgstr ""
4946
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4947
 
4948
+ #: settings.php:3843 strings.php:252
4949
  msgid "Position not checked yet"
4950
  msgstr "Položaj še ni bil preverjen"
4951
 
4952
+ #: settings.php:3879
4953
  msgid "Toggle active/all blocks"
4954
  msgstr "Preklopi aktive/vse bloke"
4955
 
4956
+ #: settings.php:3884 strings.php:239
4957
  msgid "Rearrange block order"
4958
  msgstr "Preuredi vrstni red blokov"
4959
 
4960
+ #: settings.php:3890
4961
  msgid "Save new block order"
4962
  msgstr "Shrani vrstni red blokov"
4963
 
4964
+ #: settings.php:3916
4965
  msgid "Toggle active/all ad units"
4966
  msgstr "Preklopi aktivne/vse oglasne enote"
4967
 
4968
+ #: settings.php:3920
4969
  msgid "Reload AdSense ad units"
4970
  msgstr "Ponovno naloži oglasne enote AdSense"
4971
 
4972
+ #: settings.php:3924
4973
  msgid "Clear authorization to access AdSense account"
4974
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4975
 
4976
+ #: settings.php:3928 settings.php:4825 settings.php:4872 strings.php:247
4977
  msgid "Google AdSense Homepage"
4978
  msgstr "Google AdSense Domača Stran"
4979
 
4980
+ #: settings.php:3949
4981
  msgid "Switch to physical ads.txt file"
4982
  msgstr "Preklopi na fizično datoteko ads.txt"
4983
 
4984
+ #: settings.php:3950
4985
  msgid "Switch to virtual ads.txt file"
4986
  msgstr "Preklopi na navidezno datoteko ads.txt"
4987
 
4988
  #. translators: %s: ads.txt
4989
+ #: settings.php:3970
4990
  msgid "Open %s"
4991
  msgstr "Odpri %s"
4992
 
4993
+ #: settings.php:3978
4994
  msgid "Reload ads.txt file"
4995
  msgstr "Ponovno naloži datoteko ads.txt"
4996
 
4997
+ #: settings.php:3984 settings.php:4937
4998
  msgid "Save"
4999
  msgstr "Shrani"
5000
 
5001
  #. translators: %s: Ad Inserter
5002
+ #: settings.php:4164
5003
  msgid "ads.txt file: %s virtual ads.txt file"
5004
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
5005
 
5006
+ #: settings.php:4169 settings.php:4189 strings.php:226
5007
  msgid "Warning"
5008
  msgstr "Opozorilo"
5009
 
5010
  #. translators: %s: Ad Inserter
5011
+ #: settings.php:4169
5012
  msgid "%s virtual file ads.txt not found"
5013
  msgstr "%s navidezna datoteka ads.txt ni najdena"
5014
 
5015
+ #: settings.php:4177
5016
  msgid "IMPORTANT"
5017
  msgstr "POMEMBNO"
5018
 
5019
+ #: settings.php:4177
5020
  msgid "ads.txt file must be placed on the root domain"
5021
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
5022
 
5023
+ #: settings.php:4182
5024
  msgid "ads.txt file"
5025
  msgstr "datoteka ads.txt"
5026
 
5027
+ #: settings.php:4182
5028
  msgid "NOT WRITABLE"
5029
  msgstr "NI ZAPISLJIVO"
5030
 
5031
+ #: settings.php:4189
5032
  msgid "file %s not found"
5033
  msgstr "datoteka %s ni najdena"
5034
 
5035
+ #: settings.php:4199
5036
  msgid "Account IDs found in blocks but not present in the ads.txt file"
5037
  msgstr ""
5038
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
5039
 
5040
  #. translators: %s: Ad Inserter
5041
+ #: settings.php:4205
5042
  msgid "%s virtual ads.txt file"
5043
  msgstr "%s navidezna datoteka ads.txt"
5044
 
5045
+ #: settings.php:4227
5046
  msgid "Advertising system"
5047
  msgstr "Oglaševalski sistem"
5048
 
5049
+ #: settings.php:4228
5050
  msgid "Account ID"
5051
  msgstr "ID Računa"
5052
 
5053
+ #: settings.php:4230
5054
  msgid "Certification authority ID"
5055
  msgstr "ID organa za potrjevanje"
5056
 
5057
+ #: settings.php:4245
5058
  msgid "Account ID found in block and present in ads.txt"
5059
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
5060
 
5061
+ #: settings.php:4249
5062
  msgid "Account ID found in block but not present in ads.txt"
5063
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
5064
 
5065
+ #: settings.php:4602
5066
  msgid "Preview block"
5067
  msgstr "Predogled bloka"
5068
 
5069
+ #: settings.php:4609
5070
  msgid "Pause block"
5071
  msgstr "Ustavite blok"
5072
 
5073
+ #: settings.php:4649
5074
  msgid "Automatic insertion"
5075
  msgstr "Samodejno vstavljanje"
5076
 
5077
  #. translators: %s HTML tags
5078
+ #: settings.php:4650 settings.php:5986
5079
  msgid "PHP code processing"
5080
  msgstr "Procesiranje PHP kode"
5081
 
5082
+ #: settings.php:4652
5083
  msgid "Device detection"
5084
  msgstr "Zaznavanje naprave"
5085
 
5086
+ #: settings.php:4675
5087
  msgid "No active block"
5088
  msgstr "Noben aktiven blok"
5089
 
5090
+ #: settings.php:4676
5091
  msgid "No block matches search keywords"
5092
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
5093
 
5094
+ #: settings.php:4736
5095
  msgid "Ad unit"
5096
  msgstr "Enota"
5097
 
5098
+ #: settings.php:4738
5099
  msgid "Slot ID"
5100
  msgstr "ID mesta"
5101
 
5102
+ #: settings.php:4764
5103
  msgid "Copy AdSense code"
5104
  msgstr "Kopiraj kodo AdSense"
5105
 
5106
+ #: settings.php:4767
5107
  msgid "Preview AdSense ad"
5108
  msgstr "Predogled oglasa AdSense"
5109
 
5110
+ #: settings.php:4770
5111
  msgid "Get AdSense code"
5112
  msgstr "Pridobi kodo AdSense"
5113
 
5114
  #. translators: %s: HTML tags
5115
+ #: settings.php:4802
5116
  msgid ""
5117
  "Please %s clear authorization %s with the button %s above and once again "
5118
  "authorize access to your AdSense account."
5120
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
5121
  "avtorizirajte dostop do vašega računa AdSense."
5122
 
5123
+ #: settings.php:4821
5124
  msgid "AdSense Integration"
5125
  msgstr "Integracija AdSense"
5126
 
5127
+ #: settings.php:4823
5128
  msgid "AdSense Integration - Step 2"
5129
  msgstr "Integracija AdSense - Korak 2"
5130
 
5131
  #. translators: %s: HTML tags
5132
+ #: settings.php:4829
5133
+ msgid "Authorize %s to access your AdSense account."
5134
+ msgstr "Avtorizirajte %s za dostop do vašega AdSense računa."
 
 
 
 
 
 
 
 
5135
 
5136
  #. translators: %s: HTML tags
5137
+ #: settings.php:4830
5138
  msgid ""
5139
  "If you get error, can't access ad units or would like to use own Google API "
5140
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
5145
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
5146
 
5147
  #. translators: %s: HTML tags
5148
+ #: settings.php:4832
5149
+ msgid "Now you can authorize %s to access your AdSense account. "
5150
+ msgstr "Zdaj lahko avtorizirate %s za dostop do vašega AdSense računa. "
 
 
 
 
 
 
 
 
5151
 
5152
  #. translators: %s: HTML tags
5153
+ #: settings.php:4833
5154
  msgid ""
5155
  "If you get error %s invalid client %s click on the button %s Clear and "
5156
  "return to Step 1 %s to re-enter Client ID and Client Secret."
5158
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
5159
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
5160
 
5161
+ #: settings.php:4849
 
 
 
 
 
 
 
 
5162
  msgid "Use own API IDs"
5163
  msgstr "Uporabi lastne API ID-je"
5164
 
5165
+ #: settings.php:4851
5166
  msgid "Clear and return to Step 1"
5167
  msgstr "Odstrani in se vrni na Korak 1"
5168
 
5169
+ #: settings.php:4855
5170
  msgid "Authorize"
5171
  msgstr "Avtoriziraj"
5172
 
5173
+ #: settings.php:4871
5174
  msgid "AdSense Integration - Step 1"
5175
  msgstr "Integracija AdSense - Korak 1"
5176
 
5177
  #. translators: %s: Ad Inserter
5178
+ #: settings.php:4875
5179
  msgid ""
5180
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
5181
  "To do this you need to authorize %s to access your AdSense account. The "
5188
  "Odjemalca in Skrivnost Odjemalca."
5189
 
5190
  #. translators: %s: HTML tags
5191
+ #: settings.php:4884
5192
  msgid "Go to %s Google APIs and Services console %s"
5193
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
5194
 
5195
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
5196
+ #: settings.php:4885
5197
  msgid ""
5198
  "Create %1$s project - if the project and IDs are already created click on "
5199
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
5202
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
5203
 
5204
  #. translators: %s: HTML tags
5205
+ #: settings.php:4886
5206
  msgid ""
5207
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
5208
  "create a new project"
5211
  "ustvaritev novega projekta"
5212
 
5213
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
5214
+ #: settings.php:4887
5215
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
5216
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
5217
 
5218
  #. translators: %s: HTML tags
5219
+ #: settings.php:4888
5220
  msgid ""
5221
  "Click on project selection, wait for the project to be created and then and "
5222
  "select %s as the current project"
5225
  "izberite %s kot trenutni projekt"
5226
 
5227
  #. translators: %s: HTML tags
5228
+ #: settings.php:4889
5229
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
5230
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
5231
 
5232
  #. translators: %s: HTML tags
5233
+ #: settings.php:4890
5234
  msgid "Search for adsense and enable %s"
5235
  msgstr "Poiščite adsense in omogočite %s"
5236
 
5237
  #. translators: %s: HTML tags
5238
+ #: settings.php:4891
5239
  msgid "Click on %s CREATE CREDENTIALS %s"
5240
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
5241
 
5242
  #. translators: %s: HTML tags
5243
+ #: settings.php:4892
5244
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
5245
  msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
5246
 
5247
  #. translators: %s: HTML tags
5248
+ #: settings.php:4893
5249
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
5250
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
5251
 
5252
  #. translators: %s: HTML tags
5253
+ #: settings.php:4894
5254
  msgid "For %s What data will you be accessing? %s select %s User data %s"
5255
  msgstr ""
5256
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
5257
  "podatki %s"
5258
 
5259
  #. translators: %s: HTML tags
5260
+ #: settings.php:4895
5261
  msgid "Click on %s What credentials do I need? %s"
5262
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
5263
 
5264
  #. translators: %s: HTML tags
5265
+ #: settings.php:4896
5266
  msgid ""
5267
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
5268
  "Consent Screen %s"
5271
  "Nastavite Zaslon za Soglasje %s"
5272
 
5273
  #. translators: %s: HTML tags
5274
+ #: settings.php:4897
5275
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
5276
  msgstr ""
5277
  "Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
5278
 
5279
  #. translators: %s: HTML tags
5280
+ #: settings.php:4898
5281
  msgid ""
5282
  "For %s App name %s enter %s and for %s User support email %s select your "
5283
  "Google account email address"
5286
  "vaš email naslov Google računa"
5287
 
5288
  #. translators: %s: HTML tags
5289
+ #: settings.php:4899
5290
  msgid ""
5291
  "For %s Developer contact information %s enter your email address and click "
5292
  "on %s SAVE AND CONTINUE %s"
5295
  "na %s SHRANI IN NADALJUJ %s"
5296
 
5297
  #. translators: %s: HTML tags
5298
+ #: settings.php:4900
5299
  msgid ""
5300
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
5301
  "add your Google account email address"
5304
  "UPORABNIKE %s in dodajte email naslov vašga Google računa"
5305
 
5306
  #. translators: %s: HTML tags
5307
+ #: settings.php:4901
5308
  msgid ""
5309
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
5310
  msgstr ""
5312
  "NADZORNO PLOŠČO %s"
5313
 
5314
  #. translators: %s: HTML tags
5315
+ #: settings.php:4902
5316
  msgid ""
5317
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5318
  "Ad Inserter client %s and then click on %s REFRESH %s"
5321
  "vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
5322
 
5323
  #. translators: %s: HTML tags
5324
+ #: settings.php:4903
5325
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
5326
  msgstr ""
5327
  "Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
5328
  "OPRAVLJENO %s"
5329
 
5330
  #. translators: %s: HTML tags
5331
+ #: settings.php:4904
5332
  msgid ""
5333
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5334
  "secret %s"
5336
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5337
  "%s Skrivnost odjemalca %s"
5338
 
5339
+ #: settings.php:4905
5340
  msgid "Copy them to the appropriate fields below"
5341
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5342
 
5343
+ #: settings.php:4911
5344
  msgid "Client ID"
5345
  msgstr "ID odjemalca"
5346
 
5347
+ #: settings.php:4914
5348
  msgid "Enter Client ID"
5349
  msgstr "Vnesite ID odjemalca"
5350
 
5351
+ #: settings.php:4919
5352
  msgid "Client secret"
5353
  msgstr "Skrivnost odjemalca"
5354
 
5355
+ #: settings.php:4922
5356
  msgid "Enter Client secret"
5357
  msgstr "Vnesite Skrivnost odjemalca"
5358
 
5359
+ #: settings.php:4932
5360
  msgid "Use default API IDs"
5361
  msgstr "Uporabi privzete API ID-je"
5362
 
5363
+ #: settings.php:5033
5364
  msgid "All posts"
5365
  msgstr "Vsi prispevki"
5366
 
5367
+ #: settings.php:5034
5368
  msgid "All static pages"
5369
  msgstr "Vse statične strani"
5370
 
5371
+ #: settings.php:5604
5372
  msgid "Maximize Your Ad Revenue With Header Bidding"
5373
  msgstr "Maksimirajte Vaše Oglasne Prihodke s Preddražbo"
5374
 
5375
+ #: settings.php:5609 settings.php:5851 settings.php:5865 settings.php:5894
5376
+ #: settings.php:5923
5377
  msgid "Maximize Your Ad Revenue"
5378
  msgstr "Povečajte Vaš Prihodek od Oglasov"
5379
 
5380
+ #: settings.php:5618 settings.php:5632
5381
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5382
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5383
 
5384
+ #: settings.php:5623 settings.php:5637 settings.php:5856 settings.php:5874
5385
+ #: settings.php:5887 settings.php:5888 settings.php:5898 settings.php:5913
5386
  msgid "Looking for AdSense alternative?"
5387
  msgstr "Iščete alternativo za AdSense?"
5388
 
5389
+ #: settings.php:5649
5390
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5391
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5392
 
5393
+ #: settings.php:5654 settings.php:5848 settings.php:5869 settings.php:5897
5394
+ #: settings.php:5917
5395
  msgid "Use Infolinks ads with Adsense to earn more"
5396
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5397
 
5398
+ #: settings.php:5666 settings.php:5671 settings.php:5854 settings.php:5879
5399
+ #: settings.php:5891 settings.php:5907
5400
+ msgid "Maximize Revenue"
5401
+ msgstr "Povečajte Prihodek"
5402
 
5403
+ #: settings.php:5694 settings.php:5744
5404
  msgid "Support plugin development"
5405
  msgstr "Podprite razvoj vtičnika"
5406
 
5407
+ #: settings.php:5699 settings.php:5745
5408
  msgid ""
5409
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5410
  "reviewing the plugin on WordPres"
5412
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5413
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5414
 
5415
+ #: settings.php:5699
5416
  msgctxt "Review Ad Inserter"
5417
  msgid "Review"
5418
  msgstr "Ocenite"
5419
 
5420
+ #: settings.php:5704
5421
  msgid ""
5422
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5423
  "rating the plugin on WordPres"
5425
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5426
  "razširiti novico z oceno vtičnika na WordPress-u"
5427
 
5428
+ #: settings.php:5704
5429
  msgctxt "Rate Ad Inserter"
5430
  msgid "Rate"
5431
  msgstr "Ocenite"
5432
 
5433
+ #: settings.php:5709
5434
  msgid ""
5435
  "Support free Ad Inserter development. If you are making money with Ad "
5436
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
5439
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5440
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5441
 
5442
+ #: settings.php:5709
5443
  msgid "Donate"
5444
  msgstr "Donirajte"
5445
 
5446
+ #: settings.php:5716 settings.php:5760
5447
  msgid "Average rating of the plugin - Thank you!"
5448
  msgstr "Povprečna ocena vtičnika - Hvala!"
5449
 
5450
  #. translators: %s: Ad Inserter, HTML tags
5451
+ #: settings.php:5727
5452
  msgid ""
5453
  "You've been using %s for a while now, and I hope you're happy with it. "
5454
  "Positive %s reviews %s are a great way to show your appreciation for my "
5463
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5464
  "bi rekli 'Hvala'."
5465
 
5466
+ #: settings.php:5745
5467
  msgid "Review"
5468
  msgstr "Ocena"
5469
 
5470
+ #: settings.php:5749
5471
  msgid "Ad Inserter on Twitter"
5472
  msgstr "Ad Inserter na Twitter-ju"
5473
 
5474
+ #: settings.php:5750
5475
  msgid "Ad Inserter on Facebook"
5476
  msgstr "Ad Inserter na Facebook-u"
5477
 
5478
+ #: settings.php:5753
5479
  msgid "Follow Ad Inserter"
5480
  msgstr "Sledi Ad Inserter-ju"
5481
 
5482
  #. translators: %s: HTML tags
5483
+ #: settings.php:5780
5484
  msgid ""
5485
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5486
  "and %s Common Settings %s pages"
5489
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5490
 
5491
  #. translators: %s: HTML tags
5492
+ #: settings.php:5792
5493
  msgid ""
5494
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5495
  "Auto ads, %s %s AMP ads %s"
5498
  "viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
5499
 
5500
  #. translators: %s: HTML tags
5501
+ #: settings.php:5809
5502
  msgid ""
5503
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5504
  "purchase you refer to us"
5507
  "nakup, ki nam ga posredujete"
5508
 
5509
  #. translators: %s: HTML tags
5510
+ #: settings.php:5816
5511
  msgid ""
5512
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5513
  "diagnose and fix the problem."
5516
  "navodili za diagnozo in rešitvami za težave."
5517
 
5518
  #. translators: %s: HTML tags
5519
+ #: settings.php:5820
5520
  msgid ""
5521
  "If you need any kind of help or support, please do not hesitate to open a "
5522
  "thread on the %s support forum. %s"
5524
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5525
  "nit na %s podpornem forumu. %s"
5526
 
5527
+ #: settings.php:5847 settings.php:5906 settings.php:5918 settings.php:5933
5528
  msgid "Code preview with visual CSS editor"
5529
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5530
 
5531
+ #: settings.php:5850 settings.php:5878
5532
  msgid "Ad blocking detection and content protection"
5533
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5534
 
5535
+ #: settings.php:5853 settings.php:5908 settings.php:5935
5536
  msgid "A/B testing - Track ad impressions and clicks"
5537
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5538
 
5539
+ #: settings.php:5870
5540
  msgid "Insert ads on AMP pages"
5541
  msgstr "Vstavite oglase na AMP straneh"
5542
 
5543
+ #: settings.php:5922 settings.php:5931
5544
+ msgid "Stop invalid traffic with reCAPTCHA v3 score check"
5545
+ msgstr "Ustavite neveljaven promet s preverjanjem reCAPTCHA v3 rezultata"
5546
+
5547
+ #: settings.php:5945
5548
  msgid "Looking for Pro Ad Management plugin?"
5549
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5550
 
5551
+ #: settings.php:5946
5552
  msgid "To Optimally Monetize your WordPress website?"
5553
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5554
 
5555
  #. Translators: %s: price of Ad Inserter Pro
5556
+ #: settings.php:5947
5557
  msgid "Different license types starting from %s"
5558
  msgstr "Različni tipi licenc začenši od %s"
5559
 
5560
  #. translators: %s HTML tags
5561
+ #: settings.php:5950
5562
  msgid "%s AdSense Integration %s"
5563
  msgstr "%s Integracija AdSense %s"
5564
 
5565
  #. translators: %s HTML tags
5566
+ #: settings.php:5951
5567
  msgid "Syntax highlighting %s editor %s"
5568
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5569
 
5570
  #. translators: %s HTML tags
5571
+ #: settings.php:5952
5572
  msgid "%s Code preview %s with visual CSS editor"
5573
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5574
 
5575
  #. translators: %s HTML tags
5576
+ #: settings.php:5953
5577
  msgid "Simple user interface - all settings on a single page"
5578
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5579
 
5580
  #. translators: %s HTML tags
5581
+ #: settings.php:5954
5582
  msgid ""
5583
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5584
  "image / excerpt"
5587
  "%s / sliko / izvlečkom"
5588
 
5589
  #. translators: %s HTML tags
5590
+ #: settings.php:5955
5591
  msgid "%s Automatic insertion %s between posts on blog pages"
5592
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5593
 
5594
  #. translators: %s HTML tags
5595
+ #: settings.php:5956
5596
  msgid "%s Automatic insertion %s before, between and after comments"
5597
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5598
 
5599
  #. translators: %s HTML tags
5600
+ #: settings.php:5957
5601
  msgid "%s Automatic insertion %s after %s or before %s tag"
5602
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5603
 
5604
  #. translators: %s HTML tags
5605
+ #: settings.php:5958
5606
  msgid "Automatic insertion at %s custom hook positions %s"
5607
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5608
 
5609
  #. translators: %s HTML tags
5610
+ #: settings.php:5959
5611
  msgid ""
5612
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5613
  "selectors)"
5616
  "selektorjev)"
5617
 
5618
  #. translators: %s HTML tags
5619
+ #: settings.php:5960
5620
  msgid "%s Insertion exceptions %s for individual posts and pages"
5621
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5622
 
5623
  #. translators: %s HTML tags
5624
+ #: settings.php:5961
5625
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5626
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5627
 
5628
  #. translators: %s HTML tags
5629
+ #: settings.php:5962
5630
  msgid ""
5631
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5632
  "scrolls)"
5635
  "se stran pomika)"
5636
 
5637
  #. translators: %s HTML tags
5638
+ #: settings.php:5963
5639
  msgid "%s Background ads %s with one or left and right background images"
5640
  msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
5641
 
5642
  #. translators: %s HTML tags
5643
+ #: settings.php:5964
5644
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5645
  msgstr ""
5646
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5647
 
5648
  #. translators: %s HTML tags
5649
+ #: settings.php:5965
5650
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5651
  msgstr ""
5652
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5653
 
5654
  #. translators: %s HTML tags
5655
+ #: settings.php:5966
5656
  msgid ""
5657
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5658
  "visible)"
5661
  "postane viden)"
5662
 
5663
  #. translators: %s HTML tags
5664
+ #: settings.php:5967
5665
  msgid ""
5666
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5667
  msgstr ""
5669
  "strani)"
5670
 
5671
  #. translators: %s HTML tags
5672
+ #: settings.php:5968
5673
  msgid "Block %s alignment and style %s customizations"
5674
  msgstr "%s Poravnave in slogi %s bloka po meri"
5675
 
5676
  #. translators: %s HTML tags
5677
+ #: settings.php:5969
5678
  msgid ""
5679
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5680
  "TOS)"
5682
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5683
 
5684
  #. translators: %s HTML tags
5685
+ #: settings.php:5970
5686
  msgid ""
5687
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5688
  "feeds"
5691
  "virih"
5692
 
5693
  #. translators: %s HTML tags
5694
+ #: settings.php:5971
5695
  msgid "%s Ad rotation %s (works also with caching)"
5696
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5697
 
5698
  #. translators: %s HTML tags
5699
+ #: settings.php:5972
5700
  msgid "Ad rotation %s optimization based on CTR %s"
5701
  msgstr "Optimizacija vrtenja oglasov %s glede na CTR %s"
5702
 
5703
  #. translators: %s HTML tags
5704
+ #: settings.php:5973
5705
  msgid "Create, edit and check %s ads.txt %s file"
5706
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5707
 
5708
  #. translators: %s HTML tags
5709
+ #: settings.php:5974
5710
  msgid ""
5711
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5712
  "AdSense)"
5715
  "AdSense)"
5716
 
5717
  #. translators: %s HTML tags
5718
+ #: settings.php:5975
5719
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5720
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5721
 
5722
  #. translators: %s HTML tags
5723
+ #: settings.php:5976
5724
  msgid "%s Public web reports %s for clients, export to PDF"
5725
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5726
 
5727
  #. translators: %s HTML tags
5728
+ #: settings.php:5977
5729
  msgid "Support for %s A/B testing %s"
5730
  msgstr "Podpora za %s A/B testiranje %s"
5731
 
5732
  #. translators: %s HTML tags
5733
+ #: settings.php:5978
5734
  msgid "Frequency capping - %s limit impressions or clicks %s"
5735
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5736
 
5737
  #. translators: %s HTML tags
5738
+ #: settings.php:5979
5739
  msgid "Click fraud %s protection %s"
5740
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5741
 
5742
  #. translators: %s HTML tags
5743
+ #: settings.php:5980
5744
+ msgid "Stop invalid traffic with %s reCAPTCHA score check %s"
5745
+ msgstr "Ustavite neveljaven promet s preverjanjem %s reCAPTCHA rezultata %s"
5746
+
5747
+ #. translators: %s HTML tags
5748
+ #: settings.php:5981
5749
  msgid "Support for %s GDPR consent cookie checks %s"
5750
  msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
5751
 
5752
  #. translators: %s HTML tags
5753
+ #: settings.php:5982
5754
  msgid "Support for %s lazy loading %s"
5755
  msgstr "Podpora za %s leno nalaganje %s"
5756
 
5757
  #. translators: %s HTML tags
5758
+ #: settings.php:5983
5759
  msgid "Support for ads on %s AMP pages %s"
5760
  msgstr "Podpora za oglase na %s AMP straneh %s"
5761
 
5762
  #. translators: %s HTML tags
5763
+ #: settings.php:5984
5764
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5765
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5766
 
5767
  #. translators: %s HTML tags
5768
+ #: settings.php:5985
5769
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5770
  msgstr ""
5771
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5772
 
5773
  #. translators: %s HTML tags
5774
+ #: settings.php:5987
5775
  msgid "%s Banner %s code generator"
5776
  msgstr "Generator kode za %s pasice %s"
5777
 
5778
  #. translators: %s HTML tags
5779
+ #: settings.php:5988
5780
  msgid "Support for %s header and footer %s code"
5781
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5782
 
5783
  #. translators: %s HTML tags
5784
+ #: settings.php:5989
5785
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5786
  msgstr ""
5787
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5788
 
5789
  #. translators: %s HTML tags
5790
+ #: settings.php:5990
5791
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5792
  msgstr ""
5793
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5794
  "strežnika"
5795
 
5796
  #. translators: %s HTML tags
5797
+ #: settings.php:5991
5798
  msgid "Client-side %s mobile device detection %s (works with caching)"
5799
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5800
 
5801
  #. translators: %s HTML tags
5802
+ #: settings.php:5992
5803
  msgid ""
5804
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5805
  "protection"
5808
  "vsebine"
5809
 
5810
  #. translators: %s HTML tags
5811
+ #: settings.php:5993
5812
  msgid "%s Ad blocking statistics %s"
5813
  msgstr "%s Statistika blokiranja oglasov %s"
5814
 
5815
  #. translators: %s HTML tags
5816
+ #: settings.php:5994
5817
  msgid ""
5818
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5819
  "referrers, operating systems, browsers"
5822
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5823
 
5824
  #. translators: %s HTML tags
5825
+ #: settings.php:5995
5826
  msgid ""
5827
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5828
  msgstr ""
5829
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5830
 
5831
  #. translators: %s HTML tags
5832
+ #: settings.php:5996
5833
  msgid "%s Multisite options %s to limit settings on the sites"
5834
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5835
 
5836
  #. translators: %s HTML tags
5837
+ #: settings.php:5997
5838
  msgid "%s Import/Export %s block or plugin settings"
5839
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5840
 
5841
  #. translators: %s HTML tags
5842
+ #: settings.php:5998
5843
  msgid "%s Insertion scheduling %s with fallback option"
5844
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5845
 
5846
  #. translators: %s HTML tags
5847
+ #: settings.php:5999
5848
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5849
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5850
 
5851
  #. translators: %s HTML tags
5852
+ #: settings.php:6000
5853
  msgid "Simple troubleshooting with many %s debugging functions %s"
5854
  msgstr ""
5855
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5856
 
5857
  #. translators: %s HTML tags
5858
+ #: settings.php:6001
5859
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5860
  msgstr ""
5861
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5862
 
5863
  #. translators: %s HTML tags
5864
+ #: settings.php:6002
5865
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5866
  msgstr ""
5867
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5868
 
5869
  #. translators: %s HTML tags
5870
+ #: settings.php:6003
5871
  msgid ""
5872
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5873
  msgstr ""
5874
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5875
 
5876
  #. translators: %s HTML tags
5877
+ #: settings.php:6004
5878
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5879
  msgstr ""
5880
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5881
 
5882
  #. translators: %s HTML tags
5883
+ #: settings.php:6005
5884
  msgid "No ads on the settings page"
5885
  msgstr "Stran z nastavitvami brez oglasov"
5886
 
5887
  #. translators: %s HTML tags
5888
+ #: settings.php:6006
5889
  msgid "Premium support"
5890
  msgstr "Vrhunska podpora"
5891
 
5892
  #. translators: %s HTML tags
5893
+ #: settings.php:6009
5894
  msgid ""
5895
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5896
  "website with many advertising features to automatically insert adverts on "
5917
  "bodo ohranile)."
5918
 
5919
  #. translators: %s HTML tags
5920
+ #: settings.php:6022
5921
  msgid "Looking for %s Pro Ad Management plugin? %s"
5922
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5923
 
5924
  #. translators: %s HTML tags
5925
+ #: settings.php:6027
5926
  msgid "Ads between posts"
5927
  msgstr "Oglasi med prispevki"
5928
 
5929
  #. translators: %s HTML tags
5930
+ #: settings.php:6028
5931
  msgid "Ads between comments"
5932
  msgstr "Oglasi med komentarji"
5933
 
5934
  #. translators: %s HTML tags
5935
+ #: settings.php:6029
5936
  msgid "Support via email"
5937
  msgstr "Podpora prek elektronske pošte"
5938
 
5939
  #. translators: %s HTML tags
5940
+ #: settings.php:6035
5941
  msgid "%s Sticky positions %s"
5942
  msgstr "%s Lepljivi položaji %s"
5943
 
5944
  #. translators: %s HTML tags
5945
+ #: settings.php:6036
5946
  msgid "%s Limit insertions %s"
5947
  msgstr "%s Omeji vstavljanja %s"
5948
 
5949
  #. translators: %s HTML tags
5950
+ #: settings.php:6037
5951
  msgid "%s Clearance %s options"
5952
  msgstr "Možnosti %s izogibanja %s"
5953
 
5954
  #. translators: %s HTML tags
5955
+ #: settings.php:6043
5956
  msgid "Ad rotation"
5957
  msgstr "Vrtenje oglasov"
5958
 
5959
  #. translators: %s HTML tags
5960
+ #: settings.php:6044
5961
  msgid "%s A/B testing %s"
5962
  msgstr "%s A/B testiranje %s"
5963
 
5964
  #. translators: %s HTML tags
5965
+ #: settings.php:6045
5966
  msgid "%s Ad tracking %s"
5967
  msgstr "%s Sledenje oglasom %s"
5968
 
5969
  #. translators: %s HTML tags
5970
+ #: settings.php:6051
5971
  msgid "Support for %s AMP pages %s"
5972
  msgstr "Podpora za %s AMP strani %s"
5973
 
5974
  #. translators: %s HTML tags
5975
+ #: settings.php:6052
5976
  msgid "%s Ad blocking detection %s"
5977
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5978
 
5979
  #. translators: %s HTML tags
5980
+ #: settings.php:6053
5981
  msgid "%s Mobile device detection %s"
5982
  msgstr "%s Zaznavanje mobilne naprave %s"
5983
 
5984
  #. translators: %s HTML tags
5985
+ #: settings.php:6060
5986
  msgid "64 code blocks"
5987
  msgstr "64 kodnih blokov"
5988
 
5989
  #. translators: %s HTML tags
5990
+ #: settings.php:6061
5991
  msgid "%s GEO targeting %s"
5992
  msgstr "%s GEO ciljanje %s"
5993
 
5994
  #. translators: %s HTML tags
5995
+ #: settings.php:6062
5996
  msgid "%s Scheduling %s"
5997
  msgstr "%s Urnik %s"
5998
 
6912
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
6913
  "na optimalna mesta"
6914
 
6915
+ #~ msgid ""
6916
+ #~ "Authorize %s to access your AdSense account. Click on the %s Get "
6917
+ #~ "Authorization Code %s button to open a new window where you can allow "
6918
+ #~ "access. When you get the code copy it to the field below and click on the "
6919
+ #~ "button %s Authorize. %s"
6920
+ #~ msgstr ""
6921
+ #~ "Avtorizirajte %s za dostop do vašega računa AdSense. Kliknite na gumb %s "
6922
+ #~ "Pridobi Avtorizacijsko Kodo, %s da se odpre novo okno kjer lahko dovolite "
6923
+ #~ "dostop. Ko dobite kodo jo skopirajte v polje spodaj in kliknite na gumb "
6924
+ #~ "%s Avtoriziraj. %s"
6925
+
6926
+ #~ msgid ""
6927
+ #~ "Now you can authorize %s to access your AdSense account. Click on the %s "
6928
+ #~ "Get Authorization Code %s button to open a new window where you can allow "
6929
+ #~ "access. When you get the code copy it to the field below and click on the "
6930
+ #~ "button %s Authorize. %s"
6931
+ #~ msgstr ""
6932
+ #~ "Zdaj lahko avtorizirate %s za dostop do vašega AdSense računa. Kliknite "
6933
+ #~ "na gumb %s Pridobi Avtorizacijsko Kodo %s, da se odpre novo okno kjer "
6934
+ #~ "lahko dovolite dostop. Ko dobite kodo, jo skopirajte v polje spodaj in "
6935
+ #~ "kliknite na gumb %s Avtoriziraj. %s"
6936
+
6937
+ #~ msgid "Get Authorization Code"
6938
+ #~ msgstr "Pridobi Avtoriazcijsko Kodo"
6939
+
6940
+ #~ msgid "Enter Authorization Code"
6941
+ #~ msgstr "Vnesi Avorizacijsko Kodo"
6942
+
6943
+ #~ msgid "Supercharge your AdSense revenue by upto 40%"
6944
+ #~ msgstr "Nadgradite vaš AdSense zaslužek do 40%"
6945
+
6946
  #~ msgid "The latest PHP version: "
6947
  #~ msgstr "Zadnja različica PHP: "
6948
 
7419
  #~ "preverite obstoječe niti in odprite novo, če ne nejdete odgovorov za vašo "
7420
  #~ "težavo."
7421
 
 
 
 
7422
  #~ msgid ""
7423
  #~ "Need more blocks, sticky ads, GEO targeting, impression and click "
7424
  #~ "tracking? Upgrade to Ad Inserter Pro"
languages/ad-inserter.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Ad Inserter 2.7.11\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2022-02-08 15:27:07+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,488 +12,488 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:319
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:335
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:342
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:428
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:435
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:444
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:451
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:462
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
- #: ad-inserter.php:469
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
- #: ad-inserter.php:1138
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
- #: ad-inserter.php:1143
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:1148 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:1153 strings.php:105
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
- #: ad-inserter.php:1158 strings.php:106
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
- #: ad-inserter.php:1163 strings.php:171
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
- #: ad-inserter.php:1210
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
- #: ad-inserter.php:1214
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
- #: ad-inserter.php:1517
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
- #: ad-inserter.php:1891 ad-inserter.php:3355
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
- #: ad-inserter.php:2644
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
- #: ad-inserter.php:2644
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
- #: ad-inserter.php:2645
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
- #: ad-inserter.php:2646
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
- #: ad-inserter.php:2647
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
- #: ad-inserter.php:2648
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
- #: ad-inserter.php:2649
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
- #: ad-inserter.php:3043
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:3046
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
- #: ad-inserter.php:3050
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
- #: ad-inserter.php:3055
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
- #: ad-inserter.php:3058
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
- #: ad-inserter.php:3071
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:3073
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:3079
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:3096 ad-inserter.php:3138
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:3103
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:3110
194
  msgid "Error: plugin settings corrupt"
195
  msgstr ""
196
 
197
- #: ad-inserter.php:3120
198
  msgctxt "Menu item"
199
  msgid "Settings"
200
  msgstr ""
201
 
202
- #: ad-inserter.php:3152
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:3152
209
  msgid "Safe mode"
210
  msgstr ""
211
 
212
  #. translators: %s: Ad Inserter
213
- #: ad-inserter.php:3247
214
  msgctxt "Meta box name"
215
  msgid "%s Individual Exceptions"
216
  msgstr ""
217
 
218
- #: ad-inserter.php:3276 ad-inserter.php:11749 class.php:2571
219
  #: includes/preview.php:2419 includes/preview.php:2464
220
- #: includes/preview.php:2501 settings.php:4525 strings.php:3
221
  msgid "Block"
222
  msgstr ""
223
 
224
- #: ad-inserter.php:3277 includes/functions.php:4688 settings.php:4526
225
- #: settings.php:4616
226
  msgid "Name"
227
  msgstr ""
228
 
229
- #: ad-inserter.php:3280 settings.php:1260
230
  msgid "Default insertion"
231
  msgstr ""
232
 
233
  #. translators: For this post or page
234
- #: ad-inserter.php:3283
235
  msgctxt "Page"
236
  msgid "For this"
237
  msgstr ""
238
 
239
- #: ad-inserter.php:3284
240
  msgctxt "Post"
241
  msgid "For this"
242
  msgstr ""
243
 
244
- #: ad-inserter.php:3296
245
  msgctxt "Enabled/disabled on all"
246
  msgid "pages"
247
  msgstr ""
248
 
249
- #: ad-inserter.php:3299
250
  msgctxt "Enabled/disabled on all"
251
  msgid "posts"
252
  msgstr ""
253
 
254
- #: ad-inserter.php:3316 ad-inserter.php:3328 strings.php:177
255
  msgid "Enabled"
256
  msgstr ""
257
 
258
  #. translators: Menu items
259
- #: ad-inserter.php:3316 ad-inserter.php:3328
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:3318
266
  msgid "No individual exceptions"
267
  msgstr ""
268
 
269
  #. translators: Not enabled for pages or posts
270
- #: ad-inserter.php:3320
271
  msgid "Not enabled for"
272
  msgstr ""
273
 
274
  #. translators: No individual exceptions enabled for pages or posts
275
- #: ad-inserter.php:3348
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:3353
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:3356 settings.php:1238
287
  msgid "Tag / Archive pages"
288
  msgstr ""
289
 
290
- #: ad-inserter.php:3358
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:3359
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:3361
303
  msgid "For more information check page %s"
304
  msgstr ""
305
 
306
  #. translators: Ad Inserter Exceptions documentation page
307
- #: ad-inserter.php:3363
308
  msgid "Individual Exceptions"
309
  msgstr ""
310
 
311
- #: ad-inserter.php:3409
312
  msgid "STATIC PAGE"
313
  msgstr ""
314
 
315
- #: ad-inserter.php:3412
316
  msgid "POST"
317
  msgstr ""
318
 
319
- #: ad-inserter.php:3415
320
  msgid "HOMEPAGE"
321
  msgstr ""
322
 
323
- #: ad-inserter.php:3418
324
  msgid "CATEGORY PAGE"
325
  msgstr ""
326
 
327
- #: ad-inserter.php:3421
328
  msgid "SEARCH PAGE"
329
  msgstr ""
330
 
331
- #: ad-inserter.php:3424
332
  msgid "ARCHIVE PAGE"
333
  msgstr ""
334
 
335
- #: ad-inserter.php:3427
336
  msgid "ERROR 404 PAGE"
337
  msgstr ""
338
 
339
- #: ad-inserter.php:3430
340
  msgid "AJAX CALL"
341
  msgstr ""
342
 
343
- #: ad-inserter.php:3433
344
  msgid "UNKNOWN PAGE TYPE"
345
  msgstr ""
346
 
347
- #: ad-inserter.php:3450
348
  msgid "Click to delete ad blocking detection cokies"
349
  msgstr ""
350
 
351
- #: ad-inserter.php:3451
352
  msgid "AD BLOCKING STATUS UNKNOWN"
353
  msgstr ""
354
 
355
  #. translators: %s: AdSense Auto Ads
356
- #: ad-inserter.php:3480
357
  msgid ""
358
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
359
  "positions"
360
  msgstr ""
361
 
362
- #: ad-inserter.php:3626
363
  msgid "Code for insertion"
364
  msgstr ""
365
 
366
- #: ad-inserter.php:3626
367
  msgid "character"
368
  msgid_plural "characters"
369
  msgstr[0] ""
370
  msgstr[1] ""
371
 
372
- #: ad-inserter.php:3641
373
  msgid "Header code"
374
  msgstr ""
375
 
376
- #: ad-inserter.php:3641
377
  msgctxt "Header code"
378
  msgid "DISABLED"
379
  msgstr ""
380
 
381
- #: ad-inserter.php:3641 ad-inserter.php:3902
382
  msgid "character inserted"
383
  msgid_plural "characters inserted"
384
  msgstr[0] ""
385
  msgstr[1] ""
386
 
387
- #: ad-inserter.php:3659
388
  msgid "Click to delete the cookie for the consents"
389
  msgstr ""
390
 
391
- #: ad-inserter.php:3663 ad-inserter.php:3911
392
  msgid "UNFILTERED HTML DISABLED"
393
  msgstr ""
394
 
395
- #: ad-inserter.php:3902
396
  msgid "Footer code"
397
  msgstr ""
398
 
399
- #: ad-inserter.php:3902
400
  msgctxt "Footer code"
401
  msgid "DISABLED"
402
  msgstr ""
403
 
404
- #: ad-inserter.php:3916
405
  msgid "JAVASCRIPT NOT WORKING"
406
  msgstr ""
407
 
408
- #: ad-inserter.php:3916
409
  msgid "NO JAVASCRIPT ERRORS"
410
  msgstr ""
411
 
412
- #: ad-inserter.php:3916
413
  msgid "JAVASCRIPT ERRORS"
414
  msgstr ""
415
 
416
  #. translators: block name (block with default settings)
417
- #: ad-inserter.php:6784
418
  msgctxt "Block name"
419
  msgid "Default"
420
  msgstr ""
421
 
422
  #. translators: %s: Ad Inserter
423
- #: ad-inserter.php:7233 ad-inserter.php:7545
424
  msgid "Invalid data received - %s settings not saved."
425
  msgstr ""
426
 
427
  #. translators: %s: Ad Inserter
428
- #: ad-inserter.php:7519
429
  msgid "Error importing %s settings."
430
  msgstr ""
431
 
432
- #: ad-inserter.php:7520
433
  msgid "Error importing settings for block"
434
  msgid_plural "Error importing settings for blocks:"
435
  msgstr[0] ""
436
  msgstr[1] ""
437
 
438
- #: ad-inserter.php:7543
439
  msgid "Settings saved."
440
  msgstr ""
441
 
442
- #: ad-inserter.php:7565
443
  msgid "Settings cleared."
444
  msgstr ""
445
 
446
  #. Translators: Post/Static page must have between X and Y words
447
- #: ad-inserter.php:7941 ad-inserter.php:7943 ad-inserter.php:7966
448
- #: settings.php:2290
449
  msgid "word"
450
  msgid_plural "words"
451
  msgstr[0] ""
452
  msgstr[1] ""
453
 
454
- #: ad-inserter.php:7980 ad-inserter.php:8107
455
  msgid "HTML TAGS REMOVED"
456
  msgstr ""
457
 
458
- #: ad-inserter.php:8186
459
  msgid "BEFORE COMMENTS"
460
  msgstr ""
461
 
462
- #: ad-inserter.php:8311
463
  msgid "AFTER COMMENTS"
464
  msgstr ""
465
 
466
- #: ad-inserter.php:8388
467
  msgid "BETWEEN COMMENTS"
468
  msgstr ""
469
 
470
- #: ad-inserter.php:11006 ad-inserter.php:11107
471
  msgctxt "category name"
472
  msgid "Uncategorized"
473
  msgstr ""
474
 
475
- #: ad-inserter.php:11342
476
  msgid "requires WordPress 4.6 or newer"
477
  msgstr ""
478
 
479
- #: ad-inserter.php:11342
480
  msgid "Please update!"
481
  msgstr ""
482
 
483
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
484
  #. name with HTML tags will be added)
485
- #: ad-inserter.php:11617
486
  msgid "Thank you for installing"
487
  msgstr ""
488
 
489
  #. translators: Opt-in message: %s: HTML tags
490
- #: ad-inserter.php:11619
491
  msgid ""
492
  "We would like to %s track its usage %s on your site. This is completely "
493
  "optional and can be disabled at any time."
494
  msgstr ""
495
 
496
- #: ad-inserter.php:11621
497
  msgid ""
498
  "We don't record any sensitive data, only information regarding the WordPress "
499
  "environment and plugin usage, which will help us to make improvements to the "
@@ -501,7 +501,7 @@ msgid ""
501
  msgstr ""
502
 
503
  #. translators: Deactivation message: %s: HTML tags
504
- #: ad-inserter.php:11661
505
  msgid ""
506
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
507
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -509,56 +509,56 @@ msgid ""
509
  msgstr ""
510
 
511
  #. translators: %s: Ad Inserter
512
- #: ad-inserter.php:11707
513
  msgid "%s block."
514
  msgstr ""
515
 
516
  #. translators: widget title
517
- #: ad-inserter.php:11723 ad-inserter.php:11758
518
  msgid "Processing log"
519
  msgstr ""
520
 
521
  #. translators: widget title
522
- #: ad-inserter.php:11725 ad-inserter.php:11759
523
  msgid "Dummy widget"
524
  msgstr ""
525
 
526
  #. translators: widget title
527
- #: ad-inserter.php:11727 ad-inserter.php:11757
528
  msgid "Debugging tools"
529
  msgstr ""
530
 
531
  #. translators: block status (widget title)
532
- #: ad-inserter.php:11734
533
  msgctxt "block"
534
  msgid "PAUSED"
535
  msgstr ""
536
 
537
- #: ad-inserter.php:11735
538
  msgid "WIDGET DISABLED"
539
  msgstr ""
540
 
541
- #: ad-inserter.php:11736
542
  msgid "Unknown block"
543
  msgstr ""
544
 
545
- #: ad-inserter.php:11744 includes/functions-check-now.php:3262
546
- #: includes/functions.php:5167 settings.php:1290
547
  msgid "Title"
548
  msgstr ""
549
 
550
- #: ad-inserter.php:11766
551
  msgctxt "Widget"
552
  msgid "Sticky"
553
  msgstr ""
554
 
555
- #: ad-inserter.php:11817
556
  msgid ""
557
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
558
  "Inserter you need to first deactivate Ad Inserter Pro."
559
  msgstr ""
560
 
561
- #: ad-inserter.php:11818
562
  msgid ""
563
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
564
  "will clear all settings that are available only in the Pro version "
@@ -566,188 +566,188 @@ msgid ""
566
  msgstr ""
567
 
568
  #. translators: %s: Ad Inserter
569
- #: class.php:626 class.php:635 class.php:638
570
  msgid "PHP error in %s block"
571
  msgstr ""
572
 
573
- #: class.php:2521
574
  msgid "Counters"
575
  msgstr ""
576
 
577
- #: class.php:2525
578
  msgid "Content"
579
  msgstr ""
580
 
581
- #: class.php:2530
582
  msgid "Excerpt"
583
  msgstr ""
584
 
585
- #: class.php:2535 strings.php:17
586
  msgid "Before post"
587
  msgstr ""
588
 
589
- #: class.php:2540 strings.php:18
590
  msgid "After post"
591
  msgstr ""
592
 
593
- #: class.php:2545 strings.php:25
594
  msgid "Between posts"
595
  msgstr ""
596
 
597
- #: class.php:2550 settings.php:2024 settings.php:4543
598
  msgid "Widget"
599
  msgstr ""
600
 
601
- #: class.php:2555 settings.php:4541
602
  msgid "PHP function call"
603
  msgstr ""
604
 
605
  #. Translators: %s: custom hook name
606
- #: class.php:2565
607
  msgid "Custom hook %s call"
608
  msgstr ""
609
 
610
- #: class.php:2613
611
  msgid "AJAX REQUEST"
612
  msgstr ""
613
 
614
- #: class.php:2616
615
  msgid "Ajax request for block in iframe"
616
  msgstr ""
617
 
618
- #: class.php:2650
619
  msgid "Ajax request url, click to open it in a new tab"
620
  msgstr ""
621
 
622
- #: class.php:2653
623
  msgid "IN THE LOOP"
624
  msgstr ""
625
 
626
- #: class.php:2653
627
  msgid "YES"
628
  msgstr ""
629
 
630
- #: class.php:2653
631
  msgid "NO"
632
  msgstr ""
633
 
634
- #: class.php:2688
635
  msgid "BLOCK"
636
  msgstr ""
637
 
638
- #: class.php:2688
639
  msgctxt "block or widget"
640
  msgid "INSERTED BUT NOT VISIBLE"
641
  msgstr ""
642
 
643
- #: class.php:2919
644
  msgctxt "viewports"
645
  msgid "ALL"
646
  msgstr ""
647
 
648
- #: class.php:2955 class.php:2996 class.php:4704 strings.php:283
649
  msgctxt "Block"
650
  msgid "HIDDEN"
651
  msgstr ""
652
 
653
- #: class.php:3003 class.php:4707 strings.php:282
654
  msgctxt "Block"
655
  msgid "VISIBLE"
656
  msgstr ""
657
 
658
- #: class.php:3065
659
  msgctxt "fallback"
660
  msgid "INACTIVE"
661
  msgstr ""
662
 
663
- #: class.php:3066
664
  msgctxt "fallback"
665
  msgid "ACTIVE"
666
  msgstr ""
667
 
668
- #: class.php:3088
669
  msgctxt "Block"
670
  msgid "FALLBACK CODE"
671
  msgstr ""
672
 
673
- #: class.php:3782 class.php:3880
674
  msgid "ACTIVE GROUPS"
675
  msgstr ""
676
 
677
- #: class.php:4378
678
  msgid "start='%s' end='%s' days='%s' type='%s'"
679
  msgstr ""
680
 
681
- #: class.php:4386
682
  msgid "parameters='%s' type='%s'"
683
  msgstr ""
684
 
685
- #: class.php:4388
686
  msgid "cookies='%s' type='%s'"
687
  msgstr ""
688
 
689
  #. translators: %s: list parameters and type
690
- #: class.php:4390
691
  msgid "referers='%s' type='%s'"
692
  msgstr ""
693
 
694
  #. translators: %s: list parameters and type
695
- #: class.php:4392
696
  msgid "clients='%s' type='%s'"
697
  msgstr ""
698
 
699
  #. translators: %s: list parameters and type
700
- #: class.php:4587
701
  msgid "countries='%s' type='%s'"
702
  msgstr ""
703
 
704
  #. translators: %s: list parameters and type
705
- #: class.php:4589
706
  msgid "ip addresses='%s' type='%s'"
707
  msgstr ""
708
 
709
- #: class.php:4704 class.php:4707
710
  msgid "viewport='%s' type='%s'"
711
  msgstr ""
712
 
713
- #: class.php:4830 strings.php:284
714
  msgctxt "alternative block"
715
  msgid "FALLBACK"
716
  msgstr ""
717
 
718
- #: class.php:5415 strings.php:276
719
  msgid "BEFORE"
720
  msgstr ""
721
 
722
- #: class.php:5423 strings.php:278
723
  msgid "PREPEND CONTENT"
724
  msgstr ""
725
 
726
- #: class.php:5427 strings.php:279
727
  msgid "APPEND CONTENT"
728
  msgstr ""
729
 
730
- #: class.php:5431 strings.php:280
731
  msgid "REPLACE CONTENT"
732
  msgstr ""
733
 
734
- #: class.php:5435 strings.php:281
735
  msgid "REPLACE ELEMENT"
736
  msgstr ""
737
 
738
- #: class.php:5446 strings.php:277
739
  msgid "AFTER"
740
  msgstr ""
741
 
742
- #: class.php:5516 includes/preview.php:2464 includes/preview.php:2501
743
  msgid "Code"
744
  msgstr ""
745
 
746
- #: class.php:5519
747
  msgid "for block"
748
  msgstr ""
749
 
750
- #: class.php:9817
751
  msgid ""
752
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
753
  "extension for PHP."
@@ -763,7 +763,7 @@ msgid "Reset"
763
  msgstr ""
764
 
765
  #: includes/editor.php:6 includes/placeholders.php:352
766
- #: includes/preview.php:2408 settings.php:3862 strings.php:230 strings.php:288
767
  msgid "Cancel"
768
  msgstr ""
769
 
@@ -778,7 +778,7 @@ msgid ""
778
  "blockers."
779
  msgstr ""
780
 
781
- #: includes/editor.php:261 settings.php:256
782
  msgid "Error loading page"
783
  msgstr ""
784
 
@@ -787,17 +787,17 @@ msgstr ""
787
  msgid "PAGE BLOCKED"
788
  msgstr ""
789
 
790
- #: includes/functions-check-now.php:288 includes/functions.php:325
791
  msgid "%d of %d names shown"
792
  msgstr ""
793
 
794
  #. translators: %s: name filter
795
- #: includes/functions-check-now.php:307 includes/functions.php:344
796
  msgid "No name matches filter"
797
  msgstr ""
798
 
799
  #. translators: %s: Ad Inserter Pro
800
- #: includes/functions-check-now.php:396 includes/functions.php:435
801
  msgid ""
802
  "Import %s settings when saving - if checked, the encoded settings below will "
803
  "be imported for all blocks and settings"
@@ -811,126 +811,126 @@ msgstr ""
811
  msgid "Saved settings for"
812
  msgstr ""
813
 
814
- #: includes/functions-check-now.php:420 includes/functions.php:470
815
  msgid "License Key"
816
  msgstr ""
817
 
818
- #: includes/functions-check-now.php:423 includes/functions.php:473
819
  msgid "License Key for"
820
  msgstr ""
821
 
822
- #: includes/functions-check-now.php:425 includes/functions.php:475
823
  msgid "Open license page"
824
  msgstr ""
825
 
826
- #: includes/functions-check-now.php:432 includes/functions.php:482
827
  msgid "Hide license key"
828
  msgstr ""
829
 
830
- #: includes/functions-check-now.php:432 includes/functions.php:482
831
  msgid "Hide key"
832
  msgstr ""
833
 
834
- #: includes/functions-check-now.php:447 includes/functions.php:499
835
  msgid "Main content element"
836
  msgstr ""
837
 
838
- #: includes/functions-check-now.php:450 includes/functions.php:502
839
  msgid ""
840
  "Main content element (#id or .class) for 'Stick to the content' position. "
841
  "Leave empty unless position is not properly calculated."
842
  msgstr ""
843
 
844
- #: includes/functions-check-now.php:451 includes/functions.php:503
845
- #: settings.php:1447 settings.php:1487 settings.php:2999
846
  msgid "Open HTML element selector"
847
  msgstr ""
848
 
849
- #: includes/functions-check-now.php:456 includes/functions.php:508
850
  msgid "Lazy loading offset"
851
  msgstr ""
852
 
853
- #: includes/functions-check-now.php:459 includes/functions.php:511
854
  msgid "Offset of the block from the visible viewport when it should be loaded"
855
  msgstr ""
856
 
857
- #: includes/functions-check-now.php:470 includes/functions.php:523
858
  msgid "Export / Import Block Settings"
859
  msgstr ""
860
 
861
- #: includes/functions-check-now.php:485 includes/functions.php:540
862
  msgid "Track impressions and clicks for this block"
863
  msgstr ""
864
 
865
- #: includes/functions-check-now.php:485 includes/functions.php:540
866
  msgid " - global tracking disabled"
867
  msgstr ""
868
 
869
- #: includes/functions-check-now.php:492 includes/functions.php:548
870
- #: includes/functions.php:4860
871
  msgid "Generate PDF report"
872
  msgstr ""
873
 
874
- #: includes/functions-check-now.php:497 includes/functions.php:562
875
  msgid "Open public report"
876
  msgstr ""
877
 
878
- #: includes/functions-check-now.php:511 includes/functions.php:576
879
  msgid "Toggle Ad Blocking Statistics"
880
  msgstr ""
881
 
882
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
883
- #: includes/functions.php:584 includes/functions.php:4841
884
  msgid "Toggle Statistics"
885
  msgstr ""
886
 
887
- #: includes/functions-check-now.php:528 includes/functions.php:593
888
  msgid "Pin list"
889
  msgstr ""
890
 
891
  #. translators: %s: Ad Inserter Pro
892
- #: includes/functions-check-now.php:543 includes/functions.php:616
893
  msgid "%s license key is not set. Continue?"
894
  msgstr ""
895
 
896
  #. translators: %s: Ad Inserter Pro
897
- #: includes/functions-check-now.php:547 includes/functions.php:620
898
  msgid "Invalid %s license key. Continue?"
899
  msgstr ""
900
 
901
  #. translators: %s: Ad Inserter Pro
902
- #: includes/functions-check-now.php:551 includes/functions.php:624
903
  msgid "%s license overused. Continue?"
904
  msgstr ""
905
 
906
- #: includes/functions-check-now.php:555 includes/functions.php:634
907
- #: settings.php:1195 settings.php:2411
908
  msgid "Save Settings"
909
  msgstr ""
910
 
911
- #: includes/functions-check-now.php:615 includes/functions.php:702
912
  #: includes/preview.php:2596
913
  msgid "Horizontal position"
914
  msgstr ""
915
 
916
- #: includes/functions-check-now.php:638 includes/functions.php:727
917
  msgid ""
918
  "Horizontal margin from the content or screen edge, empty means default value "
919
  "from CSS"
920
  msgstr ""
921
 
922
- #: includes/functions-check-now.php:646 includes/functions.php:735
923
  #: includes/preview.php:2656
924
  msgid "Vertical position"
925
  msgstr ""
926
 
927
- #: includes/functions-check-now.php:661 includes/functions.php:750
928
  msgid ""
929
  "Vertical margin from the top or bottom screen edge, empty means default "
930
  "value from CSS"
931
  msgstr ""
932
 
933
- #: includes/functions-check-now.php:686 includes/functions.php:781
934
  #: includes/preview.php:2711
935
  msgid "Animation"
936
  msgstr ""
@@ -945,22 +945,22 @@ msgid ""
945
  "(#id or .class) becomes visible"
946
  msgstr ""
947
 
948
- #: includes/functions-check-now.php:717 includes/functions.php:816
949
- #: includes/functions.php:843
950
  msgid "Offset"
951
  msgstr ""
952
 
953
- #: includes/functions-check-now.php:717 includes/functions.php:816
954
- #: includes/functions.php:843
955
  msgid "Offset of trigger element"
956
  msgstr ""
957
 
958
- #: includes/functions-check-now.php:721 includes/functions.php:820
959
- #: includes/functions.php:847 settings.php:1502
960
  msgid "Delay"
961
  msgstr ""
962
 
963
- #: includes/functions-check-now.php:721 includes/functions.php:820
964
  msgid "Delay animation after trigger condition"
965
  msgstr ""
966
 
@@ -973,147 +973,147 @@ msgid "Trigger animation only once"
973
  msgstr ""
974
 
975
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
976
- #: includes/functions-check-now.php:2546 includes/functions.php:1000
977
- #: includes/functions.php:3164 includes/functions.php:3180
978
  msgid "Tracking is globally disabled"
979
  msgstr ""
980
 
981
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
982
- #: includes/functions-check-now.php:2550 includes/functions.php:1004
983
- #: includes/functions.php:3168 includes/functions.php:3184
984
  msgid "Tracking for this block is disabled"
985
  msgstr ""
986
 
987
- #: includes/functions-check-now.php:780 includes/functions.php:1011
988
  msgid "Double click to toggle controls in public reports"
989
  msgstr ""
990
 
991
- #: includes/functions-check-now.php:786 includes/functions.php:1017
992
- #: includes/functions.php:4410 settings.php:3782 settings.php:3818
993
- #: settings.php:3879 strings.php:244
994
  msgid "Loading..."
995
  msgstr ""
996
 
997
- #: includes/functions-check-now.php:807 includes/functions.php:1038
998
  msgid ""
999
  "Clear statistics data for the selected range - clear both dates to delete "
1000
  "all data for this block"
1001
  msgstr ""
1002
 
1003
- #: includes/functions-check-now.php:811 includes/functions.php:1042
1004
  msgid "Auto refresh data for the selected range every 60 seconds"
1005
  msgstr ""
1006
 
1007
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1008
- #: includes/functions.php:1045 includes/functions.php:8195
1009
  msgid "Load data for last month"
1010
  msgstr ""
1011
 
1012
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1013
- #: includes/functions.php:1045 includes/functions.php:8195
1014
  msgid "Last Month"
1015
  msgstr ""
1016
 
1017
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1018
- #: includes/functions.php:1048 includes/functions.php:8198
1019
  msgid "Load data for this month"
1020
  msgstr ""
1021
 
1022
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1023
- #: includes/functions.php:1048 includes/functions.php:8198
1024
  msgid "This Month"
1025
  msgstr ""
1026
 
1027
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1028
- #: includes/functions.php:1051 includes/functions.php:8201
1029
  msgid "Load data for this year"
1030
  msgstr ""
1031
 
1032
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1033
- #: includes/functions.php:1051 includes/functions.php:8201
1034
  msgid "This Year"
1035
  msgstr ""
1036
 
1037
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1038
- #: includes/functions.php:1054 includes/functions.php:8204
1039
  msgid "Load data for the last 15 days"
1040
  msgstr ""
1041
 
1042
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1043
- #: includes/functions.php:1057 includes/functions.php:8207
1044
  msgid "Load data for the last 30 days"
1045
  msgstr ""
1046
 
1047
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1048
- #: includes/functions.php:1060 includes/functions.php:8210
1049
  msgid "Load data for the last 90 days"
1050
  msgstr ""
1051
 
1052
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1053
- #: includes/functions.php:1063 includes/functions.php:8213
1054
  msgid "Load data for the last 180 days"
1055
  msgstr ""
1056
 
1057
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1058
- #: includes/functions.php:1066 includes/functions.php:8216
1059
  msgid "Load data for the last 365 days"
1060
  msgstr ""
1061
 
1062
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1063
- #: includes/functions.php:1076 includes/functions.php:8226
1064
  msgid "Load data for the selected range"
1065
  msgstr ""
1066
 
1067
- #: includes/functions-check-now.php:861 includes/functions.php:1093
1068
  msgid ""
1069
  "Import settings when saving - if checked, the encoded settings below will be "
1070
  "imported for this block"
1071
  msgstr ""
1072
 
1073
- #: includes/functions-check-now.php:861 includes/functions.php:1093
1074
  msgid "Import settings for block"
1075
  msgstr ""
1076
 
1077
- #: includes/functions-check-now.php:865 includes/functions.php:1097
1078
  msgid ""
1079
  "Import block name when saving - if checked and 'Import settings for block' "
1080
  "is also checked, the name from encoded settings below will be imported for "
1081
  "this block"
1082
  msgstr ""
1083
 
1084
- #: includes/functions-check-now.php:865 includes/functions.php:1097
1085
  msgid "Import block name"
1086
  msgstr ""
1087
 
1088
- #: includes/functions-check-now.php:869 includes/functions.php:1101
1089
  msgid "Saved settings for block"
1090
  msgstr ""
1091
 
1092
- #: includes/functions-check-now.php:882 includes/functions.php:1116
1093
  msgid "Export / Import Ad Inserter Pro Settings"
1094
  msgstr ""
1095
 
1096
- #: includes/functions-check-now.php:892 includes/functions.php:1135
1097
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1098
  msgstr ""
1099
 
1100
- #: includes/functions-check-now.php:894 includes/functions.php:1137
1101
  msgid "Clear All Statistics Data"
1102
  msgstr ""
1103
 
1104
- #: includes/functions-check-now.php:921 includes/functions.php:1171
1105
  msgid "Toggle country/city editor"
1106
  msgstr ""
1107
 
1108
- #: includes/functions-check-now.php:927 includes/functions.php:1177
1109
  msgid "IP Addresses"
1110
  msgstr ""
1111
 
1112
- #: includes/functions-check-now.php:930 includes/functions.php:1180
1113
  msgid "Toggle IP address editor"
1114
  msgstr ""
1115
 
1116
- #: includes/functions-check-now.php:933 includes/functions.php:1183
1117
  msgid ""
1118
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1119
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
@@ -1127,25 +1127,25 @@ msgstr ""
1127
  msgid "Whitelist IP addresses"
1128
  msgstr ""
1129
 
1130
- #: includes/functions-check-now.php:952 includes/functions.php:1199
1131
  msgid "Countries"
1132
  msgstr ""
1133
 
1134
- #: includes/functions-check-now.php:953 includes/functions.php:1200
1135
  msgid "Cities"
1136
  msgstr ""
1137
 
1138
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1139
- #: includes/functions.php:1204 includes/functions.php:4806
1140
  msgid "Toggle country editor"
1141
  msgstr ""
1142
 
1143
- #: includes/functions-check-now.php:960 includes/functions.php:1207
1144
  msgid "Toggle city editor"
1145
  msgstr ""
1146
 
1147
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1148
- #: includes/functions.php:1211 includes/functions.php:4809
1149
  msgid "Comma separated country ISO Alpha-2 codes"
1150
  msgstr ""
1151
 
@@ -1158,212 +1158,213 @@ msgid "Whitelist countries"
1158
  msgstr ""
1159
 
1160
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1161
- #: includes/functions.php:1788 includes/functions.php:2123
1162
  msgid "Enter license key"
1163
  msgstr ""
1164
 
1165
  #. translators: %s: Ad Inserter Pro
1166
- #: includes/functions-check-now.php:1389 includes/functions.php:1794
1167
  msgid ""
1168
  "%s license key is not set. Plugin functionality is limited and updates are "
1169
  "disabled."
1170
  msgstr ""
1171
 
1172
  #. translators: %s: Ad Inserter Pro
1173
- #: includes/functions-check-now.php:1403 includes/functions.php:1808
1174
  msgid "Warning: %s plugin update server is not accessible"
1175
  msgstr ""
1176
 
1177
  #. translators: updates are not available
1178
- #: includes/functions-check-now.php:1405 includes/functions.php:1810
1179
  msgid "updates"
1180
  msgstr ""
1181
 
1182
  #. translators: updates are not available
1183
- #: includes/functions-check-now.php:1407 includes/functions.php:1812
1184
  msgid "are not available"
1185
  msgstr ""
1186
 
1187
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1188
- #: includes/functions.php:1817 includes/functions.php:2132
1189
  msgid "Check license key"
1190
  msgstr ""
1191
 
1192
  #. translators: %s: Ad Inserter Pro
1193
- #: includes/functions-check-now.php:1418 includes/functions.php:1823
1194
  msgid "Invalid %s license key."
1195
  msgstr ""
1196
 
1197
  #. translators: %s: Ad Inserter Pro
1198
- #: includes/functions-check-now.php:1427 includes/functions.php:1832
1199
  msgid "%s license expired. Plugin updates are disabled."
1200
  msgstr ""
1201
 
1202
- #: includes/functions-check-now.php:1428 includes/functions.php:1833
1203
  msgid "Renew license"
1204
  msgstr ""
1205
 
1206
  #. translators: %s: Ad Inserter Pro
1207
- #: includes/functions-check-now.php:1436 includes/functions.php:1841
1208
  msgid "%s license overused. Plugin updates are disabled."
1209
  msgstr ""
1210
 
1211
- #: includes/functions-check-now.php:1437 includes/functions.php:1842
1212
  msgid "Manage licenses"
1213
  msgstr ""
1214
 
1215
- #: includes/functions-check-now.php:1437 includes/functions.php:1842
1216
  msgid "Upgrade license"
1217
  msgstr ""
1218
 
1219
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1220
- #: includes/functions-check-now.php:1684 includes/functions.php:2125
1221
  msgid ""
1222
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1223
  "limited and updates are disabled."
1224
  msgstr ""
1225
 
1226
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1227
- #: includes/functions-check-now.php:1693 includes/functions.php:2134
1228
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1229
  msgstr ""
1230
 
1231
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1232
- #: includes/functions-check-now.php:1709 includes/functions.php:2150
1233
  msgid ""
1234
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1235
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1236
  msgstr ""
1237
 
1238
  #. translators: 1, 3: HTML tags, 2: percentage
1239
- #: includes/functions-check-now.php:1716 includes/functions.php:2157
1240
  msgid ""
1241
  "During the license period and 30 days after the license has expired we offer "
1242
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1243
  msgstr ""
1244
 
1245
- #: includes/functions-check-now.php:1726 includes/functions.php:2167
1246
  msgid "No, thank you."
1247
  msgstr ""
1248
 
1249
- #: includes/functions-check-now.php:1729 includes/functions.php:2170
1250
  msgid "Not now, maybe later."
1251
  msgstr ""
1252
 
1253
- #: includes/functions-check-now.php:1743 includes/functions.php:2184
1254
  msgid "Renew the licence"
1255
  msgstr ""
1256
 
1257
- #: includes/functions-check-now.php:1745 includes/functions.php:2186
1258
  msgid "Update license status"
1259
  msgstr ""
1260
 
1261
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1262
- #: includes/functions-check-now.php:1756 includes/functions.php:2199
1263
  msgid ""
1264
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1265
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1266
  msgstr ""
1267
 
1268
  #. Translators: %s: HTML tag
1269
- #: includes/functions-check-now.php:1778 includes/functions.php:2259
1270
  msgid "Warning: %s MaxMind IP geolocation database not found."
1271
  msgstr ""
1272
 
1273
- #: includes/functions-check-now.php:2331 includes/functions.php:2941
1274
  msgid "Geolocation"
1275
  msgstr ""
1276
 
1277
- #: includes/functions-check-now.php:2335 includes/functions.php:2945
1278
- #: settings.php:4530
1279
  msgid "Exceptions"
1280
  msgstr ""
1281
 
1282
- #: includes/functions-check-now.php:2340 includes/functions.php:2950
1283
  msgid "Multisite"
1284
  msgstr ""
1285
 
1286
- #: includes/functions-check-now.php:2345 includes/functions.php:2955
1287
- #: settings.php:4536
1288
  msgid "Tracking"
1289
  msgstr ""
1290
 
1291
  #. translators: %d: days, hours, minutes
1292
- #: includes/functions-check-now.php:2376 includes/functions.php:2989
1293
  msgid "Scheduled in %d days %d hours %d minutes"
1294
  msgstr ""
1295
 
1296
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1297
  #. HTML code for long dash separator
1298
- #: includes/functions-check-now.php:2385 includes/functions.php:2998
1299
  msgid "Active %s expires in %d days %d hours %d minutes"
1300
  msgstr ""
1301
 
1302
- #: includes/functions-check-now.php:2389 includes/functions.php:3002
1303
  msgid "Expired"
1304
  msgstr ""
1305
 
1306
- #: includes/functions-check-now.php:2397 includes/functions.php:3028
1307
- #: settings.php:1557 settings.php:1572 settings.php:1694 settings.php:2288
1308
  msgid "and"
1309
  msgstr ""
1310
 
1311
- #: includes/functions-check-now.php:2400 includes/functions.php:3010
1312
  msgid "fallback"
1313
  msgstr ""
1314
 
1315
- #: includes/functions-check-now.php:2401 includes/functions.php:3011
1316
  msgid "Block to be used when scheduling expires"
1317
  msgstr ""
1318
 
1319
- #: includes/functions-check-now.php:2426 includes/functions.php:3050
1320
  msgid "Load in iframe"
1321
  msgstr ""
1322
 
1323
- #: includes/functions-check-now.php:2430 includes/functions.php:3054
1324
- #: includes/placeholders.php:387 settings.php:1155 settings.php:2315
1325
  msgid "Width"
1326
  msgstr ""
1327
 
1328
- #: includes/functions-check-now.php:2431 includes/functions.php:3055
1329
  msgid "iframe width, empty means full width (100%)"
1330
  msgstr ""
1331
 
1332
- #: includes/functions-check-now.php:2437 includes/functions.php:3061
1333
- #: includes/placeholders.php:382 settings.php:1161 settings.php:2319
1334
  msgid "Height"
1335
  msgstr ""
1336
 
1337
- #: includes/functions-check-now.php:2438 includes/functions.php:3062
1338
  msgid "iframe height, empty means adjust it to iframe content height"
1339
  msgstr ""
1340
 
1341
- #: includes/functions-check-now.php:2445 includes/functions.php:3069
1342
  msgid "Ad label in iframe"
1343
  msgstr ""
1344
 
1345
- #: includes/functions-check-now.php:2450 includes/functions.php:3074
1346
  msgid "Preview iframe code"
1347
  msgstr ""
1348
 
1349
- #: includes/functions-check-now.php:2450 includes/functions.php:3074
1350
- #: includes/preview.php:2417 settings.php:1190 settings.php:3072
1351
  msgid "Preview"
1352
  msgstr ""
1353
 
1354
- #: includes/functions-check-now.php:2464 includes/functions.php:3090
1355
- #: settings.php:4537
1356
  msgid "Limits"
1357
  msgstr ""
1358
 
1359
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1360
- #: includes/functions-check-now.php:4430 includes/functions.php:3095
1361
- #: includes/functions.php:6668 includes/functions.php:6733 settings.php:2462
 
1362
  msgid "Ad Blocking"
1363
  msgstr ""
1364
 
1365
  #. translators: 1, 2 and 3, 4: HTML tags
1366
- #: includes/functions-check-now.php:2478 includes/functions.php:3106
1367
  msgid ""
1368
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1369
  "for tracking!"
@@ -1371,13 +1372,13 @@ msgstr ""
1371
 
1372
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1373
  #. header
1374
- #: includes/functions-check-now.php:2487 includes/functions.php:3115
1375
  msgid ""
1376
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1377
  "enabled and automatic insertion %6$s!"
1378
  msgstr ""
1379
 
1380
- #: includes/functions-check-now.php:2554 includes/functions.php:3188
1381
  msgid "Click fraud protection is globally disabled"
1382
  msgstr ""
1383
 
@@ -1386,14 +1387,14 @@ msgid "Max clicks per time period are not defined"
1386
  msgstr ""
1387
 
1388
  #. Translators: Max n impressions
1389
- #: includes/functions-check-now.php:2572 includes/functions.php:3202
1390
  msgid "General limits"
1391
  msgstr ""
1392
 
1393
  #. Translators: Max n impressions per x days
1394
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1395
- #: includes/functions-check-now.php:2675 includes/functions.php:3208
1396
- #: includes/functions.php:3220 includes/functions.php:3305
1397
  msgid "Current value"
1398
  msgstr ""
1399
 
@@ -1409,14 +1410,14 @@ msgstr ""
1409
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1410
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1411
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1412
- #: includes/functions.php:3227 includes/functions.php:3237
1413
- #: includes/functions.php:3256 includes/functions.php:3266
1414
- #: includes/functions.php:3312 includes/functions.php:3321
1415
- #: includes/functions.php:3339 includes/functions.php:3348 settings.php:2200
1416
  msgid "Max"
1417
  msgstr ""
1418
 
1419
- #: includes/functions-check-now.php:2598 includes/functions.php:3228
1420
  msgid ""
1421
  "Maximum number of impressions for this block. Empty means no general "
1422
  "impression limit."
@@ -1428,14 +1429,14 @@ msgstr ""
1428
  #. Translators: Max n impressions per x days
1429
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1430
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1431
- #: includes/functions.php:3230 includes/functions.php:3240
1432
- #: includes/functions.php:3315 includes/functions.php:3324
1433
  msgid "impression"
1434
  msgid_plural "impressions"
1435
  msgstr[0] ""
1436
  msgstr[1] ""
1437
 
1438
- #: includes/functions-check-now.php:2608 includes/functions.php:3238
1439
  msgid ""
1440
  "Maximum number of impressions per time period. Empty means no time limit."
1441
  msgstr ""
@@ -1446,14 +1447,14 @@ msgstr ""
1446
  #. Translators: Max n clicks per x days
1447
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1448
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1449
- #: includes/functions.php:3244 includes/functions.php:3273
1450
- #: includes/functions.php:3328 includes/functions.php:3355
1451
- #: includes/functions.php:5076
1452
  msgid "per"
1453
  msgstr ""
1454
 
1455
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1456
- #: includes/functions.php:3245 includes/functions.php:3274
1457
  msgid "Time period in days. Empty means no time limit."
1458
  msgstr ""
1459
 
@@ -1465,17 +1466,17 @@ msgstr ""
1465
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1466
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1467
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1468
- #: includes/functions.php:3247 includes/functions.php:3276
1469
- #: includes/functions.php:3331 includes/functions.php:3358
1470
- #: includes/functions.php:3490 includes/functions.php:5079
1471
- #: includes/functions.php:5089 strings.php:220 strings.php:221 strings.php:222
1472
  #: strings.php:223 strings.php:224 strings.php:225
1473
  msgid "day"
1474
  msgid_plural "days"
1475
  msgstr[0] ""
1476
  msgstr[1] ""
1477
 
1478
- #: includes/functions-check-now.php:2627 includes/functions.php:3257
1479
  msgid ""
1480
  "Maximum number of clicks on this block. Empty means no general click limit."
1481
  msgstr ""
@@ -1486,25 +1487,25 @@ msgstr ""
1486
  #. Translators: Max n clicks per x days
1487
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1488
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1489
- #: includes/functions-check-now.php:4578 includes/functions.php:3259
1490
- #: includes/functions.php:3269 includes/functions.php:3342
1491
- #: includes/functions.php:3351 includes/functions.php:5076
1492
- #: includes/functions.php:7008
1493
  msgid "click"
1494
  msgid_plural "clicks"
1495
  msgstr[0] ""
1496
  msgstr[1] ""
1497
 
1498
- #: includes/functions-check-now.php:2637 includes/functions.php:3267
1499
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1500
  msgstr ""
1501
 
1502
- #: includes/functions-check-now.php:2662 includes/functions.php:3292
1503
  msgid "Individual visitor limits"
1504
  msgstr ""
1505
 
1506
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1507
- #: includes/functions.php:3296 includes/functions.php:3298
1508
  msgid ""
1509
  "When specified number of clicks on this block for a visitor will be reached "
1510
  "in the specified time period, all blocks that have click fraud protection "
@@ -1512,81 +1513,81 @@ msgid ""
1512
  "general plugin settings."
1513
  msgstr ""
1514
 
1515
- #: includes/functions-check-now.php:2668 includes/functions.php:3298
1516
  msgid "Trigger click fraud protection"
1517
  msgstr ""
1518
 
1519
- #: includes/functions-check-now.php:2683 includes/functions.php:3313
1520
  msgid ""
1521
  "Maximum number of impressions of this block for each visitor. Empty means no "
1522
  "impression limit."
1523
  msgstr ""
1524
 
1525
- #: includes/functions-check-now.php:2692 includes/functions.php:3322
1526
  msgid ""
1527
  "Maximum number of impressions per time period for each visitor. Empty means "
1528
  "no impression limit per time period for visitors."
1529
  msgstr ""
1530
 
1531
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1532
- #: includes/functions.php:3329 includes/functions.php:3356
1533
- #: includes/functions.php:5079
1534
  msgid ""
1535
  "Time period in days. Use decimal value (with decimal point) for shorter "
1536
  "periods. Empty means no time limit."
1537
  msgstr ""
1538
 
1539
- #: includes/functions-check-now.php:2710 includes/functions.php:3340
1540
  msgid ""
1541
  "Maximum number of clicks on this block for each visitor. Empty means no "
1542
  "click limit."
1543
  msgstr ""
1544
 
1545
- #: includes/functions-check-now.php:2719 includes/functions.php:3349
1546
- #: includes/functions.php:5076
1547
  msgid ""
1548
  "Maximum number of clicks per time period for each visitor. Empty means no "
1549
  "click limit per time period for visitors."
1550
  msgstr ""
1551
 
1552
- #: includes/functions-check-now.php:2745 includes/functions.php:3399
1553
  msgid "When ad blocking is detected"
1554
  msgstr ""
1555
 
1556
- #: includes/functions-check-now.php:2754 includes/functions.php:3408
1557
  msgid "replacement"
1558
  msgstr ""
1559
 
1560
- #: includes/functions-check-now.php:2755 includes/functions.php:3409
1561
  msgid "Block to be shown when ad blocking is detected"
1562
  msgstr ""
1563
 
1564
- #: includes/functions-check-now.php:2756 includes/functions.php:3410
1565
  msgctxt "replacement"
1566
  msgid "None"
1567
  msgstr ""
1568
 
1569
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1570
- #: includes/functions.php:3427 includes/functions.php:8439
1571
  msgid "Close button"
1572
  msgstr ""
1573
 
1574
- #: includes/functions-check-now.php:2825 includes/functions.php:3481
1575
  msgid "Auto close after"
1576
  msgstr ""
1577
 
1578
- #: includes/functions-check-now.php:2826 includes/functions.php:3482
1579
  msgid ""
1580
  "Time in seconds in which the ad will automatically close. Leave empty to "
1581
  "disable auto closing."
1582
  msgstr ""
1583
 
1584
  #. Translators: Don't show for x days
1585
- #: includes/functions-check-now.php:2831 includes/functions.php:3487
1586
  msgid "Don't show for"
1587
  msgstr ""
1588
 
1589
- #: includes/functions-check-now.php:2832 includes/functions.php:3488
1590
  msgid ""
1591
  "Time in days in which closed ad will not be shown again. Use decimal value "
1592
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1594,12 +1595,12 @@ msgid ""
1594
  msgstr ""
1595
 
1596
  #. Translators: Delay showing for x pageviews
1597
- #: includes/functions-check-now.php:2852 includes/functions.php:3510
1598
- #: includes/functions.php:3516
1599
  msgid "Delay showing for"
1600
  msgstr ""
1601
 
1602
- #: includes/functions-check-now.php:2853 includes/functions.php:3517
1603
  msgid ""
1604
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1605
  "empty to insert the code for the first pageview."
@@ -1608,72 +1609,72 @@ msgstr ""
1608
  #. Translators: Delay showing for x pageviews
1609
  #. Translators: Show every x pageviews
1610
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1611
- #: includes/functions.php:3519 includes/functions.php:3526
1612
  msgid "pageview"
1613
  msgid_plural "pageviews"
1614
  msgstr[0] ""
1615
  msgstr[1] ""
1616
 
1617
  #. Translators: Show every x pageviews
1618
- #: includes/functions-check-now.php:2859 includes/functions.php:3523
1619
  msgid "Show every"
1620
  msgid_plural "Show every"
1621
  msgstr[0] ""
1622
  msgstr[1] ""
1623
 
1624
- #: includes/functions-check-now.php:2860 includes/functions.php:3524
1625
  msgid ""
1626
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1627
  "for every pageview."
1628
  msgstr ""
1629
 
1630
- #: includes/functions-check-now.php:2879 includes/functions.php:3549
1631
- #: settings.php:919
1632
  msgid "Lazy loading"
1633
  msgstr ""
1634
 
1635
  #. Translators: %s MaxMind
1636
- #: includes/functions-check-now.php:2936 includes/functions.php:4730
1637
  msgid "This product includes GeoLite2 data created by %s"
1638
  msgstr ""
1639
 
1640
- #: includes/functions-check-now.php:2947 includes/functions.php:4743
1641
  msgid "IP geolocation database"
1642
  msgstr ""
1643
 
1644
- #: includes/functions-check-now.php:2950 includes/functions.php:4746
1645
  msgid "Select IP geolocation database."
1646
  msgstr ""
1647
 
1648
- #: includes/functions-check-now.php:2961 includes/functions.php:4757
1649
  msgid "Automatic database updates"
1650
  msgstr ""
1651
 
1652
- #: includes/functions-check-now.php:2964 includes/functions.php:4760
1653
  msgid ""
1654
  "Automatically download and update free GeoLite2 IP geolocation database by "
1655
  "MaxMind"
1656
  msgstr ""
1657
 
1658
- #: includes/functions-check-now.php:2972 includes/functions.php:4777
1659
  msgid "Database"
1660
  msgstr ""
1661
 
1662
- #: includes/functions-check-now.php:2975 includes/functions.php:4780
1663
  msgid ""
1664
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1665
  msgstr ""
1666
 
1667
  #. translators: %d: group number
1668
- #: includes/functions-check-now.php:2993 includes/functions.php:4798
1669
  msgid "Group %d"
1670
  msgstr ""
1671
 
1672
- #: includes/functions-check-now.php:2999 includes/functions.php:4804
1673
  msgid "countries"
1674
  msgstr ""
1675
 
1676
- #: includes/functions-check-now.php:3044 includes/functions.php:4849
1677
  msgid ""
1678
  "Enable impression and click tracking. You also need to enable tracking for "
1679
  "each block you want to track."
@@ -1683,79 +1684,79 @@ msgstr ""
1683
  msgid "Generate report"
1684
  msgstr ""
1685
 
1686
- #: includes/functions-check-now.php:3059 includes/functions.php:4868
1687
  msgid "Impression and Click Tracking"
1688
  msgstr ""
1689
 
1690
- #: includes/functions-check-now.php:3060 includes/functions.php:4869
1691
- #: settings.php:2933
1692
  msgctxt "ad blocking detection"
1693
  msgid "NOT ENABLED"
1694
  msgstr ""
1695
 
1696
- #: includes/functions-check-now.php:3076 includes/functions.php:4885
1697
  msgid "Internal"
1698
  msgstr ""
1699
 
1700
- #: includes/functions-check-now.php:3080 includes/functions.php:4889
1701
  msgid "Track impressions and clicks with internal tracking and statistics"
1702
  msgstr ""
1703
 
1704
- #: includes/functions-check-now.php:3085 includes/functions.php:4894
1705
  msgid "External"
1706
  msgstr ""
1707
 
1708
- #: includes/functions-check-now.php:3089 includes/functions.php:4898
1709
  msgid ""
1710
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1711
  "code installed)"
1712
  msgstr ""
1713
 
1714
- #: includes/functions-check-now.php:3094 includes/functions.php:4903
1715
  msgid "Track Pageviews"
1716
  msgstr ""
1717
 
1718
- #: includes/functions-check-now.php:3100 includes/functions.php:4909
1719
  msgid "Track Pageviews by Device (as configured for viewports)"
1720
  msgstr ""
1721
 
1722
- #: includes/functions-check-now.php:3110 includes/functions.php:4919
1723
  msgid "Track for Logged in Users"
1724
  msgstr ""
1725
 
1726
- #: includes/functions-check-now.php:3116 includes/functions.php:4925
1727
  msgid "Track impressions and clicks from logged in users"
1728
  msgstr ""
1729
 
1730
- #: includes/functions-check-now.php:3126 includes/functions.php:4935
1731
  msgid "Click Detection"
1732
  msgstr ""
1733
 
1734
- #: includes/functions-check-now.php:3132 includes/functions.php:4941
1735
  msgid ""
1736
  "Standard method detects clicks only on banners with links, Advanced method "
1737
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1738
  msgstr ""
1739
 
1740
- #: includes/functions-check-now.php:3151 includes/functions.php:5062
1741
  msgid "Click fraud protection"
1742
  msgstr ""
1743
 
1744
- #: includes/functions-check-now.php:3155 includes/functions.php:5066
1745
  msgid "Globally enable click fraud protection for selected blocks."
1746
  msgstr ""
1747
 
1748
- #: includes/functions-check-now.php:3161 includes/functions.php:5086
1749
  msgid "Protection time"
1750
  msgstr ""
1751
 
1752
- #: includes/functions-check-now.php:3162 includes/functions.php:5089
1753
  msgid ""
1754
  "Time period in days in which blocks with enabled click fraud protection will "
1755
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1756
  msgstr ""
1757
 
1758
- #: includes/functions-check-now.php:3181 includes/functions.php:4969
1759
  msgid "Report header image"
1760
  msgstr ""
1761
 
@@ -1766,150 +1767,150 @@ msgid ""
1766
  "reset to default image."
1767
  msgstr ""
1768
 
1769
- #: includes/functions-check-now.php:3185 includes/functions.php:4973
1770
  #: strings.php:256
1771
  msgid "Select or upload header image"
1772
  msgstr ""
1773
 
1774
- #: includes/functions-check-now.php:3190 includes/functions.php:4978
1775
  msgid "Report header title"
1776
  msgstr ""
1777
 
1778
- #: includes/functions-check-now.php:3193 includes/functions.php:4981
1779
  msgid ""
1780
  "Title to be displayed in the header of the statistics report. Text or HTML "
1781
  "code, clear to reset to default text."
1782
  msgstr ""
1783
 
1784
- #: includes/functions-check-now.php:3198 includes/functions.php:4986
1785
  msgid "Report header description"
1786
  msgstr ""
1787
 
1788
- #: includes/functions-check-now.php:3201 includes/functions.php:4989
1789
  msgid ""
1790
  "Description to be displayed in the header of the statistics report. Text or "
1791
  "HTML code, clear to reset to default text."
1792
  msgstr ""
1793
 
1794
- #: includes/functions-check-now.php:3206 includes/functions.php:4994
1795
  msgid "Report footer"
1796
  msgstr ""
1797
 
1798
- #: includes/functions-check-now.php:3209 includes/functions.php:4997
1799
  msgid ""
1800
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1801
  "to default text."
1802
  msgstr ""
1803
 
1804
- #: includes/functions-check-now.php:3214 includes/functions.php:5002
1805
  msgid "Public report key"
1806
  msgstr ""
1807
 
1808
- #: includes/functions-check-now.php:3217 includes/functions.php:5005
1809
  msgid "String to generate unique report IDs. Clear to reset to default value."
1810
  msgstr ""
1811
 
1812
- #: includes/functions-check-now.php:3249 includes/functions.php:5146
1813
  msgid "Are you sure you want to clear all exceptions for block"
1814
  msgstr ""
1815
 
1816
- #: includes/functions-check-now.php:3250 includes/functions.php:5147
1817
  msgid "Clear all exceptions for block"
1818
  msgstr ""
1819
 
1820
- #: includes/functions-check-now.php:3257 includes/functions.php:5160
1821
  msgid "Are you sure you want to clear all exceptions?"
1822
  msgstr ""
1823
 
1824
- #: includes/functions-check-now.php:3257 includes/functions.php:5160
1825
  msgid "Clear all exceptions for all blocks"
1826
  msgstr ""
1827
 
1828
- #: includes/functions-check-now.php:3262 includes/functions.php:5167
1829
- #: settings.php:4113 settings.php:4618
1830
  msgid "Type"
1831
  msgstr ""
1832
 
1833
- #: includes/functions-check-now.php:3280 includes/functions.php:5186
1834
- #: includes/functions.php:5187
1835
  msgid "View"
1836
  msgstr ""
1837
 
1838
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1839
- #: includes/functions-check-now.php:3292 includes/functions.php:5188
1840
- #: includes/functions.php:5202 includes/functions.php:5206
1841
- #: includes/placeholders.php:351 includes/preview.php:2799 settings.php:1433
1842
- #: settings.php:3868
1843
  msgid "Edit"
1844
  msgstr ""
1845
 
1846
- #: includes/functions-check-now.php:3311 includes/functions.php:5234
1847
  msgid "Are you sure you want to clear all exceptions for"
1848
  msgstr ""
1849
 
1850
- #: includes/functions-check-now.php:3312 includes/functions.php:5235
1851
  msgid "Clear all exceptions for"
1852
  msgstr ""
1853
 
1854
- #: includes/functions-check-now.php:3325 includes/functions.php:5251
1855
  msgid "No exceptions"
1856
  msgstr ""
1857
 
1858
  #. translators: %s: Ad Inserter Pro
1859
- #: includes/functions-check-now.php:3336 includes/functions.php:5262
1860
  msgid "%s options for network blogs"
1861
  msgstr ""
1862
 
1863
  #. translators: %s: Ad Inserter Pro
1864
- #: includes/functions-check-now.php:3341 includes/functions.php:5267
1865
  msgid "Enable %s widgets for sub-sites"
1866
  msgstr ""
1867
 
1868
- #: includes/functions-check-now.php:3341 includes/functions.php:5267
1869
  msgid "Widgets"
1870
  msgstr ""
1871
 
1872
- #: includes/functions-check-now.php:3346 includes/functions.php:5272
1873
  msgid "Enable PHP code processing for sub-sites"
1874
  msgstr ""
1875
 
1876
- #: includes/functions-check-now.php:3346 includes/functions.php:5272
1877
  msgid "PHP Processing"
1878
  msgstr ""
1879
 
1880
  #. translators: %s: Ad Inserter Pro
1881
- #: includes/functions-check-now.php:3351 includes/functions.php:5277
1882
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1883
  msgstr ""
1884
 
1885
- #: includes/functions-check-now.php:3351 includes/functions.php:5277
1886
  msgid "Post/Page exceptions"
1887
  msgstr ""
1888
 
1889
  #. translators: %s: Ad Inserter Pro
1890
- #: includes/functions-check-now.php:3356 includes/functions.php:5282
1891
  msgid "Enable %s settings page for sub-sites"
1892
  msgstr ""
1893
 
1894
- #: includes/functions-check-now.php:3356 includes/functions.php:5282
1895
  msgid "Settings page"
1896
  msgstr ""
1897
 
1898
  #. translators: %s: Ad Inserter Pro
1899
- #: includes/functions-check-now.php:3361 includes/functions.php:5287
1900
  msgid "Enable %s settings of main site to be used for all blogs"
1901
  msgstr ""
1902
 
1903
- #: includes/functions-check-now.php:3361 includes/functions.php:5287
1904
  msgid "Main site settings used for all blogs"
1905
  msgstr ""
1906
 
1907
- #: includes/functions-check-now.php:3372 includes/functions.php:5305
1908
- #: settings.php:2932
1909
  msgid "Ad Blocking Detection"
1910
  msgstr ""
1911
 
1912
- #: includes/functions-check-now.php:3378 includes/functions.php:5311
1913
  msgid ""
1914
  "Standard method is reliable but should be used only if Advanced method does "
1915
  "not work. Advanced method recreates files used for detection with random "
@@ -1918,553 +1919,580 @@ msgid ""
1918
  msgstr ""
1919
 
1920
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
1921
- #: includes/functions-check-now.php:4140 includes/functions.php:6299
1922
- #: includes/functions.php:6407 includes/functions.php:6432
1923
  msgid "AD BLOCKING"
1924
  msgstr ""
1925
 
1926
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
1927
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
1928
- #: includes/functions.php:6300 includes/functions.php:6343
1929
- #: includes/functions.php:6401 includes/functions.php:6433
1930
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1931
  msgstr ""
1932
 
1933
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
1934
- #: includes/functions-check-now.php:4147 includes/functions.php:6303
1935
- #: includes/functions.php:6400 includes/functions.php:6439
1936
  msgid "NO AD BLOCKING"
1937
  msgstr ""
1938
 
1939
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
1940
- #: includes/functions.php:6342 includes/functions.php:6349
1941
  msgid "AD BLOCKING REPLACEMENT"
1942
  msgstr ""
1943
 
1944
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
1945
- #: includes/functions.php:6521 includes/functions.php:6732
1946
  msgid "Pageviews"
1947
  msgstr ""
1948
 
1949
- #: includes/functions-check-now.php:4366 includes/functions.php:6667
 
1950
  msgctxt "Version"
1951
  msgid "Unknown"
1952
  msgstr ""
1953
 
1954
- #: includes/functions-check-now.php:4366 includes/functions.php:6667
 
1955
  msgctxt "Times"
1956
  msgid "DISPLAYED"
1957
  msgstr ""
1958
 
1959
- #: includes/functions-check-now.php:4366 includes/functions.php:6667
 
1960
  msgid "No version"
1961
  msgstr ""
1962
 
1963
- #: includes/functions-check-now.php:4367 includes/functions.php:6668
 
1964
  msgctxt "Times"
1965
  msgid "BLOCKED"
1966
  msgstr ""
1967
 
1968
- #: includes/functions-check-now.php:4429 includes/functions.php:6732
1969
  msgid "Impressions"
1970
  msgstr ""
1971
 
1972
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
1973
- #: includes/functions-check-now.php:4486 includes/functions.php:6733
1974
- #: includes/functions.php:6734 includes/functions.php:6916
1975
  msgid "Clicks"
1976
  msgstr ""
1977
 
1978
- #: includes/functions-check-now.php:4431 includes/functions.php:6734
1979
  msgid "events"
1980
  msgstr ""
1981
 
1982
- #: includes/functions-check-now.php:4432 includes/functions.php:6735
1983
  msgid "Ad Blocking Share"
1984
  msgstr ""
1985
 
1986
  #. translators: CTR as Click Through Rate
1987
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
1988
- #: includes/functions.php:6735 includes/functions.php:6922
1989
  msgid "CTR"
1990
  msgstr ""
1991
 
1992
- #: includes/functions-check-now.php:4574 includes/functions.php:7004
1993
  msgid "pageviews"
1994
  msgid_plural "pageviews"
1995
  msgstr[0] ""
1996
  msgstr[1] ""
1997
 
1998
- #: includes/functions-check-now.php:4574 includes/functions.php:7004
1999
  msgid "impressions"
2000
  msgid_plural "impressions"
2001
  msgstr[0] ""
2002
  msgstr[1] ""
2003
 
2004
- #: includes/functions-check-now.php:4578 includes/functions.php:7008
2005
  msgid "event"
2006
  msgid_plural "events"
2007
  msgstr[0] ""
2008
  msgstr[1] ""
2009
 
2010
- #: includes/functions-check-now.php:4673 includes/functions.php:7103
2011
  msgctxt "Pageviews / Impressions"
2012
  msgid "Average"
2013
  msgstr ""
2014
 
2015
- #: includes/functions-check-now.php:4694 includes/functions.php:7124
2016
  msgctxt "Ad Blocking / Clicks"
2017
  msgid "Average"
2018
  msgstr ""
2019
 
2020
- #: includes/functions-check-now.php:4718 includes/functions.php:7148
2021
  msgctxt "Ad Blocking Share / CTR"
2022
  msgid "Average"
2023
  msgstr ""
2024
 
2025
  #. Translators: %s: Ad Inserter Pro
2026
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
2027
- #: includes/functions-check-now.php:5335 includes/functions.php:7446
2028
- #: includes/functions.php:7543 includes/functions.php:8140 strings.php:205
2029
  msgid "%s Report"
2030
  msgstr ""
2031
 
2032
- #: includes/functions-check-now.php:5241 includes/functions.php:8045
2033
  msgid "for last month"
2034
  msgstr ""
2035
 
2036
- #: includes/functions-check-now.php:5246 includes/functions.php:8050
2037
  msgid "for this month"
2038
  msgstr ""
2039
 
2040
- #: includes/functions-check-now.php:5251 includes/functions.php:8055
2041
  msgid "for this year"
2042
  msgstr ""
2043
 
2044
- #: includes/functions-check-now.php:5256 includes/functions.php:8060
2045
  msgid "for the last 15 days"
2046
  msgstr ""
2047
 
2048
- #: includes/functions-check-now.php:5261 includes/functions.php:8065
2049
  msgid "for the last 30 days"
2050
  msgstr ""
2051
 
2052
- #: includes/functions-check-now.php:5266 includes/functions.php:8070
2053
  msgid "for the last 90 days"
2054
  msgstr ""
2055
 
2056
- #: includes/functions-check-now.php:5271 includes/functions.php:8075
2057
  msgid "for the last 180 days"
2058
  msgstr ""
2059
 
2060
- #: includes/functions-check-now.php:5276 includes/functions.php:8080
2061
  msgid "for the last 365 days"
2062
  msgstr ""
2063
 
2064
- #: includes/functions.php:435
2065
  msgid "Import plugin settings"
2066
  msgstr ""
2067
 
2068
- #: includes/functions.php:443
2069
  msgid "Load settings from a file"
2070
  msgstr ""
2071
 
2072
- #: includes/functions.php:446
2073
  msgid "Save settings to a file"
2074
  msgstr ""
2075
 
2076
- #: includes/functions.php:555 includes/functions.php:4856
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2077
  msgid "Generate CSV report"
2078
  msgstr ""
2079
 
2080
  #. translators: %s: Ad Inserter Pro
2081
- #: includes/functions.php:628
2082
  msgid "Invalid %s version. Continue?"
2083
  msgstr ""
2084
 
2085
- #: includes/functions.php:800
2086
  msgid "Show"
2087
  msgstr ""
2088
 
2089
- #: includes/functions.php:812 includes/functions.php:839
2090
  msgid ""
2091
  "Trigger value: page scroll in %, page scroll in px or element with selector "
2092
  "(#id or .class) scrolls in or out of screen"
2093
  msgstr ""
2094
 
2095
- #: includes/functions.php:826
2096
  msgid "Hide"
2097
  msgstr ""
2098
 
2099
- #: includes/functions.php:857 includes/preview.php:2729
2100
  msgid "Background"
2101
  msgstr ""
2102
 
2103
  #. translators: %s HTML body tag
2104
- #: includes/functions.php:864
2105
  msgid "Set %s background"
2106
  msgstr ""
2107
 
2108
- #: includes/functions.php:877 includes/functions.php:936
2109
  msgid "Image to be used for the background"
2110
  msgstr ""
2111
 
2112
- #: includes/functions.php:882
2113
  msgid "Color"
2114
  msgstr ""
2115
 
2116
- #: includes/functions.php:883 includes/preview.php:2548
2117
  msgid "Color to be used for the background"
2118
  msgstr ""
2119
 
2120
- #: includes/functions.php:886 includes/preview.php:2553
2121
  msgid "Image size"
2122
  msgstr ""
2123
 
2124
- #: includes/functions.php:896
2125
  msgid "Repeat"
2126
  msgstr ""
2127
 
2128
- #: includes/functions.php:909
2129
  msgid "Select image"
2130
  msgstr ""
2131
 
2132
- #: includes/functions.php:936
2133
  msgid "Parallax background"
2134
  msgstr ""
2135
 
2136
- #: includes/functions.php:939
2137
  msgid "Select background image"
2138
  msgstr ""
2139
 
2140
- #: includes/functions.php:943
2141
  msgid "Shift"
2142
  msgstr ""
2143
 
2144
- #: includes/functions.php:944
2145
  msgid ""
2146
  "Background image shift in pixels when the block scrolls from top to bottom, "
2147
  "empty means no shift"
2148
  msgstr ""
2149
 
2150
- #: includes/functions.php:952 settings.php:925
2151
  msgid "Link"
2152
  msgstr ""
2153
 
2154
- #: includes/functions.php:952
2155
  msgid "The destination page when the background is clicked"
2156
  msgstr ""
2157
 
2158
- #: includes/functions.php:954 settings.php:936
2159
  msgid "Open link in a new tab"
2160
  msgstr ""
2161
 
2162
- #: includes/functions.php:957
2163
  msgid "New tab"
2164
  msgstr ""
2165
 
2166
- #: includes/functions.php:1188 includes/functions.php:1216 settings.php:1820
2167
- #: settings.php:1843 settings.php:1866 settings.php:1889 settings.php:1912
2168
- #: settings.php:1935 settings.php:1958 settings.php:1980 settings.php:2002
2169
  msgid "Click to select black or white list"
2170
  msgstr ""
2171
 
2172
  #. translators: %s: Ad Inserter Pro
2173
- #: includes/functions.php:1850
2174
  msgid "Invalid %s version."
2175
  msgstr ""
2176
 
2177
- #: includes/functions.php:1851
2178
  msgid "Check license"
2179
  msgstr ""
2180
 
2181
- #: includes/functions.php:1866
2182
  msgid "License"
2183
  msgstr ""
2184
 
2185
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2186
- #: includes/functions.php:2211
2187
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2188
  msgstr ""
2189
 
2190
  #. Translators: %s: HTML tags
2191
- #: includes/functions.php:2264
2192
  msgid ""
2193
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2194
  "account %s and create license key."
2195
  msgstr ""
2196
 
2197
- #: includes/functions.php:3026
2198
  msgid "Start date"
2199
  msgstr ""
2200
 
2201
- #: includes/functions.php:3026
2202
  msgid "Enter date in format yyyy-mm-dd"
2203
  msgstr ""
2204
 
2205
- #: includes/functions.php:3026
2206
  msgid "empty means every day as defined by hours and days in week"
2207
  msgstr ""
2208
 
2209
- #: includes/functions.php:3027
2210
  msgid "Start time"
2211
  msgstr ""
2212
 
2213
- #: includes/functions.php:3027
2214
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2215
  msgstr ""
2216
 
2217
- #: includes/functions.php:3029
2218
  msgid "End date"
2219
  msgstr ""
2220
 
2221
- #: includes/functions.php:3030
2222
  msgid "End time"
2223
  msgstr ""
2224
 
2225
- #: includes/functions.php:3033
2226
  msgid "Select wanted days in week"
2227
  msgstr ""
2228
 
2229
- #: includes/functions.php:3373
2230
  msgid "Fallback"
2231
  msgstr ""
2232
 
2233
- #: includes/functions.php:3374
2234
  msgid "Block to be used when a limit is reached"
2235
  msgstr ""
2236
 
2237
- #: includes/functions.php:3398
2238
  msgid "Ad blocking detection is disabled"
2239
  msgstr ""
2240
 
2241
- #: includes/functions.php:3511
2242
  msgid ""
2243
  "Time in ms before the code is inserted (and ad displayed). Leave empty to "
2244
  "insert the code without any additional delay."
2245
  msgstr ""
2246
 
2247
- #: includes/functions.php:3554
2248
- msgid "Wait for user interaction"
2249
  msgstr ""
2250
 
2251
- #: includes/functions.php:3559
2252
- msgid "Protected"
2253
  msgstr ""
2254
 
2255
- #: includes/functions.php:3562
2256
  msgid "Manual loading"
2257
  msgstr ""
2258
 
2259
- #: includes/functions.php:3656
 
 
 
 
2260
  msgid "IP address blocked"
2261
  msgid_plural "IP addresses blocked"
2262
  msgstr[0] ""
2263
  msgstr[1] ""
2264
 
2265
- #: includes/functions.php:3659 includes/functions.php:3708
2266
  msgid "No IP address blocked"
2267
  msgstr ""
2268
 
2269
- #: includes/functions.php:3721
2270
  msgid "Blocked IP address"
2271
  msgstr ""
2272
 
2273
- #: includes/functions.php:3721
2274
  msgid "Country"
2275
  msgstr ""
2276
 
2277
- #: includes/functions.php:3721
2278
  msgid "Time to expiration"
2279
  msgstr ""
2280
 
2281
- #: includes/functions.php:3723 strings.php:227
2282
  msgid "Delete"
2283
  msgstr ""
2284
 
2285
- #: includes/functions.php:3738
2286
  msgid "Delete IP address"
2287
  msgstr ""
2288
 
2289
- #: includes/functions.php:4295
 
 
 
 
2290
  msgid "CONNECTED"
2291
  msgstr ""
2292
 
2293
- #: includes/functions.php:4296
2294
  msgid "Disconnect website"
2295
  msgstr ""
2296
 
2297
- #: includes/functions.php:4312
2298
  msgid "MANAGED BY"
2299
  msgstr ""
2300
 
2301
- #: includes/functions.php:4333
2302
  msgid "Remote management"
2303
  msgstr ""
2304
 
2305
- #: includes/functions.php:4337
2306
  msgid "Allow to connect and manage plugin settings"
2307
  msgstr ""
2308
 
2309
- #: includes/functions.php:4339
2310
  msgid "String to allow plugin management. Clear to reset to default value."
2311
  msgstr ""
2312
 
2313
- #: includes/functions.php:4347
2314
  msgid "Check remote IP address"
2315
  msgstr ""
2316
 
2317
- #: includes/functions.php:4351
2318
  msgid "Check IP address of remote management website"
2319
  msgstr ""
2320
 
2321
- #: includes/functions.php:4353
2322
  msgid "Allowed IP addresses of remote management websites"
2323
  msgstr ""
2324
 
2325
  #. Translators: %s: Ad Inserter Pro
2326
- #: includes/functions.php:4376
2327
  msgid "Manage %s on other websites"
2328
  msgstr ""
2329
 
2330
- #: includes/functions.php:4391
2331
  msgid "Add website"
2332
  msgstr ""
2333
 
2334
- #: includes/functions.php:4395
2335
  msgid "Rearrange website order"
2336
  msgstr ""
2337
 
2338
- #: includes/functions.php:4399
2339
  msgid "Cancel changes"
2340
  msgstr ""
2341
 
2342
- #: includes/functions.php:4403
2343
  msgid "Save changes"
2344
  msgstr ""
2345
 
2346
- #: includes/functions.php:4505 includes/functions.php:4508
2347
- #: includes/functions.php:4511 includes/functions.php:4516
2348
  msgid "Invalid data received from"
2349
  msgstr ""
2350
 
2351
- #: includes/functions.php:4515 includes/functions.php:4519
2352
  msgid "Error connecting to"
2353
  msgstr ""
2354
 
2355
- #: includes/functions.php:4515
2356
  msgid "No data received"
2357
  msgstr ""
2358
 
2359
- #: includes/functions.php:4560
2360
  msgid "Error saving websites"
2361
  msgstr ""
2362
 
2363
- #: includes/functions.php:4600
2364
  msgid "Can't connect to itself"
2365
  msgstr ""
2366
 
2367
- #: includes/functions.php:4651
2368
  msgid "Connect website"
2369
  msgstr ""
2370
 
2371
- #: includes/functions.php:4655
2372
  msgid "Delete website"
2373
  msgstr ""
2374
 
2375
- #: includes/functions.php:4671
2376
  msgid "Key"
2377
  msgstr ""
2378
 
2379
- #: includes/functions.php:4689
2380
  msgid "Address"
2381
  msgstr ""
2382
 
2383
- #: includes/functions.php:4702
2384
  msgid "No website configured"
2385
  msgstr ""
2386
 
2387
- #: includes/functions.php:4703
2388
  msgid "No website matches search keywords"
2389
  msgstr ""
2390
 
2391
  #. Translators: %s HTML tags
2392
- #: includes/functions.php:4732
2393
  msgid "Create and manage %s MaxMind license key %s"
2394
  msgstr ""
2395
 
2396
- #: includes/functions.php:4768
2397
  msgid "MaxMind license key"
2398
  msgstr ""
2399
 
2400
- #: includes/functions.php:4771
2401
  msgid "Enter license key obtained from MaxMind"
2402
  msgstr ""
2403
 
2404
- #: includes/functions.php:4972
2405
  msgid ""
2406
  "Image or logo to be displayed in the header of the statistics report. "
2407
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2408
  "reset to default image."
2409
  msgstr ""
2410
 
2411
- #: includes/functions.php:5020
2412
  msgid "Event category"
2413
  msgstr ""
2414
 
2415
- #: includes/functions.php:5023
2416
  msgid ""
2417
  "Category name used for external tracking events. You can use tags to get the "
2418
  "event, the number or the name of the block that caused the event."
2419
  msgstr ""
2420
 
2421
- #: includes/functions.php:5028
2422
  msgid "Event action"
2423
  msgstr ""
2424
 
2425
- #: includes/functions.php:5031
2426
  msgid ""
2427
  "Action name used for external tracking events. You can use tags to get the "
2428
  "event, the number or the name of the block that caused the event."
2429
  msgstr ""
2430
 
2431
- #: includes/functions.php:5036
2432
  msgid "Event label"
2433
  msgstr ""
2434
 
2435
- #: includes/functions.php:5039
2436
  msgid ""
2437
  "Label name used for external tracking events. You can use tags to get the "
2438
  "event, the number or the name of the block that caused the event."
2439
  msgstr ""
2440
 
2441
- #: includes/functions.php:5072
2442
  msgid "Global visitor limits"
2443
  msgstr ""
2444
 
2445
- #: includes/functions.php:5095
2446
  msgid "Block IP address"
2447
  msgstr ""
2448
 
2449
- #: includes/functions.php:5100
2450
  msgid "Block visitor's IP address when protection is activated"
2451
  msgstr ""
2452
 
2453
- #: includes/functions.php:5102
2454
  msgid "Click to show blocked IP addresses"
2455
  msgstr ""
2456
 
2457
  #. translators: %s: Ad Inserter Pro
2458
- #: includes/functions.php:5292
2459
  msgid "Show link to %s settings page for each site on the Sites page"
2460
  msgstr ""
2461
 
2462
  #. translators: %s: Ad Inserter Pro
2463
- #: includes/functions.php:5292
2464
  msgid "Show link to %s on the Sites page"
2465
  msgstr ""
2466
 
2467
- #: includes/functions.php:5334 settings.php:3248
2468
  msgid ""
2469
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2470
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -2473,15 +2501,23 @@ msgid ""
2473
  "administrators debugging is always enabled."
2474
  msgstr ""
2475
 
2476
- #: includes/functions.php:5336 settings.php:3250
2477
  msgid "Remote debugging"
2478
  msgstr ""
2479
 
2480
- #: includes/functions.php:6815
 
 
 
 
 
 
 
 
2481
  msgid "Date"
2482
  msgstr ""
2483
 
2484
- #: includes/functions.php:7304 includes/functions.php:7315
2485
  msgid "File %s missing."
2486
  msgstr ""
2487
 
@@ -2509,11 +2545,11 @@ msgstr ""
2509
  msgid "Placeholder"
2510
  msgstr ""
2511
 
2512
- #: includes/placeholders.php:361 settings.php:992 settings.php:4619
2513
  msgid "Size"
2514
  msgstr ""
2515
 
2516
- #: includes/placeholders.php:377 includes/preview.php:2545 settings.php:2324
2517
  msgid "Background color"
2518
  msgstr ""
2519
 
@@ -2617,11 +2653,11 @@ msgstr ""
2617
  msgid "Ad Blocking Detected Message Preview"
2618
  msgstr ""
2619
 
2620
- #: includes/preview-adb.php:360 settings.php:3085
2621
  msgid "Message CSS"
2622
  msgstr ""
2623
 
2624
- #: includes/preview-adb.php:365 settings.php:3093
2625
  msgid "Overlay CSS"
2626
  msgstr ""
2627
 
@@ -2657,7 +2693,7 @@ msgstr ""
2657
  msgid "background"
2658
  msgstr ""
2659
 
2660
- #: includes/preview.php:2529 includes/preview.php:2741 settings.php:1394
2661
  msgid "Alignment"
2662
  msgstr ""
2663
 
@@ -2765,478 +2801,482 @@ msgid ""
2765
  "WordPress version"
2766
  msgstr ""
2767
 
2768
- #: settings.php:114 settings.php:117
2769
  msgid ""
2770
  "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
2771
  msgstr ""
2772
 
2773
  #. translators: %s: HTML link code
2774
- #: settings.php:124
2775
  msgid ""
2776
  "Warning: %s Unfiltered HTML %s is disabled for this website - most ad codes "
2777
  "can't be used"
2778
  msgstr ""
2779
 
2780
- #: settings.php:207
2781
  msgid "Online documentation"
2782
  msgstr ""
2783
 
2784
- #: settings.php:211 settings.php:810 settings.php:2428
 
 
 
 
2785
  msgid "Show AdSense ad units"
2786
  msgstr ""
2787
 
2788
- #: settings.php:220
2789
  msgid "Edit ads.txt file"
2790
  msgstr ""
2791
 
2792
- #: settings.php:223 settings.php:1220
2793
  msgid "Check theme for available positions for automatic insertion"
2794
  msgstr ""
2795
 
2796
- #: settings.php:227
2797
  msgid "List all blocks"
2798
  msgstr ""
2799
 
2800
- #: settings.php:234
2801
  msgid "Loaded plugin JavaScript file version"
2802
  msgstr ""
2803
 
2804
  #. translators: %s: HTML tags
2805
- #: settings.php:236
2806
  msgid ""
2807
  "Wrong or %s missing version parameter %s of the JavaScript file, probably "
2808
  "due to inappropriate caching."
2809
  msgstr ""
2810
 
2811
- #: settings.php:237
2812
  msgid ""
2813
  "Missing version parameter of the JavaScript file, probably due to "
2814
  "inappropriate caching."
2815
  msgstr ""
2816
 
2817
- #: settings.php:238
2818
  msgid ""
2819
  "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
2820
  "caching."
2821
  msgstr ""
2822
 
2823
- #: settings.php:239 settings.php:250
2824
  msgid ""
2825
  "Please delete browser's cache and all other caches used and then reload this "
2826
  "page."
2827
  msgstr ""
2828
 
2829
- #: settings.php:245
2830
  msgid "Loaded plugin CSS file version"
2831
  msgstr ""
2832
 
2833
  #. translators: %s: HTML tags
2834
- #: settings.php:247
2835
  msgid ""
2836
  "Wrong or %s missing version parameter %s of the CSS file, probably due to "
2837
  "inappropriate caching."
2838
  msgstr ""
2839
 
2840
- #: settings.php:248
2841
  msgid ""
2842
  "Missing version parameter of the CSS file, probably due to inappropriate "
2843
  "caching."
2844
  msgstr ""
2845
 
2846
- #: settings.php:249
2847
  msgid ""
2848
  "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
2849
  msgstr ""
2850
 
2851
- #: settings.php:256 settings.php:282
2852
  msgid "WARNING"
2853
  msgstr ""
2854
 
2855
  #. translators: %s: HTML tags
2856
- #: settings.php:258
2857
  msgid "Page may %s not be loaded properly. %s"
2858
  msgstr ""
2859
 
2860
- #: settings.php:259
2861
  msgid ""
2862
  "Check ad blocking software that may block CSS, JavaScript or image files."
2863
  msgstr ""
2864
 
2865
- #: settings.php:268
2866
  msgid "SAFE MODE"
2867
  msgstr ""
2868
 
2869
  #. translators: %s: HTML tags
2870
- #: settings.php:270
2871
  msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
2872
  msgstr ""
2873
 
2874
- #: settings.php:282
2875
  msgid ""
2876
  "To disable debugging functions and to enable insertions go to tab [*] / tab "
2877
  "Debugging"
2878
  msgstr ""
2879
 
2880
- #: settings.php:284
2881
  msgid "Debugging functions enabled - some code is not inserted"
2882
  msgstr ""
2883
 
2884
- #: settings.php:301
2885
  msgid "Group name"
2886
  msgstr ""
2887
 
2888
- #: settings.php:302
2889
  msgid "Option name"
2890
  msgstr ""
2891
 
2892
- #: settings.php:308
2893
  msgid "Share"
2894
  msgstr ""
2895
 
2896
- #: settings.php:311
2897
  msgid ""
2898
  "Option share in percents - 0 means option is disabled, if share for one "
2899
  "option is not defined it will be calculated automatically. Leave all share "
2900
  "fields empty for equal option shares."
2901
  msgstr ""
2902
 
2903
- #: settings.php:314 settings.php:2157 settings.php:4532
2904
  msgid "Scheduling"
2905
  msgstr ""
2906
 
2907
- #: settings.php:317
2908
  msgid "Scheduling parameters"
2909
  msgstr ""
2910
 
2911
- #: settings.php:320
2912
  msgid "Time"
2913
  msgstr ""
2914
 
2915
- #: settings.php:323
2916
  msgid ""
2917
  "Option time in seconds - 0 means option is disabled and will be skipped. "
2918
  "Leave all time fields empty for no timed rotation."
2919
  msgstr ""
2920
 
2921
- #: settings.php:494
2922
  msgid "General Settings"
2923
  msgstr ""
2924
 
2925
- #: settings.php:758 settings.php:2781 settings.php:2850 settings.php:3063
2926
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2927
  msgstr ""
2928
 
2929
- #: settings.php:765
2930
  msgid "Toggle tools"
2931
  msgstr ""
2932
 
2933
- #: settings.php:773
2934
  msgid "Process PHP code in block"
2935
  msgstr ""
2936
 
2937
- #: settings.php:780
2938
  msgid "Disable insertion of this block"
2939
  msgstr ""
2940
 
2941
- #: settings.php:792
2942
  msgid "Toggle code generator"
2943
  msgstr ""
2944
 
2945
- #: settings.php:796
2946
  msgid "Toggle rotation editor"
2947
  msgstr ""
2948
 
2949
- #: settings.php:800
2950
  msgid "Open visual HTML editor"
2951
  msgstr ""
2952
 
2953
- #: settings.php:819
2954
  msgid "Clear block"
2955
  msgstr ""
2956
 
2957
- #: settings.php:824 settings.php:4485
2958
  msgid "Copy block"
2959
  msgstr ""
2960
 
2961
- #: settings.php:828
2962
  msgid "Paste name"
2963
  msgstr ""
2964
 
2965
- #: settings.php:832
2966
  msgid "Paste code"
2967
  msgstr ""
2968
 
2969
- #: settings.php:836
2970
  msgid "Paste settings"
2971
  msgstr ""
2972
 
2973
- #: settings.php:840
2974
  msgid "Paste block (name, code and settings)"
2975
  msgstr ""
2976
 
2977
- #: settings.php:859
2978
  msgid "Rotation groups"
2979
  msgstr ""
2980
 
2981
- #: settings.php:863
2982
  msgid "Remove option"
2983
  msgstr ""
2984
 
2985
- #: settings.php:867
2986
  msgid "Add option"
2987
  msgstr ""
2988
 
2989
- #: settings.php:882
2990
  msgid "Import code"
2991
  msgstr ""
2992
 
2993
- #: settings.php:886
2994
  msgid "Generate code"
2995
  msgstr ""
2996
 
2997
- #: settings.php:891
2998
  msgid "Banner"
2999
  msgstr ""
3000
 
3001
- #: settings.php:903
3002
  msgid "Image"
3003
  msgstr ""
3004
 
3005
- #: settings.php:911
3006
  msgid "Alt text"
3007
  msgstr ""
3008
 
3009
- #: settings.php:939
3010
  msgid "Select Image"
3011
  msgstr ""
3012
 
3013
- #: settings.php:940
3014
  msgid "Select Placeholder"
3015
  msgstr ""
3016
 
3017
- #: settings.php:952
3018
  msgid "Comment"
3019
  msgstr ""
3020
 
3021
- #: settings.php:961
3022
  msgctxt "AdSense"
3023
  msgid "Publisher ID"
3024
  msgstr ""
3025
 
3026
- #: settings.php:970
3027
  msgctxt "AdSense"
3028
  msgid "Ad Slot ID"
3029
  msgstr ""
3030
 
3031
- #: settings.php:979
3032
  msgid "Ad Type"
3033
  msgstr ""
3034
 
3035
- #: settings.php:1004 settings.php:1146
3036
  msgid "AMP Ad"
3037
  msgstr ""
3038
 
3039
- #: settings.php:1018 settings.php:1168
3040
  msgid "Block on consent"
3041
  msgstr ""
3042
 
3043
- #: settings.php:1029
3044
  msgid "Show ad units from your AdSense account"
3045
  msgstr ""
3046
 
3047
- #: settings.php:1029
3048
  msgid "AdSense ad units"
3049
  msgstr ""
3050
 
3051
- #: settings.php:1046
3052
  msgctxt "AdSense"
3053
  msgid "Layout"
3054
  msgstr ""
3055
 
3056
- #: settings.php:1055
3057
  msgctxt "AdSense"
3058
  msgid "Layout Key"
3059
  msgstr ""
3060
 
3061
- #: settings.php:1065
3062
  msgid "Full width"
3063
  msgstr ""
3064
 
3065
- #: settings.php:1067
3066
  msgctxt "Full width"
3067
  msgid "Enabled"
3068
  msgstr ""
3069
 
3070
- #: settings.php:1068
3071
  msgctxt "Full width"
3072
  msgid "Disabled"
3073
  msgstr ""
3074
 
3075
- #: settings.php:1186
3076
  msgid ""
3077
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3078
  "Cookie or Referer (domain)"
3079
  msgstr ""
3080
 
3081
- #: settings.php:1186
3082
  msgid "Lists"
3083
  msgstr ""
3084
 
3085
- #: settings.php:1187
3086
  msgid "Widget, Shortcode and PHP function call"
3087
  msgstr ""
3088
 
3089
- #: settings.php:1187
3090
  msgid "Manual"
3091
  msgstr ""
3092
 
3093
- #: settings.php:1188
3094
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3095
  msgstr ""
3096
 
3097
- #: settings.php:1188
3098
  msgid "Devices"
3099
  msgstr ""
3100
 
3101
- #: settings.php:1189
3102
  msgid ""
3103
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3104
  "feeds), Filter, Scheduling, General tag"
3105
  msgstr ""
3106
 
3107
- #: settings.php:1189
3108
  msgid "Misc"
3109
  msgstr ""
3110
 
3111
- #: settings.php:1190
3112
  msgid "Preview code and alignment"
3113
  msgstr ""
3114
 
3115
- #: settings.php:1193 settings.php:2409
3116
  msgid ""
3117
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3118
  "editor is active before saving settings."
3119
  msgstr ""
3120
 
3121
- #: settings.php:1206 settings.php:1207
3122
  msgid "Enable insertion on posts"
3123
  msgstr ""
3124
 
3125
- #: settings.php:1207 settings.php:3661
3126
  msgid "Posts"
3127
  msgstr ""
3128
 
3129
- #: settings.php:1211 settings.php:1212
3130
  msgid ""
3131
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3132
  "page or theme homepage (available positions may depend on hooks used by the "
3133
  "theme)"
3134
  msgstr ""
3135
 
3136
- #: settings.php:1212 settings.php:3663
3137
  msgid "Homepage"
3138
  msgstr ""
3139
 
3140
- #: settings.php:1216 settings.php:1217
3141
  msgid "Enable insertion on category blog pages (including sub-pages)"
3142
  msgstr ""
3143
 
3144
- #: settings.php:1217 settings.php:3664
3145
  msgid "Category pages"
3146
  msgstr ""
3147
 
3148
- #: settings.php:1227 settings.php:1228
3149
  msgid "Enable insertion on static pages"
3150
  msgstr ""
3151
 
3152
- #: settings.php:1228 settings.php:3662
3153
  msgid "Static pages"
3154
  msgstr ""
3155
 
3156
- #: settings.php:1232 settings.php:1233
3157
  msgid "Enable insertion on search blog pages"
3158
  msgstr ""
3159
 
3160
- #: settings.php:1233 settings.php:3666
3161
  msgid "Search pages"
3162
  msgstr ""
3163
 
3164
- #: settings.php:1237 settings.php:1238
3165
  msgid "Enable insertion on tag or archive blog pages"
3166
  msgstr ""
3167
 
3168
- #: settings.php:1241
3169
  msgid "Toggle settings for default insertion and list of individual exceptions"
3170
  msgstr ""
3171
 
3172
- #: settings.php:1253
3173
  msgid ""
3174
  "Enable individual post/page exceptions for insertion of this block. They can "
3175
  "be configured on the individual post/page editor page (in the settings below "
3176
  "the editor)."
3177
  msgstr ""
3178
 
3179
- #: settings.php:1254
3180
  msgid ""
3181
  "Enable individual post/page exceptions for insertion of this block. When "
3182
  "enabled they can be configured on the individual post/page editor page (in "
3183
  "the settings below the editor)."
3184
  msgstr ""
3185
 
3186
- #: settings.php:1254
3187
  msgid "Use exceptions for individual posts or pages to change insertion"
3188
  msgstr ""
3189
 
3190
  #. Translators: Enabled means...
3191
- #: settings.php:1262
3192
  msgid ""
3193
  "means the insertion for this block is enabled by default and disabled for "
3194
  "exceptions."
3195
  msgstr ""
3196
 
3197
  #. Translators: Disabled means...
3198
- #: settings.php:1263
3199
  msgid ""
3200
  "means the insertion for this block is disabled by default and enabled for "
3201
  "exceptions."
3202
  msgstr ""
3203
 
3204
- #: settings.php:1264
3205
  msgid ""
3206
  "When individual post/page exceptions are enabled they can be configured on "
3207
  "the individual post/page editor page (in the settings below the editor)."
3208
  msgstr ""
3209
 
3210
- #: settings.php:1272
3211
  msgid ""
3212
  "No exception for post or static page defined. Block will not be inserted."
3213
  msgstr ""
3214
 
3215
- #: settings.php:1277
3216
  msgid ""
3217
  "Settings for individual exceptions have been updated. Please check all "
3218
  "blocks that have exceptions and and then save settings."
3219
  msgstr ""
3220
 
3221
- #: settings.php:1290
3222
  msgctxt "post"
3223
  msgid "Type"
3224
  msgstr ""
3225
 
3226
  #. translators: %d: block number
3227
- #: settings.php:1295
3228
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3229
  msgstr ""
3230
 
3231
- #: settings.php:1296
3232
  msgid "Clear listed exceptions for block"
3233
  msgstr ""
3234
 
3235
- #: settings.php:1325 settings.php:1473 settings.php:2154
3236
  msgid "Insertion"
3237
  msgstr ""
3238
 
3239
- #: settings.php:1363
3240
  msgid ""
3241
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3242
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3246,7 +3286,7 @@ msgid ""
3246
  "negative number means counting from the opposite direction"
3247
  msgstr ""
3248
 
3249
- #: settings.php:1364
3250
  msgid ""
3251
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3252
  "means every N images, empty means all images, 0 means random image, value "
@@ -3256,178 +3296,178 @@ msgid ""
3256
  "direction"
3257
  msgstr ""
3258
 
3259
- #: settings.php:1377
3260
  msgid ""
3261
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3262
  "numbers, %N means every N excerpts, empty means all excerpts"
3263
  msgstr ""
3264
 
3265
- #: settings.php:1378
3266
  msgid ""
3267
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3268
  "numbers, %N means every N posts, empty means all posts"
3269
  msgstr ""
3270
 
3271
- #: settings.php:1379
3272
  msgid ""
3273
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3274
  "numbers, %N means every N comments, empty means all comments"
3275
  msgstr ""
3276
 
3277
- #: settings.php:1386
3278
  msgid "Toggle paragraph counting settings"
3279
  msgstr ""
3280
 
3281
- #: settings.php:1387
3282
  msgid "Toggle paragraph clearance settings"
3283
  msgstr ""
3284
 
3285
- #: settings.php:1390
3286
  msgid "Toggle insertion filter settings"
3287
  msgstr ""
3288
 
3289
- #: settings.php:1408
3290
  msgid "Toggle insertion and alignment icons"
3291
  msgstr ""
3292
 
3293
- #: settings.php:1422
3294
  msgid "Custom CSS code for the wrapping div"
3295
  msgstr ""
3296
 
3297
- #: settings.php:1425 settings.php:1426 settings.php:1427 settings.php:1428
3298
- #: settings.php:1429 settings.php:1430
3299
  msgid "CSS code for the wrapping div, click to edit"
3300
  msgstr ""
3301
 
3302
- #: settings.php:1443
3303
  msgid "HTML element"
3304
  msgstr ""
3305
 
3306
- #: settings.php:1456
3307
  msgid "HTML element selector or comma separated list of selectors"
3308
  msgstr ""
3309
 
3310
- #: settings.php:1462 settings.php:2959
3311
  msgid "Action"
3312
  msgstr ""
3313
 
3314
- #: settings.php:1474
3315
  msgid ""
3316
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3317
  "Server-side insertion inserts block when the page is generated but needs "
3318
  "Output buffering enabled."
3319
  msgstr ""
3320
 
3321
- #: settings.php:1484
3322
  msgid "Wait for"
3323
  msgstr ""
3324
 
3325
- #: settings.php:1496
3326
  msgid "Wait for HTML element to be loaded"
3327
  msgstr ""
3328
 
3329
- #: settings.php:1503
3330
  msgid "Time in ms to delay insertion"
3331
  msgstr ""
3332
 
3333
- #: settings.php:1508
3334
  msgid "Code position"
3335
  msgstr ""
3336
 
3337
- #: settings.php:1509
3338
  msgid ""
3339
  "Page position where the code for client-side insertion will be inserted."
3340
  msgstr ""
3341
 
3342
- #: settings.php:1527
3343
  msgid "Count"
3344
  msgstr ""
3345
 
3346
- #: settings.php:1533
3347
  msgid "paragraphs with tags"
3348
  msgstr ""
3349
 
3350
- #: settings.php:1539
3351
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3352
  msgstr ""
3353
 
3354
- #: settings.php:1548
3355
  msgid "that have between"
3356
  msgstr ""
3357
 
3358
- #: settings.php:1554
3359
  msgid "Minimum number of paragraph words, leave empty for no limit"
3360
  msgstr ""
3361
 
3362
- #: settings.php:1563
3363
  msgid "Maximum number of paragraph words, leave empty for no limit"
3364
  msgstr ""
3365
 
3366
- #: settings.php:1566
3367
  msgid "words"
3368
  msgstr ""
3369
 
3370
- #: settings.php:1581 settings.php:1628 settings.php:1742 settings.php:1768
3371
  msgid "Comma separated texts"
3372
  msgstr ""
3373
 
3374
  #. translators: inside [HTML tags] elements that contain
3375
- #: settings.php:1600
3376
  msgid "inside"
3377
  msgstr ""
3378
 
3379
- #: settings.php:1606
3380
  msgid "Comma separated HTML tag names of container elements"
3381
  msgstr ""
3382
 
3383
  #. translators: inside [HTML tags] elements that contain
3384
- #: settings.php:1615
3385
  msgid "elements that"
3386
  msgstr ""
3387
 
3388
- #: settings.php:1638
3389
  msgid ""
3390
  "Count also paragraphs inside these elements - defined on general plugin "
3391
  "settings page - tab [*] / tab General"
3392
  msgstr ""
3393
 
3394
- #: settings.php:1645 settings.php:1646
3395
  msgid ""
3396
  "If checked it will search for the text only in tag attributes like [[id]], "
3397
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
3398
  "will be searched."
3399
  msgstr ""
3400
 
3401
- #: settings.php:1646
3402
  msgid "Check only tag attributes"
3403
  msgstr ""
3404
 
3405
  #. Translators: %s: HTML tags
3406
- #: settings.php:1651
3407
  msgid "Count inside %s elements"
3408
  msgstr ""
3409
 
3410
  #. Translators: Do not insert for first X and last Y paragraphs
3411
- #: settings.php:1659
3412
  msgid "Do not insert for first"
3413
  msgid_plural "Do not insert for first"
3414
  msgstr[0] ""
3415
  msgstr[1] ""
3416
 
3417
- #: settings.php:1665
3418
  msgid ""
3419
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3420
  "first paragraphs"
3421
  msgstr ""
3422
 
3423
  #. Translators: Do not insert for first X and last Y paragraphs
3424
- #: settings.php:1668
3425
  msgid "and last"
3426
  msgid_plural "and last"
3427
  msgstr[0] ""
3428
  msgstr[1] ""
3429
 
3430
- #: settings.php:1674
3431
  msgid ""
3432
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3433
  "last paragraphs"
@@ -3435,124 +3475,124 @@ msgstr ""
3435
 
3436
  #. Translators: Do not insert for first X and last Y paragraphs
3437
  #. Translators: Post/Static page must have between X and Y paragraphs
3438
- #: settings.php:1677 settings.php:1703
3439
  msgid "paragraph"
3440
  msgid_plural "paragraphs"
3441
  msgstr[0] ""
3442
  msgstr[1] ""
3443
 
3444
- #: settings.php:1685 settings.php:2286
3445
  msgid "Post/Static page must have between"
3446
  msgstr ""
3447
 
3448
- #: settings.php:1691
3449
  msgid "Minimum number of paragraphs, leave empty for no limit"
3450
  msgstr ""
3451
 
3452
- #: settings.php:1700
3453
  msgid "Maximum number of paragraphs, leave empty for no limit"
3454
  msgstr ""
3455
 
3456
- #: settings.php:1711
3457
  msgid "Minimum number of words in paragraphs above"
3458
  msgstr ""
3459
 
3460
- #: settings.php:1717
3461
  msgid ""
3462
  "Used only with automatic insertion After paragraph and empty paragraph "
3463
  "numbers"
3464
  msgstr ""
3465
 
3466
- #: settings.php:1727 settings.php:1753
3467
  msgid "In"
3468
  msgstr ""
3469
 
3470
- #: settings.php:1733
3471
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3472
  msgstr ""
3473
 
3474
- #: settings.php:1736
3475
  msgid "paragraphs above avoid"
3476
  msgstr ""
3477
 
3478
- #: settings.php:1759
3479
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3480
  msgstr ""
3481
 
3482
- #: settings.php:1762
3483
  msgid "paragraphs below avoid"
3484
  msgstr ""
3485
 
3486
- #: settings.php:1778
3487
  msgid "If text is found"
3488
  msgstr ""
3489
 
3490
- #: settings.php:1785
3491
  msgid "check up to"
3492
  msgstr ""
3493
 
3494
- #: settings.php:1793
3495
  msgctxt "check up to"
3496
  msgid "paragraphs"
3497
  msgstr ""
3498
 
3499
- #: settings.php:1809
3500
  msgid "Categories"
3501
  msgstr ""
3502
 
3503
- #: settings.php:1812
3504
  msgid "Toggle category editor"
3505
  msgstr ""
3506
 
3507
- #: settings.php:1815
3508
  msgid "Comma separated category slugs"
3509
  msgstr ""
3510
 
3511
- #: settings.php:1832
3512
  msgid "Tags"
3513
  msgstr ""
3514
 
3515
- #: settings.php:1835
3516
  msgid "Toggle tag editor"
3517
  msgstr ""
3518
 
3519
- #: settings.php:1838
3520
  msgid "Comma separated tag slugs"
3521
  msgstr ""
3522
 
3523
- #: settings.php:1855
3524
  msgid "Taxonomies"
3525
  msgstr ""
3526
 
3527
- #: settings.php:1858
3528
  msgid "Toggle taxonomy editor"
3529
  msgstr ""
3530
 
3531
- #: settings.php:1861
3532
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3533
  msgstr ""
3534
 
3535
- #: settings.php:1878
3536
  msgid "Post IDs"
3537
  msgstr ""
3538
 
3539
- #: settings.php:1881
3540
  msgid "Toggle post/page ID editor"
3541
  msgstr ""
3542
 
3543
- #: settings.php:1884
3544
  msgid "Comma separated post/page IDs"
3545
  msgstr ""
3546
 
3547
- #: settings.php:1901
3548
  msgid "Urls"
3549
  msgstr ""
3550
 
3551
- #: settings.php:1904
3552
  msgid "Toggle url editor"
3553
  msgstr ""
3554
 
3555
- #: settings.php:1907
3556
  msgid ""
3557
  "Comma separated urls (page addresses) starting with / after domain name (e."
3558
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3560,207 +3600,207 @@ msgid ""
3560
  "start*. *url-pattern*, *url-end)"
3561
  msgstr ""
3562
 
3563
- #: settings.php:1923
3564
  msgid "Url parameters"
3565
  msgstr ""
3566
 
3567
- #: settings.php:1927
3568
  msgid "Toggle url parameter and cookie editor"
3569
  msgstr ""
3570
 
3571
- #: settings.php:1930
3572
  msgid ""
3573
  "Comma separated url query parameters or cookies with optional values (use "
3574
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
3575
  msgstr ""
3576
 
3577
- #: settings.php:1946
3578
  msgid "Cookies"
3579
  msgstr ""
3580
 
3581
- #: settings.php:1950
3582
  msgid "Toggle cookie editor"
3583
  msgstr ""
3584
 
3585
- #: settings.php:1953
3586
  msgid ""
3587
  "Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
3588
  msgstr ""
3589
 
3590
- #: settings.php:1969
3591
  msgid "Referrers"
3592
  msgstr ""
3593
 
3594
- #: settings.php:1972
3595
  msgid "Toggle referrer editor"
3596
  msgstr ""
3597
 
3598
- #: settings.php:1975
3599
  msgid ""
3600
  "Comma separated domains, use # for no referrer, you can also use partial "
3601
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3602
  msgstr ""
3603
 
3604
- #: settings.php:1991
3605
  msgid "Clients"
3606
  msgstr ""
3607
 
3608
- #: settings.php:1994
3609
  msgid "Toggle client editor"
3610
  msgstr ""
3611
 
3612
- #: settings.php:1997
3613
  msgid ""
3614
  "Comma separated names (operating systems, browsers, devices). You can also "
3615
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
3616
  "pattern*, *user-agent-end)"
3617
  msgstr ""
3618
 
3619
- #: settings.php:2023
3620
  msgid "Enable widget for this block"
3621
  msgstr ""
3622
 
3623
- #: settings.php:2028
3624
  msgid "Sidebars (or widget positions) where this widget is used"
3625
  msgstr ""
3626
 
3627
- #: settings.php:2035
3628
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3629
  msgstr ""
3630
 
3631
- #: settings.php:2036 settings.php:4542
3632
  msgid "Shortcode"
3633
  msgstr ""
3634
 
3635
- #: settings.php:2051
3636
  msgid ""
3637
  "Enable PHP function call to insert this block at any position in theme file. "
3638
  "If function is disabled for block it will return empty string."
3639
  msgstr ""
3640
 
3641
- #: settings.php:2052
3642
  msgid "PHP function"
3643
  msgstr ""
3644
 
3645
- #: settings.php:2067
3646
  msgid "Client-side device detection"
3647
  msgstr ""
3648
 
3649
- #: settings.php:2068
3650
  msgid "Server-side device detection"
3651
  msgstr ""
3652
 
3653
- #: settings.php:2075
3654
  msgid "Use client-side detection to"
3655
  msgstr ""
3656
 
3657
- #: settings.php:2077
3658
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3659
  msgstr ""
3660
 
3661
  #. Translators: only on (the following devices): viewport names (devices)
3662
  #. listed
3663
- #: settings.php:2082
3664
  msgid "only on"
3665
  msgstr ""
3666
 
3667
- #: settings.php:2110
3668
  msgid "Device min width %s px"
3669
  msgstr ""
3670
 
3671
- #: settings.php:2136
3672
  msgid "Use server-side detection to insert block only for"
3673
  msgstr ""
3674
 
3675
- #: settings.php:2155
3676
  msgid "Filter"
3677
  msgstr ""
3678
 
3679
- #: settings.php:2156
3680
  msgid "Word Count"
3681
  msgstr ""
3682
 
3683
- #: settings.php:2158
3684
  msgid "Display"
3685
  msgstr ""
3686
 
3687
- #: settings.php:2160 settings.php:2455
3688
  msgid "General"
3689
  msgstr ""
3690
 
3691
- #: settings.php:2172
3692
  msgid "Old settings for AMP pages detected"
3693
  msgstr ""
3694
 
3695
- #: settings.php:2172
3696
  msgid ""
3697
  "To insert different codes on normal and AMP pages separate them with "
3698
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3699
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3700
  msgstr ""
3701
 
3702
- #: settings.php:2172
3703
  msgid "AMP pages"
3704
  msgstr ""
3705
 
3706
- #: settings.php:2177
3707
  msgid "Enable insertion for Ajax requests"
3708
  msgstr ""
3709
 
3710
- #: settings.php:2177
3711
  msgid "Ajax requests"
3712
  msgstr ""
3713
 
3714
- #: settings.php:2182
3715
  msgid "Enable insertion in RSS feeds"
3716
  msgstr ""
3717
 
3718
- #: settings.php:2182
3719
  msgid "RSS Feed"
3720
  msgstr ""
3721
 
3722
- #: settings.php:2187
3723
  msgid "Enable insertion on page for Error 404: Page not found"
3724
  msgstr ""
3725
 
3726
- #: settings.php:2187
3727
  msgid "Error 404 page"
3728
  msgstr ""
3729
 
3730
- #: settings.php:2199
3731
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3732
  msgstr ""
3733
 
3734
- #: settings.php:2200
3735
  msgid "insertions"
3736
  msgstr ""
3737
 
3738
- #: settings.php:2202
3739
  msgid ""
3740
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3741
  "General)"
3742
  msgstr ""
3743
 
3744
- #: settings.php:2205 settings.php:2643
3745
  msgid "Max blocks per page"
3746
  msgstr ""
3747
 
3748
- #: settings.php:2217
3749
  msgid "Insert for"
3750
  msgstr ""
3751
 
3752
- #: settings.php:2225
3753
  msgid ""
3754
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
3755
  "is currently active). Might speed up insertion on content pages when "
3756
  "[[the_content]] filter hook is called multiple times."
3757
  msgstr ""
3758
 
3759
- #: settings.php:2229
3760
  msgid "Insert only in the loop"
3761
  msgstr ""
3762
 
3763
- #: settings.php:2232
3764
  msgid ""
3765
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
3766
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
@@ -3768,24 +3808,24 @@ msgid ""
3768
  "footer."
3769
  msgstr ""
3770
 
3771
- #: settings.php:2236
3772
  msgid "Embed JS code"
3773
  msgstr ""
3774
 
3775
- #: settings.php:2239
3776
  msgid ""
3777
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3778
  msgstr ""
3779
 
3780
- #: settings.php:2243
3781
  msgid "Disable caching"
3782
  msgstr ""
3783
 
3784
- #: settings.php:2255
3785
  msgid "Filter insertions"
3786
  msgstr ""
3787
 
3788
- #: settings.php:2258
3789
  msgid ""
3790
  "Filter multiple insertions by specifying wanted insertions for this block - "
3791
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3793,827 +3833,840 @@ msgid ""
3793
  "using only one insertion type."
3794
  msgstr ""
3795
 
3796
- #: settings.php:2261
3797
  msgid "using"
3798
  msgstr ""
3799
 
3800
- #: settings.php:2280
3801
  msgid "Checked means specified calls are unwanted"
3802
  msgstr ""
3803
 
3804
- #: settings.php:2280
3805
  msgid "Invert filter"
3806
  msgstr ""
3807
 
3808
- #: settings.php:2287
3809
  msgid "Minimum number of post/static page words, leave empty for no limit"
3810
  msgstr ""
3811
 
3812
- #: settings.php:2289
3813
  msgid "Maximum number of post/static page words, leave empty for no limit"
3814
  msgstr ""
3815
 
3816
- #: settings.php:2302
3817
  msgid "for"
3818
  msgstr ""
3819
 
3820
- #: settings.php:2302
3821
  msgid "days after publishing"
3822
  msgstr ""
3823
 
3824
- #: settings.php:2304
3825
  msgid "Not available"
3826
  msgstr ""
3827
 
3828
  #. Translators: do not translate [[width]] - it is a CSS property
3829
- #: settings.php:2316
3830
  msgid ""
3831
  "Block width: empty means width not defined, number means width in pixels, "
3832
  "any other value means CSS [[width]] property"
3833
  msgstr ""
3834
 
3835
  #. Translators: do not translate [[height]] - it is a CSS property
3836
- #: settings.php:2320
3837
  msgid ""
3838
  "Block height: empty means height not defined, number means height in pixels, "
3839
  "any other value means CSS [[height]] property"
3840
  msgstr ""
3841
 
3842
- #: settings.php:2326
3843
  msgid ""
3844
  "Block background: empty means background not defined, #hex number means HTML "
3845
  "color"
3846
  msgstr ""
3847
 
3848
- #: settings.php:2333 settings.php:2635
3849
  msgid "Ad label"
3850
  msgstr ""
3851
 
3852
- #: settings.php:2356
3853
  msgid "General tag"
3854
  msgstr ""
3855
 
3856
- #: settings.php:2360
3857
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3858
  msgstr ""
3859
 
3860
  #. translators: %s: HTML tags
3861
- #: settings.php:2369
3862
  msgid ""
3863
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3864
  "client-side device detection!"
3865
  msgstr ""
3866
 
3867
  #. translators: %s: HTML tags for text and link
3868
- #: settings.php:2383
3869
  msgid ""
3870
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3871
  "side %s insertion. Use %s Server-side %s insertion."
3872
  msgstr ""
3873
 
3874
- #: settings.php:2399
3875
  msgid "Settings"
3876
  msgstr ""
3877
 
3878
- #: settings.php:2402
3879
  msgid "Settings timestamp"
3880
  msgstr ""
3881
 
3882
- #: settings.php:2418
3883
  msgid "Are you sure you want to reset all settings?"
3884
  msgstr ""
3885
 
3886
- #: settings.php:2418
3887
  msgid "Reset All Settings"
3888
  msgstr ""
3889
 
3890
- #: settings.php:2456
3891
  msgid "Viewports"
3892
  msgstr ""
3893
 
3894
- #: settings.php:2457
3895
  msgid "Hooks"
3896
  msgstr ""
3897
 
3898
- #: settings.php:2458
3899
  msgid "Header"
3900
  msgstr ""
3901
 
3902
- #: settings.php:2459 strings.php:30
3903
  msgid "Footer"
3904
  msgstr ""
3905
 
3906
- #: settings.php:2464
3907
  msgid "Debugging"
3908
  msgstr ""
3909
 
3910
- #: settings.php:2474
3911
  msgid "Plugin priority"
3912
  msgstr ""
3913
 
3914
- #: settings.php:2482
3915
  msgid "Output buffering"
3916
  msgstr ""
3917
 
3918
- #: settings.php:2485
3919
  msgid "Needed for position Above header but may not work with all themes"
3920
  msgstr ""
3921
 
3922
- #: settings.php:2493
3923
  msgid "Syntax highlighting theme"
3924
  msgstr ""
3925
 
3926
- #: settings.php:2500
3927
  msgctxt "no syntax highlighting themes"
3928
  msgid "None"
3929
  msgstr ""
3930
 
3931
- #: settings.php:2501
3932
  msgid "No Syntax Highlighting"
3933
  msgstr ""
3934
 
3935
- #: settings.php:2503
3936
  msgctxt "syntax highlighting themes"
3937
  msgid "Light"
3938
  msgstr ""
3939
 
3940
- #: settings.php:2518
3941
  msgctxt "syntax highlighting themes"
3942
  msgid "Dark"
3943
  msgstr ""
3944
 
3945
- #: settings.php:2544
3946
  msgid "Tab setup delay"
3947
  msgstr ""
3948
 
3949
- #: settings.php:2552
3950
  msgid "Min. user role for ind. exceptions editing"
3951
  msgstr ""
3952
 
3953
- #: settings.php:2562
3954
  msgid "Disable caching for logged in administrators"
3955
  msgstr ""
3956
 
3957
- #: settings.php:2565
3958
  msgid ""
3959
  "Enabled means that logged in administrators will see non-cached (live) pages "
3960
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3961
  msgstr ""
3962
 
3963
- #: settings.php:2573
3964
  msgid "Wait for jQuery"
3965
  msgstr ""
3966
 
3967
- #: settings.php:2576
3968
  msgid ""
3969
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
3970
  "it will run the scripts that may need it"
3971
  msgstr ""
3972
 
3973
- #: settings.php:2584
3974
  msgid "Sticky widget mode"
3975
  msgstr ""
3976
 
3977
- #: settings.php:2587
3978
  msgid ""
3979
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3980
  "mode works with most themes but may reload ads on page load."
3981
  msgstr ""
3982
 
3983
- #: settings.php:2595
3984
  msgid "Sticky widget top margin"
3985
  msgstr ""
3986
 
3987
- #: settings.php:2603
3988
  msgid "Dynamic blocks"
3989
  msgstr ""
3990
 
3991
- #: settings.php:2616
3992
  msgid "Functions for paragraph counting"
3993
  msgstr ""
3994
 
3995
- #: settings.php:2619
3996
  msgid ""
3997
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3998
  "functions if paragraphs are not counted properly on non-english pages."
3999
  msgstr ""
4000
 
4001
- #: settings.php:2627
4002
  msgid "No paragraph counting inside"
4003
  msgstr ""
4004
 
4005
- #: settings.php:2638
4006
  msgid "Label text or HTML code"
4007
  msgstr ""
4008
 
4009
- #: settings.php:2646
4010
  msgid ""
4011
  "Maximum number of inserted blocks per page. You need to enable Max page "
4012
  "insertions (button Misc / tab Insertion) to count block for this limit."
4013
  msgstr ""
4014
 
4015
- #: settings.php:2660
4016
  msgid "Plugin usage tracking"
4017
  msgstr ""
4018
 
4019
  #. translators: %s: Ad Inserter
4020
- #: settings.php:2663
4021
  msgid ""
4022
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4023
  "Only information regarding the WordPress environment and %s usage is "
4024
  "recorded (once per month and on events like plugin activation/deactivation)."
4025
  msgstr ""
4026
 
4027
- #: settings.php:2681
4028
  msgid "CSS class name for the wrapping div"
4029
  msgstr ""
4030
 
4031
- #: settings.php:2681
4032
  msgid "Block class name"
4033
  msgstr ""
4034
 
4035
- #: settings.php:2687
4036
  msgid "Include block number class"
4037
  msgstr ""
4038
 
4039
- #: settings.php:2687
4040
  msgid "Block number class"
4041
  msgstr ""
4042
 
4043
- #: settings.php:2692
4044
  msgid "Include block name class"
4045
  msgstr ""
4046
 
4047
- #: settings.php:2692
4048
  msgid "Block name class"
4049
  msgstr ""
4050
 
4051
- #: settings.php:2697
4052
  msgid ""
4053
  "Instead of alignment classes generate inline alignment styles for blocks"
4054
  msgstr ""
4055
 
4056
- #: settings.php:2697
4057
  msgid "Inline styles"
4058
  msgstr ""
4059
 
4060
- #: settings.php:2703
4061
  msgid "Preview of the block wrapping code"
4062
  msgstr ""
4063
 
4064
- #: settings.php:2704
4065
  msgid "Wrapping div"
4066
  msgstr ""
4067
 
4068
- #: settings.php:2705 settings.php:3203
4069
  msgid "BLOCK CODE"
4070
  msgstr ""
4071
 
4072
- #: settings.php:2713
4073
  msgid "Viewport Settings used for client-side device detection"
4074
  msgstr ""
4075
 
4076
  #. Translators: %d: viewport number
4077
- #: settings.php:2721
4078
  msgid "Viewport %d name"
4079
  msgstr ""
4080
 
4081
- #: settings.php:2724
4082
  msgid "min width"
4083
  msgstr ""
4084
 
4085
- #: settings.php:2735
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4086
  msgid "Custom Hooks"
4087
  msgstr ""
4088
 
4089
- #: settings.php:2747 settings.php:2750
4090
  msgid "Enable hook"
4091
  msgstr ""
4092
 
4093
  #. translators: %d: hook number
4094
- #: settings.php:2750
4095
  msgid "Hook %d name"
4096
  msgstr ""
4097
 
4098
- #: settings.php:2753
4099
  msgid "Hook name for automatic insertion selection"
4100
  msgstr ""
4101
 
4102
- #: settings.php:2756
4103
  msgid "action"
4104
  msgstr ""
4105
 
4106
- #: settings.php:2759
4107
  msgid "Action name as used in the do_action () function"
4108
  msgstr ""
4109
 
4110
- #: settings.php:2762
4111
  msgid "priority"
4112
  msgstr ""
4113
 
4114
- #: settings.php:2765
4115
  msgid "Priority for the hook (default is 10)"
4116
  msgstr ""
4117
 
4118
- #: settings.php:2786
4119
  msgid "Enable insertion of this code into HTML page header"
4120
  msgstr ""
4121
 
4122
- #: settings.php:2791 settings.php:2860 settings.php:3069
4123
  msgid "Process PHP code"
4124
  msgstr ""
4125
 
4126
- #: settings.php:2796
4127
  msgid "HTML Page Header Code"
4128
  msgstr ""
4129
 
4130
- #: settings.php:2804
4131
  msgid "Code in the %s section of the HTML page"
4132
  msgstr ""
4133
 
4134
- #: settings.php:2805
4135
  msgctxt "code in the header"
4136
  msgid "NOT ENABLED"
4137
  msgstr ""
4138
 
4139
- #: settings.php:2822 settings.php:2892
4140
  msgid "Use server-side detection to insert code only for"
4141
  msgstr ""
4142
 
4143
- #: settings.php:2837
4144
  msgid ""
4145
  "Enable insertion of this code into HTML page header on page for Error 404: "
4146
  "Page not found"
4147
  msgstr ""
4148
 
4149
- #: settings.php:2837 settings.php:2907
4150
  msgid "Insert on Error 404 page"
4151
  msgstr ""
4152
 
4153
- #: settings.php:2855
4154
  msgid "Enable insertion of this code into HTML page footer"
4155
  msgstr ""
4156
 
4157
- #: settings.php:2865
4158
  msgid "HTML Page Footer Code"
4159
  msgstr ""
4160
 
4161
  #. translators: %s: HTML tags
4162
- #: settings.php:2873
4163
  msgid "Code before the %s tag of the HTML page"
4164
  msgstr ""
4165
 
4166
- #: settings.php:2874
4167
  msgctxt "code in the footer"
4168
  msgid "NOT ENABLED"
4169
  msgstr ""
4170
 
4171
- #: settings.php:2907
4172
  msgid ""
4173
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4174
  "Page not found"
4175
  msgstr ""
4176
 
4177
- #: settings.php:2923
4178
  msgid "Code for ad blocking detection inserted. Click for details."
4179
  msgstr ""
4180
 
4181
- #: settings.php:2928
4182
  msgid "Enable detection of ad blocking"
4183
  msgstr ""
4184
 
4185
- #: settings.php:2943
4186
  msgid "Enabled for"
4187
  msgstr ""
4188
 
4189
- #: settings.php:2962
4190
  msgid "Global action when ad blocking is detected"
4191
  msgstr ""
4192
 
4193
- #: settings.php:2968
4194
  msgid "No action for"
4195
  msgstr ""
4196
 
4197
- #: settings.php:2969
4198
  msgid "Exceptions for global action when ad blocking is detected."
4199
  msgstr ""
4200
 
4201
- #: settings.php:2979
4202
  msgid "Delay Action"
4203
  msgstr ""
4204
 
4205
- #: settings.php:2982
4206
  msgid ""
4207
  "Number of page views to delay action when ad blocking is detected. Leave "
4208
  "empty for no delay (action fires on first page view). Sets cookie."
4209
  msgstr ""
4210
 
4211
- #: settings.php:2982
4212
  msgctxt "Delay Action for x "
4213
  msgid "page views"
4214
  msgstr ""
4215
 
4216
- #: settings.php:2987
4217
  msgid "No Action Period"
4218
  msgstr ""
4219
 
4220
- #: settings.php:2990
4221
  msgid ""
4222
  "Number of days to supress action when ad blocking is detected. Leave empty "
4223
  "for no no-action period (action fires always after defined page view delay). "
4224
  "Sets cookie."
4225
  msgstr ""
4226
 
4227
- #: settings.php:2990
4228
  msgctxt "no action period"
4229
  msgid "days"
4230
  msgstr ""
4231
 
4232
- #: settings.php:2995
4233
  msgid "Custom Selectors"
4234
  msgstr ""
4235
 
4236
- #: settings.php:2998
4237
  msgid ""
4238
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4239
  "blocking detection. Invisible element or element with zero height means ad "
4240
  "blocking is present."
4241
  msgstr ""
4242
 
4243
- #: settings.php:3005
4244
  msgid ""
4245
  "Use external scripts for ad blocking detection. Disable when you need to "
4246
  "obtain user consent before collecting personal information. In such case use "
4247
  "shortcut to insert external scripts after the consent is given."
4248
  msgstr ""
4249
 
4250
- #: settings.php:3005
4251
  msgid "Use external scripts"
4252
  msgstr ""
4253
 
4254
- #: settings.php:3019
4255
  msgid "Redirection Page"
4256
  msgstr ""
4257
 
4258
- #: settings.php:3031
4259
  msgid "Custom Url"
4260
  msgstr ""
4261
 
4262
- #: settings.php:3036
4263
  msgid ""
4264
  "Static page for redirection when ad blocking is detected. For other pages "
4265
  "select Custom url and set it below."
4266
  msgstr ""
4267
 
4268
- #: settings.php:3045
4269
  msgid "Custom Redirection Url"
4270
  msgstr ""
4271
 
4272
- #: settings.php:3057
4273
  msgid "Message HTML code"
4274
  msgstr ""
4275
 
4276
- #: settings.php:3072
4277
  msgid "Preview message when ad blocking is detected"
4278
  msgstr ""
4279
 
4280
- #: settings.php:3101
4281
  msgid "Prevent visitors from closing the warning message"
4282
  msgstr ""
4283
 
4284
- #: settings.php:3101
4285
  msgid "Undismissible Message"
4286
  msgstr ""
4287
 
4288
- #: settings.php:3107
4289
  msgid "Not undismissible for"
4290
  msgstr ""
4291
 
4292
- #: settings.php:3108
4293
  msgid "Users which can close the warning message."
4294
  msgstr ""
4295
 
4296
- #: settings.php:3145
4297
  msgid ""
4298
  "Force showing admin toolbar for administrators when viewing site. Enable "
4299
  "this option when you are logged in as admin and you don't see admin toolbar."
4300
  msgstr ""
4301
 
4302
- #: settings.php:3153
4303
  msgid "Disable header code (Header tab)"
4304
  msgstr ""
4305
 
4306
- #: settings.php:3157
4307
  msgid "Disable footer code (Footer tab)"
4308
  msgstr ""
4309
 
4310
  #. translators: %s: Ad Inserter
4311
- #: settings.php:3161
4312
  msgid "Disable %s JavaScript code"
4313
  msgstr ""
4314
 
4315
  #. translators: %s: Ad Inserter
4316
- #: settings.php:3165
4317
  msgid "Disable %s CSS code"
4318
  msgstr ""
4319
 
4320
  #. translators: %s: Ad Inserter
4321
- #: settings.php:3169
4322
  msgid "Disable %s HTML code"
4323
  msgstr ""
4324
 
4325
- #: settings.php:3173
4326
  msgid ""
4327
  "Disable PHP code processing (in all blocks including header and footer code)"
4328
  msgstr ""
4329
 
4330
- #: settings.php:3177
4331
  msgid "Disable insertion of all blocks"
4332
  msgstr ""
4333
 
4334
- #: settings.php:3181
4335
  msgid "Disable insertions"
4336
  msgstr ""
4337
 
4338
  #. translators: %s: Ad Inserter
4339
- #: settings.php:3193
4340
  msgid "%s CSS CODE"
4341
  msgstr ""
4342
 
4343
- #: settings.php:3196
4344
  msgid "HEADER CODE"
4345
  msgstr ""
4346
 
4347
  #. translators: %s: PHP tags
4348
- #: settings.php:3202
4349
  msgid "BLOCK PHP CODE"
4350
  msgstr ""
4351
 
4352
  #. translators: %s: Ad Inserter
4353
- #: settings.php:3207
4354
  msgid "%s HTML CODE"
4355
  msgstr ""
4356
 
4357
  #. translators: %s: Ad Inserter
4358
- #: settings.php:3209
4359
  msgid "%s JS CODE"
4360
  msgstr ""
4361
 
4362
- #: settings.php:3212
4363
  msgid "FOOTER CODE"
4364
  msgstr ""
4365
 
4366
- #: settings.php:3221
4367
  msgid "Force showing admin toolbar when viewing site"
4368
  msgstr ""
4369
 
4370
- #: settings.php:3228
4371
  msgid "Enable debugging functions in admin toolbar"
4372
  msgstr ""
4373
 
4374
- #: settings.php:3230
4375
  msgid "Debugging functions in admin toolbar"
4376
  msgstr ""
4377
 
4378
- #: settings.php:3237
4379
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4380
  msgstr ""
4381
 
4382
- #: settings.php:3239
4383
  msgid "Debugging functions on mobile screens"
4384
  msgstr ""
4385
 
4386
- #: settings.php:3259
4387
  msgid ""
4388
  "Disable translation to see original texts for the settings and messages in "
4389
  "English"
4390
  msgstr ""
4391
 
4392
- #: settings.php:3261
4393
  msgid "Disable translation"
4394
  msgstr ""
4395
 
4396
- #: settings.php:3649
4397
  msgid "Available positions for current theme"
4398
  msgstr ""
4399
 
4400
- #: settings.php:3650
4401
  msgid "Error checking pages"
4402
  msgstr ""
4403
 
4404
- #: settings.php:3653
4405
  msgid "Toggle theme checker for available positions for automatic insertion"
4406
  msgstr ""
4407
 
4408
- #: settings.php:3653
4409
  msgctxt "Button"
4410
  msgid "Check"
4411
  msgstr ""
4412
 
4413
- #: settings.php:3660
4414
  msgid "Position"
4415
  msgstr ""
4416
 
4417
- #: settings.php:3665
4418
  msgid "Archive pages"
4419
  msgstr ""
4420
 
4421
- #: settings.php:3724
4422
  msgid ""
4423
  "Position not available because output buffering (tab [*]) is not enabled"
4424
  msgstr ""
4425
 
4426
- #: settings.php:3727 strings.php:252
4427
  msgid "Position not checked yet"
4428
  msgstr ""
4429
 
4430
- #: settings.php:3763
4431
  msgid "Toggle active/all blocks"
4432
  msgstr ""
4433
 
4434
- #: settings.php:3768 strings.php:239
4435
  msgid "Rearrange block order"
4436
  msgstr ""
4437
 
4438
- #: settings.php:3774
4439
  msgid "Save new block order"
4440
  msgstr ""
4441
 
4442
- #: settings.php:3800
4443
  msgid "Toggle active/all ad units"
4444
  msgstr ""
4445
 
4446
- #: settings.php:3804
4447
  msgid "Reload AdSense ad units"
4448
  msgstr ""
4449
 
4450
- #: settings.php:3808
4451
  msgid "Clear authorization to access AdSense account"
4452
  msgstr ""
4453
 
4454
- #: settings.php:3812 settings.php:4705 settings.php:4772 strings.php:247
4455
  msgid "Google AdSense Homepage"
4456
  msgstr ""
4457
 
4458
- #: settings.php:3833
4459
  msgid "Switch to physical ads.txt file"
4460
  msgstr ""
4461
 
4462
- #: settings.php:3834
4463
  msgid "Switch to virtual ads.txt file"
4464
  msgstr ""
4465
 
4466
  #. translators: %s: ads.txt
4467
- #: settings.php:3854
4468
  msgid "Open %s"
4469
  msgstr ""
4470
 
4471
- #: settings.php:3862
4472
  msgid "Reload ads.txt file"
4473
  msgstr ""
4474
 
4475
- #: settings.php:3868 settings.php:4837
4476
  msgid "Save"
4477
  msgstr ""
4478
 
4479
  #. translators: %s: Ad Inserter
4480
- #: settings.php:4048
4481
  msgid "ads.txt file: %s virtual ads.txt file"
4482
  msgstr ""
4483
 
4484
- #: settings.php:4053 settings.php:4073 strings.php:226
4485
  msgid "Warning"
4486
  msgstr ""
4487
 
4488
  #. translators: %s: Ad Inserter
4489
- #: settings.php:4053
4490
  msgid "%s virtual file ads.txt not found"
4491
  msgstr ""
4492
 
4493
- #: settings.php:4061
4494
  msgid "IMPORTANT"
4495
  msgstr ""
4496
 
4497
- #: settings.php:4061
4498
  msgid "ads.txt file must be placed on the root domain"
4499
  msgstr ""
4500
 
4501
- #: settings.php:4066
4502
  msgid "ads.txt file"
4503
  msgstr ""
4504
 
4505
- #: settings.php:4066
4506
  msgid "NOT WRITABLE"
4507
  msgstr ""
4508
 
4509
- #: settings.php:4073
4510
  msgid "file %s not found"
4511
  msgstr ""
4512
 
4513
- #: settings.php:4083
4514
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4515
  msgstr ""
4516
 
4517
  #. translators: %s: Ad Inserter
4518
- #: settings.php:4089
4519
  msgid "%s virtual ads.txt file"
4520
  msgstr ""
4521
 
4522
- #: settings.php:4111
4523
  msgid "Advertising system"
4524
  msgstr ""
4525
 
4526
- #: settings.php:4112
4527
  msgid "Account ID"
4528
  msgstr ""
4529
 
4530
- #: settings.php:4114
4531
  msgid "Certification authority ID"
4532
  msgstr ""
4533
 
4534
- #: settings.php:4129
4535
  msgid "Account ID found in block and present in ads.txt"
4536
  msgstr ""
4537
 
4538
- #: settings.php:4133
4539
  msgid "Account ID found in block but not present in ads.txt"
4540
  msgstr ""
4541
 
4542
- #: settings.php:4482
4543
  msgid "Preview block"
4544
  msgstr ""
4545
 
4546
- #: settings.php:4489
4547
  msgid "Pause block"
4548
  msgstr ""
4549
 
4550
- #: settings.php:4528
4551
  msgid "Automatic insertion"
4552
  msgstr ""
4553
 
4554
  #. translators: %s HTML tags
4555
- #: settings.php:4529 settings.php:5870
4556
  msgid "PHP code processing"
4557
  msgstr ""
4558
 
4559
- #: settings.php:4531
4560
  msgid "Device detection"
4561
  msgstr ""
4562
 
4563
- #: settings.php:4554
4564
  msgid "No active block"
4565
  msgstr ""
4566
 
4567
- #: settings.php:4555
4568
  msgid "No block matches search keywords"
4569
  msgstr ""
4570
 
4571
- #: settings.php:4615
4572
  msgid "Ad unit"
4573
  msgstr ""
4574
 
4575
- #: settings.php:4617
4576
  msgid "Slot ID"
4577
  msgstr ""
4578
 
4579
- #: settings.php:4644
4580
  msgid "Copy AdSense code"
4581
  msgstr ""
4582
 
4583
- #: settings.php:4647
4584
  msgid "Preview AdSense ad"
4585
  msgstr ""
4586
 
4587
- #: settings.php:4650
4588
  msgid "Get AdSense code"
4589
  msgstr ""
4590
 
4591
  #. translators: %s: HTML tags
4592
- #: settings.php:4682
4593
  msgid ""
4594
  "Please %s clear authorization %s with the button %s above and once again "
4595
  "authorize access to your AdSense account."
4596
  msgstr ""
4597
 
4598
- #: settings.php:4701
4599
  msgid "AdSense Integration"
4600
  msgstr ""
4601
 
4602
- #: settings.php:4703
4603
  msgid "AdSense Integration - Step 2"
4604
  msgstr ""
4605
 
4606
  #. translators: %s: HTML tags
4607
- #: settings.php:4709
4608
- msgid ""
4609
- "Authorize %s to access your AdSense account. Click on the %s Get "
4610
- "Authorization Code %s button to open a new window where you can allow "
4611
- "access. When you get the code copy it to the field below and click on the "
4612
- "button %s Authorize. %s"
4613
  msgstr ""
4614
 
4615
  #. translators: %s: HTML tags
4616
- #: settings.php:4716
4617
  msgid ""
4618
  "If you get error, can't access ad units or would like to use own Google API "
4619
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4621,47 +4674,35 @@ msgid ""
4621
  msgstr ""
4622
 
4623
  #. translators: %s: HTML tags
4624
- #: settings.php:4718
4625
- msgid ""
4626
- "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4627
- "Authorization Code %s button to open a new window where you can allow "
4628
- "access. When you get the code copy it to the field below and click on the "
4629
- "button %s Authorize. %s"
4630
  msgstr ""
4631
 
4632
  #. translators: %s: HTML tags
4633
- #: settings.php:4725
4634
  msgid ""
4635
  "If you get error %s invalid client %s click on the button %s Clear and "
4636
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4637
  msgstr ""
4638
 
4639
- #: settings.php:4736
4640
- msgid "Get Authorization Code"
4641
- msgstr ""
4642
-
4643
- #: settings.php:4739
4644
- msgid "Enter Authorization Code"
4645
- msgstr ""
4646
-
4647
- #: settings.php:4749
4648
  msgid "Use own API IDs"
4649
  msgstr ""
4650
 
4651
- #: settings.php:4751
4652
  msgid "Clear and return to Step 1"
4653
  msgstr ""
4654
 
4655
- #: settings.php:4755
4656
  msgid "Authorize"
4657
  msgstr ""
4658
 
4659
- #: settings.php:4771
4660
  msgid "AdSense Integration - Step 1"
4661
  msgstr ""
4662
 
4663
  #. translators: %s: Ad Inserter
4664
- #: settings.php:4775
4665
  msgid ""
4666
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4667
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4670,236 +4711,236 @@ msgid ""
4670
  msgstr ""
4671
 
4672
  #. translators: %s: HTML tags
4673
- #: settings.php:4784
4674
  msgid "Go to %s Google APIs and Services console %s"
4675
  msgstr ""
4676
 
4677
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4678
- #: settings.php:4785
4679
  msgid ""
4680
  "Create %1$s project - if the project and IDs are already created click on "
4681
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
4682
  msgstr ""
4683
 
4684
  #. translators: %s: HTML tags
4685
- #: settings.php:4786
4686
  msgid ""
4687
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4688
  "create a new project"
4689
  msgstr ""
4690
 
4691
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4692
- #: settings.php:4787
4693
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4694
  msgstr ""
4695
 
4696
  #. translators: %s: HTML tags
4697
- #: settings.php:4788
4698
  msgid ""
4699
  "Click on project selection, wait for the project to be created and then and "
4700
  "select %s as the current project"
4701
  msgstr ""
4702
 
4703
  #. translators: %s: HTML tags
4704
- #: settings.php:4789
4705
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4706
  msgstr ""
4707
 
4708
  #. translators: %s: HTML tags
4709
- #: settings.php:4790
4710
  msgid "Search for adsense and enable %s"
4711
  msgstr ""
4712
 
4713
  #. translators: %s: HTML tags
4714
- #: settings.php:4791
4715
  msgid "Click on %s CREATE CREDENTIALS %s"
4716
  msgstr ""
4717
 
4718
  #. translators: %s: HTML tags
4719
- #: settings.php:4792
4720
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
4721
  msgstr ""
4722
 
4723
  #. translators: %s: HTML tags
4724
- #: settings.php:4793
4725
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4726
  msgstr ""
4727
 
4728
  #. translators: %s: HTML tags
4729
- #: settings.php:4794
4730
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4731
  msgstr ""
4732
 
4733
  #. translators: %s: HTML tags
4734
- #: settings.php:4795
4735
  msgid "Click on %s What credentials do I need? %s"
4736
  msgstr ""
4737
 
4738
  #. translators: %s: HTML tags
4739
- #: settings.php:4796
4740
  msgid ""
4741
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
4742
  "Consent Screen %s"
4743
  msgstr ""
4744
 
4745
  #. translators: %s: HTML tags
4746
- #: settings.php:4797
4747
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
4748
  msgstr ""
4749
 
4750
  #. translators: %s: HTML tags
4751
- #: settings.php:4798
4752
  msgid ""
4753
  "For %s App name %s enter %s and for %s User support email %s select your "
4754
  "Google account email address"
4755
  msgstr ""
4756
 
4757
  #. translators: %s: HTML tags
4758
- #: settings.php:4799
4759
  msgid ""
4760
  "For %s Developer contact information %s enter your email address and click "
4761
  "on %s SAVE AND CONTINUE %s"
4762
  msgstr ""
4763
 
4764
  #. translators: %s: HTML tags
4765
- #: settings.php:4800
4766
  msgid ""
4767
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
4768
  "add your Google account email address"
4769
  msgstr ""
4770
 
4771
  #. translators: %s: HTML tags
4772
- #: settings.php:4801
4773
  msgid ""
4774
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
4775
  msgstr ""
4776
 
4777
  #. translators: %s: HTML tags
4778
- #: settings.php:4802
4779
  msgid ""
4780
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4781
  "Ad Inserter client %s and then click on %s REFRESH %s"
4782
  msgstr ""
4783
 
4784
  #. translators: %s: HTML tags
4785
- #: settings.php:4803
4786
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
4787
  msgstr ""
4788
 
4789
  #. translators: %s: HTML tags
4790
- #: settings.php:4804
4791
  msgid ""
4792
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4793
  "secret %s"
4794
  msgstr ""
4795
 
4796
- #: settings.php:4805
4797
  msgid "Copy them to the appropriate fields below"
4798
  msgstr ""
4799
 
4800
- #: settings.php:4811
4801
  msgid "Client ID"
4802
  msgstr ""
4803
 
4804
- #: settings.php:4814
4805
  msgid "Enter Client ID"
4806
  msgstr ""
4807
 
4808
- #: settings.php:4819
4809
  msgid "Client secret"
4810
  msgstr ""
4811
 
4812
- #: settings.php:4822
4813
  msgid "Enter Client secret"
4814
  msgstr ""
4815
 
4816
- #: settings.php:4832
4817
  msgid "Use default API IDs"
4818
  msgstr ""
4819
 
4820
- #: settings.php:4933
4821
  msgid "All posts"
4822
  msgstr ""
4823
 
4824
- #: settings.php:4934
4825
  msgid "All static pages"
4826
  msgstr ""
4827
 
4828
- #: settings.php:5504
4829
  msgid "Maximize Your Ad Revenue With Header Bidding"
4830
  msgstr ""
4831
 
4832
- #: settings.php:5509 settings.php:5751 settings.php:5765 settings.php:5794
4833
- #: settings.php:5822
4834
  msgid "Maximize Your Ad Revenue"
4835
  msgstr ""
4836
 
4837
- #: settings.php:5518 settings.php:5532
4838
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4839
  msgstr ""
4840
 
4841
- #: settings.php:5523 settings.php:5537 settings.php:5756 settings.php:5774
4842
- #: settings.php:5787 settings.php:5788 settings.php:5798 settings.php:5813
4843
  msgid "Looking for AdSense alternative?"
4844
  msgstr ""
4845
 
4846
- #: settings.php:5549
4847
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4848
  msgstr ""
4849
 
4850
- #: settings.php:5554 settings.php:5748 settings.php:5769 settings.php:5797
4851
- #: settings.php:5817
4852
  msgid "Use Infolinks ads with Adsense to earn more"
4853
  msgstr ""
4854
 
4855
- #: settings.php:5566 settings.php:5571 settings.php:5754 settings.php:5779
4856
- #: settings.php:5791 settings.php:5807
4857
- msgid "Supercharge your AdSense revenue by upto 40%"
4858
  msgstr ""
4859
 
4860
- #: settings.php:5594 settings.php:5644
4861
  msgid "Support plugin development"
4862
  msgstr ""
4863
 
4864
- #: settings.php:5599 settings.php:5645
4865
  msgid ""
4866
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4867
  "reviewing the plugin on WordPres"
4868
  msgstr ""
4869
 
4870
- #: settings.php:5599
4871
  msgctxt "Review Ad Inserter"
4872
  msgid "Review"
4873
  msgstr ""
4874
 
4875
- #: settings.php:5604
4876
  msgid ""
4877
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4878
  "rating the plugin on WordPres"
4879
  msgstr ""
4880
 
4881
- #: settings.php:5604
4882
  msgctxt "Rate Ad Inserter"
4883
  msgid "Rate"
4884
  msgstr ""
4885
 
4886
- #: settings.php:5609
4887
  msgid ""
4888
  "Support free Ad Inserter development. If you are making money with Ad "
4889
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4890
  "you!"
4891
  msgstr ""
4892
 
4893
- #: settings.php:5609
4894
  msgid "Donate"
4895
  msgstr ""
4896
 
4897
- #: settings.php:5616 settings.php:5660
4898
  msgid "Average rating of the plugin - Thank you!"
4899
  msgstr ""
4900
 
4901
  #. translators: %s: Ad Inserter, HTML tags
4902
- #: settings.php:5627
4903
  msgid ""
4904
  "You've been using %s for a while now, and I hope you're happy with it. "
4905
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4908,384 +4949,393 @@ msgid ""
4908
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4909
  msgstr ""
4910
 
4911
- #: settings.php:5645
4912
  msgid "Review"
4913
  msgstr ""
4914
 
4915
- #: settings.php:5649
4916
  msgid "Ad Inserter on Twitter"
4917
  msgstr ""
4918
 
4919
- #: settings.php:5650
4920
  msgid "Ad Inserter on Facebook"
4921
  msgstr ""
4922
 
4923
- #: settings.php:5653
4924
  msgid "Follow Ad Inserter"
4925
  msgstr ""
4926
 
4927
  #. translators: %s: HTML tags
4928
- #: settings.php:5680
4929
  msgid ""
4930
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4931
  "and %s Common Settings %s pages"
4932
  msgstr ""
4933
 
4934
  #. translators: %s: HTML tags
4935
- #: settings.php:5692
4936
  msgid ""
4937
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4938
  "Auto ads, %s %s AMP ads %s"
4939
  msgstr ""
4940
 
4941
  #. translators: %s: HTML tags
4942
- #: settings.php:5709
4943
  msgid ""
4944
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4945
  "purchase you refer to us"
4946
  msgstr ""
4947
 
4948
  #. translators: %s: HTML tags
4949
- #: settings.php:5716
4950
  msgid ""
4951
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4952
  "diagnose and fix the problem."
4953
  msgstr ""
4954
 
4955
  #. translators: %s: HTML tags
4956
- #: settings.php:5720
4957
  msgid ""
4958
  "If you need any kind of help or support, please do not hesitate to open a "
4959
  "thread on the %s support forum. %s"
4960
  msgstr ""
4961
 
4962
- #: settings.php:5747 settings.php:5806 settings.php:5818
4963
  msgid "Code preview with visual CSS editor"
4964
  msgstr ""
4965
 
4966
- #: settings.php:5750 settings.php:5778
4967
  msgid "Ad blocking detection and content protection"
4968
  msgstr ""
4969
 
4970
- #: settings.php:5753 settings.php:5808
4971
  msgid "A/B testing - Track ad impressions and clicks"
4972
  msgstr ""
4973
 
4974
- #: settings.php:5770
4975
  msgid "Insert ads on AMP pages"
4976
  msgstr ""
4977
 
4978
- #: settings.php:5830
 
 
 
 
4979
  msgid "Looking for Pro Ad Management plugin?"
4980
  msgstr ""
4981
 
4982
- #: settings.php:5831
4983
  msgid "To Optimally Monetize your WordPress website?"
4984
  msgstr ""
4985
 
4986
  #. Translators: %s: price of Ad Inserter Pro
4987
- #: settings.php:5832
4988
  msgid "Different license types starting from %s"
4989
  msgstr ""
4990
 
4991
  #. translators: %s HTML tags
4992
- #: settings.php:5835
4993
  msgid "%s AdSense Integration %s"
4994
  msgstr ""
4995
 
4996
  #. translators: %s HTML tags
4997
- #: settings.php:5836
4998
  msgid "Syntax highlighting %s editor %s"
4999
  msgstr ""
5000
 
5001
  #. translators: %s HTML tags
5002
- #: settings.php:5837
5003
  msgid "%s Code preview %s with visual CSS editor"
5004
  msgstr ""
5005
 
5006
  #. translators: %s HTML tags
5007
- #: settings.php:5838
5008
  msgid "Simple user interface - all settings on a single page"
5009
  msgstr ""
5010
 
5011
  #. translators: %s HTML tags
5012
- #: settings.php:5839
5013
  msgid ""
5014
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5015
  "image / excerpt"
5016
  msgstr ""
5017
 
5018
  #. translators: %s HTML tags
5019
- #: settings.php:5840
5020
  msgid "%s Automatic insertion %s between posts on blog pages"
5021
  msgstr ""
5022
 
5023
  #. translators: %s HTML tags
5024
- #: settings.php:5841
5025
  msgid "%s Automatic insertion %s before, between and after comments"
5026
  msgstr ""
5027
 
5028
  #. translators: %s HTML tags
5029
- #: settings.php:5842
5030
  msgid "%s Automatic insertion %s after %s or before %s tag"
5031
  msgstr ""
5032
 
5033
  #. translators: %s HTML tags
5034
- #: settings.php:5843
5035
  msgid "Automatic insertion at %s custom hook positions %s"
5036
  msgstr ""
5037
 
5038
  #. translators: %s HTML tags
5039
- #: settings.php:5844
5040
  msgid ""
5041
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5042
  "selectors)"
5043
  msgstr ""
5044
 
5045
  #. translators: %s HTML tags
5046
- #: settings.php:5845
5047
  msgid "%s Insertion exceptions %s for individual posts and pages"
5048
  msgstr ""
5049
 
5050
  #. translators: %s HTML tags
5051
- #: settings.php:5846
5052
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5053
  msgstr ""
5054
 
5055
  #. translators: %s HTML tags
5056
- #: settings.php:5847
5057
  msgid ""
5058
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5059
  "scrolls)"
5060
  msgstr ""
5061
 
5062
  #. translators: %s HTML tags
5063
- #: settings.php:5848
5064
  msgid "%s Background ads %s with one or left and right background images"
5065
  msgstr ""
5066
 
5067
  #. translators: %s HTML tags
5068
- #: settings.php:5849
5069
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5070
  msgstr ""
5071
 
5072
  #. translators: %s HTML tags
5073
- #: settings.php:5850
5074
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5075
  msgstr ""
5076
 
5077
  #. translators: %s HTML tags
5078
- #: settings.php:5851
5079
  msgid ""
5080
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5081
  "visible)"
5082
  msgstr ""
5083
 
5084
  #. translators: %s HTML tags
5085
- #: settings.php:5852
5086
  msgid ""
5087
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5088
  msgstr ""
5089
 
5090
  #. translators: %s HTML tags
5091
- #: settings.php:5853
5092
  msgid "Block %s alignment and style %s customizations"
5093
  msgstr ""
5094
 
5095
  #. translators: %s HTML tags
5096
- #: settings.php:5854
5097
  msgid ""
5098
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5099
  "TOS)"
5100
  msgstr ""
5101
 
5102
  #. translators: %s HTML tags
5103
- #: settings.php:5855
5104
  msgid ""
5105
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5106
  "feeds"
5107
  msgstr ""
5108
 
5109
  #. translators: %s HTML tags
5110
- #: settings.php:5856
5111
  msgid "%s Ad rotation %s (works also with caching)"
5112
  msgstr ""
5113
 
5114
  #. translators: %s HTML tags
5115
- #: settings.php:5857
5116
  msgid "Ad rotation %s optimization based on CTR %s"
5117
  msgstr ""
5118
 
5119
  #. translators: %s HTML tags
5120
- #: settings.php:5858
5121
  msgid "Create, edit and check %s ads.txt %s file"
5122
  msgstr ""
5123
 
5124
  #. translators: %s HTML tags
5125
- #: settings.php:5859
5126
  msgid ""
5127
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5128
  "AdSense)"
5129
  msgstr ""
5130
 
5131
  #. translators: %s HTML tags
5132
- #: settings.php:5860
5133
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5134
  msgstr ""
5135
 
5136
  #. translators: %s HTML tags
5137
- #: settings.php:5861
5138
  msgid "%s Public web reports %s for clients, export to PDF"
5139
  msgstr ""
5140
 
5141
  #. translators: %s HTML tags
5142
- #: settings.php:5862
5143
  msgid "Support for %s A/B testing %s"
5144
  msgstr ""
5145
 
5146
  #. translators: %s HTML tags
5147
- #: settings.php:5863
5148
  msgid "Frequency capping - %s limit impressions or clicks %s"
5149
  msgstr ""
5150
 
5151
  #. translators: %s HTML tags
5152
- #: settings.php:5864
5153
  msgid "Click fraud %s protection %s"
5154
  msgstr ""
5155
 
5156
  #. translators: %s HTML tags
5157
- #: settings.php:5865
 
 
 
 
 
5158
  msgid "Support for %s GDPR consent cookie checks %s"
5159
  msgstr ""
5160
 
5161
  #. translators: %s HTML tags
5162
- #: settings.php:5866
5163
  msgid "Support for %s lazy loading %s"
5164
  msgstr ""
5165
 
5166
  #. translators: %s HTML tags
5167
- #: settings.php:5867
5168
  msgid "Support for ads on %s AMP pages %s"
5169
  msgstr ""
5170
 
5171
  #. translators: %s HTML tags
5172
- #: settings.php:5868
5173
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5174
  msgstr ""
5175
 
5176
  #. translators: %s HTML tags
5177
- #: settings.php:5869
5178
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5179
  msgstr ""
5180
 
5181
  #. translators: %s HTML tags
5182
- #: settings.php:5871
5183
  msgid "%s Banner %s code generator"
5184
  msgstr ""
5185
 
5186
  #. translators: %s HTML tags
5187
- #: settings.php:5872
5188
  msgid "Support for %s header and footer %s code"
5189
  msgstr ""
5190
 
5191
  #. translators: %s HTML tags
5192
- #: settings.php:5873
5193
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5194
  msgstr ""
5195
 
5196
  #. translators: %s HTML tags
5197
- #: settings.php:5874
5198
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5199
  msgstr ""
5200
 
5201
  #. translators: %s HTML tags
5202
- #: settings.php:5875
5203
  msgid "Client-side %s mobile device detection %s (works with caching)"
5204
  msgstr ""
5205
 
5206
  #. translators: %s HTML tags
5207
- #: settings.php:5876
5208
  msgid ""
5209
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5210
  "protection"
5211
  msgstr ""
5212
 
5213
  #. translators: %s HTML tags
5214
- #: settings.php:5877
5215
  msgid "%s Ad blocking statistics %s"
5216
  msgstr ""
5217
 
5218
  #. translators: %s HTML tags
5219
- #: settings.php:5878
5220
  msgid ""
5221
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5222
  "referrers, operating systems, browsers"
5223
  msgstr ""
5224
 
5225
  #. translators: %s HTML tags
5226
- #: settings.php:5879
5227
  msgid ""
5228
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5229
  msgstr ""
5230
 
5231
  #. translators: %s HTML tags
5232
- #: settings.php:5880
5233
  msgid "%s Multisite options %s to limit settings on the sites"
5234
  msgstr ""
5235
 
5236
  #. translators: %s HTML tags
5237
- #: settings.php:5881
5238
  msgid "%s Import/Export %s block or plugin settings"
5239
  msgstr ""
5240
 
5241
  #. translators: %s HTML tags
5242
- #: settings.php:5882
5243
  msgid "%s Insertion scheduling %s with fallback option"
5244
  msgstr ""
5245
 
5246
  #. translators: %s HTML tags
5247
- #: settings.php:5883
5248
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5249
  msgstr ""
5250
 
5251
  #. translators: %s HTML tags
5252
- #: settings.php:5884
5253
  msgid "Simple troubleshooting with many %s debugging functions %s"
5254
  msgstr ""
5255
 
5256
  #. translators: %s HTML tags
5257
- #: settings.php:5885
5258
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5259
  msgstr ""
5260
 
5261
  #. translators: %s HTML tags
5262
- #: settings.php:5886
5263
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5264
  msgstr ""
5265
 
5266
  #. translators: %s HTML tags
5267
- #: settings.php:5887
5268
  msgid ""
5269
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5270
  msgstr ""
5271
 
5272
  #. translators: %s HTML tags
5273
- #: settings.php:5888
5274
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5275
  msgstr ""
5276
 
5277
  #. translators: %s HTML tags
5278
- #: settings.php:5889
5279
  msgid "No ads on the settings page"
5280
  msgstr ""
5281
 
5282
  #. translators: %s HTML tags
5283
- #: settings.php:5890
5284
  msgid "Premium support"
5285
  msgstr ""
5286
 
5287
  #. translators: %s HTML tags
5288
- #: settings.php:5893
5289
  msgid ""
5290
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5291
  "website with many advertising features to automatically insert adverts on "
@@ -5300,82 +5350,82 @@ msgid ""
5300
  msgstr ""
5301
 
5302
  #. translators: %s HTML tags
5303
- #: settings.php:5906
5304
  msgid "Looking for %s Pro Ad Management plugin? %s"
5305
  msgstr ""
5306
 
5307
  #. translators: %s HTML tags
5308
- #: settings.php:5911
5309
  msgid "Ads between posts"
5310
  msgstr ""
5311
 
5312
  #. translators: %s HTML tags
5313
- #: settings.php:5912
5314
  msgid "Ads between comments"
5315
  msgstr ""
5316
 
5317
  #. translators: %s HTML tags
5318
- #: settings.php:5913
5319
  msgid "Support via email"
5320
  msgstr ""
5321
 
5322
  #. translators: %s HTML tags
5323
- #: settings.php:5919
5324
  msgid "%s Sticky positions %s"
5325
  msgstr ""
5326
 
5327
  #. translators: %s HTML tags
5328
- #: settings.php:5920
5329
  msgid "%s Limit insertions %s"
5330
  msgstr ""
5331
 
5332
  #. translators: %s HTML tags
5333
- #: settings.php:5921
5334
  msgid "%s Clearance %s options"
5335
  msgstr ""
5336
 
5337
  #. translators: %s HTML tags
5338
- #: settings.php:5927
5339
  msgid "Ad rotation"
5340
  msgstr ""
5341
 
5342
  #. translators: %s HTML tags
5343
- #: settings.php:5928
5344
  msgid "%s A/B testing %s"
5345
  msgstr ""
5346
 
5347
  #. translators: %s HTML tags
5348
- #: settings.php:5929
5349
  msgid "%s Ad tracking %s"
5350
  msgstr ""
5351
 
5352
  #. translators: %s HTML tags
5353
- #: settings.php:5935
5354
  msgid "Support for %s AMP pages %s"
5355
  msgstr ""
5356
 
5357
  #. translators: %s HTML tags
5358
- #: settings.php:5936
5359
  msgid "%s Ad blocking detection %s"
5360
  msgstr ""
5361
 
5362
  #. translators: %s HTML tags
5363
- #: settings.php:5937
5364
  msgid "%s Mobile device detection %s"
5365
  msgstr ""
5366
 
5367
  #. translators: %s HTML tags
5368
- #: settings.php:5944
5369
  msgid "64 code blocks"
5370
  msgstr ""
5371
 
5372
  #. translators: %s HTML tags
5373
- #: settings.php:5945
5374
  msgid "%s GEO targeting %s"
5375
  msgstr ""
5376
 
5377
  #. translators: %s HTML tags
5378
- #: settings.php:5946
5379
  msgid "%s Scheduling %s"
5380
  msgstr ""
5381
 
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.17\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2022-08-28 10:14:49+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: ad-inserter.php:353
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:369
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:376
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:462
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:469
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:478
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:485
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:496
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
+ #: ad-inserter.php:503
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
+ #: ad-inserter.php:1173
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
+ #: ad-inserter.php:1178
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:1183 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:1188 strings.php:105
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
+ #: ad-inserter.php:1193 strings.php:106
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
+ #: ad-inserter.php:1198 strings.php:171
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
+ #: ad-inserter.php:1245
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
+ #: ad-inserter.php:1249
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
+ #: ad-inserter.php:1552
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
+ #: ad-inserter.php:1926 ad-inserter.php:3390
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
+ #: ad-inserter.php:2679
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
+ #: ad-inserter.php:2679
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
+ #: ad-inserter.php:2680
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
+ #: ad-inserter.php:2681
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
+ #: ad-inserter.php:2682
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
+ #: ad-inserter.php:2683
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
+ #: ad-inserter.php:2684
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
+ #: ad-inserter.php:3078
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:3081
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
+ #: ad-inserter.php:3085
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
+ #: ad-inserter.php:3090
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
+ #: ad-inserter.php:3093
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
+ #: ad-inserter.php:3106
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:3108
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:3114
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:3131 ad-inserter.php:3173
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:3138
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:3145
194
  msgid "Error: plugin settings corrupt"
195
  msgstr ""
196
 
197
+ #: ad-inserter.php:3155
198
  msgctxt "Menu item"
199
  msgid "Settings"
200
  msgstr ""
201
 
202
+ #: ad-inserter.php:3187
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:3187
209
  msgid "Safe mode"
210
  msgstr ""
211
 
212
  #. translators: %s: Ad Inserter
213
+ #: ad-inserter.php:3282
214
  msgctxt "Meta box name"
215
  msgid "%s Individual Exceptions"
216
  msgstr ""
217
 
218
+ #: ad-inserter.php:3311 ad-inserter.php:11948 class.php:2605
219
  #: includes/preview.php:2419 includes/preview.php:2464
220
+ #: includes/preview.php:2501 settings.php:4646 strings.php:3
221
  msgid "Block"
222
  msgstr ""
223
 
224
+ #: ad-inserter.php:3312 includes/functions.php:4820 settings.php:4647
225
+ #: settings.php:4737
226
  msgid "Name"
227
  msgstr ""
228
 
229
+ #: ad-inserter.php:3315 settings.php:1335
230
  msgid "Default insertion"
231
  msgstr ""
232
 
233
  #. translators: For this post or page
234
+ #: ad-inserter.php:3318
235
  msgctxt "Page"
236
  msgid "For this"
237
  msgstr ""
238
 
239
+ #: ad-inserter.php:3319
240
  msgctxt "Post"
241
  msgid "For this"
242
  msgstr ""
243
 
244
+ #: ad-inserter.php:3331
245
  msgctxt "Enabled/disabled on all"
246
  msgid "pages"
247
  msgstr ""
248
 
249
+ #: ad-inserter.php:3334
250
  msgctxt "Enabled/disabled on all"
251
  msgid "posts"
252
  msgstr ""
253
 
254
+ #: ad-inserter.php:3351 ad-inserter.php:3363 strings.php:177
255
  msgid "Enabled"
256
  msgstr ""
257
 
258
  #. translators: Menu items
259
+ #: ad-inserter.php:3351 ad-inserter.php:3363
260
+ #: includes/functions-check-now.php:2402 includes/functions.php:3116
261
+ #: includes/functions.php:3479 strings.php:16
262
  msgid "Disabled"
263
  msgstr ""
264
 
265
+ #: ad-inserter.php:3353
266
  msgid "No individual exceptions"
267
  msgstr ""
268
 
269
  #. translators: Not enabled for pages or posts
270
+ #: ad-inserter.php:3355
271
  msgid "Not enabled for"
272
  msgstr ""
273
 
274
  #. translators: No individual exceptions enabled for pages or posts
275
+ #: ad-inserter.php:3383
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:3388
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:3391 settings.php:1313
287
  msgid "Tag / Archive pages"
288
  msgstr ""
289
 
290
+ #: ad-inserter.php:3393
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:3394
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:3396
303
  msgid "For more information check page %s"
304
  msgstr ""
305
 
306
  #. translators: Ad Inserter Exceptions documentation page
307
+ #: ad-inserter.php:3398
308
  msgid "Individual Exceptions"
309
  msgstr ""
310
 
311
+ #: ad-inserter.php:3444
312
  msgid "STATIC PAGE"
313
  msgstr ""
314
 
315
+ #: ad-inserter.php:3447
316
  msgid "POST"
317
  msgstr ""
318
 
319
+ #: ad-inserter.php:3450
320
  msgid "HOMEPAGE"
321
  msgstr ""
322
 
323
+ #: ad-inserter.php:3453
324
  msgid "CATEGORY PAGE"
325
  msgstr ""
326
 
327
+ #: ad-inserter.php:3456
328
  msgid "SEARCH PAGE"
329
  msgstr ""
330
 
331
+ #: ad-inserter.php:3459
332
  msgid "ARCHIVE PAGE"
333
  msgstr ""
334
 
335
+ #: ad-inserter.php:3462
336
  msgid "ERROR 404 PAGE"
337
  msgstr ""
338
 
339
+ #: ad-inserter.php:3465
340
  msgid "AJAX CALL"
341
  msgstr ""
342
 
343
+ #: ad-inserter.php:3468
344
  msgid "UNKNOWN PAGE TYPE"
345
  msgstr ""
346
 
347
+ #: ad-inserter.php:3485
348
  msgid "Click to delete ad blocking detection cokies"
349
  msgstr ""
350
 
351
+ #: ad-inserter.php:3486
352
  msgid "AD BLOCKING STATUS UNKNOWN"
353
  msgstr ""
354
 
355
  #. translators: %s: AdSense Auto Ads
356
+ #: ad-inserter.php:3515
357
  msgid ""
358
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
359
  "positions"
360
  msgstr ""
361
 
362
+ #: ad-inserter.php:3661
363
  msgid "Code for insertion"
364
  msgstr ""
365
 
366
+ #: ad-inserter.php:3661
367
  msgid "character"
368
  msgid_plural "characters"
369
  msgstr[0] ""
370
  msgstr[1] ""
371
 
372
+ #: ad-inserter.php:3676
373
  msgid "Header code"
374
  msgstr ""
375
 
376
+ #: ad-inserter.php:3676
377
  msgctxt "Header code"
378
  msgid "DISABLED"
379
  msgstr ""
380
 
381
+ #: ad-inserter.php:3676 ad-inserter.php:3941
382
  msgid "character inserted"
383
  msgid_plural "characters inserted"
384
  msgstr[0] ""
385
  msgstr[1] ""
386
 
387
+ #: ad-inserter.php:3694
388
  msgid "Click to delete the cookie for the consents"
389
  msgstr ""
390
 
391
+ #: ad-inserter.php:3698 ad-inserter.php:3950
392
  msgid "UNFILTERED HTML DISABLED"
393
  msgstr ""
394
 
395
+ #: ad-inserter.php:3941
396
  msgid "Footer code"
397
  msgstr ""
398
 
399
+ #: ad-inserter.php:3941
400
  msgctxt "Footer code"
401
  msgid "DISABLED"
402
  msgstr ""
403
 
404
+ #: ad-inserter.php:3955
405
  msgid "JAVASCRIPT NOT WORKING"
406
  msgstr ""
407
 
408
+ #: ad-inserter.php:3955
409
  msgid "NO JAVASCRIPT ERRORS"
410
  msgstr ""
411
 
412
+ #: ad-inserter.php:3955
413
  msgid "JAVASCRIPT ERRORS"
414
  msgstr ""
415
 
416
  #. translators: block name (block with default settings)
417
+ #: ad-inserter.php:6897
418
  msgctxt "Block name"
419
  msgid "Default"
420
  msgstr ""
421
 
422
  #. translators: %s: Ad Inserter
423
+ #: ad-inserter.php:7346 ad-inserter.php:7663
424
  msgid "Invalid data received - %s settings not saved."
425
  msgstr ""
426
 
427
  #. translators: %s: Ad Inserter
428
+ #: ad-inserter.php:7637
429
  msgid "Error importing %s settings."
430
  msgstr ""
431
 
432
+ #: ad-inserter.php:7638
433
  msgid "Error importing settings for block"
434
  msgid_plural "Error importing settings for blocks:"
435
  msgstr[0] ""
436
  msgstr[1] ""
437
 
438
+ #: ad-inserter.php:7661
439
  msgid "Settings saved."
440
  msgstr ""
441
 
442
+ #: ad-inserter.php:7683
443
  msgid "Settings cleared."
444
  msgstr ""
445
 
446
  #. Translators: Post/Static page must have between X and Y words
447
+ #: ad-inserter.php:8067 ad-inserter.php:8069 ad-inserter.php:8092
448
+ #: settings.php:2365
449
  msgid "word"
450
  msgid_plural "words"
451
  msgstr[0] ""
452
  msgstr[1] ""
453
 
454
+ #: ad-inserter.php:8106 ad-inserter.php:8233
455
  msgid "HTML TAGS REMOVED"
456
  msgstr ""
457
 
458
+ #: ad-inserter.php:8312
459
  msgid "BEFORE COMMENTS"
460
  msgstr ""
461
 
462
+ #: ad-inserter.php:8437
463
  msgid "AFTER COMMENTS"
464
  msgstr ""
465
 
466
+ #: ad-inserter.php:8514
467
  msgid "BETWEEN COMMENTS"
468
  msgstr ""
469
 
470
+ #: ad-inserter.php:11175 ad-inserter.php:11276
471
  msgctxt "category name"
472
  msgid "Uncategorized"
473
  msgstr ""
474
 
475
+ #: ad-inserter.php:11542
476
  msgid "requires WordPress 4.6 or newer"
477
  msgstr ""
478
 
479
+ #: ad-inserter.php:11542
480
  msgid "Please update!"
481
  msgstr ""
482
 
483
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
484
  #. name with HTML tags will be added)
485
+ #: ad-inserter.php:11816
486
  msgid "Thank you for installing"
487
  msgstr ""
488
 
489
  #. translators: Opt-in message: %s: HTML tags
490
+ #: ad-inserter.php:11818
491
  msgid ""
492
  "We would like to %s track its usage %s on your site. This is completely "
493
  "optional and can be disabled at any time."
494
  msgstr ""
495
 
496
+ #: ad-inserter.php:11820
497
  msgid ""
498
  "We don't record any sensitive data, only information regarding the WordPress "
499
  "environment and plugin usage, which will help us to make improvements to the "
501
  msgstr ""
502
 
503
  #. translators: Deactivation message: %s: HTML tags
504
+ #: ad-inserter.php:11860
505
  msgid ""
506
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
507
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
509
  msgstr ""
510
 
511
  #. translators: %s: Ad Inserter
512
+ #: ad-inserter.php:11906
513
  msgid "%s block."
514
  msgstr ""
515
 
516
  #. translators: widget title
517
+ #: ad-inserter.php:11922 ad-inserter.php:11957
518
  msgid "Processing log"
519
  msgstr ""
520
 
521
  #. translators: widget title
522
+ #: ad-inserter.php:11924 ad-inserter.php:11958
523
  msgid "Dummy widget"
524
  msgstr ""
525
 
526
  #. translators: widget title
527
+ #: ad-inserter.php:11926 ad-inserter.php:11956
528
  msgid "Debugging tools"
529
  msgstr ""
530
 
531
  #. translators: block status (widget title)
532
+ #: ad-inserter.php:11933
533
  msgctxt "block"
534
  msgid "PAUSED"
535
  msgstr ""
536
 
537
+ #: ad-inserter.php:11934
538
  msgid "WIDGET DISABLED"
539
  msgstr ""
540
 
541
+ #: ad-inserter.php:11935
542
  msgid "Unknown block"
543
  msgstr ""
544
 
545
+ #: ad-inserter.php:11943 includes/functions-check-now.php:3262
546
+ #: includes/functions.php:5299 settings.php:1365
547
  msgid "Title"
548
  msgstr ""
549
 
550
+ #: ad-inserter.php:11965
551
  msgctxt "Widget"
552
  msgid "Sticky"
553
  msgstr ""
554
 
555
+ #: ad-inserter.php:12016
556
  msgid ""
557
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
558
  "Inserter you need to first deactivate Ad Inserter Pro."
559
  msgstr ""
560
 
561
+ #: ad-inserter.php:12017
562
  msgid ""
563
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
564
  "will clear all settings that are available only in the Pro version "
566
  msgstr ""
567
 
568
  #. translators: %s: Ad Inserter
569
+ #: class.php:647 class.php:656 class.php:659
570
  msgid "PHP error in %s block"
571
  msgstr ""
572
 
573
+ #: class.php:2555
574
  msgid "Counters"
575
  msgstr ""
576
 
577
+ #: class.php:2559
578
  msgid "Content"
579
  msgstr ""
580
 
581
+ #: class.php:2564
582
  msgid "Excerpt"
583
  msgstr ""
584
 
585
+ #: class.php:2569 strings.php:17
586
  msgid "Before post"
587
  msgstr ""
588
 
589
+ #: class.php:2574 strings.php:18
590
  msgid "After post"
591
  msgstr ""
592
 
593
+ #: class.php:2579 strings.php:25
594
  msgid "Between posts"
595
  msgstr ""
596
 
597
+ #: class.php:2584 settings.php:2099 settings.php:4664
598
  msgid "Widget"
599
  msgstr ""
600
 
601
+ #: class.php:2589 settings.php:4662
602
  msgid "PHP function call"
603
  msgstr ""
604
 
605
  #. Translators: %s: custom hook name
606
+ #: class.php:2599
607
  msgid "Custom hook %s call"
608
  msgstr ""
609
 
610
+ #: class.php:2637
611
  msgid "AJAX REQUEST"
612
  msgstr ""
613
 
614
+ #: class.php:2640
615
  msgid "Ajax request for block in iframe"
616
  msgstr ""
617
 
618
+ #: class.php:2677
619
  msgid "Ajax request url, click to open it in a new tab"
620
  msgstr ""
621
 
622
+ #: class.php:2680
623
  msgid "IN THE LOOP"
624
  msgstr ""
625
 
626
+ #: class.php:2680
627
  msgid "YES"
628
  msgstr ""
629
 
630
+ #: class.php:2680
631
  msgid "NO"
632
  msgstr ""
633
 
634
+ #: class.php:2715
635
  msgid "BLOCK"
636
  msgstr ""
637
 
638
+ #: class.php:2715
639
  msgctxt "block or widget"
640
  msgid "INSERTED BUT NOT VISIBLE"
641
  msgstr ""
642
 
643
+ #: class.php:2930
644
  msgctxt "viewports"
645
  msgid "ALL"
646
  msgstr ""
647
 
648
+ #: class.php:2967 class.php:3008 class.php:4785 strings.php:283
649
  msgctxt "Block"
650
  msgid "HIDDEN"
651
  msgstr ""
652
 
653
+ #: class.php:3015 class.php:4788 strings.php:282
654
  msgctxt "Block"
655
  msgid "VISIBLE"
656
  msgstr ""
657
 
658
+ #: class.php:3083
659
  msgctxt "fallback"
660
  msgid "INACTIVE"
661
  msgstr ""
662
 
663
+ #: class.php:3084
664
  msgctxt "fallback"
665
  msgid "ACTIVE"
666
  msgstr ""
667
 
668
+ #: class.php:3106
669
  msgctxt "Block"
670
  msgid "FALLBACK CODE"
671
  msgstr ""
672
 
673
+ #: class.php:3851 class.php:3950
674
  msgid "ACTIVE GROUPS"
675
  msgstr ""
676
 
677
+ #: class.php:4457
678
  msgid "start='%s' end='%s' days='%s' type='%s'"
679
  msgstr ""
680
 
681
+ #: class.php:4465
682
  msgid "parameters='%s' type='%s'"
683
  msgstr ""
684
 
685
+ #: class.php:4467
686
  msgid "cookies='%s' type='%s'"
687
  msgstr ""
688
 
689
  #. translators: %s: list parameters and type
690
+ #: class.php:4469
691
  msgid "referers='%s' type='%s'"
692
  msgstr ""
693
 
694
  #. translators: %s: list parameters and type
695
+ #: class.php:4471
696
  msgid "clients='%s' type='%s'"
697
  msgstr ""
698
 
699
  #. translators: %s: list parameters and type
700
+ #: class.php:4667
701
  msgid "countries='%s' type='%s'"
702
  msgstr ""
703
 
704
  #. translators: %s: list parameters and type
705
+ #: class.php:4669
706
  msgid "ip addresses='%s' type='%s'"
707
  msgstr ""
708
 
709
+ #: class.php:4785 class.php:4788
710
  msgid "viewport='%s' type='%s'"
711
  msgstr ""
712
 
713
+ #: class.php:4923 strings.php:284
714
  msgctxt "alternative block"
715
  msgid "FALLBACK"
716
  msgstr ""
717
 
718
+ #: class.php:5577 strings.php:276
719
  msgid "BEFORE"
720
  msgstr ""
721
 
722
+ #: class.php:5585 strings.php:278
723
  msgid "PREPEND CONTENT"
724
  msgstr ""
725
 
726
+ #: class.php:5589 strings.php:279
727
  msgid "APPEND CONTENT"
728
  msgstr ""
729
 
730
+ #: class.php:5593 strings.php:280
731
  msgid "REPLACE CONTENT"
732
  msgstr ""
733
 
734
+ #: class.php:5597 strings.php:281
735
  msgid "REPLACE ELEMENT"
736
  msgstr ""
737
 
738
+ #: class.php:5608 strings.php:277
739
  msgid "AFTER"
740
  msgstr ""
741
 
742
+ #: class.php:5677 includes/preview.php:2464 includes/preview.php:2501
743
  msgid "Code"
744
  msgstr ""
745
 
746
+ #: class.php:5680
747
  msgid "for block"
748
  msgstr ""
749
 
750
+ #: class.php:9964
751
  msgid ""
752
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
753
  "extension for PHP."
763
  msgstr ""
764
 
765
  #: includes/editor.php:6 includes/placeholders.php:352
766
+ #: includes/preview.php:2408 settings.php:3978 strings.php:230 strings.php:288
767
  msgid "Cancel"
768
  msgstr ""
769
 
778
  "blockers."
779
  msgstr ""
780
 
781
+ #: includes/editor.php:261 settings.php:331
782
  msgid "Error loading page"
783
  msgstr ""
784
 
787
  msgid "PAGE BLOCKED"
788
  msgstr ""
789
 
790
+ #: includes/functions-check-now.php:288 includes/functions.php:326
791
  msgid "%d of %d names shown"
792
  msgstr ""
793
 
794
  #. translators: %s: name filter
795
+ #: includes/functions-check-now.php:307 includes/functions.php:345
796
  msgid "No name matches filter"
797
  msgstr ""
798
 
799
  #. translators: %s: Ad Inserter Pro
800
+ #: includes/functions-check-now.php:396 includes/functions.php:437
801
  msgid ""
802
  "Import %s settings when saving - if checked, the encoded settings below will "
803
  "be imported for all blocks and settings"
811
  msgid "Saved settings for"
812
  msgstr ""
813
 
814
+ #: includes/functions-check-now.php:420 includes/functions.php:472
815
  msgid "License Key"
816
  msgstr ""
817
 
818
+ #: includes/functions-check-now.php:423 includes/functions.php:475
819
  msgid "License Key for"
820
  msgstr ""
821
 
822
+ #: includes/functions-check-now.php:425 includes/functions.php:477
823
  msgid "Open license page"
824
  msgstr ""
825
 
826
+ #: includes/functions-check-now.php:432 includes/functions.php:484
827
  msgid "Hide license key"
828
  msgstr ""
829
 
830
+ #: includes/functions-check-now.php:432 includes/functions.php:484
831
  msgid "Hide key"
832
  msgstr ""
833
 
834
+ #: includes/functions-check-now.php:447 includes/functions.php:501
835
  msgid "Main content element"
836
  msgstr ""
837
 
838
+ #: includes/functions-check-now.php:450 includes/functions.php:504
839
  msgid ""
840
  "Main content element (#id or .class) for 'Stick to the content' position. "
841
  "Leave empty unless position is not properly calculated."
842
  msgstr ""
843
 
844
+ #: includes/functions-check-now.php:451 includes/functions.php:505
845
+ #: settings.php:1522 settings.php:1562 settings.php:3105
846
  msgid "Open HTML element selector"
847
  msgstr ""
848
 
849
+ #: includes/functions-check-now.php:456 includes/functions.php:510
850
  msgid "Lazy loading offset"
851
  msgstr ""
852
 
853
+ #: includes/functions-check-now.php:459 includes/functions.php:513
854
  msgid "Offset of the block from the visible viewport when it should be loaded"
855
  msgstr ""
856
 
857
+ #: includes/functions-check-now.php:470 includes/functions.php:581
858
  msgid "Export / Import Block Settings"
859
  msgstr ""
860
 
861
+ #: includes/functions-check-now.php:485 includes/functions.php:598
862
  msgid "Track impressions and clicks for this block"
863
  msgstr ""
864
 
865
+ #: includes/functions-check-now.php:485 includes/functions.php:598
866
  msgid " - global tracking disabled"
867
  msgstr ""
868
 
869
+ #: includes/functions-check-now.php:492 includes/functions.php:606
870
+ #: includes/functions.php:4992
871
  msgid "Generate PDF report"
872
  msgstr ""
873
 
874
+ #: includes/functions-check-now.php:497 includes/functions.php:620
875
  msgid "Open public report"
876
  msgstr ""
877
 
878
+ #: includes/functions-check-now.php:511 includes/functions.php:634
879
  msgid "Toggle Ad Blocking Statistics"
880
  msgstr ""
881
 
882
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3036
883
+ #: includes/functions.php:642 includes/functions.php:4973
884
  msgid "Toggle Statistics"
885
  msgstr ""
886
 
887
+ #: includes/functions-check-now.php:528 includes/functions.php:651
888
  msgid "Pin list"
889
  msgstr ""
890
 
891
  #. translators: %s: Ad Inserter Pro
892
+ #: includes/functions-check-now.php:543 includes/functions.php:674
893
  msgid "%s license key is not set. Continue?"
894
  msgstr ""
895
 
896
  #. translators: %s: Ad Inserter Pro
897
+ #: includes/functions-check-now.php:547 includes/functions.php:678
898
  msgid "Invalid %s license key. Continue?"
899
  msgstr ""
900
 
901
  #. translators: %s: Ad Inserter Pro
902
+ #: includes/functions-check-now.php:551 includes/functions.php:682
903
  msgid "%s license overused. Continue?"
904
  msgstr ""
905
 
906
+ #: includes/functions-check-now.php:555 includes/functions.php:692
907
+ #: settings.php:1270 settings.php:2488
908
  msgid "Save Settings"
909
  msgstr ""
910
 
911
+ #: includes/functions-check-now.php:615 includes/functions.php:760
912
  #: includes/preview.php:2596
913
  msgid "Horizontal position"
914
  msgstr ""
915
 
916
+ #: includes/functions-check-now.php:638 includes/functions.php:785
917
  msgid ""
918
  "Horizontal margin from the content or screen edge, empty means default value "
919
  "from CSS"
920
  msgstr ""
921
 
922
+ #: includes/functions-check-now.php:646 includes/functions.php:793
923
  #: includes/preview.php:2656
924
  msgid "Vertical position"
925
  msgstr ""
926
 
927
+ #: includes/functions-check-now.php:661 includes/functions.php:808
928
  msgid ""
929
  "Vertical margin from the top or bottom screen edge, empty means default "
930
  "value from CSS"
931
  msgstr ""
932
 
933
+ #: includes/functions-check-now.php:686 includes/functions.php:839
934
  #: includes/preview.php:2711
935
  msgid "Animation"
936
  msgstr ""
945
  "(#id or .class) becomes visible"
946
  msgstr ""
947
 
948
+ #: includes/functions-check-now.php:717 includes/functions.php:874
949
+ #: includes/functions.php:901
950
  msgid "Offset"
951
  msgstr ""
952
 
953
+ #: includes/functions-check-now.php:717 includes/functions.php:874
954
+ #: includes/functions.php:901
955
  msgid "Offset of trigger element"
956
  msgstr ""
957
 
958
+ #: includes/functions-check-now.php:721 includes/functions.php:878
959
+ #: includes/functions.php:905 settings.php:1577
960
  msgid "Delay"
961
  msgstr ""
962
 
963
+ #: includes/functions-check-now.php:721 includes/functions.php:878
964
  msgid "Delay animation after trigger condition"
965
  msgstr ""
966
 
973
  msgstr ""
974
 
975
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2529
976
+ #: includes/functions-check-now.php:2546 includes/functions.php:1058
977
+ #: includes/functions.php:3268 includes/functions.php:3284
978
  msgid "Tracking is globally disabled"
979
  msgstr ""
980
 
981
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2533
982
+ #: includes/functions-check-now.php:2550 includes/functions.php:1062
983
+ #: includes/functions.php:3272 includes/functions.php:3288
984
  msgid "Tracking for this block is disabled"
985
  msgstr ""
986
 
987
+ #: includes/functions-check-now.php:780 includes/functions.php:1069
988
  msgid "Double click to toggle controls in public reports"
989
  msgstr ""
990
 
991
+ #: includes/functions-check-now.php:786 includes/functions.php:1075
992
+ #: includes/functions.php:4542 settings.php:3898 settings.php:3934
993
+ #: settings.php:3995 strings.php:244
994
  msgid "Loading..."
995
  msgstr ""
996
 
997
+ #: includes/functions-check-now.php:807 includes/functions.php:1096
998
  msgid ""
999
  "Clear statistics data for the selected range - clear both dates to delete "
1000
  "all data for this block"
1001
  msgstr ""
1002
 
1003
+ #: includes/functions-check-now.php:811 includes/functions.php:1100
1004
  msgid "Auto refresh data for the selected range every 60 seconds"
1005
  msgstr ""
1006
 
1007
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1008
+ #: includes/functions.php:1103 includes/functions.php:8458
1009
  msgid "Load data for last month"
1010
  msgstr ""
1011
 
1012
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5390
1013
+ #: includes/functions.php:1103 includes/functions.php:8458
1014
  msgid "Last Month"
1015
  msgstr ""
1016
 
1017
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1018
+ #: includes/functions.php:1106 includes/functions.php:8461
1019
  msgid "Load data for this month"
1020
  msgstr ""
1021
 
1022
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5393
1023
+ #: includes/functions.php:1106 includes/functions.php:8461
1024
  msgid "This Month"
1025
  msgstr ""
1026
 
1027
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1028
+ #: includes/functions.php:1109 includes/functions.php:8464
1029
  msgid "Load data for this year"
1030
  msgstr ""
1031
 
1032
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5396
1033
+ #: includes/functions.php:1109 includes/functions.php:8464
1034
  msgid "This Year"
1035
  msgstr ""
1036
 
1037
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5399
1038
+ #: includes/functions.php:1112 includes/functions.php:8467
1039
  msgid "Load data for the last 15 days"
1040
  msgstr ""
1041
 
1042
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5402
1043
+ #: includes/functions.php:1115 includes/functions.php:8470
1044
  msgid "Load data for the last 30 days"
1045
  msgstr ""
1046
 
1047
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5405
1048
+ #: includes/functions.php:1118 includes/functions.php:8473
1049
  msgid "Load data for the last 90 days"
1050
  msgstr ""
1051
 
1052
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5408
1053
+ #: includes/functions.php:1121 includes/functions.php:8476
1054
  msgid "Load data for the last 180 days"
1055
  msgstr ""
1056
 
1057
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5411
1058
+ #: includes/functions.php:1124 includes/functions.php:8479
1059
  msgid "Load data for the last 365 days"
1060
  msgstr ""
1061
 
1062
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5421
1063
+ #: includes/functions.php:1134 includes/functions.php:8489
1064
  msgid "Load data for the selected range"
1065
  msgstr ""
1066
 
1067
+ #: includes/functions-check-now.php:861 includes/functions.php:1151
1068
  msgid ""
1069
  "Import settings when saving - if checked, the encoded settings below will be "
1070
  "imported for this block"
1071
  msgstr ""
1072
 
1073
+ #: includes/functions-check-now.php:861 includes/functions.php:1151
1074
  msgid "Import settings for block"
1075
  msgstr ""
1076
 
1077
+ #: includes/functions-check-now.php:865 includes/functions.php:1155
1078
  msgid ""
1079
  "Import block name when saving - if checked and 'Import settings for block' "
1080
  "is also checked, the name from encoded settings below will be imported for "
1081
  "this block"
1082
  msgstr ""
1083
 
1084
+ #: includes/functions-check-now.php:865 includes/functions.php:1155
1085
  msgid "Import block name"
1086
  msgstr ""
1087
 
1088
+ #: includes/functions-check-now.php:869 includes/functions.php:1159
1089
  msgid "Saved settings for block"
1090
  msgstr ""
1091
 
1092
+ #: includes/functions-check-now.php:882 includes/functions.php:1174
1093
  msgid "Export / Import Ad Inserter Pro Settings"
1094
  msgstr ""
1095
 
1096
+ #: includes/functions-check-now.php:892 includes/functions.php:1193
1097
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1098
  msgstr ""
1099
 
1100
+ #: includes/functions-check-now.php:894 includes/functions.php:1195
1101
  msgid "Clear All Statistics Data"
1102
  msgstr ""
1103
 
1104
+ #: includes/functions-check-now.php:921 includes/functions.php:1229
1105
  msgid "Toggle country/city editor"
1106
  msgstr ""
1107
 
1108
+ #: includes/functions-check-now.php:927 includes/functions.php:1235
1109
  msgid "IP Addresses"
1110
  msgstr ""
1111
 
1112
+ #: includes/functions-check-now.php:930 includes/functions.php:1238
1113
  msgid "Toggle IP address editor"
1114
  msgstr ""
1115
 
1116
+ #: includes/functions-check-now.php:933 includes/functions.php:1241
1117
  msgid ""
1118
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1119
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1127
  msgid "Whitelist IP addresses"
1128
  msgstr ""
1129
 
1130
+ #: includes/functions-check-now.php:952 includes/functions.php:1257
1131
  msgid "Countries"
1132
  msgstr ""
1133
 
1134
+ #: includes/functions-check-now.php:953 includes/functions.php:1258
1135
  msgid "Cities"
1136
  msgstr ""
1137
 
1138
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3001
1139
+ #: includes/functions.php:1262 includes/functions.php:4938
1140
  msgid "Toggle country editor"
1141
  msgstr ""
1142
 
1143
+ #: includes/functions-check-now.php:960 includes/functions.php:1265
1144
  msgid "Toggle city editor"
1145
  msgstr ""
1146
 
1147
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3004
1148
+ #: includes/functions.php:1269 includes/functions.php:4941
1149
  msgid "Comma separated country ISO Alpha-2 codes"
1150
  msgstr ""
1151
 
1158
  msgstr ""
1159
 
1160
  #: includes/functions-check-now.php:1383 includes/functions-check-now.php:1682
1161
+ #: includes/functions.php:1849 includes/functions.php:2184
1162
  msgid "Enter license key"
1163
  msgstr ""
1164
 
1165
  #. translators: %s: Ad Inserter Pro
1166
+ #: includes/functions-check-now.php:1389 includes/functions.php:1855
1167
  msgid ""
1168
  "%s license key is not set. Plugin functionality is limited and updates are "
1169
  "disabled."
1170
  msgstr ""
1171
 
1172
  #. translators: %s: Ad Inserter Pro
1173
+ #: includes/functions-check-now.php:1403 includes/functions.php:1869
1174
  msgid "Warning: %s plugin update server is not accessible"
1175
  msgstr ""
1176
 
1177
  #. translators: updates are not available
1178
+ #: includes/functions-check-now.php:1405 includes/functions.php:1871
1179
  msgid "updates"
1180
  msgstr ""
1181
 
1182
  #. translators: updates are not available
1183
+ #: includes/functions-check-now.php:1407 includes/functions.php:1873
1184
  msgid "are not available"
1185
  msgstr ""
1186
 
1187
  #: includes/functions-check-now.php:1412 includes/functions-check-now.php:1691
1188
+ #: includes/functions.php:1878 includes/functions.php:2193
1189
  msgid "Check license key"
1190
  msgstr ""
1191
 
1192
  #. translators: %s: Ad Inserter Pro
1193
+ #: includes/functions-check-now.php:1418 includes/functions.php:1884
1194
  msgid "Invalid %s license key."
1195
  msgstr ""
1196
 
1197
  #. translators: %s: Ad Inserter Pro
1198
+ #: includes/functions-check-now.php:1427 includes/functions.php:1893
1199
  msgid "%s license expired. Plugin updates are disabled."
1200
  msgstr ""
1201
 
1202
+ #: includes/functions-check-now.php:1428 includes/functions.php:1894
1203
  msgid "Renew license"
1204
  msgstr ""
1205
 
1206
  #. translators: %s: Ad Inserter Pro
1207
+ #: includes/functions-check-now.php:1436 includes/functions.php:1902
1208
  msgid "%s license overused. Plugin updates are disabled."
1209
  msgstr ""
1210
 
1211
+ #: includes/functions-check-now.php:1437 includes/functions.php:1903
1212
  msgid "Manage licenses"
1213
  msgstr ""
1214
 
1215
+ #: includes/functions-check-now.php:1437 includes/functions.php:1903
1216
  msgid "Upgrade license"
1217
  msgstr ""
1218
 
1219
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1220
+ #: includes/functions-check-now.php:1684 includes/functions.php:2186
1221
  msgid ""
1222
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1223
  "limited and updates are disabled."
1224
  msgstr ""
1225
 
1226
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1227
+ #: includes/functions-check-now.php:1693 includes/functions.php:2195
1228
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1229
  msgstr ""
1230
 
1231
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1232
+ #: includes/functions-check-now.php:1709 includes/functions.php:2211
1233
  msgid ""
1234
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1235
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1236
  msgstr ""
1237
 
1238
  #. translators: 1, 3: HTML tags, 2: percentage
1239
+ #: includes/functions-check-now.php:1716 includes/functions.php:2218
1240
  msgid ""
1241
  "During the license period and 30 days after the license has expired we offer "
1242
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1243
  msgstr ""
1244
 
1245
+ #: includes/functions-check-now.php:1726 includes/functions.php:2228
1246
  msgid "No, thank you."
1247
  msgstr ""
1248
 
1249
+ #: includes/functions-check-now.php:1729 includes/functions.php:2231
1250
  msgid "Not now, maybe later."
1251
  msgstr ""
1252
 
1253
+ #: includes/functions-check-now.php:1743 includes/functions.php:2245
1254
  msgid "Renew the licence"
1255
  msgstr ""
1256
 
1257
+ #: includes/functions-check-now.php:1745 includes/functions.php:2247
1258
  msgid "Update license status"
1259
  msgstr ""
1260
 
1261
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1262
+ #: includes/functions-check-now.php:1756 includes/functions.php:2260
1263
  msgid ""
1264
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1265
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1266
  msgstr ""
1267
 
1268
  #. Translators: %s: HTML tag
1269
+ #: includes/functions-check-now.php:1778 includes/functions.php:2320
1270
  msgid "Warning: %s MaxMind IP geolocation database not found."
1271
  msgstr ""
1272
 
1273
+ #: includes/functions-check-now.php:2331 includes/functions.php:3045
1274
  msgid "Geolocation"
1275
  msgstr ""
1276
 
1277
+ #: includes/functions-check-now.php:2335 includes/functions.php:3049
1278
+ #: settings.php:4651
1279
  msgid "Exceptions"
1280
  msgstr ""
1281
 
1282
+ #: includes/functions-check-now.php:2340 includes/functions.php:3054
1283
  msgid "Multisite"
1284
  msgstr ""
1285
 
1286
+ #: includes/functions-check-now.php:2345 includes/functions.php:3059
1287
+ #: settings.php:4657
1288
  msgid "Tracking"
1289
  msgstr ""
1290
 
1291
  #. translators: %d: days, hours, minutes
1292
+ #: includes/functions-check-now.php:2376 includes/functions.php:3093
1293
  msgid "Scheduled in %d days %d hours %d minutes"
1294
  msgstr ""
1295
 
1296
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1297
  #. HTML code for long dash separator
1298
+ #: includes/functions-check-now.php:2385 includes/functions.php:3102
1299
  msgid "Active %s expires in %d days %d hours %d minutes"
1300
  msgstr ""
1301
 
1302
+ #: includes/functions-check-now.php:2389 includes/functions.php:3106
1303
  msgid "Expired"
1304
  msgstr ""
1305
 
1306
+ #: includes/functions-check-now.php:2397 includes/functions.php:3132
1307
+ #: settings.php:1632 settings.php:1647 settings.php:1769 settings.php:2363
1308
  msgid "and"
1309
  msgstr ""
1310
 
1311
+ #: includes/functions-check-now.php:2400 includes/functions.php:3114
1312
  msgid "fallback"
1313
  msgstr ""
1314
 
1315
+ #: includes/functions-check-now.php:2401 includes/functions.php:3115
1316
  msgid "Block to be used when scheduling expires"
1317
  msgstr ""
1318
 
1319
+ #: includes/functions-check-now.php:2426 includes/functions.php:3154
1320
  msgid "Load in iframe"
1321
  msgstr ""
1322
 
1323
+ #: includes/functions-check-now.php:2430 includes/functions.php:3158
1324
+ #: includes/placeholders.php:387 settings.php:1230 settings.php:2390
1325
  msgid "Width"
1326
  msgstr ""
1327
 
1328
+ #: includes/functions-check-now.php:2431 includes/functions.php:3159
1329
  msgid "iframe width, empty means full width (100%)"
1330
  msgstr ""
1331
 
1332
+ #: includes/functions-check-now.php:2437 includes/functions.php:3165
1333
+ #: includes/placeholders.php:382 settings.php:1236 settings.php:2394
1334
  msgid "Height"
1335
  msgstr ""
1336
 
1337
+ #: includes/functions-check-now.php:2438 includes/functions.php:3166
1338
  msgid "iframe height, empty means adjust it to iframe content height"
1339
  msgstr ""
1340
 
1341
+ #: includes/functions-check-now.php:2445 includes/functions.php:3173
1342
  msgid "Ad label in iframe"
1343
  msgstr ""
1344
 
1345
+ #: includes/functions-check-now.php:2450 includes/functions.php:3178
1346
  msgid "Preview iframe code"
1347
  msgstr ""
1348
 
1349
+ #: includes/functions-check-now.php:2450 includes/functions.php:3178
1350
+ #: includes/preview.php:2417 settings.php:1265 settings.php:3178
1351
  msgid "Preview"
1352
  msgstr ""
1353
 
1354
+ #: includes/functions-check-now.php:2464 includes/functions.php:3194
1355
+ #: settings.php:4658
1356
  msgid "Limits"
1357
  msgstr ""
1358
 
1359
  #: includes/functions-check-now.php:2469 includes/functions-check-now.php:4367
1360
+ #: includes/functions-check-now.php:4430 includes/functions.php:3199
1361
+ #: includes/functions.php:6865 includes/functions.php:6886
1362
+ #: includes/functions.php:6950 settings.php:2539
1363
  msgid "Ad Blocking"
1364
  msgstr ""
1365
 
1366
  #. translators: 1, 2 and 3, 4: HTML tags
1367
+ #: includes/functions-check-now.php:2478 includes/functions.php:3210
1368
  msgid ""
1369
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1370
  "for tracking!"
1372
 
1373
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1374
  #. header
1375
+ #: includes/functions-check-now.php:2487 includes/functions.php:3219
1376
  msgid ""
1377
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1378
  "enabled and automatic insertion %6$s!"
1379
  msgstr ""
1380
 
1381
+ #: includes/functions-check-now.php:2554 includes/functions.php:3292
1382
  msgid "Click fraud protection is globally disabled"
1383
  msgstr ""
1384
 
1387
  msgstr ""
1388
 
1389
  #. Translators: Max n impressions
1390
+ #: includes/functions-check-now.php:2572 includes/functions.php:3306
1391
  msgid "General limits"
1392
  msgstr ""
1393
 
1394
  #. Translators: Max n impressions per x days
1395
  #: includes/functions-check-now.php:2578 includes/functions-check-now.php:2590
1396
+ #: includes/functions-check-now.php:2675 includes/functions.php:3312
1397
+ #: includes/functions.php:3324 includes/functions.php:3409
1398
  msgid "Current value"
1399
  msgstr ""
1400
 
1410
  #: includes/functions-check-now.php:2626 includes/functions-check-now.php:2636
1411
  #: includes/functions-check-now.php:2682 includes/functions-check-now.php:2691
1412
  #: includes/functions-check-now.php:2709 includes/functions-check-now.php:2718
1413
+ #: includes/functions.php:3331 includes/functions.php:3341
1414
+ #: includes/functions.php:3360 includes/functions.php:3370
1415
+ #: includes/functions.php:3416 includes/functions.php:3425
1416
+ #: includes/functions.php:3443 includes/functions.php:3452 settings.php:2275
1417
  msgid "Max"
1418
  msgstr ""
1419
 
1420
+ #: includes/functions-check-now.php:2598 includes/functions.php:3332
1421
  msgid ""
1422
  "Maximum number of impressions for this block. Empty means no general "
1423
  "impression limit."
1429
  #. Translators: Max n impressions per x days
1430
  #: includes/functions-check-now.php:2600 includes/functions-check-now.php:2610
1431
  #: includes/functions-check-now.php:2685 includes/functions-check-now.php:2694
1432
+ #: includes/functions.php:3334 includes/functions.php:3344
1433
+ #: includes/functions.php:3419 includes/functions.php:3428
1434
  msgid "impression"
1435
  msgid_plural "impressions"
1436
  msgstr[0] ""
1437
  msgstr[1] ""
1438
 
1439
+ #: includes/functions-check-now.php:2608 includes/functions.php:3342
1440
  msgid ""
1441
  "Maximum number of impressions per time period. Empty means no time limit."
1442
  msgstr ""
1447
  #. Translators: Max n clicks per x days
1448
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1449
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1450
+ #: includes/functions.php:3348 includes/functions.php:3377
1451
+ #: includes/functions.php:3432 includes/functions.php:3459
1452
+ #: includes/functions.php:5208
1453
  msgid "per"
1454
  msgstr ""
1455
 
1456
  #: includes/functions-check-now.php:2615 includes/functions-check-now.php:2644
1457
+ #: includes/functions.php:3349 includes/functions.php:3378
1458
  msgid "Time period in days. Empty means no time limit."
1459
  msgstr ""
1460
 
1466
  #: includes/functions-check-now.php:2617 includes/functions-check-now.php:2646
1467
  #: includes/functions-check-now.php:2701 includes/functions-check-now.php:2728
1468
  #: includes/functions-check-now.php:2834 includes/functions-check-now.php:3162
1469
+ #: includes/functions.php:3351 includes/functions.php:3380
1470
+ #: includes/functions.php:3435 includes/functions.php:3462
1471
+ #: includes/functions.php:3594 includes/functions.php:5211
1472
+ #: includes/functions.php:5221 strings.php:220 strings.php:221 strings.php:222
1473
  #: strings.php:223 strings.php:224 strings.php:225
1474
  msgid "day"
1475
  msgid_plural "days"
1476
  msgstr[0] ""
1477
  msgstr[1] ""
1478
 
1479
+ #: includes/functions-check-now.php:2627 includes/functions.php:3361
1480
  msgid ""
1481
  "Maximum number of clicks on this block. Empty means no general click limit."
1482
  msgstr ""
1487
  #. Translators: Max n clicks per x days
1488
  #: includes/functions-check-now.php:2629 includes/functions-check-now.php:2639
1489
  #: includes/functions-check-now.php:2712 includes/functions-check-now.php:2721
1490
+ #: includes/functions-check-now.php:4578 includes/functions.php:3363
1491
+ #: includes/functions.php:3373 includes/functions.php:3446
1492
+ #: includes/functions.php:3455 includes/functions.php:5208
1493
+ #: includes/functions.php:7189
1494
  msgid "click"
1495
  msgid_plural "clicks"
1496
  msgstr[0] ""
1497
  msgstr[1] ""
1498
 
1499
+ #: includes/functions-check-now.php:2637 includes/functions.php:3371
1500
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1501
  msgstr ""
1502
 
1503
+ #: includes/functions-check-now.php:2662 includes/functions.php:3396
1504
  msgid "Individual visitor limits"
1505
  msgstr ""
1506
 
1507
  #: includes/functions-check-now.php:2666 includes/functions-check-now.php:2668
1508
+ #: includes/functions.php:3400 includes/functions.php:3402
1509
  msgid ""
1510
  "When specified number of clicks on this block for a visitor will be reached "
1511
  "in the specified time period, all blocks that have click fraud protection "
1513
  "general plugin settings."
1514
  msgstr ""
1515
 
1516
+ #: includes/functions-check-now.php:2668 includes/functions.php:3402
1517
  msgid "Trigger click fraud protection"
1518
  msgstr ""
1519
 
1520
+ #: includes/functions-check-now.php:2683 includes/functions.php:3417
1521
  msgid ""
1522
  "Maximum number of impressions of this block for each visitor. Empty means no "
1523
  "impression limit."
1524
  msgstr ""
1525
 
1526
+ #: includes/functions-check-now.php:2692 includes/functions.php:3426
1527
  msgid ""
1528
  "Maximum number of impressions per time period for each visitor. Empty means "
1529
  "no impression limit per time period for visitors."
1530
  msgstr ""
1531
 
1532
  #: includes/functions-check-now.php:2699 includes/functions-check-now.php:2726
1533
+ #: includes/functions.php:3433 includes/functions.php:3460
1534
+ #: includes/functions.php:5211
1535
  msgid ""
1536
  "Time period in days. Use decimal value (with decimal point) for shorter "
1537
  "periods. Empty means no time limit."
1538
  msgstr ""
1539
 
1540
+ #: includes/functions-check-now.php:2710 includes/functions.php:3444
1541
  msgid ""
1542
  "Maximum number of clicks on this block for each visitor. Empty means no "
1543
  "click limit."
1544
  msgstr ""
1545
 
1546
+ #: includes/functions-check-now.php:2719 includes/functions.php:3453
1547
+ #: includes/functions.php:5208
1548
  msgid ""
1549
  "Maximum number of clicks per time period for each visitor. Empty means no "
1550
  "click limit per time period for visitors."
1551
  msgstr ""
1552
 
1553
+ #: includes/functions-check-now.php:2745 includes/functions.php:3503
1554
  msgid "When ad blocking is detected"
1555
  msgstr ""
1556
 
1557
+ #: includes/functions-check-now.php:2754 includes/functions.php:3512
1558
  msgid "replacement"
1559
  msgstr ""
1560
 
1561
+ #: includes/functions-check-now.php:2755 includes/functions.php:3513
1562
  msgid "Block to be shown when ad blocking is detected"
1563
  msgstr ""
1564
 
1565
+ #: includes/functions-check-now.php:2756 includes/functions.php:3514
1566
  msgctxt "replacement"
1567
  msgid "None"
1568
  msgstr ""
1569
 
1570
  #: includes/functions-check-now.php:2773 includes/functions-check-now.php:5613
1571
+ #: includes/functions.php:3531 includes/functions.php:8703
1572
  msgid "Close button"
1573
  msgstr ""
1574
 
1575
+ #: includes/functions-check-now.php:2825 includes/functions.php:3585
1576
  msgid "Auto close after"
1577
  msgstr ""
1578
 
1579
+ #: includes/functions-check-now.php:2826 includes/functions.php:3586
1580
  msgid ""
1581
  "Time in seconds in which the ad will automatically close. Leave empty to "
1582
  "disable auto closing."
1583
  msgstr ""
1584
 
1585
  #. Translators: Don't show for x days
1586
+ #: includes/functions-check-now.php:2831 includes/functions.php:3591
1587
  msgid "Don't show for"
1588
  msgstr ""
1589
 
1590
+ #: includes/functions-check-now.php:2832 includes/functions.php:3592
1591
  msgid ""
1592
  "Time in days in which closed ad will not be shown again. Use decimal value "
1593
  "(with decimal point) for shorter time period or leave empty to show it again "
1595
  msgstr ""
1596
 
1597
  #. Translators: Delay showing for x pageviews
1598
+ #: includes/functions-check-now.php:2852 includes/functions.php:3614
1599
+ #: includes/functions.php:3620
1600
  msgid "Delay showing for"
1601
  msgstr ""
1602
 
1603
+ #: includes/functions-check-now.php:2853 includes/functions.php:3621
1604
  msgid ""
1605
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1606
  "empty to insert the code for the first pageview."
1609
  #. Translators: Delay showing for x pageviews
1610
  #. Translators: Show every x pageviews
1611
  #: includes/functions-check-now.php:2855 includes/functions-check-now.php:2862
1612
+ #: includes/functions.php:3623 includes/functions.php:3630
1613
  msgid "pageview"
1614
  msgid_plural "pageviews"
1615
  msgstr[0] ""
1616
  msgstr[1] ""
1617
 
1618
  #. Translators: Show every x pageviews
1619
+ #: includes/functions-check-now.php:2859 includes/functions.php:3627
1620
  msgid "Show every"
1621
  msgid_plural "Show every"
1622
  msgstr[0] ""
1623
  msgstr[1] ""
1624
 
1625
+ #: includes/functions-check-now.php:2860 includes/functions.php:3628
1626
  msgid ""
1627
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1628
  "for every pageview."
1629
  msgstr ""
1630
 
1631
+ #: includes/functions-check-now.php:2879 includes/functions.php:3665
1632
+ #: settings.php:994
1633
  msgid "Lazy loading"
1634
  msgstr ""
1635
 
1636
  #. Translators: %s MaxMind
1637
+ #: includes/functions-check-now.php:2936 includes/functions.php:4862
1638
  msgid "This product includes GeoLite2 data created by %s"
1639
  msgstr ""
1640
 
1641
+ #: includes/functions-check-now.php:2947 includes/functions.php:4875
1642
  msgid "IP geolocation database"
1643
  msgstr ""
1644
 
1645
+ #: includes/functions-check-now.php:2950 includes/functions.php:4878
1646
  msgid "Select IP geolocation database."
1647
  msgstr ""
1648
 
1649
+ #: includes/functions-check-now.php:2961 includes/functions.php:4889
1650
  msgid "Automatic database updates"
1651
  msgstr ""
1652
 
1653
+ #: includes/functions-check-now.php:2964 includes/functions.php:4892
1654
  msgid ""
1655
  "Automatically download and update free GeoLite2 IP geolocation database by "
1656
  "MaxMind"
1657
  msgstr ""
1658
 
1659
+ #: includes/functions-check-now.php:2972 includes/functions.php:4909
1660
  msgid "Database"
1661
  msgstr ""
1662
 
1663
+ #: includes/functions-check-now.php:2975 includes/functions.php:4912
1664
  msgid ""
1665
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1666
  msgstr ""
1667
 
1668
  #. translators: %d: group number
1669
+ #: includes/functions-check-now.php:2993 includes/functions.php:4930
1670
  msgid "Group %d"
1671
  msgstr ""
1672
 
1673
+ #: includes/functions-check-now.php:2999 includes/functions.php:4936
1674
  msgid "countries"
1675
  msgstr ""
1676
 
1677
+ #: includes/functions-check-now.php:3044 includes/functions.php:4981
1678
  msgid ""
1679
  "Enable impression and click tracking. You also need to enable tracking for "
1680
  "each block you want to track."
1684
  msgid "Generate report"
1685
  msgstr ""
1686
 
1687
+ #: includes/functions-check-now.php:3059 includes/functions.php:5000
1688
  msgid "Impression and Click Tracking"
1689
  msgstr ""
1690
 
1691
+ #: includes/functions-check-now.php:3060 includes/functions.php:5001
1692
+ #: settings.php:3039
1693
  msgctxt "ad blocking detection"
1694
  msgid "NOT ENABLED"
1695
  msgstr ""
1696
 
1697
+ #: includes/functions-check-now.php:3076 includes/functions.php:5017
1698
  msgid "Internal"
1699
  msgstr ""
1700
 
1701
+ #: includes/functions-check-now.php:3080 includes/functions.php:5021
1702
  msgid "Track impressions and clicks with internal tracking and statistics"
1703
  msgstr ""
1704
 
1705
+ #: includes/functions-check-now.php:3085 includes/functions.php:5026
1706
  msgid "External"
1707
  msgstr ""
1708
 
1709
+ #: includes/functions-check-now.php:3089 includes/functions.php:5030
1710
  msgid ""
1711
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1712
  "code installed)"
1713
  msgstr ""
1714
 
1715
+ #: includes/functions-check-now.php:3094 includes/functions.php:5035
1716
  msgid "Track Pageviews"
1717
  msgstr ""
1718
 
1719
+ #: includes/functions-check-now.php:3100 includes/functions.php:5041
1720
  msgid "Track Pageviews by Device (as configured for viewports)"
1721
  msgstr ""
1722
 
1723
+ #: includes/functions-check-now.php:3110 includes/functions.php:5051
1724
  msgid "Track for Logged in Users"
1725
  msgstr ""
1726
 
1727
+ #: includes/functions-check-now.php:3116 includes/functions.php:5057
1728
  msgid "Track impressions and clicks from logged in users"
1729
  msgstr ""
1730
 
1731
+ #: includes/functions-check-now.php:3126 includes/functions.php:5067
1732
  msgid "Click Detection"
1733
  msgstr ""
1734
 
1735
+ #: includes/functions-check-now.php:3132 includes/functions.php:5073
1736
  msgid ""
1737
  "Standard method detects clicks only on banners with links, Advanced method "
1738
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1739
  msgstr ""
1740
 
1741
+ #: includes/functions-check-now.php:3151 includes/functions.php:5194
1742
  msgid "Click fraud protection"
1743
  msgstr ""
1744
 
1745
+ #: includes/functions-check-now.php:3155 includes/functions.php:5198
1746
  msgid "Globally enable click fraud protection for selected blocks."
1747
  msgstr ""
1748
 
1749
+ #: includes/functions-check-now.php:3161 includes/functions.php:5218
1750
  msgid "Protection time"
1751
  msgstr ""
1752
 
1753
+ #: includes/functions-check-now.php:3162 includes/functions.php:5221
1754
  msgid ""
1755
  "Time period in days in which blocks with enabled click fraud protection will "
1756
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1757
  msgstr ""
1758
 
1759
+ #: includes/functions-check-now.php:3181 includes/functions.php:5101
1760
  msgid "Report header image"
1761
  msgstr ""
1762
 
1767
  "reset to default image."
1768
  msgstr ""
1769
 
1770
+ #: includes/functions-check-now.php:3185 includes/functions.php:5105
1771
  #: strings.php:256
1772
  msgid "Select or upload header image"
1773
  msgstr ""
1774
 
1775
+ #: includes/functions-check-now.php:3190 includes/functions.php:5110
1776
  msgid "Report header title"
1777
  msgstr ""
1778
 
1779
+ #: includes/functions-check-now.php:3193 includes/functions.php:5113
1780
  msgid ""
1781
  "Title to be displayed in the header of the statistics report. Text or HTML "
1782
  "code, clear to reset to default text."
1783
  msgstr ""
1784
 
1785
+ #: includes/functions-check-now.php:3198 includes/functions.php:5118
1786
  msgid "Report header description"
1787
  msgstr ""
1788
 
1789
+ #: includes/functions-check-now.php:3201 includes/functions.php:5121
1790
  msgid ""
1791
  "Description to be displayed in the header of the statistics report. Text or "
1792
  "HTML code, clear to reset to default text."
1793
  msgstr ""
1794
 
1795
+ #: includes/functions-check-now.php:3206 includes/functions.php:5126
1796
  msgid "Report footer"
1797
  msgstr ""
1798
 
1799
+ #: includes/functions-check-now.php:3209 includes/functions.php:5129
1800
  msgid ""
1801
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1802
  "to default text."
1803
  msgstr ""
1804
 
1805
+ #: includes/functions-check-now.php:3214 includes/functions.php:5134
1806
  msgid "Public report key"
1807
  msgstr ""
1808
 
1809
+ #: includes/functions-check-now.php:3217 includes/functions.php:5137
1810
  msgid "String to generate unique report IDs. Clear to reset to default value."
1811
  msgstr ""
1812
 
1813
+ #: includes/functions-check-now.php:3249 includes/functions.php:5278
1814
  msgid "Are you sure you want to clear all exceptions for block"
1815
  msgstr ""
1816
 
1817
+ #: includes/functions-check-now.php:3250 includes/functions.php:5279
1818
  msgid "Clear all exceptions for block"
1819
  msgstr ""
1820
 
1821
+ #: includes/functions-check-now.php:3257 includes/functions.php:5292
1822
  msgid "Are you sure you want to clear all exceptions?"
1823
  msgstr ""
1824
 
1825
+ #: includes/functions-check-now.php:3257 includes/functions.php:5292
1826
  msgid "Clear all exceptions for all blocks"
1827
  msgstr ""
1828
 
1829
+ #: includes/functions-check-now.php:3262 includes/functions.php:5299
1830
+ #: settings.php:4229 settings.php:4739
1831
  msgid "Type"
1832
  msgstr ""
1833
 
1834
+ #: includes/functions-check-now.php:3280 includes/functions.php:5318
1835
+ #: includes/functions.php:5319
1836
  msgid "View"
1837
  msgstr ""
1838
 
1839
  #: includes/functions-check-now.php:3281 includes/functions-check-now.php:3288
1840
+ #: includes/functions-check-now.php:3292 includes/functions.php:5320
1841
+ #: includes/functions.php:5334 includes/functions.php:5338
1842
+ #: includes/placeholders.php:351 includes/preview.php:2799 settings.php:1508
1843
+ #: settings.php:3984
1844
  msgid "Edit"
1845
  msgstr ""
1846
 
1847
+ #: includes/functions-check-now.php:3311 includes/functions.php:5366
1848
  msgid "Are you sure you want to clear all exceptions for"
1849
  msgstr ""
1850
 
1851
+ #: includes/functions-check-now.php:3312 includes/functions.php:5367
1852
  msgid "Clear all exceptions for"
1853
  msgstr ""
1854
 
1855
+ #: includes/functions-check-now.php:3325 includes/functions.php:5383
1856
  msgid "No exceptions"
1857
  msgstr ""
1858
 
1859
  #. translators: %s: Ad Inserter Pro
1860
+ #: includes/functions-check-now.php:3336 includes/functions.php:5394
1861
  msgid "%s options for network blogs"
1862
  msgstr ""
1863
 
1864
  #. translators: %s: Ad Inserter Pro
1865
+ #: includes/functions-check-now.php:3341 includes/functions.php:5399
1866
  msgid "Enable %s widgets for sub-sites"
1867
  msgstr ""
1868
 
1869
+ #: includes/functions-check-now.php:3341 includes/functions.php:5399
1870
  msgid "Widgets"
1871
  msgstr ""
1872
 
1873
+ #: includes/functions-check-now.php:3346 includes/functions.php:5404
1874
  msgid "Enable PHP code processing for sub-sites"
1875
  msgstr ""
1876
 
1877
+ #: includes/functions-check-now.php:3346 includes/functions.php:5404
1878
  msgid "PHP Processing"
1879
  msgstr ""
1880
 
1881
  #. translators: %s: Ad Inserter Pro
1882
+ #: includes/functions-check-now.php:3351 includes/functions.php:5409
1883
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1884
  msgstr ""
1885
 
1886
+ #: includes/functions-check-now.php:3351 includes/functions.php:5409
1887
  msgid "Post/Page exceptions"
1888
  msgstr ""
1889
 
1890
  #. translators: %s: Ad Inserter Pro
1891
+ #: includes/functions-check-now.php:3356 includes/functions.php:5414
1892
  msgid "Enable %s settings page for sub-sites"
1893
  msgstr ""
1894
 
1895
+ #: includes/functions-check-now.php:3356 includes/functions.php:5414
1896
  msgid "Settings page"
1897
  msgstr ""
1898
 
1899
  #. translators: %s: Ad Inserter Pro
1900
+ #: includes/functions-check-now.php:3361 includes/functions.php:5419
1901
  msgid "Enable %s settings of main site to be used for all blogs"
1902
  msgstr ""
1903
 
1904
+ #: includes/functions-check-now.php:3361 includes/functions.php:5419
1905
  msgid "Main site settings used for all blogs"
1906
  msgstr ""
1907
 
1908
+ #: includes/functions-check-now.php:3372 includes/functions.php:5437
1909
+ #: settings.php:3038
1910
  msgid "Ad Blocking Detection"
1911
  msgstr ""
1912
 
1913
+ #: includes/functions-check-now.php:3378 includes/functions.php:5443
1914
  msgid ""
1915
  "Standard method is reliable but should be used only if Advanced method does "
1916
  "not work. Advanced method recreates files used for detection with random "
1919
  msgstr ""
1920
 
1921
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4120
1922
+ #: includes/functions-check-now.php:4140 includes/functions.php:6467
1923
+ #: includes/functions.php:6577 includes/functions.php:6602
1924
  msgid "AD BLOCKING"
1925
  msgstr ""
1926
 
1927
  #: includes/functions-check-now.php:4031 includes/functions-check-now.php:4071
1928
  #: includes/functions-check-now.php:4114 includes/functions-check-now.php:4141
1929
+ #: includes/functions.php:6468 includes/functions.php:6511
1930
+ #: includes/functions.php:6571 includes/functions.php:6603
1931
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1932
  msgstr ""
1933
 
1934
  #: includes/functions-check-now.php:4034 includes/functions-check-now.php:4113
1935
+ #: includes/functions-check-now.php:4147 includes/functions.php:6471
1936
+ #: includes/functions.php:6570 includes/functions.php:6609
1937
  msgid "NO AD BLOCKING"
1938
  msgstr ""
1939
 
1940
  #: includes/functions-check-now.php:4070 includes/functions-check-now.php:4077
1941
+ #: includes/functions.php:6510 includes/functions.php:6517
1942
  msgid "AD BLOCKING REPLACEMENT"
1943
  msgstr ""
1944
 
1945
  #: includes/functions-check-now.php:4220 includes/functions-check-now.php:4429
1946
+ #: includes/functions.php:6697 includes/functions.php:6949
1947
  msgid "Pageviews"
1948
  msgstr ""
1949
 
1950
+ #: includes/functions-check-now.php:4366 includes/functions.php:6864
1951
+ #: includes/functions.php:6885
1952
  msgctxt "Version"
1953
  msgid "Unknown"
1954
  msgstr ""
1955
 
1956
+ #: includes/functions-check-now.php:4366 includes/functions.php:6864
1957
+ #: includes/functions.php:6885
1958
  msgctxt "Times"
1959
  msgid "DISPLAYED"
1960
  msgstr ""
1961
 
1962
+ #: includes/functions-check-now.php:4366 includes/functions.php:6864
1963
+ #: includes/functions.php:6885
1964
  msgid "No version"
1965
  msgstr ""
1966
 
1967
+ #: includes/functions-check-now.php:4367 includes/functions.php:6865
1968
+ #: includes/functions.php:6886 includes/functions.php:6890
1969
  msgctxt "Times"
1970
  msgid "BLOCKED"
1971
  msgstr ""
1972
 
1973
+ #: includes/functions-check-now.php:4429 includes/functions.php:6949
1974
  msgid "Impressions"
1975
  msgstr ""
1976
 
1977
  #: includes/functions-check-now.php:4430 includes/functions-check-now.php:4431
1978
+ #: includes/functions-check-now.php:4486 includes/functions.php:6950
1979
+ #: includes/functions.php:6951 includes/functions.php:7166
1980
  msgid "Clicks"
1981
  msgstr ""
1982
 
1983
+ #: includes/functions-check-now.php:4431 includes/functions.php:6951
1984
  msgid "events"
1985
  msgstr ""
1986
 
1987
+ #: includes/functions-check-now.php:4432 includes/functions.php:6952
1988
  msgid "Ad Blocking Share"
1989
  msgstr ""
1990
 
1991
  #. translators: CTR as Click Through Rate
1992
  #: includes/functions-check-now.php:4432 includes/functions-check-now.php:4492
1993
+ #: includes/functions.php:6952 includes/functions.php:7172
1994
  msgid "CTR"
1995
  msgstr ""
1996
 
1997
+ #: includes/functions-check-now.php:4574 includes/functions.php:7185
1998
  msgid "pageviews"
1999
  msgid_plural "pageviews"
2000
  msgstr[0] ""
2001
  msgstr[1] ""
2002
 
2003
+ #: includes/functions-check-now.php:4574 includes/functions.php:7185
2004
  msgid "impressions"
2005
  msgid_plural "impressions"
2006
  msgstr[0] ""
2007
  msgstr[1] ""
2008
 
2009
+ #: includes/functions-check-now.php:4578 includes/functions.php:7189
2010
  msgid "event"
2011
  msgid_plural "events"
2012
  msgstr[0] ""
2013
  msgstr[1] ""
2014
 
2015
+ #: includes/functions-check-now.php:4673 includes/functions.php:7284
2016
  msgctxt "Pageviews / Impressions"
2017
  msgid "Average"
2018
  msgstr ""
2019
 
2020
+ #: includes/functions-check-now.php:4694 includes/functions.php:7305
2021
  msgctxt "Ad Blocking / Clicks"
2022
  msgid "Average"
2023
  msgstr ""
2024
 
2025
+ #: includes/functions-check-now.php:4718 includes/functions.php:7329
2026
  msgctxt "Ad Blocking Share / CTR"
2027
  msgid "Average"
2028
  msgstr ""
2029
 
2030
  #. Translators: %s: Ad Inserter Pro
2031
  #: includes/functions-check-now.php:4900 includes/functions-check-now.php:4992
2032
+ #: includes/functions-check-now.php:5335 includes/functions.php:7639
2033
+ #: includes/functions.php:7734 includes/functions.php:8403 strings.php:205
2034
  msgid "%s Report"
2035
  msgstr ""
2036
 
2037
+ #: includes/functions-check-now.php:5241 includes/functions.php:8308
2038
  msgid "for last month"
2039
  msgstr ""
2040
 
2041
+ #: includes/functions-check-now.php:5246 includes/functions.php:8313
2042
  msgid "for this month"
2043
  msgstr ""
2044
 
2045
+ #: includes/functions-check-now.php:5251 includes/functions.php:8318
2046
  msgid "for this year"
2047
  msgstr ""
2048
 
2049
+ #: includes/functions-check-now.php:5256 includes/functions.php:8323
2050
  msgid "for the last 15 days"
2051
  msgstr ""
2052
 
2053
+ #: includes/functions-check-now.php:5261 includes/functions.php:8328
2054
  msgid "for the last 30 days"
2055
  msgstr ""
2056
 
2057
+ #: includes/functions-check-now.php:5266 includes/functions.php:8333
2058
  msgid "for the last 90 days"
2059
  msgstr ""
2060
 
2061
+ #: includes/functions-check-now.php:5271 includes/functions.php:8338
2062
  msgid "for the last 180 days"
2063
  msgstr ""
2064
 
2065
+ #: includes/functions-check-now.php:5276 includes/functions.php:8343
2066
  msgid "for the last 365 days"
2067
  msgstr ""
2068
 
2069
+ #: includes/functions.php:437
2070
  msgid "Import plugin settings"
2071
  msgstr ""
2072
 
2073
+ #: includes/functions.php:445
2074
  msgid "Load settings from a file"
2075
  msgstr ""
2076
 
2077
+ #: includes/functions.php:448
2078
  msgid "Save settings to a file"
2079
  msgstr ""
2080
 
2081
+ #. translators: Enter reCAPTCHA v3 key
2082
+ #: includes/functions.php:541 includes/functions.php:549
2083
+ msgid "Enter"
2084
+ msgstr ""
2085
+
2086
+ #: includes/functions.php:554
2087
+ msgid "Score threshold"
2088
+ msgstr ""
2089
+
2090
+ #: includes/functions.php:557
2091
+ msgid ""
2092
+ "reCAPTCHA v3 score threshold for valid traffic (0 to 1, 0.0 is very likely a "
2093
+ "bot, 1.0 is very likely a good interaction)"
2094
+ msgstr ""
2095
+
2096
+ #: includes/functions.php:613 includes/functions.php:4988
2097
  msgid "Generate CSV report"
2098
  msgstr ""
2099
 
2100
  #. translators: %s: Ad Inserter Pro
2101
+ #: includes/functions.php:686
2102
  msgid "Invalid %s version. Continue?"
2103
  msgstr ""
2104
 
2105
+ #: includes/functions.php:858
2106
  msgid "Show"
2107
  msgstr ""
2108
 
2109
+ #: includes/functions.php:870 includes/functions.php:897
2110
  msgid ""
2111
  "Trigger value: page scroll in %, page scroll in px or element with selector "
2112
  "(#id or .class) scrolls in or out of screen"
2113
  msgstr ""
2114
 
2115
+ #: includes/functions.php:884
2116
  msgid "Hide"
2117
  msgstr ""
2118
 
2119
+ #: includes/functions.php:915 includes/preview.php:2729
2120
  msgid "Background"
2121
  msgstr ""
2122
 
2123
  #. translators: %s HTML body tag
2124
+ #: includes/functions.php:922
2125
  msgid "Set %s background"
2126
  msgstr ""
2127
 
2128
+ #: includes/functions.php:935 includes/functions.php:994
2129
  msgid "Image to be used for the background"
2130
  msgstr ""
2131
 
2132
+ #: includes/functions.php:940
2133
  msgid "Color"
2134
  msgstr ""
2135
 
2136
+ #: includes/functions.php:941 includes/preview.php:2548
2137
  msgid "Color to be used for the background"
2138
  msgstr ""
2139
 
2140
+ #: includes/functions.php:944 includes/preview.php:2553
2141
  msgid "Image size"
2142
  msgstr ""
2143
 
2144
+ #: includes/functions.php:954
2145
  msgid "Repeat"
2146
  msgstr ""
2147
 
2148
+ #: includes/functions.php:967
2149
  msgid "Select image"
2150
  msgstr ""
2151
 
2152
+ #: includes/functions.php:994
2153
  msgid "Parallax background"
2154
  msgstr ""
2155
 
2156
+ #: includes/functions.php:997
2157
  msgid "Select background image"
2158
  msgstr ""
2159
 
2160
+ #: includes/functions.php:1001
2161
  msgid "Shift"
2162
  msgstr ""
2163
 
2164
+ #: includes/functions.php:1002
2165
  msgid ""
2166
  "Background image shift in pixels when the block scrolls from top to bottom, "
2167
  "empty means no shift"
2168
  msgstr ""
2169
 
2170
+ #: includes/functions.php:1010 settings.php:1000
2171
  msgid "Link"
2172
  msgstr ""
2173
 
2174
+ #: includes/functions.php:1010
2175
  msgid "The destination page when the background is clicked"
2176
  msgstr ""
2177
 
2178
+ #: includes/functions.php:1012 settings.php:1011
2179
  msgid "Open link in a new tab"
2180
  msgstr ""
2181
 
2182
+ #: includes/functions.php:1015
2183
  msgid "New tab"
2184
  msgstr ""
2185
 
2186
+ #: includes/functions.php:1246 includes/functions.php:1274 settings.php:1895
2187
+ #: settings.php:1918 settings.php:1941 settings.php:1964 settings.php:1987
2188
+ #: settings.php:2010 settings.php:2033 settings.php:2055 settings.php:2077
2189
  msgid "Click to select black or white list"
2190
  msgstr ""
2191
 
2192
  #. translators: %s: Ad Inserter Pro
2193
+ #: includes/functions.php:1911
2194
  msgid "Invalid %s version."
2195
  msgstr ""
2196
 
2197
+ #: includes/functions.php:1912
2198
  msgid "Check license"
2199
  msgstr ""
2200
 
2201
+ #: includes/functions.php:1927
2202
  msgid "License"
2203
  msgstr ""
2204
 
2205
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2206
+ #: includes/functions.php:2272
2207
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2208
  msgstr ""
2209
 
2210
  #. Translators: %s: HTML tags
2211
+ #: includes/functions.php:2325
2212
  msgid ""
2213
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2214
  "account %s and create license key."
2215
  msgstr ""
2216
 
2217
+ #: includes/functions.php:3130
2218
  msgid "Start date"
2219
  msgstr ""
2220
 
2221
+ #: includes/functions.php:3130
2222
  msgid "Enter date in format yyyy-mm-dd"
2223
  msgstr ""
2224
 
2225
+ #: includes/functions.php:3130
2226
  msgid "empty means every day as defined by hours and days in week"
2227
  msgstr ""
2228
 
2229
+ #: includes/functions.php:3131
2230
  msgid "Start time"
2231
  msgstr ""
2232
 
2233
+ #: includes/functions.php:3131
2234
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2235
  msgstr ""
2236
 
2237
+ #: includes/functions.php:3133
2238
  msgid "End date"
2239
  msgstr ""
2240
 
2241
+ #: includes/functions.php:3134
2242
  msgid "End time"
2243
  msgstr ""
2244
 
2245
+ #: includes/functions.php:3137
2246
  msgid "Select wanted days in week"
2247
  msgstr ""
2248
 
2249
+ #: includes/functions.php:3477
2250
  msgid "Fallback"
2251
  msgstr ""
2252
 
2253
+ #: includes/functions.php:3478
2254
  msgid "Block to be used when a limit is reached"
2255
  msgstr ""
2256
 
2257
+ #: includes/functions.php:3502
2258
  msgid "Ad blocking detection is disabled"
2259
  msgstr ""
2260
 
2261
+ #: includes/functions.php:3615
2262
  msgid ""
2263
  "Time in ms before the code is inserted (and ad displayed). Leave empty to "
2264
  "insert the code without any additional delay."
2265
  msgstr ""
2266
 
2267
+ #: includes/functions.php:3654
2268
+ msgid "Check reCAPTCHA score"
2269
  msgstr ""
2270
 
2271
+ #: includes/functions.php:3660
2272
+ msgid "Wait for user interaction"
2273
  msgstr ""
2274
 
2275
+ #: includes/functions.php:3668
2276
  msgid "Manual loading"
2277
  msgstr ""
2278
 
2279
+ #: includes/functions.php:3687
2280
+ msgid "Protected"
2281
+ msgstr ""
2282
+
2283
+ #: includes/functions.php:3780
2284
  msgid "IP address blocked"
2285
  msgid_plural "IP addresses blocked"
2286
  msgstr[0] ""
2287
  msgstr[1] ""
2288
 
2289
+ #: includes/functions.php:3783 includes/functions.php:3832
2290
  msgid "No IP address blocked"
2291
  msgstr ""
2292
 
2293
+ #: includes/functions.php:3845
2294
  msgid "Blocked IP address"
2295
  msgstr ""
2296
 
2297
+ #: includes/functions.php:3845
2298
  msgid "Country"
2299
  msgstr ""
2300
 
2301
+ #: includes/functions.php:3845
2302
  msgid "Time to expiration"
2303
  msgstr ""
2304
 
2305
+ #: includes/functions.php:3847 strings.php:227
2306
  msgid "Delete"
2307
  msgstr ""
2308
 
2309
+ #: includes/functions.php:3862
2310
  msgid "Delete IP address"
2311
  msgstr ""
2312
 
2313
+ #: includes/functions.php:4014
2314
+ msgid "Toggle plugin settings"
2315
+ msgstr ""
2316
+
2317
+ #: includes/functions.php:4427
2318
  msgid "CONNECTED"
2319
  msgstr ""
2320
 
2321
+ #: includes/functions.php:4428
2322
  msgid "Disconnect website"
2323
  msgstr ""
2324
 
2325
+ #: includes/functions.php:4444
2326
  msgid "MANAGED BY"
2327
  msgstr ""
2328
 
2329
+ #: includes/functions.php:4465
2330
  msgid "Remote management"
2331
  msgstr ""
2332
 
2333
+ #: includes/functions.php:4469
2334
  msgid "Allow to connect and manage plugin settings"
2335
  msgstr ""
2336
 
2337
+ #: includes/functions.php:4471
2338
  msgid "String to allow plugin management. Clear to reset to default value."
2339
  msgstr ""
2340
 
2341
+ #: includes/functions.php:4479
2342
  msgid "Check remote IP address"
2343
  msgstr ""
2344
 
2345
+ #: includes/functions.php:4483
2346
  msgid "Check IP address of remote management website"
2347
  msgstr ""
2348
 
2349
+ #: includes/functions.php:4485
2350
  msgid "Allowed IP addresses of remote management websites"
2351
  msgstr ""
2352
 
2353
  #. Translators: %s: Ad Inserter Pro
2354
+ #: includes/functions.php:4508
2355
  msgid "Manage %s on other websites"
2356
  msgstr ""
2357
 
2358
+ #: includes/functions.php:4523
2359
  msgid "Add website"
2360
  msgstr ""
2361
 
2362
+ #: includes/functions.php:4527
2363
  msgid "Rearrange website order"
2364
  msgstr ""
2365
 
2366
+ #: includes/functions.php:4531
2367
  msgid "Cancel changes"
2368
  msgstr ""
2369
 
2370
+ #: includes/functions.php:4535
2371
  msgid "Save changes"
2372
  msgstr ""
2373
 
2374
+ #: includes/functions.php:4637 includes/functions.php:4640
2375
+ #: includes/functions.php:4643 includes/functions.php:4648
2376
  msgid "Invalid data received from"
2377
  msgstr ""
2378
 
2379
+ #: includes/functions.php:4647 includes/functions.php:4651
2380
  msgid "Error connecting to"
2381
  msgstr ""
2382
 
2383
+ #: includes/functions.php:4647
2384
  msgid "No data received"
2385
  msgstr ""
2386
 
2387
+ #: includes/functions.php:4692
2388
  msgid "Error saving websites"
2389
  msgstr ""
2390
 
2391
+ #: includes/functions.php:4732
2392
  msgid "Can't connect to itself"
2393
  msgstr ""
2394
 
2395
+ #: includes/functions.php:4783
2396
  msgid "Connect website"
2397
  msgstr ""
2398
 
2399
+ #: includes/functions.php:4787
2400
  msgid "Delete website"
2401
  msgstr ""
2402
 
2403
+ #: includes/functions.php:4803
2404
  msgid "Key"
2405
  msgstr ""
2406
 
2407
+ #: includes/functions.php:4821
2408
  msgid "Address"
2409
  msgstr ""
2410
 
2411
+ #: includes/functions.php:4834
2412
  msgid "No website configured"
2413
  msgstr ""
2414
 
2415
+ #: includes/functions.php:4835
2416
  msgid "No website matches search keywords"
2417
  msgstr ""
2418
 
2419
  #. Translators: %s HTML tags
2420
+ #: includes/functions.php:4864
2421
  msgid "Create and manage %s MaxMind license key %s"
2422
  msgstr ""
2423
 
2424
+ #: includes/functions.php:4900
2425
  msgid "MaxMind license key"
2426
  msgstr ""
2427
 
2428
+ #: includes/functions.php:4903
2429
  msgid "Enter license key obtained from MaxMind"
2430
  msgstr ""
2431
 
2432
+ #: includes/functions.php:5104
2433
  msgid ""
2434
  "Image or logo to be displayed in the header of the statistics report. "
2435
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2436
  "reset to default image."
2437
  msgstr ""
2438
 
2439
+ #: includes/functions.php:5152
2440
  msgid "Event category"
2441
  msgstr ""
2442
 
2443
+ #: includes/functions.php:5155
2444
  msgid ""
2445
  "Category name used for external tracking events. You can use tags to get the "
2446
  "event, the number or the name of the block that caused the event."
2447
  msgstr ""
2448
 
2449
+ #: includes/functions.php:5160
2450
  msgid "Event action"
2451
  msgstr ""
2452
 
2453
+ #: includes/functions.php:5163
2454
  msgid ""
2455
  "Action name used for external tracking events. You can use tags to get the "
2456
  "event, the number or the name of the block that caused the event."
2457
  msgstr ""
2458
 
2459
+ #: includes/functions.php:5168
2460
  msgid "Event label"
2461
  msgstr ""
2462
 
2463
+ #: includes/functions.php:5171
2464
  msgid ""
2465
  "Label name used for external tracking events. You can use tags to get the "
2466
  "event, the number or the name of the block that caused the event."
2467
  msgstr ""
2468
 
2469
+ #: includes/functions.php:5204
2470
  msgid "Global visitor limits"
2471
  msgstr ""
2472
 
2473
+ #: includes/functions.php:5227
2474
  msgid "Block IP address"
2475
  msgstr ""
2476
 
2477
+ #: includes/functions.php:5232
2478
  msgid "Block visitor's IP address when protection is activated"
2479
  msgstr ""
2480
 
2481
+ #: includes/functions.php:5234
2482
  msgid "Click to show blocked IP addresses"
2483
  msgstr ""
2484
 
2485
  #. translators: %s: Ad Inserter Pro
2486
+ #: includes/functions.php:5424
2487
  msgid "Show link to %s settings page for each site on the Sites page"
2488
  msgstr ""
2489
 
2490
  #. translators: %s: Ad Inserter Pro
2491
+ #: includes/functions.php:5424
2492
  msgid "Show link to %s on the Sites page"
2493
  msgstr ""
2494
 
2495
+ #: includes/functions.php:5466 settings.php:3354
2496
  msgid ""
2497
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
2498
  "tags, processing) by url parameters for non-logged in users. Enable this "
2501
  "administrators debugging is always enabled."
2502
  msgstr ""
2503
 
2504
+ #: includes/functions.php:5468 settings.php:3356
2505
  msgid "Remote debugging"
2506
  msgstr ""
2507
 
2508
+ #: includes/functions.php:6716
2509
+ msgid "All statistics data for block %s deleted"
2510
+ msgstr ""
2511
+
2512
+ #: includes/functions.php:6720
2513
+ msgid "Statistics data between %s and %s deleted"
2514
+ msgstr ""
2515
+
2516
+ #: includes/functions.php:7051
2517
  msgid "Date"
2518
  msgstr ""
2519
 
2520
+ #: includes/functions.php:7485 includes/functions.php:7496
2521
  msgid "File %s missing."
2522
  msgstr ""
2523
 
2545
  msgid "Placeholder"
2546
  msgstr ""
2547
 
2548
+ #: includes/placeholders.php:361 settings.php:1067 settings.php:4740
2549
  msgid "Size"
2550
  msgstr ""
2551
 
2552
+ #: includes/placeholders.php:377 includes/preview.php:2545 settings.php:2399
2553
  msgid "Background color"
2554
  msgstr ""
2555
 
2653
  msgid "Ad Blocking Detected Message Preview"
2654
  msgstr ""
2655
 
2656
+ #: includes/preview-adb.php:360 settings.php:3191
2657
  msgid "Message CSS"
2658
  msgstr ""
2659
 
2660
+ #: includes/preview-adb.php:365 settings.php:3199
2661
  msgid "Overlay CSS"
2662
  msgstr ""
2663
 
2693
  msgid "background"
2694
  msgstr ""
2695
 
2696
+ #: includes/preview.php:2529 includes/preview.php:2741 settings.php:1469
2697
  msgid "Alignment"
2698
  msgstr ""
2699
 
2801
  "WordPress version"
2802
  msgstr ""
2803
 
2804
+ #: settings.php:173 settings.php:176
2805
  msgid ""
2806
  "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
2807
  msgstr ""
2808
 
2809
  #. translators: %s: HTML link code
2810
+ #: settings.php:183
2811
  msgid ""
2812
  "Warning: %s Unfiltered HTML %s is disabled for this website - most ad codes "
2813
  "can't be used"
2814
  msgstr ""
2815
 
2816
+ #: settings.php:278
2817
  msgid "Online documentation"
2818
  msgstr ""
2819
 
2820
+ #: settings.php:281
2821
+ msgid "Support Forum"
2822
+ msgstr ""
2823
+
2824
+ #: settings.php:286 settings.php:885 settings.php:2505
2825
  msgid "Show AdSense ad units"
2826
  msgstr ""
2827
 
2828
+ #: settings.php:295
2829
  msgid "Edit ads.txt file"
2830
  msgstr ""
2831
 
2832
+ #: settings.php:298 settings.php:1295
2833
  msgid "Check theme for available positions for automatic insertion"
2834
  msgstr ""
2835
 
2836
+ #: settings.php:302
2837
  msgid "List all blocks"
2838
  msgstr ""
2839
 
2840
+ #: settings.php:309
2841
  msgid "Loaded plugin JavaScript file version"
2842
  msgstr ""
2843
 
2844
  #. translators: %s: HTML tags
2845
+ #: settings.php:311
2846
  msgid ""
2847
  "Wrong or %s missing version parameter %s of the JavaScript file, probably "
2848
  "due to inappropriate caching."
2849
  msgstr ""
2850
 
2851
+ #: settings.php:312
2852
  msgid ""
2853
  "Missing version parameter of the JavaScript file, probably due to "
2854
  "inappropriate caching."
2855
  msgstr ""
2856
 
2857
+ #: settings.php:313
2858
  msgid ""
2859
  "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
2860
  "caching."
2861
  msgstr ""
2862
 
2863
+ #: settings.php:314 settings.php:325
2864
  msgid ""
2865
  "Please delete browser's cache and all other caches used and then reload this "
2866
  "page."
2867
  msgstr ""
2868
 
2869
+ #: settings.php:320
2870
  msgid "Loaded plugin CSS file version"
2871
  msgstr ""
2872
 
2873
  #. translators: %s: HTML tags
2874
+ #: settings.php:322
2875
  msgid ""
2876
  "Wrong or %s missing version parameter %s of the CSS file, probably due to "
2877
  "inappropriate caching."
2878
  msgstr ""
2879
 
2880
+ #: settings.php:323
2881
  msgid ""
2882
  "Missing version parameter of the CSS file, probably due to inappropriate "
2883
  "caching."
2884
  msgstr ""
2885
 
2886
+ #: settings.php:324
2887
  msgid ""
2888
  "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
2889
  msgstr ""
2890
 
2891
+ #: settings.php:331 settings.php:357
2892
  msgid "WARNING"
2893
  msgstr ""
2894
 
2895
  #. translators: %s: HTML tags
2896
+ #: settings.php:333
2897
  msgid "Page may %s not be loaded properly. %s"
2898
  msgstr ""
2899
 
2900
+ #: settings.php:334
2901
  msgid ""
2902
  "Check ad blocking software that may block CSS, JavaScript or image files."
2903
  msgstr ""
2904
 
2905
+ #: settings.php:343
2906
  msgid "SAFE MODE"
2907
  msgstr ""
2908
 
2909
  #. translators: %s: HTML tags
2910
+ #: settings.php:345
2911
  msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
2912
  msgstr ""
2913
 
2914
+ #: settings.php:357
2915
  msgid ""
2916
  "To disable debugging functions and to enable insertions go to tab [*] / tab "
2917
  "Debugging"
2918
  msgstr ""
2919
 
2920
+ #: settings.php:359
2921
  msgid "Debugging functions enabled - some code is not inserted"
2922
  msgstr ""
2923
 
2924
+ #: settings.php:376
2925
  msgid "Group name"
2926
  msgstr ""
2927
 
2928
+ #: settings.php:377
2929
  msgid "Option name"
2930
  msgstr ""
2931
 
2932
+ #: settings.php:383
2933
  msgid "Share"
2934
  msgstr ""
2935
 
2936
+ #: settings.php:386
2937
  msgid ""
2938
  "Option share in percents - 0 means option is disabled, if share for one "
2939
  "option is not defined it will be calculated automatically. Leave all share "
2940
  "fields empty for equal option shares."
2941
  msgstr ""
2942
 
2943
+ #: settings.php:389 settings.php:2232 settings.php:4653
2944
  msgid "Scheduling"
2945
  msgstr ""
2946
 
2947
+ #: settings.php:392
2948
  msgid "Scheduling parameters"
2949
  msgstr ""
2950
 
2951
+ #: settings.php:395
2952
  msgid "Time"
2953
  msgstr ""
2954
 
2955
+ #: settings.php:398
2956
  msgid ""
2957
  "Option time in seconds - 0 means option is disabled and will be skipped. "
2958
  "Leave all time fields empty for no timed rotation."
2959
  msgstr ""
2960
 
2961
+ #: settings.php:569
2962
  msgid "General Settings"
2963
  msgstr ""
2964
 
2965
+ #: settings.php:833 settings.php:2887 settings.php:2956 settings.php:3169
2966
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2967
  msgstr ""
2968
 
2969
+ #: settings.php:840
2970
  msgid "Toggle tools"
2971
  msgstr ""
2972
 
2973
+ #: settings.php:848
2974
  msgid "Process PHP code in block"
2975
  msgstr ""
2976
 
2977
+ #: settings.php:855
2978
  msgid "Disable insertion of this block"
2979
  msgstr ""
2980
 
2981
+ #: settings.php:867
2982
  msgid "Toggle code generator"
2983
  msgstr ""
2984
 
2985
+ #: settings.php:871
2986
  msgid "Toggle rotation editor"
2987
  msgstr ""
2988
 
2989
+ #: settings.php:875
2990
  msgid "Open visual HTML editor"
2991
  msgstr ""
2992
 
2993
+ #: settings.php:894
2994
  msgid "Clear block"
2995
  msgstr ""
2996
 
2997
+ #: settings.php:899 settings.php:4605
2998
  msgid "Copy block"
2999
  msgstr ""
3000
 
3001
+ #: settings.php:903
3002
  msgid "Paste name"
3003
  msgstr ""
3004
 
3005
+ #: settings.php:907
3006
  msgid "Paste code"
3007
  msgstr ""
3008
 
3009
+ #: settings.php:911
3010
  msgid "Paste settings"
3011
  msgstr ""
3012
 
3013
+ #: settings.php:915
3014
  msgid "Paste block (name, code and settings)"
3015
  msgstr ""
3016
 
3017
+ #: settings.php:934
3018
  msgid "Rotation groups"
3019
  msgstr ""
3020
 
3021
+ #: settings.php:938
3022
  msgid "Remove option"
3023
  msgstr ""
3024
 
3025
+ #: settings.php:942
3026
  msgid "Add option"
3027
  msgstr ""
3028
 
3029
+ #: settings.php:957
3030
  msgid "Import code"
3031
  msgstr ""
3032
 
3033
+ #: settings.php:961
3034
  msgid "Generate code"
3035
  msgstr ""
3036
 
3037
+ #: settings.php:966
3038
  msgid "Banner"
3039
  msgstr ""
3040
 
3041
+ #: settings.php:978
3042
  msgid "Image"
3043
  msgstr ""
3044
 
3045
+ #: settings.php:986
3046
  msgid "Alt text"
3047
  msgstr ""
3048
 
3049
+ #: settings.php:1014
3050
  msgid "Select Image"
3051
  msgstr ""
3052
 
3053
+ #: settings.php:1015
3054
  msgid "Select Placeholder"
3055
  msgstr ""
3056
 
3057
+ #: settings.php:1027
3058
  msgid "Comment"
3059
  msgstr ""
3060
 
3061
+ #: settings.php:1036
3062
  msgctxt "AdSense"
3063
  msgid "Publisher ID"
3064
  msgstr ""
3065
 
3066
+ #: settings.php:1045
3067
  msgctxt "AdSense"
3068
  msgid "Ad Slot ID"
3069
  msgstr ""
3070
 
3071
+ #: settings.php:1054
3072
  msgid "Ad Type"
3073
  msgstr ""
3074
 
3075
+ #: settings.php:1079 settings.php:1221
3076
  msgid "AMP Ad"
3077
  msgstr ""
3078
 
3079
+ #: settings.php:1093 settings.php:1243
3080
  msgid "Block on consent"
3081
  msgstr ""
3082
 
3083
+ #: settings.php:1104
3084
  msgid "Show ad units from your AdSense account"
3085
  msgstr ""
3086
 
3087
+ #: settings.php:1104
3088
  msgid "AdSense ad units"
3089
  msgstr ""
3090
 
3091
+ #: settings.php:1121
3092
  msgctxt "AdSense"
3093
  msgid "Layout"
3094
  msgstr ""
3095
 
3096
+ #: settings.php:1130
3097
  msgctxt "AdSense"
3098
  msgid "Layout Key"
3099
  msgstr ""
3100
 
3101
+ #: settings.php:1140
3102
  msgid "Full width"
3103
  msgstr ""
3104
 
3105
+ #: settings.php:1142
3106
  msgctxt "Full width"
3107
  msgid "Enabled"
3108
  msgstr ""
3109
 
3110
+ #: settings.php:1143
3111
  msgctxt "Full width"
3112
  msgid "Disabled"
3113
  msgstr ""
3114
 
3115
+ #: settings.php:1261
3116
  msgid ""
3117
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3118
  "Cookie or Referer (domain)"
3119
  msgstr ""
3120
 
3121
+ #: settings.php:1261
3122
  msgid "Lists"
3123
  msgstr ""
3124
 
3125
+ #: settings.php:1262
3126
  msgid "Widget, Shortcode and PHP function call"
3127
  msgstr ""
3128
 
3129
+ #: settings.php:1262
3130
  msgid "Manual"
3131
  msgstr ""
3132
 
3133
+ #: settings.php:1263
3134
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3135
  msgstr ""
3136
 
3137
+ #: settings.php:1263
3138
  msgid "Devices"
3139
  msgstr ""
3140
 
3141
+ #: settings.php:1264
3142
  msgid ""
3143
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3144
  "feeds), Filter, Scheduling, General tag"
3145
  msgstr ""
3146
 
3147
+ #: settings.php:1264
3148
  msgid "Misc"
3149
  msgstr ""
3150
 
3151
+ #: settings.php:1265
3152
  msgid "Preview code and alignment"
3153
  msgstr ""
3154
 
3155
+ #: settings.php:1268 settings.php:2486
3156
  msgid ""
3157
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3158
  "editor is active before saving settings."
3159
  msgstr ""
3160
 
3161
+ #: settings.php:1281 settings.php:1282
3162
  msgid "Enable insertion on posts"
3163
  msgstr ""
3164
 
3165
+ #: settings.php:1282 settings.php:3777
3166
  msgid "Posts"
3167
  msgstr ""
3168
 
3169
+ #: settings.php:1286 settings.php:1287
3170
  msgid ""
3171
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3172
  "page or theme homepage (available positions may depend on hooks used by the "
3173
  "theme)"
3174
  msgstr ""
3175
 
3176
+ #: settings.php:1287 settings.php:3779
3177
  msgid "Homepage"
3178
  msgstr ""
3179
 
3180
+ #: settings.php:1291 settings.php:1292
3181
  msgid "Enable insertion on category blog pages (including sub-pages)"
3182
  msgstr ""
3183
 
3184
+ #: settings.php:1292 settings.php:3780
3185
  msgid "Category pages"
3186
  msgstr ""
3187
 
3188
+ #: settings.php:1302 settings.php:1303
3189
  msgid "Enable insertion on static pages"
3190
  msgstr ""
3191
 
3192
+ #: settings.php:1303 settings.php:3778
3193
  msgid "Static pages"
3194
  msgstr ""
3195
 
3196
+ #: settings.php:1307 settings.php:1308
3197
  msgid "Enable insertion on search blog pages"
3198
  msgstr ""
3199
 
3200
+ #: settings.php:1308 settings.php:3782
3201
  msgid "Search pages"
3202
  msgstr ""
3203
 
3204
+ #: settings.php:1312 settings.php:1313
3205
  msgid "Enable insertion on tag or archive blog pages"
3206
  msgstr ""
3207
 
3208
+ #: settings.php:1316
3209
  msgid "Toggle settings for default insertion and list of individual exceptions"
3210
  msgstr ""
3211
 
3212
+ #: settings.php:1328
3213
  msgid ""
3214
  "Enable individual post/page exceptions for insertion of this block. They can "
3215
  "be configured on the individual post/page editor page (in the settings below "
3216
  "the editor)."
3217
  msgstr ""
3218
 
3219
+ #: settings.php:1329
3220
  msgid ""
3221
  "Enable individual post/page exceptions for insertion of this block. When "
3222
  "enabled they can be configured on the individual post/page editor page (in "
3223
  "the settings below the editor)."
3224
  msgstr ""
3225
 
3226
+ #: settings.php:1329
3227
  msgid "Use exceptions for individual posts or pages to change insertion"
3228
  msgstr ""
3229
 
3230
  #. Translators: Enabled means...
3231
+ #: settings.php:1337
3232
  msgid ""
3233
  "means the insertion for this block is enabled by default and disabled for "
3234
  "exceptions."
3235
  msgstr ""
3236
 
3237
  #. Translators: Disabled means...
3238
+ #: settings.php:1338
3239
  msgid ""
3240
  "means the insertion for this block is disabled by default and enabled for "
3241
  "exceptions."
3242
  msgstr ""
3243
 
3244
+ #: settings.php:1339
3245
  msgid ""
3246
  "When individual post/page exceptions are enabled they can be configured on "
3247
  "the individual post/page editor page (in the settings below the editor)."
3248
  msgstr ""
3249
 
3250
+ #: settings.php:1347
3251
  msgid ""
3252
  "No exception for post or static page defined. Block will not be inserted."
3253
  msgstr ""
3254
 
3255
+ #: settings.php:1352
3256
  msgid ""
3257
  "Settings for individual exceptions have been updated. Please check all "
3258
  "blocks that have exceptions and and then save settings."
3259
  msgstr ""
3260
 
3261
+ #: settings.php:1365
3262
  msgctxt "post"
3263
  msgid "Type"
3264
  msgstr ""
3265
 
3266
  #. translators: %d: block number
3267
+ #: settings.php:1370
3268
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3269
  msgstr ""
3270
 
3271
+ #: settings.php:1371
3272
  msgid "Clear listed exceptions for block"
3273
  msgstr ""
3274
 
3275
+ #: settings.php:1400 settings.php:1548 settings.php:2229
3276
  msgid "Insertion"
3277
  msgstr ""
3278
 
3279
+ #: settings.php:1438
3280
  msgid ""
3281
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3282
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3286
  "negative number means counting from the opposite direction"
3287
  msgstr ""
3288
 
3289
+ #: settings.php:1439
3290
  msgid ""
3291
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3292
  "means every N images, empty means all images, 0 means random image, value "
3296
  "direction"
3297
  msgstr ""
3298
 
3299
+ #: settings.php:1452
3300
  msgid ""
3301
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3302
  "numbers, %N means every N excerpts, empty means all excerpts"
3303
  msgstr ""
3304
 
3305
+ #: settings.php:1453
3306
  msgid ""
3307
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3308
  "numbers, %N means every N posts, empty means all posts"
3309
  msgstr ""
3310
 
3311
+ #: settings.php:1454
3312
  msgid ""
3313
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3314
  "numbers, %N means every N comments, empty means all comments"
3315
  msgstr ""
3316
 
3317
+ #: settings.php:1461
3318
  msgid "Toggle paragraph counting settings"
3319
  msgstr ""
3320
 
3321
+ #: settings.php:1462
3322
  msgid "Toggle paragraph clearance settings"
3323
  msgstr ""
3324
 
3325
+ #: settings.php:1465
3326
  msgid "Toggle insertion filter settings"
3327
  msgstr ""
3328
 
3329
+ #: settings.php:1483
3330
  msgid "Toggle insertion and alignment icons"
3331
  msgstr ""
3332
 
3333
+ #: settings.php:1497
3334
  msgid "Custom CSS code for the wrapping div"
3335
  msgstr ""
3336
 
3337
+ #: settings.php:1500 settings.php:1501 settings.php:1502 settings.php:1503
3338
+ #: settings.php:1504 settings.php:1505
3339
  msgid "CSS code for the wrapping div, click to edit"
3340
  msgstr ""
3341
 
3342
+ #: settings.php:1518
3343
  msgid "HTML element"
3344
  msgstr ""
3345
 
3346
+ #: settings.php:1531
3347
  msgid "HTML element selector or comma separated list of selectors"
3348
  msgstr ""
3349
 
3350
+ #: settings.php:1537 settings.php:3065
3351
  msgid "Action"
3352
  msgstr ""
3353
 
3354
+ #: settings.php:1549
3355
  msgid ""
3356
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3357
  "Server-side insertion inserts block when the page is generated but needs "
3358
  "Output buffering enabled."
3359
  msgstr ""
3360
 
3361
+ #: settings.php:1559
3362
  msgid "Wait for"
3363
  msgstr ""
3364
 
3365
+ #: settings.php:1571
3366
  msgid "Wait for HTML element to be loaded"
3367
  msgstr ""
3368
 
3369
+ #: settings.php:1578
3370
  msgid "Time in ms to delay insertion"
3371
  msgstr ""
3372
 
3373
+ #: settings.php:1583
3374
  msgid "Code position"
3375
  msgstr ""
3376
 
3377
+ #: settings.php:1584
3378
  msgid ""
3379
  "Page position where the code for client-side insertion will be inserted."
3380
  msgstr ""
3381
 
3382
+ #: settings.php:1602
3383
  msgid "Count"
3384
  msgstr ""
3385
 
3386
+ #: settings.php:1608
3387
  msgid "paragraphs with tags"
3388
  msgstr ""
3389
 
3390
+ #: settings.php:1614
3391
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3392
  msgstr ""
3393
 
3394
+ #: settings.php:1623
3395
  msgid "that have between"
3396
  msgstr ""
3397
 
3398
+ #: settings.php:1629
3399
  msgid "Minimum number of paragraph words, leave empty for no limit"
3400
  msgstr ""
3401
 
3402
+ #: settings.php:1638
3403
  msgid "Maximum number of paragraph words, leave empty for no limit"
3404
  msgstr ""
3405
 
3406
+ #: settings.php:1641
3407
  msgid "words"
3408
  msgstr ""
3409
 
3410
+ #: settings.php:1656 settings.php:1703 settings.php:1817 settings.php:1843
3411
  msgid "Comma separated texts"
3412
  msgstr ""
3413
 
3414
  #. translators: inside [HTML tags] elements that contain
3415
+ #: settings.php:1675
3416
  msgid "inside"
3417
  msgstr ""
3418
 
3419
+ #: settings.php:1681
3420
  msgid "Comma separated HTML tag names of container elements"
3421
  msgstr ""
3422
 
3423
  #. translators: inside [HTML tags] elements that contain
3424
+ #: settings.php:1690
3425
  msgid "elements that"
3426
  msgstr ""
3427
 
3428
+ #: settings.php:1713
3429
  msgid ""
3430
  "Count also paragraphs inside these elements - defined on general plugin "
3431
  "settings page - tab [*] / tab General"
3432
  msgstr ""
3433
 
3434
+ #: settings.php:1720 settings.php:1721
3435
  msgid ""
3436
  "If checked it will search for the text only in tag attributes like [[id]], "
3437
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
3438
  "will be searched."
3439
  msgstr ""
3440
 
3441
+ #: settings.php:1721
3442
  msgid "Check only tag attributes"
3443
  msgstr ""
3444
 
3445
  #. Translators: %s: HTML tags
3446
+ #: settings.php:1726
3447
  msgid "Count inside %s elements"
3448
  msgstr ""
3449
 
3450
  #. Translators: Do not insert for first X and last Y paragraphs
3451
+ #: settings.php:1734
3452
  msgid "Do not insert for first"
3453
  msgid_plural "Do not insert for first"
3454
  msgstr[0] ""
3455
  msgstr[1] ""
3456
 
3457
+ #: settings.php:1740
3458
  msgid ""
3459
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3460
  "first paragraphs"
3461
  msgstr ""
3462
 
3463
  #. Translators: Do not insert for first X and last Y paragraphs
3464
+ #: settings.php:1743
3465
  msgid "and last"
3466
  msgid_plural "and last"
3467
  msgstr[0] ""
3468
  msgstr[1] ""
3469
 
3470
+ #: settings.php:1749
3471
  msgid ""
3472
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3473
  "last paragraphs"
3475
 
3476
  #. Translators: Do not insert for first X and last Y paragraphs
3477
  #. Translators: Post/Static page must have between X and Y paragraphs
3478
+ #: settings.php:1752 settings.php:1778
3479
  msgid "paragraph"
3480
  msgid_plural "paragraphs"
3481
  msgstr[0] ""
3482
  msgstr[1] ""
3483
 
3484
+ #: settings.php:1760 settings.php:2361
3485
  msgid "Post/Static page must have between"
3486
  msgstr ""
3487
 
3488
+ #: settings.php:1766
3489
  msgid "Minimum number of paragraphs, leave empty for no limit"
3490
  msgstr ""
3491
 
3492
+ #: settings.php:1775
3493
  msgid "Maximum number of paragraphs, leave empty for no limit"
3494
  msgstr ""
3495
 
3496
+ #: settings.php:1786
3497
  msgid "Minimum number of words in paragraphs above"
3498
  msgstr ""
3499
 
3500
+ #: settings.php:1792
3501
  msgid ""
3502
  "Used only with automatic insertion After paragraph and empty paragraph "
3503
  "numbers"
3504
  msgstr ""
3505
 
3506
+ #: settings.php:1802 settings.php:1828
3507
  msgid "In"
3508
  msgstr ""
3509
 
3510
+ #: settings.php:1808
3511
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3512
  msgstr ""
3513
 
3514
+ #: settings.php:1811
3515
  msgid "paragraphs above avoid"
3516
  msgstr ""
3517
 
3518
+ #: settings.php:1834
3519
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3520
  msgstr ""
3521
 
3522
+ #: settings.php:1837
3523
  msgid "paragraphs below avoid"
3524
  msgstr ""
3525
 
3526
+ #: settings.php:1853
3527
  msgid "If text is found"
3528
  msgstr ""
3529
 
3530
+ #: settings.php:1860
3531
  msgid "check up to"
3532
  msgstr ""
3533
 
3534
+ #: settings.php:1868
3535
  msgctxt "check up to"
3536
  msgid "paragraphs"
3537
  msgstr ""
3538
 
3539
+ #: settings.php:1884
3540
  msgid "Categories"
3541
  msgstr ""
3542
 
3543
+ #: settings.php:1887
3544
  msgid "Toggle category editor"
3545
  msgstr ""
3546
 
3547
+ #: settings.php:1890
3548
  msgid "Comma separated category slugs"
3549
  msgstr ""
3550
 
3551
+ #: settings.php:1907
3552
  msgid "Tags"
3553
  msgstr ""
3554
 
3555
+ #: settings.php:1910
3556
  msgid "Toggle tag editor"
3557
  msgstr ""
3558
 
3559
+ #: settings.php:1913
3560
  msgid "Comma separated tag slugs"
3561
  msgstr ""
3562
 
3563
+ #: settings.php:1930
3564
  msgid "Taxonomies"
3565
  msgstr ""
3566
 
3567
+ #: settings.php:1933
3568
  msgid "Toggle taxonomy editor"
3569
  msgstr ""
3570
 
3571
+ #: settings.php:1936
3572
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3573
  msgstr ""
3574
 
3575
+ #: settings.php:1953
3576
  msgid "Post IDs"
3577
  msgstr ""
3578
 
3579
+ #: settings.php:1956
3580
  msgid "Toggle post/page ID editor"
3581
  msgstr ""
3582
 
3583
+ #: settings.php:1959
3584
  msgid "Comma separated post/page IDs"
3585
  msgstr ""
3586
 
3587
+ #: settings.php:1976
3588
  msgid "Urls"
3589
  msgstr ""
3590
 
3591
+ #: settings.php:1979
3592
  msgid "Toggle url editor"
3593
  msgstr ""
3594
 
3595
+ #: settings.php:1982
3596
  msgid ""
3597
  "Comma separated urls (page addresses) starting with / after domain name (e."
3598
  "g. /permalink-url, use only when you need to taget a specific url not "
3600
  "start*. *url-pattern*, *url-end)"
3601
  msgstr ""
3602
 
3603
+ #: settings.php:1998
3604
  msgid "Url parameters"
3605
  msgstr ""
3606
 
3607
+ #: settings.php:2002
3608
  msgid "Toggle url parameter and cookie editor"
3609
  msgstr ""
3610
 
3611
+ #: settings.php:2005
3612
  msgid ""
3613
  "Comma separated url query parameters or cookies with optional values (use "
3614
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
3615
  msgstr ""
3616
 
3617
+ #: settings.php:2021
3618
  msgid "Cookies"
3619
  msgstr ""
3620
 
3621
+ #: settings.php:2025
3622
  msgid "Toggle cookie editor"
3623
  msgstr ""
3624
 
3625
+ #: settings.php:2028
3626
  msgid ""
3627
  "Comma separated cookies with optional values (use 'cookie' or 'cookie=value')"
3628
  msgstr ""
3629
 
3630
+ #: settings.php:2044
3631
  msgid "Referrers"
3632
  msgstr ""
3633
 
3634
+ #: settings.php:2047
3635
  msgid "Toggle referrer editor"
3636
  msgstr ""
3637
 
3638
+ #: settings.php:2050
3639
  msgid ""
3640
  "Comma separated domains, use # for no referrer, you can also use partial "
3641
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3642
  msgstr ""
3643
 
3644
+ #: settings.php:2066
3645
  msgid "Clients"
3646
  msgstr ""
3647
 
3648
+ #: settings.php:2069
3649
  msgid "Toggle client editor"
3650
  msgstr ""
3651
 
3652
+ #: settings.php:2072
3653
  msgid ""
3654
  "Comma separated names (operating systems, browsers, devices). You can also "
3655
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
3656
  "pattern*, *user-agent-end)"
3657
  msgstr ""
3658
 
3659
+ #: settings.php:2098
3660
  msgid "Enable widget for this block"
3661
  msgstr ""
3662
 
3663
+ #: settings.php:2103
3664
  msgid "Sidebars (or widget positions) where this widget is used"
3665
  msgstr ""
3666
 
3667
+ #: settings.php:2110
3668
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3669
  msgstr ""
3670
 
3671
+ #: settings.php:2111 settings.php:4663
3672
  msgid "Shortcode"
3673
  msgstr ""
3674
 
3675
+ #: settings.php:2126
3676
  msgid ""
3677
  "Enable PHP function call to insert this block at any position in theme file. "
3678
  "If function is disabled for block it will return empty string."
3679
  msgstr ""
3680
 
3681
+ #: settings.php:2127
3682
  msgid "PHP function"
3683
  msgstr ""
3684
 
3685
+ #: settings.php:2142
3686
  msgid "Client-side device detection"
3687
  msgstr ""
3688
 
3689
+ #: settings.php:2143
3690
  msgid "Server-side device detection"
3691
  msgstr ""
3692
 
3693
+ #: settings.php:2150
3694
  msgid "Use client-side detection to"
3695
  msgstr ""
3696
 
3697
+ #: settings.php:2152
3698
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3699
  msgstr ""
3700
 
3701
  #. Translators: only on (the following devices): viewport names (devices)
3702
  #. listed
3703
+ #: settings.php:2157
3704
  msgid "only on"
3705
  msgstr ""
3706
 
3707
+ #: settings.php:2185
3708
  msgid "Device min width %s px"
3709
  msgstr ""
3710
 
3711
+ #: settings.php:2211
3712
  msgid "Use server-side detection to insert block only for"
3713
  msgstr ""
3714
 
3715
+ #: settings.php:2230
3716
  msgid "Filter"
3717
  msgstr ""
3718
 
3719
+ #: settings.php:2231
3720
  msgid "Word Count"
3721
  msgstr ""
3722
 
3723
+ #: settings.php:2233
3724
  msgid "Display"
3725
  msgstr ""
3726
 
3727
+ #: settings.php:2235 settings.php:2532
3728
  msgid "General"
3729
  msgstr ""
3730
 
3731
+ #: settings.php:2247
3732
  msgid "Old settings for AMP pages detected"
3733
  msgstr ""
3734
 
3735
+ #: settings.php:2247
3736
  msgid ""
3737
  "To insert different codes on normal and AMP pages separate them with "
3738
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3739
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3740
  msgstr ""
3741
 
3742
+ #: settings.php:2247
3743
  msgid "AMP pages"
3744
  msgstr ""
3745
 
3746
+ #: settings.php:2252
3747
  msgid "Enable insertion for Ajax requests"
3748
  msgstr ""
3749
 
3750
+ #: settings.php:2252
3751
  msgid "Ajax requests"
3752
  msgstr ""
3753
 
3754
+ #: settings.php:2257
3755
  msgid "Enable insertion in RSS feeds"
3756
  msgstr ""
3757
 
3758
+ #: settings.php:2257
3759
  msgid "RSS Feed"
3760
  msgstr ""
3761
 
3762
+ #: settings.php:2262
3763
  msgid "Enable insertion on page for Error 404: Page not found"
3764
  msgstr ""
3765
 
3766
+ #: settings.php:2262
3767
  msgid "Error 404 page"
3768
  msgstr ""
3769
 
3770
+ #: settings.php:2274
3771
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3772
  msgstr ""
3773
 
3774
+ #: settings.php:2275
3775
  msgid "insertions"
3776
  msgstr ""
3777
 
3778
+ #: settings.php:2277
3779
  msgid ""
3780
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3781
  "General)"
3782
  msgstr ""
3783
 
3784
+ #: settings.php:2280 settings.php:2720
3785
  msgid "Max blocks per page"
3786
  msgstr ""
3787
 
3788
+ #: settings.php:2292
3789
  msgid "Insert for"
3790
  msgstr ""
3791
 
3792
+ #: settings.php:2300
3793
  msgid ""
3794
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
3795
  "is currently active). Might speed up insertion on content pages when "
3796
  "[[the_content]] filter hook is called multiple times."
3797
  msgstr ""
3798
 
3799
+ #: settings.php:2304
3800
  msgid "Insert only in the loop"
3801
  msgstr ""
3802
 
3803
+ #: settings.php:2307
3804
  msgid ""
3805
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
3806
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
3808
  "footer."
3809
  msgstr ""
3810
 
3811
+ #: settings.php:2311
3812
  msgid "Embed JS code"
3813
  msgstr ""
3814
 
3815
+ #: settings.php:2314
3816
  msgid ""
3817
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3818
  msgstr ""
3819
 
3820
+ #: settings.php:2318
3821
  msgid "Disable caching"
3822
  msgstr ""
3823
 
3824
+ #: settings.php:2330
3825
  msgid "Filter insertions"
3826
  msgstr ""
3827
 
3828
+ #: settings.php:2333
3829
  msgid ""
3830
  "Filter multiple insertions by specifying wanted insertions for this block - "
3831
  "single number, comma separated numbers or %N for every N insertions - empty "
3833
  "using only one insertion type."
3834
  msgstr ""
3835
 
3836
+ #: settings.php:2336
3837
  msgid "using"
3838
  msgstr ""
3839
 
3840
+ #: settings.php:2355
3841
  msgid "Checked means specified calls are unwanted"
3842
  msgstr ""
3843
 
3844
+ #: settings.php:2355
3845
  msgid "Invert filter"
3846
  msgstr ""
3847
 
3848
+ #: settings.php:2362
3849
  msgid "Minimum number of post/static page words, leave empty for no limit"
3850
  msgstr ""
3851
 
3852
+ #: settings.php:2364
3853
  msgid "Maximum number of post/static page words, leave empty for no limit"
3854
  msgstr ""
3855
 
3856
+ #: settings.php:2377
3857
  msgid "for"
3858
  msgstr ""
3859
 
3860
+ #: settings.php:2377
3861
  msgid "days after publishing"
3862
  msgstr ""
3863
 
3864
+ #: settings.php:2379
3865
  msgid "Not available"
3866
  msgstr ""
3867
 
3868
  #. Translators: do not translate [[width]] - it is a CSS property
3869
+ #: settings.php:2391
3870
  msgid ""
3871
  "Block width: empty means width not defined, number means width in pixels, "
3872
  "any other value means CSS [[width]] property"
3873
  msgstr ""
3874
 
3875
  #. Translators: do not translate [[height]] - it is a CSS property
3876
+ #: settings.php:2395
3877
  msgid ""
3878
  "Block height: empty means height not defined, number means height in pixels, "
3879
  "any other value means CSS [[height]] property"
3880
  msgstr ""
3881
 
3882
+ #: settings.php:2401
3883
  msgid ""
3884
  "Block background: empty means background not defined, #hex number means HTML "
3885
  "color"
3886
  msgstr ""
3887
 
3888
+ #: settings.php:2410 settings.php:2712
3889
  msgid "Ad label"
3890
  msgstr ""
3891
 
3892
+ #: settings.php:2433
3893
  msgid "General tag"
3894
  msgstr ""
3895
 
3896
+ #: settings.php:2437
3897
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3898
  msgstr ""
3899
 
3900
  #. translators: %s: HTML tags
3901
+ #: settings.php:2446
3902
  msgid ""
3903
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3904
  "client-side device detection!"
3905
  msgstr ""
3906
 
3907
  #. translators: %s: HTML tags for text and link
3908
+ #: settings.php:2460
3909
  msgid ""
3910
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3911
  "side %s insertion. Use %s Server-side %s insertion."
3912
  msgstr ""
3913
 
3914
+ #: settings.php:2476
3915
  msgid "Settings"
3916
  msgstr ""
3917
 
3918
+ #: settings.php:2479
3919
  msgid "Settings timestamp"
3920
  msgstr ""
3921
 
3922
+ #: settings.php:2495
3923
  msgid "Are you sure you want to reset all settings?"
3924
  msgstr ""
3925
 
3926
+ #: settings.php:2495
3927
  msgid "Reset All Settings"
3928
  msgstr ""
3929
 
3930
+ #: settings.php:2533
3931
  msgid "Viewports"
3932
  msgstr ""
3933
 
3934
+ #: settings.php:2534
3935
  msgid "Hooks"
3936
  msgstr ""
3937
 
3938
+ #: settings.php:2535
3939
  msgid "Header"
3940
  msgstr ""
3941
 
3942
+ #: settings.php:2536 strings.php:30
3943
  msgid "Footer"
3944
  msgstr ""
3945
 
3946
+ #: settings.php:2541
3947
  msgid "Debugging"
3948
  msgstr ""
3949
 
3950
+ #: settings.php:2551
3951
  msgid "Plugin priority"
3952
  msgstr ""
3953
 
3954
+ #: settings.php:2559
3955
  msgid "Output buffering"
3956
  msgstr ""
3957
 
3958
+ #: settings.php:2562
3959
  msgid "Needed for position Above header but may not work with all themes"
3960
  msgstr ""
3961
 
3962
+ #: settings.php:2570
3963
  msgid "Syntax highlighting theme"
3964
  msgstr ""
3965
 
3966
+ #: settings.php:2577
3967
  msgctxt "no syntax highlighting themes"
3968
  msgid "None"
3969
  msgstr ""
3970
 
3971
+ #: settings.php:2578
3972
  msgid "No Syntax Highlighting"
3973
  msgstr ""
3974
 
3975
+ #: settings.php:2580
3976
  msgctxt "syntax highlighting themes"
3977
  msgid "Light"
3978
  msgstr ""
3979
 
3980
+ #: settings.php:2595
3981
  msgctxt "syntax highlighting themes"
3982
  msgid "Dark"
3983
  msgstr ""
3984
 
3985
+ #: settings.php:2621
3986
  msgid "Tab setup delay"
3987
  msgstr ""
3988
 
3989
+ #: settings.php:2629
3990
  msgid "Min. user role for ind. exceptions editing"
3991
  msgstr ""
3992
 
3993
+ #: settings.php:2639
3994
  msgid "Disable caching for logged in administrators"
3995
  msgstr ""
3996
 
3997
+ #: settings.php:2642
3998
  msgid ""
3999
  "Enabled means that logged in administrators will see non-cached (live) pages "
4000
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
4001
  msgstr ""
4002
 
4003
+ #: settings.php:2650
4004
  msgid "Wait for jQuery"
4005
  msgstr ""
4006
 
4007
+ #: settings.php:2653
4008
  msgid ""
4009
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4010
  "it will run the scripts that may need it"
4011
  msgstr ""
4012
 
4013
+ #: settings.php:2661
4014
  msgid "Sticky widget mode"
4015
  msgstr ""
4016
 
4017
+ #: settings.php:2664
4018
  msgid ""
4019
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4020
  "mode works with most themes but may reload ads on page load."
4021
  msgstr ""
4022
 
4023
+ #: settings.php:2672
4024
  msgid "Sticky widget top margin"
4025
  msgstr ""
4026
 
4027
+ #: settings.php:2680
4028
  msgid "Dynamic blocks"
4029
  msgstr ""
4030
 
4031
+ #: settings.php:2693
4032
  msgid "Functions for paragraph counting"
4033
  msgstr ""
4034
 
4035
+ #: settings.php:2696
4036
  msgid ""
4037
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4038
  "functions if paragraphs are not counted properly on non-english pages."
4039
  msgstr ""
4040
 
4041
+ #: settings.php:2704
4042
  msgid "No paragraph counting inside"
4043
  msgstr ""
4044
 
4045
+ #: settings.php:2715
4046
  msgid "Label text or HTML code"
4047
  msgstr ""
4048
 
4049
+ #: settings.php:2723
4050
  msgid ""
4051
  "Maximum number of inserted blocks per page. You need to enable Max page "
4052
  "insertions (button Misc / tab Insertion) to count block for this limit."
4053
  msgstr ""
4054
 
4055
+ #: settings.php:2737
4056
  msgid "Plugin usage tracking"
4057
  msgstr ""
4058
 
4059
  #. translators: %s: Ad Inserter
4060
+ #: settings.php:2740
4061
  msgid ""
4062
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4063
  "Only information regarding the WordPress environment and %s usage is "
4064
  "recorded (once per month and on events like plugin activation/deactivation)."
4065
  msgstr ""
4066
 
4067
+ #: settings.php:2760
4068
  msgid "CSS class name for the wrapping div"
4069
  msgstr ""
4070
 
4071
+ #: settings.php:2760
4072
  msgid "Block class name"
4073
  msgstr ""
4074
 
4075
+ #: settings.php:2766
4076
  msgid "Include block number class"
4077
  msgstr ""
4078
 
4079
+ #: settings.php:2766
4080
  msgid "Block number class"
4081
  msgstr ""
4082
 
4083
+ #: settings.php:2771
4084
  msgid "Include block name class"
4085
  msgstr ""
4086
 
4087
+ #: settings.php:2771
4088
  msgid "Block name class"
4089
  msgstr ""
4090
 
4091
+ #: settings.php:2776
4092
  msgid ""
4093
  "Instead of alignment classes generate inline alignment styles for blocks"
4094
  msgstr ""
4095
 
4096
+ #: settings.php:2776
4097
  msgid "Inline styles"
4098
  msgstr ""
4099
 
4100
+ #: settings.php:2782
4101
  msgid "Preview of the block wrapping code"
4102
  msgstr ""
4103
 
4104
+ #: settings.php:2783
4105
  msgid "Wrapping div"
4106
  msgstr ""
4107
 
4108
+ #: settings.php:2784 settings.php:3309
4109
  msgid "BLOCK CODE"
4110
  msgstr ""
4111
 
4112
+ #: settings.php:2794
4113
  msgid "Viewport Settings used for client-side device detection"
4114
  msgstr ""
4115
 
4116
  #. Translators: %d: viewport number
4117
+ #: settings.php:2802
4118
  msgid "Viewport %d name"
4119
  msgstr ""
4120
 
4121
+ #: settings.php:2805
4122
  msgid "min width"
4123
  msgstr ""
4124
 
4125
+ #: settings.php:2817
4126
+ msgid "Constants"
4127
+ msgstr ""
4128
+
4129
+ #: settings.php:2818
4130
+ msgid "Constant name"
4131
+ msgstr ""
4132
+
4133
+ #. Translators: %d: constant number
4134
+ #: settings.php:2828
4135
+ msgid "Constant %d name"
4136
+ msgstr ""
4137
+
4138
+ #: settings.php:2830
4139
+ msgid "Value"
4140
+ msgstr ""
4141
+
4142
+ #: settings.php:2841
4143
  msgid "Custom Hooks"
4144
  msgstr ""
4145
 
4146
+ #: settings.php:2853 settings.php:2856
4147
  msgid "Enable hook"
4148
  msgstr ""
4149
 
4150
  #. translators: %d: hook number
4151
+ #: settings.php:2856
4152
  msgid "Hook %d name"
4153
  msgstr ""
4154
 
4155
+ #: settings.php:2859
4156
  msgid "Hook name for automatic insertion selection"
4157
  msgstr ""
4158
 
4159
+ #: settings.php:2862
4160
  msgid "action"
4161
  msgstr ""
4162
 
4163
+ #: settings.php:2865
4164
  msgid "Action name as used in the do_action () function"
4165
  msgstr ""
4166
 
4167
+ #: settings.php:2868
4168
  msgid "priority"
4169
  msgstr ""
4170
 
4171
+ #: settings.php:2871
4172
  msgid "Priority for the hook (default is 10)"
4173
  msgstr ""
4174
 
4175
+ #: settings.php:2892
4176
  msgid "Enable insertion of this code into HTML page header"
4177
  msgstr ""
4178
 
4179
+ #: settings.php:2897 settings.php:2966 settings.php:3175
4180
  msgid "Process PHP code"
4181
  msgstr ""
4182
 
4183
+ #: settings.php:2902
4184
  msgid "HTML Page Header Code"
4185
  msgstr ""
4186
 
4187
+ #: settings.php:2910
4188
  msgid "Code in the %s section of the HTML page"
4189
  msgstr ""
4190
 
4191
+ #: settings.php:2911
4192
  msgctxt "code in the header"
4193
  msgid "NOT ENABLED"
4194
  msgstr ""
4195
 
4196
+ #: settings.php:2928 settings.php:2998
4197
  msgid "Use server-side detection to insert code only for"
4198
  msgstr ""
4199
 
4200
+ #: settings.php:2943
4201
  msgid ""
4202
  "Enable insertion of this code into HTML page header on page for Error 404: "
4203
  "Page not found"
4204
  msgstr ""
4205
 
4206
+ #: settings.php:2943 settings.php:3013
4207
  msgid "Insert on Error 404 page"
4208
  msgstr ""
4209
 
4210
+ #: settings.php:2961
4211
  msgid "Enable insertion of this code into HTML page footer"
4212
  msgstr ""
4213
 
4214
+ #: settings.php:2971
4215
  msgid "HTML Page Footer Code"
4216
  msgstr ""
4217
 
4218
  #. translators: %s: HTML tags
4219
+ #: settings.php:2979
4220
  msgid "Code before the %s tag of the HTML page"
4221
  msgstr ""
4222
 
4223
+ #: settings.php:2980
4224
  msgctxt "code in the footer"
4225
  msgid "NOT ENABLED"
4226
  msgstr ""
4227
 
4228
+ #: settings.php:3013
4229
  msgid ""
4230
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4231
  "Page not found"
4232
  msgstr ""
4233
 
4234
+ #: settings.php:3029
4235
  msgid "Code for ad blocking detection inserted. Click for details."
4236
  msgstr ""
4237
 
4238
+ #: settings.php:3034
4239
  msgid "Enable detection of ad blocking"
4240
  msgstr ""
4241
 
4242
+ #: settings.php:3049
4243
  msgid "Enabled for"
4244
  msgstr ""
4245
 
4246
+ #: settings.php:3068
4247
  msgid "Global action when ad blocking is detected"
4248
  msgstr ""
4249
 
4250
+ #: settings.php:3074
4251
  msgid "No action for"
4252
  msgstr ""
4253
 
4254
+ #: settings.php:3075
4255
  msgid "Exceptions for global action when ad blocking is detected."
4256
  msgstr ""
4257
 
4258
+ #: settings.php:3085
4259
  msgid "Delay Action"
4260
  msgstr ""
4261
 
4262
+ #: settings.php:3088
4263
  msgid ""
4264
  "Number of page views to delay action when ad blocking is detected. Leave "
4265
  "empty for no delay (action fires on first page view). Sets cookie."
4266
  msgstr ""
4267
 
4268
+ #: settings.php:3088
4269
  msgctxt "Delay Action for x "
4270
  msgid "page views"
4271
  msgstr ""
4272
 
4273
+ #: settings.php:3093
4274
  msgid "No Action Period"
4275
  msgstr ""
4276
 
4277
+ #: settings.php:3096
4278
  msgid ""
4279
  "Number of days to supress action when ad blocking is detected. Leave empty "
4280
  "for no no-action period (action fires always after defined page view delay). "
4281
  "Sets cookie."
4282
  msgstr ""
4283
 
4284
+ #: settings.php:3096
4285
  msgctxt "no action period"
4286
  msgid "days"
4287
  msgstr ""
4288
 
4289
+ #: settings.php:3101
4290
  msgid "Custom Selectors"
4291
  msgstr ""
4292
 
4293
+ #: settings.php:3104
4294
  msgid ""
4295
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4296
  "blocking detection. Invisible element or element with zero height means ad "
4297
  "blocking is present."
4298
  msgstr ""
4299
 
4300
+ #: settings.php:3111
4301
  msgid ""
4302
  "Use external scripts for ad blocking detection. Disable when you need to "
4303
  "obtain user consent before collecting personal information. In such case use "
4304
  "shortcut to insert external scripts after the consent is given."
4305
  msgstr ""
4306
 
4307
+ #: settings.php:3111
4308
  msgid "Use external scripts"
4309
  msgstr ""
4310
 
4311
+ #: settings.php:3125
4312
  msgid "Redirection Page"
4313
  msgstr ""
4314
 
4315
+ #: settings.php:3137
4316
  msgid "Custom Url"
4317
  msgstr ""
4318
 
4319
+ #: settings.php:3142
4320
  msgid ""
4321
  "Static page for redirection when ad blocking is detected. For other pages "
4322
  "select Custom url and set it below."
4323
  msgstr ""
4324
 
4325
+ #: settings.php:3151
4326
  msgid "Custom Redirection Url"
4327
  msgstr ""
4328
 
4329
+ #: settings.php:3163
4330
  msgid "Message HTML code"
4331
  msgstr ""
4332
 
4333
+ #: settings.php:3178
4334
  msgid "Preview message when ad blocking is detected"
4335
  msgstr ""
4336
 
4337
+ #: settings.php:3207
4338
  msgid "Prevent visitors from closing the warning message"
4339
  msgstr ""
4340
 
4341
+ #: settings.php:3207
4342
  msgid "Undismissible Message"
4343
  msgstr ""
4344
 
4345
+ #: settings.php:3213
4346
  msgid "Not undismissible for"
4347
  msgstr ""
4348
 
4349
+ #: settings.php:3214
4350
  msgid "Users which can close the warning message."
4351
  msgstr ""
4352
 
4353
+ #: settings.php:3251
4354
  msgid ""
4355
  "Force showing admin toolbar for administrators when viewing site. Enable "
4356
  "this option when you are logged in as admin and you don't see admin toolbar."
4357
  msgstr ""
4358
 
4359
+ #: settings.php:3259
4360
  msgid "Disable header code (Header tab)"
4361
  msgstr ""
4362
 
4363
+ #: settings.php:3263
4364
  msgid "Disable footer code (Footer tab)"
4365
  msgstr ""
4366
 
4367
  #. translators: %s: Ad Inserter
4368
+ #: settings.php:3267
4369
  msgid "Disable %s JavaScript code"
4370
  msgstr ""
4371
 
4372
  #. translators: %s: Ad Inserter
4373
+ #: settings.php:3271
4374
  msgid "Disable %s CSS code"
4375
  msgstr ""
4376
 
4377
  #. translators: %s: Ad Inserter
4378
+ #: settings.php:3275
4379
  msgid "Disable %s HTML code"
4380
  msgstr ""
4381
 
4382
+ #: settings.php:3279
4383
  msgid ""
4384
  "Disable PHP code processing (in all blocks including header and footer code)"
4385
  msgstr ""
4386
 
4387
+ #: settings.php:3283
4388
  msgid "Disable insertion of all blocks"
4389
  msgstr ""
4390
 
4391
+ #: settings.php:3287
4392
  msgid "Disable insertions"
4393
  msgstr ""
4394
 
4395
  #. translators: %s: Ad Inserter
4396
+ #: settings.php:3299
4397
  msgid "%s CSS CODE"
4398
  msgstr ""
4399
 
4400
+ #: settings.php:3302
4401
  msgid "HEADER CODE"
4402
  msgstr ""
4403
 
4404
  #. translators: %s: PHP tags
4405
+ #: settings.php:3308
4406
  msgid "BLOCK PHP CODE"
4407
  msgstr ""
4408
 
4409
  #. translators: %s: Ad Inserter
4410
+ #: settings.php:3313
4411
  msgid "%s HTML CODE"
4412
  msgstr ""
4413
 
4414
  #. translators: %s: Ad Inserter
4415
+ #: settings.php:3315
4416
  msgid "%s JS CODE"
4417
  msgstr ""
4418
 
4419
+ #: settings.php:3318
4420
  msgid "FOOTER CODE"
4421
  msgstr ""
4422
 
4423
+ #: settings.php:3327
4424
  msgid "Force showing admin toolbar when viewing site"
4425
  msgstr ""
4426
 
4427
+ #: settings.php:3334
4428
  msgid "Enable debugging functions in admin toolbar"
4429
  msgstr ""
4430
 
4431
+ #: settings.php:3336
4432
  msgid "Debugging functions in admin toolbar"
4433
  msgstr ""
4434
 
4435
+ #: settings.php:3343
4436
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4437
  msgstr ""
4438
 
4439
+ #: settings.php:3345
4440
  msgid "Debugging functions on mobile screens"
4441
  msgstr ""
4442
 
4443
+ #: settings.php:3365
4444
  msgid ""
4445
  "Disable translation to see original texts for the settings and messages in "
4446
  "English"
4447
  msgstr ""
4448
 
4449
+ #: settings.php:3367
4450
  msgid "Disable translation"
4451
  msgstr ""
4452
 
4453
+ #: settings.php:3765
4454
  msgid "Available positions for current theme"
4455
  msgstr ""
4456
 
4457
+ #: settings.php:3766
4458
  msgid "Error checking pages"
4459
  msgstr ""
4460
 
4461
+ #: settings.php:3769
4462
  msgid "Toggle theme checker for available positions for automatic insertion"
4463
  msgstr ""
4464
 
4465
+ #: settings.php:3769
4466
  msgctxt "Button"
4467
  msgid "Check"
4468
  msgstr ""
4469
 
4470
+ #: settings.php:3776
4471
  msgid "Position"
4472
  msgstr ""
4473
 
4474
+ #: settings.php:3781
4475
  msgid "Archive pages"
4476
  msgstr ""
4477
 
4478
+ #: settings.php:3840
4479
  msgid ""
4480
  "Position not available because output buffering (tab [*]) is not enabled"
4481
  msgstr ""
4482
 
4483
+ #: settings.php:3843 strings.php:252
4484
  msgid "Position not checked yet"
4485
  msgstr ""
4486
 
4487
+ #: settings.php:3879
4488
  msgid "Toggle active/all blocks"
4489
  msgstr ""
4490
 
4491
+ #: settings.php:3884 strings.php:239
4492
  msgid "Rearrange block order"
4493
  msgstr ""
4494
 
4495
+ #: settings.php:3890
4496
  msgid "Save new block order"
4497
  msgstr ""
4498
 
4499
+ #: settings.php:3916
4500
  msgid "Toggle active/all ad units"
4501
  msgstr ""
4502
 
4503
+ #: settings.php:3920
4504
  msgid "Reload AdSense ad units"
4505
  msgstr ""
4506
 
4507
+ #: settings.php:3924
4508
  msgid "Clear authorization to access AdSense account"
4509
  msgstr ""
4510
 
4511
+ #: settings.php:3928 settings.php:4825 settings.php:4872 strings.php:247
4512
  msgid "Google AdSense Homepage"
4513
  msgstr ""
4514
 
4515
+ #: settings.php:3949
4516
  msgid "Switch to physical ads.txt file"
4517
  msgstr ""
4518
 
4519
+ #: settings.php:3950
4520
  msgid "Switch to virtual ads.txt file"
4521
  msgstr ""
4522
 
4523
  #. translators: %s: ads.txt
4524
+ #: settings.php:3970
4525
  msgid "Open %s"
4526
  msgstr ""
4527
 
4528
+ #: settings.php:3978
4529
  msgid "Reload ads.txt file"
4530
  msgstr ""
4531
 
4532
+ #: settings.php:3984 settings.php:4937
4533
  msgid "Save"
4534
  msgstr ""
4535
 
4536
  #. translators: %s: Ad Inserter
4537
+ #: settings.php:4164
4538
  msgid "ads.txt file: %s virtual ads.txt file"
4539
  msgstr ""
4540
 
4541
+ #: settings.php:4169 settings.php:4189 strings.php:226
4542
  msgid "Warning"
4543
  msgstr ""
4544
 
4545
  #. translators: %s: Ad Inserter
4546
+ #: settings.php:4169
4547
  msgid "%s virtual file ads.txt not found"
4548
  msgstr ""
4549
 
4550
+ #: settings.php:4177
4551
  msgid "IMPORTANT"
4552
  msgstr ""
4553
 
4554
+ #: settings.php:4177
4555
  msgid "ads.txt file must be placed on the root domain"
4556
  msgstr ""
4557
 
4558
+ #: settings.php:4182
4559
  msgid "ads.txt file"
4560
  msgstr ""
4561
 
4562
+ #: settings.php:4182
4563
  msgid "NOT WRITABLE"
4564
  msgstr ""
4565
 
4566
+ #: settings.php:4189
4567
  msgid "file %s not found"
4568
  msgstr ""
4569
 
4570
+ #: settings.php:4199
4571
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4572
  msgstr ""
4573
 
4574
  #. translators: %s: Ad Inserter
4575
+ #: settings.php:4205
4576
  msgid "%s virtual ads.txt file"
4577
  msgstr ""
4578
 
4579
+ #: settings.php:4227
4580
  msgid "Advertising system"
4581
  msgstr ""
4582
 
4583
+ #: settings.php:4228
4584
  msgid "Account ID"
4585
  msgstr ""
4586
 
4587
+ #: settings.php:4230
4588
  msgid "Certification authority ID"
4589
  msgstr ""
4590
 
4591
+ #: settings.php:4245
4592
  msgid "Account ID found in block and present in ads.txt"
4593
  msgstr ""
4594
 
4595
+ #: settings.php:4249
4596
  msgid "Account ID found in block but not present in ads.txt"
4597
  msgstr ""
4598
 
4599
+ #: settings.php:4602
4600
  msgid "Preview block"
4601
  msgstr ""
4602
 
4603
+ #: settings.php:4609
4604
  msgid "Pause block"
4605
  msgstr ""
4606
 
4607
+ #: settings.php:4649
4608
  msgid "Automatic insertion"
4609
  msgstr ""
4610
 
4611
  #. translators: %s HTML tags
4612
+ #: settings.php:4650 settings.php:5986
4613
  msgid "PHP code processing"
4614
  msgstr ""
4615
 
4616
+ #: settings.php:4652
4617
  msgid "Device detection"
4618
  msgstr ""
4619
 
4620
+ #: settings.php:4675
4621
  msgid "No active block"
4622
  msgstr ""
4623
 
4624
+ #: settings.php:4676
4625
  msgid "No block matches search keywords"
4626
  msgstr ""
4627
 
4628
+ #: settings.php:4736
4629
  msgid "Ad unit"
4630
  msgstr ""
4631
 
4632
+ #: settings.php:4738
4633
  msgid "Slot ID"
4634
  msgstr ""
4635
 
4636
+ #: settings.php:4764
4637
  msgid "Copy AdSense code"
4638
  msgstr ""
4639
 
4640
+ #: settings.php:4767
4641
  msgid "Preview AdSense ad"
4642
  msgstr ""
4643
 
4644
+ #: settings.php:4770
4645
  msgid "Get AdSense code"
4646
  msgstr ""
4647
 
4648
  #. translators: %s: HTML tags
4649
+ #: settings.php:4802
4650
  msgid ""
4651
  "Please %s clear authorization %s with the button %s above and once again "
4652
  "authorize access to your AdSense account."
4653
  msgstr ""
4654
 
4655
+ #: settings.php:4821
4656
  msgid "AdSense Integration"
4657
  msgstr ""
4658
 
4659
+ #: settings.php:4823
4660
  msgid "AdSense Integration - Step 2"
4661
  msgstr ""
4662
 
4663
  #. translators: %s: HTML tags
4664
+ #: settings.php:4829
4665
+ msgid "Authorize %s to access your AdSense account."
 
 
 
 
4666
  msgstr ""
4667
 
4668
  #. translators: %s: HTML tags
4669
+ #: settings.php:4830
4670
  msgid ""
4671
  "If you get error, can't access ad units or would like to use own Google API "
4672
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4674
  msgstr ""
4675
 
4676
  #. translators: %s: HTML tags
4677
+ #: settings.php:4832
4678
+ msgid "Now you can authorize %s to access your AdSense account. "
 
 
 
 
4679
  msgstr ""
4680
 
4681
  #. translators: %s: HTML tags
4682
+ #: settings.php:4833
4683
  msgid ""
4684
  "If you get error %s invalid client %s click on the button %s Clear and "
4685
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4686
  msgstr ""
4687
 
4688
+ #: settings.php:4849
 
 
 
 
 
 
 
 
4689
  msgid "Use own API IDs"
4690
  msgstr ""
4691
 
4692
+ #: settings.php:4851
4693
  msgid "Clear and return to Step 1"
4694
  msgstr ""
4695
 
4696
+ #: settings.php:4855
4697
  msgid "Authorize"
4698
  msgstr ""
4699
 
4700
+ #: settings.php:4871
4701
  msgid "AdSense Integration - Step 1"
4702
  msgstr ""
4703
 
4704
  #. translators: %s: Ad Inserter
4705
+ #: settings.php:4875
4706
  msgid ""
4707
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4708
  "To do this you need to authorize %s to access your AdSense account. The "
4711
  msgstr ""
4712
 
4713
  #. translators: %s: HTML tags
4714
+ #: settings.php:4884
4715
  msgid "Go to %s Google APIs and Services console %s"
4716
  msgstr ""
4717
 
4718
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4719
+ #: settings.php:4885
4720
  msgid ""
4721
  "Create %1$s project - if the project and IDs are already created click on "
4722
  "the %2$s Credentials %3$s in the sidebar and go to step 21"
4723
  msgstr ""
4724
 
4725
  #. translators: %s: HTML tags
4726
+ #: settings.php:4886
4727
  msgid ""
4728
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4729
  "create a new project"
4730
  msgstr ""
4731
 
4732
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4733
+ #: settings.php:4887
4734
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4735
  msgstr ""
4736
 
4737
  #. translators: %s: HTML tags
4738
+ #: settings.php:4888
4739
  msgid ""
4740
  "Click on project selection, wait for the project to be created and then and "
4741
  "select %s as the current project"
4742
  msgstr ""
4743
 
4744
  #. translators: %s: HTML tags
4745
+ #: settings.php:4889
4746
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4747
  msgstr ""
4748
 
4749
  #. translators: %s: HTML tags
4750
+ #: settings.php:4890
4751
  msgid "Search for adsense and enable %s"
4752
  msgstr ""
4753
 
4754
  #. translators: %s: HTML tags
4755
+ #: settings.php:4891
4756
  msgid "Click on %s CREATE CREDENTIALS %s"
4757
  msgstr ""
4758
 
4759
  #. translators: %s: HTML tags
4760
+ #: settings.php:4892
4761
  msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
4762
  msgstr ""
4763
 
4764
  #. translators: %s: HTML tags
4765
+ #: settings.php:4893
4766
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4767
  msgstr ""
4768
 
4769
  #. translators: %s: HTML tags
4770
+ #: settings.php:4894
4771
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4772
  msgstr ""
4773
 
4774
  #. translators: %s: HTML tags
4775
+ #: settings.php:4895
4776
  msgid "Click on %s What credentials do I need? %s"
4777
  msgstr ""
4778
 
4779
  #. translators: %s: HTML tags
4780
+ #: settings.php:4896
4781
  msgid ""
4782
  "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
4783
  "Consent Screen %s"
4784
  msgstr ""
4785
 
4786
  #. translators: %s: HTML tags
4787
+ #: settings.php:4897
4788
  msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
4789
  msgstr ""
4790
 
4791
  #. translators: %s: HTML tags
4792
+ #: settings.php:4898
4793
  msgid ""
4794
  "For %s App name %s enter %s and for %s User support email %s select your "
4795
  "Google account email address"
4796
  msgstr ""
4797
 
4798
  #. translators: %s: HTML tags
4799
+ #: settings.php:4899
4800
  msgid ""
4801
  "For %s Developer contact information %s enter your email address and click "
4802
  "on %s SAVE AND CONTINUE %s"
4803
  msgstr ""
4804
 
4805
  #. translators: %s: HTML tags
4806
+ #: settings.php:4900
4807
  msgid ""
4808
  "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
4809
  "add your Google account email address"
4810
  msgstr ""
4811
 
4812
  #. translators: %s: HTML tags
4813
+ #: settings.php:4901
4814
  msgid ""
4815
  "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
4816
  msgstr ""
4817
 
4818
  #. translators: %s: HTML tags
4819
+ #: settings.php:4902
4820
  msgid ""
4821
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4822
  "Ad Inserter client %s and then click on %s REFRESH %s"
4823
  msgstr ""
4824
 
4825
  #. translators: %s: HTML tags
4826
+ #: settings.php:4903
4827
  msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
4828
  msgstr ""
4829
 
4830
  #. translators: %s: HTML tags
4831
+ #: settings.php:4904
4832
  msgid ""
4833
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4834
  "secret %s"
4835
  msgstr ""
4836
 
4837
+ #: settings.php:4905
4838
  msgid "Copy them to the appropriate fields below"
4839
  msgstr ""
4840
 
4841
+ #: settings.php:4911
4842
  msgid "Client ID"
4843
  msgstr ""
4844
 
4845
+ #: settings.php:4914
4846
  msgid "Enter Client ID"
4847
  msgstr ""
4848
 
4849
+ #: settings.php:4919
4850
  msgid "Client secret"
4851
  msgstr ""
4852
 
4853
+ #: settings.php:4922
4854
  msgid "Enter Client secret"
4855
  msgstr ""
4856
 
4857
+ #: settings.php:4932
4858
  msgid "Use default API IDs"
4859
  msgstr ""
4860
 
4861
+ #: settings.php:5033
4862
  msgid "All posts"
4863
  msgstr ""
4864
 
4865
+ #: settings.php:5034
4866
  msgid "All static pages"
4867
  msgstr ""
4868
 
4869
+ #: settings.php:5604
4870
  msgid "Maximize Your Ad Revenue With Header Bidding"
4871
  msgstr ""
4872
 
4873
+ #: settings.php:5609 settings.php:5851 settings.php:5865 settings.php:5894
4874
+ #: settings.php:5923
4875
  msgid "Maximize Your Ad Revenue"
4876
  msgstr ""
4877
 
4878
+ #: settings.php:5618 settings.php:5632
4879
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4880
  msgstr ""
4881
 
4882
+ #: settings.php:5623 settings.php:5637 settings.php:5856 settings.php:5874
4883
+ #: settings.php:5887 settings.php:5888 settings.php:5898 settings.php:5913
4884
  msgid "Looking for AdSense alternative?"
4885
  msgstr ""
4886
 
4887
+ #: settings.php:5649
4888
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4889
  msgstr ""
4890
 
4891
+ #: settings.php:5654 settings.php:5848 settings.php:5869 settings.php:5897
4892
+ #: settings.php:5917
4893
  msgid "Use Infolinks ads with Adsense to earn more"
4894
  msgstr ""
4895
 
4896
+ #: settings.php:5666 settings.php:5671 settings.php:5854 settings.php:5879
4897
+ #: settings.php:5891 settings.php:5907
4898
+ msgid "Maximize Revenue"
4899
  msgstr ""
4900
 
4901
+ #: settings.php:5694 settings.php:5744
4902
  msgid "Support plugin development"
4903
  msgstr ""
4904
 
4905
+ #: settings.php:5699 settings.php:5745
4906
  msgid ""
4907
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4908
  "reviewing the plugin on WordPres"
4909
  msgstr ""
4910
 
4911
+ #: settings.php:5699
4912
  msgctxt "Review Ad Inserter"
4913
  msgid "Review"
4914
  msgstr ""
4915
 
4916
+ #: settings.php:5704
4917
  msgid ""
4918
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4919
  "rating the plugin on WordPres"
4920
  msgstr ""
4921
 
4922
+ #: settings.php:5704
4923
  msgctxt "Rate Ad Inserter"
4924
  msgid "Rate"
4925
  msgstr ""
4926
 
4927
+ #: settings.php:5709
4928
  msgid ""
4929
  "Support free Ad Inserter development. If you are making money with Ad "
4930
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4931
  "you!"
4932
  msgstr ""
4933
 
4934
+ #: settings.php:5709
4935
  msgid "Donate"
4936
  msgstr ""
4937
 
4938
+ #: settings.php:5716 settings.php:5760
4939
  msgid "Average rating of the plugin - Thank you!"
4940
  msgstr ""
4941
 
4942
  #. translators: %s: Ad Inserter, HTML tags
4943
+ #: settings.php:5727
4944
  msgid ""
4945
  "You've been using %s for a while now, and I hope you're happy with it. "
4946
  "Positive %s reviews %s are a great way to show your appreciation for my "
4949
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4950
  msgstr ""
4951
 
4952
+ #: settings.php:5745
4953
  msgid "Review"
4954
  msgstr ""
4955
 
4956
+ #: settings.php:5749
4957
  msgid "Ad Inserter on Twitter"
4958
  msgstr ""
4959
 
4960
+ #: settings.php:5750
4961
  msgid "Ad Inserter on Facebook"
4962
  msgstr ""
4963
 
4964
+ #: settings.php:5753
4965
  msgid "Follow Ad Inserter"
4966
  msgstr ""
4967
 
4968
  #. translators: %s: HTML tags
4969
+ #: settings.php:5780
4970
  msgid ""
4971
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4972
  "and %s Common Settings %s pages"
4973
  msgstr ""
4974
 
4975
  #. translators: %s: HTML tags
4976
+ #: settings.php:5792
4977
  msgid ""
4978
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4979
  "Auto ads, %s %s AMP ads %s"
4980
  msgstr ""
4981
 
4982
  #. translators: %s: HTML tags
4983
+ #: settings.php:5809
4984
  msgid ""
4985
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4986
  "purchase you refer to us"
4987
  msgstr ""
4988
 
4989
  #. translators: %s: HTML tags
4990
+ #: settings.php:5816
4991
  msgid ""
4992
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4993
  "diagnose and fix the problem."
4994
  msgstr ""
4995
 
4996
  #. translators: %s: HTML tags
4997
+ #: settings.php:5820
4998
  msgid ""
4999
  "If you need any kind of help or support, please do not hesitate to open a "
5000
  "thread on the %s support forum. %s"
5001
  msgstr ""
5002
 
5003
+ #: settings.php:5847 settings.php:5906 settings.php:5918 settings.php:5933
5004
  msgid "Code preview with visual CSS editor"
5005
  msgstr ""
5006
 
5007
+ #: settings.php:5850 settings.php:5878
5008
  msgid "Ad blocking detection and content protection"
5009
  msgstr ""
5010
 
5011
+ #: settings.php:5853 settings.php:5908 settings.php:5935
5012
  msgid "A/B testing - Track ad impressions and clicks"
5013
  msgstr ""
5014
 
5015
+ #: settings.php:5870
5016
  msgid "Insert ads on AMP pages"
5017
  msgstr ""
5018
 
5019
+ #: settings.php:5922 settings.php:5931
5020
+ msgid "Stop invalid traffic with reCAPTCHA v3 score check"
5021
+ msgstr ""
5022
+
5023
+ #: settings.php:5945
5024
  msgid "Looking for Pro Ad Management plugin?"
5025
  msgstr ""
5026
 
5027
+ #: settings.php:5946
5028
  msgid "To Optimally Monetize your WordPress website?"
5029
  msgstr ""
5030
 
5031
  #. Translators: %s: price of Ad Inserter Pro
5032
+ #: settings.php:5947
5033
  msgid "Different license types starting from %s"
5034
  msgstr ""
5035
 
5036
  #. translators: %s HTML tags
5037
+ #: settings.php:5950
5038
  msgid "%s AdSense Integration %s"
5039
  msgstr ""
5040
 
5041
  #. translators: %s HTML tags
5042
+ #: settings.php:5951
5043
  msgid "Syntax highlighting %s editor %s"
5044
  msgstr ""
5045
 
5046
  #. translators: %s HTML tags
5047
+ #: settings.php:5952
5048
  msgid "%s Code preview %s with visual CSS editor"
5049
  msgstr ""
5050
 
5051
  #. translators: %s HTML tags
5052
+ #: settings.php:5953
5053
  msgid "Simple user interface - all settings on a single page"
5054
  msgstr ""
5055
 
5056
  #. translators: %s HTML tags
5057
+ #: settings.php:5954
5058
  msgid ""
5059
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5060
  "image / excerpt"
5061
  msgstr ""
5062
 
5063
  #. translators: %s HTML tags
5064
+ #: settings.php:5955
5065
  msgid "%s Automatic insertion %s between posts on blog pages"
5066
  msgstr ""
5067
 
5068
  #. translators: %s HTML tags
5069
+ #: settings.php:5956
5070
  msgid "%s Automatic insertion %s before, between and after comments"
5071
  msgstr ""
5072
 
5073
  #. translators: %s HTML tags
5074
+ #: settings.php:5957
5075
  msgid "%s Automatic insertion %s after %s or before %s tag"
5076
  msgstr ""
5077
 
5078
  #. translators: %s HTML tags
5079
+ #: settings.php:5958
5080
  msgid "Automatic insertion at %s custom hook positions %s"
5081
  msgstr ""
5082
 
5083
  #. translators: %s HTML tags
5084
+ #: settings.php:5959
5085
  msgid ""
5086
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5087
  "selectors)"
5088
  msgstr ""
5089
 
5090
  #. translators: %s HTML tags
5091
+ #: settings.php:5960
5092
  msgid "%s Insertion exceptions %s for individual posts and pages"
5093
  msgstr ""
5094
 
5095
  #. translators: %s HTML tags
5096
+ #: settings.php:5961
5097
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5098
  msgstr ""
5099
 
5100
  #. translators: %s HTML tags
5101
+ #: settings.php:5962
5102
  msgid ""
5103
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5104
  "scrolls)"
5105
  msgstr ""
5106
 
5107
  #. translators: %s HTML tags
5108
+ #: settings.php:5963
5109
  msgid "%s Background ads %s with one or left and right background images"
5110
  msgstr ""
5111
 
5112
  #. translators: %s HTML tags
5113
+ #: settings.php:5964
5114
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5115
  msgstr ""
5116
 
5117
  #. translators: %s HTML tags
5118
+ #: settings.php:5965
5119
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5120
  msgstr ""
5121
 
5122
  #. translators: %s HTML tags
5123
+ #: settings.php:5966
5124
  msgid ""
5125
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5126
  "visible)"
5127
  msgstr ""
5128
 
5129
  #. translators: %s HTML tags
5130
+ #: settings.php:5967
5131
  msgid ""
5132
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5133
  msgstr ""
5134
 
5135
  #. translators: %s HTML tags
5136
+ #: settings.php:5968
5137
  msgid "Block %s alignment and style %s customizations"
5138
  msgstr ""
5139
 
5140
  #. translators: %s HTML tags
5141
+ #: settings.php:5969
5142
  msgid ""
5143
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5144
  "TOS)"
5145
  msgstr ""
5146
 
5147
  #. translators: %s HTML tags
5148
+ #: settings.php:5970
5149
  msgid ""
5150
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5151
  "feeds"
5152
  msgstr ""
5153
 
5154
  #. translators: %s HTML tags
5155
+ #: settings.php:5971
5156
  msgid "%s Ad rotation %s (works also with caching)"
5157
  msgstr ""
5158
 
5159
  #. translators: %s HTML tags
5160
+ #: settings.php:5972
5161
  msgid "Ad rotation %s optimization based on CTR %s"
5162
  msgstr ""
5163
 
5164
  #. translators: %s HTML tags
5165
+ #: settings.php:5973
5166
  msgid "Create, edit and check %s ads.txt %s file"
5167
  msgstr ""
5168
 
5169
  #. translators: %s HTML tags
5170
+ #: settings.php:5974
5171
  msgid ""
5172
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5173
  "AdSense)"
5174
  msgstr ""
5175
 
5176
  #. translators: %s HTML tags
5177
+ #: settings.php:5975
5178
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5179
  msgstr ""
5180
 
5181
  #. translators: %s HTML tags
5182
+ #: settings.php:5976
5183
  msgid "%s Public web reports %s for clients, export to PDF"
5184
  msgstr ""
5185
 
5186
  #. translators: %s HTML tags
5187
+ #: settings.php:5977
5188
  msgid "Support for %s A/B testing %s"
5189
  msgstr ""
5190
 
5191
  #. translators: %s HTML tags
5192
+ #: settings.php:5978
5193
  msgid "Frequency capping - %s limit impressions or clicks %s"
5194
  msgstr ""
5195
 
5196
  #. translators: %s HTML tags
5197
+ #: settings.php:5979
5198
  msgid "Click fraud %s protection %s"
5199
  msgstr ""
5200
 
5201
  #. translators: %s HTML tags
5202
+ #: settings.php:5980
5203
+ msgid "Stop invalid traffic with %s reCAPTCHA score check %s"
5204
+ msgstr ""
5205
+
5206
+ #. translators: %s HTML tags
5207
+ #: settings.php:5981
5208
  msgid "Support for %s GDPR consent cookie checks %s"
5209
  msgstr ""
5210
 
5211
  #. translators: %s HTML tags
5212
+ #: settings.php:5982
5213
  msgid "Support for %s lazy loading %s"
5214
  msgstr ""
5215
 
5216
  #. translators: %s HTML tags
5217
+ #: settings.php:5983
5218
  msgid "Support for ads on %s AMP pages %s"
5219
  msgstr ""
5220
 
5221
  #. translators: %s HTML tags
5222
+ #: settings.php:5984
5223
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5224
  msgstr ""
5225
 
5226
  #. translators: %s HTML tags
5227
+ #: settings.php:5985
5228
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5229
  msgstr ""
5230
 
5231
  #. translators: %s HTML tags
5232
+ #: settings.php:5987
5233
  msgid "%s Banner %s code generator"
5234
  msgstr ""
5235
 
5236
  #. translators: %s HTML tags
5237
+ #: settings.php:5988
5238
  msgid "Support for %s header and footer %s code"
5239
  msgstr ""
5240
 
5241
  #. translators: %s HTML tags
5242
+ #: settings.php:5989
5243
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5244
  msgstr ""
5245
 
5246
  #. translators: %s HTML tags
5247
+ #: settings.php:5990
5248
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5249
  msgstr ""
5250
 
5251
  #. translators: %s HTML tags
5252
+ #: settings.php:5991
5253
  msgid "Client-side %s mobile device detection %s (works with caching)"
5254
  msgstr ""
5255
 
5256
  #. translators: %s HTML tags
5257
+ #: settings.php:5992
5258
  msgid ""
5259
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5260
  "protection"
5261
  msgstr ""
5262
 
5263
  #. translators: %s HTML tags
5264
+ #: settings.php:5993
5265
  msgid "%s Ad blocking statistics %s"
5266
  msgstr ""
5267
 
5268
  #. translators: %s HTML tags
5269
+ #: settings.php:5994
5270
  msgid ""
5271
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5272
  "referrers, operating systems, browsers"
5273
  msgstr ""
5274
 
5275
  #. translators: %s HTML tags
5276
+ #: settings.php:5995
5277
  msgid ""
5278
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5279
  msgstr ""
5280
 
5281
  #. translators: %s HTML tags
5282
+ #: settings.php:5996
5283
  msgid "%s Multisite options %s to limit settings on the sites"
5284
  msgstr ""
5285
 
5286
  #. translators: %s HTML tags
5287
+ #: settings.php:5997
5288
  msgid "%s Import/Export %s block or plugin settings"
5289
  msgstr ""
5290
 
5291
  #. translators: %s HTML tags
5292
+ #: settings.php:5998
5293
  msgid "%s Insertion scheduling %s with fallback option"
5294
  msgstr ""
5295
 
5296
  #. translators: %s HTML tags
5297
+ #: settings.php:5999
5298
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5299
  msgstr ""
5300
 
5301
  #. translators: %s HTML tags
5302
+ #: settings.php:6000
5303
  msgid "Simple troubleshooting with many %s debugging functions %s"
5304
  msgstr ""
5305
 
5306
  #. translators: %s HTML tags
5307
+ #: settings.php:6001
5308
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5309
  msgstr ""
5310
 
5311
  #. translators: %s HTML tags
5312
+ #: settings.php:6002
5313
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5314
  msgstr ""
5315
 
5316
  #. translators: %s HTML tags
5317
+ #: settings.php:6003
5318
  msgid ""
5319
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5320
  msgstr ""
5321
 
5322
  #. translators: %s HTML tags
5323
+ #: settings.php:6004
5324
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5325
  msgstr ""
5326
 
5327
  #. translators: %s HTML tags
5328
+ #: settings.php:6005
5329
  msgid "No ads on the settings page"
5330
  msgstr ""
5331
 
5332
  #. translators: %s HTML tags
5333
+ #: settings.php:6006
5334
  msgid "Premium support"
5335
  msgstr ""
5336
 
5337
  #. translators: %s HTML tags
5338
+ #: settings.php:6009
5339
  msgid ""
5340
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5341
  "website with many advertising features to automatically insert adverts on "
5350
  msgstr ""
5351
 
5352
  #. translators: %s HTML tags
5353
+ #: settings.php:6022
5354
  msgid "Looking for %s Pro Ad Management plugin? %s"
5355
  msgstr ""
5356
 
5357
  #. translators: %s HTML tags
5358
+ #: settings.php:6027
5359
  msgid "Ads between posts"
5360
  msgstr ""
5361
 
5362
  #. translators: %s HTML tags
5363
+ #: settings.php:6028
5364
  msgid "Ads between comments"
5365
  msgstr ""
5366
 
5367
  #. translators: %s HTML tags
5368
+ #: settings.php:6029
5369
  msgid "Support via email"
5370
  msgstr ""
5371
 
5372
  #. translators: %s HTML tags
5373
+ #: settings.php:6035
5374
  msgid "%s Sticky positions %s"
5375
  msgstr ""
5376
 
5377
  #. translators: %s HTML tags
5378
+ #: settings.php:6036
5379
  msgid "%s Limit insertions %s"
5380
  msgstr ""
5381
 
5382
  #. translators: %s HTML tags
5383
+ #: settings.php:6037
5384
  msgid "%s Clearance %s options"
5385
  msgstr ""
5386
 
5387
  #. translators: %s HTML tags
5388
+ #: settings.php:6043
5389
  msgid "Ad rotation"
5390
  msgstr ""
5391
 
5392
  #. translators: %s HTML tags
5393
+ #: settings.php:6044
5394
  msgid "%s A/B testing %s"
5395
  msgstr ""
5396
 
5397
  #. translators: %s HTML tags
5398
+ #: settings.php:6045
5399
  msgid "%s Ad tracking %s"
5400
  msgstr ""
5401
 
5402
  #. translators: %s HTML tags
5403
+ #: settings.php:6051
5404
  msgid "Support for %s AMP pages %s"
5405
  msgstr ""
5406
 
5407
  #. translators: %s HTML tags
5408
+ #: settings.php:6052
5409
  msgid "%s Ad blocking detection %s"
5410
  msgstr ""
5411
 
5412
  #. translators: %s HTML tags
5413
+ #: settings.php:6053
5414
  msgid "%s Mobile device detection %s"
5415
  msgstr ""
5416
 
5417
  #. translators: %s HTML tags
5418
+ #: settings.php:6060
5419
  msgid "64 code blocks"
5420
  msgstr ""
5421
 
5422
  #. translators: %s HTML tags
5423
+ #: settings.php:6061
5424
  msgid "%s GEO targeting %s"
5425
  msgstr ""
5426
 
5427
  #. translators: %s HTML tags
5428
+ #: settings.php:6062
5429
  msgid "%s Scheduling %s"
5430
  msgstr ""
5431
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
6
  Requires at least: 4.9
7
  Tested up to: 6.0
8
  Requires PHP: 5.6
9
- Stable tag: 2.7.17
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
@@ -361,6 +361,11 @@ If you are not happy to reveal this information and you have opted in, simply di
361
 
362
  == Changelog ==
363
 
 
 
 
 
 
364
  = 2.7.17 =
365
  - Fixed bug for url parameters check
366
  - Added support for reCaptcha v3 score check (Pro only)
@@ -665,6 +670,11 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
665
 
666
  == Upgrade Notice ==
667
 
 
 
 
 
 
668
  = 2.7.17 =
669
  Fixed bug for url parameters check;
670
  Added support for reCaptcha v3 score check (Pro only);
6
  Requires at least: 4.9
7
  Tested up to: 6.0
8
  Requires PHP: 5.6
9
+ Stable tag: 2.7.18
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
361
 
362
  == Changelog ==
363
 
364
+ = 2.7.18 =
365
+ - Added support to hide ad label when unfilled AdSense block is hidden
366
+ - Simplified AdSense API authorization process
367
+ - Few minor bug fixes, cosmetic changes and code improvements
368
+
369
  = 2.7.17 =
370
  - Fixed bug for url parameters check
371
  - Added support for reCaptcha v3 score check (Pro only)
670
 
671
  == Upgrade Notice ==
672
 
673
+ = 2.7.18 =
674
+ Added support to hide ad label when unfilled AdSense block is hidden;
675
+ Simplified AdSense API authorization process;
676
+ Few minor bug fixes, cosmetic changes and code improvements
677
+
678
  = 2.7.17 =
679
  Fixed bug for url parameters check;
680
  Added support for reCaptcha v3 score check (Pro only);
settings.php CHANGED
@@ -14,6 +14,18 @@ function generate_settings_form (){
14
  } else $url_safe_mode = '';
15
 
16
  if (defined ('AI_ADSENSE_API')) {
 
 
 
 
 
 
 
 
 
 
 
 
17
  require_once AD_INSERTER_PLUGIN_DIR.'includes/adsense-api.php';
18
  }
19
 
@@ -229,11 +241,11 @@ function generate_settings_form (){
229
 
230
  <div id="ai-settings" style="float: left;" data-home-url="<?php echo home_url (); ?>/" data-home-relative-url="<?php echo wp_make_link_relative (get_site_url ()); ?>/">
231
 
232
- <form id="ai-form" class="no-select rounded<?php echo function_exists ('ai_settings_flags') ? ai_settings_flags () : ''; ?>" style="float: left;" action="<?php echo esc_attr ($save_url); ?>" method="post" name="ai_form" start="<?php echo $start; ?>" end="<?php echo $end; ?>" gmt="<?php echo get_option ('gmt_offset') * 3600 * 1000; ?>" ai-settings="<?php echo base64_encode (admin_url ('options-general.php?page=ad-inserter.php'.$url_safe_mode)); ?>" ai-value="<?php echo base64_encode (wp_create_nonce ("adinserter_data")); ?>">
233
 
234
  <?php if (function_exists ('ai_connected_website')) {ai_connected_website ();} ?>
235
 
236
- <div id="header" class="ai-form header rounded">
237
  <div id= "ai-settings-header" style="float: left;">
238
  <h2 id="plugin_name" style="margin: 5px 0;"><?php do_action ('ai-settings-name-prefix'); echo ' ', function_exists ('ai_settings_version') ? ai_settings_version () : (AD_INSERTER_NAME . ' ' . AD_INSERTER_VERSION); ?></h2>
239
 
@@ -265,6 +277,10 @@ function generate_settings_form (){
265
 
266
  <span class="checkbox-button dashicons dashicons-book-alt" onclick="window.open('https://adinserter.pro/documentation')" title="<?php _e ('Online documentation', 'ad-inserter'); ?>"></span>
267
 
 
 
 
 
268
  <?php if (defined ('AI_ADSENSE_API')) : ?>
269
  <?php if (defined ('AI_ADSENSE_AUTHORIZATION_CODE')) : ?>
270
  <label id="adsense-list" class="checkbox-button" title="<?php _e ('Show AdSense ad units', 'ad-inserter'); ?>" ><span class="checkbox-icon icon-adsense"></span></label>
@@ -289,7 +305,7 @@ function generate_settings_form (){
289
  <div style="clear: both;"></div>
290
  </div>
291
 
292
- <div id="javascript-warning" class="ai-form rounded" style="display: none;">
293
  <h2 id="javascript-version" style="float: left; margin: 0; max-width: 85px; color: red;" title="<?php _e ('Loaded plugin JavaScript file version', 'ad-inserter'); ?>">&nbsp;</h2>
294
  <div style="float: right; max-width: 640px; text-align: right;">
295
  <span id="javascript-version-parameter" style="display: none;"><?php /* translators: %s: HTML tags */ printf (__ ('Wrong or %s missing version parameter %s of the JavaScript file, probably due to inappropriate caching.', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/troubleshooting#missing-version-parameter" class="simple-link" target="_blank">', '</a>'); ?><br /></span>
@@ -300,7 +316,7 @@ function generate_settings_form (){
300
  <div style="clear: both;"></div>
301
  </div>
302
 
303
- <div id="css-warning" class="ai-form rounded" style="display: none;">
304
  <h2 id="css-version" style="float: left; margin: 0; max-width: 85px; color: red;" title="<?php _e ('Loaded plugin CSS file version', 'ad-inserter'); ?>">&nbsp;</h2>
305
  <div style="float: right; max-width: 640px; text-align: right;">
306
  <span id="css-version-parameter" style="display: none;"><?php /* translators: %s: HTML tags */ printf (__ ('Wrong or %s missing version parameter %s of the CSS file, probably due to inappropriate caching.', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/troubleshooting#missing-version-parameter" class="simple-link" target="_blank">', '</a>'); ?><br /></span>
@@ -311,7 +327,7 @@ function generate_settings_form (){
311
  <div style="clear: both;"></div>
312
  </div>
313
 
314
- <div id="blocked-warning" class="ai-form warning-enabled rounded">
315
  <h2 class="blocked-warning-text" style="float: left; color: red; margin: 7px 0;" title="<?php _e ('Error loading page', 'ad-inserter'); ?>"><?php _e ('WARNING', 'ad-inserter'); ?></h2>
316
  <div style="float: right; text-align: right; width: 630px; margin: 8px 5px 0px 0;">
317
  <?php /* translators: %s: HTML tags */ printf (__ ('Page may %s not be loaded properly. %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/troubleshooting#page-blocked" class="simple-link" target="_blank">', '</a>'); ?>
@@ -323,7 +339,7 @@ function generate_settings_form (){
323
  <?php
324
  if (defined ('AI_SAFE_MODE') || isset ($_GET ['ai-safe-mode'])) {
325
  ?>
326
- <div class="ai-form warning-enabled rounded">
327
  <h2 class="blocked-warning-text" style="float: left; color: blue; margin: 7px 0;"><?php _e ('SAFE MODE', 'ad-inserter'); ?></h2>
328
  <div style="float: right; text-align: right; width: 630px; margin: 8px 5px 0px 0;">
329
  <?php /* translators: %s: HTML tags */ printf (__ ('Page is loaded in %s safe mode. %s Not all scripts are loaded.', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/troubleshooting#safe-mode" class="simple-link" target="_blank">', '</a>'); ?>
@@ -337,7 +353,7 @@ function generate_settings_form (){
337
  <?php
338
  if ($insertion_disabled):
339
  ?>
340
- <div id="debugging-warning" class="ai-form warning-enabled rounded">
341
  <h2 class="blocked-warning-text" style="float: left; color: red; margin: 7px 0;" title="<?php _e ('To disable debugging functions and to enable insertions go to tab [*] / tab Debugging', 'ad-inserter'); ?>"><?php _e ('WARNING', 'ad-inserter'); ?></h2>
342
  <div style="float: right; text-align: right; width: 630px; margin: 8px 5px 0px 0;">
343
  <?php _e ('Debugging functions enabled - some code is not inserted', 'ad-inserter'); echo ': &nbsp; &nbsp;<span style="font-weight: bold;">', $insertion_statuses, '</span>'; ?>
@@ -353,7 +369,7 @@ function generate_settings_form (){
353
  <li class="ai-rotate-option"><a></a></li>
354
  </ul>
355
 
356
- <div class="responsive-table rounded">
357
  <table class="ai-settings-table" style="">
358
  <tr>
359
  <td style="padding-right: 7px; min-width: 72px">
@@ -388,13 +404,13 @@ function generate_settings_form (){
388
 
389
  </div>
390
 
391
- <div id="ai-error-container" class="rounded" style="border-color: red; display: none;"></div>
392
 
393
  <div id="ai-container">
394
 
395
  <?php endif; // of code only for normal settings ?>
396
 
397
- <div id="ai-tab-container" class="ai-form rounded" style="padding-bottom: 1px;">
398
 
399
  <div id="dummy-tabs" style="height: 30px; padding: .2em .2em 0;"></div>
400
 
@@ -672,11 +688,9 @@ function generate_settings_form (){
672
  if ($parallax_options) break;
673
  }
674
 
675
- $recaptcha_vaild = function_exists ('get_recaptcha_site_key') && trim (get_recaptcha_site_key ()) != '' && trim (get_recaptcha_secret_key ()) != '' && is_numeric (get_recaptcha_threshold ());
676
-
677
  $display_options =
678
  $obj->get_block_width () != '' || $obj->get_block_height () != '' || $obj->get_block_background_color () != '' || $obj->get_show_label () ||
679
- $obj->get_lazy_loading () || $obj->get_wait_for_interaction () || $obj->get_protected () || ($recaptcha_vaild && $obj->get_check_recaptcha_score ()) ||$obj->get_manual_loading () != AI_MANUAL_LOADING_DISABLED ||
680
  $obj->get_close_button () || $obj->get_auto_close_time () || $obj->get_stay_closed_time () ||
681
  $obj->get_delay_time () || $obj->get_delay_showing () || $obj->get_show_every () ||
682
  $obj->get_iframe () ||
@@ -954,7 +968,7 @@ function generate_settings_form (){
954
  <li id="ai-amazon-<?php echo $block; ?>"><a href="#tab-amazon-<?php echo $block; ?>">Amazon</a></li>
955
  </ul>
956
 
957
- <div id="tab-banner-<?php echo $block; ?>" class="ai-banner ai-banner-top responsive-table rounded">
958
  <div class="banner-preview">
959
  <a id="banner-link-<?php echo $block; ?>" class="clear-link" target="_blank"><img id="banner-image-<?php echo $block; ?>" src="" style="display: none;" /></a>
960
  </div>
@@ -1005,7 +1019,7 @@ function generate_settings_form (){
1005
  <div style="clear: both;"></div>
1006
  </div>
1007
 
1008
- <div id="tab-adsense-<?php echo $block; ?>" class="responsive-table rounded">
1009
 
1010
  <table class="ai-settings-table left">
1011
  <tr>
@@ -1198,7 +1212,7 @@ function generate_settings_form (){
1198
 
1199
  </div>
1200
 
1201
- <div id="tab-amazon-<?php echo $block; ?>" class="responsive-table rounded">
1202
  <textarea id="amazon-data-<?php echo $block; ?>" style="background-color:#F9F9F9; font-family: monospace, Courier, 'Courier New'; font-weight: bold; width: 100%; height: 240px;"></textarea>
1203
 
1204
  <table class="ai-settings-table">
@@ -1259,7 +1273,7 @@ function generate_settings_form (){
1259
  <div style="clear: both;"></div>
1260
  </div>
1261
 
1262
- <div class="responsive-table small-button rounded">
1263
  <table id="page-types-<?php echo $block; ?>" class="ai-page-types">
1264
  <tr style="height: 27px;">
1265
  <td class="ai-page-type ai-po" style="width: 30%;">
@@ -1305,7 +1319,7 @@ function generate_settings_form (){
1305
  </table>
1306
  </div>
1307
 
1308
- <div id="block-exceptions-<?php echo $block; ?>" class="responsive-table rounded" style="<?php echo $exceptions_shown ? '' : 'display: none;'; ?>">
1309
 
1310
  <div style="min-height: 25px;">
1311
  <div style="float: left">
@@ -1378,7 +1392,7 @@ function generate_settings_form (){
1378
 
1379
  </div>
1380
 
1381
- <div class="responsive-table rounded">
1382
  <table>
1383
  <tbody>
1384
  <tr>
@@ -1498,7 +1512,7 @@ function generate_settings_form (){
1498
 
1499
  <?php if (function_exists ('ai_sticky_animation')) ai_sticky_animation ($block, $obj, $default); ?>
1500
 
1501
- <div id="html-element-settings-<?php echo $block; ?>" class="rounded" style="<?php echo $html_settings ? "" : " display: none;" ?>">
1502
  <div class="max-input" style="margin: 0 0 8px 0; height: 28px;">
1503
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1504
  <?php _e ('HTML element', 'ad-inserter'); ?>
@@ -1582,7 +1596,7 @@ function generate_settings_form (){
1582
  </div>
1583
  </div>
1584
 
1585
- <div id="paragraph-counting-<?php echo $block; ?>" class="rounded" style="<?php echo $paragraph_counting ? "" : "display: none;" ?>">
1586
  <div class="max-input" style="margin: 0 0 8px 0;">
1587
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1588
  <?php _e ('Count', 'ad-inserter'); ?>
@@ -1782,7 +1796,7 @@ function generate_settings_form (){
1782
  </div>
1783
  </div>
1784
 
1785
- <div id="paragraph-clearance-<?php echo $block; ?>" class="rounded" style="<?php echo $paragraph_clearance ? "" : "display: none;" ?>">
1786
  <div class="max-input" style="margin: 0 0 8px 0">
1787
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1788
  <?php _e ('In', 'ad-inserter'); ?>
@@ -1862,7 +1876,7 @@ function generate_settings_form (){
1862
  </div>
1863
  </div>
1864
 
1865
- <div class="responsive-table rounded" id="list-settings-<?php echo $block; ?>" style="<?php if (!$show_lists) echo ' display: none;'; ?>">
1866
  <table class="ai-lists" style="border-spacing: 0;">
1867
  <tbody>
1868
  <tr class="<?php if ($show_cat_list) echo 'list-items'; ?>" style="<?php if (!$show_cat_list) echo ' display: none;'; ?>">
@@ -2075,7 +2089,7 @@ function generate_settings_form (){
2075
  </table>
2076
  </div>
2077
 
2078
- <div id="manual-settings-<?php echo $block; ?>" class="small-button rounded" style="text-align: left;<?php if (!$show_manual) echo ' display: none;'; ?>">
2079
  <table>
2080
  <tr>
2081
  <td style="padding: 4px 10px 4px 0;">
@@ -2129,7 +2143,7 @@ function generate_settings_form (){
2129
  <li id="ai-server-side-detection<?php echo $block; ?>"><a href="#tab-server-side-<?php echo $block; ?>"><span style="<?php echo $server_side_style; ?>"><?php _e ('Server-side device detection', 'ad-inserter'); ?></span></a></li>
2130
  </ul>
2131
 
2132
- <div id="tab-client-side-<?php echo $block; ?>" class="rounded" style="padding-top: 0;">
2133
  <div style="float: left; margin-top: 10px;">
2134
  <input type="hidden" name="<?php echo AI_OPTION_DETECT_CLIENT_SIDE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
2135
  <input id="client-side-detection-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_DETECT_CLIENT_SIDE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_detection_client_side(); ?>" <?php if ($obj->get_detection_client_side ()==AI_ENABLED) echo 'checked '; ?> />
@@ -2191,7 +2205,7 @@ function generate_settings_form (){
2191
  <div style="clear: both"></div>
2192
  </div>
2193
 
2194
- <div id="tab-server-side-<?php echo $block; ?>" class="rounded">
2195
  <input type="hidden" name="<?php echo AI_OPTION_DETECT_SERVER_SIDE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
2196
  <input type="checkbox" name="<?php echo AI_OPTION_DETECT_SERVER_SIDE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="server-side-detection-<?php echo $block; ?>" value="1" default="<?php echo $default->get_detection_server_side(); ?>" <?php if ($obj->get_detection_server_side ()==AI_ENABLED) echo 'checked '; ?> />
2197
  <label for="server-side-detection-<?php echo $block; ?>" style="vertical-align: baseline;"><?php _e ('Use server-side detection to insert block only for', 'ad-inserter'); ?> </label>
@@ -2222,8 +2236,8 @@ function generate_settings_form (){
2222
  </ul>
2223
 
2224
  <div id="tab-insertion-<?php echo $block; ?>" class="max-input" style="padding: 0;">
2225
- <div class="rounded">
2226
- <table class="responsive-table" style="width: 70%">
2227
  <tbody>
2228
  <tr>
2229
  <td>
@@ -2253,8 +2267,8 @@ function generate_settings_form (){
2253
  </table>
2254
  </div>
2255
 
2256
- <div class="rounded">
2257
- <table class="responsive-table" style="width: 100%">
2258
  <tbody>
2259
  <tr>
2260
  <td style="width: 20%; padding-right: 10px;" title="<?php _e ('Maximum number of insertions of this block. Empty or 0 means no limit.', 'ad-inserter'); ?>">
@@ -2270,8 +2284,8 @@ function generate_settings_form (){
2270
  </table>
2271
  </div>
2272
 
2273
- <div class="rounded">
2274
- <table class="responsive-table" style="width: 100%">
2275
  <tbody>
2276
  <tr>
2277
  <td>
@@ -2310,7 +2324,7 @@ function generate_settings_form (){
2310
  </div>
2311
  </div>
2312
 
2313
- <div id="tab-filter-<?php echo $block; ?>" class="rounded">
2314
  <div class="max-input">
2315
  <span style="display: table-cell; width: 1px; white-space: nowrap; padding-right: 10px;">
2316
  <?php _e('Filter insertions', 'ad-inserter'); ?>
@@ -2343,7 +2357,7 @@ function generate_settings_form (){
2343
  </div>
2344
  </div>
2345
 
2346
- <div id="tab-word-count-<?php echo $block; ?>" class="rounded">
2347
  <?php _e ('Post/Static page must have between', 'ad-inserter'); ?>
2348
  <input type="text" name="<?php echo AI_OPTION_MIN_WORDS, WP_FORM_FIELD_POSTFIX, $block; ?>" style="margin: 0 1px;" default="<?php echo $default->get_minimum_words(); ?>" value="<?php echo $obj->get_minimum_words(); ?>" title="<?php _e ('Minimum number of post/static page words, leave empty for no limit', 'ad-inserter'); ?>" size="4" maxlength="6" />
2349
  <?php _e ('and', 'ad-inserter'); ?>
@@ -2351,7 +2365,7 @@ function generate_settings_form (){
2351
  <?php /* Translators: Post/Static page must have between X and Y words */ echo _n ('word', 'words', (int) $obj->get_maximum_words(), 'ad-inserter'); ?>
2352
  </div>
2353
 
2354
- <div id="tab-scheduling-<?php echo $block; ?>" class="rounded" style="min-height: 24px;">
2355
  <select id="scheduling-<?php echo $block; ?>" style="margin: 2px 1px; max-width: 340px;" name="<?php echo AI_OPTION_SCHEDULING, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_scheduling(); ?>">
2356
  <option value="<?php echo AI_SCHEDULING_OFF; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_OFF) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_INSERT_IMMEDIATELY; ?></option>
2357
  <option value="<?php echo AI_SCHEDULING_DELAY_FOR; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_DELAY_FOR) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DELAY_INSERTION; ?></option>
@@ -2368,8 +2382,8 @@ function generate_settings_form (){
2368
  </div>
2369
 
2370
  <div id="tab-display-<?php echo $block; ?>" style="padding: 0;">
2371
- <div class="rounded">
2372
- <table class="responsive-table" style="width: 100%;" cellspacing=0 cellpadding=0 >
2373
  <tbody>
2374
  <tr>
2375
  <td style="width: 10%;">
@@ -2413,7 +2427,7 @@ function generate_settings_form (){
2413
 
2414
  <?php if (function_exists ('ai_limits_adb_action')) ai_limits_adb_action ($block, $obj, $default); ?>
2415
 
2416
- <div id="tab-general-<?php echo $block; ?>" class="rounded">
2417
  <div class="max-input">
2418
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
2419
  <?php _e ('General tag', 'ad-inserter'); ?>
@@ -2428,7 +2442,7 @@ function generate_settings_form (){
2428
  </div>
2429
  </div>
2430
 
2431
- <div id="no-wrapping-warning-<?php echo $block; ?>" class="rounded" style="display: none;">
2432
  <span style="margin-top: 5px;"><?php /* translators: %s: HTML tags */ printf (__('%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for client-side device detection!', 'ad-inserter'), '<span style="color: red;">', '</span>', '<strong>', '</strong>'); ?></span>
2433
  </div>
2434
 
@@ -2442,7 +2456,7 @@ function generate_settings_form (){
2442
  ($obj->get_call_filter() != '' || $obj->get_maximum_insertions () != '');
2443
  ?>
2444
 
2445
- <div id="client-side-insertion-warning-<?php echo $block; ?>" class="rounded" style="<?php echo $client_side_insertion_warning ? '' : 'display: none;'; ?>">
2446
  <span style="margin-top: 5px;"><?php /* translators: %s: HTML tags for text and link */ printf (__('%s WARNING: %s Settings Filter or Max insertions can\'t work with %s Client-side %s insertion. Use %s Server-side %s insertion.', 'ad-inserter'),
2447
  '<span style="color: red;">', '</span>', '<strong>', '</strong>',
2448
  '<a href="https://adinserter.pro/documentation/insertion-before-inside-after-html-element#insertion" class="simple-link" target="_blank">',
@@ -2529,7 +2543,7 @@ function generate_settings_form (){
2529
 
2530
  <div id="tab-general" style="padding: 0;">
2531
 
2532
- <div class="rounded">
2533
  <table class="ai-settings-table ai-values" style="width: 100%;">
2534
  <?php if (function_exists ('ai_general_settings')) ai_general_settings (); ?>
2535
  <tr>
@@ -2739,7 +2753,7 @@ function generate_settings_form (){
2739
 
2740
  <?php if (function_exists ('ai_general_settings_3')) ai_general_settings_3 (); ?>
2741
 
2742
- <div class="rounded">
2743
  <table class="ai-settings-table" style="width: 100%;">
2744
  <tr>
2745
  <td>
@@ -2775,7 +2789,7 @@ function generate_settings_form (){
2775
 
2776
  <div id="tab-viewports" style="padding: 0;">
2777
 
2778
- <div class="rounded">
2779
  <div style="margin: 0 0 8px 0;">
2780
  <strong><?php _e ('Viewport Settings used for client-side device detection', 'ad-inserter'); ?></strong>
2781
  </div>
@@ -2797,7 +2811,7 @@ function generate_settings_form (){
2797
  ?>
2798
 
2799
  </div>
2800
- <div class="rounded">
2801
 
2802
  <div style="margin: 0 0 8px 0;">
2803
  <strong><?php _e ('Constants', 'ad-inserter'); ?></strong> &nbsp;&nbsp;
@@ -2822,7 +2836,7 @@ function generate_settings_form (){
2822
  </div>
2823
  </div>
2824
 
2825
- <div id="tab-hooks" class="rounded">
2826
  <div style="margin: 0 0 8px 0;">
2827
  <strong><?php _e ('Custom Hooks', 'ad-inserter'); ?></strong>
2828
  </div>
@@ -2904,7 +2918,7 @@ function generate_settings_form (){
2904
  <textarea id="block-h" name="<?php echo AI_OPTION_CODE, '_block_h'; ?>" class="simple-editor" style="background-color:#F9F9F9; font-family: monospace, Courier, 'Courier New'; font-weight: bold;" default=""><?php echo esc_textarea ($adH->get_ad_data()); ?></textarea>
2905
  </div>
2906
 
2907
- <div id="device-detection-settings-h" class="rounded">
2908
  <table>
2909
  <tbody>
2910
  <tr>
@@ -2973,7 +2987,7 @@ function generate_settings_form (){
2973
  <textarea id="block-f" name="<?php echo AI_OPTION_CODE, '_block_f'; ?>" class="simple-editor" style="background-color:#F9F9F9; font-family: monospace, Courier, 'Courier New'; font-weight: bold;" default=""><?php echo esc_textarea ($adF->get_ad_data()); ?></textarea>
2974
  </div>
2975
 
2976
- <div id="device-detection-settings-f" class="rounded">
2977
 
2978
  <table>
2979
  <tbody>
@@ -3028,7 +3042,7 @@ function generate_settings_form (){
3028
  <div style="clear: both;"></div>
3029
  </div>
3030
 
3031
- <div class="rounded" style="margin: 8px 0 8px;">
3032
  <table class="ai-settings-table" style="width: 100%;" cellpadding="0">
3033
  <tr>
3034
  <td style="width: 25%;">
@@ -3104,7 +3118,7 @@ function generate_settings_form (){
3104
  </table>
3105
  </div>
3106
 
3107
- <div id="adb-page-redirection" class="rounded">
3108
  <table class="ai-settings-table" style="width: 100%;">
3109
  <tr>
3110
  <td style="width: 25%;">
@@ -3170,7 +3184,7 @@ function generate_settings_form (){
3170
  <textarea id="block-a" name="<?php echo AI_OPTION_CODE, '_block_a'; ?>" class="simple-editor small" style="background-color:#F9F9F9; font-family: monospace, Courier, 'Courier New'; font-weight: bold;" default="<?php echo esc_textarea (AI_DEFAULT_ADB_MESSAGE); ?>"><?php echo esc_textarea ($adA->get_ad_data()); ?></textarea>
3171
  </div>
3172
 
3173
- <div class="rounded">
3174
  <table class="ai-settings-table" style="width: 100%;">
3175
  <tr>
3176
  <td style="width: 20%;">
@@ -3276,7 +3290,7 @@ function generate_settings_form (){
3276
  <div style="clear: both;"></div>
3277
  </div>
3278
 
3279
- <div class="rounded" style="margin: 8px 0 8px;">
3280
  <pre class="ai-page-code">
3281
  &lt;html&gt;
3282
  &lt;head&gt;
@@ -3306,7 +3320,7 @@ function generate_settings_form (){
3306
  &lt;/html&gt;</pre>
3307
  </div>
3308
 
3309
- <div class="rounded" style="margin: 8px 0 8px;">
3310
  <table class="ai-settings-table" style="width: 100%;">
3311
  <tr title="<?php echo $d1; ?>">
3312
  <td style="width: 45%;">
@@ -3646,6 +3660,7 @@ function generate_settings_form (){
3646
  replace_blocked_image ('ai-pro-2', 'ai-charts-250.png', 'block');
3647
  replace_blocked_image ('ai-pro-3', 'ai-countries-250.png', 'block');
3648
  replace_blocked_image ('ai-preview', 'ai-preview-250.png', 'block');
 
3649
  replace_blocked_image ('ai-adb', 'ai-adb.png', 'block');
3650
  replace_blocked_image ('ai-amp', 'ai-amp.png', 'block');
3651
  replace_blocked_image ('ai-stars-img', 'stars.png', 'inline');
@@ -3745,7 +3760,7 @@ function page_checker_container () {
3745
  } else $current_theme = wp_get_theme ();
3746
 
3747
  ?>
3748
- <div id="page-checker-container" class="ai-check-pages ai-form responsive-table rounded" style="background: rgb(255, 255, 255); display: none;">
3749
  <div style="margin-bottom: 10px; min-height: 24px;">
3750
  <?php echo __('Available positions for current theme', 'ad-inserter'), " <strong>", $current_theme->get ('Name'), " ", $current_theme->get ('Version'); ?></strong>
3751
  <span class="ai-error-message" style="margin-left: 30px; color: #f00; display: none;"><?php _e ('Error checking pages', 'ad-inserter'); ?>: <span class="ai-error-message-text"></span></span>
@@ -3850,7 +3865,7 @@ function page_checker_container () {
3850
  function code_block_list_container ($start, $end, $active_block) {
3851
  $blocks_sticky = function_exists ('ai_block_list_buttons') ? get_blocks_sticky () : false;
3852
  ?>
3853
- <div id="ai-list-container" class="ai-form rounded" style="background: #fff; <?php echo $blocks_sticky ? '' : 'display: none;'; ?>">
3854
  <div id='ai-list-controls' class='ui-widget' style='margin: 0 auto 8px;'>
3855
  <span style="vertical-align: middle; float: left;">
3856
  <input id="ai-list-search" type="text" value="" size="35" maxlength="40" />
@@ -3890,7 +3905,7 @@ if (defined ('AI_ADSENSE_API')) {
3890
 
3891
  function adsense_list_container () {
3892
  ?>
3893
- <div id="adsense-list-container" class="ai-form rounded" style="background: #fff; display: none;">
3894
  <div id='adsense-list-controls' class='ui-widget' style='margin: 0 auto 8px; display: none;'>
3895
  <span style="vertical-align: middle; float: left;">
3896
  <input id="adsense-list-search" type="text" value="" size="40" maxlength="40" />
@@ -3945,7 +3960,7 @@ function ads_txt_container () {
3945
  $ads_txt_file = $url_data ['scheme'] . '://' . $url_data ['host'] . '/ads.txt';
3946
 
3947
  ?>
3948
- <div id="ads-txt-container" class="ai-form rounded" style="background: #fff; display: none;">
3949
  <div id='ads-txt-controls' class='ui-widget' style='margin: 0 auto 8px; display: none;'>
3950
  <span style="vertical-align: middle; float: left;">
3951
  <input id="ads-txt-search" type="text" value="" size="40" maxlength="40" />
@@ -4062,7 +4077,7 @@ function ads_txt ($action) {
4062
  $wp_folder = str_replace ('/', DIRECTORY_SEPARATOR, $wp_folder);
4063
  }
4064
 
4065
- echo '<div class="rounded system-debugging" style="display: none;">';
4066
  echo "<pre style='margin: 0;'>\n";
4067
  echo "site_url ", site_url (), "\n";
4068
  echo "home_url ", home_url (), "\n";
@@ -4144,19 +4159,19 @@ function ads_txt ($action) {
4144
 
4145
  switch ($virtual) {
4146
  case true:
4147
- echo '<div class="rounded">';
4148
  // translators: %s: Ad Inserter
4149
  echo '<div>', sprintf (__('ads.txt file: %s virtual ads.txt file', 'ad-inserter'), AD_INSERTER_NAME), '</div>';
4150
  echo '</div>';
4151
 
4152
  if ($virtual_file_missing) {
4153
- echo '<div id="ads-txt-missing" class="rounded">';
4154
  echo '<div><strong><span style="color: red;">', __('Warning', 'ad-inserter'), ':</span></strong> ', /* translators: %s: Ad Inserter */ sprintf (__('%s virtual file ads.txt not found', 'ad-inserter'), AD_INSERTER_NAME), '</div>';
4155
  echo '</div>';
4156
  }
4157
  break;
4158
  default:
4159
- echo '<div class="rounded">';
4160
 
4161
  if ($wp_folder != '') {
4162
  echo '<div><strong><span style="color: red;">', __('IMPORTANT', 'ad-inserter'), '</span>: ', __('ads.txt file must be placed on the root domain', 'ad-inserter'), ' <a href="', $ads_txt_url, '" target="_blank" class="simple-link">', $ads_txt_url, '</a></strong></div>';
@@ -4170,7 +4185,7 @@ function ads_txt ($action) {
4170
  echo '</div>';
4171
 
4172
  if (!file_exists ($ads_txt_file)) {
4173
- echo '<div id="ads-txt-missing" class="rounded">';
4174
  echo '<div><strong><span style="color: red;">', __('Warning', 'ad-inserter'), ':</span></strong> ', sprintf (__('file %s not found', 'ad-inserter'), $ads_txt_file), '</div>';
4175
  echo '</div>';
4176
  }
@@ -4743,7 +4758,6 @@ function adsense_list () {
4743
  $row_color = $row_counter % 2 == 0 ? '#eee' : '#fff';
4744
 
4745
  ?>
4746
- <!-- <tr style="background: <?php echo $row_color; ?>" data-id="ca-<?php echo $publisher_id, ':', $ad_unit ['code']; ?>" data-name="<?php echo base64_encode ($ad_unit ['name']); ?>">-->
4747
  <tr style="background: <?php echo $row_color; ?>" data-id="<?php echo $ad_unit ['id']; ?>" data-name="<?php echo base64_encode ($ad_unit ['name']); ?>">
4748
  <td>
4749
  <span class="ai-list-button">
@@ -4798,11 +4812,11 @@ function adsense_list () {
4798
  $adsense = new adsense_api();
4799
  $adsense_ids = defined ('AI_CI_STRING') && get_option (AI_ADSENSE_OWN_IDS) === false;
4800
  ?>
4801
- <table class="responsive-table" cellspacing=0 cellpadding=0 style="width: 100%;">
4802
  <tbody>
4803
  <tr>
4804
  <td colspan="2" style="white-space: inherit;">
4805
- <div class="rounded" style="margin: 0;">
4806
  <?php if ($adsense_ids): ?>
4807
  <h2 style="margin: 5px 0; float: left;"><strong><?php echo AD_INSERTER_NAME; ?></strong> <?php _e ('AdSense Integration', 'ad-inserter'); ?></h2>
4808
  <?php else: ?>
@@ -4812,22 +4826,10 @@ function adsense_list () {
4812
  <div style="clear: both;"></div>
4813
  </div>
4814
  <?php if ($adsense_ids): ?>
4815
- <p style="text-align: justify;"><?php /* translators: %s: HTML tags */ printf (__('Authorize %s to access your AdSense account. Click on the %s Get Authorization Code %s button to open a new window where you can allow access. When you get the code copy it to the field below and click on the button %s Authorize. %s', 'ad-inserter'),
4816
- AD_INSERTER_NAME,
4817
- '<strong>',
4818
- '</strong>',
4819
- '<strong>',
4820
- '</strong>'
4821
- ); ?></p>
4822
- <p style="text-align: justify;"><?php /* translators: %s: HTML tags */ printf (__("If you get error, can't access ad units or would like to use own Google API IDs click on the button %s Use own API IDs %s to enter Client ID and Client Secret.", 'ad-inserter'), '<strong>', '</strong>'); ?></p>
4823
  <?php else: ?>
4824
- <p style="text-align: justify;"><?php /* translators: %s: HTML tags */ printf (__('Now you can authorize %s to access your AdSense account. Click on the %s Get Authorization Code %s button to open a new window where you can allow access. When you get the code copy it to the field below and click on the button %s Authorize. %s', 'ad-inserter'),
4825
- AD_INSERTER_NAME,
4826
- '<strong>',
4827
- '</strong>',
4828
- '<strong>',
4829
- '</strong>'
4830
- ); ?></p>
4831
  <p style="text-align: justify;"><?php /* translators: %s: HTML tags */ printf (__('If you get error %s invalid client %s click on the button %s Clear and return to Step 1 %s to re-enter Client ID and Client Secret.', 'ad-inserter'),
4832
  '<strong>',
4833
  '</strong>',
@@ -4837,28 +4839,20 @@ function adsense_list () {
4837
  <?php endif; ?>
4838
  </td>
4839
  </tr>
4840
- <tr>
4841
- <td style="padding-right: 10px;">
4842
- <button type="button" class="ai-top-button" style="display: none; width: 162px; outline: none;" onclick="window.open('<?php echo $adsense->getAuthUrl (); ?>')"><?php _e ('Get Authorization Code', 'ad-inserter'); ?></button>
4843
- </td>
4844
- <td>
4845
- <input id="adsense-authorization-code" style="width: 100%;" type="text" value="" size="100" maxlength="200" title="<?php _e ('Enter Authorization Code', 'ad-inserter'); ?>"/>
4846
- </td>
4847
- </tr>
4848
- <tr>
4849
- <td>&nbsp;</td>
4850
- <td>&nbsp;</td>
4851
- </tr>
4852
- <tr>
4853
  <td>
4854
  <?php if ($adsense_ids): ?>
4855
- <button type="button" class="ai-top-button authorize-adsense own-ids" style="display: none; float: left; width: 162px; outline: none;"><?php _e ('Use own API IDs', 'ad-inserter'); ?></button>
4856
  <?php else: ?>
4857
  <button type="button" class="ai-top-button authorize-adsense clear-adsense" style="display: none; float: left; width: 162px; outline: none;"><?php _e ('Clear and return to Step 1', 'ad-inserter'); ?></button>
4858
  <?php endif; ?>
4859
  </td>
4860
  <td>
4861
- <button type="button" class="ai-top-button authorize-adsense" style="display: none; float: right; width: 162px; outline: none;"><?php _e ('Authorize', 'ad-inserter'); ?></button>
4862
  </td>
4863
  </tr>
4864
  </tbody>
@@ -4869,11 +4863,11 @@ function adsense_list () {
4869
 
4870
  else {
4871
  ?>
4872
- <table class="responsive-table" cellspacing=0 cellpadding=0 style="width: 100%;">
4873
  <tbody>
4874
  <tr>
4875
  <td colspan="2" style="white-space: inherit;">
4876
- <div class="rounded" style="margin: 0;">
4877
  <h2 style="margin: 5px 0; float: left;"><strong><?php echo AD_INSERTER_NAME; ?></strong> <?php _e ('AdSense Integration - Step 1', 'ad-inserter'); ?></h2>
4878
  <a href="https://www.google.com/adsense/login" class="simple-link" style="float: right;" target="_blank" title="<?php _e ('Google AdSense Homepage', 'ad-inserter'); ?>"><span class="checkbox-icon icon-adsense on" style="margin: 4px 0;"></span></a>
4879
  <div style="clear: both;"></div>
@@ -5599,33 +5593,33 @@ function ai_check_page () {
5599
  function sidebar_addense_alternative () { ?>
5600
 
5601
  <?php
5602
- switch (rand (1, 16)) {
5603
  case 1:
5604
  case 2:
5605
  case 3:
5606
  case 4:
5607
  ?>
5608
- <div class="ai-form header rounded">
5609
- <div style="float: left;">
5610
- <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Maximize Your Ad Revenue With Header Bidding', 'ad-inserter'); ?></h2>
5611
- </div>
5612
- <div style="clear: both;"></div>
5613
- </div>
5614
- <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
5615
- <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>
5616
- </div>
5617
  <?php
5618
  break;
5619
  case 5:
5620
  case 6:
5621
  ?>
5622
- <div class="ai-form header rounded">
5623
  <div style="float: left;">
5624
  <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Blank ad blocks? Looking for AdSense alternative?', 'ad-inserter'); ?></h2>
5625
  </div>
5626
  <div style="clear: both;"></div>
5627
  </div>
5628
- <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
5629
  <a href='https://www.ezoic.com/?utm_source=ad-inserter&utm_medium=ads&utm_campaign=ad-inserter-ads&utm_term=adinserter&utm_content=ezoic' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-ez-8" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ez-8.jpg" /></a>
5630
  </div>
5631
  <?php
@@ -5633,13 +5627,13 @@ function sidebar_addense_alternative () { ?>
5633
  case 7:
5634
  case 8:
5635
  ?>
5636
- <div class="ai-form header rounded">
5637
  <div style="float: left;">
5638
  <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Blank ad blocks? Looking for AdSense alternative?', 'ad-inserter'); ?></h2>
5639
  </div>
5640
  <div style="clear: both;"></div>
5641
  </div>
5642
- <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
5643
  <a href='https://www.ezoic.com/?utm_source=ad-inserter&utm_medium=ads&utm_campaign=ad-inserter-ads&utm_term=adinserter&utm_content=ezoic' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-ez-6" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ez-6.png" /></a>
5644
  </div>
5645
  <?php
@@ -5650,13 +5644,13 @@ function sidebar_addense_alternative () { ?>
5650
  case 11:
5651
  case 12:
5652
  ?>
5653
- <div class="ai-form header rounded">
5654
  <div style="float: left;">
5655
  <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Try Infolinks Ads with Adsense or Media.net ads', 'ad-inserter'); ?></h2>
5656
  </div>
5657
  <div style="clear: both;"></div>
5658
  </div>
5659
- <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
5660
  <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-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-1.jpg" /></a>
5661
  </div>
5662
  <?php
@@ -5667,13 +5661,13 @@ function sidebar_addense_alternative () { ?>
5667
  case 15:
5668
  case 16:
5669
  ?>
5670
- <div class="ai-form header rounded">
5671
  <div style="float: left;">
5672
  <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Maximize Revenue', 'ad-inserter'); ?></h2>
5673
  </div>
5674
  <div style="clear: both;"></div>
5675
  </div>
5676
- <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
5677
  <a href="https://underdogmedia.com/edge-publisher-adinserter/" class="clear-link" title="<?php _e ('Maximize Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-um-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>um-1.png" /></a>
5678
  </div>
5679
  <?php
@@ -5694,7 +5688,7 @@ function sidebar_support_review () {
5694
 
5695
  if (!wp_is_mobile () && is_super_admin ()) {
5696
  ?>
5697
- <div class="ai-form header no-select rounded" style="position: relative; text-align: justify;">
5698
 
5699
  <div style="float: left;">
5700
  <h2 style="display: inline-block; margin: 7px 0;"><?php _e ('Support plugin development', 'ad-inserter'); ?></h2>
@@ -5745,7 +5739,7 @@ function sidebar_support_review () {
5745
  function sidebar_support_plugin () {
5746
  global $rating_value, $rating_string, $rating_css;
5747
  ?>
5748
- <div class="ai-form header rounded no-select">
5749
  <div style="float: left;">
5750
  <h2 style="display: inline-block; margin: 7px 0;"><?php _e ('Support plugin development', 'ad-inserter'); ?></h2>
5751
  <button type="button" class="ai-top-button" style="display: none; margin: -5px 0px 0px 15px; min-width; 165px; width: 62px; outline: none;" onclick="window.open('https://wordpress.org/support/plugin/ad-inserter/reviews/?filter=5#new-post')" title="<?php _e ('If you like Ad Inserter and have a moment, please help me spread the word by reviewing the plugin on WordPres', 'ad-inserter'); ?>"><?php _e ('Review', 'ad-inserter'); ?></button>
@@ -5780,7 +5774,7 @@ function sidebar_support_plugin () {
5780
 
5781
  function sidebar_help () { ?>
5782
 
5783
- <div class="ai-form header rounded ai-help">
5784
  <div style="float: left;">
5785
  <div>
5786
  <?php /* translators: %s: HTML tags */ printf (__('Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s and %s Common Settings %s pages', 'ad-inserter'),
@@ -5843,7 +5837,7 @@ function sidebar_pro () {
5843
 
5844
  ?>
5845
 
5846
- <div class="ai-form rounded no-select feature-list" style="background: #fff;">
5847
 
5848
  <?php if (!wp_is_mobile()): ?>
5849
  <div id="ai-sidebar-right">
@@ -5853,8 +5847,8 @@ function sidebar_pro () {
5853
  <!-- <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>-->
5854
  <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>
5855
  <?php break; case 1: ?>
5856
- <!-- <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>-->
5857
- <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>
5858
  <?php break; case 2: ?>
5859
  <!-- <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>-->
5860
  <a href="https://underdogmedia.com/edge-publisher-adinserter/" class="clear-link" title="<?php _e ('Maximize Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-um-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>um-2.png" /></a>
@@ -5867,8 +5861,8 @@ function sidebar_pro () {
5867
  <?php switch ($version) {
5868
  case 0:
5869
  ?>
5870
- <!-- <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>-->
5871
- <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>
5872
  <?php break;
5873
  case 1:
5874
  ?>
@@ -5896,8 +5890,8 @@ function sidebar_pro () {
5896
  <!-- <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>-->
5897
  <a href="https://underdogmedia.com/edge-publisher-adinserter/" class="clear-link" title="<?php _e ('Maximize Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-um-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>um-2.png" /></a>
5898
  <?php break; case 2: ?>
5899
- <!-- <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>-->
5900
- <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>
5901
  <?php break; case 3: ?>
5902
  <!-- <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>-->
5903
  <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>
@@ -5925,7 +5919,22 @@ function sidebar_pro () {
5925
  <?php break;
5926
  case 3:
5927
  ?>
5928
- <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>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5929
  <?php break;
5930
  } ?>
5931
  </div>
@@ -5968,6 +5977,7 @@ function sidebar_pro () {
5968
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s A/B testing %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking#ab-testing" class="simple-link" target="_blank">', '</a>'); ?></li>
5969
  <li><?php /* translators: %s HTML tags */ printf (__('Frequency capping - %s limit impressions or clicks %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-limiting" class="simple-link" target="_blank">', '</a>'); ?></li>
5970
  <li><?php /* translators: %s HTML tags */ printf (__('Click fraud %s protection %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-limiting#click-fraud-protection" class="simple-link" target="_blank">', '</a>'); ?></li>
 
5971
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s GDPR consent cookie checks %s', 'ad-inserter'), '<a href="https://adinserter.pro/faq/gdpr-compliance-cookies-consent" class="simple-link" target="_blank">', '</a>'); ?></li>
5972
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s lazy loading %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/additional-block-settings#lazy-loading" class="simple-link" target="_blank">', '</a>'); ?></li>
5973
  <li><?php /* translators: %s HTML tags */ printf (__('Support for ads on %s AMP pages %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/amp-pages" class="simple-link" target="_blank">', '</a>'); ?></li>
@@ -6004,7 +6014,7 @@ function sidebar_pro () {
6004
 
6005
  function sidebar_pro_small () { ?>
6006
 
6007
- <div class="ai-form header rounded" style="padding-bottom: 0;">
6008
  <div style="float: left;">
6009
  <a href="https://adinserter.pro/" class="simple-link" target="_blank"><img src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>icon-256x256.jpg" style="width: 100px;" /></a>
6010
  </div>
14
  } else $url_safe_mode = '';
15
 
16
  if (defined ('AI_ADSENSE_API')) {
17
+ if (isset ($_GET ["nonce"]) && $_GET ["nonce"] == wp_create_nonce ("adinserter_data")) {
18
+ if (isset ($_GET ["ai-oauth-code"]) && $_GET ["ai-oauth-code"] != '') {
19
+ $oauth_code = base64_decode ($_GET ["ai-oauth-code"]);
20
+ if ($oauth_code !== false) {
21
+ update_option (AI_ADSENSE_AUTH_CODE, $oauth_code);
22
+
23
+ $redirect_url = admin_url ('options-general.php?page=ad-inserter.php'.$url_safe_mode);
24
+ header ('Location: ' . $redirect_url);
25
+ }
26
+ }
27
+ }
28
+
29
  require_once AD_INSERTER_PLUGIN_DIR.'includes/adsense-api.php';
30
  }
31
 
241
 
242
  <div id="ai-settings" style="float: left;" data-home-url="<?php echo home_url (); ?>/" data-home-relative-url="<?php echo wp_make_link_relative (get_site_url ()); ?>/">
243
 
244
+ <form id="ai-form" class="no-select ai-rounded<?php echo function_exists ('ai_settings_flags') ? ai_settings_flags () : ''; ?>" style="float: left;" action="<?php echo esc_attr ($save_url); ?>" method="post" name="ai_form" start="<?php echo $start; ?>" end="<?php echo $end; ?>" gmt="<?php echo get_option ('gmt_offset') * 3600 * 1000; ?>" ai-settings="<?php echo base64_encode (admin_url ('options-general.php?page=ad-inserter.php'.$url_safe_mode)); ?>" ai-value="<?php echo base64_encode (wp_create_nonce ("adinserter_data")); ?>">
245
 
246
  <?php if (function_exists ('ai_connected_website')) {ai_connected_website ();} ?>
247
 
248
+ <div id="header" class="ai-form header ai-rounded">
249
  <div id= "ai-settings-header" style="float: left;">
250
  <h2 id="plugin_name" style="margin: 5px 0;"><?php do_action ('ai-settings-name-prefix'); echo ' ', function_exists ('ai_settings_version') ? ai_settings_version () : (AD_INSERTER_NAME . ' ' . AD_INSERTER_VERSION); ?></h2>
251
 
277
 
278
  <span class="checkbox-button dashicons dashicons-book-alt" onclick="window.open('https://adinserter.pro/documentation')" title="<?php _e ('Online documentation', 'ad-inserter'); ?>"></span>
279
 
280
+ <?php if (!function_exists ('ai_data_2')) : ?>
281
+ <span class="checkbox-button dashicons dashicons-editor-help" onclick="window.open('https://wordpress.org/support/plugin/ad-inserter/')" title="<?php _e ('Support Forum', 'ad-inserter'); ?>"></span>
282
+ <?php endif; ?>
283
+
284
  <?php if (defined ('AI_ADSENSE_API')) : ?>
285
  <?php if (defined ('AI_ADSENSE_AUTHORIZATION_CODE')) : ?>
286
  <label id="adsense-list" class="checkbox-button" title="<?php _e ('Show AdSense ad units', 'ad-inserter'); ?>" ><span class="checkbox-icon icon-adsense"></span></label>
305
  <div style="clear: both;"></div>
306
  </div>
307
 
308
+ <div id="javascript-warning" class="ai-form ai-rounded" style="display: none;">
309
  <h2 id="javascript-version" style="float: left; margin: 0; max-width: 85px; color: red;" title="<?php _e ('Loaded plugin JavaScript file version', 'ad-inserter'); ?>">&nbsp;</h2>
310
  <div style="float: right; max-width: 640px; text-align: right;">
311
  <span id="javascript-version-parameter" style="display: none;"><?php /* translators: %s: HTML tags */ printf (__ ('Wrong or %s missing version parameter %s of the JavaScript file, probably due to inappropriate caching.', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/troubleshooting#missing-version-parameter" class="simple-link" target="_blank">', '</a>'); ?><br /></span>
316
  <div style="clear: both;"></div>
317
  </div>
318
 
319
+ <div id="css-warning" class="ai-form ai-rounded" style="display: none;">
320
  <h2 id="css-version" style="float: left; margin: 0; max-width: 85px; color: red;" title="<?php _e ('Loaded plugin CSS file version', 'ad-inserter'); ?>">&nbsp;</h2>
321
  <div style="float: right; max-width: 640px; text-align: right;">
322
  <span id="css-version-parameter" style="display: none;"><?php /* translators: %s: HTML tags */ printf (__ ('Wrong or %s missing version parameter %s of the CSS file, probably due to inappropriate caching.', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/troubleshooting#missing-version-parameter" class="simple-link" target="_blank">', '</a>'); ?><br /></span>
327
  <div style="clear: both;"></div>
328
  </div>
329
 
330
+ <div id="blocked-warning" class="ai-form warning-enabled ai-rounded">
331
  <h2 class="blocked-warning-text" style="float: left; color: red; margin: 7px 0;" title="<?php _e ('Error loading page', 'ad-inserter'); ?>"><?php _e ('WARNING', 'ad-inserter'); ?></h2>
332
  <div style="float: right; text-align: right; width: 630px; margin: 8px 5px 0px 0;">
333
  <?php /* translators: %s: HTML tags */ printf (__ ('Page may %s not be loaded properly. %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/troubleshooting#page-blocked" class="simple-link" target="_blank">', '</a>'); ?>
339
  <?php
340
  if (defined ('AI_SAFE_MODE') || isset ($_GET ['ai-safe-mode'])) {
341
  ?>
342
+ <div class="ai-form warning-enabled ai-rounded">
343
  <h2 class="blocked-warning-text" style="float: left; color: blue; margin: 7px 0;"><?php _e ('SAFE MODE', 'ad-inserter'); ?></h2>
344
  <div style="float: right; text-align: right; width: 630px; margin: 8px 5px 0px 0;">
345
  <?php /* translators: %s: HTML tags */ printf (__ ('Page is loaded in %s safe mode. %s Not all scripts are loaded.', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/troubleshooting#safe-mode" class="simple-link" target="_blank">', '</a>'); ?>
353
  <?php
354
  if ($insertion_disabled):
355
  ?>
356
+ <div id="debugging-warning" class="ai-form warning-enabled ai-rounded">
357
  <h2 class="blocked-warning-text" style="float: left; color: red; margin: 7px 0;" title="<?php _e ('To disable debugging functions and to enable insertions go to tab [*] / tab Debugging', 'ad-inserter'); ?>"><?php _e ('WARNING', 'ad-inserter'); ?></h2>
358
  <div style="float: right; text-align: right; width: 630px; margin: 8px 5px 0px 0;">
359
  <?php _e ('Debugging functions enabled - some code is not inserted', 'ad-inserter'); echo ': &nbsp; &nbsp;<span style="font-weight: bold;">', $insertion_statuses, '</span>'; ?>
369
  <li class="ai-rotate-option"><a></a></li>
370
  </ul>
371
 
372
+ <div class="ai-responsive-table ai-rounded">
373
  <table class="ai-settings-table" style="">
374
  <tr>
375
  <td style="padding-right: 7px; min-width: 72px">
404
 
405
  </div>
406
 
407
+ <div id="ai-error-container" class="ai-rounded" style="border-color: red; display: none;"></div>
408
 
409
  <div id="ai-container">
410
 
411
  <?php endif; // of code only for normal settings ?>
412
 
413
+ <div id="ai-tab-container" class="ai-form ai-rounded" style="padding-bottom: 1px;">
414
 
415
  <div id="dummy-tabs" style="height: 30px; padding: .2em .2em 0;"></div>
416
 
688
  if ($parallax_options) break;
689
  }
690
 
 
 
691
  $display_options =
692
  $obj->get_block_width () != '' || $obj->get_block_height () != '' || $obj->get_block_background_color () != '' || $obj->get_show_label () ||
693
+ $obj->get_lazy_loading () || $obj->get_wait_for_interaction () || $obj->get_protected () || $obj->get_check_recaptcha_score () ||$obj->get_manual_loading () != AI_MANUAL_LOADING_DISABLED ||
694
  $obj->get_close_button () || $obj->get_auto_close_time () || $obj->get_stay_closed_time () ||
695
  $obj->get_delay_time () || $obj->get_delay_showing () || $obj->get_show_every () ||
696
  $obj->get_iframe () ||
968
  <li id="ai-amazon-<?php echo $block; ?>"><a href="#tab-amazon-<?php echo $block; ?>">Amazon</a></li>
969
  </ul>
970
 
971
+ <div id="tab-banner-<?php echo $block; ?>" class="ai-banner ai-banner-top ai-responsive-table ai-rounded">
972
  <div class="banner-preview">
973
  <a id="banner-link-<?php echo $block; ?>" class="clear-link" target="_blank"><img id="banner-image-<?php echo $block; ?>" src="" style="display: none;" /></a>
974
  </div>
1019
  <div style="clear: both;"></div>
1020
  </div>
1021
 
1022
+ <div id="tab-adsense-<?php echo $block; ?>" class="ai-responsive-table ai-rounded">
1023
 
1024
  <table class="ai-settings-table left">
1025
  <tr>
1212
 
1213
  </div>
1214
 
1215
+ <div id="tab-amazon-<?php echo $block; ?>" class="ai-responsive-table ai-rounded">
1216
  <textarea id="amazon-data-<?php echo $block; ?>" style="background-color:#F9F9F9; font-family: monospace, Courier, 'Courier New'; font-weight: bold; width: 100%; height: 240px;"></textarea>
1217
 
1218
  <table class="ai-settings-table">
1273
  <div style="clear: both;"></div>
1274
  </div>
1275
 
1276
+ <div class="ai-responsive-table ai-small-button ai-rounded">
1277
  <table id="page-types-<?php echo $block; ?>" class="ai-page-types">
1278
  <tr style="height: 27px;">
1279
  <td class="ai-page-type ai-po" style="width: 30%;">
1319
  </table>
1320
  </div>
1321
 
1322
+ <div id="block-exceptions-<?php echo $block; ?>" class="ai-responsive-table ai-rounded" style="<?php echo $exceptions_shown ? '' : 'display: none;'; ?>">
1323
 
1324
  <div style="min-height: 25px;">
1325
  <div style="float: left">
1392
 
1393
  </div>
1394
 
1395
+ <div class="ai-responsive-table ai-rounded">
1396
  <table>
1397
  <tbody>
1398
  <tr>
1512
 
1513
  <?php if (function_exists ('ai_sticky_animation')) ai_sticky_animation ($block, $obj, $default); ?>
1514
 
1515
+ <div id="html-element-settings-<?php echo $block; ?>" class="ai-rounded" style="<?php echo $html_settings ? "" : " display: none;" ?>">
1516
  <div class="max-input" style="margin: 0 0 8px 0; height: 28px;">
1517
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1518
  <?php _e ('HTML element', 'ad-inserter'); ?>
1596
  </div>
1597
  </div>
1598
 
1599
+ <div id="paragraph-counting-<?php echo $block; ?>" class="ai-rounded" style="<?php echo $paragraph_counting ? "" : "display: none;" ?>">
1600
  <div class="max-input" style="margin: 0 0 8px 0;">
1601
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1602
  <?php _e ('Count', 'ad-inserter'); ?>
1796
  </div>
1797
  </div>
1798
 
1799
+ <div id="paragraph-clearance-<?php echo $block; ?>" class="ai-rounded" style="<?php echo $paragraph_clearance ? "" : "display: none;" ?>">
1800
  <div class="max-input" style="margin: 0 0 8px 0">
1801
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1802
  <?php _e ('In', 'ad-inserter'); ?>
1876
  </div>
1877
  </div>
1878
 
1879
+ <div class="ai-responsive-table ai-rounded" id="list-settings-<?php echo $block; ?>" style="<?php if (!$show_lists) echo ' display: none;'; ?>">
1880
  <table class="ai-lists" style="border-spacing: 0;">
1881
  <tbody>
1882
  <tr class="<?php if ($show_cat_list) echo 'list-items'; ?>" style="<?php if (!$show_cat_list) echo ' display: none;'; ?>">
2089
  </table>
2090
  </div>
2091
 
2092
+ <div id="manual-settings-<?php echo $block; ?>" class="ai-small-button ai-rounded" style="text-align: left;<?php if (!$show_manual) echo ' display: none;'; ?>">
2093
  <table>
2094
  <tr>
2095
  <td style="padding: 4px 10px 4px 0;">
2143
  <li id="ai-server-side-detection<?php echo $block; ?>"><a href="#tab-server-side-<?php echo $block; ?>"><span style="<?php echo $server_side_style; ?>"><?php _e ('Server-side device detection', 'ad-inserter'); ?></span></a></li>
2144
  </ul>
2145
 
2146
+ <div id="tab-client-side-<?php echo $block; ?>" class="ai-rounded" style="padding-top: 0;">
2147
  <div style="float: left; margin-top: 10px;">
2148
  <input type="hidden" name="<?php echo AI_OPTION_DETECT_CLIENT_SIDE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
2149
  <input id="client-side-detection-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_DETECT_CLIENT_SIDE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_detection_client_side(); ?>" <?php if ($obj->get_detection_client_side ()==AI_ENABLED) echo 'checked '; ?> />
2205
  <div style="clear: both"></div>
2206
  </div>
2207
 
2208
+ <div id="tab-server-side-<?php echo $block; ?>" class="ai-rounded">
2209
  <input type="hidden" name="<?php echo AI_OPTION_DETECT_SERVER_SIDE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
2210
  <input type="checkbox" name="<?php echo AI_OPTION_DETECT_SERVER_SIDE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="server-side-detection-<?php echo $block; ?>" value="1" default="<?php echo $default->get_detection_server_side(); ?>" <?php if ($obj->get_detection_server_side ()==AI_ENABLED) echo 'checked '; ?> />
2211
  <label for="server-side-detection-<?php echo $block; ?>" style="vertical-align: baseline;"><?php _e ('Use server-side detection to insert block only for', 'ad-inserter'); ?> </label>
2236
  </ul>
2237
 
2238
  <div id="tab-insertion-<?php echo $block; ?>" class="max-input" style="padding: 0;">
2239
+ <div class="ai-rounded">
2240
+ <table class="ai-responsive-table" style="width: 70%">
2241
  <tbody>
2242
  <tr>
2243
  <td>
2267
  </table>
2268
  </div>
2269
 
2270
+ <div class="ai-rounded">
2271
+ <table class="ai-responsive-table" style="width: 100%">
2272
  <tbody>
2273
  <tr>
2274
  <td style="width: 20%; padding-right: 10px;" title="<?php _e ('Maximum number of insertions of this block. Empty or 0 means no limit.', 'ad-inserter'); ?>">
2284
  </table>
2285
  </div>
2286
 
2287
+ <div class="ai-rounded">
2288
+ <table class="ai-responsive-table" style="width: 100%">
2289
  <tbody>
2290
  <tr>
2291
  <td>
2324
  </div>
2325
  </div>
2326
 
2327
+ <div id="tab-filter-<?php echo $block; ?>" class="ai-rounded">
2328
  <div class="max-input">
2329
  <span style="display: table-cell; width: 1px; white-space: nowrap; padding-right: 10px;">
2330
  <?php _e('Filter insertions', 'ad-inserter'); ?>
2357
  </div>
2358
  </div>
2359
 
2360
+ <div id="tab-word-count-<?php echo $block; ?>" class="ai-rounded">
2361
  <?php _e ('Post/Static page must have between', 'ad-inserter'); ?>
2362
  <input type="text" name="<?php echo AI_OPTION_MIN_WORDS, WP_FORM_FIELD_POSTFIX, $block; ?>" style="margin: 0 1px;" default="<?php echo $default->get_minimum_words(); ?>" value="<?php echo $obj->get_minimum_words(); ?>" title="<?php _e ('Minimum number of post/static page words, leave empty for no limit', 'ad-inserter'); ?>" size="4" maxlength="6" />
2363
  <?php _e ('and', 'ad-inserter'); ?>
2365
  <?php /* Translators: Post/Static page must have between X and Y words */ echo _n ('word', 'words', (int) $obj->get_maximum_words(), 'ad-inserter'); ?>
2366
  </div>
2367
 
2368
+ <div id="tab-scheduling-<?php echo $block; ?>" class="ai-rounded" style="min-height: 24px;">
2369
  <select id="scheduling-<?php echo $block; ?>" style="margin: 2px 1px; max-width: 340px;" name="<?php echo AI_OPTION_SCHEDULING, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_scheduling(); ?>">
2370
  <option value="<?php echo AI_SCHEDULING_OFF; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_OFF) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_INSERT_IMMEDIATELY; ?></option>
2371
  <option value="<?php echo AI_SCHEDULING_DELAY_FOR; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_DELAY_FOR) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DELAY_INSERTION; ?></option>
2382
  </div>
2383
 
2384
  <div id="tab-display-<?php echo $block; ?>" style="padding: 0;">
2385
+ <div class="ai-rounded">
2386
+ <table class="ai-responsive-table" style="width: 100%;" cellspacing=0 cellpadding=0 >
2387
  <tbody>
2388
  <tr>
2389
  <td style="width: 10%;">
2427
 
2428
  <?php if (function_exists ('ai_limits_adb_action')) ai_limits_adb_action ($block, $obj, $default); ?>
2429
 
2430
+ <div id="tab-general-<?php echo $block; ?>" class="ai-rounded">
2431
  <div class="max-input">
2432
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
2433
  <?php _e ('General tag', 'ad-inserter'); ?>
2442
  </div>
2443
  </div>
2444
 
2445
+ <div id="no-wrapping-warning-<?php echo $block; ?>" class="ai-rounded" style="display: none;">
2446
  <span style="margin-top: 5px;"><?php /* translators: %s: HTML tags */ printf (__('%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for client-side device detection!', 'ad-inserter'), '<span style="color: red;">', '</span>', '<strong>', '</strong>'); ?></span>
2447
  </div>
2448
 
2456
  ($obj->get_call_filter() != '' || $obj->get_maximum_insertions () != '');
2457
  ?>
2458
 
2459
+ <div id="client-side-insertion-warning-<?php echo $block; ?>" class="ai-rounded" style="<?php echo $client_side_insertion_warning ? '' : 'display: none;'; ?>">
2460
  <span style="margin-top: 5px;"><?php /* translators: %s: HTML tags for text and link */ printf (__('%s WARNING: %s Settings Filter or Max insertions can\'t work with %s Client-side %s insertion. Use %s Server-side %s insertion.', 'ad-inserter'),
2461
  '<span style="color: red;">', '</span>', '<strong>', '</strong>',
2462
  '<a href="https://adinserter.pro/documentation/insertion-before-inside-after-html-element#insertion" class="simple-link" target="_blank">',
2543
 
2544
  <div id="tab-general" style="padding: 0;">
2545
 
2546
+ <div class="ai-rounded">
2547
  <table class="ai-settings-table ai-values" style="width: 100%;">
2548
  <?php if (function_exists ('ai_general_settings')) ai_general_settings (); ?>
2549
  <tr>
2753
 
2754
  <?php if (function_exists ('ai_general_settings_3')) ai_general_settings_3 (); ?>
2755
 
2756
+ <div class="ai-rounded">
2757
  <table class="ai-settings-table" style="width: 100%;">
2758
  <tr>
2759
  <td>
2789
 
2790
  <div id="tab-viewports" style="padding: 0;">
2791
 
2792
+ <div class="ai-rounded">
2793
  <div style="margin: 0 0 8px 0;">
2794
  <strong><?php _e ('Viewport Settings used for client-side device detection', 'ad-inserter'); ?></strong>
2795
  </div>
2811
  ?>
2812
 
2813
  </div>
2814
+ <div class="ai-rounded">
2815
 
2816
  <div style="margin: 0 0 8px 0;">
2817
  <strong><?php _e ('Constants', 'ad-inserter'); ?></strong> &nbsp;&nbsp;
2836
  </div>
2837
  </div>
2838
 
2839
+ <div id="tab-hooks" class="ai-rounded">
2840
  <div style="margin: 0 0 8px 0;">
2841
  <strong><?php _e ('Custom Hooks', 'ad-inserter'); ?></strong>
2842
  </div>
2918
  <textarea id="block-h" name="<?php echo AI_OPTION_CODE, '_block_h'; ?>" class="simple-editor" style="background-color:#F9F9F9; font-family: monospace, Courier, 'Courier New'; font-weight: bold;" default=""><?php echo esc_textarea ($adH->get_ad_data()); ?></textarea>
2919
  </div>
2920
 
2921
+ <div id="device-detection-settings-h" class="ai-rounded">
2922
  <table>
2923
  <tbody>
2924
  <tr>
2987
  <textarea id="block-f" name="<?php echo AI_OPTION_CODE, '_block_f'; ?>" class="simple-editor" style="background-color:#F9F9F9; font-family: monospace, Courier, 'Courier New'; font-weight: bold;" default=""><?php echo esc_textarea ($adF->get_ad_data()); ?></textarea>
2988
  </div>
2989
 
2990
+ <div id="device-detection-settings-f" class="ai-rounded">
2991
 
2992
  <table>
2993
  <tbody>
3042
  <div style="clear: both;"></div>
3043
  </div>
3044
 
3045
+ <div class="ai-rounded" style="margin: 8px 0 8px;">
3046
  <table class="ai-settings-table" style="width: 100%;" cellpadding="0">
3047
  <tr>
3048
  <td style="width: 25%;">
3118
  </table>
3119
  </div>
3120
 
3121
+ <div id="adb-page-redirection" class="ai-rounded">
3122
  <table class="ai-settings-table" style="width: 100%;">
3123
  <tr>
3124
  <td style="width: 25%;">
3184
  <textarea id="block-a" name="<?php echo AI_OPTION_CODE, '_block_a'; ?>" class="simple-editor small" style="background-color:#F9F9F9; font-family: monospace, Courier, 'Courier New'; font-weight: bold;" default="<?php echo esc_textarea (AI_DEFAULT_ADB_MESSAGE); ?>"><?php echo esc_textarea ($adA->get_ad_data()); ?></textarea>
3185
  </div>
3186
 
3187
+ <div class="ai-rounded">
3188
  <table class="ai-settings-table" style="width: 100%;">
3189
  <tr>
3190
  <td style="width: 20%;">
3290
  <div style="clear: both;"></div>
3291
  </div>
3292
 
3293
+ <div class="ai-rounded" style="margin: 8px 0 8px;">
3294
  <pre class="ai-page-code">
3295
  &lt;html&gt;
3296
  &lt;head&gt;
3320
  &lt;/html&gt;</pre>
3321
  </div>
3322
 
3323
+ <div class="ai-rounded" style="margin: 8px 0 8px;">
3324
  <table class="ai-settings-table" style="width: 100%;">
3325
  <tr title="<?php echo $d1; ?>">
3326
  <td style="width: 45%;">
3660
  replace_blocked_image ('ai-pro-2', 'ai-charts-250.png', 'block');
3661
  replace_blocked_image ('ai-pro-3', 'ai-countries-250.png', 'block');
3662
  replace_blocked_image ('ai-preview', 'ai-preview-250.png', 'block');
3663
+ replace_blocked_image ('ai-recaptcha', 'ai-recaptcha-250.png', 'block');
3664
  replace_blocked_image ('ai-adb', 'ai-adb.png', 'block');
3665
  replace_blocked_image ('ai-amp', 'ai-amp.png', 'block');
3666
  replace_blocked_image ('ai-stars-img', 'stars.png', 'inline');
3760
  } else $current_theme = wp_get_theme ();
3761
 
3762
  ?>
3763
+ <div id="page-checker-container" class="ai-check-pages ai-form ai-responsive-table ai-rounded" style="background: rgb(255, 255, 255); display: none;">
3764
  <div style="margin-bottom: 10px; min-height: 24px;">
3765
  <?php echo __('Available positions for current theme', 'ad-inserter'), " <strong>", $current_theme->get ('Name'), " ", $current_theme->get ('Version'); ?></strong>
3766
  <span class="ai-error-message" style="margin-left: 30px; color: #f00; display: none;"><?php _e ('Error checking pages', 'ad-inserter'); ?>: <span class="ai-error-message-text"></span></span>
3865
  function code_block_list_container ($start, $end, $active_block) {
3866
  $blocks_sticky = function_exists ('ai_block_list_buttons') ? get_blocks_sticky () : false;
3867
  ?>
3868
+ <div id="ai-list-container" class="ai-form ai-rounded" style="background: #fff; <?php echo $blocks_sticky ? '' : 'display: none;'; ?>">
3869
  <div id='ai-list-controls' class='ui-widget' style='margin: 0 auto 8px;'>
3870
  <span style="vertical-align: middle; float: left;">
3871
  <input id="ai-list-search" type="text" value="" size="35" maxlength="40" />
3905
 
3906
  function adsense_list_container () {
3907
  ?>
3908
+ <div id="adsense-list-container" class="ai-form ai-rounded" style="background: #fff; display: none;">
3909
  <div id='adsense-list-controls' class='ui-widget' style='margin: 0 auto 8px; display: none;'>
3910
  <span style="vertical-align: middle; float: left;">
3911
  <input id="adsense-list-search" type="text" value="" size="40" maxlength="40" />
3960
  $ads_txt_file = $url_data ['scheme'] . '://' . $url_data ['host'] . '/ads.txt';
3961
 
3962
  ?>
3963
+ <div id="ads-txt-container" class="ai-form ai-rounded" style="background: #fff; display: none;">
3964
  <div id='ads-txt-controls' class='ui-widget' style='margin: 0 auto 8px; display: none;'>
3965
  <span style="vertical-align: middle; float: left;">
3966
  <input id="ads-txt-search" type="text" value="" size="40" maxlength="40" />
4077
  $wp_folder = str_replace ('/', DIRECTORY_SEPARATOR, $wp_folder);
4078
  }
4079
 
4080
+ echo '<div class="ai-rounded system-debugging" style="display: none;">';
4081
  echo "<pre style='margin: 0;'>\n";
4082
  echo "site_url ", site_url (), "\n";
4083
  echo "home_url ", home_url (), "\n";
4159
 
4160
  switch ($virtual) {
4161
  case true:
4162
+ echo '<div class="ai-rounded">';
4163
  // translators: %s: Ad Inserter
4164
  echo '<div>', sprintf (__('ads.txt file: %s virtual ads.txt file', 'ad-inserter'), AD_INSERTER_NAME), '</div>';
4165
  echo '</div>';
4166
 
4167
  if ($virtual_file_missing) {
4168
+ echo '<div id="ads-txt-missing" class="ai-rounded">';
4169
  echo '<div><strong><span style="color: red;">', __('Warning', 'ad-inserter'), ':</span></strong> ', /* translators: %s: Ad Inserter */ sprintf (__('%s virtual file ads.txt not found', 'ad-inserter'), AD_INSERTER_NAME), '</div>';
4170
  echo '</div>';
4171
  }
4172
  break;
4173
  default:
4174
+ echo '<div class="ai-rounded">';
4175
 
4176
  if ($wp_folder != '') {
4177
  echo '<div><strong><span style="color: red;">', __('IMPORTANT', 'ad-inserter'), '</span>: ', __('ads.txt file must be placed on the root domain', 'ad-inserter'), ' <a href="', $ads_txt_url, '" target="_blank" class="simple-link">', $ads_txt_url, '</a></strong></div>';
4185
  echo '</div>';
4186
 
4187
  if (!file_exists ($ads_txt_file)) {
4188
+ echo '<div id="ads-txt-missing" class="ai-rounded">';
4189
  echo '<div><strong><span style="color: red;">', __('Warning', 'ad-inserter'), ':</span></strong> ', sprintf (__('file %s not found', 'ad-inserter'), $ads_txt_file), '</div>';
4190
  echo '</div>';
4191
  }
4758
  $row_color = $row_counter % 2 == 0 ? '#eee' : '#fff';
4759
 
4760
  ?>
 
4761
  <tr style="background: <?php echo $row_color; ?>" data-id="<?php echo $ad_unit ['id']; ?>" data-name="<?php echo base64_encode ($ad_unit ['name']); ?>">
4762
  <td>
4763
  <span class="ai-list-button">
4812
  $adsense = new adsense_api();
4813
  $adsense_ids = defined ('AI_CI_STRING') && get_option (AI_ADSENSE_OWN_IDS) === false;
4814
  ?>
4815
+ <table class="ai-responsive-table" cellspacing=0 cellpadding=0 style="width: 100%;">
4816
  <tbody>
4817
  <tr>
4818
  <td colspan="2" style="white-space: inherit;">
4819
+ <div class="ai-rounded" style="margin: 0;">
4820
  <?php if ($adsense_ids): ?>
4821
  <h2 style="margin: 5px 0; float: left;"><strong><?php echo AD_INSERTER_NAME; ?></strong> <?php _e ('AdSense Integration', 'ad-inserter'); ?></h2>
4822
  <?php else: ?>
4826
  <div style="clear: both;"></div>
4827
  </div>
4828
  <?php if ($adsense_ids): ?>
4829
+ <p style="text-align: justify;"><?php /* translators: %s: HTML tags */ printf (__('Authorize %s to access your AdSense account.', 'ad-inserter'), AD_INSERTER_NAME); ?></p>
4830
+ <!-- <p style="text-align: justify;"><?php /* translators: %s: HTML tags */ printf (__("If you get error, can't access ad units or would like to use own Google API IDs click on the button %s Use own API IDs %s to enter Client ID and Client Secret.", 'ad-inserter'), '<strong>', '</strong>'); ?></p>-->
 
 
 
 
 
 
4831
  <?php else: ?>
4832
+ <p style="text-align: justify;"><?php /* translators: %s: HTML tags */ printf (__('Now you can authorize %s to access your AdSense account. ', 'ad-inserter'), AD_INSERTER_NAME ); ?></p>
 
 
 
 
 
 
4833
  <p style="text-align: justify;"><?php /* translators: %s: HTML tags */ printf (__('If you get error %s invalid client %s click on the button %s Clear and return to Step 1 %s to re-enter Client ID and Client Secret.', 'ad-inserter'),
4834
  '<strong>',
4835
  '</strong>',
4839
  <?php endif; ?>
4840
  </td>
4841
  </tr>
4842
+ <!-- <tr>-->
4843
+ <!-- <td>&nbsp;</td>-->
4844
+ <!-- <td>&nbsp;</td>-->
4845
+ <!-- </tr>-->
4846
+ <tr id="adsense-authorization-code">
 
 
 
 
 
 
 
 
4847
  <td>
4848
  <?php if ($adsense_ids): ?>
4849
+ <!-- <button type="button" class="ai-top-button authorize-adsense own-ids" style="display: none; float: left; width: 162px; outline: none;"><?php _e ('Use own API IDs', 'ad-inserter'); ?></button>-->
4850
  <?php else: ?>
4851
  <button type="button" class="ai-top-button authorize-adsense clear-adsense" style="display: none; float: left; width: 162px; outline: none;"><?php _e ('Clear and return to Step 1', 'ad-inserter'); ?></button>
4852
  <?php endif; ?>
4853
  </td>
4854
  <td>
4855
+ <button type="button" class="ai-top-button" style="display: none; float: right; width: 162px; outline: none;" onclick="window.open('<?php echo $adsense->getAuthUrl (); ?>', '_self')"><?php _e ('Authorize', 'ad-inserter'); ?></button>
4856
  </td>
4857
  </tr>
4858
  </tbody>
4863
 
4864
  else {
4865
  ?>
4866
+ <table class="ai-responsive-table" cellspacing=0 cellpadding=0 style="width: 100%;">
4867
  <tbody>
4868
  <tr>
4869
  <td colspan="2" style="white-space: inherit;">
4870
+ <div class="ai-rounded" style="margin: 0;">
4871
  <h2 style="margin: 5px 0; float: left;"><strong><?php echo AD_INSERTER_NAME; ?></strong> <?php _e ('AdSense Integration - Step 1', 'ad-inserter'); ?></h2>
4872
  <a href="https://www.google.com/adsense/login" class="simple-link" style="float: right;" target="_blank" title="<?php _e ('Google AdSense Homepage', 'ad-inserter'); ?>"><span class="checkbox-icon icon-adsense on" style="margin: 4px 0;"></span></a>
4873
  <div style="clear: both;"></div>
5593
  function sidebar_addense_alternative () { ?>
5594
 
5595
  <?php
5596
+ switch (rand (5, 16)) {
5597
  case 1:
5598
  case 2:
5599
  case 3:
5600
  case 4:
5601
  ?>
5602
+ <!-- <div class="ai-form header ai-rounded">-->
5603
+ <!-- <div style="float: left;">-->
5604
+ <!-- <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Maximize Your Ad Revenue With Header Bidding', 'ad-inserter'); ?></h2>-->
5605
+ <!-- </div>-->
5606
+ <!-- <div style="clear: both;"></div>-->
5607
+ <!-- </div>-->
5608
+ <!-- <div class="ai-form ai-rounded" style="height: 90px; padding: 8px 4px 8px 12px;">-->
5609
+ <!-- <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>-->
5610
+ <!-- </div>-->
5611
  <?php
5612
  break;
5613
  case 5:
5614
  case 6:
5615
  ?>
5616
+ <div class="ai-form header ai-rounded">
5617
  <div style="float: left;">
5618
  <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Blank ad blocks? Looking for AdSense alternative?', 'ad-inserter'); ?></h2>
5619
  </div>
5620
  <div style="clear: both;"></div>
5621
  </div>
5622
+ <div class="ai-form ai-rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
5623
  <a href='https://www.ezoic.com/?utm_source=ad-inserter&utm_medium=ads&utm_campaign=ad-inserter-ads&utm_term=adinserter&utm_content=ezoic' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-ez-8" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ez-8.jpg" /></a>
5624
  </div>
5625
  <?php
5627
  case 7:
5628
  case 8:
5629
  ?>
5630
+ <div class="ai-form header ai-rounded">
5631
  <div style="float: left;">
5632
  <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Blank ad blocks? Looking for AdSense alternative?', 'ad-inserter'); ?></h2>
5633
  </div>
5634
  <div style="clear: both;"></div>
5635
  </div>
5636
+ <div class="ai-form ai-rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
5637
  <a href='https://www.ezoic.com/?utm_source=ad-inserter&utm_medium=ads&utm_campaign=ad-inserter-ads&utm_term=adinserter&utm_content=ezoic' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-ez-6" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ez-6.png" /></a>
5638
  </div>
5639
  <?php
5644
  case 11:
5645
  case 12:
5646
  ?>
5647
+ <div class="ai-form header ai-rounded">
5648
  <div style="float: left;">
5649
  <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Try Infolinks Ads with Adsense or Media.net ads', 'ad-inserter'); ?></h2>
5650
  </div>
5651
  <div style="clear: both;"></div>
5652
  </div>
5653
+ <div class="ai-form ai-rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
5654
  <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-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-1.jpg" /></a>
5655
  </div>
5656
  <?php
5661
  case 15:
5662
  case 16:
5663
  ?>
5664
+ <div class="ai-form header ai-rounded">
5665
  <div style="float: left;">
5666
  <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Maximize Revenue', 'ad-inserter'); ?></h2>
5667
  </div>
5668
  <div style="clear: both;"></div>
5669
  </div>
5670
+ <div class="ai-form ai-rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
5671
  <a href="https://underdogmedia.com/edge-publisher-adinserter/" class="clear-link" title="<?php _e ('Maximize Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-um-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>um-1.png" /></a>
5672
  </div>
5673
  <?php
5688
 
5689
  if (!wp_is_mobile () && is_super_admin ()) {
5690
  ?>
5691
+ <div class="ai-form header no-select ai-rounded" style="position: relative; text-align: justify;">
5692
 
5693
  <div style="float: left;">
5694
  <h2 style="display: inline-block; margin: 7px 0;"><?php _e ('Support plugin development', 'ad-inserter'); ?></h2>
5739
  function sidebar_support_plugin () {
5740
  global $rating_value, $rating_string, $rating_css;
5741
  ?>
5742
+ <div class="ai-form header ai-rounded no-select">
5743
  <div style="float: left;">
5744
  <h2 style="display: inline-block; margin: 7px 0;"><?php _e ('Support plugin development', 'ad-inserter'); ?></h2>
5745
  <button type="button" class="ai-top-button" style="display: none; margin: -5px 0px 0px 15px; min-width; 165px; width: 62px; outline: none;" onclick="window.open('https://wordpress.org/support/plugin/ad-inserter/reviews/?filter=5#new-post')" title="<?php _e ('If you like Ad Inserter and have a moment, please help me spread the word by reviewing the plugin on WordPres', 'ad-inserter'); ?>"><?php _e ('Review', 'ad-inserter'); ?></button>
5774
 
5775
  function sidebar_help () { ?>
5776
 
5777
+ <div class="ai-form header ai-rounded ai-help">
5778
  <div style="float: left;">
5779
  <div>
5780
  <?php /* translators: %s: HTML tags */ printf (__('Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s and %s Common Settings %s pages', 'ad-inserter'),
5837
 
5838
  ?>
5839
 
5840
+ <div class="ai-form ai-rounded no-select feature-list" style="background: #fff;">
5841
 
5842
  <?php if (!wp_is_mobile()): ?>
5843
  <div id="ai-sidebar-right">
5847
  <!-- <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>-->
5848
  <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>
5849
  <?php break; case 1: ?>
5850
+ <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>
5851
+ <!-- <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>-->
5852
  <?php break; case 2: ?>
5853
  <!-- <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>-->
5854
  <a href="https://underdogmedia.com/edge-publisher-adinserter/" class="clear-link" title="<?php _e ('Maximize Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-um-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>um-2.png" /></a>
5861
  <?php switch ($version) {
5862
  case 0:
5863
  ?>
5864
+ <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>
5865
+ <!-- <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>-->
5866
  <?php break;
5867
  case 1:
5868
  ?>
5890
  <!-- <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>-->
5891
  <a href="https://underdogmedia.com/edge-publisher-adinserter/" class="clear-link" title="<?php _e ('Maximize Revenue', 'ad-inserter'); ?>" target="_blank"><img id="ai-um-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>um-2.png" /></a>
5892
  <?php break; case 2: ?>
5893
+ <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>
5894
+ <!-- <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>-->
5895
  <?php break; case 3: ?>
5896
  <!-- <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>-->
5897
  <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>
5919
  <?php break;
5920
  case 3:
5921
  ?>
5922
+ <a href='https://adinserter.pro/documentation/plugin-settings#recaptcha' class="clear-link" title="<?php _e ('Stop invalid traffic with reCAPTCHA v3 score check', 'ad-inserter'); ?>" target="_blank"><img id="ai-recaptcha" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-recaptcha-250.png" /></a>
5923
+ <!-- <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>-->
5924
+ <?php break;
5925
+ } ?>
5926
+ </div>
5927
+ <div style="clear: both;"></div>
5928
+ <div class="ai-image-left">
5929
+ <?php switch ($version) {
5930
+ case 0: ?>
5931
+ <a href='https://adinserter.pro/documentation/plugin-settings#recaptcha' class="clear-link" title="<?php _e ('Stop invalid traffic with reCAPTCHA v3 score check', 'ad-inserter'); ?>" target="_blank"><img id="ai-recaptcha" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-recaptcha-250.png" /></a>
5932
+ <?php break; case 1: ?>
5933
+ <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>
5934
+ <?php break; case 2: ?>
5935
+ <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>
5936
+ <?php break; case 3: ?>
5937
+ <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>
5938
  <?php break;
5939
  } ?>
5940
  </div>
5977
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s A/B testing %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking#ab-testing" class="simple-link" target="_blank">', '</a>'); ?></li>
5978
  <li><?php /* translators: %s HTML tags */ printf (__('Frequency capping - %s limit impressions or clicks %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-limiting" class="simple-link" target="_blank">', '</a>'); ?></li>
5979
  <li><?php /* translators: %s HTML tags */ printf (__('Click fraud %s protection %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-limiting#click-fraud-protection" class="simple-link" target="_blank">', '</a>'); ?></li>
5980
+ <li><?php /* translators: %s HTML tags */ printf (__('Stop invalid traffic with %s reCAPTCHA score check %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/additional-block-settings#check-recaptcha-score" class="simple-link" target="_blank">', '</a>'); ?></li>
5981
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s GDPR consent cookie checks %s', 'ad-inserter'), '<a href="https://adinserter.pro/faq/gdpr-compliance-cookies-consent" class="simple-link" target="_blank">', '</a>'); ?></li>
5982
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s lazy loading %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/additional-block-settings#lazy-loading" class="simple-link" target="_blank">', '</a>'); ?></li>
5983
  <li><?php /* translators: %s HTML tags */ printf (__('Support for ads on %s AMP pages %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/amp-pages" class="simple-link" target="_blank">', '</a>'); ?></li>
6014
 
6015
  function sidebar_pro_small () { ?>
6016
 
6017
+ <div class="ai-form header ai-rounded" style="padding-bottom: 0;">
6018
  <div style="float: left;">
6019
  <a href="https://adinserter.pro/" class="simple-link" target="_blank"><img src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>icon-256x256.jpg" style="width: 100px;" /></a>
6020
  </div>