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

Version Description

  • Added support to define custom fields with shortocdes
  • Added support to delay showing ads for specified number of pageviews (Pro only)
  • Added support to remember closed ad for specified time period (Pro only)
  • Added support to automatically close ad after specified time period (Pro only)
  • Fix for false positive ad blocking detection (Pro only)
  • 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.4.23
Comparing to
See all releases

Code changes from version 2.4.22 to 2.4.23

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.4.22
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/
@@ -15,6 +15,12 @@ Domain Path: /languages
15
 
16
  Change Log
17
 
 
 
 
 
 
 
18
  Ad Inserter 2.4.22 - 2019-07-13
19
  - Fix for remote code execution vulnerability - credit to Wordfence
20
 
@@ -1451,9 +1457,15 @@ function ai_wp_hook () {
1451
 
1452
  if ($ai_wp_data [AI_STICK_TO_THE_CONTENT]) {
1453
  if (trim (get_main_content_element () == '')) {
1454
- add_action ('loop_start', 'ai_content_marker');
1455
- add_action ('loop_end', 'ai_content_marker');
1456
- add_action ('get_sidebar', 'ai_content_marker');
 
 
 
 
 
 
1457
  }
1458
  }
1459
 
@@ -1798,6 +1810,7 @@ function ai_wp_enqueue_scripts_hook () {
1798
  !empty ($_GET) ||
1799
  $ai_wp_data [AI_FRONTEND_JS_DEBUGGING] ||
1800
  $ai_wp_data [AI_CLIENT_SIDE_INSERTION] ||
 
1801
  get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0 ||
1802
  $ai_wp_data [AI_ANIMATION]) {
1803
 
@@ -1820,11 +1833,11 @@ function ai_wp_enqueue_scripts_hook () {
1820
  wp_add_inline_script ('ai-jquery-js', 'ai_debugging = true;');
1821
  }
1822
 
1823
- if (!get_disable_js_code () && (($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) || $adb_code)) {
1824
  wp_add_inline_script ('ai-jquery-js', ai_get_js ('ai-cookie', false));
1825
  }
1826
-
1827
- if (!get_disable_js_code () && ($ai_wp_data [AI_CLIENT_SIDE_INSERTION] || $ai_wp_data [AI_CLOSE_BUTTONS]) && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
1828
  wp_add_inline_script ('ai-jquery-js', ai_get_js ('ai-insert', false));
1829
  }
1830
 
@@ -2160,11 +2173,16 @@ function add_footer_inline_scripts () {
2160
  echo '<!-- Code for ad blocking detection -->', "\n";
2161
  echo '<!--noptimize-->', "\n";
2162
  echo '<div id="banner-advert-container" class="ad-inserter chitika-ad" style="position:absolute; z-index: -10; height: 1px; width: 1px; top: -1px; left: -1px;"><img id="adsense" class="SponsorAds adsense" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"></div>', "\n";
2163
- echo '<script async src="https://www.google-analytics.com/analytics.js"></script>', "\n";
2164
- echo '<script async src="//contextual.media.net/dmedianet.js"></script>', "\n";
 
 
 
 
2165
  echo "<script type='text/javascript' src='", plugins_url ('js/ads.js', __FILE__ ), "?ver=", AD_INSERTER_VERSION, "'></script>\n";
2166
  echo "<script type='text/javascript' src='", plugins_url ('js/sponsors.js', __FILE__ ), "?ver=", AD_INSERTER_VERSION, "'></script>\n";
2167
  echo '<!--/noptimize-->', "\n";
 
2168
  }
2169
  }
2170
 
@@ -2184,7 +2202,7 @@ function add_footer_inline_scripts () {
2184
  $adb_code;
2185
 
2186
  // if (($footer_inline_scripts || $ai_wp_data [AI_CLIENT_SIDE_INSERTION]) && !wp_script_is ('jquery', 'done')) {
2187
- if ($footer_inline_scripts && !wp_script_is ('jquery', 'done')) {
2188
  // Should not insert as it is forced in the header if jquery needed in the footer
2189
  echo "<script type='text/javascript' src='", includes_url ('js/jquery/jquery.js'), "?ver=", $wp_version, "'></script>\n";
2190
  echo "<script type='text/javascript' src='", includes_url ('js/jquery/jquery-migrate.min.js'), "?ver=", $wp_version, "'></script>\n";
@@ -5000,6 +5018,7 @@ function ai_generate_extract (&$settings) {
5000
  $ai_wp_data [AI_STICK_TO_THE_CONTENT] = false;
5001
  $ai_wp_data [AI_TRACKING] = false;
5002
  $ai_wp_data [AI_CLOSE_BUTTONS] = false;
 
5003
  $ai_wp_data [AI_IFRAMES] = false;
5004
  $ai_wp_data [AI_ANIMATION] = false;
5005
  $ai_wp_data [AI_LAZY_LOADING] = false;
@@ -5139,6 +5158,7 @@ function ai_generate_extract (&$settings) {
5139
  AI_STICK_TO_THE_CONTENT => $ai_wp_data [AI_STICK_TO_THE_CONTENT],
5140
  AI_TRACKING => $ai_wp_data [AI_TRACKING],
5141
  AI_CLOSE_BUTTONS => $ai_wp_data [AI_CLOSE_BUTTONS],
 
5142
  AI_IFRAMES => $ai_wp_data [AI_IFRAMES],
5143
  AI_ANIMATION => $ai_wp_data [AI_ANIMATION],
5144
  AI_LAZY_LOADING => $ai_wp_data [AI_LAZY_LOADING],
@@ -5238,6 +5258,7 @@ function ai_load_settings () {
5238
  $ai_wp_data [AI_STICK_TO_THE_CONTENT] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_STICK_TO_THE_CONTENT];
5239
  $ai_wp_data [AI_TRACKING] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_TRACKING];
5240
  $ai_wp_data [AI_CLOSE_BUTTONS] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_CLOSE_BUTTONS];
 
5241
  $ai_wp_data [AI_IFRAMES] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_IFRAMES];
5242
  $ai_wp_data [AI_ANIMATION] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_ANIMATION];
5243
  $ai_wp_data [AI_LAZY_LOADING] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_LAZY_LOADING];
@@ -5464,6 +5485,10 @@ a.ai-debug-center {text-align: center; cursor: default; font-size: 10px; text-de
5464
  .ai-debug-block.ai-debug-script {border-color: #00bae6; outline-color: #00bae6; background: #eee;}
5465
  .ai-debug-bar.ai-debug-script {background: #00bae6;}
5466
 
 
 
 
 
5467
  .ai-debug-block.ai-debug-adb-status {border-color: #000; outline-color: #000;}
5468
  .ai-debug-bar.ai-debug-adb-status {background: #000;}
5469
 
@@ -7003,13 +7028,29 @@ function ai_process_shortcode (&$block, $atts) {
7003
 
7004
  return '<span data-ai-groups="' . base64_encode (json_encode ($group_names)) . '"></span>';
7005
  }
 
7006
  if ($parameters ['custom-field'] != '') {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7007
  $post_meta = get_post_meta (get_the_ID(), $parameters ['custom-field']);
7008
  if (is_array ($post_meta)) {
7009
  $post_meta = implode (', ', $post_meta);
7010
  }
7011
  return $post_meta;
7012
  }
 
7013
  if ($parameters ['data'] != '') {
7014
  return '{'.$parameters ['data'].'}';
7015
  }
@@ -7621,25 +7662,44 @@ function check_referer_list ($referers, $white_list) {
7621
  }
7622
 
7623
  function ai_check_block ($block) {
 
 
7624
  $ai_cookie_name = 'aiBLOCKS';
7625
 
7626
  if (isset ($_COOKIE [$ai_cookie_name])) {
7627
  $ai_cookie = json_decode (stripslashes ($_COOKIE [$ai_cookie_name]));
7628
- if ($ai_cookie != null) {
7629
- if (isset ($ai_cookie->$block) && is_object ($ai_cookie->$block)) {
7630
-
7631
- foreach ($ai_cookie->$block as $property => $value) {
7632
- switch ($property) {
7633
- case 'x':
7634
- $closed_for = $value - time ();
7635
-
7636
- if ($closed_for > 0) {
7637
- return false;
7638
- } else {
7639
- ai_set_cookie ($block, 'x', '');
7640
- }
7641
- break;
7642
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7643
  }
7644
  }
7645
  }
@@ -7651,7 +7711,7 @@ function ai_check_block ($block) {
7651
  function ai_set_cookie ($block, $property, $value) {
7652
  $ai_cookie_name = 'aiBLOCKS';
7653
 
7654
- if (isset ($_COOKIE ['aiBLOCKS'])) {
7655
  $ai_cookie = json_decode (stripslashes ($_COOKIE [$ai_cookie_name]));
7656
  } else $ai_cookie = new stdClass();
7657
 
@@ -7971,6 +8031,7 @@ $ai_wp_data [AI_CODE_FOR_IFRAME] = false;
7971
  $ai_wp_data [AI_HEAD_CODES] = array ();
7972
  $ai_wp_data [AI_HEAD_GROUPS] = array ();
7973
  $ai_wp_data [AI_ACTIVE_GROUP_NAMES] = array ();
 
7974
 
7975
  ai_load_settings ();
7976
 
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.4.23
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/
15
 
16
  Change Log
17
 
18
+ Ad Inserter 2.4.23 - 2019-07-30
19
+ - Added support to define custom fields with shortocdes
20
+ - Added experimental support to delay showing ads for specified number of pageviews (Pro only)
21
+ - Fix for false positive ad blocking detection (Pro only)
22
+ - Few minor bug fixes, cosmetic changes and code improvements
23
+
24
  Ad Inserter 2.4.22 - 2019-07-13
25
  - Fix for remote code execution vulnerability - credit to Wordfence
26
 
1457
 
1458
  if ($ai_wp_data [AI_STICK_TO_THE_CONTENT]) {
1459
  if (trim (get_main_content_element () == '')) {
1460
+ if (!defined ('AI_CONTENT_MARKER_NO_LOOP_START')) {
1461
+ add_action ('loop_start', 'ai_content_marker');
1462
+ }
1463
+ if (!defined ('AI_CONTENT_MARKER_NO_LOOP_END')) {
1464
+ add_action ('loop_end', 'ai_content_marker');
1465
+ }
1466
+ if (!defined ('AI_CONTENT_MARKER_NO_GET_SIDEBAR')) {
1467
+ add_action ('get_sidebar', 'ai_content_marker');
1468
+ }
1469
  }
1470
  }
1471
 
1810
  !empty ($_GET) ||
1811
  $ai_wp_data [AI_FRONTEND_JS_DEBUGGING] ||
1812
  $ai_wp_data [AI_CLIENT_SIDE_INSERTION] ||
1813
+ $ai_wp_data [AI_CHECK_BLOCK] ||
1814
  get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0 ||
1815
  $ai_wp_data [AI_ANIMATION]) {
1816
 
1833
  wp_add_inline_script ('ai-jquery-js', 'ai_debugging = true;');
1834
  }
1835
 
1836
+ if (!get_disable_js_code () && (($ai_wp_data [AI_CLOSE_BUTTONS] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) || $ai_wp_data [AI_CHECK_BLOCK] || $ai_wp_data [AI_TRACKING] || $adb_code)) {
1837
  wp_add_inline_script ('ai-jquery-js', ai_get_js ('ai-cookie', false));
1838
  }
1839
+ // ### AI_CHECK_BLOCK
1840
+ if (!get_disable_js_code () && ($ai_wp_data [AI_CLIENT_SIDE_INSERTION] || $ai_wp_data [AI_CLOSE_BUTTONS] || $ai_wp_data [AI_CHECK_BLOCK]) && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
1841
  wp_add_inline_script ('ai-jquery-js', ai_get_js ('ai-insert', false));
1842
  }
1843
 
2173
  echo '<!-- Code for ad blocking detection -->', "\n";
2174
  echo '<!--noptimize-->', "\n";
2175
  echo '<div id="banner-advert-container" class="ad-inserter chitika-ad" style="position:absolute; z-index: -10; height: 1px; width: 1px; top: -1px; left: -1px;"><img id="adsense" class="SponsorAds adsense" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"></div>', "\n";
2176
+ if (!defined ('AI_ADB_NO_GOOGLE_ANALYTICS')) {
2177
+ echo '<script async id="ai-adb-ga" src="https://www.google-analytics.com/analytics.js"></script>', "\n";
2178
+ }
2179
+ if (!defined ('AI_ADB_NO_MEDIA_NET')) {
2180
+ echo '<script async id="ai-adb-mn" src="//contextual.media.net/dmedianet.js"></script>', "\n";
2181
+ }
2182
  echo "<script type='text/javascript' src='", plugins_url ('js/ads.js', __FILE__ ), "?ver=", AD_INSERTER_VERSION, "'></script>\n";
2183
  echo "<script type='text/javascript' src='", plugins_url ('js/sponsors.js', __FILE__ ), "?ver=", AD_INSERTER_VERSION, "'></script>\n";
2184
  echo '<!--/noptimize-->', "\n";
2185
+ echo '<!-- Code for ad blocking detection END -->', "\n";
2186
  }
2187
  }
2188
 
2202
  $adb_code;
2203
 
2204
  // if (($footer_inline_scripts || $ai_wp_data [AI_CLIENT_SIDE_INSERTION]) && !wp_script_is ('jquery', 'done')) {
2205
+ if ($footer_inline_scripts && !wp_script_is ('jquery', 'done') && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
2206
  // Should not insert as it is forced in the header if jquery needed in the footer
2207
  echo "<script type='text/javascript' src='", includes_url ('js/jquery/jquery.js'), "?ver=", $wp_version, "'></script>\n";
2208
  echo "<script type='text/javascript' src='", includes_url ('js/jquery/jquery-migrate.min.js'), "?ver=", $wp_version, "'></script>\n";
5018
  $ai_wp_data [AI_STICK_TO_THE_CONTENT] = false;
5019
  $ai_wp_data [AI_TRACKING] = false;
5020
  $ai_wp_data [AI_CLOSE_BUTTONS] = false;
5021
+ $ai_wp_data [AI_CHECK_BLOCK] = false;
5022
  $ai_wp_data [AI_IFRAMES] = false;
5023
  $ai_wp_data [AI_ANIMATION] = false;
5024
  $ai_wp_data [AI_LAZY_LOADING] = false;
5158
  AI_STICK_TO_THE_CONTENT => $ai_wp_data [AI_STICK_TO_THE_CONTENT],
5159
  AI_TRACKING => $ai_wp_data [AI_TRACKING],
5160
  AI_CLOSE_BUTTONS => $ai_wp_data [AI_CLOSE_BUTTONS],
5161
+ AI_CHECK_BLOCK => $ai_wp_data [AI_CHECK_BLOCK],
5162
  AI_IFRAMES => $ai_wp_data [AI_IFRAMES],
5163
  AI_ANIMATION => $ai_wp_data [AI_ANIMATION],
5164
  AI_LAZY_LOADING => $ai_wp_data [AI_LAZY_LOADING],
5258
  $ai_wp_data [AI_STICK_TO_THE_CONTENT] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_STICK_TO_THE_CONTENT];
5259
  $ai_wp_data [AI_TRACKING] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_TRACKING];
5260
  $ai_wp_data [AI_CLOSE_BUTTONS] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_CLOSE_BUTTONS];
5261
+ $ai_wp_data [AI_CHECK_BLOCK] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_CHECK_BLOCK];
5262
  $ai_wp_data [AI_IFRAMES] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_IFRAMES];
5263
  $ai_wp_data [AI_ANIMATION] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_ANIMATION];
5264
  $ai_wp_data [AI_LAZY_LOADING] = $ai_db_options [AI_OPTION_EXTRACT][AI_EXTRACT_FEATURES][AI_LAZY_LOADING];
5485
  .ai-debug-block.ai-debug-script {border-color: #00bae6; outline-color: #00bae6; background: #eee;}
5486
  .ai-debug-bar.ai-debug-script {background: #00bae6;}
5487
 
5488
+ .ai-debug-block.ai-debug-cookie {border-color: #9be3ff; outline-color: #9be3ff; background: #eee;}
5489
+ .ai-debug-bar.ai-debug-cookie {background: #9be3ff;}
5490
+ .ai-debug-bar.ai-debug-cookie kbd {color: #000;}
5491
+
5492
  .ai-debug-block.ai-debug-adb-status {border-color: #000; outline-color: #000;}
5493
  .ai-debug-bar.ai-debug-adb-status {background: #000;}
5494
 
7028
 
7029
  return '<span data-ai-groups="' . base64_encode (json_encode ($group_names)) . '"></span>';
7030
  }
7031
+
7032
  if ($parameters ['custom-field'] != '') {
7033
+ $custom_field_name = trim ($parameters ['custom-field']);
7034
+
7035
+ if ($parameters ['data'] != '') {
7036
+ $custom_field_value = trim ($parameters ['data']);
7037
+
7038
+ $ai_wp_data [AI_CUSTOM_FIELDS][$custom_field_name] = $custom_field_value;
7039
+
7040
+ return '';
7041
+ }
7042
+
7043
+ if (isset ($ai_wp_data [AI_CUSTOM_FIELDS][$custom_field_name])) {
7044
+ return $ai_wp_data [AI_CUSTOM_FIELDS][$custom_field_name];
7045
+ }
7046
+
7047
  $post_meta = get_post_meta (get_the_ID(), $parameters ['custom-field']);
7048
  if (is_array ($post_meta)) {
7049
  $post_meta = implode (', ', $post_meta);
7050
  }
7051
  return $post_meta;
7052
  }
7053
+
7054
  if ($parameters ['data'] != '') {
7055
  return '{'.$parameters ['data'].'}';
7056
  }
7662
  }
7663
 
7664
  function ai_check_block ($block) {
7665
+ global $ai_delay_showing_pageviews;
7666
+
7667
  $ai_cookie_name = 'aiBLOCKS';
7668
 
7669
  if (isset ($_COOKIE [$ai_cookie_name])) {
7670
  $ai_cookie = json_decode (stripslashes ($_COOKIE [$ai_cookie_name]));
7671
+ } else $ai_cookie = new stdClass();
7672
+
7673
+ if (isset ($ai_delay_showing_pageviews)) {
7674
+ if (!isset ($ai_cookie->$block)) {
7675
+ $ai_cookie->$block = new stdClass();
7676
+ }
7677
+
7678
+ if (!isset ($ai_cookie->$block->d)) {
7679
+ $ai_cookie->$block->d = $ai_delay_showing_pageviews;
7680
+ }
7681
+
7682
+ unset ($ai_delay_showing_pageviews);
7683
+ }
7684
+
7685
+ if (isset ($ai_cookie)) {
7686
+ if (isset ($ai_cookie->$block) && is_object ($ai_cookie->$block)) {
7687
+ foreach ($ai_cookie->$block as $property => $value) {
7688
+ switch ($property) {
7689
+ case 'x':
7690
+ $closed_for = $value - time ();
7691
+
7692
+ if ($closed_for > 0) {
7693
+ return false;
7694
+ } else {
7695
+ ai_set_cookie ($block, 'x', '');
7696
+ }
7697
+ break;
7698
+ case 'd':
7699
+ if ($value != 0) {
7700
+ return false;
7701
+ }
7702
+ break;
7703
  }
7704
  }
7705
  }
7711
  function ai_set_cookie ($block, $property, $value) {
7712
  $ai_cookie_name = 'aiBLOCKS';
7713
 
7714
+ if (isset ($_COOKIE [$ai_cookie_name])) {
7715
  $ai_cookie = json_decode (stripslashes ($_COOKIE [$ai_cookie_name]));
7716
  } else $ai_cookie = new stdClass();
7717
 
8031
  $ai_wp_data [AI_HEAD_CODES] = array ();
8032
  $ai_wp_data [AI_HEAD_GROUPS] = array ();
8033
  $ai_wp_data [AI_ACTIVE_GROUP_NAMES] = array ();
8034
+ $ai_wp_data [AI_CHECK_BLOCK] = false;
8035
 
8036
  ai_load_settings ();
8037
 
class.php CHANGED
@@ -624,6 +624,8 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
624
  $this->wp_options [AI_OPTION_CLOSE_BUTTON] = DEFAULT_CLOSE_BUTTON;
625
  $this->wp_options [AI_OPTION_AUTO_CLOSE_TIME] = DEFAULT_AUTO_CLOSE_TIME;
626
  $this->wp_options [AI_OPTION_STAY_CLOSED_TIME] = DEFAULT_STAY_CLOSED_TIME;
 
 
627
 
628
  for ($viewport = 1; $viewport <= 6; $viewport ++) {
629
  $this->wp_options [AI_OPTION_DETECT_VIEWPORT . '_' . $viewport] = AI_DISABLED;
@@ -2177,12 +2179,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2177
  }
2178
 
2179
  $timeout_code = '';
2180
- if ($auto_close_time = $this->get_auto_close_time ()) {
2181
  $timeout_code = " data-ai-close-timeout='{$auto_close_time}'";
2182
  }
2183
 
2184
  $closed_code = '';
2185
- if ($stay_closed_time = $this->get_stay_closed_time ()) {
2186
  $closed_code = " data-ai-closed-time='{$stay_closed_time}'";
2187
  }
2188
 
@@ -2195,6 +2197,32 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2195
  }
2196
  }
2197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2198
  if ($additional_code != '') {
2199
  $additional_code = '<div class="ai-attributes">'."\n" . $additional_code . '</div>'."\n";
2200
  }
@@ -2755,23 +2783,39 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2755
  break;
2756
  }
2757
  }
 
2758
 
2759
- if ($this->get_stay_closed_time ()) {
2760
- // Check for cookie
2761
- if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC')) {
2762
- if ($this->w3tc_code == '') $this->w3tc_code = '$ai_code = base64_decode (\''.base64_encode ($processed_code).'\'); $ai_index = 0; $ai_enabled = true;';
2763
 
2764
- $this->w3tc_code .= 'if ($ai_enabled) $ai_enabled = ai_check_block (' . $this->number . ');';
 
2765
 
2766
- $processed_code = '<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
2767
- $processed_code .= $this->w3tc_code . ' if ($ai_enabled) echo $ai_code;';
2768
- $processed_code .= '<!-- /mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
2769
- } else {
2770
- $processed_code = "<div class='ai-client-check' data-code='".base64_encode ($processed_code)."' data-block='{$this->number}'></div>\n";
2771
- if (!get_disable_js_code ())
2772
- $processed_code .= "<script>if (ai_check_block ({$this->number})) {var ai_block_div = document.getElementsByClassName ('ai-client-check'); ai_insert_code (ai_block_div [ai_block_div.length - 1]);}</script>\n";
 
 
 
 
 
 
 
 
 
 
2773
  }
2774
- }
 
 
 
 
2775
  }
2776
  }
2777
 
@@ -3114,6 +3158,8 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3114
  public function get_iframe_page () {
3115
  global $ai_wp_data, $wp_version;
3116
 
 
 
3117
  $ai_wp_data [AI_CODE_FOR_IFRAME] = true;
3118
  ob_start ();
3119
  echo '<!DOCTYPE>
@@ -3123,6 +3169,23 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3123
  ';
3124
  echo "<script type='text/javascript' src='", includes_url ('js/jquery/jquery.js'), "?ver=", $wp_version, "'></script>\n";
3125
  echo "<script type='text/javascript' src='", includes_url ('js/jquery/jquery-migrate.min.js'), "?ver=", $wp_version, "'></script>\n";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3126
  ai_wp_head_hook ();
3127
  echo '<style type="text/css">
3128
  body {margin: 0; padding: 0; font-family: arial;}
@@ -3161,6 +3224,18 @@ echo '</body>
3161
  return $option;
3162
  }
3163
 
 
 
 
 
 
 
 
 
 
 
 
 
3164
  public function get_horizontal_margin (){
3165
  $option = isset ($this->wp_options [AI_OPTION_HORIZONTAL_MARGIN]) ? $this->wp_options [AI_OPTION_HORIZONTAL_MARGIN] : DEFAULT_HORIZONTAL_MARGIN;
3166
  return $option;
624
  $this->wp_options [AI_OPTION_CLOSE_BUTTON] = DEFAULT_CLOSE_BUTTON;
625
  $this->wp_options [AI_OPTION_AUTO_CLOSE_TIME] = DEFAULT_AUTO_CLOSE_TIME;
626
  $this->wp_options [AI_OPTION_STAY_CLOSED_TIME] = DEFAULT_STAY_CLOSED_TIME;
627
+ $this->wp_options [AI_OPTION_DELAY_SHOWING] = DEFAULT_DELAY_SHOWING;
628
+ $this->wp_options [AI_OPTION_SHOW_EVERY] = DEFAULT_SHOW_EVERY;
629
 
630
  for ($viewport = 1; $viewport <= 6; $viewport ++) {
631
  $this->wp_options [AI_OPTION_DETECT_VIEWPORT . '_' . $viewport] = AI_DISABLED;
2179
  }
2180
 
2181
  $timeout_code = '';
2182
+ if ($auto_close_time) {
2183
  $timeout_code = " data-ai-close-timeout='{$auto_close_time}'";
2184
  }
2185
 
2186
  $closed_code = '';
2187
+ if ($stay_closed_time) {
2188
  $closed_code = " data-ai-closed-time='{$stay_closed_time}'";
2189
  }
2190
 
2197
  }
2198
  }
2199
 
2200
+ $delay_showing_pageviews = $this->get_delay_showing ();
2201
+ $show_every_pageviews = $this->get_show_every ();
2202
+
2203
+ $ai_check_block_js_code = '';
2204
+ $ai_check_block_html_code = '';
2205
+ $ai_check_block_w3tc_code = '';
2206
+
2207
+ if ($not_iframe_or_inside) {
2208
+ $delay_showing_pageviews_code = '';
2209
+ if ($delay_showing_pageviews != '') {
2210
+ $delay_showing_pageviews_code = " data-ai-delay-pv='{$delay_showing_pageviews}'";
2211
+ $ai_check_block_js_code .= 'var ai_delay_showing_pageviews = ' . round ($delay_showing_pageviews) .'; ';
2212
+ $ai_check_block_w3tc_code .= 'global $ai_delay_showing_pageviews; $ai_delay_showing_pageviews = ' . round ($delay_showing_pageviews) . '; ';
2213
+ }
2214
+
2215
+ $show_every_pageviews_code = '';
2216
+ if ($show_every_pageviews != '') {
2217
+ $show_every_pageviews_code = " data-ai-every-pv='{$show_every_pageviews}'";
2218
+ }
2219
+
2220
+ if ($delay_showing_pageviews_code || $show_every_pageviews_code) {
2221
+ $ai_check_block_html_code = "<span class='ai-check-block' data-ai-block='{$this->number}'{$delay_showing_pageviews_code}{$show_every_pageviews_code}></span>";
2222
+ $additional_code .= $ai_check_block_html_code . "\n";
2223
+ }
2224
+ }
2225
+
2226
  if ($additional_code != '') {
2227
  $additional_code = '<div class="ai-attributes">'."\n" . $additional_code . '</div>'."\n";
2228
  }
2783
  break;
2784
  }
2785
  }
2786
+ }
2787
 
2788
+ if (($stay_closed_time || $delay_showing_pageviews || $show_every_pageviews) && !$ai_wp_data [AI_FORCE_SERVERSIDE_CODE]) {
2789
+ // Check for cookie
2790
+ if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC')) {
2791
+ if ($this->w3tc_code == '') $this->w3tc_code = '$ai_code = base64_decode (\''.base64_encode ($processed_code).'\'); $ai_index = 0; $ai_enabled = true;';
2792
 
2793
+ $this->w3tc_code .= $ai_check_block_w3tc_code;
2794
+ $this->w3tc_code .= 'if ($ai_enabled) $ai_enabled = ai_check_block (' . $this->number . '); if (!$ai_enabled) echo base64_decode (\''.base64_encode ("<div>{$ai_check_block_html_code}</div>\n").'\');';
2795
 
2796
+ $processed_code = '<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
2797
+ $processed_code .= $this->w3tc_code . ' if ($ai_enabled) echo $ai_code;';
2798
+ $processed_code .= '<!-- /mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
2799
+ } else {
2800
+ $debug_html_code = '';
2801
+ $debug_js_code = '';
2802
+
2803
+ if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
2804
+ $debug_label = new ai_block_labels ('ai-debug-cookie');
2805
+
2806
+ $status_id = $this->number . '-' . rand (10000000000, 19999999999);
2807
+ $debug_html_code =
2808
+ $debug_label->block_start () .
2809
+ $debug_label->bar ('COOKIE CHECK', '', '<span class="ai-status"></span>', '<span class="ai-cookie-data"></span>', '', 'ai-check-'.$status_id) .
2810
+ $debug_label->block_end ();
2811
+
2812
+ $debug_js_code = " var ai_debug_bars = document.querySelectorAll ('.ai-check-{$status_id}'); for (let ai_debug_bar of ai_debug_bars) {ai_debug_bar.classList.remove ('ai-check-{$status_id}'); ai_debug_bar.querySelector ('.ai-status').textContent = ai_debug_cookie_status; ai_debug_bar.querySelector ('.ai-cookie-data').textContent = ai_get_cookie_text ({$this->number})}";
2813
  }
2814
+
2815
+ $processed_code = $debug_html_code . "<div class='ai-client-check-".$status_id."' data-code='".base64_encode ($processed_code)."' data-block='{$this->number}'>{$ai_check_block_html_code}</div>\n";
2816
+ if (!get_disable_js_code ())
2817
+ $processed_code .= "<script>".$ai_check_block_js_code."if (ai_check_block ({$this->number})) {var ai_block_div = document.getElementsByClassName ('ai-client-check-".$status_id."'); ai_insert_code (ai_block_div [0]); ai_block_div [0].classList.remove ('ai-client-check-".$status_id."');}".$debug_js_code."</script>\n";
2818
+ }
2819
  }
2820
  }
2821
 
3158
  public function get_iframe_page () {
3159
  global $ai_wp_data, $wp_version;
3160
 
3161
+ $adb_code = defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION && $ai_wp_data [AI_ADB_DETECTION] && !isset ($ai_wp_data [AI_ADB_SHORTCODE_DISABLED]);
3162
+
3163
  $ai_wp_data [AI_CODE_FOR_IFRAME] = true;
3164
  ob_start ();
3165
  echo '<!DOCTYPE>
3169
  ';
3170
  echo "<script type='text/javascript' src='", includes_url ('js/jquery/jquery.js'), "?ver=", $wp_version, "'></script>\n";
3171
  echo "<script type='text/javascript' src='", includes_url ('js/jquery/jquery-migrate.min.js'), "?ver=", $wp_version, "'></script>\n";
3172
+
3173
+ echo "<script>\n";
3174
+ echo "var ai_iframe = true;\n";
3175
+
3176
+ if ($ai_wp_data [AI_FRONTEND_JS_DEBUGGING]) {
3177
+ echo "ai_debugging = true;\n";
3178
+ }
3179
+
3180
+ if (!get_disable_js_code () && ($ai_wp_data [AI_CHECK_BLOCK] || $adb_code)) {
3181
+ echo ai_get_js ('ai-cookie', false);
3182
+ }
3183
+
3184
+ if (!get_disable_js_code () && ($ai_wp_data [AI_CHECK_BLOCK])) {
3185
+ echo ai_get_js ('ai-insert', false);
3186
+ }
3187
+ echo "</script>\n";
3188
+
3189
  ai_wp_head_hook ();
3190
  echo '<style type="text/css">
3191
  body {margin: 0; padding: 0; font-family: arial;}
3224
  return $option;
3225
  }
3226
 
3227
+ public function get_delay_showing () {
3228
+ $option = isset ($this->wp_options [AI_OPTION_DELAY_SHOWING]) ? $this->wp_options [AI_OPTION_DELAY_SHOWING] : DEFAULT_DELAY_SHOWING;
3229
+ if ($option == '0') $option = '';
3230
+ return $option;
3231
+ }
3232
+
3233
+ public function get_show_every () {
3234
+ $option = isset ($this->wp_options [AI_OPTION_SHOW_EVERY]) ? $this->wp_options [AI_OPTION_SHOW_EVERY] : DEFAULT_SHOW_EVERY;
3235
+ if ($option == '0') $option = '';
3236
+ return $option;
3237
+ }
3238
+
3239
  public function get_horizontal_margin (){
3240
  $option = isset ($this->wp_options [AI_OPTION_HORIZONTAL_MARGIN]) ? $this->wp_options [AI_OPTION_HORIZONTAL_MARGIN] : DEFAULT_HORIZONTAL_MARGIN;
3241
  return $option;
constants.php CHANGED
@@ -29,7 +29,7 @@ if (!defined( 'AD_INSERTER_NAME'))
29
  define ('AD_INSERTER_NAME', 'Ad Inserter');
30
 
31
  if (!defined( 'AD_INSERTER_VERSION'))
32
- define ('AD_INSERTER_VERSION', '2.4.22');
33
 
34
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
35
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
@@ -162,6 +162,8 @@ define ('AI_OPTION_ANIMATION_TRIGGER_VALUE', 'animation-trigger-value');
162
  define ('AI_OPTION_ANIMATION_TRIGGER_OFFSET', 'animation-trigger-offset');
163
  define ('AI_OPTION_ANIMATION_TRIGGER_DELAY', 'animation-trigger-delay');
164
  define ('AI_OPTION_ANIMATION_TRIGGER_ONCE', 'animation-trigger-once');
 
 
165
 
166
  define ('AI_OPTION_DISABLED', 'disabled');
167
 
@@ -786,6 +788,8 @@ define ('DEFAULT_DISABLE_FOOTER_CODE', AI_DISABLED);
786
  define ('DEFAULT_DISABLE_HEADER_CODE', AI_DISABLED);
787
  define ('DEFAULT_IFRAME_WIDTH', '');
788
  define ('DEFAULT_IFRAME_HEIGHT', '');
 
 
789
 
790
  define ('AI_ADBLOCKING_DETECTION', true);
791
  define ('AI_NORMAL_HEADER_STYLES', true);
@@ -977,6 +981,8 @@ define ('AI_HEAD_GROUPS', 48);
977
  define ('AI_CURRENT_BLOCK_NUMBER', 50);
978
  define ('AI_ACTIVE_GROUP_NAMES', 51);
979
  define ('AI_ADB_SHORTCODE_DISABLED', 52);
 
 
980
 
981
  define ('AI_CONTEXT_NONE', 0);
982
  define ('AI_CONTEXT_CONTENT', 1);
29
  define ('AD_INSERTER_NAME', 'Ad Inserter');
30
 
31
  if (!defined( 'AD_INSERTER_VERSION'))
32
+ define ('AD_INSERTER_VERSION', '2.4.23');
33
 
34
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
35
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
162
  define ('AI_OPTION_ANIMATION_TRIGGER_OFFSET', 'animation-trigger-offset');
163
  define ('AI_OPTION_ANIMATION_TRIGGER_DELAY', 'animation-trigger-delay');
164
  define ('AI_OPTION_ANIMATION_TRIGGER_ONCE', 'animation-trigger-once');
165
+ define ('AI_OPTION_DELAY_SHOWING', 'delay-showing');
166
+ define ('AI_OPTION_SHOW_EVERY', 'show-every');
167
 
168
  define ('AI_OPTION_DISABLED', 'disabled');
169
 
788
  define ('DEFAULT_DISABLE_HEADER_CODE', AI_DISABLED);
789
  define ('DEFAULT_IFRAME_WIDTH', '');
790
  define ('DEFAULT_IFRAME_HEIGHT', '');
791
+ define ('DEFAULT_DELAY_SHOWING', '');
792
+ define ('DEFAULT_SHOW_EVERY', '');
793
 
794
  define ('AI_ADBLOCKING_DETECTION', true);
795
  define ('AI_NORMAL_HEADER_STYLES', true);
981
  define ('AI_CURRENT_BLOCK_NUMBER', 50);
982
  define ('AI_ACTIVE_GROUP_NAMES', 51);
983
  define ('AI_ADB_SHORTCODE_DISABLED', 52);
984
+ define ('AI_CHECK_BLOCK', 53);
985
+ define ('AI_CUSTOM_FIELDS', 54);
986
 
987
  define ('AI_CONTEXT_NONE', 0);
988
  define ('AI_CONTEXT_CONTENT', 1);
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.4.22"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
1
  #ai-data {
2
+ font-family: "2.4.23"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
includes/js/ai-adb.js CHANGED
@@ -453,16 +453,20 @@ jQuery (document).ready (function ($) {
453
  jQuery (window).on ('load', function () {
454
  if (ai_adb_debugging) console.log ("AI AD BLOCKING window load");
455
 
456
- if (!(typeof ga == 'function' && ga.toString().length > 30)) {
457
- jQuery (document).ready (function () {if (!ai_adb_active || ai_adb_debugging) ai_adb_detected (5)});
458
- } else {
459
- jQuery (document).ready (function () {ai_adb_undetected (5)});
460
- }
 
 
461
 
462
- if (!(typeof _mNDetails == 'object' && JSON.stringify (_mNDetails).length > 400)) {
463
- jQuery (document).ready (function () {if (!ai_adb_active || ai_adb_debugging) ai_adb_detected (6)});
464
- } else {
465
- jQuery (document).ready (function () {ai_adb_undetected (6)});
466
- }
 
 
467
  });
468
 
453
  jQuery (window).on ('load', function () {
454
  if (ai_adb_debugging) console.log ("AI AD BLOCKING window load");
455
 
456
+ if (jQuery("#ai-adb-ga").length) {
457
+ if (!(typeof ga == 'function' && ga.toString().length > 30)) {
458
+ jQuery (document).ready (function () {if (!ai_adb_active || ai_adb_debugging) ai_adb_detected (5)});
459
+ } else {
460
+ jQuery (document).ready (function () {ai_adb_undetected (5)});
461
+ }
462
+ }
463
 
464
+ if (jQuery("#ai-adb-mn").length) {
465
+ if (!(typeof _mNDetails == 'object' && JSON.stringify (_mNDetails).length > 400)) {
466
+ jQuery (document).ready (function () {if (!ai_adb_active || ai_adb_debugging) ai_adb_detected (6)});
467
+ } else {
468
+ jQuery (document).ready (function () {ai_adb_undetected (6)});
469
+ }
470
+ }
471
  });
472
 
includes/js/ai-adb.min.js CHANGED
@@ -23,4 +23,5 @@ jQuery(document).ready(function($){$(window).ready(function(){$("#ai-adb-bar").c
23
  ai_adb_debugging)&&ai_adb_selectors!=""){var ai_adb_el_counter=0;var ai_adb_el_zero=0;var ai_adb_selector=ai_adb_selectors.split(",");$.each(ai_adb_selector,function(i){ai_adb_selector[i]=ai_adb_selector[i].trim();if(ai_adb_debugging)console.log("AI AD BLOCKING selector",ai_adb_selector[i]);if($(ai_adb_selector[i]).length!=0)$(ai_adb_selector[i]).each(function(n){var outer_height=$(this).outerHeight();if(ai_adb_debugging)console.log('AI AD BLOCKING element id="'+$(this).attr("id")+'" class="'+$(this).attr("class")+
24
  '" heights:',$(this).outerHeight(),$(this).innerHeight(),$(this).height());var ai_attributes=$(this).find(".ai-attributes");if(ai_attributes.length)ai_attributes.each(function(){if(ai_adb_debugging)console.log("AI AD BLOCKING attributes height:",$(this).outerHeight());if(outer_height>=$(this).outerHeight())outer_height-=$(this).outerHeight()});if(ai_adb_debugging)console.log("AI AD BLOCKING effective height:",outer_height);ai_adb_el_counter++;if(outer_height===0){$(document).ready(function(){if(!ai_adb_active||
25
  ai_adb_debugging)ai_adb_detected(4)});ai_adb_el_zero++;if(!ai_adb_debugging)return false}})});if(ai_adb_el_counter!=0&&ai_adb_el_zero==0)$(document).ready(function(){ai_adb_undetected(4)})}})});
26
- jQuery(window).on("load",function(){if(ai_adb_debugging)console.log("AI AD BLOCKING window load");if(!(typeof ga=="function"&&ga.toString().length>30))jQuery(document).ready(function(){if(!ai_adb_active||ai_adb_debugging)ai_adb_detected(5)});else jQuery(document).ready(function(){ai_adb_undetected(5)});if(!(typeof _mNDetails=="object"&&JSON.stringify(_mNDetails).length>400))jQuery(document).ready(function(){if(!ai_adb_active||ai_adb_debugging)ai_adb_detected(6)});else jQuery(document).ready(function(){ai_adb_undetected(6)})});
 
23
  ai_adb_debugging)&&ai_adb_selectors!=""){var ai_adb_el_counter=0;var ai_adb_el_zero=0;var ai_adb_selector=ai_adb_selectors.split(",");$.each(ai_adb_selector,function(i){ai_adb_selector[i]=ai_adb_selector[i].trim();if(ai_adb_debugging)console.log("AI AD BLOCKING selector",ai_adb_selector[i]);if($(ai_adb_selector[i]).length!=0)$(ai_adb_selector[i]).each(function(n){var outer_height=$(this).outerHeight();if(ai_adb_debugging)console.log('AI AD BLOCKING element id="'+$(this).attr("id")+'" class="'+$(this).attr("class")+
24
  '" heights:',$(this).outerHeight(),$(this).innerHeight(),$(this).height());var ai_attributes=$(this).find(".ai-attributes");if(ai_attributes.length)ai_attributes.each(function(){if(ai_adb_debugging)console.log("AI AD BLOCKING attributes height:",$(this).outerHeight());if(outer_height>=$(this).outerHeight())outer_height-=$(this).outerHeight()});if(ai_adb_debugging)console.log("AI AD BLOCKING effective height:",outer_height);ai_adb_el_counter++;if(outer_height===0){$(document).ready(function(){if(!ai_adb_active||
25
  ai_adb_debugging)ai_adb_detected(4)});ai_adb_el_zero++;if(!ai_adb_debugging)return false}})});if(ai_adb_el_counter!=0&&ai_adb_el_zero==0)$(document).ready(function(){ai_adb_undetected(4)})}})});
26
+ jQuery(window).on("load",function(){if(ai_adb_debugging)console.log("AI AD BLOCKING window load");if(jQuery("#ai-adb-ga").length)if(!(typeof ga=="function"&&ga.toString().length>30))jQuery(document).ready(function(){if(!ai_adb_active||ai_adb_debugging)ai_adb_detected(5)});else jQuery(document).ready(function(){ai_adb_undetected(5)});if(jQuery("#ai-adb-mn").length)if(!(typeof _mNDetails=="object"&&JSON.stringify(_mNDetails).length>400))jQuery(document).ready(function(){if(!ai_adb_active||ai_adb_debugging)ai_adb_detected(6)});
27
+ else jQuery(document).ready(function(){ai_adb_undetected(6)})});
includes/js/ai-cookie.js CHANGED
@@ -173,44 +173,63 @@ function ai_check_block (block) {
173
 
174
  var ai_cookie_name = 'aiBLOCKS';
175
  var ai_cookie = AiCookies.getJSON (ai_cookie_name);
 
176
 
177
  if (ai_cookie == null) {
178
  ai_cookie = {};
179
  }
180
 
 
 
 
 
 
 
 
 
 
 
 
 
181
  if (ai_cookie.hasOwnProperty (block)) {
182
  for (var cookie_block_property in ai_cookie [block]) {
183
  if (cookie_block_property == 'x') {
184
  var date = new Date();
185
  var closed_for = ai_cookie [block][cookie_block_property] - Math.round (date.getTime() / 1000);
186
  if (closed_for > 0) {
 
 
 
187
  if (ai_debug) console.log ('');
188
- if (ai_debug) console.log ('AI COOKIE block', block, 'closed for', closed_for, 's =', closed_for / 3600 / 24, 'days');
189
 
190
  return false;
191
  } else ai_set_cookie (block, 'x', '');
 
 
 
 
 
 
 
 
 
 
192
  }
193
  }
194
  }
195
 
 
 
 
 
196
  return true;
197
  }
198
 
199
- function ai_set_cookie (block, property, value) {
200
-
201
- function isEmpty (obj) {
202
- for (var key in obj) {
203
- if (obj.hasOwnProperty (key))
204
- return false;
205
- }
206
- return true;
207
- }
208
 
209
  var ai_debug = typeof ai_debugging !== 'undefined'; // 2
210
  // var ai_debug = false;
211
 
212
- if (ai_debug) console.log ('AI COOKIE block:', block, 'property:', property, 'value:', value);
213
-
214
  var ai_cookie_name = 'aiBLOCKS';
215
  var ai_cookie = AiCookies.getJSON (ai_cookie_name);
216
 
@@ -220,7 +239,47 @@ function ai_set_cookie (block, property, value) {
220
  if (ai_debug) console.log ('AI COOKIE NOT PRESENT');
221
  }
222
 
223
- if (ai_debug) console.log ('AI COOKIE OLD', ai_cookie);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
 
225
  if (value === '') {
226
  if (ai_cookie.hasOwnProperty (block)) {
@@ -257,6 +316,12 @@ function ai_set_cookie (block, property, value) {
257
  var closed_for = ai_cookie_test [cookie_block][cookie_block_property] - Math.round (date.getTime() / 1000);
258
  console.log (' BLOCK', cookie_block, 'closed for', closed_for, 's =', closed_for / 3600 / 24, 'days');
259
  } else
 
 
 
 
 
 
260
  console.log (' ?:', cookie_block, ':', cookie_block_property, ai_cookie_test [cookie_block][cookie_block_property]);
261
  }
262
  }
@@ -264,3 +329,17 @@ function ai_set_cookie (block, property, value) {
264
  }
265
  }
266
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
 
174
  var ai_cookie_name = 'aiBLOCKS';
175
  var ai_cookie = AiCookies.getJSON (ai_cookie_name);
176
+ ai_debug_cookie_status = '';
177
 
178
  if (ai_cookie == null) {
179
  ai_cookie = {};
180
  }
181
 
182
+ if (typeof ai_delay_showing_pageviews !== 'undefined') {
183
+ if (!ai_cookie.hasOwnProperty (block)) {
184
+ ai_cookie [block] = {};
185
+ }
186
+
187
+ if (!ai_cookie [block].hasOwnProperty ('d')) {
188
+ ai_cookie [block]['d'] = ai_delay_showing_pageviews;
189
+
190
+ if (ai_debug) console.log ('AI CHECK block', block, 'NO COOKIE DATA d, delayed for', ai_delay_showing_pageviews, 'pageviews');
191
+ }
192
+ }
193
+
194
  if (ai_cookie.hasOwnProperty (block)) {
195
  for (var cookie_block_property in ai_cookie [block]) {
196
  if (cookie_block_property == 'x') {
197
  var date = new Date();
198
  var closed_for = ai_cookie [block][cookie_block_property] - Math.round (date.getTime() / 1000);
199
  if (closed_for > 0) {
200
+ var message = 'closed for ' + closed_for + ' s =' + (closed_for / 3600 / 24) + ' days';
201
+ ai_debug_cookie_status = message;
202
+ if (ai_debug) console.log ('AI CHECK block', block, message);
203
  if (ai_debug) console.log ('');
 
204
 
205
  return false;
206
  } else ai_set_cookie (block, 'x', '');
207
+ } else
208
+ if (cookie_block_property == 'd') {
209
+ if (ai_cookie [block][cookie_block_property] != 0) {
210
+ var message = 'delayed for ' + ai_cookie [block][cookie_block_property] + ' pageviews';
211
+ ai_debug_cookie_status = message;
212
+ if (ai_debug) console.log ('AI CHECK block', block, message);
213
+ if (ai_debug) console.log ('');
214
+
215
+ return false;
216
+ }
217
  }
218
  }
219
  }
220
 
221
+ ai_debug_cookie_status = 'OK';
222
+ if (ai_debug) console.log ('AI CHECK block', block, 'OK');
223
+ if (ai_debug) console.log ('');
224
+
225
  return true;
226
  }
227
 
228
+ function ai_load_cookie () {
 
 
 
 
 
 
 
 
229
 
230
  var ai_debug = typeof ai_debugging !== 'undefined'; // 2
231
  // var ai_debug = false;
232
 
 
 
233
  var ai_cookie_name = 'aiBLOCKS';
234
  var ai_cookie = AiCookies.getJSON (ai_cookie_name);
235
 
239
  if (ai_debug) console.log ('AI COOKIE NOT PRESENT');
240
  }
241
 
242
+ if (ai_debug) console.log ('AI COOKIE LOAD', ai_cookie);
243
+
244
+ return ai_cookie;
245
+ }
246
+
247
+ function ai_get_cookie (block, property) {
248
+
249
+ var ai_debug = typeof ai_debugging !== 'undefined'; // 3
250
+ // var ai_debug = false;
251
+
252
+ var value = '';
253
+ var ai_cookie = ai_load_cookie ();
254
+
255
+ if (ai_cookie.hasOwnProperty (block)) {
256
+ if (ai_cookie [block].hasOwnProperty (property)) {
257
+ value = ai_cookie [block][property];
258
+ }
259
+ }
260
+
261
+ if (ai_debug) console.log ('AI COOKIE GET block:', block, 'property:', property, 'value:', value);
262
+
263
+ return value;
264
+ }
265
+
266
+ function ai_set_cookie (block, property, value) {
267
+
268
+ function isEmpty (obj) {
269
+ for (var key in obj) {
270
+ if (obj.hasOwnProperty (key))
271
+ return false;
272
+ }
273
+ return true;
274
+ }
275
+
276
+ var ai_cookie_name = 'aiBLOCKS';
277
+ var ai_debug = typeof ai_debugging !== 'undefined'; // 4
278
+ // var ai_debug = false;
279
+
280
+ if (ai_debug) console.log ('AI COOKIE SET block:', block, 'property:', property, 'value:', value);
281
+
282
+ var ai_cookie = ai_load_cookie ();
283
 
284
  if (value === '') {
285
  if (ai_cookie.hasOwnProperty (block)) {
316
  var closed_for = ai_cookie_test [cookie_block][cookie_block_property] - Math.round (date.getTime() / 1000);
317
  console.log (' BLOCK', cookie_block, 'closed for', closed_for, 's =', closed_for / 3600 / 24, 'days');
318
  } else
319
+ if (cookie_block_property == 'd') {
320
+ console.log (' BLOCK', cookie_block, 'delayed for', ai_cookie_test [cookie_block][cookie_block_property], 'pageviews');
321
+ } else
322
+ if (cookie_block_property == 'e') {
323
+ console.log (' BLOCK', cookie_block, 'show every', ai_cookie_test [cookie_block][cookie_block_property], 'pageviews');
324
+ } else
325
  console.log (' ?:', cookie_block, ':', cookie_block_property, ai_cookie_test [cookie_block][cookie_block_property]);
326
  }
327
  }
329
  }
330
  }
331
 
332
+ function ai_get_cookie_text (block) {
333
+ var ai_cookie_name = 'aiBLOCKS';
334
+ var ai_cookie = AiCookies.getJSON (ai_cookie_name);
335
+
336
+ if (ai_cookie == null) {
337
+ ai_cookie = {};
338
+ }
339
+
340
+ if (ai_cookie.hasOwnProperty (block)) {
341
+ return JSON.stringify (ai_cookie [block]).replace (/\"/g, '').replace ('{', '').replace('}', '');
342
+ }
343
+
344
+ return '';
345
+ }
includes/js/ai-cookie.min.js CHANGED
@@ -5,8 +5,11 @@
5
  Copyright 2006, 2015 Klaus Hartl & Fagner Brack
6
  Released under the MIT license
7
  */
8
- (function(c){if("function"===typeof define&&define.amd){define(c);var b=!0}"object"===typeof exports&&(module.exports=c(),b=!0);if(!b){var d=window.Cookies,a=window.Cookies=c();a.noConflict=function(){window.Cookies=d;return a}}})(function(){function c(){for(var c=0,a={};c<arguments.length;c++){var b=arguments[c],g;for(g in b)a[g]=b[g]}return a}function b(d){function a(){}function f(b,h,e){if("undefined"!==typeof document){e=c({path:"/"},a.defaults,e);"number"===typeof e.expires&&(e.expires=new Date(1*
9
  new Date+864E5*e.expires));e.expires=e.expires?e.expires.toUTCString():"";try{var k=JSON.stringify(h);/^[\{\[]/.test(k)&&(h=k)}catch(p){}h=d.write?d.write(h,b):encodeURIComponent(String(h)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent);b=encodeURIComponent(String(b)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);k="";for(var m in e)e[m]&&(k+="; "+m,!0!==e[m]&&(k+="="+e[m].split(";")[0]));return document.cookie=b+"="+h+k}}
10
- function g(a,b){if("undefined"!==typeof document){for(var c={},k=document.cookie?document.cookie.split("; "):[],h=0;h<k.length;h++){var f=k[h].split("="),l=f.slice(1).join("=");b||'"'!==l.charAt(0)||(l=l.slice(1,-1));try{var g=f[0].replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);l=(d.read||d)(l,g)||l.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);if(b)try{l=JSON.parse(l)}catch(n){}c[g]=l;if(a===g)break}catch(n){}}return a?c[a]:c}}a.set=f;a.get=function(a){return g(a,!1)};a.getJSON=function(a){return g(a,
11
- !0)};a.remove=function(a,b){f(a,"",c(b,{expires:-1}))};a.defaults={};a.withConverter=b;return a}return b(function(){})});AiCookies=Cookies.noConflict();function ai_check_client(c){var b=AiCookies.getJSON("aiBLOCKS");null==b&&(b={});if(b.hasOwnProperty(c))for(var d in b[c])if("x"==d){if(0<b[c][d]-Math.round((new Date).getTime()/1E3))return!1;ai_set_cookie(c,"x","")}return!0}
12
- function ai_set_cookie(c,b,d){var a=AiCookies.getJSON("aiBLOCKS");null==a&&(a={});if(""===d){if(a.hasOwnProperty(c)){delete a[c][b];a:{b=a[c];for(f in b)if(b.hasOwnProperty(f)){var f=!1;break a}f=!0}f&&delete a[c]}}else a.hasOwnProperty(c)||(a[c]={}),a[c][b]=d;0===Object.keys(a).length&&a.constructor===Object?AiCookies.remove("aiBLOCKS"):AiCookies.set("aiBLOCKS",a,{expires:365,path:"/"})};
 
 
 
5
  Copyright 2006, 2015 Klaus Hartl & Fagner Brack
6
  Released under the MIT license
7
  */
8
+ (function(a){if("function"===typeof define&&define.amd){define(a);var b=!0}"object"===typeof exports&&(module.exports=a(),b=!0);if(!b){var d=window.Cookies,c=window.Cookies=a();c.noConflict=function(){window.Cookies=d;return c}}})(function(){function a(){for(var a=0,c={};a<arguments.length;a++){var b=arguments[a],g;for(g in b)c[g]=b[g]}return c}function b(d){function c(){}function f(b,h,e){if("undefined"!==typeof document){e=a({path:"/"},c.defaults,e);"number"===typeof e.expires&&(e.expires=new Date(1*
9
  new Date+864E5*e.expires));e.expires=e.expires?e.expires.toUTCString():"";try{var k=JSON.stringify(h);/^[\{\[]/.test(k)&&(h=k)}catch(p){}h=d.write?d.write(h,b):encodeURIComponent(String(h)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent);b=encodeURIComponent(String(b)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);k="";for(var m in e)e[m]&&(k+="; "+m,!0!==e[m]&&(k+="="+e[m].split(";")[0]));return document.cookie=b+"="+h+k}}
10
+ function g(a,b){if("undefined"!==typeof document){for(var c={},k=document.cookie?document.cookie.split("; "):[],h=0;h<k.length;h++){var f=k[h].split("="),l=f.slice(1).join("=");b||'"'!==l.charAt(0)||(l=l.slice(1,-1));try{var g=f[0].replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);l=(d.read||d)(l,g)||l.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);if(b)try{l=JSON.parse(l)}catch(n){}c[g]=l;if(a===g)break}catch(n){}}return a?c[a]:c}}c.set=f;c.get=function(a){return g(a,!1)};c.getJSON=function(a){return g(a,
11
+ !0)};c.remove=function(b,c){f(b,"",a(c,{expires:-1}))};c.defaults={};c.withConverter=b;return c}return b(function(){})});AiCookies=Cookies.noConflict();
12
+ function ai_check_block(a){var b=AiCookies.getJSON("aiBLOCKS");ai_debug_cookie_status="";null==b&&(b={});"undefined"!==typeof ai_delay_showing_pageviews&&(b.hasOwnProperty(a)||(b[a]={}),b[a].hasOwnProperty("d")||(b[a].d=ai_delay_showing_pageviews));if(b.hasOwnProperty(a))for(var d in b[a])if("x"==d){var c=b[a][d]-Math.round((new Date).getTime()/1E3);if(0<c)return ai_debug_cookie_status=a="closed for "+c+" s ="+c/3600/24+" days",!1;ai_set_cookie(a,"x","")}else if("d"==d&&0!=b[a][d])return ai_debug_cookie_status=
13
+ a="delayed for "+b[a][d]+" pageviews",!1;ai_debug_cookie_status="OK";return!0}function ai_load_cookie(){var a=AiCookies.getJSON("aiBLOCKS");null==a&&(a={});return a}function ai_get_cookie(a,b){var d="",c=ai_load_cookie();c.hasOwnProperty(a)&&c[a].hasOwnProperty(b)&&(d=c[a][b]);return d}
14
+ function ai_set_cookie(a,b,d){var c=ai_load_cookie();if(""===d){if(c.hasOwnProperty(a)){delete c[a][b];a:{b=c[a];for(f in b)if(b.hasOwnProperty(f)){var f=!1;break a}f=!0}f&&delete c[a]}}else c.hasOwnProperty(a)||(c[a]={}),c[a][b]=d;0===Object.keys(c).length&&c.constructor===Object?AiCookies.remove("aiBLOCKS"):AiCookies.set("aiBLOCKS",c,{expires:365,path:"/"})}
15
+ function ai_get_cookie_text(a){var b=AiCookies.getJSON("aiBLOCKS");null==b&&(b={});return b.hasOwnProperty(a)?JSON.stringify(b[a]).replace(/"/g,"").replace("{","").replace("}",""):""};
includes/js/ai-insert.js CHANGED
@@ -15,6 +15,9 @@ function ai_insert (insertion, selector, insertion_code) {
15
  } else
16
  selector_string = '';
17
 
 
 
 
18
  var template = document.createElement ('div');
19
  template.innerHTML = insertion_code;
20
 
@@ -70,8 +73,6 @@ function ai_insert (insertion, selector, insertion_code) {
70
  element.parentNode.insertBefore (fragment, element);
71
  element.parentNode.removeChild (element);
72
  }
73
-
74
- if (ai_debug) console.log ('AI INSERT', insertion, selector, '(' + element.tagName.toLowerCase() + selector_string + ')');
75
  });
76
  }
77
 
@@ -101,7 +102,7 @@ function ai_insert_code (element) {
101
  var ai_debug = typeof ai_debugging !== 'undefined'; // 2
102
  // var ai_debug = false;
103
 
104
- if (ai_debug) console.log ('AI VIEWPORT INSERTION class:', element.getAttribute ('class'));
105
 
106
  var visible = !!(element.offsetWidth || element.offsetHeight || element.getClientRects().length);
107
  var block = element.getAttribute ('data-block');
@@ -132,6 +133,11 @@ function ai_insert_code (element) {
132
  removeClass (element, 'ai-viewports');
133
  }
134
  }
 
 
 
 
 
135
  } else {
136
  if (ai_debug) console.log ('AI VIEWPORT NOT VISIBLE: block', block);
137
 
15
  } else
16
  selector_string = '';
17
 
18
+ if (ai_debug) console.log ('');
19
+ if (ai_debug) console.log ('AI INSERT', insertion, selector, '(' + element.tagName.toLowerCase() + selector_string + ')');
20
+
21
  var template = document.createElement ('div');
22
  template.innerHTML = insertion_code;
23
 
73
  element.parentNode.insertBefore (fragment, element);
74
  element.parentNode.removeChild (element);
75
  }
 
 
76
  });
77
  }
78
 
102
  var ai_debug = typeof ai_debugging !== 'undefined'; // 2
103
  // var ai_debug = false;
104
 
105
+ if (ai_debug) console.log ('AI INSERT ELEMENT class:', element.getAttribute ('class'));
106
 
107
  var visible = !!(element.offsetWidth || element.offsetHeight || element.getClientRects().length);
108
  var block = element.getAttribute ('data-block');
133
  removeClass (element, 'ai-viewports');
134
  }
135
  }
136
+
137
+ var ai_check_block_data = element.getElementsByClassName ('ai-check-block');
138
+ if (typeof ai_check_block_data [0] != 'undefined') {
139
+ ai_check_block_data [0].parentNode.removeChild (ai_check_block_data [0]);
140
+ }
141
  } else {
142
  if (ai_debug) console.log ('AI VIEWPORT NOT VISIBLE: block', block);
143
 
includes/js/ai-insert.min.js CHANGED
@@ -2,5 +2,5 @@ function ai_insert(a,f,h){var e=-1!=f.indexOf(":eq")?jQuery(f):document.querySel
2
  a?g=ai_front.insertion_before:"after"==a?g=ai_front.insertion_after:"prepend"==a?g=ai_front.insertion_prepend:"append"==a?g=ai_front.insertion_append:"replace-content"==a?g=ai_front.insertion_replace_content:"replace-element"==a&&(g=ai_front.insertion_replace_element);c.innerText=g+" "+f+" ("+b.tagName.toLowerCase()+selector_string+")"}c=document.createRange().createContextualFragment(d.innerHTML);"before"==a?b.parentNode.insertBefore(c,b):"after"==a?b.parentNode.insertBefore(c,b.nextSibling):"prepend"==
3
  a?b.insertBefore(c,b.firstChild):"append"==a?b.insertBefore(c,null):"replace-content"==a?b.innerHTML=d.innerHTML:"replace-element"==a&&(b.parentNode.insertBefore(c,b),b.parentNode.removeChild(b))})}
4
  function ai_insert_code(a){function f(a,b){return null==a?!1:a.classList?a.classList.contains(b):-1<(" "+a.className+" ").indexOf(" "+b+" ")}function h(a,b){null!=a&&(a.classList?a.classList.add(b):a.className+=" "+b)}function e(a,b){null!=a&&(a.classList?a.classList.remove(b):a.className=a.className.replace(new RegExp("(^|\\b)"+b.split(" ").join("|")+"(\\b|$)","gi")," "))}var b=!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length);a.getAttribute("data-block");if(b){b=a.getAttribute("data-code");
5
- var k=a.getAttribute("data-insertion"),d=a.getAttribute("data-selector");null!=b&&(null!=k&&null!=d?document.querySelectorAll(d).length&&(ai_insert(k,d,b64d(b)),e(a,"ai-viewports")):(b=document.createRange().createContextualFragment(b64d(b)),a.parentNode.insertBefore(b,a.nextSibling),e(a,"ai-viewports")))}else b=a.previousElementSibling,f(b,"ai-debug-bar")&&f(b,"ai-debug-script")&&(e(b,"ai-debug-script"),h(b,"ai-debug-viewport-invisible")),e(a,"ai-viewports")}
6
- function b64e(a){return btoa(encodeURIComponent(a).replace(/%([0-9A-F]{2})/g,function(a,h){return String.fromCharCode("0x"+h)}))}function b64d(a){return decodeURIComponent(atob(a).split("").map(function(a){return"%"+("00"+a.charCodeAt(0).toString(16)).slice(-2)}).join(""))};
2
  a?g=ai_front.insertion_before:"after"==a?g=ai_front.insertion_after:"prepend"==a?g=ai_front.insertion_prepend:"append"==a?g=ai_front.insertion_append:"replace-content"==a?g=ai_front.insertion_replace_content:"replace-element"==a&&(g=ai_front.insertion_replace_element);c.innerText=g+" "+f+" ("+b.tagName.toLowerCase()+selector_string+")"}c=document.createRange().createContextualFragment(d.innerHTML);"before"==a?b.parentNode.insertBefore(c,b):"after"==a?b.parentNode.insertBefore(c,b.nextSibling):"prepend"==
3
  a?b.insertBefore(c,b.firstChild):"append"==a?b.insertBefore(c,null):"replace-content"==a?b.innerHTML=d.innerHTML:"replace-element"==a&&(b.parentNode.insertBefore(c,b),b.parentNode.removeChild(b))})}
4
  function ai_insert_code(a){function f(a,b){return null==a?!1:a.classList?a.classList.contains(b):-1<(" "+a.className+" ").indexOf(" "+b+" ")}function h(a,b){null!=a&&(a.classList?a.classList.add(b):a.className+=" "+b)}function e(a,b){null!=a&&(a.classList?a.classList.remove(b):a.className=a.className.replace(new RegExp("(^|\\b)"+b.split(" ").join("|")+"(\\b|$)","gi")," "))}var b=!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length);a.getAttribute("data-block");if(b){b=a.getAttribute("data-code");
5
+ var k=a.getAttribute("data-insertion"),d=a.getAttribute("data-selector");null!=b&&(null!=k&&null!=d?document.querySelectorAll(d).length&&(ai_insert(k,d,b64d(b)),e(a,"ai-viewports")):(b=document.createRange().createContextualFragment(b64d(b)),a.parentNode.insertBefore(b,a.nextSibling),e(a,"ai-viewports")));a=a.getElementsByClassName("ai-check-block");"undefined"!=typeof a[0]&&a[0].parentNode.removeChild(a[0])}else b=a.previousElementSibling,f(b,"ai-debug-bar")&&f(b,"ai-debug-script")&&(e(b,"ai-debug-script"),
6
+ h(b,"ai-debug-viewport-invisible")),e(a,"ai-viewports")}function b64e(a){return btoa(encodeURIComponent(a).replace(/%([0-9A-F]{2})/g,function(a,h){return String.fromCharCode("0x"+h)}))}function b64d(a){return decodeURIComponent(atob(a).split("").map(function(a){return"%"+("00"+a.charCodeAt(0).toString(16)).slice(-2)}).join(""))};
includes/preview.php CHANGED
@@ -2366,7 +2366,7 @@ Single pages (posts and static pages) have also additional setting for individua
2366
 
2367
  <?php ai_wp_footer_hook (); ?>
2368
  <script>
2369
- <?php if (function_exists ('ai_extract_features_2')) echo ai_get_js ('ai-close'); ?>
2370
  <?php
2371
  if ($sticky) echo ai_get_js ('ai-sticky');
2372
  echo ai_get_js ('ai-rotate');
2366
 
2367
  <?php ai_wp_footer_hook (); ?>
2368
  <script>
2369
+ <?php if (function_exists ('ai_extract_features_2')) echo ai_get_js ('ai-cookie'), ai_get_js ('ai-close'); ?>
2370
  <?php
2371
  if ($sticky) echo ai_get_js ('ai-sticky');
2372
  echo ai_get_js ('ai-rotate');
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.4.22";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
1
+ var javascript_version = "2.4.23";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
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.4.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-06-13 19:59:55+00:00\n"
8
- "PO-Revision-Date: 2019-06-13 22:01+0200\n"
9
  "Last-Translator: Igor Funa\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
@@ -16,129 +16,129 @@ msgstr ""
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
- #: ad-inserter.php:356
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:372
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:379
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:450
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:457
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:466
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:473
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:483
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
  #. translators: Debugging position name Before HTML element
60
- #: ad-inserter.php:1080
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
- #: ad-inserter.php:1085
66
  msgid "After"
67
  msgstr "Za"
68
 
69
  #. translators: Debugging position name Prepend content of HTML element (before
70
  #. the content of the HTML element)
71
- #: ad-inserter.php:1090 strings.php:98
72
  msgid "Prepend content"
73
  msgstr "Dodaj pred vsebino"
74
 
75
  #. translators: Debugging position name Append content of HTML element (after
76
  #. the content of the HTML element)
77
- #: ad-inserter.php:1095 strings.php:99
78
  msgid "Append content"
79
  msgstr "Dodaj za vsebino"
80
 
81
  #. translators: Debugging position name Replace content of HTML element
82
- #: ad-inserter.php:1100 strings.php:100
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
- #: ad-inserter.php:1105 strings.php:150
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
- #: ad-inserter.php:1152
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
- #: ad-inserter.php:1156
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
- #: ad-inserter.php:1365
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
- #: ad-inserter.php:1646 ad-inserter.php:2498
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
- #: ad-inserter.php:2069
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
- #: ad-inserter.php:2069
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
- #: ad-inserter.php:2070
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
- #: ad-inserter.php:2071
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
- #: ad-inserter.php:2072
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
- #: ad-inserter.php:2073
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
- #: ad-inserter.php:2074
137
  msgid "AD BLOCKING DETECTED - NO ACTION"
138
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
139
 
140
  #. Translators: 1: number of blocks, 2: Ad Inserter
141
- #: ad-inserter.php:2269
142
  msgid "Hey, you are now using %1$s %2$s block."
143
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
144
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
@@ -146,25 +146,25 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
146
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
147
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
148
 
149
- #: ad-inserter.php:2270 includes/functions.php:1530
150
  msgid "No, thank you."
151
  msgstr "Ne, hvala."
152
 
153
  #. Translators: %s: Ad Inserter
154
- #: ad-inserter.php:2273
155
  msgid ""
156
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
157
  msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
158
 
159
- #: ad-inserter.php:2274 includes/functions.php:1533
160
  msgid "Not now, maybe later."
161
  msgstr "Ne zdaj, mogoče kasneje."
162
 
163
- #: ad-inserter.php:2284
164
  msgid "I would really appreciate if you could rate the plugin on WordPres."
165
  msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
166
 
167
- #: ad-inserter.php:2286
168
  msgid ""
169
  "Positive reviews are a great incentive to fix bugs and to add new features "
170
  "for better monetization of your website. Thank you, Igor"
@@ -173,105 +173,105 @@ msgstr ""
173
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
174
 
175
  #. translators: %s: Ad Inserter
176
- #: ad-inserter.php:2292
177
  msgid "Rate %s"
178
  msgstr "Ocenite %s"
179
 
180
- #: ad-inserter.php:2297
181
  msgid "I already did."
182
  msgstr "Sem že."
183
 
184
- #: ad-inserter.php:2311
185
  msgctxt "Menu item"
186
  msgid "Settings"
187
  msgstr "Nastavitve"
188
 
189
  #. translators: %s: Ad Inserter
190
- #: ad-inserter.php:2385
191
  msgctxt "Meta box name"
192
  msgid "%s Individual Exceptions"
193
  msgstr "Posamezne Izjeme za %s"
194
 
195
- #: ad-inserter.php:2414 ad-inserter.php:8160 class.php:1967
196
  #: includes/preview.php:1976 includes/preview.php:2020
197
- #: includes/preview.php:2057 settings.php:3704 strings.php:3
198
  msgid "Block"
199
  msgstr "Blok"
200
 
201
- #: ad-inserter.php:2415 settings.php:3705 settings.php:3779
202
  msgid "Name"
203
  msgstr "Ime"
204
 
205
- #: ad-inserter.php:2416 settings.php:3707
206
  msgid "Automatic insertion"
207
  msgstr "Samodejno vstavljanje"
208
 
209
- #: ad-inserter.php:2419
210
  msgid "Default insertion for pages"
211
  msgstr "Privzeto vstavljanje za strani"
212
 
213
- #: ad-inserter.php:2420
214
  msgid "Default insertion for posts"
215
  msgstr "Privzeto vstavljanje za prispevke"
216
 
217
  #. translators: For this post or page
218
- #: ad-inserter.php:2423
219
  msgctxt "Page"
220
  msgid "For this"
221
  msgstr "Za to"
222
 
223
- #: ad-inserter.php:2424
224
  msgctxt "Post"
225
  msgid "For this"
226
  msgstr "Za ta"
227
 
228
- #: ad-inserter.php:2432
229
  msgctxt "Enabled/disabled on all"
230
  msgid "pages"
231
  msgstr "straneh"
232
 
233
- #: ad-inserter.php:2433
234
  msgctxt "Default insertion for"
235
  msgid "pages"
236
  msgstr "strani"
237
 
238
- #: ad-inserter.php:2437
239
  msgctxt "Enabled/disabled on all"
240
  msgid "posts"
241
  msgstr "prispevkih"
242
 
243
- #: ad-inserter.php:2438
244
  msgctxt "Default insertion for"
245
  msgid "posts"
246
  msgstr "prispevke"
247
 
248
- #: ad-inserter.php:2457 ad-inserter.php:2470 strings.php:156
249
  msgid "Enabled"
250
  msgstr "Omogočeno"
251
 
252
  #. translators: Menu items
253
- #: ad-inserter.php:2457 ad-inserter.php:2470 includes/functions.php:2191
254
  #: strings.php:16
255
  msgid "Disabled"
256
  msgstr "Onemogočeno"
257
 
258
  #. translators: Enabled on all pages or posts
259
- #: ad-inserter.php:2460
260
  msgid "Enabled on all"
261
  msgstr "Omogočeno na vseh"
262
 
263
  #. translators: Disabled on all pages or posts
264
- #: ad-inserter.php:2462
265
  msgid "Disabled on all"
266
  msgstr "Onemogočeno na vseh"
267
 
268
  #. translators: No individual exceptions enabled for pages or posts
269
- #: ad-inserter.php:2490
270
  msgid "No individual exceptions enabled for"
271
  msgstr "Ni omogočenih posameznih izjem za"
272
 
273
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
274
- #: ad-inserter.php:2495
275
  msgid ""
276
  "Default insertion for %1$s can be configured for each block on %2$s page - "
277
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
@@ -281,7 +281,7 @@ msgstr ""
281
  "izbira poleg kljukice za vklop <strong>Prispevki</strong> / <strong>Statične "
282
  "strani</strong>.<br />"
283
 
284
- #: ad-inserter.php:2500
285
  msgid ""
286
  "Default value is <strong>blank</strong> and means no individual exceptions "
287
  "(even if previously defined here).<br />"
@@ -289,7 +289,7 @@ msgstr ""
289
  "Privzeta vrednost je <strong>prazno</strong> in pomeni brez posameznih izjem "
290
  "(tudi, če so bile predhodno nsatavljene tukaj).<br />"
291
 
292
- #: ad-inserter.php:2503
293
  msgctxt "Pages"
294
  msgid ""
295
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
@@ -298,7 +298,7 @@ msgstr ""
298
  "Nastavite na <strong>Posamezno onemogočene</strong> ali <strong>Posamezno "
299
  "omogočene</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
300
 
301
- #: ad-inserter.php:2504
302
  msgctxt "Posts"
303
  msgid ""
304
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
@@ -307,61 +307,61 @@ msgstr ""
307
  "Nastavite na <strong>Posamezno onemogočeni</strong> ali <strong>Posamezno "
308
  "omogočeni</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
309
 
310
- #: ad-inserter.php:2506
311
  msgid "For more information check page %s"
312
  msgstr "Za več informacij poglejte stran %s"
313
 
314
  #. translators: Ad Inserter Exceptions documentation page
315
- #: ad-inserter.php:2508
316
  msgid "Individual Exceptions"
317
  msgstr "Posamezne Izjeme"
318
 
319
- #: ad-inserter.php:2555
320
  msgid "STATIC PAGE"
321
  msgstr "STATIČNA STRAN"
322
 
323
- #: ad-inserter.php:2558
324
  msgid "POST"
325
  msgstr "PRISPEVEK"
326
 
327
- #: ad-inserter.php:2561
328
  msgid "HOMEPAGE"
329
  msgstr "DOMAČA STRAN"
330
 
331
- #: ad-inserter.php:2564
332
  msgid "CATEGORY PAGE"
333
  msgstr "STRAN KATEGORIJE"
334
 
335
- #: ad-inserter.php:2567
336
  msgid "SEARCH PAGE"
337
  msgstr "STRAN ISKANJE"
338
 
339
- #: ad-inserter.php:2570
340
  msgid "ARCHIVE PAGE"
341
  msgstr "STRAN ARHIVA"
342
 
343
- #: ad-inserter.php:2573
344
  msgid "ERROR 404 PAGE"
345
  msgstr "STRAN NAPAKA 404"
346
 
347
- #: ad-inserter.php:2576
348
  msgid "AJAX CALL"
349
  msgstr "AJAX KLIC"
350
 
351
- #: ad-inserter.php:2579
352
  msgid "UNKNOWN PAGE TYPE"
353
  msgstr "NEZNAN TIP STRANI"
354
 
355
- #: ad-inserter.php:2596
356
  msgid "Click to delete ad blocking detection cokies"
357
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
358
 
359
- #: ad-inserter.php:2597
360
  msgid "AD BLOCKING STATUS UNKNOWN"
361
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
362
 
363
  #. translators: %s: AdSense Auto Ads
364
- #: ad-inserter.php:2621
365
  msgid ""
366
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
367
  "positions"
@@ -369,11 +369,11 @@ msgstr ""
369
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
370
  "položaje"
371
 
372
- #: ad-inserter.php:2760
373
  msgid "Code for insertion"
374
  msgstr "Koda za vstavljanje"
375
 
376
- #: ad-inserter.php:2760
377
  msgid "character"
378
  msgid_plural "characters"
379
  msgstr[0] "znak"
@@ -381,16 +381,16 @@ msgstr[1] "znaka"
381
  msgstr[2] "znaki"
382
  msgstr[3] "znakov"
383
 
384
- #: ad-inserter.php:2803
385
  msgid "Header code"
386
  msgstr "Koda v glavi"
387
 
388
- #: ad-inserter.php:2803
389
  msgctxt "Header code"
390
  msgid "DISABLED"
391
  msgstr "ONEMOGOČENA"
392
 
393
- #: ad-inserter.php:2803 ad-inserter.php:3025
394
  msgid "character inserted"
395
  msgid_plural "characters inserted"
396
  msgstr[0] "znak vstavljen"
@@ -398,43 +398,43 @@ msgstr[1] "znaka vstavljena"
398
  msgstr[2] "znaki vstavljeni"
399
  msgstr[3] "znakov vstavljenih"
400
 
401
- #: ad-inserter.php:2836
402
  msgid "Automatically placed by AdSense Auto ads code"
403
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
404
 
405
- #: ad-inserter.php:3025
406
  msgid "Footer code"
407
  msgstr "Koda v nogi"
408
 
409
- #: ad-inserter.php:3025
410
  msgctxt "Footer code"
411
  msgid "DISABLED"
412
  msgstr "ONEMOGOČENA"
413
 
414
- #: ad-inserter.php:3031
415
  msgid "JAVASCRIPT NOT WORKING"
416
  msgstr "JAVASCRIPT NE DELA"
417
 
418
- #: ad-inserter.php:3031
419
  msgid "NO JAVASCRIPT ERRORS"
420
  msgstr "BREZ JAVASCRIPT NAPAK"
421
 
422
- #: ad-inserter.php:3031
423
  msgid "JAVASCRIPT ERRORS"
424
  msgstr "JAVASCRIPT NAPAKE"
425
 
426
  #. translators: block name (block with default settings)
427
- #: ad-inserter.php:5163
428
  msgctxt "Block name"
429
  msgid "Default"
430
  msgstr "Privzeti"
431
 
432
  #. translators: %s: Ad Inserter
433
- #: ad-inserter.php:5734
434
  msgid "Error importing %s settings."
435
  msgstr "Napaka pri uvozu %s nastavitev."
436
 
437
- #: ad-inserter.php:5735
438
  msgid "Error importing settings for block"
439
  msgid_plural "Error importing settings for blocks:"
440
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -442,15 +442,15 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
442
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
443
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
444
 
445
- #: ad-inserter.php:5784
446
  msgid "Settings saved."
447
  msgstr "Nastavitve shranjene."
448
 
449
- #: ad-inserter.php:5869
450
  msgid "Settings cleared."
451
  msgstr "Nastavitve ponastavljene."
452
 
453
- #: ad-inserter.php:6214 ad-inserter.php:6216 ad-inserter.php:6239
454
  msgid "word"
455
  msgid_plural "words"
456
  msgstr[0] "beseda"
@@ -458,38 +458,38 @@ msgstr[1] "besedi"
458
  msgstr[2] "besede"
459
  msgstr[3] "besed"
460
 
461
- #: ad-inserter.php:6253 ad-inserter.php:6365
462
  msgid "HTML TAGS REMOVED"
463
  msgstr "HTML ZNAČKE ODSTRANJENE"
464
 
465
- #: ad-inserter.php:6441
466
  msgid "BEFORE COMMENTS"
467
  msgstr "PRED KOMENTARJI"
468
 
469
- #: ad-inserter.php:6549
470
  msgid "AFTER COMMENTS"
471
  msgstr "PO KOMETARJIH"
472
 
473
- #: ad-inserter.php:6612
474
  msgid "BETWEEN COMMENTS"
475
  msgstr "MED KOMENTARJI"
476
 
477
- #: ad-inserter.php:7800
478
  msgid "requires WordPress 4.0 or newer"
479
  msgstr "potrebuje WordPress 4.0 ali novejši"
480
 
481
- #: ad-inserter.php:7800
482
  msgid "Please update!"
483
  msgstr "Prosimo, posodobite!"
484
 
485
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
486
  #. name with HTML tags will be added)
487
- #: ad-inserter.php:8033
488
  msgid "Thank you for installing"
489
  msgstr "Hvala za namestitev vtičnika"
490
 
491
  #. translators: Opt-in message: %s: HTML tags
492
- #: ad-inserter.php:8035
493
  msgid ""
494
  "We would like to %s track its usage %s on your site. This is completely "
495
  "optional and can be disabled at any time."
@@ -497,7 +497,7 @@ msgstr ""
497
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
498
  "izbirno in se lahko izključi kadarkoli."
499
 
500
- #: ad-inserter.php:8037
501
  msgid ""
502
  "We don't record any sensitive data, only information regarding the WordPress "
503
  "environment and plugin usage, which will help us to make improvements to the "
@@ -507,7 +507,7 @@ msgstr ""
507
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
508
 
509
  #. translators: Deactivation message: %s: HTML tags
510
- #: ad-inserter.php:8074
511
  msgid ""
512
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
513
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -518,49 +518,49 @@ msgstr ""
518
  "nam %s in poskušali vam bomo pomagati."
519
 
520
  #. translators: %s: Ad Inserter
521
- #: ad-inserter.php:8117
522
  msgid "%s block."
523
  msgstr "%s blok."
524
 
525
  #. translators: widget title
526
- #: ad-inserter.php:8133 ad-inserter.php:8169
527
  msgid "Processing log"
528
  msgstr "Dnevnik procesiranja"
529
 
530
  #. translators: widget title
531
- #: ad-inserter.php:8135 ad-inserter.php:8170
532
  msgid "Dummy widget"
533
  msgstr "Prazen gradnik"
534
 
535
  #. translators: widget title
536
- #: ad-inserter.php:8137 ad-inserter.php:8168
537
  msgid "Debugging tools"
538
  msgstr "Orodja za razhroščevanje"
539
 
540
  #. translators: block status (widget title)
541
- #: ad-inserter.php:8144
542
  msgctxt "block"
543
  msgid "PAUSED"
544
  msgstr "USTAVLJEN"
545
 
546
- #: ad-inserter.php:8145
547
  msgid "WIDGET DISABLED"
548
  msgstr "GRADNIK ONEMOGOČEN"
549
 
550
- #: ad-inserter.php:8146
551
  msgid "Unknown block"
552
  msgstr "Neznan blok"
553
 
554
- #: ad-inserter.php:8155 includes/functions.php:2721 settings.php:1045
555
  msgid "Title"
556
  msgstr "Naslov"
557
 
558
- #: ad-inserter.php:8177
559
  msgctxt "Widget"
560
  msgid "Sticky"
561
  msgstr "Lepljiv"
562
 
563
- #: ad-inserter.php:8226
564
  msgid ""
565
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
566
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -569,7 +569,7 @@ msgstr ""
569
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
570
  "Inserter Pro."
571
 
572
- #: ad-inserter.php:8227
573
  msgid ""
574
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
575
  "will clear all settings that are available only in the Pro version "
@@ -584,130 +584,130 @@ msgstr ""
584
  msgid "PHP error in %s block"
585
  msgstr "PHP napaka v bloku %s"
586
 
587
- #: class.php:1933
588
  msgid "Counters"
589
  msgstr "Števci"
590
 
591
- #: class.php:1937
592
  msgid "Content"
593
  msgstr "Vsebina"
594
 
595
- #: class.php:1942
596
  msgid "Excerpt"
597
  msgstr "Izvleček"
598
 
599
- #: class.php:1947 strings.php:17
600
  msgid "Before post"
601
  msgstr "Pred prispevkom"
602
 
603
- #: class.php:1952 strings.php:18
604
  msgid "After post"
605
  msgstr "Za prispevkom"
606
 
607
- #: class.php:1957 settings.php:1631 settings.php:3711
608
  msgid "Widget"
609
  msgstr "Gradnik"
610
 
611
- #: class.php:1962 settings.php:3709
612
  msgid "PHP function call"
613
  msgstr "Klic PHP funkcije"
614
 
615
- #: class.php:1997
616
  msgid "AJAX REQUEST"
617
  msgstr "AJAX ZAHTEVEK"
618
 
619
- #: class.php:2000
620
  msgid "Ajax request for block in iframe"
621
  msgstr "Ajax zahtevek za blok v iframe-u"
622
 
623
- #: class.php:2030
624
  msgid "Ajax request url, click to open it in a new tab"
625
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
626
 
627
- #: class.php:2033
628
  msgid "IN THE LOOP"
629
  msgstr "V ZANKI"
630
 
631
- #: class.php:2033
632
  msgid "YES"
633
  msgstr "DA"
634
 
635
- #: class.php:2033
636
  msgid "NO"
637
  msgstr "NE"
638
 
639
- #: class.php:2069
640
  msgid "BLOCK"
641
  msgstr "BLOK"
642
 
643
- #: class.php:2069
644
  msgctxt "block or widget"
645
  msgid "INSERTED BUT NOT VISIBLE"
646
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
647
 
648
- #: class.php:2411 class.php:2470
649
  msgid "ACTIVE GROUPS"
650
  msgstr "AKTIVNE SKUPINE"
651
 
652
  #. translators: %s: list parameters and type
653
- #: class.php:2645
654
  msgid "parameters='%s' type='%s'"
655
  msgstr "parametri='%s' tip='%s'"
656
 
657
  #. translators: %s: list parameters and type
658
- #: class.php:2647
659
  msgid "referers='%s' type='%s'"
660
  msgstr "napotitelji='%s' tip='%s'"
661
 
662
  #. translators: %s: list parameters and type
663
- #: class.php:2708
664
  msgid "countries='%s' type='%s'"
665
  msgstr "države='%s' tip='%s'"
666
 
667
  #. translators: %s: list parameters and type
668
- #: class.php:2710
669
  msgid "ip addresses='%s' type='%s'"
670
  msgstr "ip naslovi='%s' tip='%s'"
671
 
672
- #: class.php:2944 strings.php:232
673
  msgid "BEFORE"
674
  msgstr "PRED"
675
 
676
- #: class.php:2952 strings.php:234
677
  msgid "PREPEND CONTENT"
678
  msgstr "DODAJ PRED VSEBINO"
679
 
680
- #: class.php:2956 strings.php:235
681
  msgid "APPEND CONTENT"
682
  msgstr "DODAJ ZA VSEBINO"
683
 
684
- #: class.php:2960 strings.php:236
685
  msgid "REPLACE CONTENT"
686
  msgstr "NADOMESTI VSEBINO"
687
 
688
- #: class.php:2964 strings.php:237
689
  msgid "REPLACE ELEMENT"
690
  msgstr "NADOMESTI ELEMENT"
691
 
692
- #: class.php:2975 strings.php:233
693
  msgid "AFTER"
694
  msgstr "ZA"
695
 
696
- #: class.php:3042
697
  msgctxt "JavaScript"
698
  msgid "script"
699
  msgstr "skripta"
700
 
701
- #: class.php:3045 settings.php:1900
702
  msgid "for"
703
  msgstr "za"
704
 
705
- #: class.php:5593 class.php:5645
706
  msgctxt "category name"
707
  msgid "Uncategorized"
708
  msgstr "Nekategorizirano"
709
 
710
- #: class.php:6138
711
  msgid ""
712
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
713
  "extension for PHP."
@@ -751,29 +751,29 @@ msgstr "Napaka pri nalaganju strani"
751
  msgid "PAGE BLOCKED"
752
  msgstr "STRAN BLOKIRANA"
753
 
754
- #: includes/functions.php:254
755
  msgid "%d of %d names shown"
756
  msgstr "Prikazanih %d od %d imen"
757
 
758
  #. translators: %s: name filter
759
- #: includes/functions.php:273
760
  msgid "No name matches filter"
761
  msgstr "Noben podatek ne ustreza filtru"
762
 
763
- #: includes/functions.php:329 settings.php:174
764
  msgid "Online documentation"
765
  msgstr "Spletna Dokumentacija"
766
 
767
- #: includes/functions.php:329 settings.php:174
768
  msgid "Documentation"
769
  msgstr "Dokumentacija"
770
 
771
- #: includes/functions.php:342 settings.php:187
772
  msgid "Blocks"
773
  msgstr "Bloki"
774
 
775
  #. translators: %s: Ad Inserter Pro
776
- #: includes/functions.php:365
777
  msgid ""
778
  "Import %s settings when saving - if checked, the encoded settings below will "
779
  "be imported for all blocks and settings"
@@ -781,35 +781,35 @@ msgstr ""
781
  "Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
782
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
783
 
784
- #: includes/functions.php:365
785
  msgid "Import Settings for"
786
  msgstr "Uvozi Nastavitve za"
787
 
788
- #: includes/functions.php:369
789
  msgid "Saved settings for"
790
  msgstr "Shranjene nastavitve za"
791
 
792
- #: includes/functions.php:388
793
  msgid "License Key"
794
  msgstr "Licenčni Ključ"
795
 
796
- #: includes/functions.php:391
797
  msgid "License Key for"
798
  msgstr "Licenčni Ključ za"
799
 
800
- #: includes/functions.php:397
801
  msgid "Hide license key"
802
  msgstr "Skrij licenčni ključ"
803
 
804
- #: includes/functions.php:397
805
  msgid "Hide key"
806
  msgstr "Skrij ključ"
807
 
808
- #: includes/functions.php:418
809
  msgid "Main content element"
810
  msgstr "Glavni element vsebine"
811
 
812
- #: includes/functions.php:421
813
  msgid ""
814
  "Main content element (#id or .class) for 'Stick to the content' position. "
815
  "Leave empty unless position is not properly calculated."
@@ -817,70 +817,70 @@ msgstr ""
817
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
818
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
819
 
820
- #: includes/functions.php:422 settings.php:1201 settings.php:2519
821
  msgid "Open HTML element selector"
822
  msgstr "Odpri izbirnik HTML elementa"
823
 
824
- #: includes/functions.php:427
825
  msgid "Lazy loading offset"
826
  msgstr "Zamik za leno nalaganje"
827
 
828
- #: includes/functions.php:430
829
  msgid "Offset of the block from the visible viewport when it should be loaded"
830
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
831
 
832
- #: includes/functions.php:441
833
  msgid "Export / Import Block Settings"
834
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
835
 
836
- #: includes/functions.php:456
837
  msgid "Track impressions and clicks for this block"
838
  msgstr "Sledi prikazom in klikom za ta blok"
839
 
840
- #: includes/functions.php:456
841
  msgid " - global tracking disabled"
842
  msgstr " - globalno sledenje onemogočeno"
843
 
844
- #: includes/functions.php:463
845
  msgid "Generate PDF report"
846
  msgstr "Generiraj PDF poročilo"
847
 
848
- #: includes/functions.php:468
849
  msgid "Open public report"
850
  msgstr "Odpri javno poročilo"
851
 
852
- #: includes/functions.php:482
853
  msgid "Toggle Ad Blocking Statistics"
854
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
855
 
856
- #: includes/functions.php:490 includes/functions.php:2518
857
  msgid "Toggle Statistics"
858
  msgstr "Preklopi Statistiko"
859
 
860
  #. translators: %s: Ad Inserter Pro
861
- #: includes/functions.php:506
862
  msgid "%s license key is not set. Continue?"
863
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
864
 
865
  #. translators: %s: Ad Inserter Pro
866
- #: includes/functions.php:510
867
  msgid "Invalid %s license key. Continue?"
868
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
869
 
870
  #. translators: %s: Ad Inserter Pro
871
- #: includes/functions.php:514
872
  msgid "%s license overused. Continue?"
873
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
874
 
875
- #: includes/functions.php:518 settings.php:1970
876
  msgid "Save Settings"
877
  msgstr "Sharani Nastavitve"
878
 
879
- #: includes/functions.php:578 includes/preview.php:2106
880
  msgid "Horizontal position"
881
  msgstr "Vodoravni položaj"
882
 
883
- #: includes/functions.php:601
884
  msgid ""
885
  "Horizontal margin from the content or screen edge, empty means default value "
886
  "from CSS"
@@ -888,11 +888,11 @@ msgstr ""
888
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
889
  "iz CSS"
890
 
891
- #: includes/functions.php:609 includes/preview.php:2161
892
  msgid "Vertical position"
893
  msgstr "Navpični položaj"
894
 
895
- #: includes/functions.php:624
896
  msgid ""
897
  "Vertical margin from the top or bottom screen edge, empty means default "
898
  "value from CSS"
@@ -900,15 +900,15 @@ msgstr ""
900
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
901
  "iz CSS"
902
 
903
- #: includes/functions.php:649 includes/preview.php:2212
904
  msgid "Animation"
905
  msgstr "Animacija"
906
 
907
- #: includes/functions.php:667
908
  msgid "Trigger"
909
  msgstr "Sporžilec"
910
 
911
- #: includes/functions.php:676
912
  msgid ""
913
  "Trigger value: page scroll in %, page scroll in px or element with selector "
914
  "(#id or .class) becomes visible"
@@ -916,48 +916,48 @@ msgstr ""
916
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
917
  "selektorjem (#id ali .razred) postane viden"
918
 
919
- #: includes/functions.php:680
920
  msgid "Offset"
921
  msgstr "Zamik"
922
 
923
- #: includes/functions.php:680
924
  msgid "Offset of trigger element"
925
  msgstr "Zamik sprožilnega elementa"
926
 
927
- #: includes/functions.php:684
928
  msgid "Delay"
929
  msgstr "Zakasnitev"
930
 
931
- #: includes/functions.php:684
932
  msgid "Delay animation after trigger condition"
933
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
934
 
935
- #: includes/functions.php:688
936
  msgid "Trigger once"
937
  msgstr "Sproži enkrat"
938
 
939
- #: includes/functions.php:690
940
  msgid "Trigger animation only once"
941
  msgstr "Sproži animacijo samo enkrat"
942
 
943
- #: includes/functions.php:732
944
  msgid "Tracking is globally disabled"
945
  msgstr "Sledenje je globalno onemogočeno"
946
 
947
- #: includes/functions.php:736
948
  msgid "Tracking for this block is disabled"
949
  msgstr "Sledenje za ta blok je onemogočeno"
950
 
951
- #: includes/functions.php:743
952
  msgid "Double click to toggle controls in public reports"
953
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
954
 
955
- #: includes/functions.php:749 settings.php:3205 settings.php:3241
956
- #: settings.php:3284 strings.php:212
957
  msgid "Loading..."
958
  msgstr "Nalagam..."
959
 
960
- #: includes/functions.php:770
961
  msgid ""
962
  "Clear statistics data for the selected range - clear both dates to delete "
963
  "all data for this block"
@@ -965,59 +965,59 @@ msgstr ""
965
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
966
  "brisanje vseh podatkov za ta blok"
967
 
968
- #: includes/functions.php:774
969
  msgid "Auto refresh data for the selected range every 60 seconds"
970
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
971
 
972
- #: includes/functions.php:777 includes/functions.php:4735
973
  msgid "Load data for last month"
974
  msgstr "Naloži podatke za zadnji mesec"
975
 
976
- #: includes/functions.php:777 includes/functions.php:4735
977
  msgid "Last Month"
978
  msgstr "Zadnji Mesec"
979
 
980
- #: includes/functions.php:780 includes/functions.php:4738
981
  msgid "Load data for this month"
982
  msgstr "Naloži podatke za ta mesec"
983
 
984
- #: includes/functions.php:780 includes/functions.php:4738
985
  msgid "This Month"
986
  msgstr "Ta Mesec"
987
 
988
- #: includes/functions.php:783 includes/functions.php:4741
989
  msgid "Load data for this year"
990
  msgstr "Naloži podatke za to leto"
991
 
992
- #: includes/functions.php:783 includes/functions.php:4741
993
  msgid "This Year"
994
  msgstr "To Leto"
995
 
996
- #: includes/functions.php:786 includes/functions.php:4744
997
  msgid "Load data for the last 15 days"
998
  msgstr "Naloži podatke za zadnjih 15 dni"
999
 
1000
- #: includes/functions.php:789 includes/functions.php:4747
1001
  msgid "Load data for the last 30 days"
1002
  msgstr "Naloži podatke za zadnjih 30 dni"
1003
 
1004
- #: includes/functions.php:792 includes/functions.php:4750
1005
  msgid "Load data for the last 90 days"
1006
  msgstr "Naloži podatke za zadnjih 90 dni"
1007
 
1008
- #: includes/functions.php:795 includes/functions.php:4753
1009
  msgid "Load data for the last 180 days"
1010
  msgstr "Naloži podatke za zadnjih 180 dni"
1011
 
1012
- #: includes/functions.php:798 includes/functions.php:4756
1013
  msgid "Load data for the last 365 days"
1014
  msgstr "Naloži podatke za zadnjih 365 dni"
1015
 
1016
- #: includes/functions.php:808 includes/functions.php:4766
1017
  msgid "Load data for the selected range"
1018
  msgstr "Naloži podatke za izbrano obdobje"
1019
 
1020
- #: includes/functions.php:824
1021
  msgid ""
1022
  "Import settings when saving - if checked, the encoded settings below will be "
1023
  "imported for this block"
@@ -1025,11 +1025,11 @@ msgstr ""
1025
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1026
  "nastavitve spodaj uvozile za ta blok"
1027
 
1028
- #: includes/functions.php:824
1029
  msgid "Import settings for block"
1030
  msgstr "Uvozi nastavitve za blok"
1031
 
1032
- #: includes/functions.php:828
1033
  msgid ""
1034
  "Import block name when saving - if checked and 'Import settings for block' "
1035
  "is also checked, the name from encoded settings below will be imported for "
@@ -1039,41 +1039,41 @@ msgstr ""
1039
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1040
  "uvozilo za ta blok"
1041
 
1042
- #: includes/functions.php:828
1043
  msgid "Import block name"
1044
  msgstr "Uvozi ime bloka"
1045
 
1046
- #: includes/functions.php:832
1047
  msgid "Saved settings for block"
1048
  msgstr "Shranjene nastavitve za blok"
1049
 
1050
- #: includes/functions.php:845
1051
  msgid "Export / Import Ad Inserter Pro Settings"
1052
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1053
 
1054
- #: includes/functions.php:855
1055
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1056
  msgstr ""
1057
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1058
  "bloke?"
1059
 
1060
- #: includes/functions.php:857
1061
  msgid "Clear All Statistics Data"
1062
  msgstr "Pobriši Vse Podatke o Statistiki"
1063
 
1064
- #: includes/functions.php:884
1065
  msgid "Toggle country/city editor"
1066
  msgstr "Preklopi urejevalnik držav/mest"
1067
 
1068
- #: includes/functions.php:890
1069
  msgid "IP Addresses"
1070
  msgstr "IP Naslovi"
1071
 
1072
- #: includes/functions.php:893
1073
  msgid "Toggle IP address editor"
1074
  msgstr "Preklopi urejevalnik IP nslovov"
1075
 
1076
- #: includes/functions.php:896
1077
  msgid ""
1078
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1079
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
@@ -1081,48 +1081,48 @@ msgstr ""
1081
  "Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
1082
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1083
 
1084
- #: includes/functions.php:900
1085
  msgid "Blacklist IP addresses"
1086
  msgstr "Črni seznam IP naslovov"
1087
 
1088
- #: includes/functions.php:904
1089
  msgid "Whitelist IP addresses"
1090
  msgstr "Beli seznam IP naslovov"
1091
 
1092
- #: includes/functions.php:915
1093
  msgid "Countries"
1094
  msgstr "Države"
1095
 
1096
- #: includes/functions.php:916
1097
  msgid "Cities"
1098
  msgstr "Mesta"
1099
 
1100
- #: includes/functions.php:920 includes/functions.php:2483
1101
  msgid "Toggle country editor"
1102
  msgstr "Preklopi urejevalnik držav"
1103
 
1104
- #: includes/functions.php:923
1105
  msgid "Toggle city editor"
1106
  msgstr "Preklopi urejevalnik mest"
1107
 
1108
- #: includes/functions.php:927 includes/functions.php:2486
1109
  msgid "Comma separated country ISO Alpha-2 codes"
1110
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1111
 
1112
- #: includes/functions.php:931
1113
  msgid "Blacklist countries"
1114
  msgstr "Črni seznam držav"
1115
 
1116
- #: includes/functions.php:935
1117
  msgid "Whitelist countries"
1118
  msgstr "Beli seznam držav"
1119
 
1120
- #: includes/functions.php:1251 includes/functions.php:1486
1121
  msgid "Enter license key"
1122
  msgstr "Vnesite licenčni ključ"
1123
 
1124
  #. translators: %s: Ad Inserter Pro
1125
- #: includes/functions.php:1257
1126
  msgid ""
1127
  "%s license key is not set. Plugin functionality is limited and updates are "
1128
  "disabled."
@@ -1130,40 +1130,40 @@ msgstr ""
1130
  "%s licenčni ključ ni vnešen. Funkcionalnosti vtičnika so omejene in "
1131
  "posodobitve onemogočene."
1132
 
1133
- #: includes/functions.php:1269 includes/functions.php:1495
1134
  msgid "Check license key"
1135
  msgstr "Preverite licenčni ključ"
1136
 
1137
  #. translators: %s: Ad Inserter Pro
1138
- #: includes/functions.php:1275
1139
  msgid "Invalid %s license key."
1140
  msgstr "Neveljaven %s licenčni ključ."
1141
 
1142
  #. translators: %s: Ad Inserter Pro
1143
- #: includes/functions.php:1284
1144
  msgid "%s license expired. Plugin updates are disabled."
1145
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1146
 
1147
- #: includes/functions.php:1285
1148
  msgid "Renew license"
1149
  msgstr "Obnovite licenco"
1150
 
1151
  #. translators: %s: Ad Inserter Pro
1152
- #: includes/functions.php:1293
1153
  msgid "%s license overused. Plugin updates are disabled."
1154
  msgstr ""
1155
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1156
 
1157
- #: includes/functions.php:1294
1158
  msgid "Manage licenses"
1159
  msgstr "Upravljajte z licencami"
1160
 
1161
- #: includes/functions.php:1294
1162
  msgid "Upgrade license"
1163
  msgstr "Nadgradite licenco"
1164
 
1165
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1166
- #: includes/functions.php:1488
1167
  msgid ""
1168
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1169
  "limited and updates are disabled."
@@ -1172,12 +1172,12 @@ msgstr ""
1172
  "so omejene in posodobitve onemogočene."
1173
 
1174
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1175
- #: includes/functions.php:1497
1176
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1177
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1178
 
1179
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1180
- #: includes/functions.php:1513
1181
  msgid ""
1182
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1183
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1187,7 +1187,7 @@ msgstr ""
1187
  "pogrešate. %3$s"
1188
 
1189
  #. translators: 1, 3: HTML tags, 2: percentage
1190
- #: includes/functions.php:1520
1191
  msgid ""
1192
  "During the license period and 30 days after the license has expired we offer "
1193
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
@@ -1195,16 +1195,16 @@ msgstr ""
1195
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1196
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1197
 
1198
- #: includes/functions.php:1547
1199
  msgid "Renew the licence"
1200
  msgstr "Obnovi licenco"
1201
 
1202
- #: includes/functions.php:1549
1203
  msgid "Update license status"
1204
  msgstr "Posodobi status licence"
1205
 
1206
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1207
- #: includes/functions.php:1560
1208
  msgid ""
1209
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1210
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1214,95 +1214,95 @@ msgstr ""
1214
  "Nadgradite licenco %7$s"
1215
 
1216
  #. Translators: %s: HTML tag
1217
- #: includes/functions.php:1582
1218
  msgid "Warning: %s MaxMind IP geolocation database not found."
1219
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1220
 
1221
- #: includes/functions.php:2120
1222
  msgid "Geolocation"
1223
  msgstr "Geolokacija"
1224
 
1225
- #: includes/functions.php:2124
1226
  msgid "Exceptions"
1227
  msgstr "Izjeme"
1228
 
1229
- #: includes/functions.php:2129
1230
  msgid "Multisite"
1231
  msgstr "Multisite"
1232
 
1233
- #: includes/functions.php:2134
1234
  msgid "Tracking"
1235
  msgstr "Sledenje"
1236
 
1237
  #. translators: %d: days, hours, minutes
1238
- #: includes/functions.php:2165
1239
  msgid "Scheduled in %d days %d hours %d minutes"
1240
  msgstr "Planirano v %d dneh %d urah %d minutah"
1241
 
1242
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1243
  #. HTML code for long dash separator
1244
- #: includes/functions.php:2174
1245
  msgid "Active %s expires in %d days %d hours %d minutes"
1246
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1247
 
1248
- #: includes/functions.php:2178
1249
  msgid "Expired"
1250
  msgstr "Poteklo"
1251
 
1252
- #: includes/functions.php:2186 settings.php:1284 settings.php:1299
1253
- #: settings.php:1886
1254
  msgid "and"
1255
  msgstr "in"
1256
 
1257
- #: includes/functions.php:2189
1258
  msgid "fallback"
1259
  msgstr "rezerva"
1260
 
1261
- #: includes/functions.php:2190
1262
  msgid "Block to be used when scheduling expires"
1263
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1264
 
1265
- #: includes/functions.php:2215
1266
  msgid "Load in iframe"
1267
  msgstr "Naloži v iframe-u"
1268
 
1269
- #: includes/functions.php:2219 includes/placeholders.php:389
1270
  msgid "Width"
1271
  msgstr "Širina"
1272
 
1273
- #: includes/functions.php:2220
1274
  msgid "iframe width, empty means full width (100%)"
1275
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1276
 
1277
- #: includes/functions.php:2226 includes/placeholders.php:384
1278
  msgid "Height"
1279
  msgstr "Višina"
1280
 
1281
- #: includes/functions.php:2227
1282
  msgid "iframe height, empty means adjust it to iframe content height"
1283
  msgstr ""
1284
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1285
 
1286
- #: includes/functions.php:2234
1287
  msgid "Ad label in iframe"
1288
  msgstr "Oznaka oglasa v iframe-u"
1289
 
1290
- #: includes/functions.php:2239
1291
  msgid "Preview iframe code"
1292
  msgstr "Predpreglej kodo iframe"
1293
 
1294
- #: includes/functions.php:2239 includes/preview.php:1974 settings.php:961
1295
- #: settings.php:2581
1296
  msgid "Preview"
1297
  msgstr "Predogled"
1298
 
1299
- #: includes/functions.php:2253 includes/functions.php:3794
1300
- #: includes/functions.php:3857 settings.php:2023
1301
  msgid "Ad Blocking"
1302
  msgstr "Blokiranje Oglasov"
1303
 
1304
  #. translators: 1, 2 and 3, 4: HTML tags
1305
- #: includes/functions.php:2262
1306
  msgid ""
1307
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1308
  "for tracking!"
@@ -1312,7 +1312,7 @@ msgstr ""
1312
 
1313
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1314
  #. header
1315
- #: includes/functions.php:2271
1316
  msgid ""
1317
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1318
  "enabled and automatic insertion %6$s!"
@@ -1320,49 +1320,125 @@ msgstr ""
1320
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1321
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1322
 
1323
- #: includes/functions.php:2289
1324
  msgid "When ad blocking is detected"
1325
  msgstr "Ko je blokiranje oglasov zaznano"
1326
 
1327
- #: includes/functions.php:2298
1328
  msgid "replacement"
1329
  msgstr "nadomestek"
1330
 
1331
- #: includes/functions.php:2299
1332
  msgid "Block to be shown when ad blocking is detected"
1333
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1334
 
1335
- #: includes/functions.php:2300
1336
  msgctxt "replacement"
1337
  msgid "None"
1338
  msgstr "Noben"
1339
 
1340
- #: includes/functions.php:2317
1341
  msgid "Close button"
1342
  msgstr "Gumb Zapri"
1343
 
1344
- #: includes/functions.php:2364
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1345
  msgid "Lazy loading"
1346
  msgstr "Leno nalaganje"
1347
 
1348
  #. Translators: %s MaxMind
1349
- #: includes/functions.php:2418
1350
  msgid "This product includes GeoLite2 data created by %s"
1351
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1352
 
1353
- #: includes/functions.php:2429
1354
  msgid "IP geolocation database"
1355
  msgstr "Podatkovna baza za IP geolokacijo"
1356
 
1357
- #: includes/functions.php:2432
1358
  msgid "Select IP geolocation database."
1359
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1360
 
1361
- #: includes/functions.php:2443
1362
  msgid "Automatic database updates"
1363
  msgstr "Samodejna posodobitev podatkovne baze"
1364
 
1365
- #: includes/functions.php:2446
1366
  msgid ""
1367
  "Automatically download and update free GeoLite2 IP geolocation database by "
1368
  "MaxMind"
@@ -1370,11 +1446,11 @@ msgstr ""
1370
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1371
  "podatkovno bazo MaxMind"
1372
 
1373
- #: includes/functions.php:2454
1374
  msgid "Database"
1375
  msgstr "Podatkovna baza"
1376
 
1377
- #: includes/functions.php:2457
1378
  msgid ""
1379
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1380
  "file"
@@ -1383,15 +1459,15 @@ msgstr ""
1383
  "podatkovne baze"
1384
 
1385
  #. translators: %d: group number
1386
- #: includes/functions.php:2475
1387
  msgid "Group %d"
1388
  msgstr "Skupina %d"
1389
 
1390
- #: includes/functions.php:2481
1391
  msgid "countries"
1392
  msgstr "države"
1393
 
1394
- #: includes/functions.php:2526
1395
  msgid ""
1396
  "Enable impression and click tracking. You also need to enable tracking for "
1397
  "each block you want to track."
@@ -1399,32 +1475,32 @@ msgstr ""
1399
  "Omogočite sledenje prikazom in klikom. Omogočiti morate tudi sledenje za "
1400
  "vsak blok, ki bi ga radi sledili."
1401
 
1402
- #: includes/functions.php:2533
1403
  msgid "Generate report"
1404
  msgstr "Generiraj poročilo"
1405
 
1406
- #: includes/functions.php:2541
1407
  msgid "Impression and Click Tracking"
1408
  msgstr "Sledenje Prikazov in Klikov"
1409
 
1410
- #: includes/functions.php:2542 settings.php:2469
1411
  msgctxt "ad blocking detection"
1412
  msgid "NOT ENABLED"
1413
  msgstr "NI OMOGOČENO"
1414
 
1415
- #: includes/functions.php:2558
1416
  msgid "Internal"
1417
  msgstr "Notranje"
1418
 
1419
- #: includes/functions.php:2562
1420
  msgid "Track impressions and clicks with internal tracking and statistics"
1421
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1422
 
1423
- #: includes/functions.php:2567
1424
  msgid "External"
1425
  msgstr "Zunanje"
1426
 
1427
- #: includes/functions.php:2571
1428
  msgid ""
1429
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1430
  "code installed)"
@@ -1432,27 +1508,27 @@ msgstr ""
1432
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1433
  "kodo za sledenje)"
1434
 
1435
- #: includes/functions.php:2576
1436
  msgid "Track Pageviews"
1437
  msgstr "Sledi Ogledom Strani"
1438
 
1439
- #: includes/functions.php:2582
1440
  msgid "Track Pageviews by Device (as configured for viewports)"
1441
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1442
 
1443
- #: includes/functions.php:2592
1444
  msgid "Track for Logged in Users"
1445
  msgstr "Sledi za Prijavljene Upor."
1446
 
1447
- #: includes/functions.php:2598
1448
  msgid "Track impressions and clicks from logged in users"
1449
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1450
 
1451
- #: includes/functions.php:2608
1452
  msgid "Click Detection"
1453
  msgstr "Zaznavanje klikov"
1454
 
1455
- #: includes/functions.php:2614
1456
  msgid ""
1457
  "Standard method detects clicks only on banners with links, Advanced method "
1458
  "can detect clicks on any kind of ads, but it is slightly less accurate"
@@ -1460,11 +1536,11 @@ msgstr ""
1460
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1461
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1462
 
1463
- #: includes/functions.php:2640
1464
  msgid "Report header image"
1465
  msgstr "Slika v glavi poročila"
1466
 
1467
- #: includes/functions.php:2643
1468
  msgid ""
1469
  "Image or logo to be displayed in the header of the statistins report. "
1470
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
@@ -1474,15 +1550,15 @@ msgstr ""
1474
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1475
  "ponastavitev na privzeto sliko."
1476
 
1477
- #: includes/functions.php:2644 strings.php:224
1478
  msgid "Select or upload header image"
1479
  msgstr "Izberi ali naloži sliko glave"
1480
 
1481
- #: includes/functions.php:2649
1482
  msgid "Report header title"
1483
  msgstr "Naslov v glavi poročila"
1484
 
1485
- #: includes/functions.php:2652
1486
  msgid ""
1487
  "Title to be displayed in the header of the statistics report. Text or HTML "
1488
  "code, clear to reset to default text."
@@ -1490,11 +1566,11 @@ msgstr ""
1490
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1491
  "pobrišite za ponastavitev na privzeto besedilo."
1492
 
1493
- #: includes/functions.php:2657
1494
  msgid "Report header description"
1495
  msgstr "Opis v glavi poročila"
1496
 
1497
- #: includes/functions.php:2660
1498
  msgid ""
1499
  "Description to be displayed in the header of the statistics report. Text or "
1500
  "HTML code, clear to reset to default text."
@@ -1502,11 +1578,11 @@ msgstr ""
1502
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1503
  "pobrišite za ponastavitev na privzeto besedilo."
1504
 
1505
- #: includes/functions.php:2665
1506
  msgid "Report footer"
1507
  msgstr "Noga poročila"
1508
 
1509
- #: includes/functions.php:2668
1510
  msgid ""
1511
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1512
  "to default text."
@@ -1514,112 +1590,112 @@ msgstr ""
1514
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1515
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1516
 
1517
- #: includes/functions.php:2673
1518
  msgid "Public report key"
1519
  msgstr "Ključ za javno poročilo"
1520
 
1521
- #: includes/functions.php:2676
1522
  msgid "String to generate unique report IDs. Clear to reset to default value."
1523
  msgstr ""
1524
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1525
  "privzeto vrednost."
1526
 
1527
- #: includes/functions.php:2708
1528
  msgid "Are you sure you want to clear all exceptions for block"
1529
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1530
 
1531
- #: includes/functions.php:2709 settings.php:1048
1532
  msgid "Clear all exceptions for block"
1533
  msgstr "Pobriši vse izjeme za blok"
1534
 
1535
- #: includes/functions.php:2716
1536
  msgid "Are you sure you want to clear all exceptions?"
1537
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1538
 
1539
- #: includes/functions.php:2716
1540
  msgid "Clear all exceptions for all blocks"
1541
  msgstr "Pobriši vse izjeme za vse bloke"
1542
 
1543
- #: includes/functions.php:2721 settings.php:3443 settings.php:3781
1544
  msgid "Type"
1545
  msgstr "Vrsta"
1546
 
1547
- #: includes/functions.php:2739
1548
  msgid "View"
1549
  msgstr "Poglej"
1550
 
1551
- #: includes/functions.php:2740 includes/placeholders.php:353
1552
- #: includes/preview.php:2281 settings.php:1187
1553
  msgid "Edit"
1554
  msgstr "Uredi"
1555
 
1556
- #: includes/functions.php:2770
1557
  msgid "Are you sure you want to clear all exceptions for"
1558
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1559
 
1560
- #: includes/functions.php:2771
1561
  msgid "Clear all exceptions for"
1562
  msgstr "Pobriši vse izjeme za"
1563
 
1564
- #: includes/functions.php:2784
1565
  msgid "No exceptions"
1566
  msgstr "Brez izjem"
1567
 
1568
  #. translators: %s: Ad Inserter Pro
1569
- #: includes/functions.php:2795
1570
  msgid "%s options for network blogs"
1571
  msgstr "%s izbire za omrežne bloge"
1572
 
1573
  #. translators: %s: Ad Inserter Pro
1574
- #: includes/functions.php:2800
1575
  msgid "Enable %s widgets for sub-sites"
1576
  msgstr "Omogoči %s gradnik za pod-spletišča"
1577
 
1578
- #: includes/functions.php:2800
1579
  msgid "Widgets"
1580
  msgstr "Gradniki"
1581
 
1582
- #: includes/functions.php:2805
1583
  msgid "Enable PHP code processing for sub-sites"
1584
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1585
 
1586
- #: includes/functions.php:2805
1587
  msgid "PHP Processing"
1588
  msgstr "PHP Procesiranje"
1589
 
1590
  #. translators: %s: Ad Inserter Pro
1591
- #: includes/functions.php:2810
1592
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1593
  msgstr ""
1594
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
1595
 
1596
- #: includes/functions.php:2810
1597
  msgid "Post/Page exceptions"
1598
  msgstr "Izjeme prispevkov/strani"
1599
 
1600
  #. translators: %s: Ad Inserter Pro
1601
- #: includes/functions.php:2815
1602
  msgid "Enable %s settings page for sub-sites"
1603
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
1604
 
1605
- #: includes/functions.php:2815
1606
  msgid "Settings page"
1607
  msgstr "Stran z nastavitvami"
1608
 
1609
  #. translators: %s: Ad Inserter Pro
1610
- #: includes/functions.php:2820
1611
  msgid "Enable %s settings of main site to be used for all blogs"
1612
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
1613
 
1614
- #: includes/functions.php:2820
1615
  msgid "Main site settings used for all blogs"
1616
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1617
 
1618
- #: includes/functions.php:2831 settings.php:2468
1619
  msgid "Ad Blocking Detection"
1620
  msgstr "Zaznavanje Blokiranja Oglasov"
1621
 
1622
- #: includes/functions.php:2837
1623
  msgid ""
1624
  "Standard method is reliable but should be used only if Advanced method does "
1625
  "not work. Advanced method recreates files used for detection with random "
@@ -1631,79 +1707,79 @@ msgstr ""
1631
  "imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
1632
  "dostopna"
1633
 
1634
- #: includes/functions.php:3457 includes/functions.php:3547
1635
- #: includes/functions.php:3567
1636
  msgid "AD BLOCKING"
1637
  msgstr "BLOKIRANJE OGLASOV"
1638
 
1639
- #: includes/functions.php:3458 includes/functions.php:3498
1640
- #: includes/functions.php:3541 includes/functions.php:3568
1641
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1642
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
1643
 
1644
- #: includes/functions.php:3461 includes/functions.php:3540
1645
- #: includes/functions.php:3574
1646
  msgid "NO AD BLOCKING"
1647
  msgstr "NI BLOKIRANJA OGLASOV"
1648
 
1649
- #: includes/functions.php:3497 includes/functions.php:3504
1650
  msgid "AD BLOCKING REPLACEMENT"
1651
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
1652
 
1653
- #: includes/functions.php:3647 includes/functions.php:3856
1654
  msgid "Pageviews"
1655
  msgstr "Ogledi strani"
1656
 
1657
- #: includes/functions.php:3793
1658
  msgctxt "Version"
1659
  msgid "Unknown"
1660
  msgstr "Neznana"
1661
 
1662
- #: includes/functions.php:3793
1663
  msgctxt "Times"
1664
  msgid "DISPLAYED"
1665
  msgstr "PRIKAZANO"
1666
 
1667
- #: includes/functions.php:3793
1668
  msgid "No version"
1669
  msgstr "Brez različice"
1670
 
1671
- #: includes/functions.php:3794
1672
  msgctxt "Times"
1673
  msgid "BLOCKED"
1674
  msgstr "BLOKIRANO"
1675
 
1676
- #: includes/functions.php:3856
1677
  msgid "Impressions"
1678
  msgstr "Prikazi"
1679
 
1680
- #: includes/functions.php:3857 includes/functions.php:3858
1681
- #: includes/functions.php:3913
1682
  msgid "Clicks"
1683
  msgstr "Kliki"
1684
 
1685
- #: includes/functions.php:3858
1686
  msgid "events"
1687
  msgstr "dogodki"
1688
 
1689
- #: includes/functions.php:3859
1690
  msgid "Ad Blocking Share"
1691
  msgstr "Delež blokiranja oglasov"
1692
 
1693
  #. translators: CTR as Click Through Rate
1694
- #: includes/functions.php:3859 includes/functions.php:3919
1695
  msgid "CTR"
1696
  msgstr "CTR"
1697
 
1698
- #: includes/functions.php:4001
1699
  msgid "pageviews"
1700
  msgid_plural "pageviews"
1701
  msgstr[0] "ogled strani"
1702
  msgstr[1] "ogleda strani"
1703
- msgstr[2] "ogledi strani"
1704
  msgstr[3] "ogledov strani"
1705
 
1706
- #: includes/functions.php:4001
1707
  msgid "impressions"
1708
  msgid_plural "impressions"
1709
  msgstr[0] "prikaz"
@@ -1711,7 +1787,7 @@ msgstr[1] "prikaza"
1711
  msgstr[2] "prikazi"
1712
  msgstr[3] "prikazov"
1713
 
1714
- #: includes/functions.php:4005
1715
  msgid "event"
1716
  msgid_plural "events"
1717
  msgstr[0] "dogodek"
@@ -1719,7 +1795,7 @@ msgstr[1] "dogodka"
1719
  msgstr[2] "dogodki"
1720
  msgstr[3] "dogodkov"
1721
 
1722
- #: includes/functions.php:4005
1723
  msgid "click"
1724
  msgid_plural "clicks"
1725
  msgstr[0] "klik"
@@ -1727,56 +1803,56 @@ msgstr[1] "klika"
1727
  msgstr[2] "kliki"
1728
  msgstr[3] "klikov"
1729
 
1730
- #: includes/functions.php:4100
1731
  msgctxt "Pageviews / Impressions"
1732
  msgid "Average"
1733
  msgstr "Povprečni"
1734
 
1735
- #: includes/functions.php:4121
1736
  msgctxt "Ad Blocking / Clicks"
1737
  msgid "Average"
1738
  msgstr "Povprečno"
1739
 
1740
- #: includes/functions.php:4145
1741
  msgctxt "Ad Blocking Share / CTR"
1742
  msgid "Average"
1743
  msgstr "Povprečni"
1744
 
1745
  #. Translators: %s: Ad Inserter Pro
1746
- #: includes/functions.php:4327 includes/functions.php:4419
1747
- #: includes/functions.php:4680 strings.php:179
1748
  msgid "%s Report"
1749
  msgstr "%s Poročilo"
1750
 
1751
- #: includes/functions.php:4586
1752
  msgid "for last month"
1753
  msgstr "za zadnji mesec"
1754
 
1755
- #: includes/functions.php:4591
1756
  msgid "for this month"
1757
  msgstr "za ta mesec"
1758
 
1759
- #: includes/functions.php:4596
1760
  msgid "for this year"
1761
  msgstr "za to leto"
1762
 
1763
- #: includes/functions.php:4601
1764
  msgid "for the last 15 days"
1765
  msgstr "za zadnjih 15 dni"
1766
 
1767
- #: includes/functions.php:4606
1768
  msgid "for the last 30 days"
1769
  msgstr "za zadnjih 30 dni"
1770
 
1771
- #: includes/functions.php:4611
1772
  msgid "for the last 90 days"
1773
  msgstr "za zadnjih 90 dni"
1774
 
1775
- #: includes/functions.php:4616
1776
  msgid "for the last 180 days"
1777
  msgstr "za zadnjih 180 dni"
1778
 
1779
- #: includes/functions.php:4621
1780
  msgid "for the last 365 days"
1781
  msgstr "za zadnjih 365 dni"
1782
 
@@ -1804,7 +1880,7 @@ msgstr "Zapri urejevalnik polnila"
1804
  msgid "Placeholder"
1805
  msgstr "Polnilo"
1806
 
1807
- #: includes/placeholders.php:363 settings.php:808 settings.php:3782
1808
  msgid "Size"
1809
  msgstr "Velikost"
1810
 
@@ -1937,11 +2013,11 @@ msgstr "Prekliči"
1937
  msgid "Ad Blocking Detected Message Preview"
1938
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
1939
 
1940
- #: includes/preview-adb.php:348 settings.php:2594
1941
  msgid "Message CSS"
1942
  msgstr "CSS sporočila"
1943
 
1944
- #: includes/preview-adb.php:353 settings.php:2602
1945
  msgid "Overlay CSS"
1946
  msgstr "CSS prevleke"
1947
 
@@ -1981,8 +2057,8 @@ msgstr "div za ovijanje"
1981
  msgid "background"
1982
  msgstr "ozadje"
1983
 
1984
- #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1148
1985
- #: settings.php:3708
1986
  msgid "Alignment"
1987
  msgstr "Poravnava"
1988
 
@@ -2258,162 +2334,162 @@ msgstr ""
2258
  msgid "General Settings"
2259
  msgstr "Splošne Nastavitve"
2260
 
2261
- #: settings.php:592 settings.php:2321 settings.php:2388 settings.php:2574
2262
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2263
  msgstr ""
2264
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2265
 
2266
- #: settings.php:599
2267
  msgid "Toggle tools"
2268
  msgstr "Preklopi orodja"
2269
 
2270
- #: settings.php:607
2271
  msgid "Process PHP code in block"
2272
  msgstr "Procesiraj PHP kodo v bloku"
2273
 
2274
- #: settings.php:614
2275
  msgid "Disable insertion of this block"
2276
  msgstr "Onemogoči vstavljanje tega bloka"
2277
 
2278
- #: settings.php:626
2279
  msgid "Toggle code generator"
2280
  msgstr "Preklopi generator kode"
2281
 
2282
- #: settings.php:630
2283
  msgid "Toggle rotation editor"
2284
  msgstr "Preklopi urejevalnik rotacije"
2285
 
2286
- #: settings.php:634
2287
  msgid "Open visual HTML editor"
2288
  msgstr "Odpri vizualni HTML urejevalnik"
2289
 
2290
- #: settings.php:644 settings.php:1984
2291
  msgid "Show AdSense ad units"
2292
  msgstr "Pokaži oglasne enote AdSense"
2293
 
2294
- #: settings.php:653
2295
  msgid "Clear block"
2296
  msgstr "Počisti blok"
2297
 
2298
- #: settings.php:658 settings.php:3676
2299
  msgid "Copy block"
2300
  msgstr "Kopiraj blok"
2301
 
2302
- #: settings.php:662
2303
  msgid "Paste name"
2304
  msgstr "Prilepi ime"
2305
 
2306
- #: settings.php:666
2307
  msgid "Paste code"
2308
  msgstr "Prilepi kodo"
2309
 
2310
- #: settings.php:670
2311
  msgid "Paste settings"
2312
  msgstr "Prilepi nastavitve"
2313
 
2314
- #: settings.php:674
2315
  msgid "Paste block (name, code and settings)"
2316
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
2317
 
2318
- #: settings.php:693
2319
  msgid "Rotation groups"
2320
  msgstr "Skupine za rotacijo"
2321
 
2322
- #: settings.php:697
2323
  msgid "Remove option"
2324
  msgstr "Odstrani različico"
2325
 
2326
- #: settings.php:701
2327
  msgid "Add option"
2328
  msgstr "Dodaj različico"
2329
 
2330
- #: settings.php:716
2331
  msgid "Import code"
2332
  msgstr "Uvozi kodo"
2333
 
2334
- #: settings.php:720
2335
  msgid "Generate code"
2336
  msgstr "Generiraj kodo"
2337
 
2338
- #: settings.php:725
2339
  msgid "Banner"
2340
  msgstr "Pasica"
2341
 
2342
- #: settings.php:736
2343
  msgid "Image"
2344
  msgstr "Slika"
2345
 
2346
- #: settings.php:744
2347
  msgid "Link"
2348
  msgstr "Povezava"
2349
 
2350
- #: settings.php:755
2351
  msgid "Open link in a new tab"
2352
  msgstr "Odpri povezavo v novem zavihku"
2353
 
2354
- #: settings.php:756
2355
  msgid "Select Image"
2356
  msgstr "Izberi Sliko"
2357
 
2358
- #: settings.php:757
2359
  msgid "Select Placeholder"
2360
  msgstr "Izberi Polnilo"
2361
 
2362
- #: settings.php:769
2363
  msgid "Comment"
2364
  msgstr "Komentar"
2365
 
2366
- #: settings.php:778
2367
  msgctxt "AdSense"
2368
  msgid "Publisher ID"
2369
  msgstr "ID založnika"
2370
 
2371
- #: settings.php:787
2372
  msgctxt "AdSense"
2373
  msgid "Ad Slot ID"
2374
  msgstr "ID mesta"
2375
 
2376
- #: settings.php:796
2377
  msgid "Ad Type"
2378
  msgstr "Vrsta"
2379
 
2380
- #: settings.php:820
2381
  msgid "AMP Ad"
2382
  msgstr "AMP Oglas"
2383
 
2384
- #: settings.php:837
2385
  msgid "Show ad units from your AdSense account"
2386
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
2387
 
2388
- #: settings.php:837
2389
  msgid "AdSense ad units"
2390
  msgstr "Oglasne enote AdSense"
2391
 
2392
- #: settings.php:854
2393
  msgctxt "AdSense"
2394
  msgid "Layout"
2395
  msgstr "Postavitev"
2396
 
2397
- #: settings.php:863
2398
  msgctxt "AdSense"
2399
  msgid "Layout Key"
2400
  msgstr "Ključ postavitve"
2401
 
2402
- #: settings.php:873
2403
  msgid "Full width"
2404
  msgstr "Celotna širina"
2405
 
2406
- #: settings.php:875
2407
  msgctxt "Full width"
2408
  msgid "Enabled"
2409
  msgstr "Omogočena"
2410
 
2411
- #: settings.php:876
2412
  msgctxt "Full width"
2413
  msgid "Disabled"
2414
  msgstr "Onemogočena"
2415
 
2416
- #: settings.php:957
2417
  msgid ""
2418
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2419
  "Cookie or Referer (domain)"
@@ -2421,28 +2497,28 @@ msgstr ""
2421
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
2422
  "parametrov, Piškotkov ali napotiteljev (domen)"
2423
 
2424
- #: settings.php:957
2425
  msgid "Lists"
2426
  msgstr "Seznami"
2427
 
2428
- #: settings.php:958
2429
  msgid "Widget, Shortcode and PHP function call"
2430
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
2431
 
2432
- #: settings.php:958
2433
  msgid "Manual"
2434
  msgstr "Ročno"
2435
 
2436
- #: settings.php:959
2437
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2438
  msgstr ""
2439
  "Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
2440
 
2441
- #: settings.php:959
2442
  msgid "Devices"
2443
  msgstr "Naprave"
2444
 
2445
- #: settings.php:960
2446
  msgid ""
2447
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2448
  "feeds), Filter, Scheduling, General tag"
@@ -2450,15 +2526,15 @@ msgstr ""
2450
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
2451
  "RSS), Filter, Urnik, Splošna oznaka"
2452
 
2453
- #: settings.php:960
2454
  msgid "Misc"
2455
  msgstr "Razno"
2456
 
2457
- #: settings.php:961
2458
  msgid "Preview code and alignment"
2459
  msgstr "Predogled kode in poravnave"
2460
 
2461
- #: settings.php:964 settings.php:1968
2462
  msgid ""
2463
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2464
  "editor is active before saving settings."
@@ -2466,15 +2542,15 @@ msgstr ""
2466
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
2467
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
2468
 
2469
- #: settings.php:966
2470
  msgid "Save All Settings"
2471
  msgstr "Sharani Vse Nastavitve"
2472
 
2473
- #: settings.php:977
2474
  msgid "Enable insertion on posts"
2475
  msgstr "Omogoči vstavljanje na prispevkih"
2476
 
2477
- #: settings.php:979 settings.php:985
2478
  msgid ""
2479
  "Individual post exceptions (if enabled here) can be configured in post "
2480
  "editor. Leave blank for no individual post exceptions."
@@ -2482,11 +2558,11 @@ msgstr ""
2482
  "Posamezne izjeme za prispevke (če so omogočene tukaj) se lahko nastavijo v "
2483
  "urejevalniku prispevka. Pustite prazno za prispevke brez posameznih izjem."
2484
 
2485
- #: settings.php:985 settings.php:3092
2486
  msgid "Posts"
2487
  msgstr "Prispevki"
2488
 
2489
- #: settings.php:989 settings.php:990
2490
  msgid ""
2491
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2492
  "page or theme homepage (available positions may depend on hooks used by the "
@@ -2496,27 +2572,27 @@ msgstr ""
2496
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2497
  "lahko odvisni od ročic, ki jih tema uporablja)"
2498
 
2499
- #: settings.php:990 settings.php:3094
2500
  msgid "Homepage"
2501
  msgstr "Domača stran"
2502
 
2503
- #: settings.php:994 settings.php:995
2504
  msgid "Enable insertion on category blog pages (including sub-pages)"
2505
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2506
 
2507
- #: settings.php:995 settings.php:3095
2508
  msgid "Category pages"
2509
  msgstr "Strani kategorij"
2510
 
2511
- #: settings.php:998
2512
  msgid "Check theme for available positions for automatic insertion"
2513
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2514
 
2515
- #: settings.php:1005
2516
  msgid "Enable insertion on static pages"
2517
  msgstr "Omogoči vstavljanje na statičnih straneh"
2518
 
2519
- #: settings.php:1007 settings.php:1013
2520
  msgid ""
2521
  "Individual static page exceptions (if enabled here) can be configured in "
2522
  "page editor. Leave blank for no individual page exceptions."
@@ -2525,45 +2601,45 @@ msgstr ""
2525
  "nastavijo v urejevalniku strani. Pustite prazno za strani brez posameznih "
2526
  "izjem."
2527
 
2528
- #: settings.php:1013 settings.php:3093
2529
  msgid "Static pages"
2530
  msgstr "Statične strani"
2531
 
2532
- #: settings.php:1017 settings.php:1018
2533
  msgid "Enable insertion on search blog pages"
2534
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2535
 
2536
- #: settings.php:1018 settings.php:3097
2537
  msgid "Search pages"
2538
  msgstr "Iskalne strani"
2539
 
2540
- #: settings.php:1022 settings.php:1023
2541
  msgid "Enable insertion on tag or archive blog pages"
2542
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
2543
 
2544
- #: settings.php:1023
2545
  msgid "Tag / Archive pages"
2546
  msgstr "Strani oznak / arhiva"
2547
 
2548
- #: settings.php:1029
2549
  msgid "Toggle list of individual exceptions"
2550
  msgstr "Preklopi seznam posameznih izjem"
2551
 
2552
- #: settings.php:1045
2553
  msgctxt "post"
2554
  msgid "Type"
2555
  msgstr "Vrsta"
2556
 
2557
  #. translators: %d: block number
2558
- #: settings.php:1047
2559
  msgid "Are you sure you want to clear all exceptions for block %d?"
2560
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
2561
 
2562
- #: settings.php:1079 settings.php:1227 settings.php:1761
2563
  msgid "Insertion"
2564
  msgstr "Vstavljanje"
2565
 
2566
- #: settings.php:1117
2567
  msgid ""
2568
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2569
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -2579,7 +2655,7 @@ msgstr ""
2579
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
2580
  "število pomeni štetje z nasprotne smeri"
2581
 
2582
- #: settings.php:1118
2583
  msgid ""
2584
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2585
  "means every N images, empty means all images, 0 means random image, value "
@@ -2594,7 +2670,7 @@ msgstr ""
2594
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
2595
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
2596
 
2597
- #: settings.php:1131
2598
  msgid ""
2599
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2600
  "numbers, %N means every N excerpts, empty means all excerpts"
@@ -2603,7 +2679,7 @@ msgstr ""
2603
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
2604
  "izvlečki"
2605
 
2606
- #: settings.php:1132
2607
  msgid ""
2608
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2609
  "numbers, %N means every N posts, empty means all posts"
@@ -2612,7 +2688,7 @@ msgstr ""
2612
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
2613
  "prispevki"
2614
 
2615
- #: settings.php:1133
2616
  msgid ""
2617
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2618
  "numbers, %N means every N comments, empty means all comments"
@@ -2621,44 +2697,44 @@ msgstr ""
2621
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
2622
  "vsi komentarji"
2623
 
2624
- #: settings.php:1140
2625
  msgid "Toggle paragraph counting settings"
2626
  msgstr "Preklopi nastavitve za štetje odstavkov"
2627
 
2628
- #: settings.php:1141
2629
  msgid "Toggle paragraph clearance settings"
2630
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
2631
 
2632
- #: settings.php:1144
2633
  msgid "Toggle insertion filter settings"
2634
  msgstr "Preklopi nastavitve filtra vstavljanja"
2635
 
2636
- #: settings.php:1162
2637
  msgid "Toggle insertion and alignment icons"
2638
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
2639
 
2640
- #: settings.php:1176
2641
  msgid "Custom CSS code for the wrapping div"
2642
  msgstr "CSS koda po meri za div za ovijanje"
2643
 
2644
- #: settings.php:1179 settings.php:1180 settings.php:1181 settings.php:1182
2645
- #: settings.php:1183 settings.php:1184
2646
  msgid "CSS code for the wrapping div, click to edit"
2647
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
2648
 
2649
- #: settings.php:1197
2650
  msgid "HTML element"
2651
  msgstr "HTML element"
2652
 
2653
- #: settings.php:1210
2654
  msgid "HTML element selector or comma separated list of selectors"
2655
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
2656
 
2657
- #: settings.php:1216 settings.php:2479
2658
  msgid "Action"
2659
  msgstr "Akcija"
2660
 
2661
- #: settings.php:1228
2662
  msgid ""
2663
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2664
  "Server-side insertion inserts block when the page is generated but needs "
@@ -2668,11 +2744,11 @@ msgstr ""
2668
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
2669
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
2670
 
2671
- #: settings.php:1238
2672
  msgid "JavaScript code position"
2673
  msgstr "Položaj JavaScript kode"
2674
 
2675
- #: settings.php:1239
2676
  msgid ""
2677
  "Page position where the JavaScript code for client-side insertion will be "
2678
  "inserted. Should be after the HTML element if not waiting for DOM ready."
@@ -2681,45 +2757,45 @@ msgstr ""
2681
  "strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
2682
  "DOM."
2683
 
2684
- #: settings.php:1254
2685
  msgid "Count"
2686
  msgstr "Štej"
2687
 
2688
- #: settings.php:1260
2689
  msgid "paragraphs with tags"
2690
  msgstr "odstavke z značkami"
2691
 
2692
- #: settings.php:1266
2693
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2694
  msgstr ""
2695
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
2696
 
2697
- #: settings.php:1275
2698
  msgid "that have between"
2699
  msgstr "ki imajo med"
2700
 
2701
- #: settings.php:1281
2702
  msgid "Minimum number of paragraph words, leave empty for no limit"
2703
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
2704
 
2705
- #: settings.php:1290
2706
  msgid "Maximum number of paragraph words, leave empty for no limit"
2707
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
2708
 
2709
- #: settings.php:1293 settings.php:1888
2710
  msgid "words"
2711
  msgstr "besed"
2712
 
2713
- #: settings.php:1308 settings.php:1374 settings.php:1400
2714
  msgid "Comma separated texts"
2715
  msgstr "Z vejico ločena besedila"
2716
 
2717
- #: settings.php:1317
2718
  msgid "Minimum number of paragraphs"
2719
  msgstr "Najmanjše število odstavkov"
2720
 
2721
  #. translators: %s: list of HTML tags
2722
- #: settings.php:1332
2723
  msgid ""
2724
  "Count also paragraphs inside %s elements - defined on general plugin "
2725
  "settings page - tab &#9881; / tab General"
@@ -2727,15 +2803,15 @@ msgstr ""
2727
  "Štej tudi odstavke znotraj elementov %s - določeni na strani splošnih "
2728
  "nastavitev vtičnika - zavihek &#9881; / zavihek Splošno"
2729
 
2730
- #: settings.php:1332
2731
  msgid "Count inside special elements"
2732
  msgstr "Štej znotraj posebnih elementov"
2733
 
2734
- #: settings.php:1343
2735
  msgid "Minimum number of words in paragraphs above"
2736
  msgstr "Najmanjše število besed v odstavkih zgoraj"
2737
 
2738
- #: settings.php:1349
2739
  msgid ""
2740
  "Used only with automatic insertion After paragraph and empty paragraph "
2741
  "numbers"
@@ -2743,128 +2819,128 @@ msgstr ""
2743
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
2744
  "številkami odstavkov"
2745
 
2746
- #: settings.php:1359 settings.php:1385
2747
  msgid "In"
2748
  msgstr "V"
2749
 
2750
- #: settings.php:1365
2751
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2752
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
2753
 
2754
- #: settings.php:1368
2755
  msgid "paragraphs above avoid"
2756
  msgstr "odstavkih zgoraj se izogni"
2757
 
2758
- #: settings.php:1391
2759
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2760
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
2761
 
2762
- #: settings.php:1394
2763
  msgid "paragraphs below avoid"
2764
  msgstr "odstavkih spodaj se izogni"
2765
 
2766
- #: settings.php:1410
2767
  msgid "If text is found"
2768
  msgstr "Če je besedilo najdeno"
2769
 
2770
- #: settings.php:1417
2771
  msgid "check up to"
2772
  msgstr "preveri do"
2773
 
2774
- #: settings.php:1425
2775
  msgctxt "check up to"
2776
  msgid "paragraphs"
2777
  msgstr "odstavkov"
2778
 
2779
- #: settings.php:1441
2780
  msgid "Categories"
2781
  msgstr "Kategorije"
2782
 
2783
- #: settings.php:1444
2784
  msgid "Toggle category editor"
2785
  msgstr "Preklopi urejevalnik kategorij"
2786
 
2787
- #: settings.php:1447
2788
  msgid "Comma separated category slugs"
2789
  msgstr "Z vejico ločeni ključi kategorij"
2790
 
2791
- #: settings.php:1451
2792
  msgid "Blacklist categories"
2793
  msgstr "Črni seznam kategorij"
2794
 
2795
- #: settings.php:1455
2796
  msgid "Whitelist categories"
2797
  msgstr "Beli seznam kategorij"
2798
 
2799
- #: settings.php:1467
2800
  msgid "Tags"
2801
  msgstr "Oznake"
2802
 
2803
- #: settings.php:1470
2804
  msgid "Toggle tag editor"
2805
  msgstr "Preklopi urejevalnik oznak"
2806
 
2807
- #: settings.php:1473
2808
  msgid "Comma separated tag slugs"
2809
  msgstr "Z vejico ločeni ključi oznak"
2810
 
2811
- #: settings.php:1477
2812
  msgid "Blacklist tags"
2813
  msgstr "Črni seznam oznak"
2814
 
2815
- #: settings.php:1481
2816
  msgid "Whitelist tags"
2817
  msgstr "Beli seznam oznak"
2818
 
2819
- #: settings.php:1493
2820
  msgid "Taxonomies"
2821
  msgstr "Taksonomije"
2822
 
2823
- #: settings.php:1496
2824
  msgid "Toggle taxonomy editor"
2825
  msgstr "Preklopi urejevalnik taksonomij"
2826
 
2827
- #: settings.php:1499
2828
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2829
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
2830
 
2831
- #: settings.php:1503
2832
  msgid "Blacklist taxonomies"
2833
  msgstr "Črni seznam taksonomij"
2834
 
2835
- #: settings.php:1507
2836
  msgid "Whitelist taxonomies"
2837
  msgstr "Beli seznam taksonomij"
2838
 
2839
- #: settings.php:1519
2840
  msgid "Post IDs"
2841
  msgstr "ID-ji prispevkov"
2842
 
2843
- #: settings.php:1522
2844
  msgid "Toggle post/page ID editor"
2845
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
2846
 
2847
- #: settings.php:1525
2848
  msgid "Comma separated post/page IDs"
2849
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
2850
 
2851
- #: settings.php:1529
2852
  msgid "Blacklist IDs"
2853
  msgstr "Črni seznam ID-jev"
2854
 
2855
- #: settings.php:1533
2856
  msgid "Whitelist IDs"
2857
  msgstr "Beli seznam ID-jev"
2858
 
2859
- #: settings.php:1545
2860
  msgid "Urls"
2861
  msgstr "Url-ji"
2862
 
2863
- #: settings.php:1548
2864
  msgid "Toggle url editor"
2865
  msgstr "Preklopi urejevalnik url-jev"
2866
 
2867
- #: settings.php:1551
2868
  msgid ""
2869
  "Comma separated urls (page addresses) starting with / after domain name (e."
2870
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -2876,23 +2952,23 @@ msgstr ""
2876
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
2877
  "začetek*. *url-vzorec*, *url-konec)"
2878
 
2879
- #: settings.php:1555
2880
  msgid "Blacklist urls"
2881
  msgstr "Črni seznam url-jev"
2882
 
2883
- #: settings.php:1559
2884
  msgid "Whitelist urls"
2885
  msgstr "Beli seznam url-jev"
2886
 
2887
- #: settings.php:1570
2888
  msgid "Url parameters"
2889
  msgstr "Url parametri"
2890
 
2891
- #: settings.php:1574
2892
  msgid "Toggle url parameter and cookie editor"
2893
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
2894
 
2895
- #: settings.php:1577
2896
  msgid ""
2897
  "Comma separated url query parameters or cookies with optional values (use "
2898
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
@@ -2901,23 +2977,23 @@ msgstr ""
2901
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
2902
  "'piškotek=vrednost')"
2903
 
2904
- #: settings.php:1581
2905
  msgid "Blacklist url parameters"
2906
  msgstr "Črni seznam url parametrov"
2907
 
2908
- #: settings.php:1585
2909
  msgid "Whitelist url parameters"
2910
  msgstr "Beli seznam url parametrov"
2911
 
2912
- #: settings.php:1596
2913
  msgid "Referrers"
2914
  msgstr "Napotitelji"
2915
 
2916
- #: settings.php:1599
2917
  msgid "Toggle referer editor"
2918
  msgstr "Preklopi urejevalnik napotiteljev"
2919
 
2920
- #: settings.php:1602
2921
  msgid ""
2922
  "Comma separated domains, use # for no referrer, you can also use partial "
2923
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
@@ -2925,28 +3001,28 @@ msgstr ""
2925
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
2926
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
2927
 
2928
- #: settings.php:1606
2929
  msgid "Blacklist referers"
2930
  msgstr "Črni seznam napotiteljev"
2931
 
2932
- #: settings.php:1610
2933
  msgid "Whitelist referers"
2934
  msgstr "Beli seznam napotiteljev"
2935
 
2936
- #: settings.php:1630
2937
  msgid "Enable widget for this block"
2938
  msgstr "Omogočite gradnik za ta blok"
2939
 
2940
- #: settings.php:1642
2941
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2942
  msgstr ""
2943
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
2944
 
2945
- #: settings.php:1643 settings.php:3710
2946
  msgid "Shortcode"
2947
  msgstr "Kratka koda"
2948
 
2949
- #: settings.php:1658
2950
  msgid ""
2951
  "Enable PHP function call to insert this block at any position in theme file. "
2952
  "If function is disabled for block it will return empty string."
@@ -2955,66 +3031,66 @@ msgstr ""
2955
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
2956
  "prazen niz."
2957
 
2958
- #: settings.php:1659
2959
  msgid "PHP function"
2960
  msgstr "PHP funkcija"
2961
 
2962
- #: settings.php:1674
2963
  msgid "Client-side device detection"
2964
  msgstr "Zaznavanje naprave na strani klienta"
2965
 
2966
- #: settings.php:1675
2967
  msgid "Server-side device detection"
2968
  msgstr "Zaznavanje naprave na strani strežnika"
2969
 
2970
- #: settings.php:1682
2971
  msgid "Use client-side detection to"
2972
  msgstr "Uporabi zaznavanje na strani klienta in"
2973
 
2974
- #: settings.php:1684
2975
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
2976
  msgstr ""
2977
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
2978
 
2979
  #. Translators: only on (the following devices): viewport names (devices)
2980
  #. listed
2981
- #: settings.php:1689
2982
  msgid "only on"
2983
  msgstr "samo na"
2984
 
2985
- #: settings.php:1717
2986
  msgid "Device min width %s px"
2987
  msgstr "Najmanjša širina naprave %s px"
2988
 
2989
- #: settings.php:1743
2990
  msgid "Use server-side detection to insert block only for"
2991
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
2992
 
2993
- #: settings.php:1762
2994
  msgid "Filter"
2995
  msgstr "Filter"
2996
 
2997
- #: settings.php:1763
2998
  msgid "Word Count"
2999
  msgstr "Število Besed"
3000
 
3001
- #: settings.php:1764
3002
  msgid "Scheduling"
3003
  msgstr "Urnik"
3004
 
3005
- #: settings.php:1765
3006
  msgid "Display"
3007
  msgstr "Prikaz"
3008
 
3009
- #: settings.php:1767 settings.php:2016
3010
  msgid "General"
3011
  msgstr "Splošno"
3012
 
3013
- #: settings.php:1779
3014
  msgid "Old settings for AMP pages detected"
3015
  msgstr "Zaznane stare nastavitve za AMP strani"
3016
 
3017
- #: settings.php:1779
3018
  msgid ""
3019
  "To insert different codes on normal and AMP pages separate them with "
3020
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
@@ -3025,48 +3101,48 @@ msgstr ""
3025
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3026
  "separatorja)."
3027
 
3028
- #: settings.php:1779
3029
  msgid "AMP pages"
3030
  msgstr "AMP strani"
3031
 
3032
- #: settings.php:1784
3033
  msgid "Enable insertion for Ajax requests"
3034
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3035
 
3036
- #: settings.php:1784
3037
  msgid "Ajax requests"
3038
  msgstr "Ajax zahteve"
3039
 
3040
- #: settings.php:1789
3041
  msgid "Enable insertion in RSS feeds"
3042
  msgstr "Omogoči vstavljanje v RSS virih"
3043
 
3044
- #: settings.php:1789
3045
  msgid "RSS Feed"
3046
  msgstr "RSS Vir"
3047
 
3048
- #: settings.php:1794
3049
  msgid "Enable insertion on page for Error 404: Page not found"
3050
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3051
 
3052
- #: settings.php:1794
3053
  msgid "Error 404 page"
3054
  msgstr "Stran napake 404"
3055
 
3056
- #: settings.php:1806
3057
  msgid "Maximum number of insertion of this block. Empty or 0 means no limit."
3058
  msgstr ""
3059
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3060
 
3061
- #: settings.php:1807
3062
  msgid "Max"
3063
  msgstr "Največ"
3064
 
3065
- #: settings.php:1807
3066
  msgid "insertions"
3067
  msgstr "vstavljanj"
3068
 
3069
- #: settings.php:1809
3070
  msgid ""
3071
  "Count this block for Max blocks per page limit (defined on the tab &#9881; / "
3072
  "tab General)"
@@ -3074,15 +3150,15 @@ msgstr ""
3074
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku "
3075
  "&#9881; / zavihek Splošno)"
3076
 
3077
- #: settings.php:1812 settings.php:2185
3078
  msgid "Max blocks per page"
3079
  msgstr "Največ blokov na stran"
3080
 
3081
- #: settings.php:1824
3082
  msgid "Insert for"
3083
  msgstr "Vstavi za"
3084
 
3085
- #: settings.php:1832
3086
  msgid ""
3087
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3088
  "currently active). Might speed up insertion on content pages when "
@@ -3092,26 +3168,26 @@ msgstr ""
3092
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3093
  "filter the_content večkrat klican."
3094
 
3095
- #: settings.php:1835
3096
  msgid "Insert only in the loop"
3097
  msgstr "Vstavi samo v zanki"
3098
 
3099
- #: settings.php:1841
3100
  msgid ""
3101
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3102
  msgstr ""
3103
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3104
  "Rocket"
3105
 
3106
- #: settings.php:1841
3107
  msgid "Disable caching"
3108
  msgstr "Onemogoči predpomnjenje"
3109
 
3110
- #: settings.php:1853
3111
  msgid "Filter insertions"
3112
  msgstr "Filtriraj vstavljanja"
3113
 
3114
- #: settings.php:1856
3115
  msgid ""
3116
  "Filter multiple insertions by specifying wanted insertions for this block - "
3117
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3123,56 +3199,56 @@ msgstr ""
3123
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
3124
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
3125
 
3126
- #: settings.php:1859
3127
  msgid "using"
3128
  msgstr "z uporabo"
3129
 
3130
- #: settings.php:1878
3131
  msgid "Checked means specified calls are unwanted"
3132
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
3133
 
3134
- #: settings.php:1878
3135
  msgid "Invert filter"
3136
  msgstr "Obrni filter"
3137
 
3138
- #: settings.php:1884
3139
  msgid "Post/Static page must have between"
3140
  msgstr "Prispevek/Statična stran mora imeti med"
3141
 
3142
- #: settings.php:1885
3143
  msgid "Minimum number of post/static page words, leave empty for no limit"
3144
  msgstr ""
3145
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3146
  "omejitev"
3147
 
3148
- #: settings.php:1887
3149
  msgid "Maximum number of post/static page words, leave empty for no limit"
3150
  msgstr ""
3151
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3152
  "omejitev"
3153
 
3154
- #: settings.php:1900
3155
  msgid "days after publishing"
3156
  msgstr "dni po objavi"
3157
 
3158
- #: settings.php:1902
3159
  msgid "Not available"
3160
  msgstr "Ni na razpolago"
3161
 
3162
- #: settings.php:1915 settings.php:2177
3163
  msgid "Ad label"
3164
  msgstr "Oznaka oglasa"
3165
 
3166
- #: settings.php:1934
3167
  msgid "General tag"
3168
  msgstr "Splošna oznaka"
3169
 
3170
- #: settings.php:1938
3171
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3172
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
3173
 
3174
  #. translators: %s: HTML tags
3175
- #: settings.php:1947
3176
  msgid ""
3177
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3178
  "side device detection!"
@@ -3180,90 +3256,90 @@ msgstr ""
3180
  "%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
3181
  "potrebna za zaznavanje naprave na strani klienta!"
3182
 
3183
- #: settings.php:1959
3184
  msgid "Settings"
3185
  msgstr "Nastavitve"
3186
 
3187
- #: settings.php:1962
3188
  msgid "Settings timestamp"
3189
  msgstr "Časovni žig nastavitev"
3190
 
3191
- #: settings.php:1975
3192
  msgid "Are you sure you want to reset all settings?"
3193
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
3194
 
3195
- #: settings.php:1975
3196
  msgid "Reset All Settings"
3197
  msgstr "Ponastavi Vse Nastavitve"
3198
 
3199
- #: settings.php:1991
3200
  msgid "Edit ads.txt file"
3201
  msgstr "Uredi datoteko ads.txt"
3202
 
3203
- #: settings.php:2017
3204
  msgid "Viewports"
3205
  msgstr "Pogledi"
3206
 
3207
- #: settings.php:2018
3208
  msgid "Hooks"
3209
  msgstr "Ročice"
3210
 
3211
- #: settings.php:2019
3212
  msgid "Header"
3213
  msgstr "Glava"
3214
 
3215
- #: settings.php:2020 strings.php:30
3216
  msgid "Footer"
3217
  msgstr "Noga"
3218
 
3219
- #: settings.php:2025
3220
  msgid "Debugging"
3221
  msgstr "Razhroščevanje"
3222
 
3223
- #: settings.php:2035
3224
  msgid "Plugin priority"
3225
  msgstr "Prednost vtičnika"
3226
 
3227
- #: settings.php:2043
3228
  msgid "Output buffering"
3229
  msgstr "Predpomnjenje izhoda"
3230
 
3231
- #: settings.php:2046
3232
  msgid "Needed for position Above header but may not work with all themes"
3233
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
3234
 
3235
- #: settings.php:2054
3236
  msgid "Syntax highlighting theme"
3237
  msgstr "Tema za poudarjanje sintakse"
3238
 
3239
- #: settings.php:2061
3240
  msgctxt "no syntax highlighting themes"
3241
  msgid "None"
3242
  msgstr "Brez"
3243
 
3244
- #: settings.php:2062
3245
  msgid "No Syntax Highlighting"
3246
  msgstr "Brez Poudarjanja Sintakse"
3247
 
3248
- #: settings.php:2064
3249
  msgctxt "syntax highlighting themes"
3250
  msgid "Light"
3251
  msgstr "Svetle"
3252
 
3253
- #: settings.php:2079
3254
  msgctxt "syntax highlighting themes"
3255
  msgid "Dark"
3256
  msgstr "Temne"
3257
 
3258
- #: settings.php:2105
3259
  msgid "Min. user role for ind. exceptions editing"
3260
  msgstr "Najm. uporabniška vloga za urejanje izjem"
3261
 
3262
- #: settings.php:2115
3263
  msgid "Disable caching for logged in administrators"
3264
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
3265
 
3266
- #: settings.php:2118
3267
  msgid ""
3268
  "Enabled means that logged in administrators will see non-cached (live) pages "
3269
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
@@ -3271,11 +3347,11 @@ msgstr ""
3271
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
3272
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
3273
 
3274
- #: settings.php:2126
3275
  msgid "Sticky widget mode"
3276
  msgstr "Način za lepljive gradnike"
3277
 
3278
- #: settings.php:2129
3279
  msgid ""
3280
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3281
  "mode works with most themes but may reload ads on page load."
@@ -3284,19 +3360,19 @@ msgstr ""
3284
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
3285
  "nalaganju strani."
3286
 
3287
- #: settings.php:2137
3288
  msgid "Sticky widget top margin"
3289
  msgstr "Zgornji rob za lepljiv gradnik"
3290
 
3291
- #: settings.php:2145
3292
  msgid "Dynamic blocks"
3293
  msgstr "Dinamični bloki"
3294
 
3295
- #: settings.php:2158
3296
  msgid "Functions for paragraph counting"
3297
  msgstr "Funkcije za štetje odstavkov"
3298
 
3299
- #: settings.php:2161
3300
  msgid ""
3301
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3302
  "functions if paragraphs are not counted properly on non-english pages."
@@ -3305,15 +3381,15 @@ msgstr ""
3305
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
3306
  "šteti."
3307
 
3308
- #: settings.php:2169
3309
  msgid "No paragraph counting inside"
3310
  msgstr "Ni štetja odstavkov znotraj"
3311
 
3312
- #: settings.php:2180
3313
  msgid "Label text or HTML code"
3314
  msgstr "Besedilo oznake ali HTML koda"
3315
 
3316
- #: settings.php:2188
3317
  msgid ""
3318
  "Maximum number of inserted blocks per page. You need to enable Max page "
3319
  "insertions (button Misc / tab Insertion) to count block for this limit."
@@ -3322,12 +3398,12 @@ msgstr ""
3322
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
3323
  "omejitev."
3324
 
3325
- #: settings.php:2202
3326
  msgid "Plugin usage tracking"
3327
  msgstr "Sledenje uporabe vtičnika"
3328
 
3329
  #. translators: %s: Ad Inserter
3330
- #: settings.php:2205
3331
  msgid ""
3332
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3333
  "Only information regarding the WordPress environment and %s usage is "
@@ -3337,125 +3413,125 @@ msgstr ""
3337
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
3338
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
3339
 
3340
- #: settings.php:2223
3341
  msgid "CSS class name for the wrapping div"
3342
  msgstr "Ime CSS razreda za div za ovijanje"
3343
 
3344
- #: settings.php:2223
3345
  msgid "Block class name"
3346
  msgstr "Ime razreda za blok"
3347
 
3348
- #: settings.php:2227
3349
  msgid "Include general plugin block class"
3350
  msgstr "Vključi splošni razred vtičnika za blok"
3351
 
3352
- #: settings.php:2227
3353
  msgid "Block class"
3354
  msgstr "Razred bloka"
3355
 
3356
- #: settings.php:2232
3357
  msgid "Include block number class"
3358
  msgstr "Vključi razred številke bloka"
3359
 
3360
- #: settings.php:2232
3361
  msgid "Block number class"
3362
  msgstr "Razred številke bloka"
3363
 
3364
- #: settings.php:2237
3365
  msgid ""
3366
  "Instead of alignment classes generate inline alignment styles for blocks"
3367
  msgstr ""
3368
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
3369
 
3370
- #: settings.php:2237
3371
  msgid "Inline styles"
3372
  msgstr "Medvrstični slogi"
3373
 
3374
- #: settings.php:2243
3375
  msgid "Preview of the block wrapping code"
3376
  msgstr "Predogled kode za ovijanje blokov"
3377
 
3378
- #: settings.php:2244
3379
  msgid "Wrapping div"
3380
  msgstr "div za ovijanje"
3381
 
3382
- #: settings.php:2245 settings.php:2685
3383
  msgid "BLOCK CODE"
3384
  msgstr "KODA BLOKA"
3385
 
3386
- #: settings.php:2253
3387
  msgid "Viewport Settings used for client-side device detection"
3388
  msgstr ""
3389
  "Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
3390
 
3391
  #. Translators: %d: viewport number
3392
- #: settings.php:2261
3393
  msgid "Viewport %d name"
3394
  msgstr "Ime pogleda %d"
3395
 
3396
- #: settings.php:2264
3397
  msgid "min width"
3398
  msgstr "najmanjša širina"
3399
 
3400
- #: settings.php:2275
3401
  msgid "Custom Hooks"
3402
  msgstr "Ročice Po Meri"
3403
 
3404
- #: settings.php:2287 settings.php:2290
3405
  msgid "Enable hook"
3406
  msgstr "Omogoči ročico"
3407
 
3408
  #. translators: %d: hook number
3409
- #: settings.php:2290
3410
  msgid "Hook %d name"
3411
  msgstr "Ime ročice %d"
3412
 
3413
- #: settings.php:2293
3414
  msgid "Hook name for automatic insertion selection"
3415
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
3416
 
3417
- #: settings.php:2296
3418
  msgid "action"
3419
  msgstr "akcija"
3420
 
3421
- #: settings.php:2299
3422
  msgid "Action name as used in the do_action () function"
3423
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
3424
 
3425
- #: settings.php:2302
3426
  msgid "priority"
3427
  msgstr "prednost"
3428
 
3429
- #: settings.php:2305
3430
  msgid "Priority for the hook (default is 10)"
3431
  msgstr "Prednost za ročico (privzeta je 10)"
3432
 
3433
- #: settings.php:2326
3434
  msgid "Enable insertion of this code into HTML page header"
3435
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3436
 
3437
- #: settings.php:2330 settings.php:2397 settings.php:2579
3438
  msgid "Process PHP code"
3439
  msgstr "Procesiraj PHP kodo"
3440
 
3441
- #: settings.php:2334
3442
  msgid "HTML Page Header Code"
3443
  msgstr "Koda v Glavi HTML Strani"
3444
 
3445
- #: settings.php:2342
3446
  msgid "Code in the %s section of the HTML page"
3447
  msgstr "Koda v %s delu HTML strani"
3448
 
3449
- #: settings.php:2343
3450
  msgctxt "code in the header"
3451
  msgid "NOT ENABLED"
3452
  msgstr "NI OMOGOČENA"
3453
 
3454
- #: settings.php:2360 settings.php:2428
3455
  msgid "Use server-side detection to insert code only for"
3456
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3457
 
3458
- #: settings.php:2375
3459
  msgid ""
3460
  "Enable insertion of this code into HTML page header on page for Error 404: "
3461
  "Page not found"
@@ -3463,29 +3539,29 @@ msgstr ""
3463
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3464
  "obstaja"
3465
 
3466
- #: settings.php:2375 settings.php:2443
3467
  msgid "Insert on Error 404 page"
3468
  msgstr "Vstavi na strani Napake 404"
3469
 
3470
- #: settings.php:2393
3471
  msgid "Enable insertion of this code into HTML page footer"
3472
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3473
 
3474
- #: settings.php:2401
3475
  msgid "HTML Page Footer Code"
3476
  msgstr "Koda v Nogi HTML Strani"
3477
 
3478
  #. translators: %s: HTML tags
3479
- #: settings.php:2409
3480
  msgid "Code before the %s tag of the the HTML page"
3481
  msgstr "Koda pred %s značko HTML strani"
3482
 
3483
- #: settings.php:2410
3484
  msgctxt "code in the footer"
3485
  msgid "NOT ENABLED"
3486
  msgstr "NI OMOGOČENA"
3487
 
3488
- #: settings.php:2443
3489
  msgid ""
3490
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3491
  "Page not found"
@@ -3493,32 +3569,32 @@ msgstr ""
3493
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3494
  "Stran ne obstaja"
3495
 
3496
- #: settings.php:2459
3497
  msgid "Code for ad blocking detection inserted. Click for details."
3498
  msgstr ""
3499
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
3500
 
3501
- #: settings.php:2464
3502
  msgid "Enable detection of ad blocking"
3503
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3504
 
3505
- #: settings.php:2482
3506
  msgid "Global action when ad blocking is detected"
3507
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3508
 
3509
- #: settings.php:2488
3510
  msgid "No action for"
3511
  msgstr "Ni akcije za"
3512
 
3513
- #: settings.php:2489
3514
  msgid "Exceptions for global action when ad blocking is detected."
3515
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
3516
 
3517
- #: settings.php:2499
3518
  msgid "Delay Action"
3519
  msgstr "Zakasni Akcijo"
3520
 
3521
- #: settings.php:2502
3522
  msgid ""
3523
  "Number of page views to delay action when ad blocking is detected. Leave "
3524
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -3527,16 +3603,16 @@ msgstr ""
3527
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3528
  "strani). Nastavi piškotek."
3529
 
3530
- #: settings.php:2502
3531
  msgctxt "Delay Action for x "
3532
  msgid "page views"
3533
  msgstr "ogledov strani"
3534
 
3535
- #: settings.php:2507
3536
  msgid "No Action Period"
3537
  msgstr "Obdobje Brez Akcije"
3538
 
3539
- #: settings.php:2510
3540
  msgid ""
3541
  "Number of days to supress action when ad blocking is detected. Leave empty "
3542
  "for no no-action period (action fires always after defined page view delay). "
@@ -3546,16 +3622,16 @@ msgstr ""
3546
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3547
  "strani). Nastavi piškotek."
3548
 
3549
- #: settings.php:2510
3550
  msgctxt "no action period"
3551
  msgid "days"
3552
  msgstr "dni"
3553
 
3554
- #: settings.php:2515
3555
  msgid "Custom Selectors"
3556
  msgstr "Selektorji Po Meri"
3557
 
3558
- #: settings.php:2518
3559
  msgid ""
3560
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3561
  "blocking detection. Invisible element or element with zero height means ad "
@@ -3565,15 +3641,15 @@ msgstr ""
3565
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3566
  "pomeni prisotnost blokiranja oglasov."
3567
 
3568
- #: settings.php:2530
3569
  msgid "Redirection Page"
3570
  msgstr "Stran za Preusmeritev"
3571
 
3572
- #: settings.php:2542
3573
  msgid "Custom Url"
3574
  msgstr "Url Po Meri"
3575
 
3576
- #: settings.php:2547
3577
  msgid ""
3578
  "Static page for redirection when ad blocking is detected. For other pages "
3579
  "select Custom url and set it below."
@@ -3581,35 +3657,35 @@ msgstr ""
3581
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3582
  "strani izberite Url Po Meri in ga nastavite spodaj."
3583
 
3584
- #: settings.php:2556
3585
  msgid "Custom Redirection Url"
3586
  msgstr "Url za Preusmeritev Po Meri"
3587
 
3588
- #: settings.php:2568
3589
  msgid "Message HTML code"
3590
  msgstr "HTML koda sporočila"
3591
 
3592
- #: settings.php:2581
3593
  msgid "Preview message when ad blocking is detected"
3594
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3595
 
3596
- #: settings.php:2610
3597
  msgid "Prevent visitors from closing the warning message"
3598
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
3599
 
3600
- #: settings.php:2610
3601
  msgid "Undismissible Message"
3602
  msgstr "Neodstranljivo Sporočilo"
3603
 
3604
- #: settings.php:2616
3605
  msgid "Not undismissible for"
3606
  msgstr "Ni neodstranljivo za"
3607
 
3608
- #: settings.php:2617
3609
  msgid "Users which can close the warning message."
3610
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo"
3611
 
3612
- #: settings.php:2631
3613
  msgid ""
3614
  "Force showing admin toolbar for administrators when viewing site. Enable "
3615
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -3618,84 +3694,84 @@ msgstr ""
3618
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
3619
  "skrbnike."
3620
 
3621
- #: settings.php:2639
3622
  msgid "Disable header code (Header tab)"
3623
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
3624
 
3625
- #: settings.php:2643
3626
  msgid "Disable footer code (Footer tab)"
3627
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
3628
 
3629
  #. translators: %s: Ad Inserter
3630
- #: settings.php:2647
3631
  msgid "Disable %s JavaScript code"
3632
  msgstr "Onemogoči %s JavaScript kodo"
3633
 
3634
  #. translators: %s: Ad Inserter
3635
- #: settings.php:2651
3636
  msgid "Disable %s CSS code"
3637
  msgstr "Onemogoči %s CSS kodo"
3638
 
3639
- #: settings.php:2655
3640
  msgid ""
3641
  "Disable PHP code processing (in all blocks including header and footer code)"
3642
  msgstr ""
3643
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
3644
 
3645
- #: settings.php:2659
3646
  msgid "Disable insertion of all blocks"
3647
  msgstr "Onemogoči vstavljanje vseh blokov"
3648
 
3649
- #: settings.php:2663
3650
  msgid "Disable insertions"
3651
  msgstr "Onemogoči vstavljanja"
3652
 
3653
  #. translators: %s: Ad Inserter
3654
- #: settings.php:2675
3655
  msgid "%s CSS CODE"
3656
  msgstr "%s CSS KODA"
3657
 
3658
- #: settings.php:2678
3659
  msgid "HEADER CODE"
3660
  msgstr "KODA GLAVE"
3661
 
3662
  #. translators: %s: PHP tags
3663
- #: settings.php:2684
3664
  msgid "BLOCK PHP CODE"
3665
  msgstr "PHP KODA BLOKA"
3666
 
3667
  #. translators: %s: Ad Inserter
3668
- #: settings.php:2690
3669
  msgid "%s JS CODE"
3670
  msgstr "%s JS KODA"
3671
 
3672
- #: settings.php:2693
3673
  msgid "FOOTER CODE"
3674
  msgstr "KODA NOGE"
3675
 
3676
- #: settings.php:2702
3677
  msgid "Force showing admin toolbar when viewing site"
3678
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
3679
 
3680
- #: settings.php:2709
3681
  msgid "Enable debugging functions in admin toolbar"
3682
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
3683
 
3684
- #: settings.php:2711
3685
  msgid "Debugging functions in admin toolbar"
3686
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
3687
 
3688
- #: settings.php:2718
3689
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3690
  msgstr ""
3691
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
3692
  "zaslonih"
3693
 
3694
- #: settings.php:2720
3695
  msgid "Debugging functions on mobile screens"
3696
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
3697
 
3698
- #: settings.php:2727
3699
  msgid ""
3700
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3701
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -3710,11 +3786,11 @@ msgstr ""
3710
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
3711
  "vedno omogočeno."
3712
 
3713
- #: settings.php:2729
3714
  msgid "Remote debugging"
3715
  msgstr "Oddaljeno razhroščevanje"
3716
 
3717
- #: settings.php:2736
3718
  msgid ""
3719
  "Disable translation to see original texts for the settings and messages in "
3720
  "English"
@@ -3722,179 +3798,179 @@ msgstr ""
3722
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
3723
  "angleščini"
3724
 
3725
- #: settings.php:2738
3726
  msgid "Disable translation"
3727
  msgstr "Onemogoči prevod"
3728
 
3729
- #: settings.php:3080
3730
  msgid "Available positions for current theme"
3731
  msgstr "Razpoložljivi položaji za trenutno temo"
3732
 
3733
- #: settings.php:3081
3734
  msgid "Error checking pages"
3735
  msgstr "Napaka pri preverjanju strani"
3736
 
3737
- #: settings.php:3084
3738
  msgid "Toggle theme checker for available positions for automatic insertion"
3739
  msgstr ""
3740
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
3741
 
3742
- #: settings.php:3084
3743
  msgctxt "Button"
3744
  msgid "Check"
3745
  msgstr "Preveri"
3746
 
3747
- #: settings.php:3091
3748
  msgid "Position"
3749
  msgstr "Položaj"
3750
 
3751
- #: settings.php:3096
3752
  msgid "Archive pages"
3753
  msgstr "Strani arhiva"
3754
 
3755
- #: settings.php:3155
3756
  msgid ""
3757
  "Position not available because output buffering (tab [*]) is not enabled"
3758
  msgstr ""
3759
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
3760
 
3761
- #: settings.php:3158 strings.php:220
3762
  msgid "Position not checked yet"
3763
  msgstr "Položaj še ni bil preverjen"
3764
 
3765
- #: settings.php:3189
3766
  msgid "Toggle active/all blocks"
3767
  msgstr "Preklopi aktive/vse bloke"
3768
 
3769
- #: settings.php:3193 strings.php:207
3770
  msgid "Rearrange block order"
3771
  msgstr "Preuredi vrstni red blokov"
3772
 
3773
- #: settings.php:3198
3774
  msgid "Save new block order"
3775
  msgstr "Shrani vrstni red blokov"
3776
 
3777
- #: settings.php:3198
3778
  msgid "Save Changes"
3779
  msgstr "Sharani Nastavitve"
3780
 
3781
- #: settings.php:3223
3782
  msgid "Toggle active/all ad units"
3783
  msgstr "Preklopi aktivne/vse oglasne enote"
3784
 
3785
- #: settings.php:3227
3786
  msgid "Reload AdSense ad units"
3787
  msgstr "Ponovno naloži oglasne enote AdSense"
3788
 
3789
- #: settings.php:3231
3790
  msgid "Clear authorization to access AdSense account"
3791
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
3792
 
3793
- #: settings.php:3235 settings.php:3867 settings.php:3934 strings.php:215
3794
  msgid "Google AdSense Homepage"
3795
  msgstr "Google AdSense Domača Stran"
3796
 
3797
- #: settings.php:3258
3798
  msgid "Reload ads.txt file"
3799
  msgstr "Ponovno naloži datoteko ads.txt"
3800
 
3801
  #. translators: %s: ads.txt
3802
- #: settings.php:3262
3803
  msgid "Open %s"
3804
  msgstr "Odpri %s"
3805
 
3806
- #: settings.php:3266
3807
  msgid "Switch to table view"
3808
  msgstr "Preklopi na tabelarični pogled"
3809
 
3810
- #: settings.php:3270
3811
  msgid "Switch to editor"
3812
  msgstr "Preklopi na urejevalnik"
3813
 
3814
- #: settings.php:3274
3815
  msgid "Save ads.txt file"
3816
  msgstr "Shrani datoteko ads.txt"
3817
 
3818
- #: settings.php:3409 settings.php:3417 strings.php:200
3819
  msgid "Warning"
3820
  msgstr "Opozorilo"
3821
 
3822
- #: settings.php:3409
3823
  msgid "ads.txt file must be placed on the root domain"
3824
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
3825
 
3826
  #. translators: %s: file path
3827
- #: settings.php:3410
3828
  msgid "WordPress is installed in %s"
3829
  msgstr "WordPress je nameščen v %s"
3830
 
3831
- #: settings.php:3411
3832
  msgid "Showing file"
3833
  msgstr "Prikazana datoteka"
3834
 
3835
- #: settings.php:3417
3836
  msgid "File %s not found"
3837
  msgstr "Datoteka %s ni najdena"
3838
 
3839
- #: settings.php:3424
3840
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3841
  msgstr ""
3842
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
3843
 
3844
- #: settings.php:3441
3845
  msgid "Advertising system"
3846
  msgstr "Oglaševalski sistem"
3847
 
3848
- #: settings.php:3442
3849
  msgid "Account ID"
3850
  msgstr "ID Računa"
3851
 
3852
- #: settings.php:3444
3853
  msgid "Certification authority ID"
3854
  msgstr "ID organa za potrjevanje"
3855
 
3856
- #: settings.php:3459
3857
  msgid "Account ID found in block and present in ads.txt"
3858
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
3859
 
3860
- #: settings.php:3463
3861
  msgid "Account ID found in block but not present in ads.txt"
3862
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
3863
 
3864
- #: settings.php:3679
3865
  msgid "Preview block"
3866
  msgstr "Predogled bloka"
3867
 
3868
- #: settings.php:3688
3869
  msgid "Insertion disabled"
3870
  msgstr "Vstavljanje onemogočeno"
3871
 
3872
- #: settings.php:3712
3873
  msgid "Widget positions"
3874
  msgstr "Položaji gradnikov"
3875
 
3876
- #: settings.php:3778
3877
  msgid "Ad unit"
3878
  msgstr "Enota"
3879
 
3880
- #: settings.php:3780
3881
  msgid "Slot ID"
3882
  msgstr "ID mesta"
3883
 
3884
- #: settings.php:3806
3885
  msgid "Copy AdSense code"
3886
  msgstr "Kopiraj kodo AdSense"
3887
 
3888
- #: settings.php:3809
3889
  msgid "Preview AdSense ad"
3890
  msgstr "Predogled oglasa AdSense"
3891
 
3892
- #: settings.php:3812
3893
  msgid "Get AdSense code"
3894
  msgstr "Pridobi kodo AdSense"
3895
 
3896
  #. translators: %s: HTML tags
3897
- #: settings.php:3844
3898
  msgid ""
3899
  "Please %s clear authorization %s with the button %s above and once again "
3900
  "authorize access to your AdSense account."
@@ -3902,16 +3978,16 @@ msgstr ""
3902
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
3903
  "avtorizirajte dostop do vašega računa AdSense."
3904
 
3905
- #: settings.php:3863
3906
  msgid "AdSense Integration"
3907
  msgstr "Integracija AdSense"
3908
 
3909
- #: settings.php:3865
3910
  msgid "AdSense Integration - Step 2"
3911
  msgstr "Integracija AdSense - Korak 2"
3912
 
3913
  #. translators: %s: HTML tags
3914
- #: settings.php:3871
3915
  msgid ""
3916
  "Authorize %s to access your AdSense account. Click on the %s Get "
3917
  "Authorization Code %s button to open a new window where you can allow "
@@ -3924,7 +4000,7 @@ msgstr ""
3924
  "Avtoriziraj. %s"
3925
 
3926
  #. translators: %s: HTML tags
3927
- #: settings.php:3878
3928
  msgid ""
3929
  "If you get error, can't access ad units or would like to use own Google API "
3930
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -3935,7 +4011,7 @@ msgstr ""
3935
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
3936
 
3937
  #. translators: %s: HTML tags
3938
- #: settings.php:3880
3939
  msgid ""
3940
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3941
  "Authorization Code %s button to open a new window where you can allow "
@@ -3948,7 +4024,7 @@ msgstr ""
3948
  "gumb %s Avtoriziraj. %s"
3949
 
3950
  #. translators: %s: HTML tags
3951
- #: settings.php:3887
3952
  msgid ""
3953
  "If you get error %s invalid client %s click on the button %s Clear and "
3954
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -3956,32 +4032,32 @@ msgstr ""
3956
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
3957
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
3958
 
3959
- #: settings.php:3898
3960
  msgid "Get Authorization Code"
3961
  msgstr "Pridobi Avtoriazcijsko Kodo"
3962
 
3963
- #: settings.php:3901
3964
  msgid "Enter Authorization Code"
3965
  msgstr "Vnesi Avorizacijsko Kodo"
3966
 
3967
- #: settings.php:3911
3968
  msgid "Use own API IDs"
3969
  msgstr "Uporabi lastne API ID-je"
3970
 
3971
- #: settings.php:3913
3972
  msgid "Clear and return to Step 1"
3973
  msgstr "Odstrani in se vrni na Korak 1"
3974
 
3975
- #: settings.php:3917
3976
  msgid "Authorize"
3977
  msgstr "Avtoriziraj"
3978
 
3979
- #: settings.php:3933
3980
  msgid "AdSense Integration - Step 1"
3981
  msgstr "Integracija AdSense - Korak 1"
3982
 
3983
  #. translators: %s: Ad Inserter
3984
- #: settings.php:3937
3985
  msgid ""
3986
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3987
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -3994,12 +4070,12 @@ msgstr ""
3994
  "Klienta in Skrivnost Klienta."
3995
 
3996
  #. translators: %s: HTML tags
3997
- #: settings.php:3946
3998
  msgid "Go to %s Google APIs and Services console %s"
3999
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4000
 
4001
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4002
- #: settings.php:3947
4003
  msgid ""
4004
  "Create %1$s project - if the project and IDs are already created click on "
4005
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
@@ -4008,7 +4084,7 @@ msgstr ""
4008
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4009
 
4010
  #. translators: %s: HTML tags
4011
- #: settings.php:3948
4012
  msgid ""
4013
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4014
  "create a new project"
@@ -4017,12 +4093,12 @@ msgstr ""
4017
  "ustvaritev novega projekta"
4018
 
4019
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4020
- #: settings.php:3949
4021
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4022
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4023
 
4024
  #. translators: %s: HTML tags
4025
- #: settings.php:3950
4026
  msgid ""
4027
  "Click on project selection, wait for the project to be created and then and "
4028
  "select %s as the current project"
@@ -4031,39 +4107,39 @@ msgstr ""
4031
  "izberite %s kot trenutni projekt"
4032
 
4033
  #. translators: %s: HTML tags
4034
- #: settings.php:3951
4035
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4036
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4037
 
4038
  #. translators: %s: HTML tags
4039
- #: settings.php:3952
4040
  msgid "Search for adsense and enable %s"
4041
  msgstr "Poiščite adsense in omogočite %s"
4042
 
4043
  #. translators: %s: HTML tags
4044
- #: settings.php:3953
4045
  msgid "Click on %s CREATE CREDENTIALS %s"
4046
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4047
 
4048
  #. translators: %s: HTML tags
4049
- #: settings.php:3954
4050
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4051
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4052
 
4053
  #. translators: %s: HTML tags
4054
- #: settings.php:3955
4055
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4056
  msgstr ""
4057
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4058
  "podatki %s"
4059
 
4060
  #. translators: %s: HTML tags
4061
- #: settings.php:3956
4062
  msgid "Click on %s What credentials do I need? %s"
4063
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4064
 
4065
  #. translators: %s: HTML tags
4066
- #: settings.php:3957
4067
  msgid ""
4068
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4069
  "Ad Inserter client %s"
@@ -4072,7 +4148,7 @@ msgstr ""
4072
  "%s Ad Inserter klient %s"
4073
 
4074
  #. translators: %s: HTML tags
4075
- #: settings.php:3958
4076
  msgid ""
4077
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4078
  "enter %s"
@@ -4081,17 +4157,17 @@ msgstr ""
4081
  "uporabnikom %s vnesite %s"
4082
 
4083
  #. translators: %s: HTML tags
4084
- #: settings.php:3959
4085
  msgid "Click on %s Continue %s"
4086
  msgstr "Kliknite na %s Nadaljuj %s"
4087
 
4088
  #. translators: %s: HTML tags
4089
- #: settings.php:3960
4090
  msgid "Click on %s Done %s"
4091
  msgstr "Kliknite na %s Končaj %s"
4092
 
4093
  #. translators: %s: HTML tags
4094
- #: settings.php:3961
4095
  msgid ""
4096
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4097
  "secret %s"
@@ -4099,58 +4175,58 @@ msgstr ""
4099
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
4100
  "Skrivnost klienta %s"
4101
 
4102
- #: settings.php:3962
4103
  msgid "Copy them to the appropriate fields below"
4104
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4105
 
4106
- #: settings.php:3968
4107
  msgid "Client ID"
4108
  msgstr "ID klienta"
4109
 
4110
- #: settings.php:3971
4111
  msgid "Enter Client ID"
4112
  msgstr "Vnesite ID klienta"
4113
 
4114
- #: settings.php:3976
4115
  msgid "Client secret"
4116
  msgstr "Skrivnost klienta"
4117
 
4118
- #: settings.php:3979
4119
  msgid "Enter Client secret"
4120
  msgstr "Vnesite Skrivnost klienta"
4121
 
4122
- #: settings.php:3989
4123
  msgid "Use default API IDs"
4124
  msgstr "Uporabi privzete API ID-je"
4125
 
4126
- #: settings.php:3994
4127
  msgid "Save"
4128
  msgstr "Shrani"
4129
 
4130
- #: settings.php:4270 settings.php:4283 settings.php:4296 settings.php:4311
4131
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4132
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4133
 
4134
- #: settings.php:4275 settings.php:4288 settings.php:4301 settings.php:4316
4135
- #: settings.php:4496 settings.php:4500 settings.php:4518 settings.php:4522
4136
- #: settings.php:4530 settings.php:4533 settings.php:4539 settings.php:4551
4137
  msgid "Looking for AdSense alternative?"
4138
  msgstr "Iščete alternativo za AdSense?"
4139
 
4140
- #: settings.php:4327
4141
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4142
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4143
 
4144
- #: settings.php:4332 settings.php:4498 settings.php:4502 settings.php:4510
4145
- #: settings.php:4536
4146
  msgid "Use Infolinks ads with Adsense to earn more"
4147
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4148
 
4149
- #: settings.php:4351 settings.php:4389
4150
  msgid "Support plugin development"
4151
  msgstr "Podprite razvoj vtičnika"
4152
 
4153
- #: settings.php:4352 settings.php:4390
4154
  msgid ""
4155
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4156
  "reviewing the plugin on WordPres"
@@ -4158,12 +4234,12 @@ msgstr ""
4158
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4159
  "razširiti novico z oceno vtičnika na WordPress-u"
4160
 
4161
- #: settings.php:4352
4162
  msgctxt "Review ad Inserter"
4163
  msgid "Review"
4164
  msgstr "Oceni"
4165
 
4166
- #: settings.php:4353
4167
  msgid ""
4168
  "Support free Ad Inserter development. If you are making money with Ad "
4169
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -4172,16 +4248,16 @@ msgstr ""
4172
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4173
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4174
 
4175
- #: settings.php:4353
4176
  msgid "Donate"
4177
  msgstr "Donirajte"
4178
 
4179
- #: settings.php:4360 settings.php:4405
4180
  msgid "Average rating of the plugin - Thank you!"
4181
  msgstr "Povprečna ocena vtičnika - Hvala!"
4182
 
4183
  #. translators: %s: Ad Inserter, HTML tags
4184
- #: settings.php:4371
4185
  msgid ""
4186
  "You've been using %s for a while now, and I hope you're happy with it. "
4187
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4195,24 +4271,24 @@ msgstr ""
4195
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4196
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4197
 
4198
- #: settings.php:4390
4199
  msgid "Review"
4200
  msgstr "Ocena"
4201
 
4202
- #: settings.php:4394
4203
  msgid "Ad Inserter on Twitter"
4204
  msgstr "Ad Inserter na Twitter-ju"
4205
 
4206
- #: settings.php:4395
4207
  msgid "Ad Inserter on Facebook"
4208
  msgstr "Ad Inserter na Facebook-u"
4209
 
4210
- #: settings.php:4398
4211
  msgid "Follow Ad Inserter"
4212
  msgstr "Sledi Ad Inserter-ju"
4213
 
4214
  #. translators: %s: HTML tags
4215
- #: settings.php:4425
4216
  msgid ""
4217
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4218
  "and %s Common Settings %s pages"
@@ -4221,7 +4297,7 @@ msgstr ""
4221
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4222
 
4223
  #. translators: %s: HTML tags
4224
- #: settings.php:4437
4225
  msgid ""
4226
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4227
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -4232,7 +4308,7 @@ msgstr ""
4232
  "%s Infolinks %s oglasno kodo %s"
4233
 
4234
  #. translators: %s: HTML tags
4235
- #: settings.php:4458
4236
  msgid ""
4237
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4238
  "purchase you refer to us"
@@ -4241,7 +4317,7 @@ msgstr ""
4241
  "nakup, ki nam ga posredujete"
4242
 
4243
  #. translators: %s: HTML tags
4244
- #: settings.php:4465
4245
  msgid ""
4246
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4247
  "diagnose and fix the problem."
@@ -4250,7 +4326,7 @@ msgstr ""
4250
  "navodili za diagnozo in rešitvami za težave."
4251
 
4252
  #. translators: %s: HTML tags
4253
- #: settings.php:4469
4254
  msgid ""
4255
  "If you need any kind of help or support, please do not hesitate to open a "
4256
  "thread on the %s support forum. %s"
@@ -4258,44 +4334,44 @@ msgstr ""
4258
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4259
  "nit na %s podpornem forumu. %s"
4260
 
4261
- #: settings.php:4514 settings.php:4555
4262
  msgid "A/B testing - Track ad impressions and clicks"
4263
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4264
 
4265
- #: settings.php:4547 settings.php:4559
4266
  msgid "Code preview with visual CSS editor"
4267
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4268
 
4269
- #: settings.php:4567
4270
  msgid "Looking for Pro Ad Management plugin?"
4271
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4272
 
4273
- #: settings.php:4568
4274
  msgid "To Optimally Monetize your WordPress website?"
4275
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4276
 
4277
  #. translators: %s HTML tags
4278
- #: settings.php:4571
4279
  msgid "%s AdSense Integration %s"
4280
  msgstr "%s Integracija AdSense %s"
4281
 
4282
  #. translators: %s HTML tags
4283
- #: settings.php:4572
4284
  msgid "Syntax highlighting %s editor %s"
4285
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4286
 
4287
  #. translators: %s HTML tags
4288
- #: settings.php:4573
4289
  msgid "%s Code preview %s with visual CSS editor"
4290
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4291
 
4292
  #. translators: %s HTML tags
4293
- #: settings.php:4574
4294
  msgid "Simple user interface - all settings on a single page"
4295
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4296
 
4297
  #. translators: %s HTML tags
4298
- #: settings.php:4575
4299
  msgid ""
4300
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4301
  "image / excerpt"
@@ -4304,27 +4380,27 @@ msgstr ""
4304
  "%s / sliko / izvlečkom"
4305
 
4306
  #. translators: %s HTML tags
4307
- #: settings.php:4576
4308
  msgid "%s Automatic insertion %s between posts on blog pages"
4309
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4310
 
4311
  #. translators: %s HTML tags
4312
- #: settings.php:4577
4313
  msgid "%s Automatic insertion %s before, between and after comments"
4314
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4315
 
4316
  #. translators: %s HTML tags
4317
- #: settings.php:4578
4318
  msgid "%s Automatic insertion %s after %s or before %s tag"
4319
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4320
 
4321
  #. translators: %s HTML tags
4322
- #: settings.php:4579
4323
  msgid "Automatic insertion at %s custom hook positions %s"
4324
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4325
 
4326
  #. translators: %s HTML tags
4327
- #: settings.php:4580
4328
  msgid ""
4329
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4330
  "selectors)"
@@ -4333,17 +4409,17 @@ msgstr ""
4333
  "selektorjev)"
4334
 
4335
  #. translators: %s HTML tags
4336
- #: settings.php:4581
4337
  msgid "%s Insertion exceptions %s for individual posts and pages"
4338
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4339
 
4340
  #. translators: %s HTML tags
4341
- #: settings.php:4582
4342
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4343
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4344
 
4345
  #. translators: %s HTML tags
4346
- #: settings.php:4583
4347
  msgid ""
4348
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4349
  "scrolls)"
@@ -4352,19 +4428,19 @@ msgstr ""
4352
  "se stran pomika)"
4353
 
4354
  #. translators: %s HTML tags
4355
- #: settings.php:4584
4356
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4357
  msgstr ""
4358
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4359
 
4360
  #. translators: %s HTML tags
4361
- #: settings.php:4585
4362
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4363
  msgstr ""
4364
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4365
 
4366
  #. translators: %s HTML tags
4367
- #: settings.php:4586
4368
  msgid ""
4369
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4370
  "visible)"
@@ -4373,7 +4449,7 @@ msgstr ""
4373
  "postane viden)"
4374
 
4375
  #. translators: %s HTML tags
4376
- #: settings.php:4587
4377
  msgid ""
4378
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4379
  msgstr ""
@@ -4381,12 +4457,12 @@ msgstr ""
4381
  "strani)"
4382
 
4383
  #. translators: %s HTML tags
4384
- #: settings.php:4588
4385
  msgid "Block %s alignment and style %s customizations"
4386
  msgstr "%s Poravnave in slogi %s bloka po meri"
4387
 
4388
  #. translators: %s HTML tags
4389
- #: settings.php:4589
4390
  msgid ""
4391
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4392
  "TOS)"
@@ -4394,7 +4470,7 @@ msgstr ""
4394
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4395
 
4396
  #. translators: %s HTML tags
4397
- #: settings.php:4590
4398
  msgid ""
4399
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4400
  "feeds"
@@ -4403,17 +4479,17 @@ msgstr ""
4403
  "virih"
4404
 
4405
  #. translators: %s HTML tags
4406
- #: settings.php:4591
4407
  msgid "%s Ad rotation %s (works also with caching)"
4408
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4409
 
4410
  #. translators: %s HTML tags
4411
- #: settings.php:4592
4412
  msgid "Create, edit and check %s ads.txt %s file"
4413
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
4414
 
4415
  #. translators: %s HTML tags
4416
- #: settings.php:4593
4417
  msgid ""
4418
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4419
  "AdSense)"
@@ -4422,76 +4498,76 @@ msgstr ""
4422
  "AdSense)"
4423
 
4424
  #. translators: %s HTML tags
4425
- #: settings.php:4594
4426
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4427
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
4428
 
4429
  #. translators: %s HTML tags
4430
- #: settings.php:4595
4431
  msgid "%s Public web reports %s for clients, export to PDF"
4432
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
4433
 
4434
  #. translators: %s HTML tags
4435
- #: settings.php:4596
4436
  msgid "Support for %s A/B testing %s"
4437
  msgstr "Podpora za %s A/B testiranje %s"
4438
 
4439
  #. translators: %s HTML tags
4440
- #: settings.php:4597
4441
  msgid "Support for %s lazy loading %s"
4442
  msgstr "Podpora za %s leno nalaganje %s"
4443
 
4444
  #. translators: %s HTML tags
4445
- #: settings.php:4598
4446
  msgid "Support for ads on %s AMP pages %s"
4447
  msgstr "Podpora za oglase na %s AMP straneh %s"
4448
 
4449
  #. translators: %s HTML tags
4450
- #: settings.php:4599
4451
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4452
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4453
 
4454
  #. translators: %s HTML tags
4455
- #: settings.php:4600
4456
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4457
  msgstr ""
4458
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4459
 
4460
  #. translators: %s HTML tags
4461
- #: settings.php:4601
4462
  msgid "PHP code processing"
4463
  msgstr "Procesiranje PHP kode"
4464
 
4465
  #. translators: %s HTML tags
4466
- #: settings.php:4602
4467
  msgid "%s Banner %s code generator"
4468
  msgstr "Generator kode za %s pasice %s"
4469
 
4470
  #. translators: %s HTML tags
4471
- #: settings.php:4603
4472
  msgid "Support for %s header and footer %s code"
4473
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4474
 
4475
  #. translators: %s HTML tags
4476
- #: settings.php:4604
4477
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4478
  msgstr ""
4479
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4480
 
4481
  #. translators: %s HTML tags
4482
- #: settings.php:4605
4483
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4484
  msgstr ""
4485
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4486
  "strežnika"
4487
 
4488
  #. translators: %s HTML tags
4489
- #: settings.php:4606
4490
  msgid "Client-side %s mobile device detection %s (works with caching)"
4491
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4492
 
4493
  #. translators: %s HTML tags
4494
- #: settings.php:4607
4495
  msgid ""
4496
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4497
  "protection"
@@ -4500,12 +4576,12 @@ msgstr ""
4500
  "vsebine"
4501
 
4502
  #. translators: %s HTML tags
4503
- #: settings.php:4608
4504
  msgid "%s Ad blocking statistics %s"
4505
  msgstr "%s Statistika blokiranja oglasov %s"
4506
 
4507
  #. translators: %s HTML tags
4508
- #: settings.php:4609
4509
  msgid ""
4510
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4511
  "referers"
@@ -4513,75 +4589,75 @@ msgstr ""
4513
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4514
 
4515
  #. translators: %s HTML tags
4516
- #: settings.php:4610
4517
  msgid ""
4518
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4519
  msgstr ""
4520
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4521
 
4522
  #. translators: %s HTML tags
4523
- #: settings.php:4611
4524
  msgid "%s Multisite options %s to limit settings on the sites"
4525
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4526
 
4527
  #. translators: %s HTML tags
4528
- #: settings.php:4612
4529
  msgid "%s Import/Export %s block or plugin settings"
4530
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4531
 
4532
  #. translators: %s HTML tags
4533
- #: settings.php:4613
4534
  msgid "%s Insertion scheduling %s with fallback option"
4535
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4536
 
4537
  #. translators: %s HTML tags
4538
- #: settings.php:4614
4539
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4540
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4541
 
4542
  #. translators: %s HTML tags
4543
- #: settings.php:4615
4544
  msgid "Simple troubleshooting with many %s debugging functions %s"
4545
  msgstr ""
4546
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4547
 
4548
  #. translators: %s HTML tags
4549
- #: settings.php:4616
4550
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4551
  msgstr ""
4552
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4553
 
4554
  #. translators: %s HTML tags
4555
- #: settings.php:4617
4556
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4557
  msgstr ""
4558
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4559
 
4560
  #. translators: %s HTML tags
4561
- #: settings.php:4618
4562
  msgid ""
4563
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4564
  msgstr ""
4565
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4566
 
4567
  #. translators: %s HTML tags
4568
- #: settings.php:4619
4569
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4570
  msgstr ""
4571
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
4572
 
4573
  #. translators: %s HTML tags
4574
- #: settings.php:4620
4575
  msgid "No ads on the settings page"
4576
  msgstr "Stran z nastavitvami brez oglasov"
4577
 
4578
  #. translators: %s HTML tags
4579
- #: settings.php:4621
4580
  msgid "Premium support"
4581
  msgstr "Vrhunska podpora"
4582
 
4583
  #. translators: %s HTML tags
4584
- #: settings.php:4624
4585
  msgid ""
4586
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4587
  "website with many advertising features to automatically insert adverts on "
@@ -4608,82 +4684,82 @@ msgstr ""
4608
  "bodo ohranile)."
4609
 
4610
  #. translators: %s HTML tags
4611
- #: settings.php:4637
4612
  msgid "Looking for %s Pro Ad Management plugin? %s"
4613
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
4614
 
4615
  #. translators: %s HTML tags
4616
- #: settings.php:4642
4617
  msgid "Ads between posts"
4618
  msgstr "Oglasi med prispevki"
4619
 
4620
  #. translators: %s HTML tags
4621
- #: settings.php:4643
4622
  msgid "Ads between comments"
4623
  msgstr "Oglasi med komentarji"
4624
 
4625
  #. translators: %s HTML tags
4626
- #: settings.php:4644
4627
  msgid "Support via email"
4628
  msgstr "Podpora prek elektronske pošte"
4629
 
4630
  #. translators: %s HTML tags
4631
- #: settings.php:4650
4632
  msgid "%s Sticky positions %s"
4633
  msgstr "%s Lepljivi položaji %s"
4634
 
4635
  #. translators: %s HTML tags
4636
- #: settings.php:4651
4637
  msgid "%s Limit insertions %s"
4638
  msgstr "%s Omeji vstavljanja %s"
4639
 
4640
  #. translators: %s HTML tags
4641
- #: settings.php:4652
4642
  msgid "%s Clearance %s options"
4643
  msgstr "Možnosti %s izogibanja %s"
4644
 
4645
  #. translators: %s HTML tags
4646
- #: settings.php:4658
4647
  msgid "Ad rotation"
4648
  msgstr "Vrtenje oglasov"
4649
 
4650
  #. translators: %s HTML tags
4651
- #: settings.php:4659
4652
  msgid "%s A/B testing %s"
4653
  msgstr "%s A/B testiranje %s"
4654
 
4655
  #. translators: %s HTML tags
4656
- #: settings.php:4660
4657
  msgid "%s Ad tracking %s"
4658
  msgstr "%s Sledenje oglasom %s"
4659
 
4660
  #. translators: %s HTML tags
4661
- #: settings.php:4666
4662
  msgid "Support for %s AMP pages %s"
4663
  msgstr "Podpora za %s AMP strani %s"
4664
 
4665
  #. translators: %s HTML tags
4666
- #: settings.php:4667
4667
  msgid "%s Ad blocking detection %s"
4668
  msgstr "%s Zaznavanje blokiranja oglasov %s"
4669
 
4670
  #. translators: %s HTML tags
4671
- #: settings.php:4668
4672
  msgid "%s Mobile device detection %s"
4673
  msgstr "%s Zaznavanje mobilne naprave %s"
4674
 
4675
  #. translators: %s HTML tags
4676
- #: settings.php:4675
4677
  msgid "64 code blocks"
4678
  msgstr "64 kodnih blokov"
4679
 
4680
  #. translators: %s HTML tags
4681
- #: settings.php:4676
4682
  msgid "%s GEO targeting %s"
4683
  msgstr "%s GEO ciljanje %s"
4684
 
4685
  #. translators: %s HTML tags
4686
- #: settings.php:4677
4687
  msgid "%s Scheduling %s"
4688
  msgstr "%s Urnik %s"
4689
 
@@ -5328,15 +5404,6 @@ msgid "Invalid date range - only data for 1 year can be displayed"
5328
  msgstr ""
5329
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
5330
 
5331
- #: strings.php:194 strings.php:195 strings.php:196 strings.php:197
5332
- #: strings.php:198 strings.php:199
5333
- msgid "day"
5334
- msgid_plural "days"
5335
- msgstr[0] "dan"
5336
- msgstr[1] "dni"
5337
- msgstr[2] "dni"
5338
- msgstr[3] "dni"
5339
-
5340
  #: strings.php:201
5341
  msgid "Delete"
5342
  msgstr "Pobriši"
@@ -5475,6 +5542,38 @@ msgstr ""
5475
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
5476
  "na optimalna mesta"
5477
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5478
  #~ msgid "Enable tracking"
5479
  #~ msgstr "Omogoči sledenje"
5480
 
@@ -5829,9 +5928,6 @@ msgstr ""
5829
  #~ msgid "Only required temporarily"
5830
  #~ msgstr "Potrebujem samo začasno"
5831
 
5832
- #~ msgid "Don't show this form again"
5833
- #~ msgstr "Ne prikaži več tega obrazca"
5834
-
5835
  #~ msgid "Details (optional)"
5836
  #~ msgstr "Podrobnosti (izbirno)"
5837
 
@@ -5849,24 +5945,3 @@ msgstr ""
5849
 
5850
  #~ msgid "Submit and Deactivate"
5851
  #~ msgstr "Pošlji in Onemogoči"
5852
-
5853
- #~ msgid "Check for updates"
5854
- #~ msgstr "Preveri posodobitve"
5855
-
5856
- #~ msgid "View details"
5857
- #~ msgstr "Poglej podrobnosti"
5858
-
5859
- #~ msgctxt "the plugin title"
5860
- #~ msgid "The %s plugin is up to date."
5861
- #~ msgstr "Vtičnik %s je posodobljen."
5862
-
5863
- #~ msgctxt "the plugin title"
5864
- #~ msgid "A new version of the %s plugin is available."
5865
- #~ msgstr "Nova različica vtičnika %s je na voljo."
5866
-
5867
- #~ msgctxt "the plugin title"
5868
- #~ msgid "Could not determine if updates are available for %s."
5869
- #~ msgstr "Ne morem ugotoviti ali so za %s na voljo posodobitve."
5870
-
5871
- #~ msgid "There is no changelog available."
5872
- #~ msgstr "Dnevnik sprememb ni na razpolago."
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.4.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-07-31 18:27:42+00:00\n"
8
+ "PO-Revision-Date: 2019-07-31 20:28+0200\n"
9
  "Last-Translator: Igor Funa\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
+ #: ad-inserter.php:376
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:392
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:399
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:470
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:477
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:486
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:493
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:503
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
  #. translators: Debugging position name Before HTML element
60
+ #: ad-inserter.php:1100
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
+ #: ad-inserter.php:1105
66
  msgid "After"
67
  msgstr "Za"
68
 
69
  #. translators: Debugging position name Prepend content of HTML element (before
70
  #. the content of the HTML element)
71
+ #: ad-inserter.php:1110 strings.php:98
72
  msgid "Prepend content"
73
  msgstr "Dodaj pred vsebino"
74
 
75
  #. translators: Debugging position name Append content of HTML element (after
76
  #. the content of the HTML element)
77
+ #: ad-inserter.php:1115 strings.php:99
78
  msgid "Append content"
79
  msgstr "Dodaj za vsebino"
80
 
81
  #. translators: Debugging position name Replace content of HTML element
82
+ #: ad-inserter.php:1120 strings.php:100
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
+ #: ad-inserter.php:1125 strings.php:150
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
+ #: ad-inserter.php:1172
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
+ #: ad-inserter.php:1176
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
+ #: ad-inserter.php:1385
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
+ #: ad-inserter.php:1672 ad-inserter.php:2540
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
+ #: ad-inserter.php:2107
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
+ #: ad-inserter.php:2107
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
+ #: ad-inserter.php:2108
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
+ #: ad-inserter.php:2109
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
+ #: ad-inserter.php:2110
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
+ #: ad-inserter.php:2111
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
+ #: ad-inserter.php:2112
137
  msgid "AD BLOCKING DETECTED - NO ACTION"
138
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
139
 
140
  #. Translators: 1: number of blocks, 2: Ad Inserter
141
+ #: ad-inserter.php:2311
142
  msgid "Hey, you are now using %1$s %2$s block."
143
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
144
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
146
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
147
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
148
 
149
+ #: ad-inserter.php:2312 includes/functions.php:1569
150
  msgid "No, thank you."
151
  msgstr "Ne, hvala."
152
 
153
  #. Translators: %s: Ad Inserter
154
+ #: ad-inserter.php:2315
155
  msgid ""
156
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
157
  msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
158
 
159
+ #: ad-inserter.php:2316 includes/functions.php:1572
160
  msgid "Not now, maybe later."
161
  msgstr "Ne zdaj, mogoče kasneje."
162
 
163
+ #: ad-inserter.php:2326
164
  msgid "I would really appreciate if you could rate the plugin on WordPres."
165
  msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
166
 
167
+ #: ad-inserter.php:2328
168
  msgid ""
169
  "Positive reviews are a great incentive to fix bugs and to add new features "
170
  "for better monetization of your website. Thank you, Igor"
173
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
174
 
175
  #. translators: %s: Ad Inserter
176
+ #: ad-inserter.php:2334
177
  msgid "Rate %s"
178
  msgstr "Ocenite %s"
179
 
180
+ #: ad-inserter.php:2339
181
  msgid "I already did."
182
  msgstr "Sem že."
183
 
184
+ #: ad-inserter.php:2353
185
  msgctxt "Menu item"
186
  msgid "Settings"
187
  msgstr "Nastavitve"
188
 
189
  #. translators: %s: Ad Inserter
190
+ #: ad-inserter.php:2427
191
  msgctxt "Meta box name"
192
  msgid "%s Individual Exceptions"
193
  msgstr "Posamezne Izjeme za %s"
194
 
195
+ #: ad-inserter.php:2456 ad-inserter.php:8343 class.php:1972
196
  #: includes/preview.php:1976 includes/preview.php:2020
197
+ #: includes/preview.php:2057 settings.php:3741 strings.php:3
198
  msgid "Block"
199
  msgstr "Blok"
200
 
201
+ #: ad-inserter.php:2457 settings.php:3742 settings.php:3816
202
  msgid "Name"
203
  msgstr "Ime"
204
 
205
+ #: ad-inserter.php:2458 settings.php:3744
206
  msgid "Automatic insertion"
207
  msgstr "Samodejno vstavljanje"
208
 
209
+ #: ad-inserter.php:2461
210
  msgid "Default insertion for pages"
211
  msgstr "Privzeto vstavljanje za strani"
212
 
213
+ #: ad-inserter.php:2462
214
  msgid "Default insertion for posts"
215
  msgstr "Privzeto vstavljanje za prispevke"
216
 
217
  #. translators: For this post or page
218
+ #: ad-inserter.php:2465
219
  msgctxt "Page"
220
  msgid "For this"
221
  msgstr "Za to"
222
 
223
+ #: ad-inserter.php:2466
224
  msgctxt "Post"
225
  msgid "For this"
226
  msgstr "Za ta"
227
 
228
+ #: ad-inserter.php:2474
229
  msgctxt "Enabled/disabled on all"
230
  msgid "pages"
231
  msgstr "straneh"
232
 
233
+ #: ad-inserter.php:2475
234
  msgctxt "Default insertion for"
235
  msgid "pages"
236
  msgstr "strani"
237
 
238
+ #: ad-inserter.php:2479
239
  msgctxt "Enabled/disabled on all"
240
  msgid "posts"
241
  msgstr "prispevkih"
242
 
243
+ #: ad-inserter.php:2480
244
  msgctxt "Default insertion for"
245
  msgid "posts"
246
  msgstr "prispevke"
247
 
248
+ #: ad-inserter.php:2499 ad-inserter.php:2512 strings.php:156
249
  msgid "Enabled"
250
  msgstr "Omogočeno"
251
 
252
  #. translators: Menu items
253
+ #: ad-inserter.php:2499 ad-inserter.php:2512 includes/functions.php:2230
254
  #: strings.php:16
255
  msgid "Disabled"
256
  msgstr "Onemogočeno"
257
 
258
  #. translators: Enabled on all pages or posts
259
+ #: ad-inserter.php:2502
260
  msgid "Enabled on all"
261
  msgstr "Omogočeno na vseh"
262
 
263
  #. translators: Disabled on all pages or posts
264
+ #: ad-inserter.php:2504
265
  msgid "Disabled on all"
266
  msgstr "Onemogočeno na vseh"
267
 
268
  #. translators: No individual exceptions enabled for pages or posts
269
+ #: ad-inserter.php:2532
270
  msgid "No individual exceptions enabled for"
271
  msgstr "Ni omogočenih posameznih izjem za"
272
 
273
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
274
+ #: ad-inserter.php:2537
275
  msgid ""
276
  "Default insertion for %1$s can be configured for each block on %2$s page - "
277
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
281
  "izbira poleg kljukice za vklop <strong>Prispevki</strong> / <strong>Statične "
282
  "strani</strong>.<br />"
283
 
284
+ #: ad-inserter.php:2542
285
  msgid ""
286
  "Default value is <strong>blank</strong> and means no individual exceptions "
287
  "(even if previously defined here).<br />"
289
  "Privzeta vrednost je <strong>prazno</strong> in pomeni brez posameznih izjem "
290
  "(tudi, če so bile predhodno nsatavljene tukaj).<br />"
291
 
292
+ #: ad-inserter.php:2545
293
  msgctxt "Pages"
294
  msgid ""
295
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
298
  "Nastavite na <strong>Posamezno onemogočene</strong> ali <strong>Posamezno "
299
  "omogočene</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
300
 
301
+ #: ad-inserter.php:2546
302
  msgctxt "Posts"
303
  msgid ""
304
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
307
  "Nastavite na <strong>Posamezno onemogočeni</strong> ali <strong>Posamezno "
308
  "omogočeni</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
309
 
310
+ #: ad-inserter.php:2548
311
  msgid "For more information check page %s"
312
  msgstr "Za več informacij poglejte stran %s"
313
 
314
  #. translators: Ad Inserter Exceptions documentation page
315
+ #: ad-inserter.php:2550
316
  msgid "Individual Exceptions"
317
  msgstr "Posamezne Izjeme"
318
 
319
+ #: ad-inserter.php:2597
320
  msgid "STATIC PAGE"
321
  msgstr "STATIČNA STRAN"
322
 
323
+ #: ad-inserter.php:2600
324
  msgid "POST"
325
  msgstr "PRISPEVEK"
326
 
327
+ #: ad-inserter.php:2603
328
  msgid "HOMEPAGE"
329
  msgstr "DOMAČA STRAN"
330
 
331
+ #: ad-inserter.php:2606
332
  msgid "CATEGORY PAGE"
333
  msgstr "STRAN KATEGORIJE"
334
 
335
+ #: ad-inserter.php:2609
336
  msgid "SEARCH PAGE"
337
  msgstr "STRAN ISKANJE"
338
 
339
+ #: ad-inserter.php:2612
340
  msgid "ARCHIVE PAGE"
341
  msgstr "STRAN ARHIVA"
342
 
343
+ #: ad-inserter.php:2615
344
  msgid "ERROR 404 PAGE"
345
  msgstr "STRAN NAPAKA 404"
346
 
347
+ #: ad-inserter.php:2618
348
  msgid "AJAX CALL"
349
  msgstr "AJAX KLIC"
350
 
351
+ #: ad-inserter.php:2621
352
  msgid "UNKNOWN PAGE TYPE"
353
  msgstr "NEZNAN TIP STRANI"
354
 
355
+ #: ad-inserter.php:2638
356
  msgid "Click to delete ad blocking detection cokies"
357
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
358
 
359
+ #: ad-inserter.php:2639
360
  msgid "AD BLOCKING STATUS UNKNOWN"
361
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
362
 
363
  #. translators: %s: AdSense Auto Ads
364
+ #: ad-inserter.php:2663
365
  msgid ""
366
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
367
  "positions"
369
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
370
  "položaje"
371
 
372
+ #: ad-inserter.php:2802
373
  msgid "Code for insertion"
374
  msgstr "Koda za vstavljanje"
375
 
376
+ #: ad-inserter.php:2802
377
  msgid "character"
378
  msgid_plural "characters"
379
  msgstr[0] "znak"
381
  msgstr[2] "znaki"
382
  msgstr[3] "znakov"
383
 
384
+ #: ad-inserter.php:2845
385
  msgid "Header code"
386
  msgstr "Koda v glavi"
387
 
388
+ #: ad-inserter.php:2845
389
  msgctxt "Header code"
390
  msgid "DISABLED"
391
  msgstr "ONEMOGOČENA"
392
 
393
+ #: ad-inserter.php:2845 ad-inserter.php:3067
394
  msgid "character inserted"
395
  msgid_plural "characters inserted"
396
  msgstr[0] "znak vstavljen"
398
  msgstr[2] "znaki vstavljeni"
399
  msgstr[3] "znakov vstavljenih"
400
 
401
+ #: ad-inserter.php:2878
402
  msgid "Automatically placed by AdSense Auto ads code"
403
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
404
 
405
+ #: ad-inserter.php:3067
406
  msgid "Footer code"
407
  msgstr "Koda v nogi"
408
 
409
+ #: ad-inserter.php:3067
410
  msgctxt "Footer code"
411
  msgid "DISABLED"
412
  msgstr "ONEMOGOČENA"
413
 
414
+ #: ad-inserter.php:3073
415
  msgid "JAVASCRIPT NOT WORKING"
416
  msgstr "JAVASCRIPT NE DELA"
417
 
418
+ #: ad-inserter.php:3073
419
  msgid "NO JAVASCRIPT ERRORS"
420
  msgstr "BREZ JAVASCRIPT NAPAK"
421
 
422
+ #: ad-inserter.php:3073
423
  msgid "JAVASCRIPT ERRORS"
424
  msgstr "JAVASCRIPT NAPAKE"
425
 
426
  #. translators: block name (block with default settings)
427
+ #: ad-inserter.php:5235
428
  msgctxt "Block name"
429
  msgid "Default"
430
  msgstr "Privzeti"
431
 
432
  #. translators: %s: Ad Inserter
433
+ #: ad-inserter.php:5815
434
  msgid "Error importing %s settings."
435
  msgstr "Napaka pri uvozu %s nastavitev."
436
 
437
+ #: ad-inserter.php:5816
438
  msgid "Error importing settings for block"
439
  msgid_plural "Error importing settings for blocks:"
440
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
442
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
443
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
444
 
445
+ #: ad-inserter.php:5865
446
  msgid "Settings saved."
447
  msgstr "Nastavitve shranjene."
448
 
449
+ #: ad-inserter.php:5950
450
  msgid "Settings cleared."
451
  msgstr "Nastavitve ponastavljene."
452
 
453
+ #: ad-inserter.php:6295 ad-inserter.php:6297 ad-inserter.php:6320
454
  msgid "word"
455
  msgid_plural "words"
456
  msgstr[0] "beseda"
458
  msgstr[2] "besede"
459
  msgstr[3] "besed"
460
 
461
+ #: ad-inserter.php:6334 ad-inserter.php:6446
462
  msgid "HTML TAGS REMOVED"
463
  msgstr "HTML ZNAČKE ODSTRANJENE"
464
 
465
+ #: ad-inserter.php:6522
466
  msgid "BEFORE COMMENTS"
467
  msgstr "PRED KOMENTARJI"
468
 
469
+ #: ad-inserter.php:6630
470
  msgid "AFTER COMMENTS"
471
  msgstr "PO KOMETARJIH"
472
 
473
+ #: ad-inserter.php:6693
474
  msgid "BETWEEN COMMENTS"
475
  msgstr "MED KOMENTARJI"
476
 
477
+ #: ad-inserter.php:7982
478
  msgid "requires WordPress 4.0 or newer"
479
  msgstr "potrebuje WordPress 4.0 ali novejši"
480
 
481
+ #: ad-inserter.php:7982
482
  msgid "Please update!"
483
  msgstr "Prosimo, posodobite!"
484
 
485
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
486
  #. name with HTML tags will be added)
487
+ #: ad-inserter.php:8216
488
  msgid "Thank you for installing"
489
  msgstr "Hvala za namestitev vtičnika"
490
 
491
  #. translators: Opt-in message: %s: HTML tags
492
+ #: ad-inserter.php:8218
493
  msgid ""
494
  "We would like to %s track its usage %s on your site. This is completely "
495
  "optional and can be disabled at any time."
497
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
498
  "izbirno in se lahko izključi kadarkoli."
499
 
500
+ #: ad-inserter.php:8220
501
  msgid ""
502
  "We don't record any sensitive data, only information regarding the WordPress "
503
  "environment and plugin usage, which will help us to make improvements to the "
507
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
508
 
509
  #. translators: Deactivation message: %s: HTML tags
510
+ #: ad-inserter.php:8257
511
  msgid ""
512
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
513
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
518
  "nam %s in poskušali vam bomo pomagati."
519
 
520
  #. translators: %s: Ad Inserter
521
+ #: ad-inserter.php:8300
522
  msgid "%s block."
523
  msgstr "%s blok."
524
 
525
  #. translators: widget title
526
+ #: ad-inserter.php:8316 ad-inserter.php:8352
527
  msgid "Processing log"
528
  msgstr "Dnevnik procesiranja"
529
 
530
  #. translators: widget title
531
+ #: ad-inserter.php:8318 ad-inserter.php:8353
532
  msgid "Dummy widget"
533
  msgstr "Prazen gradnik"
534
 
535
  #. translators: widget title
536
+ #: ad-inserter.php:8320 ad-inserter.php:8351
537
  msgid "Debugging tools"
538
  msgstr "Orodja za razhroščevanje"
539
 
540
  #. translators: block status (widget title)
541
+ #: ad-inserter.php:8327
542
  msgctxt "block"
543
  msgid "PAUSED"
544
  msgstr "USTAVLJEN"
545
 
546
+ #: ad-inserter.php:8328
547
  msgid "WIDGET DISABLED"
548
  msgstr "GRADNIK ONEMOGOČEN"
549
 
550
+ #: ad-inserter.php:8329
551
  msgid "Unknown block"
552
  msgstr "Neznan blok"
553
 
554
+ #: ad-inserter.php:8338 includes/functions.php:2819 settings.php:1049
555
  msgid "Title"
556
  msgstr "Naslov"
557
 
558
+ #: ad-inserter.php:8360
559
  msgctxt "Widget"
560
  msgid "Sticky"
561
  msgstr "Lepljiv"
562
 
563
+ #: ad-inserter.php:8409
564
  msgid ""
565
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
566
  "Inserter you need to first deactivate Ad Inserter Pro."
569
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
570
  "Inserter Pro."
571
 
572
+ #: ad-inserter.php:8410
573
  msgid ""
574
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
575
  "will clear all settings that are available only in the Pro version "
584
  msgid "PHP error in %s block"
585
  msgstr "PHP napaka v bloku %s"
586
 
587
+ #: class.php:1938
588
  msgid "Counters"
589
  msgstr "Števci"
590
 
591
+ #: class.php:1942
592
  msgid "Content"
593
  msgstr "Vsebina"
594
 
595
+ #: class.php:1947
596
  msgid "Excerpt"
597
  msgstr "Izvleček"
598
 
599
+ #: class.php:1952 strings.php:17
600
  msgid "Before post"
601
  msgstr "Pred prispevkom"
602
 
603
+ #: class.php:1957 strings.php:18
604
  msgid "After post"
605
  msgstr "Za prispevkom"
606
 
607
+ #: class.php:1962 settings.php:1635 settings.php:3748
608
  msgid "Widget"
609
  msgstr "Gradnik"
610
 
611
+ #: class.php:1967 settings.php:3746
612
  msgid "PHP function call"
613
  msgstr "Klic PHP funkcije"
614
 
615
+ #: class.php:2002
616
  msgid "AJAX REQUEST"
617
  msgstr "AJAX ZAHTEVEK"
618
 
619
+ #: class.php:2005
620
  msgid "Ajax request for block in iframe"
621
  msgstr "Ajax zahtevek za blok v iframe-u"
622
 
623
+ #: class.php:2035
624
  msgid "Ajax request url, click to open it in a new tab"
625
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
626
 
627
+ #: class.php:2038
628
  msgid "IN THE LOOP"
629
  msgstr "V ZANKI"
630
 
631
+ #: class.php:2038
632
  msgid "YES"
633
  msgstr "DA"
634
 
635
+ #: class.php:2038
636
  msgid "NO"
637
  msgstr "NE"
638
 
639
+ #: class.php:2074
640
  msgid "BLOCK"
641
  msgstr "BLOK"
642
 
643
+ #: class.php:2074
644
  msgctxt "block or widget"
645
  msgid "INSERTED BUT NOT VISIBLE"
646
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
647
 
648
+ #: class.php:2461 class.php:2520
649
  msgid "ACTIVE GROUPS"
650
  msgstr "AKTIVNE SKUPINE"
651
 
652
  #. translators: %s: list parameters and type
653
+ #: class.php:2695
654
  msgid "parameters='%s' type='%s'"
655
  msgstr "parametri='%s' tip='%s'"
656
 
657
  #. translators: %s: list parameters and type
658
+ #: class.php:2697
659
  msgid "referers='%s' type='%s'"
660
  msgstr "napotitelji='%s' tip='%s'"
661
 
662
  #. translators: %s: list parameters and type
663
+ #: class.php:2758
664
  msgid "countries='%s' type='%s'"
665
  msgstr "države='%s' tip='%s'"
666
 
667
  #. translators: %s: list parameters and type
668
+ #: class.php:2760
669
  msgid "ip addresses='%s' type='%s'"
670
  msgstr "ip naslovi='%s' tip='%s'"
671
 
672
+ #: class.php:3029 strings.php:232
673
  msgid "BEFORE"
674
  msgstr "PRED"
675
 
676
+ #: class.php:3037 strings.php:234
677
  msgid "PREPEND CONTENT"
678
  msgstr "DODAJ PRED VSEBINO"
679
 
680
+ #: class.php:3041 strings.php:235
681
  msgid "APPEND CONTENT"
682
  msgstr "DODAJ ZA VSEBINO"
683
 
684
+ #: class.php:3045 strings.php:236
685
  msgid "REPLACE CONTENT"
686
  msgstr "NADOMESTI VSEBINO"
687
 
688
+ #: class.php:3049 strings.php:237
689
  msgid "REPLACE ELEMENT"
690
  msgstr "NADOMESTI ELEMENT"
691
 
692
+ #: class.php:3060 strings.php:233
693
  msgid "AFTER"
694
  msgstr "ZA"
695
 
696
+ #: class.php:3127
697
  msgctxt "JavaScript"
698
  msgid "script"
699
  msgstr "skripta"
700
 
701
+ #: class.php:3130 settings.php:1904
702
  msgid "for"
703
  msgstr "za"
704
 
705
+ #: class.php:5721 class.php:5773
706
  msgctxt "category name"
707
  msgid "Uncategorized"
708
  msgstr "Nekategorizirano"
709
 
710
+ #: class.php:6266
711
  msgid ""
712
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
713
  "extension for PHP."
751
  msgid "PAGE BLOCKED"
752
  msgstr "STRAN BLOKIRANA"
753
 
754
+ #: includes/functions.php:287
755
  msgid "%d of %d names shown"
756
  msgstr "Prikazanih %d od %d imen"
757
 
758
  #. translators: %s: name filter
759
+ #: includes/functions.php:306
760
  msgid "No name matches filter"
761
  msgstr "Noben podatek ne ustreza filtru"
762
 
763
+ #: includes/functions.php:363 settings.php:174
764
  msgid "Online documentation"
765
  msgstr "Spletna Dokumentacija"
766
 
767
+ #: includes/functions.php:363 settings.php:174
768
  msgid "Documentation"
769
  msgstr "Dokumentacija"
770
 
771
+ #: includes/functions.php:376 settings.php:187
772
  msgid "Blocks"
773
  msgstr "Bloki"
774
 
775
  #. translators: %s: Ad Inserter Pro
776
+ #: includes/functions.php:399
777
  msgid ""
778
  "Import %s settings when saving - if checked, the encoded settings below will "
779
  "be imported for all blocks and settings"
781
  "Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
782
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
783
 
784
+ #: includes/functions.php:399
785
  msgid "Import Settings for"
786
  msgstr "Uvozi Nastavitve za"
787
 
788
+ #: includes/functions.php:403
789
  msgid "Saved settings for"
790
  msgstr "Shranjene nastavitve za"
791
 
792
+ #: includes/functions.php:422
793
  msgid "License Key"
794
  msgstr "Licenčni Ključ"
795
 
796
+ #: includes/functions.php:425
797
  msgid "License Key for"
798
  msgstr "Licenčni Ključ za"
799
 
800
+ #: includes/functions.php:431
801
  msgid "Hide license key"
802
  msgstr "Skrij licenčni ključ"
803
 
804
+ #: includes/functions.php:431
805
  msgid "Hide key"
806
  msgstr "Skrij ključ"
807
 
808
+ #: includes/functions.php:452
809
  msgid "Main content element"
810
  msgstr "Glavni element vsebine"
811
 
812
+ #: includes/functions.php:455
813
  msgid ""
814
  "Main content element (#id or .class) for 'Stick to the content' position. "
815
  "Leave empty unless position is not properly calculated."
817
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
818
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
819
 
820
+ #: includes/functions.php:456 settings.php:1205 settings.php:2524
821
  msgid "Open HTML element selector"
822
  msgstr "Odpri izbirnik HTML elementa"
823
 
824
+ #: includes/functions.php:461
825
  msgid "Lazy loading offset"
826
  msgstr "Zamik za leno nalaganje"
827
 
828
+ #: includes/functions.php:464
829
  msgid "Offset of the block from the visible viewport when it should be loaded"
830
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
831
 
832
+ #: includes/functions.php:475
833
  msgid "Export / Import Block Settings"
834
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
835
 
836
+ #: includes/functions.php:490
837
  msgid "Track impressions and clicks for this block"
838
  msgstr "Sledi prikazom in klikom za ta blok"
839
 
840
+ #: includes/functions.php:490
841
  msgid " - global tracking disabled"
842
  msgstr " - globalno sledenje onemogočeno"
843
 
844
+ #: includes/functions.php:497
845
  msgid "Generate PDF report"
846
  msgstr "Generiraj PDF poročilo"
847
 
848
+ #: includes/functions.php:502
849
  msgid "Open public report"
850
  msgstr "Odpri javno poročilo"
851
 
852
+ #: includes/functions.php:516
853
  msgid "Toggle Ad Blocking Statistics"
854
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
855
 
856
+ #: includes/functions.php:524 includes/functions.php:2616
857
  msgid "Toggle Statistics"
858
  msgstr "Preklopi Statistiko"
859
 
860
  #. translators: %s: Ad Inserter Pro
861
+ #: includes/functions.php:540
862
  msgid "%s license key is not set. Continue?"
863
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
864
 
865
  #. translators: %s: Ad Inserter Pro
866
+ #: includes/functions.php:544
867
  msgid "Invalid %s license key. Continue?"
868
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
869
 
870
  #. translators: %s: Ad Inserter Pro
871
+ #: includes/functions.php:548
872
  msgid "%s license overused. Continue?"
873
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
874
 
875
+ #: includes/functions.php:552 settings.php:1975
876
  msgid "Save Settings"
877
  msgstr "Sharani Nastavitve"
878
 
879
+ #: includes/functions.php:612 includes/preview.php:2106
880
  msgid "Horizontal position"
881
  msgstr "Vodoravni položaj"
882
 
883
+ #: includes/functions.php:635
884
  msgid ""
885
  "Horizontal margin from the content or screen edge, empty means default value "
886
  "from CSS"
888
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
889
  "iz CSS"
890
 
891
+ #: includes/functions.php:643 includes/preview.php:2161
892
  msgid "Vertical position"
893
  msgstr "Navpični položaj"
894
 
895
+ #: includes/functions.php:658
896
  msgid ""
897
  "Vertical margin from the top or bottom screen edge, empty means default "
898
  "value from CSS"
900
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
901
  "iz CSS"
902
 
903
+ #: includes/functions.php:683 includes/preview.php:2212
904
  msgid "Animation"
905
  msgstr "Animacija"
906
 
907
+ #: includes/functions.php:701
908
  msgid "Trigger"
909
  msgstr "Sporžilec"
910
 
911
+ #: includes/functions.php:710
912
  msgid ""
913
  "Trigger value: page scroll in %, page scroll in px or element with selector "
914
  "(#id or .class) becomes visible"
916
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
917
  "selektorjem (#id ali .razred) postane viden"
918
 
919
+ #: includes/functions.php:714
920
  msgid "Offset"
921
  msgstr "Zamik"
922
 
923
+ #: includes/functions.php:714
924
  msgid "Offset of trigger element"
925
  msgstr "Zamik sprožilnega elementa"
926
 
927
+ #: includes/functions.php:718
928
  msgid "Delay"
929
  msgstr "Zakasnitev"
930
 
931
+ #: includes/functions.php:718
932
  msgid "Delay animation after trigger condition"
933
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
934
 
935
+ #: includes/functions.php:722
936
  msgid "Trigger once"
937
  msgstr "Sproži enkrat"
938
 
939
+ #: includes/functions.php:724
940
  msgid "Trigger animation only once"
941
  msgstr "Sproži animacijo samo enkrat"
942
 
943
+ #: includes/functions.php:766
944
  msgid "Tracking is globally disabled"
945
  msgstr "Sledenje je globalno onemogočeno"
946
 
947
+ #: includes/functions.php:770
948
  msgid "Tracking for this block is disabled"
949
  msgstr "Sledenje za ta blok je onemogočeno"
950
 
951
+ #: includes/functions.php:777
952
  msgid "Double click to toggle controls in public reports"
953
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
954
 
955
+ #: includes/functions.php:783 settings.php:3237 settings.php:3273
956
+ #: settings.php:3316 strings.php:212
957
  msgid "Loading..."
958
  msgstr "Nalagam..."
959
 
960
+ #: includes/functions.php:804
961
  msgid ""
962
  "Clear statistics data for the selected range - clear both dates to delete "
963
  "all data for this block"
965
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
966
  "brisanje vseh podatkov za ta blok"
967
 
968
+ #: includes/functions.php:808
969
  msgid "Auto refresh data for the selected range every 60 seconds"
970
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
971
 
972
+ #: includes/functions.php:811 includes/functions.php:4840
973
  msgid "Load data for last month"
974
  msgstr "Naloži podatke za zadnji mesec"
975
 
976
+ #: includes/functions.php:811 includes/functions.php:4840
977
  msgid "Last Month"
978
  msgstr "Zadnji Mesec"
979
 
980
+ #: includes/functions.php:814 includes/functions.php:4843
981
  msgid "Load data for this month"
982
  msgstr "Naloži podatke za ta mesec"
983
 
984
+ #: includes/functions.php:814 includes/functions.php:4843
985
  msgid "This Month"
986
  msgstr "Ta Mesec"
987
 
988
+ #: includes/functions.php:817 includes/functions.php:4846
989
  msgid "Load data for this year"
990
  msgstr "Naloži podatke za to leto"
991
 
992
+ #: includes/functions.php:817 includes/functions.php:4846
993
  msgid "This Year"
994
  msgstr "To Leto"
995
 
996
+ #: includes/functions.php:820 includes/functions.php:4849
997
  msgid "Load data for the last 15 days"
998
  msgstr "Naloži podatke za zadnjih 15 dni"
999
 
1000
+ #: includes/functions.php:823 includes/functions.php:4852
1001
  msgid "Load data for the last 30 days"
1002
  msgstr "Naloži podatke za zadnjih 30 dni"
1003
 
1004
+ #: includes/functions.php:826 includes/functions.php:4855
1005
  msgid "Load data for the last 90 days"
1006
  msgstr "Naloži podatke za zadnjih 90 dni"
1007
 
1008
+ #: includes/functions.php:829 includes/functions.php:4858
1009
  msgid "Load data for the last 180 days"
1010
  msgstr "Naloži podatke za zadnjih 180 dni"
1011
 
1012
+ #: includes/functions.php:832 includes/functions.php:4861
1013
  msgid "Load data for the last 365 days"
1014
  msgstr "Naloži podatke za zadnjih 365 dni"
1015
 
1016
+ #: includes/functions.php:842 includes/functions.php:4871
1017
  msgid "Load data for the selected range"
1018
  msgstr "Naloži podatke za izbrano obdobje"
1019
 
1020
+ #: includes/functions.php:858
1021
  msgid ""
1022
  "Import settings when saving - if checked, the encoded settings below will be "
1023
  "imported for this block"
1025
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1026
  "nastavitve spodaj uvozile za ta blok"
1027
 
1028
+ #: includes/functions.php:858
1029
  msgid "Import settings for block"
1030
  msgstr "Uvozi nastavitve za blok"
1031
 
1032
+ #: includes/functions.php:862
1033
  msgid ""
1034
  "Import block name when saving - if checked and 'Import settings for block' "
1035
  "is also checked, the name from encoded settings below will be imported for "
1039
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1040
  "uvozilo za ta blok"
1041
 
1042
+ #: includes/functions.php:862
1043
  msgid "Import block name"
1044
  msgstr "Uvozi ime bloka"
1045
 
1046
+ #: includes/functions.php:866
1047
  msgid "Saved settings for block"
1048
  msgstr "Shranjene nastavitve za blok"
1049
 
1050
+ #: includes/functions.php:879
1051
  msgid "Export / Import Ad Inserter Pro Settings"
1052
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1053
 
1054
+ #: includes/functions.php:889
1055
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1056
  msgstr ""
1057
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1058
  "bloke?"
1059
 
1060
+ #: includes/functions.php:891
1061
  msgid "Clear All Statistics Data"
1062
  msgstr "Pobriši Vse Podatke o Statistiki"
1063
 
1064
+ #: includes/functions.php:918
1065
  msgid "Toggle country/city editor"
1066
  msgstr "Preklopi urejevalnik držav/mest"
1067
 
1068
+ #: includes/functions.php:924
1069
  msgid "IP Addresses"
1070
  msgstr "IP Naslovi"
1071
 
1072
+ #: includes/functions.php:927
1073
  msgid "Toggle IP address editor"
1074
  msgstr "Preklopi urejevalnik IP nslovov"
1075
 
1076
+ #: includes/functions.php:930
1077
  msgid ""
1078
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1079
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1081
  "Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
1082
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1083
 
1084
+ #: includes/functions.php:934
1085
  msgid "Blacklist IP addresses"
1086
  msgstr "Črni seznam IP naslovov"
1087
 
1088
+ #: includes/functions.php:938
1089
  msgid "Whitelist IP addresses"
1090
  msgstr "Beli seznam IP naslovov"
1091
 
1092
+ #: includes/functions.php:949
1093
  msgid "Countries"
1094
  msgstr "Države"
1095
 
1096
+ #: includes/functions.php:950
1097
  msgid "Cities"
1098
  msgstr "Mesta"
1099
 
1100
+ #: includes/functions.php:954 includes/functions.php:2581
1101
  msgid "Toggle country editor"
1102
  msgstr "Preklopi urejevalnik držav"
1103
 
1104
+ #: includes/functions.php:957
1105
  msgid "Toggle city editor"
1106
  msgstr "Preklopi urejevalnik mest"
1107
 
1108
+ #: includes/functions.php:961 includes/functions.php:2584
1109
  msgid "Comma separated country ISO Alpha-2 codes"
1110
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1111
 
1112
+ #: includes/functions.php:965
1113
  msgid "Blacklist countries"
1114
  msgstr "Črni seznam držav"
1115
 
1116
+ #: includes/functions.php:969
1117
  msgid "Whitelist countries"
1118
  msgstr "Beli seznam držav"
1119
 
1120
+ #: includes/functions.php:1286 includes/functions.php:1525
1121
  msgid "Enter license key"
1122
  msgstr "Vnesite licenčni ključ"
1123
 
1124
  #. translators: %s: Ad Inserter Pro
1125
+ #: includes/functions.php:1292
1126
  msgid ""
1127
  "%s license key is not set. Plugin functionality is limited and updates are "
1128
  "disabled."
1130
  "%s licenčni ključ ni vnešen. Funkcionalnosti vtičnika so omejene in "
1131
  "posodobitve onemogočene."
1132
 
1133
+ #: includes/functions.php:1304 includes/functions.php:1534
1134
  msgid "Check license key"
1135
  msgstr "Preverite licenčni ključ"
1136
 
1137
  #. translators: %s: Ad Inserter Pro
1138
+ #: includes/functions.php:1310
1139
  msgid "Invalid %s license key."
1140
  msgstr "Neveljaven %s licenčni ključ."
1141
 
1142
  #. translators: %s: Ad Inserter Pro
1143
+ #: includes/functions.php:1319
1144
  msgid "%s license expired. Plugin updates are disabled."
1145
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1146
 
1147
+ #: includes/functions.php:1320
1148
  msgid "Renew license"
1149
  msgstr "Obnovite licenco"
1150
 
1151
  #. translators: %s: Ad Inserter Pro
1152
+ #: includes/functions.php:1328
1153
  msgid "%s license overused. Plugin updates are disabled."
1154
  msgstr ""
1155
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1156
 
1157
+ #: includes/functions.php:1329
1158
  msgid "Manage licenses"
1159
  msgstr "Upravljajte z licencami"
1160
 
1161
+ #: includes/functions.php:1329
1162
  msgid "Upgrade license"
1163
  msgstr "Nadgradite licenco"
1164
 
1165
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1166
+ #: includes/functions.php:1527
1167
  msgid ""
1168
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1169
  "limited and updates are disabled."
1172
  "so omejene in posodobitve onemogočene."
1173
 
1174
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1175
+ #: includes/functions.php:1536
1176
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1177
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1178
 
1179
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1180
+ #: includes/functions.php:1552
1181
  msgid ""
1182
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1183
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1187
  "pogrešate. %3$s"
1188
 
1189
  #. translators: 1, 3: HTML tags, 2: percentage
1190
+ #: includes/functions.php:1559
1191
  msgid ""
1192
  "During the license period and 30 days after the license has expired we offer "
1193
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1195
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1196
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1197
 
1198
+ #: includes/functions.php:1586
1199
  msgid "Renew the licence"
1200
  msgstr "Obnovi licenco"
1201
 
1202
+ #: includes/functions.php:1588
1203
  msgid "Update license status"
1204
  msgstr "Posodobi status licence"
1205
 
1206
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1207
+ #: includes/functions.php:1599
1208
  msgid ""
1209
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1210
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1214
  "Nadgradite licenco %7$s"
1215
 
1216
  #. Translators: %s: HTML tag
1217
+ #: includes/functions.php:1621
1218
  msgid "Warning: %s MaxMind IP geolocation database not found."
1219
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1220
 
1221
+ #: includes/functions.php:2159
1222
  msgid "Geolocation"
1223
  msgstr "Geolokacija"
1224
 
1225
+ #: includes/functions.php:2163
1226
  msgid "Exceptions"
1227
  msgstr "Izjeme"
1228
 
1229
+ #: includes/functions.php:2168
1230
  msgid "Multisite"
1231
  msgstr "Multisite"
1232
 
1233
+ #: includes/functions.php:2173
1234
  msgid "Tracking"
1235
  msgstr "Sledenje"
1236
 
1237
  #. translators: %d: days, hours, minutes
1238
+ #: includes/functions.php:2204
1239
  msgid "Scheduled in %d days %d hours %d minutes"
1240
  msgstr "Planirano v %d dneh %d urah %d minutah"
1241
 
1242
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1243
  #. HTML code for long dash separator
1244
+ #: includes/functions.php:2213
1245
  msgid "Active %s expires in %d days %d hours %d minutes"
1246
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1247
 
1248
+ #: includes/functions.php:2217
1249
  msgid "Expired"
1250
  msgstr "Poteklo"
1251
 
1252
+ #: includes/functions.php:2225 settings.php:1288 settings.php:1303
1253
+ #: settings.php:1890
1254
  msgid "and"
1255
  msgstr "in"
1256
 
1257
+ #: includes/functions.php:2228
1258
  msgid "fallback"
1259
  msgstr "rezerva"
1260
 
1261
+ #: includes/functions.php:2229
1262
  msgid "Block to be used when scheduling expires"
1263
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1264
 
1265
+ #: includes/functions.php:2254
1266
  msgid "Load in iframe"
1267
  msgstr "Naloži v iframe-u"
1268
 
1269
+ #: includes/functions.php:2258 includes/placeholders.php:389
1270
  msgid "Width"
1271
  msgstr "Širina"
1272
 
1273
+ #: includes/functions.php:2259
1274
  msgid "iframe width, empty means full width (100%)"
1275
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1276
 
1277
+ #: includes/functions.php:2265 includes/placeholders.php:384
1278
  msgid "Height"
1279
  msgstr "Višina"
1280
 
1281
+ #: includes/functions.php:2266
1282
  msgid "iframe height, empty means adjust it to iframe content height"
1283
  msgstr ""
1284
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1285
 
1286
+ #: includes/functions.php:2273
1287
  msgid "Ad label in iframe"
1288
  msgstr "Oznaka oglasa v iframe-u"
1289
 
1290
+ #: includes/functions.php:2278
1291
  msgid "Preview iframe code"
1292
  msgstr "Predpreglej kodo iframe"
1293
 
1294
+ #: includes/functions.php:2278 includes/preview.php:1974 settings.php:965
1295
+ #: settings.php:2586
1296
  msgid "Preview"
1297
  msgstr "Predogled"
1298
 
1299
+ #: includes/functions.php:2292 includes/functions.php:3899
1300
+ #: includes/functions.php:3962 settings.php:2028
1301
  msgid "Ad Blocking"
1302
  msgstr "Blokiranje Oglasov"
1303
 
1304
  #. translators: 1, 2 and 3, 4: HTML tags
1305
+ #: includes/functions.php:2301
1306
  msgid ""
1307
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1308
  "for tracking!"
1312
 
1313
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1314
  #. header
1315
+ #: includes/functions.php:2310
1316
  msgid ""
1317
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1318
  "enabled and automatic insertion %6$s!"
1320
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1321
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1322
 
1323
+ #: includes/functions.php:2328
1324
  msgid "When ad blocking is detected"
1325
  msgstr "Ko je blokiranje oglasov zaznano"
1326
 
1327
+ #: includes/functions.php:2337
1328
  msgid "replacement"
1329
  msgstr "nadomestek"
1330
 
1331
+ #: includes/functions.php:2338
1332
  msgid "Block to be shown when ad blocking is detected"
1333
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1334
 
1335
+ #: includes/functions.php:2339
1336
  msgctxt "replacement"
1337
  msgid "None"
1338
  msgstr "Noben"
1339
 
1340
+ #: includes/functions.php:2356
1341
  msgid "Close button"
1342
  msgstr "Gumb Zapri"
1343
 
1344
+ #: includes/functions.php:2408
1345
+ msgid "Auto close after"
1346
+ msgstr "Ssamodejno zapri po"
1347
+
1348
+ #: includes/functions.php:2409
1349
+ msgid ""
1350
+ "Time in seconds in which the ad will automatically close. Leave empty to "
1351
+ "disable auto closing."
1352
+ msgstr ""
1353
+ "Čas v sekundah po katerem se bo oglas samodejno zaprl. Pustite prazno za "
1354
+ "izključitev samodejnega zapiranja."
1355
+
1356
+ #. Translators: Don't show for x days
1357
+ #: includes/functions.php:2414
1358
+ msgid "Don't show for"
1359
+ msgstr "Ne prikaži"
1360
+
1361
+ #: includes/functions.php:2415
1362
+ msgid ""
1363
+ "Time in days in which closed ad will not be shown again. Use decimal value "
1364
+ "for shorter time period or leave empty to show it again on page reload."
1365
+ msgstr ""
1366
+ "Čas v dnevih v katerem se zaprti oglas ne bo prikazal. Uporabite decimalno "
1367
+ "vrednost za krajše časovno obdobje ali pustite prazno, da se spet prikaže "
1368
+ "pri ponovnem nalaganju strani."
1369
+
1370
+ #. Translators: Don't show for x days
1371
+ #: includes/functions.php:2417 strings.php:194 strings.php:195 strings.php:196
1372
+ #: strings.php:197 strings.php:198 strings.php:199
1373
+ msgid "day"
1374
+ msgid_plural "days"
1375
+ msgstr[0] "dan"
1376
+ msgstr[1] "dni"
1377
+ msgstr[2] "dni"
1378
+ msgstr[3] "dni"
1379
+
1380
+ #. Translators: Delay showing for x pageviews
1381
+ #: includes/functions.php:2435
1382
+ msgid "Delay showing for"
1383
+ msgstr "Zakasni prikaz za"
1384
+
1385
+ #: includes/functions.php:2436
1386
+ msgid ""
1387
+ "Number of pageviews before the code is inserted (and ad displayed). Leave "
1388
+ "empty to insert the code for the first pageview."
1389
+ msgstr ""
1390
+ "Število ogledov strani preden je koda vstavljena (in oglas prikazan). "
1391
+ "Pustite prazno za vstavljanje kode pri prvem ogledu strani.."
1392
+
1393
+ #. Translators: Delay showing for x pageviews
1394
+ #. Translators: Show every x pageviews
1395
+ #: includes/functions.php:2438 includes/functions.php:2445
1396
+ msgid "pageview"
1397
+ msgid_plural "pageviews"
1398
+ msgstr[0] "ogled strani"
1399
+ msgstr[1] "ogleda strani"
1400
+ msgstr[2] "oglede strani"
1401
+ msgstr[3] "ogledov strani"
1402
+
1403
+ #. Translators: Show every x pageviews
1404
+ #: includes/functions.php:2442
1405
+ msgid "Show every"
1406
+ msgid_plural "Show every"
1407
+ msgstr[0] "Prikaži vsak"
1408
+ msgstr[1] "Prikaži vsaka"
1409
+ msgstr[2] "Prikaži vsake"
1410
+ msgstr[3] "Prikaži vsakih"
1411
+
1412
+ #: includes/functions.php:2443
1413
+ msgid ""
1414
+ "Number of pageviews to insert the code again. Leave empty to insert the code "
1415
+ "for every pageview."
1416
+ msgstr ""
1417
+ "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1418
+ "vstavljanje kode pri vsakem ogledu strani."
1419
+
1420
+ #: includes/functions.php:2462
1421
  msgid "Lazy loading"
1422
  msgstr "Leno nalaganje"
1423
 
1424
  #. Translators: %s MaxMind
1425
+ #: includes/functions.php:2516
1426
  msgid "This product includes GeoLite2 data created by %s"
1427
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1428
 
1429
+ #: includes/functions.php:2527
1430
  msgid "IP geolocation database"
1431
  msgstr "Podatkovna baza za IP geolokacijo"
1432
 
1433
+ #: includes/functions.php:2530
1434
  msgid "Select IP geolocation database."
1435
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1436
 
1437
+ #: includes/functions.php:2541
1438
  msgid "Automatic database updates"
1439
  msgstr "Samodejna posodobitev podatkovne baze"
1440
 
1441
+ #: includes/functions.php:2544
1442
  msgid ""
1443
  "Automatically download and update free GeoLite2 IP geolocation database by "
1444
  "MaxMind"
1446
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1447
  "podatkovno bazo MaxMind"
1448
 
1449
+ #: includes/functions.php:2552
1450
  msgid "Database"
1451
  msgstr "Podatkovna baza"
1452
 
1453
+ #: includes/functions.php:2555
1454
  msgid ""
1455
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1456
  "file"
1459
  "podatkovne baze"
1460
 
1461
  #. translators: %d: group number
1462
+ #: includes/functions.php:2573
1463
  msgid "Group %d"
1464
  msgstr "Skupina %d"
1465
 
1466
+ #: includes/functions.php:2579
1467
  msgid "countries"
1468
  msgstr "države"
1469
 
1470
+ #: includes/functions.php:2624
1471
  msgid ""
1472
  "Enable impression and click tracking. You also need to enable tracking for "
1473
  "each block you want to track."
1475
  "Omogočite sledenje prikazom in klikom. Omogočiti morate tudi sledenje za "
1476
  "vsak blok, ki bi ga radi sledili."
1477
 
1478
+ #: includes/functions.php:2631
1479
  msgid "Generate report"
1480
  msgstr "Generiraj poročilo"
1481
 
1482
+ #: includes/functions.php:2639
1483
  msgid "Impression and Click Tracking"
1484
  msgstr "Sledenje Prikazov in Klikov"
1485
 
1486
+ #: includes/functions.php:2640 settings.php:2474
1487
  msgctxt "ad blocking detection"
1488
  msgid "NOT ENABLED"
1489
  msgstr "NI OMOGOČENO"
1490
 
1491
+ #: includes/functions.php:2656
1492
  msgid "Internal"
1493
  msgstr "Notranje"
1494
 
1495
+ #: includes/functions.php:2660
1496
  msgid "Track impressions and clicks with internal tracking and statistics"
1497
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1498
 
1499
+ #: includes/functions.php:2665
1500
  msgid "External"
1501
  msgstr "Zunanje"
1502
 
1503
+ #: includes/functions.php:2669
1504
  msgid ""
1505
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1506
  "code installed)"
1508
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1509
  "kodo za sledenje)"
1510
 
1511
+ #: includes/functions.php:2674
1512
  msgid "Track Pageviews"
1513
  msgstr "Sledi Ogledom Strani"
1514
 
1515
+ #: includes/functions.php:2680
1516
  msgid "Track Pageviews by Device (as configured for viewports)"
1517
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1518
 
1519
+ #: includes/functions.php:2690
1520
  msgid "Track for Logged in Users"
1521
  msgstr "Sledi za Prijavljene Upor."
1522
 
1523
+ #: includes/functions.php:2696
1524
  msgid "Track impressions and clicks from logged in users"
1525
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1526
 
1527
+ #: includes/functions.php:2706
1528
  msgid "Click Detection"
1529
  msgstr "Zaznavanje klikov"
1530
 
1531
+ #: includes/functions.php:2712
1532
  msgid ""
1533
  "Standard method detects clicks only on banners with links, Advanced method "
1534
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1536
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1537
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1538
 
1539
+ #: includes/functions.php:2738
1540
  msgid "Report header image"
1541
  msgstr "Slika v glavi poročila"
1542
 
1543
+ #: includes/functions.php:2741
1544
  msgid ""
1545
  "Image or logo to be displayed in the header of the statistins report. "
1546
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1550
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1551
  "ponastavitev na privzeto sliko."
1552
 
1553
+ #: includes/functions.php:2742 strings.php:224
1554
  msgid "Select or upload header image"
1555
  msgstr "Izberi ali naloži sliko glave"
1556
 
1557
+ #: includes/functions.php:2747
1558
  msgid "Report header title"
1559
  msgstr "Naslov v glavi poročila"
1560
 
1561
+ #: includes/functions.php:2750
1562
  msgid ""
1563
  "Title to be displayed in the header of the statistics report. Text or HTML "
1564
  "code, clear to reset to default text."
1566
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1567
  "pobrišite za ponastavitev na privzeto besedilo."
1568
 
1569
+ #: includes/functions.php:2755
1570
  msgid "Report header description"
1571
  msgstr "Opis v glavi poročila"
1572
 
1573
+ #: includes/functions.php:2758
1574
  msgid ""
1575
  "Description to be displayed in the header of the statistics report. Text or "
1576
  "HTML code, clear to reset to default text."
1578
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1579
  "pobrišite za ponastavitev na privzeto besedilo."
1580
 
1581
+ #: includes/functions.php:2763
1582
  msgid "Report footer"
1583
  msgstr "Noga poročila"
1584
 
1585
+ #: includes/functions.php:2766
1586
  msgid ""
1587
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1588
  "to default text."
1590
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1591
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1592
 
1593
+ #: includes/functions.php:2771
1594
  msgid "Public report key"
1595
  msgstr "Ključ za javno poročilo"
1596
 
1597
+ #: includes/functions.php:2774
1598
  msgid "String to generate unique report IDs. Clear to reset to default value."
1599
  msgstr ""
1600
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1601
  "privzeto vrednost."
1602
 
1603
+ #: includes/functions.php:2806
1604
  msgid "Are you sure you want to clear all exceptions for block"
1605
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1606
 
1607
+ #: includes/functions.php:2807 settings.php:1052
1608
  msgid "Clear all exceptions for block"
1609
  msgstr "Pobriši vse izjeme za blok"
1610
 
1611
+ #: includes/functions.php:2814
1612
  msgid "Are you sure you want to clear all exceptions?"
1613
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1614
 
1615
+ #: includes/functions.php:2814
1616
  msgid "Clear all exceptions for all blocks"
1617
  msgstr "Pobriši vse izjeme za vse bloke"
1618
 
1619
+ #: includes/functions.php:2819 settings.php:3475 settings.php:3818
1620
  msgid "Type"
1621
  msgstr "Vrsta"
1622
 
1623
+ #: includes/functions.php:2837
1624
  msgid "View"
1625
  msgstr "Poglej"
1626
 
1627
+ #: includes/functions.php:2838 includes/placeholders.php:353
1628
+ #: includes/preview.php:2281 settings.php:1191
1629
  msgid "Edit"
1630
  msgstr "Uredi"
1631
 
1632
+ #: includes/functions.php:2868
1633
  msgid "Are you sure you want to clear all exceptions for"
1634
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1635
 
1636
+ #: includes/functions.php:2869
1637
  msgid "Clear all exceptions for"
1638
  msgstr "Pobriši vse izjeme za"
1639
 
1640
+ #: includes/functions.php:2882
1641
  msgid "No exceptions"
1642
  msgstr "Brez izjem"
1643
 
1644
  #. translators: %s: Ad Inserter Pro
1645
+ #: includes/functions.php:2893
1646
  msgid "%s options for network blogs"
1647
  msgstr "%s izbire za omrežne bloge"
1648
 
1649
  #. translators: %s: Ad Inserter Pro
1650
+ #: includes/functions.php:2898
1651
  msgid "Enable %s widgets for sub-sites"
1652
  msgstr "Omogoči %s gradnik za pod-spletišča"
1653
 
1654
+ #: includes/functions.php:2898
1655
  msgid "Widgets"
1656
  msgstr "Gradniki"
1657
 
1658
+ #: includes/functions.php:2903
1659
  msgid "Enable PHP code processing for sub-sites"
1660
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1661
 
1662
+ #: includes/functions.php:2903
1663
  msgid "PHP Processing"
1664
  msgstr "PHP Procesiranje"
1665
 
1666
  #. translators: %s: Ad Inserter Pro
1667
+ #: includes/functions.php:2908
1668
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1669
  msgstr ""
1670
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
1671
 
1672
+ #: includes/functions.php:2908
1673
  msgid "Post/Page exceptions"
1674
  msgstr "Izjeme prispevkov/strani"
1675
 
1676
  #. translators: %s: Ad Inserter Pro
1677
+ #: includes/functions.php:2913
1678
  msgid "Enable %s settings page for sub-sites"
1679
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
1680
 
1681
+ #: includes/functions.php:2913
1682
  msgid "Settings page"
1683
  msgstr "Stran z nastavitvami"
1684
 
1685
  #. translators: %s: Ad Inserter Pro
1686
+ #: includes/functions.php:2918
1687
  msgid "Enable %s settings of main site to be used for all blogs"
1688
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
1689
 
1690
+ #: includes/functions.php:2918
1691
  msgid "Main site settings used for all blogs"
1692
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1693
 
1694
+ #: includes/functions.php:2929 settings.php:2473
1695
  msgid "Ad Blocking Detection"
1696
  msgstr "Zaznavanje Blokiranja Oglasov"
1697
 
1698
+ #: includes/functions.php:2935
1699
  msgid ""
1700
  "Standard method is reliable but should be used only if Advanced method does "
1701
  "not work. Advanced method recreates files used for detection with random "
1707
  "imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
1708
  "dostopna"
1709
 
1710
+ #: includes/functions.php:3562 includes/functions.php:3652
1711
+ #: includes/functions.php:3672
1712
  msgid "AD BLOCKING"
1713
  msgstr "BLOKIRANJE OGLASOV"
1714
 
1715
+ #: includes/functions.php:3563 includes/functions.php:3603
1716
+ #: includes/functions.php:3646 includes/functions.php:3673
1717
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1718
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
1719
 
1720
+ #: includes/functions.php:3566 includes/functions.php:3645
1721
+ #: includes/functions.php:3679
1722
  msgid "NO AD BLOCKING"
1723
  msgstr "NI BLOKIRANJA OGLASOV"
1724
 
1725
+ #: includes/functions.php:3602 includes/functions.php:3609
1726
  msgid "AD BLOCKING REPLACEMENT"
1727
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
1728
 
1729
+ #: includes/functions.php:3752 includes/functions.php:3961
1730
  msgid "Pageviews"
1731
  msgstr "Ogledi strani"
1732
 
1733
+ #: includes/functions.php:3898
1734
  msgctxt "Version"
1735
  msgid "Unknown"
1736
  msgstr "Neznana"
1737
 
1738
+ #: includes/functions.php:3898
1739
  msgctxt "Times"
1740
  msgid "DISPLAYED"
1741
  msgstr "PRIKAZANO"
1742
 
1743
+ #: includes/functions.php:3898
1744
  msgid "No version"
1745
  msgstr "Brez različice"
1746
 
1747
+ #: includes/functions.php:3899
1748
  msgctxt "Times"
1749
  msgid "BLOCKED"
1750
  msgstr "BLOKIRANO"
1751
 
1752
+ #: includes/functions.php:3961
1753
  msgid "Impressions"
1754
  msgstr "Prikazi"
1755
 
1756
+ #: includes/functions.php:3962 includes/functions.php:3963
1757
+ #: includes/functions.php:4018
1758
  msgid "Clicks"
1759
  msgstr "Kliki"
1760
 
1761
+ #: includes/functions.php:3963
1762
  msgid "events"
1763
  msgstr "dogodki"
1764
 
1765
+ #: includes/functions.php:3964
1766
  msgid "Ad Blocking Share"
1767
  msgstr "Delež blokiranja oglasov"
1768
 
1769
  #. translators: CTR as Click Through Rate
1770
+ #: includes/functions.php:3964 includes/functions.php:4024
1771
  msgid "CTR"
1772
  msgstr "CTR"
1773
 
1774
+ #: includes/functions.php:4106
1775
  msgid "pageviews"
1776
  msgid_plural "pageviews"
1777
  msgstr[0] "ogled strani"
1778
  msgstr[1] "ogleda strani"
1779
+ msgstr[2] "oglede strani"
1780
  msgstr[3] "ogledov strani"
1781
 
1782
+ #: includes/functions.php:4106
1783
  msgid "impressions"
1784
  msgid_plural "impressions"
1785
  msgstr[0] "prikaz"
1787
  msgstr[2] "prikazi"
1788
  msgstr[3] "prikazov"
1789
 
1790
+ #: includes/functions.php:4110
1791
  msgid "event"
1792
  msgid_plural "events"
1793
  msgstr[0] "dogodek"
1795
  msgstr[2] "dogodki"
1796
  msgstr[3] "dogodkov"
1797
 
1798
+ #: includes/functions.php:4110
1799
  msgid "click"
1800
  msgid_plural "clicks"
1801
  msgstr[0] "klik"
1803
  msgstr[2] "kliki"
1804
  msgstr[3] "klikov"
1805
 
1806
+ #: includes/functions.php:4205
1807
  msgctxt "Pageviews / Impressions"
1808
  msgid "Average"
1809
  msgstr "Povprečni"
1810
 
1811
+ #: includes/functions.php:4226
1812
  msgctxt "Ad Blocking / Clicks"
1813
  msgid "Average"
1814
  msgstr "Povprečno"
1815
 
1816
+ #: includes/functions.php:4250
1817
  msgctxt "Ad Blocking Share / CTR"
1818
  msgid "Average"
1819
  msgstr "Povprečni"
1820
 
1821
  #. Translators: %s: Ad Inserter Pro
1822
+ #: includes/functions.php:4432 includes/functions.php:4524
1823
+ #: includes/functions.php:4785 strings.php:179
1824
  msgid "%s Report"
1825
  msgstr "%s Poročilo"
1826
 
1827
+ #: includes/functions.php:4691
1828
  msgid "for last month"
1829
  msgstr "za zadnji mesec"
1830
 
1831
+ #: includes/functions.php:4696
1832
  msgid "for this month"
1833
  msgstr "za ta mesec"
1834
 
1835
+ #: includes/functions.php:4701
1836
  msgid "for this year"
1837
  msgstr "za to leto"
1838
 
1839
+ #: includes/functions.php:4706
1840
  msgid "for the last 15 days"
1841
  msgstr "za zadnjih 15 dni"
1842
 
1843
+ #: includes/functions.php:4711
1844
  msgid "for the last 30 days"
1845
  msgstr "za zadnjih 30 dni"
1846
 
1847
+ #: includes/functions.php:4716
1848
  msgid "for the last 90 days"
1849
  msgstr "za zadnjih 90 dni"
1850
 
1851
+ #: includes/functions.php:4721
1852
  msgid "for the last 180 days"
1853
  msgstr "za zadnjih 180 dni"
1854
 
1855
+ #: includes/functions.php:4726
1856
  msgid "for the last 365 days"
1857
  msgstr "za zadnjih 365 dni"
1858
 
1880
  msgid "Placeholder"
1881
  msgstr "Polnilo"
1882
 
1883
+ #: includes/placeholders.php:363 settings.php:812 settings.php:3819
1884
  msgid "Size"
1885
  msgstr "Velikost"
1886
 
2013
  msgid "Ad Blocking Detected Message Preview"
2014
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2015
 
2016
+ #: includes/preview-adb.php:348 settings.php:2599
2017
  msgid "Message CSS"
2018
  msgstr "CSS sporočila"
2019
 
2020
+ #: includes/preview-adb.php:353 settings.php:2607
2021
  msgid "Overlay CSS"
2022
  msgstr "CSS prevleke"
2023
 
2057
  msgid "background"
2058
  msgstr "ozadje"
2059
 
2060
+ #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1152
2061
+ #: settings.php:3745
2062
  msgid "Alignment"
2063
  msgstr "Poravnava"
2064
 
2334
  msgid "General Settings"
2335
  msgstr "Splošne Nastavitve"
2336
 
2337
+ #: settings.php:596 settings.php:2326 settings.php:2393 settings.php:2579
2338
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2339
  msgstr ""
2340
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2341
 
2342
+ #: settings.php:603
2343
  msgid "Toggle tools"
2344
  msgstr "Preklopi orodja"
2345
 
2346
+ #: settings.php:611
2347
  msgid "Process PHP code in block"
2348
  msgstr "Procesiraj PHP kodo v bloku"
2349
 
2350
+ #: settings.php:618
2351
  msgid "Disable insertion of this block"
2352
  msgstr "Onemogoči vstavljanje tega bloka"
2353
 
2354
+ #: settings.php:630
2355
  msgid "Toggle code generator"
2356
  msgstr "Preklopi generator kode"
2357
 
2358
+ #: settings.php:634
2359
  msgid "Toggle rotation editor"
2360
  msgstr "Preklopi urejevalnik rotacije"
2361
 
2362
+ #: settings.php:638
2363
  msgid "Open visual HTML editor"
2364
  msgstr "Odpri vizualni HTML urejevalnik"
2365
 
2366
+ #: settings.php:648 settings.php:1989
2367
  msgid "Show AdSense ad units"
2368
  msgstr "Pokaži oglasne enote AdSense"
2369
 
2370
+ #: settings.php:657
2371
  msgid "Clear block"
2372
  msgstr "Počisti blok"
2373
 
2374
+ #: settings.php:662 settings.php:3713
2375
  msgid "Copy block"
2376
  msgstr "Kopiraj blok"
2377
 
2378
+ #: settings.php:666
2379
  msgid "Paste name"
2380
  msgstr "Prilepi ime"
2381
 
2382
+ #: settings.php:670
2383
  msgid "Paste code"
2384
  msgstr "Prilepi kodo"
2385
 
2386
+ #: settings.php:674
2387
  msgid "Paste settings"
2388
  msgstr "Prilepi nastavitve"
2389
 
2390
+ #: settings.php:678
2391
  msgid "Paste block (name, code and settings)"
2392
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
2393
 
2394
+ #: settings.php:697
2395
  msgid "Rotation groups"
2396
  msgstr "Skupine za rotacijo"
2397
 
2398
+ #: settings.php:701
2399
  msgid "Remove option"
2400
  msgstr "Odstrani različico"
2401
 
2402
+ #: settings.php:705
2403
  msgid "Add option"
2404
  msgstr "Dodaj različico"
2405
 
2406
+ #: settings.php:720
2407
  msgid "Import code"
2408
  msgstr "Uvozi kodo"
2409
 
2410
+ #: settings.php:724
2411
  msgid "Generate code"
2412
  msgstr "Generiraj kodo"
2413
 
2414
+ #: settings.php:729
2415
  msgid "Banner"
2416
  msgstr "Pasica"
2417
 
2418
+ #: settings.php:740
2419
  msgid "Image"
2420
  msgstr "Slika"
2421
 
2422
+ #: settings.php:748
2423
  msgid "Link"
2424
  msgstr "Povezava"
2425
 
2426
+ #: settings.php:759
2427
  msgid "Open link in a new tab"
2428
  msgstr "Odpri povezavo v novem zavihku"
2429
 
2430
+ #: settings.php:760
2431
  msgid "Select Image"
2432
  msgstr "Izberi Sliko"
2433
 
2434
+ #: settings.php:761
2435
  msgid "Select Placeholder"
2436
  msgstr "Izberi Polnilo"
2437
 
2438
+ #: settings.php:773
2439
  msgid "Comment"
2440
  msgstr "Komentar"
2441
 
2442
+ #: settings.php:782
2443
  msgctxt "AdSense"
2444
  msgid "Publisher ID"
2445
  msgstr "ID založnika"
2446
 
2447
+ #: settings.php:791
2448
  msgctxt "AdSense"
2449
  msgid "Ad Slot ID"
2450
  msgstr "ID mesta"
2451
 
2452
+ #: settings.php:800
2453
  msgid "Ad Type"
2454
  msgstr "Vrsta"
2455
 
2456
+ #: settings.php:824
2457
  msgid "AMP Ad"
2458
  msgstr "AMP Oglas"
2459
 
2460
+ #: settings.php:841
2461
  msgid "Show ad units from your AdSense account"
2462
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
2463
 
2464
+ #: settings.php:841
2465
  msgid "AdSense ad units"
2466
  msgstr "Oglasne enote AdSense"
2467
 
2468
+ #: settings.php:858
2469
  msgctxt "AdSense"
2470
  msgid "Layout"
2471
  msgstr "Postavitev"
2472
 
2473
+ #: settings.php:867
2474
  msgctxt "AdSense"
2475
  msgid "Layout Key"
2476
  msgstr "Ključ postavitve"
2477
 
2478
+ #: settings.php:877
2479
  msgid "Full width"
2480
  msgstr "Celotna širina"
2481
 
2482
+ #: settings.php:879
2483
  msgctxt "Full width"
2484
  msgid "Enabled"
2485
  msgstr "Omogočena"
2486
 
2487
+ #: settings.php:880
2488
  msgctxt "Full width"
2489
  msgid "Disabled"
2490
  msgstr "Onemogočena"
2491
 
2492
+ #: settings.php:961
2493
  msgid ""
2494
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2495
  "Cookie or Referer (domain)"
2497
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
2498
  "parametrov, Piškotkov ali napotiteljev (domen)"
2499
 
2500
+ #: settings.php:961
2501
  msgid "Lists"
2502
  msgstr "Seznami"
2503
 
2504
+ #: settings.php:962
2505
  msgid "Widget, Shortcode and PHP function call"
2506
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
2507
 
2508
+ #: settings.php:962
2509
  msgid "Manual"
2510
  msgstr "Ročno"
2511
 
2512
+ #: settings.php:963
2513
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2514
  msgstr ""
2515
  "Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
2516
 
2517
+ #: settings.php:963
2518
  msgid "Devices"
2519
  msgstr "Naprave"
2520
 
2521
+ #: settings.php:964
2522
  msgid ""
2523
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2524
  "feeds), Filter, Scheduling, General tag"
2526
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
2527
  "RSS), Filter, Urnik, Splošna oznaka"
2528
 
2529
+ #: settings.php:964
2530
  msgid "Misc"
2531
  msgstr "Razno"
2532
 
2533
+ #: settings.php:965
2534
  msgid "Preview code and alignment"
2535
  msgstr "Predogled kode in poravnave"
2536
 
2537
+ #: settings.php:968 settings.php:1973
2538
  msgid ""
2539
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2540
  "editor is active before saving settings."
2542
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
2543
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
2544
 
2545
+ #: settings.php:970
2546
  msgid "Save All Settings"
2547
  msgstr "Sharani Vse Nastavitve"
2548
 
2549
+ #: settings.php:981
2550
  msgid "Enable insertion on posts"
2551
  msgstr "Omogoči vstavljanje na prispevkih"
2552
 
2553
+ #: settings.php:983 settings.php:989
2554
  msgid ""
2555
  "Individual post exceptions (if enabled here) can be configured in post "
2556
  "editor. Leave blank for no individual post exceptions."
2558
  "Posamezne izjeme za prispevke (če so omogočene tukaj) se lahko nastavijo v "
2559
  "urejevalniku prispevka. Pustite prazno za prispevke brez posameznih izjem."
2560
 
2561
+ #: settings.php:989 settings.php:3124
2562
  msgid "Posts"
2563
  msgstr "Prispevki"
2564
 
2565
+ #: settings.php:993 settings.php:994
2566
  msgid ""
2567
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2568
  "page or theme homepage (available positions may depend on hooks used by the "
2572
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2573
  "lahko odvisni od ročic, ki jih tema uporablja)"
2574
 
2575
+ #: settings.php:994 settings.php:3126
2576
  msgid "Homepage"
2577
  msgstr "Domača stran"
2578
 
2579
+ #: settings.php:998 settings.php:999
2580
  msgid "Enable insertion on category blog pages (including sub-pages)"
2581
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2582
 
2583
+ #: settings.php:999 settings.php:3127
2584
  msgid "Category pages"
2585
  msgstr "Strani kategorij"
2586
 
2587
+ #: settings.php:1002
2588
  msgid "Check theme for available positions for automatic insertion"
2589
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2590
 
2591
+ #: settings.php:1009
2592
  msgid "Enable insertion on static pages"
2593
  msgstr "Omogoči vstavljanje na statičnih straneh"
2594
 
2595
+ #: settings.php:1011 settings.php:1017
2596
  msgid ""
2597
  "Individual static page exceptions (if enabled here) can be configured in "
2598
  "page editor. Leave blank for no individual page exceptions."
2601
  "nastavijo v urejevalniku strani. Pustite prazno za strani brez posameznih "
2602
  "izjem."
2603
 
2604
+ #: settings.php:1017 settings.php:3125
2605
  msgid "Static pages"
2606
  msgstr "Statične strani"
2607
 
2608
+ #: settings.php:1021 settings.php:1022
2609
  msgid "Enable insertion on search blog pages"
2610
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2611
 
2612
+ #: settings.php:1022 settings.php:3129
2613
  msgid "Search pages"
2614
  msgstr "Iskalne strani"
2615
 
2616
+ #: settings.php:1026 settings.php:1027
2617
  msgid "Enable insertion on tag or archive blog pages"
2618
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
2619
 
2620
+ #: settings.php:1027
2621
  msgid "Tag / Archive pages"
2622
  msgstr "Strani oznak / arhiva"
2623
 
2624
+ #: settings.php:1033
2625
  msgid "Toggle list of individual exceptions"
2626
  msgstr "Preklopi seznam posameznih izjem"
2627
 
2628
+ #: settings.php:1049
2629
  msgctxt "post"
2630
  msgid "Type"
2631
  msgstr "Vrsta"
2632
 
2633
  #. translators: %d: block number
2634
+ #: settings.php:1051
2635
  msgid "Are you sure you want to clear all exceptions for block %d?"
2636
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
2637
 
2638
+ #: settings.php:1083 settings.php:1231 settings.php:1765
2639
  msgid "Insertion"
2640
  msgstr "Vstavljanje"
2641
 
2642
+ #: settings.php:1121
2643
  msgid ""
2644
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2645
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
2655
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
2656
  "število pomeni štetje z nasprotne smeri"
2657
 
2658
+ #: settings.php:1122
2659
  msgid ""
2660
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2661
  "means every N images, empty means all images, 0 means random image, value "
2670
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
2671
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
2672
 
2673
+ #: settings.php:1135
2674
  msgid ""
2675
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2676
  "numbers, %N means every N excerpts, empty means all excerpts"
2679
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
2680
  "izvlečki"
2681
 
2682
+ #: settings.php:1136
2683
  msgid ""
2684
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2685
  "numbers, %N means every N posts, empty means all posts"
2688
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
2689
  "prispevki"
2690
 
2691
+ #: settings.php:1137
2692
  msgid ""
2693
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2694
  "numbers, %N means every N comments, empty means all comments"
2697
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
2698
  "vsi komentarji"
2699
 
2700
+ #: settings.php:1144
2701
  msgid "Toggle paragraph counting settings"
2702
  msgstr "Preklopi nastavitve za štetje odstavkov"
2703
 
2704
+ #: settings.php:1145
2705
  msgid "Toggle paragraph clearance settings"
2706
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
2707
 
2708
+ #: settings.php:1148
2709
  msgid "Toggle insertion filter settings"
2710
  msgstr "Preklopi nastavitve filtra vstavljanja"
2711
 
2712
+ #: settings.php:1166
2713
  msgid "Toggle insertion and alignment icons"
2714
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
2715
 
2716
+ #: settings.php:1180
2717
  msgid "Custom CSS code for the wrapping div"
2718
  msgstr "CSS koda po meri za div za ovijanje"
2719
 
2720
+ #: settings.php:1183 settings.php:1184 settings.php:1185 settings.php:1186
2721
+ #: settings.php:1187 settings.php:1188
2722
  msgid "CSS code for the wrapping div, click to edit"
2723
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
2724
 
2725
+ #: settings.php:1201
2726
  msgid "HTML element"
2727
  msgstr "HTML element"
2728
 
2729
+ #: settings.php:1214
2730
  msgid "HTML element selector or comma separated list of selectors"
2731
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
2732
 
2733
+ #: settings.php:1220 settings.php:2484
2734
  msgid "Action"
2735
  msgstr "Akcija"
2736
 
2737
+ #: settings.php:1232
2738
  msgid ""
2739
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2740
  "Server-side insertion inserts block when the page is generated but needs "
2744
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
2745
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
2746
 
2747
+ #: settings.php:1242
2748
  msgid "JavaScript code position"
2749
  msgstr "Položaj JavaScript kode"
2750
 
2751
+ #: settings.php:1243
2752
  msgid ""
2753
  "Page position where the JavaScript code for client-side insertion will be "
2754
  "inserted. Should be after the HTML element if not waiting for DOM ready."
2757
  "strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
2758
  "DOM."
2759
 
2760
+ #: settings.php:1258
2761
  msgid "Count"
2762
  msgstr "Štej"
2763
 
2764
+ #: settings.php:1264
2765
  msgid "paragraphs with tags"
2766
  msgstr "odstavke z značkami"
2767
 
2768
+ #: settings.php:1270
2769
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2770
  msgstr ""
2771
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
2772
 
2773
+ #: settings.php:1279
2774
  msgid "that have between"
2775
  msgstr "ki imajo med"
2776
 
2777
+ #: settings.php:1285
2778
  msgid "Minimum number of paragraph words, leave empty for no limit"
2779
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
2780
 
2781
+ #: settings.php:1294
2782
  msgid "Maximum number of paragraph words, leave empty for no limit"
2783
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
2784
 
2785
+ #: settings.php:1297 settings.php:1892
2786
  msgid "words"
2787
  msgstr "besed"
2788
 
2789
+ #: settings.php:1312 settings.php:1378 settings.php:1404
2790
  msgid "Comma separated texts"
2791
  msgstr "Z vejico ločena besedila"
2792
 
2793
+ #: settings.php:1321
2794
  msgid "Minimum number of paragraphs"
2795
  msgstr "Najmanjše število odstavkov"
2796
 
2797
  #. translators: %s: list of HTML tags
2798
+ #: settings.php:1336
2799
  msgid ""
2800
  "Count also paragraphs inside %s elements - defined on general plugin "
2801
  "settings page - tab &#9881; / tab General"
2803
  "Štej tudi odstavke znotraj elementov %s - določeni na strani splošnih "
2804
  "nastavitev vtičnika - zavihek &#9881; / zavihek Splošno"
2805
 
2806
+ #: settings.php:1336
2807
  msgid "Count inside special elements"
2808
  msgstr "Štej znotraj posebnih elementov"
2809
 
2810
+ #: settings.php:1347
2811
  msgid "Minimum number of words in paragraphs above"
2812
  msgstr "Najmanjše število besed v odstavkih zgoraj"
2813
 
2814
+ #: settings.php:1353
2815
  msgid ""
2816
  "Used only with automatic insertion After paragraph and empty paragraph "
2817
  "numbers"
2819
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
2820
  "številkami odstavkov"
2821
 
2822
+ #: settings.php:1363 settings.php:1389
2823
  msgid "In"
2824
  msgstr "V"
2825
 
2826
+ #: settings.php:1369
2827
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2828
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
2829
 
2830
+ #: settings.php:1372
2831
  msgid "paragraphs above avoid"
2832
  msgstr "odstavkih zgoraj se izogni"
2833
 
2834
+ #: settings.php:1395
2835
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2836
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
2837
 
2838
+ #: settings.php:1398
2839
  msgid "paragraphs below avoid"
2840
  msgstr "odstavkih spodaj se izogni"
2841
 
2842
+ #: settings.php:1414
2843
  msgid "If text is found"
2844
  msgstr "Če je besedilo najdeno"
2845
 
2846
+ #: settings.php:1421
2847
  msgid "check up to"
2848
  msgstr "preveri do"
2849
 
2850
+ #: settings.php:1429
2851
  msgctxt "check up to"
2852
  msgid "paragraphs"
2853
  msgstr "odstavkov"
2854
 
2855
+ #: settings.php:1445
2856
  msgid "Categories"
2857
  msgstr "Kategorije"
2858
 
2859
+ #: settings.php:1448
2860
  msgid "Toggle category editor"
2861
  msgstr "Preklopi urejevalnik kategorij"
2862
 
2863
+ #: settings.php:1451
2864
  msgid "Comma separated category slugs"
2865
  msgstr "Z vejico ločeni ključi kategorij"
2866
 
2867
+ #: settings.php:1455
2868
  msgid "Blacklist categories"
2869
  msgstr "Črni seznam kategorij"
2870
 
2871
+ #: settings.php:1459
2872
  msgid "Whitelist categories"
2873
  msgstr "Beli seznam kategorij"
2874
 
2875
+ #: settings.php:1471
2876
  msgid "Tags"
2877
  msgstr "Oznake"
2878
 
2879
+ #: settings.php:1474
2880
  msgid "Toggle tag editor"
2881
  msgstr "Preklopi urejevalnik oznak"
2882
 
2883
+ #: settings.php:1477
2884
  msgid "Comma separated tag slugs"
2885
  msgstr "Z vejico ločeni ključi oznak"
2886
 
2887
+ #: settings.php:1481
2888
  msgid "Blacklist tags"
2889
  msgstr "Črni seznam oznak"
2890
 
2891
+ #: settings.php:1485
2892
  msgid "Whitelist tags"
2893
  msgstr "Beli seznam oznak"
2894
 
2895
+ #: settings.php:1497
2896
  msgid "Taxonomies"
2897
  msgstr "Taksonomije"
2898
 
2899
+ #: settings.php:1500
2900
  msgid "Toggle taxonomy editor"
2901
  msgstr "Preklopi urejevalnik taksonomij"
2902
 
2903
+ #: settings.php:1503
2904
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2905
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
2906
 
2907
+ #: settings.php:1507
2908
  msgid "Blacklist taxonomies"
2909
  msgstr "Črni seznam taksonomij"
2910
 
2911
+ #: settings.php:1511
2912
  msgid "Whitelist taxonomies"
2913
  msgstr "Beli seznam taksonomij"
2914
 
2915
+ #: settings.php:1523
2916
  msgid "Post IDs"
2917
  msgstr "ID-ji prispevkov"
2918
 
2919
+ #: settings.php:1526
2920
  msgid "Toggle post/page ID editor"
2921
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
2922
 
2923
+ #: settings.php:1529
2924
  msgid "Comma separated post/page IDs"
2925
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
2926
 
2927
+ #: settings.php:1533
2928
  msgid "Blacklist IDs"
2929
  msgstr "Črni seznam ID-jev"
2930
 
2931
+ #: settings.php:1537
2932
  msgid "Whitelist IDs"
2933
  msgstr "Beli seznam ID-jev"
2934
 
2935
+ #: settings.php:1549
2936
  msgid "Urls"
2937
  msgstr "Url-ji"
2938
 
2939
+ #: settings.php:1552
2940
  msgid "Toggle url editor"
2941
  msgstr "Preklopi urejevalnik url-jev"
2942
 
2943
+ #: settings.php:1555
2944
  msgid ""
2945
  "Comma separated urls (page addresses) starting with / after domain name (e."
2946
  "g. /permalink-url, use only when you need to taget a specific url not "
2952
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
2953
  "začetek*. *url-vzorec*, *url-konec)"
2954
 
2955
+ #: settings.php:1559
2956
  msgid "Blacklist urls"
2957
  msgstr "Črni seznam url-jev"
2958
 
2959
+ #: settings.php:1563
2960
  msgid "Whitelist urls"
2961
  msgstr "Beli seznam url-jev"
2962
 
2963
+ #: settings.php:1574
2964
  msgid "Url parameters"
2965
  msgstr "Url parametri"
2966
 
2967
+ #: settings.php:1578
2968
  msgid "Toggle url parameter and cookie editor"
2969
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
2970
 
2971
+ #: settings.php:1581
2972
  msgid ""
2973
  "Comma separated url query parameters or cookies with optional values (use "
2974
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
2977
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
2978
  "'piškotek=vrednost')"
2979
 
2980
+ #: settings.php:1585
2981
  msgid "Blacklist url parameters"
2982
  msgstr "Črni seznam url parametrov"
2983
 
2984
+ #: settings.php:1589
2985
  msgid "Whitelist url parameters"
2986
  msgstr "Beli seznam url parametrov"
2987
 
2988
+ #: settings.php:1600
2989
  msgid "Referrers"
2990
  msgstr "Napotitelji"
2991
 
2992
+ #: settings.php:1603
2993
  msgid "Toggle referer editor"
2994
  msgstr "Preklopi urejevalnik napotiteljev"
2995
 
2996
+ #: settings.php:1606
2997
  msgid ""
2998
  "Comma separated domains, use # for no referrer, you can also use partial "
2999
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3001
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3002
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3003
 
3004
+ #: settings.php:1610
3005
  msgid "Blacklist referers"
3006
  msgstr "Črni seznam napotiteljev"
3007
 
3008
+ #: settings.php:1614
3009
  msgid "Whitelist referers"
3010
  msgstr "Beli seznam napotiteljev"
3011
 
3012
+ #: settings.php:1634
3013
  msgid "Enable widget for this block"
3014
  msgstr "Omogočite gradnik za ta blok"
3015
 
3016
+ #: settings.php:1646
3017
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3018
  msgstr ""
3019
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3020
 
3021
+ #: settings.php:1647 settings.php:3747
3022
  msgid "Shortcode"
3023
  msgstr "Kratka koda"
3024
 
3025
+ #: settings.php:1662
3026
  msgid ""
3027
  "Enable PHP function call to insert this block at any position in theme file. "
3028
  "If function is disabled for block it will return empty string."
3031
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3032
  "prazen niz."
3033
 
3034
+ #: settings.php:1663
3035
  msgid "PHP function"
3036
  msgstr "PHP funkcija"
3037
 
3038
+ #: settings.php:1678
3039
  msgid "Client-side device detection"
3040
  msgstr "Zaznavanje naprave na strani klienta"
3041
 
3042
+ #: settings.php:1679
3043
  msgid "Server-side device detection"
3044
  msgstr "Zaznavanje naprave na strani strežnika"
3045
 
3046
+ #: settings.php:1686
3047
  msgid "Use client-side detection to"
3048
  msgstr "Uporabi zaznavanje na strani klienta in"
3049
 
3050
+ #: settings.php:1688
3051
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3052
  msgstr ""
3053
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3054
 
3055
  #. Translators: only on (the following devices): viewport names (devices)
3056
  #. listed
3057
+ #: settings.php:1693
3058
  msgid "only on"
3059
  msgstr "samo na"
3060
 
3061
+ #: settings.php:1721
3062
  msgid "Device min width %s px"
3063
  msgstr "Najmanjša širina naprave %s px"
3064
 
3065
+ #: settings.php:1747
3066
  msgid "Use server-side detection to insert block only for"
3067
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3068
 
3069
+ #: settings.php:1766
3070
  msgid "Filter"
3071
  msgstr "Filter"
3072
 
3073
+ #: settings.php:1767
3074
  msgid "Word Count"
3075
  msgstr "Število Besed"
3076
 
3077
+ #: settings.php:1768
3078
  msgid "Scheduling"
3079
  msgstr "Urnik"
3080
 
3081
+ #: settings.php:1769
3082
  msgid "Display"
3083
  msgstr "Prikaz"
3084
 
3085
+ #: settings.php:1771 settings.php:2021
3086
  msgid "General"
3087
  msgstr "Splošno"
3088
 
3089
+ #: settings.php:1783
3090
  msgid "Old settings for AMP pages detected"
3091
  msgstr "Zaznane stare nastavitve za AMP strani"
3092
 
3093
+ #: settings.php:1783
3094
  msgid ""
3095
  "To insert different codes on normal and AMP pages separate them with "
3096
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3101
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3102
  "separatorja)."
3103
 
3104
+ #: settings.php:1783
3105
  msgid "AMP pages"
3106
  msgstr "AMP strani"
3107
 
3108
+ #: settings.php:1788
3109
  msgid "Enable insertion for Ajax requests"
3110
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3111
 
3112
+ #: settings.php:1788
3113
  msgid "Ajax requests"
3114
  msgstr "Ajax zahteve"
3115
 
3116
+ #: settings.php:1793
3117
  msgid "Enable insertion in RSS feeds"
3118
  msgstr "Omogoči vstavljanje v RSS virih"
3119
 
3120
+ #: settings.php:1793
3121
  msgid "RSS Feed"
3122
  msgstr "RSS Vir"
3123
 
3124
+ #: settings.php:1798
3125
  msgid "Enable insertion on page for Error 404: Page not found"
3126
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3127
 
3128
+ #: settings.php:1798
3129
  msgid "Error 404 page"
3130
  msgstr "Stran napake 404"
3131
 
3132
+ #: settings.php:1810
3133
  msgid "Maximum number of insertion of this block. Empty or 0 means no limit."
3134
  msgstr ""
3135
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3136
 
3137
+ #: settings.php:1811
3138
  msgid "Max"
3139
  msgstr "Največ"
3140
 
3141
+ #: settings.php:1811
3142
  msgid "insertions"
3143
  msgstr "vstavljanj"
3144
 
3145
+ #: settings.php:1813
3146
  msgid ""
3147
  "Count this block for Max blocks per page limit (defined on the tab &#9881; / "
3148
  "tab General)"
3150
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku "
3151
  "&#9881; / zavihek Splošno)"
3152
 
3153
+ #: settings.php:1816 settings.php:2190
3154
  msgid "Max blocks per page"
3155
  msgstr "Največ blokov na stran"
3156
 
3157
+ #: settings.php:1828
3158
  msgid "Insert for"
3159
  msgstr "Vstavi za"
3160
 
3161
+ #: settings.php:1836
3162
  msgid ""
3163
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3164
  "currently active). Might speed up insertion on content pages when "
3168
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3169
  "filter the_content večkrat klican."
3170
 
3171
+ #: settings.php:1839
3172
  msgid "Insert only in the loop"
3173
  msgstr "Vstavi samo v zanki"
3174
 
3175
+ #: settings.php:1845
3176
  msgid ""
3177
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3178
  msgstr ""
3179
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3180
  "Rocket"
3181
 
3182
+ #: settings.php:1845
3183
  msgid "Disable caching"
3184
  msgstr "Onemogoči predpomnjenje"
3185
 
3186
+ #: settings.php:1857
3187
  msgid "Filter insertions"
3188
  msgstr "Filtriraj vstavljanja"
3189
 
3190
+ #: settings.php:1860
3191
  msgid ""
3192
  "Filter multiple insertions by specifying wanted insertions for this block - "
3193
  "single number, comma separated numbers or %N for every N insertions - empty "
3199
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
3200
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
3201
 
3202
+ #: settings.php:1863
3203
  msgid "using"
3204
  msgstr "z uporabo"
3205
 
3206
+ #: settings.php:1882
3207
  msgid "Checked means specified calls are unwanted"
3208
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
3209
 
3210
+ #: settings.php:1882
3211
  msgid "Invert filter"
3212
  msgstr "Obrni filter"
3213
 
3214
+ #: settings.php:1888
3215
  msgid "Post/Static page must have between"
3216
  msgstr "Prispevek/Statična stran mora imeti med"
3217
 
3218
+ #: settings.php:1889
3219
  msgid "Minimum number of post/static page words, leave empty for no limit"
3220
  msgstr ""
3221
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3222
  "omejitev"
3223
 
3224
+ #: settings.php:1891
3225
  msgid "Maximum number of post/static page words, leave empty for no limit"
3226
  msgstr ""
3227
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3228
  "omejitev"
3229
 
3230
+ #: settings.php:1904
3231
  msgid "days after publishing"
3232
  msgstr "dni po objavi"
3233
 
3234
+ #: settings.php:1906
3235
  msgid "Not available"
3236
  msgstr "Ni na razpolago"
3237
 
3238
+ #: settings.php:1919 settings.php:2182
3239
  msgid "Ad label"
3240
  msgstr "Oznaka oglasa"
3241
 
3242
+ #: settings.php:1939
3243
  msgid "General tag"
3244
  msgstr "Splošna oznaka"
3245
 
3246
+ #: settings.php:1943
3247
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3248
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
3249
 
3250
  #. translators: %s: HTML tags
3251
+ #: settings.php:1952
3252
  msgid ""
3253
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3254
  "side device detection!"
3256
  "%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
3257
  "potrebna za zaznavanje naprave na strani klienta!"
3258
 
3259
+ #: settings.php:1964
3260
  msgid "Settings"
3261
  msgstr "Nastavitve"
3262
 
3263
+ #: settings.php:1967
3264
  msgid "Settings timestamp"
3265
  msgstr "Časovni žig nastavitev"
3266
 
3267
+ #: settings.php:1980
3268
  msgid "Are you sure you want to reset all settings?"
3269
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
3270
 
3271
+ #: settings.php:1980
3272
  msgid "Reset All Settings"
3273
  msgstr "Ponastavi Vse Nastavitve"
3274
 
3275
+ #: settings.php:1996
3276
  msgid "Edit ads.txt file"
3277
  msgstr "Uredi datoteko ads.txt"
3278
 
3279
+ #: settings.php:2022
3280
  msgid "Viewports"
3281
  msgstr "Pogledi"
3282
 
3283
+ #: settings.php:2023
3284
  msgid "Hooks"
3285
  msgstr "Ročice"
3286
 
3287
+ #: settings.php:2024
3288
  msgid "Header"
3289
  msgstr "Glava"
3290
 
3291
+ #: settings.php:2025 strings.php:30
3292
  msgid "Footer"
3293
  msgstr "Noga"
3294
 
3295
+ #: settings.php:2030
3296
  msgid "Debugging"
3297
  msgstr "Razhroščevanje"
3298
 
3299
+ #: settings.php:2040
3300
  msgid "Plugin priority"
3301
  msgstr "Prednost vtičnika"
3302
 
3303
+ #: settings.php:2048
3304
  msgid "Output buffering"
3305
  msgstr "Predpomnjenje izhoda"
3306
 
3307
+ #: settings.php:2051
3308
  msgid "Needed for position Above header but may not work with all themes"
3309
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
3310
 
3311
+ #: settings.php:2059
3312
  msgid "Syntax highlighting theme"
3313
  msgstr "Tema za poudarjanje sintakse"
3314
 
3315
+ #: settings.php:2066
3316
  msgctxt "no syntax highlighting themes"
3317
  msgid "None"
3318
  msgstr "Brez"
3319
 
3320
+ #: settings.php:2067
3321
  msgid "No Syntax Highlighting"
3322
  msgstr "Brez Poudarjanja Sintakse"
3323
 
3324
+ #: settings.php:2069
3325
  msgctxt "syntax highlighting themes"
3326
  msgid "Light"
3327
  msgstr "Svetle"
3328
 
3329
+ #: settings.php:2084
3330
  msgctxt "syntax highlighting themes"
3331
  msgid "Dark"
3332
  msgstr "Temne"
3333
 
3334
+ #: settings.php:2110
3335
  msgid "Min. user role for ind. exceptions editing"
3336
  msgstr "Najm. uporabniška vloga za urejanje izjem"
3337
 
3338
+ #: settings.php:2120
3339
  msgid "Disable caching for logged in administrators"
3340
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
3341
 
3342
+ #: settings.php:2123
3343
  msgid ""
3344
  "Enabled means that logged in administrators will see non-cached (live) pages "
3345
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3347
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
3348
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
3349
 
3350
+ #: settings.php:2131
3351
  msgid "Sticky widget mode"
3352
  msgstr "Način za lepljive gradnike"
3353
 
3354
+ #: settings.php:2134
3355
  msgid ""
3356
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3357
  "mode works with most themes but may reload ads on page load."
3360
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
3361
  "nalaganju strani."
3362
 
3363
+ #: settings.php:2142
3364
  msgid "Sticky widget top margin"
3365
  msgstr "Zgornji rob za lepljiv gradnik"
3366
 
3367
+ #: settings.php:2150
3368
  msgid "Dynamic blocks"
3369
  msgstr "Dinamični bloki"
3370
 
3371
+ #: settings.php:2163
3372
  msgid "Functions for paragraph counting"
3373
  msgstr "Funkcije za štetje odstavkov"
3374
 
3375
+ #: settings.php:2166
3376
  msgid ""
3377
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3378
  "functions if paragraphs are not counted properly on non-english pages."
3381
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
3382
  "šteti."
3383
 
3384
+ #: settings.php:2174
3385
  msgid "No paragraph counting inside"
3386
  msgstr "Ni štetja odstavkov znotraj"
3387
 
3388
+ #: settings.php:2185
3389
  msgid "Label text or HTML code"
3390
  msgstr "Besedilo oznake ali HTML koda"
3391
 
3392
+ #: settings.php:2193
3393
  msgid ""
3394
  "Maximum number of inserted blocks per page. You need to enable Max page "
3395
  "insertions (button Misc / tab Insertion) to count block for this limit."
3398
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
3399
  "omejitev."
3400
 
3401
+ #: settings.php:2207
3402
  msgid "Plugin usage tracking"
3403
  msgstr "Sledenje uporabe vtičnika"
3404
 
3405
  #. translators: %s: Ad Inserter
3406
+ #: settings.php:2210
3407
  msgid ""
3408
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3409
  "Only information regarding the WordPress environment and %s usage is "
3413
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
3414
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
3415
 
3416
+ #: settings.php:2228
3417
  msgid "CSS class name for the wrapping div"
3418
  msgstr "Ime CSS razreda za div za ovijanje"
3419
 
3420
+ #: settings.php:2228
3421
  msgid "Block class name"
3422
  msgstr "Ime razreda za blok"
3423
 
3424
+ #: settings.php:2232
3425
  msgid "Include general plugin block class"
3426
  msgstr "Vključi splošni razred vtičnika za blok"
3427
 
3428
+ #: settings.php:2232
3429
  msgid "Block class"
3430
  msgstr "Razred bloka"
3431
 
3432
+ #: settings.php:2237
3433
  msgid "Include block number class"
3434
  msgstr "Vključi razred številke bloka"
3435
 
3436
+ #: settings.php:2237
3437
  msgid "Block number class"
3438
  msgstr "Razred številke bloka"
3439
 
3440
+ #: settings.php:2242
3441
  msgid ""
3442
  "Instead of alignment classes generate inline alignment styles for blocks"
3443
  msgstr ""
3444
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
3445
 
3446
+ #: settings.php:2242
3447
  msgid "Inline styles"
3448
  msgstr "Medvrstični slogi"
3449
 
3450
+ #: settings.php:2248
3451
  msgid "Preview of the block wrapping code"
3452
  msgstr "Predogled kode za ovijanje blokov"
3453
 
3454
+ #: settings.php:2249
3455
  msgid "Wrapping div"
3456
  msgstr "div za ovijanje"
3457
 
3458
+ #: settings.php:2250 settings.php:2690
3459
  msgid "BLOCK CODE"
3460
  msgstr "KODA BLOKA"
3461
 
3462
+ #: settings.php:2258
3463
  msgid "Viewport Settings used for client-side device detection"
3464
  msgstr ""
3465
  "Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
3466
 
3467
  #. Translators: %d: viewport number
3468
+ #: settings.php:2266
3469
  msgid "Viewport %d name"
3470
  msgstr "Ime pogleda %d"
3471
 
3472
+ #: settings.php:2269
3473
  msgid "min width"
3474
  msgstr "najmanjša širina"
3475
 
3476
+ #: settings.php:2280
3477
  msgid "Custom Hooks"
3478
  msgstr "Ročice Po Meri"
3479
 
3480
+ #: settings.php:2292 settings.php:2295
3481
  msgid "Enable hook"
3482
  msgstr "Omogoči ročico"
3483
 
3484
  #. translators: %d: hook number
3485
+ #: settings.php:2295
3486
  msgid "Hook %d name"
3487
  msgstr "Ime ročice %d"
3488
 
3489
+ #: settings.php:2298
3490
  msgid "Hook name for automatic insertion selection"
3491
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
3492
 
3493
+ #: settings.php:2301
3494
  msgid "action"
3495
  msgstr "akcija"
3496
 
3497
+ #: settings.php:2304
3498
  msgid "Action name as used in the do_action () function"
3499
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
3500
 
3501
+ #: settings.php:2307
3502
  msgid "priority"
3503
  msgstr "prednost"
3504
 
3505
+ #: settings.php:2310
3506
  msgid "Priority for the hook (default is 10)"
3507
  msgstr "Prednost za ročico (privzeta je 10)"
3508
 
3509
+ #: settings.php:2331
3510
  msgid "Enable insertion of this code into HTML page header"
3511
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3512
 
3513
+ #: settings.php:2335 settings.php:2402 settings.php:2584
3514
  msgid "Process PHP code"
3515
  msgstr "Procesiraj PHP kodo"
3516
 
3517
+ #: settings.php:2339
3518
  msgid "HTML Page Header Code"
3519
  msgstr "Koda v Glavi HTML Strani"
3520
 
3521
+ #: settings.php:2347
3522
  msgid "Code in the %s section of the HTML page"
3523
  msgstr "Koda v %s delu HTML strani"
3524
 
3525
+ #: settings.php:2348
3526
  msgctxt "code in the header"
3527
  msgid "NOT ENABLED"
3528
  msgstr "NI OMOGOČENA"
3529
 
3530
+ #: settings.php:2365 settings.php:2433
3531
  msgid "Use server-side detection to insert code only for"
3532
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3533
 
3534
+ #: settings.php:2380
3535
  msgid ""
3536
  "Enable insertion of this code into HTML page header on page for Error 404: "
3537
  "Page not found"
3539
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3540
  "obstaja"
3541
 
3542
+ #: settings.php:2380 settings.php:2448
3543
  msgid "Insert on Error 404 page"
3544
  msgstr "Vstavi na strani Napake 404"
3545
 
3546
+ #: settings.php:2398
3547
  msgid "Enable insertion of this code into HTML page footer"
3548
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3549
 
3550
+ #: settings.php:2406
3551
  msgid "HTML Page Footer Code"
3552
  msgstr "Koda v Nogi HTML Strani"
3553
 
3554
  #. translators: %s: HTML tags
3555
+ #: settings.php:2414
3556
  msgid "Code before the %s tag of the the HTML page"
3557
  msgstr "Koda pred %s značko HTML strani"
3558
 
3559
+ #: settings.php:2415
3560
  msgctxt "code in the footer"
3561
  msgid "NOT ENABLED"
3562
  msgstr "NI OMOGOČENA"
3563
 
3564
+ #: settings.php:2448
3565
  msgid ""
3566
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3567
  "Page not found"
3569
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3570
  "Stran ne obstaja"
3571
 
3572
+ #: settings.php:2464
3573
  msgid "Code for ad blocking detection inserted. Click for details."
3574
  msgstr ""
3575
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
3576
 
3577
+ #: settings.php:2469
3578
  msgid "Enable detection of ad blocking"
3579
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3580
 
3581
+ #: settings.php:2487
3582
  msgid "Global action when ad blocking is detected"
3583
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3584
 
3585
+ #: settings.php:2493
3586
  msgid "No action for"
3587
  msgstr "Ni akcije za"
3588
 
3589
+ #: settings.php:2494
3590
  msgid "Exceptions for global action when ad blocking is detected."
3591
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
3592
 
3593
+ #: settings.php:2504
3594
  msgid "Delay Action"
3595
  msgstr "Zakasni Akcijo"
3596
 
3597
+ #: settings.php:2507
3598
  msgid ""
3599
  "Number of page views to delay action when ad blocking is detected. Leave "
3600
  "empty for no delay (action fires on first page view). Sets cookie."
3603
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3604
  "strani). Nastavi piškotek."
3605
 
3606
+ #: settings.php:2507
3607
  msgctxt "Delay Action for x "
3608
  msgid "page views"
3609
  msgstr "ogledov strani"
3610
 
3611
+ #: settings.php:2512
3612
  msgid "No Action Period"
3613
  msgstr "Obdobje Brez Akcije"
3614
 
3615
+ #: settings.php:2515
3616
  msgid ""
3617
  "Number of days to supress action when ad blocking is detected. Leave empty "
3618
  "for no no-action period (action fires always after defined page view delay). "
3622
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3623
  "strani). Nastavi piškotek."
3624
 
3625
+ #: settings.php:2515
3626
  msgctxt "no action period"
3627
  msgid "days"
3628
  msgstr "dni"
3629
 
3630
+ #: settings.php:2520
3631
  msgid "Custom Selectors"
3632
  msgstr "Selektorji Po Meri"
3633
 
3634
+ #: settings.php:2523
3635
  msgid ""
3636
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3637
  "blocking detection. Invisible element or element with zero height means ad "
3641
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3642
  "pomeni prisotnost blokiranja oglasov."
3643
 
3644
+ #: settings.php:2535
3645
  msgid "Redirection Page"
3646
  msgstr "Stran za Preusmeritev"
3647
 
3648
+ #: settings.php:2547
3649
  msgid "Custom Url"
3650
  msgstr "Url Po Meri"
3651
 
3652
+ #: settings.php:2552
3653
  msgid ""
3654
  "Static page for redirection when ad blocking is detected. For other pages "
3655
  "select Custom url and set it below."
3657
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3658
  "strani izberite Url Po Meri in ga nastavite spodaj."
3659
 
3660
+ #: settings.php:2561
3661
  msgid "Custom Redirection Url"
3662
  msgstr "Url za Preusmeritev Po Meri"
3663
 
3664
+ #: settings.php:2573
3665
  msgid "Message HTML code"
3666
  msgstr "HTML koda sporočila"
3667
 
3668
+ #: settings.php:2586
3669
  msgid "Preview message when ad blocking is detected"
3670
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3671
 
3672
+ #: settings.php:2615
3673
  msgid "Prevent visitors from closing the warning message"
3674
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
3675
 
3676
+ #: settings.php:2615
3677
  msgid "Undismissible Message"
3678
  msgstr "Neodstranljivo Sporočilo"
3679
 
3680
+ #: settings.php:2621
3681
  msgid "Not undismissible for"
3682
  msgstr "Ni neodstranljivo za"
3683
 
3684
+ #: settings.php:2622
3685
  msgid "Users which can close the warning message."
3686
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo"
3687
 
3688
+ #: settings.php:2636
3689
  msgid ""
3690
  "Force showing admin toolbar for administrators when viewing site. Enable "
3691
  "this option when you are logged in as admin and you don't see admin toolbar."
3694
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
3695
  "skrbnike."
3696
 
3697
+ #: settings.php:2644
3698
  msgid "Disable header code (Header tab)"
3699
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
3700
 
3701
+ #: settings.php:2648
3702
  msgid "Disable footer code (Footer tab)"
3703
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
3704
 
3705
  #. translators: %s: Ad Inserter
3706
+ #: settings.php:2652
3707
  msgid "Disable %s JavaScript code"
3708
  msgstr "Onemogoči %s JavaScript kodo"
3709
 
3710
  #. translators: %s: Ad Inserter
3711
+ #: settings.php:2656
3712
  msgid "Disable %s CSS code"
3713
  msgstr "Onemogoči %s CSS kodo"
3714
 
3715
+ #: settings.php:2660
3716
  msgid ""
3717
  "Disable PHP code processing (in all blocks including header and footer code)"
3718
  msgstr ""
3719
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
3720
 
3721
+ #: settings.php:2664
3722
  msgid "Disable insertion of all blocks"
3723
  msgstr "Onemogoči vstavljanje vseh blokov"
3724
 
3725
+ #: settings.php:2668
3726
  msgid "Disable insertions"
3727
  msgstr "Onemogoči vstavljanja"
3728
 
3729
  #. translators: %s: Ad Inserter
3730
+ #: settings.php:2680
3731
  msgid "%s CSS CODE"
3732
  msgstr "%s CSS KODA"
3733
 
3734
+ #: settings.php:2683
3735
  msgid "HEADER CODE"
3736
  msgstr "KODA GLAVE"
3737
 
3738
  #. translators: %s: PHP tags
3739
+ #: settings.php:2689
3740
  msgid "BLOCK PHP CODE"
3741
  msgstr "PHP KODA BLOKA"
3742
 
3743
  #. translators: %s: Ad Inserter
3744
+ #: settings.php:2695
3745
  msgid "%s JS CODE"
3746
  msgstr "%s JS KODA"
3747
 
3748
+ #: settings.php:2698
3749
  msgid "FOOTER CODE"
3750
  msgstr "KODA NOGE"
3751
 
3752
+ #: settings.php:2707
3753
  msgid "Force showing admin toolbar when viewing site"
3754
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
3755
 
3756
+ #: settings.php:2714
3757
  msgid "Enable debugging functions in admin toolbar"
3758
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
3759
 
3760
+ #: settings.php:2716
3761
  msgid "Debugging functions in admin toolbar"
3762
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
3763
 
3764
+ #: settings.php:2723
3765
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3766
  msgstr ""
3767
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
3768
  "zaslonih"
3769
 
3770
+ #: settings.php:2725
3771
  msgid "Debugging functions on mobile screens"
3772
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
3773
 
3774
+ #: settings.php:2732
3775
  msgid ""
3776
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3777
  "tags, processing) by url parameters for non-logged in users. Enable this "
3786
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
3787
  "vedno omogočeno."
3788
 
3789
+ #: settings.php:2734
3790
  msgid "Remote debugging"
3791
  msgstr "Oddaljeno razhroščevanje"
3792
 
3793
+ #: settings.php:2741
3794
  msgid ""
3795
  "Disable translation to see original texts for the settings and messages in "
3796
  "English"
3798
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
3799
  "angleščini"
3800
 
3801
+ #: settings.php:2743
3802
  msgid "Disable translation"
3803
  msgstr "Onemogoči prevod"
3804
 
3805
+ #: settings.php:3112
3806
  msgid "Available positions for current theme"
3807
  msgstr "Razpoložljivi položaji za trenutno temo"
3808
 
3809
+ #: settings.php:3113
3810
  msgid "Error checking pages"
3811
  msgstr "Napaka pri preverjanju strani"
3812
 
3813
+ #: settings.php:3116
3814
  msgid "Toggle theme checker for available positions for automatic insertion"
3815
  msgstr ""
3816
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
3817
 
3818
+ #: settings.php:3116
3819
  msgctxt "Button"
3820
  msgid "Check"
3821
  msgstr "Preveri"
3822
 
3823
+ #: settings.php:3123
3824
  msgid "Position"
3825
  msgstr "Položaj"
3826
 
3827
+ #: settings.php:3128
3828
  msgid "Archive pages"
3829
  msgstr "Strani arhiva"
3830
 
3831
+ #: settings.php:3187
3832
  msgid ""
3833
  "Position not available because output buffering (tab [*]) is not enabled"
3834
  msgstr ""
3835
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
3836
 
3837
+ #: settings.php:3190 strings.php:220
3838
  msgid "Position not checked yet"
3839
  msgstr "Položaj še ni bil preverjen"
3840
 
3841
+ #: settings.php:3221
3842
  msgid "Toggle active/all blocks"
3843
  msgstr "Preklopi aktive/vse bloke"
3844
 
3845
+ #: settings.php:3225 strings.php:207
3846
  msgid "Rearrange block order"
3847
  msgstr "Preuredi vrstni red blokov"
3848
 
3849
+ #: settings.php:3230
3850
  msgid "Save new block order"
3851
  msgstr "Shrani vrstni red blokov"
3852
 
3853
+ #: settings.php:3230
3854
  msgid "Save Changes"
3855
  msgstr "Sharani Nastavitve"
3856
 
3857
+ #: settings.php:3255
3858
  msgid "Toggle active/all ad units"
3859
  msgstr "Preklopi aktivne/vse oglasne enote"
3860
 
3861
+ #: settings.php:3259
3862
  msgid "Reload AdSense ad units"
3863
  msgstr "Ponovno naloži oglasne enote AdSense"
3864
 
3865
+ #: settings.php:3263
3866
  msgid "Clear authorization to access AdSense account"
3867
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
3868
 
3869
+ #: settings.php:3267 settings.php:3904 settings.php:3971 strings.php:215
3870
  msgid "Google AdSense Homepage"
3871
  msgstr "Google AdSense Domača Stran"
3872
 
3873
+ #: settings.php:3290
3874
  msgid "Reload ads.txt file"
3875
  msgstr "Ponovno naloži datoteko ads.txt"
3876
 
3877
  #. translators: %s: ads.txt
3878
+ #: settings.php:3294
3879
  msgid "Open %s"
3880
  msgstr "Odpri %s"
3881
 
3882
+ #: settings.php:3298
3883
  msgid "Switch to table view"
3884
  msgstr "Preklopi na tabelarični pogled"
3885
 
3886
+ #: settings.php:3302
3887
  msgid "Switch to editor"
3888
  msgstr "Preklopi na urejevalnik"
3889
 
3890
+ #: settings.php:3306
3891
  msgid "Save ads.txt file"
3892
  msgstr "Shrani datoteko ads.txt"
3893
 
3894
+ #: settings.php:3441 settings.php:3449 strings.php:200
3895
  msgid "Warning"
3896
  msgstr "Opozorilo"
3897
 
3898
+ #: settings.php:3441
3899
  msgid "ads.txt file must be placed on the root domain"
3900
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
3901
 
3902
  #. translators: %s: file path
3903
+ #: settings.php:3442
3904
  msgid "WordPress is installed in %s"
3905
  msgstr "WordPress je nameščen v %s"
3906
 
3907
+ #: settings.php:3443
3908
  msgid "Showing file"
3909
  msgstr "Prikazana datoteka"
3910
 
3911
+ #: settings.php:3449
3912
  msgid "File %s not found"
3913
  msgstr "Datoteka %s ni najdena"
3914
 
3915
+ #: settings.php:3456
3916
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3917
  msgstr ""
3918
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
3919
 
3920
+ #: settings.php:3473
3921
  msgid "Advertising system"
3922
  msgstr "Oglaševalski sistem"
3923
 
3924
+ #: settings.php:3474
3925
  msgid "Account ID"
3926
  msgstr "ID Računa"
3927
 
3928
+ #: settings.php:3476
3929
  msgid "Certification authority ID"
3930
  msgstr "ID organa za potrjevanje"
3931
 
3932
+ #: settings.php:3491
3933
  msgid "Account ID found in block and present in ads.txt"
3934
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
3935
 
3936
+ #: settings.php:3495
3937
  msgid "Account ID found in block but not present in ads.txt"
3938
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
3939
 
3940
+ #: settings.php:3716
3941
  msgid "Preview block"
3942
  msgstr "Predogled bloka"
3943
 
3944
+ #: settings.php:3725
3945
  msgid "Insertion disabled"
3946
  msgstr "Vstavljanje onemogočeno"
3947
 
3948
+ #: settings.php:3749
3949
  msgid "Widget positions"
3950
  msgstr "Položaji gradnikov"
3951
 
3952
+ #: settings.php:3815
3953
  msgid "Ad unit"
3954
  msgstr "Enota"
3955
 
3956
+ #: settings.php:3817
3957
  msgid "Slot ID"
3958
  msgstr "ID mesta"
3959
 
3960
+ #: settings.php:3843
3961
  msgid "Copy AdSense code"
3962
  msgstr "Kopiraj kodo AdSense"
3963
 
3964
+ #: settings.php:3846
3965
  msgid "Preview AdSense ad"
3966
  msgstr "Predogled oglasa AdSense"
3967
 
3968
+ #: settings.php:3849
3969
  msgid "Get AdSense code"
3970
  msgstr "Pridobi kodo AdSense"
3971
 
3972
  #. translators: %s: HTML tags
3973
+ #: settings.php:3881
3974
  msgid ""
3975
  "Please %s clear authorization %s with the button %s above and once again "
3976
  "authorize access to your AdSense account."
3978
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
3979
  "avtorizirajte dostop do vašega računa AdSense."
3980
 
3981
+ #: settings.php:3900
3982
  msgid "AdSense Integration"
3983
  msgstr "Integracija AdSense"
3984
 
3985
+ #: settings.php:3902
3986
  msgid "AdSense Integration - Step 2"
3987
  msgstr "Integracija AdSense - Korak 2"
3988
 
3989
  #. translators: %s: HTML tags
3990
+ #: settings.php:3908
3991
  msgid ""
3992
  "Authorize %s to access your AdSense account. Click on the %s Get "
3993
  "Authorization Code %s button to open a new window where you can allow "
4000
  "Avtoriziraj. %s"
4001
 
4002
  #. translators: %s: HTML tags
4003
+ #: settings.php:3915
4004
  msgid ""
4005
  "If you get error, can't access ad units or would like to use own Google API "
4006
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4011
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
4012
 
4013
  #. translators: %s: HTML tags
4014
+ #: settings.php:3917
4015
  msgid ""
4016
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4017
  "Authorization Code %s button to open a new window where you can allow "
4024
  "gumb %s Avtoriziraj. %s"
4025
 
4026
  #. translators: %s: HTML tags
4027
+ #: settings.php:3924
4028
  msgid ""
4029
  "If you get error %s invalid client %s click on the button %s Clear and "
4030
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4032
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
4033
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
4034
 
4035
+ #: settings.php:3935
4036
  msgid "Get Authorization Code"
4037
  msgstr "Pridobi Avtoriazcijsko Kodo"
4038
 
4039
+ #: settings.php:3938
4040
  msgid "Enter Authorization Code"
4041
  msgstr "Vnesi Avorizacijsko Kodo"
4042
 
4043
+ #: settings.php:3948
4044
  msgid "Use own API IDs"
4045
  msgstr "Uporabi lastne API ID-je"
4046
 
4047
+ #: settings.php:3950
4048
  msgid "Clear and return to Step 1"
4049
  msgstr "Odstrani in se vrni na Korak 1"
4050
 
4051
+ #: settings.php:3954
4052
  msgid "Authorize"
4053
  msgstr "Avtoriziraj"
4054
 
4055
+ #: settings.php:3970
4056
  msgid "AdSense Integration - Step 1"
4057
  msgstr "Integracija AdSense - Korak 1"
4058
 
4059
  #. translators: %s: Ad Inserter
4060
+ #: settings.php:3974
4061
  msgid ""
4062
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4063
  "To do this you need to authorize %s to access your AdSense account. The "
4070
  "Klienta in Skrivnost Klienta."
4071
 
4072
  #. translators: %s: HTML tags
4073
+ #: settings.php:3983
4074
  msgid "Go to %s Google APIs and Services console %s"
4075
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4076
 
4077
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4078
+ #: settings.php:3984
4079
  msgid ""
4080
  "Create %1$s project - if the project and IDs are already created click on "
4081
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4084
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4085
 
4086
  #. translators: %s: HTML tags
4087
+ #: settings.php:3985
4088
  msgid ""
4089
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4090
  "create a new project"
4093
  "ustvaritev novega projekta"
4094
 
4095
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4096
+ #: settings.php:3986
4097
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4098
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4099
 
4100
  #. translators: %s: HTML tags
4101
+ #: settings.php:3987
4102
  msgid ""
4103
  "Click on project selection, wait for the project to be created and then and "
4104
  "select %s as the current project"
4107
  "izberite %s kot trenutni projekt"
4108
 
4109
  #. translators: %s: HTML tags
4110
+ #: settings.php:3988
4111
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4112
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4113
 
4114
  #. translators: %s: HTML tags
4115
+ #: settings.php:3989
4116
  msgid "Search for adsense and enable %s"
4117
  msgstr "Poiščite adsense in omogočite %s"
4118
 
4119
  #. translators: %s: HTML tags
4120
+ #: settings.php:3990
4121
  msgid "Click on %s CREATE CREDENTIALS %s"
4122
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4123
 
4124
  #. translators: %s: HTML tags
4125
+ #: settings.php:3991
4126
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4127
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4128
 
4129
  #. translators: %s: HTML tags
4130
+ #: settings.php:3992
4131
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4132
  msgstr ""
4133
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4134
  "podatki %s"
4135
 
4136
  #. translators: %s: HTML tags
4137
+ #: settings.php:3993
4138
  msgid "Click on %s What credentials do I need? %s"
4139
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4140
 
4141
  #. translators: %s: HTML tags
4142
+ #: settings.php:3994
4143
  msgid ""
4144
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4145
  "Ad Inserter client %s"
4148
  "%s Ad Inserter klient %s"
4149
 
4150
  #. translators: %s: HTML tags
4151
+ #: settings.php:3995
4152
  msgid ""
4153
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4154
  "enter %s"
4157
  "uporabnikom %s vnesite %s"
4158
 
4159
  #. translators: %s: HTML tags
4160
+ #: settings.php:3996
4161
  msgid "Click on %s Continue %s"
4162
  msgstr "Kliknite na %s Nadaljuj %s"
4163
 
4164
  #. translators: %s: HTML tags
4165
+ #: settings.php:3997
4166
  msgid "Click on %s Done %s"
4167
  msgstr "Kliknite na %s Končaj %s"
4168
 
4169
  #. translators: %s: HTML tags
4170
+ #: settings.php:3998
4171
  msgid ""
4172
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4173
  "secret %s"
4175
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
4176
  "Skrivnost klienta %s"
4177
 
4178
+ #: settings.php:3999
4179
  msgid "Copy them to the appropriate fields below"
4180
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4181
 
4182
+ #: settings.php:4005
4183
  msgid "Client ID"
4184
  msgstr "ID klienta"
4185
 
4186
+ #: settings.php:4008
4187
  msgid "Enter Client ID"
4188
  msgstr "Vnesite ID klienta"
4189
 
4190
+ #: settings.php:4013
4191
  msgid "Client secret"
4192
  msgstr "Skrivnost klienta"
4193
 
4194
+ #: settings.php:4016
4195
  msgid "Enter Client secret"
4196
  msgstr "Vnesite Skrivnost klienta"
4197
 
4198
+ #: settings.php:4026
4199
  msgid "Use default API IDs"
4200
  msgstr "Uporabi privzete API ID-je"
4201
 
4202
+ #: settings.php:4031
4203
  msgid "Save"
4204
  msgstr "Shrani"
4205
 
4206
+ #: settings.php:4307 settings.php:4320 settings.php:4333 settings.php:4348
4207
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4208
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4209
 
4210
+ #: settings.php:4312 settings.php:4325 settings.php:4338 settings.php:4353
4211
+ #: settings.php:4533 settings.php:4537 settings.php:4555 settings.php:4559
4212
+ #: settings.php:4567 settings.php:4570 settings.php:4576 settings.php:4588
4213
  msgid "Looking for AdSense alternative?"
4214
  msgstr "Iščete alternativo za AdSense?"
4215
 
4216
+ #: settings.php:4364
4217
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4218
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4219
 
4220
+ #: settings.php:4369 settings.php:4535 settings.php:4539 settings.php:4547
4221
+ #: settings.php:4573
4222
  msgid "Use Infolinks ads with Adsense to earn more"
4223
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4224
 
4225
+ #: settings.php:4388 settings.php:4426
4226
  msgid "Support plugin development"
4227
  msgstr "Podprite razvoj vtičnika"
4228
 
4229
+ #: settings.php:4389 settings.php:4427
4230
  msgid ""
4231
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4232
  "reviewing the plugin on WordPres"
4234
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4235
  "razširiti novico z oceno vtičnika na WordPress-u"
4236
 
4237
+ #: settings.php:4389
4238
  msgctxt "Review ad Inserter"
4239
  msgid "Review"
4240
  msgstr "Oceni"
4241
 
4242
+ #: settings.php:4390
4243
  msgid ""
4244
  "Support free Ad Inserter development. If you are making money with Ad "
4245
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4248
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4249
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4250
 
4251
+ #: settings.php:4390
4252
  msgid "Donate"
4253
  msgstr "Donirajte"
4254
 
4255
+ #: settings.php:4397 settings.php:4442
4256
  msgid "Average rating of the plugin - Thank you!"
4257
  msgstr "Povprečna ocena vtičnika - Hvala!"
4258
 
4259
  #. translators: %s: Ad Inserter, HTML tags
4260
+ #: settings.php:4408
4261
  msgid ""
4262
  "You've been using %s for a while now, and I hope you're happy with it. "
4263
  "Positive %s reviews %s are a great way to show your appreciation for my "
4271
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4272
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4273
 
4274
+ #: settings.php:4427
4275
  msgid "Review"
4276
  msgstr "Ocena"
4277
 
4278
+ #: settings.php:4431
4279
  msgid "Ad Inserter on Twitter"
4280
  msgstr "Ad Inserter na Twitter-ju"
4281
 
4282
+ #: settings.php:4432
4283
  msgid "Ad Inserter on Facebook"
4284
  msgstr "Ad Inserter na Facebook-u"
4285
 
4286
+ #: settings.php:4435
4287
  msgid "Follow Ad Inserter"
4288
  msgstr "Sledi Ad Inserter-ju"
4289
 
4290
  #. translators: %s: HTML tags
4291
+ #: settings.php:4462
4292
  msgid ""
4293
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4294
  "and %s Common Settings %s pages"
4297
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4298
 
4299
  #. translators: %s: HTML tags
4300
+ #: settings.php:4474
4301
  msgid ""
4302
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4303
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
4308
  "%s Infolinks %s oglasno kodo %s"
4309
 
4310
  #. translators: %s: HTML tags
4311
+ #: settings.php:4495
4312
  msgid ""
4313
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4314
  "purchase you refer to us"
4317
  "nakup, ki nam ga posredujete"
4318
 
4319
  #. translators: %s: HTML tags
4320
+ #: settings.php:4502
4321
  msgid ""
4322
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4323
  "diagnose and fix the problem."
4326
  "navodili za diagnozo in rešitvami za težave."
4327
 
4328
  #. translators: %s: HTML tags
4329
+ #: settings.php:4506
4330
  msgid ""
4331
  "If you need any kind of help or support, please do not hesitate to open a "
4332
  "thread on the %s support forum. %s"
4334
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4335
  "nit na %s podpornem forumu. %s"
4336
 
4337
+ #: settings.php:4551 settings.php:4592
4338
  msgid "A/B testing - Track ad impressions and clicks"
4339
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4340
 
4341
+ #: settings.php:4584 settings.php:4596
4342
  msgid "Code preview with visual CSS editor"
4343
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4344
 
4345
+ #: settings.php:4604
4346
  msgid "Looking for Pro Ad Management plugin?"
4347
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4348
 
4349
+ #: settings.php:4605
4350
  msgid "To Optimally Monetize your WordPress website?"
4351
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4352
 
4353
  #. translators: %s HTML tags
4354
+ #: settings.php:4608
4355
  msgid "%s AdSense Integration %s"
4356
  msgstr "%s Integracija AdSense %s"
4357
 
4358
  #. translators: %s HTML tags
4359
+ #: settings.php:4609
4360
  msgid "Syntax highlighting %s editor %s"
4361
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4362
 
4363
  #. translators: %s HTML tags
4364
+ #: settings.php:4610
4365
  msgid "%s Code preview %s with visual CSS editor"
4366
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4367
 
4368
  #. translators: %s HTML tags
4369
+ #: settings.php:4611
4370
  msgid "Simple user interface - all settings on a single page"
4371
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4372
 
4373
  #. translators: %s HTML tags
4374
+ #: settings.php:4612
4375
  msgid ""
4376
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4377
  "image / excerpt"
4380
  "%s / sliko / izvlečkom"
4381
 
4382
  #. translators: %s HTML tags
4383
+ #: settings.php:4613
4384
  msgid "%s Automatic insertion %s between posts on blog pages"
4385
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4386
 
4387
  #. translators: %s HTML tags
4388
+ #: settings.php:4614
4389
  msgid "%s Automatic insertion %s before, between and after comments"
4390
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4391
 
4392
  #. translators: %s HTML tags
4393
+ #: settings.php:4615
4394
  msgid "%s Automatic insertion %s after %s or before %s tag"
4395
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4396
 
4397
  #. translators: %s HTML tags
4398
+ #: settings.php:4616
4399
  msgid "Automatic insertion at %s custom hook positions %s"
4400
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4401
 
4402
  #. translators: %s HTML tags
4403
+ #: settings.php:4617
4404
  msgid ""
4405
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4406
  "selectors)"
4409
  "selektorjev)"
4410
 
4411
  #. translators: %s HTML tags
4412
+ #: settings.php:4618
4413
  msgid "%s Insertion exceptions %s for individual posts and pages"
4414
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4415
 
4416
  #. translators: %s HTML tags
4417
+ #: settings.php:4619
4418
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4419
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4420
 
4421
  #. translators: %s HTML tags
4422
+ #: settings.php:4620
4423
  msgid ""
4424
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4425
  "scrolls)"
4428
  "se stran pomika)"
4429
 
4430
  #. translators: %s HTML tags
4431
+ #: settings.php:4621
4432
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4433
  msgstr ""
4434
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4435
 
4436
  #. translators: %s HTML tags
4437
+ #: settings.php:4622
4438
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4439
  msgstr ""
4440
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4441
 
4442
  #. translators: %s HTML tags
4443
+ #: settings.php:4623
4444
  msgid ""
4445
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4446
  "visible)"
4449
  "postane viden)"
4450
 
4451
  #. translators: %s HTML tags
4452
+ #: settings.php:4624
4453
  msgid ""
4454
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4455
  msgstr ""
4457
  "strani)"
4458
 
4459
  #. translators: %s HTML tags
4460
+ #: settings.php:4625
4461
  msgid "Block %s alignment and style %s customizations"
4462
  msgstr "%s Poravnave in slogi %s bloka po meri"
4463
 
4464
  #. translators: %s HTML tags
4465
+ #: settings.php:4626
4466
  msgid ""
4467
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4468
  "TOS)"
4470
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4471
 
4472
  #. translators: %s HTML tags
4473
+ #: settings.php:4627
4474
  msgid ""
4475
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4476
  "feeds"
4479
  "virih"
4480
 
4481
  #. translators: %s HTML tags
4482
+ #: settings.php:4628
4483
  msgid "%s Ad rotation %s (works also with caching)"
4484
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4485
 
4486
  #. translators: %s HTML tags
4487
+ #: settings.php:4629
4488
  msgid "Create, edit and check %s ads.txt %s file"
4489
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
4490
 
4491
  #. translators: %s HTML tags
4492
+ #: settings.php:4630
4493
  msgid ""
4494
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4495
  "AdSense)"
4498
  "AdSense)"
4499
 
4500
  #. translators: %s HTML tags
4501
+ #: settings.php:4631
4502
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4503
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
4504
 
4505
  #. translators: %s HTML tags
4506
+ #: settings.php:4632
4507
  msgid "%s Public web reports %s for clients, export to PDF"
4508
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
4509
 
4510
  #. translators: %s HTML tags
4511
+ #: settings.php:4633
4512
  msgid "Support for %s A/B testing %s"
4513
  msgstr "Podpora za %s A/B testiranje %s"
4514
 
4515
  #. translators: %s HTML tags
4516
+ #: settings.php:4634
4517
  msgid "Support for %s lazy loading %s"
4518
  msgstr "Podpora za %s leno nalaganje %s"
4519
 
4520
  #. translators: %s HTML tags
4521
+ #: settings.php:4635
4522
  msgid "Support for ads on %s AMP pages %s"
4523
  msgstr "Podpora za oglase na %s AMP straneh %s"
4524
 
4525
  #. translators: %s HTML tags
4526
+ #: settings.php:4636
4527
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4528
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4529
 
4530
  #. translators: %s HTML tags
4531
+ #: settings.php:4637
4532
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4533
  msgstr ""
4534
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4535
 
4536
  #. translators: %s HTML tags
4537
+ #: settings.php:4638
4538
  msgid "PHP code processing"
4539
  msgstr "Procesiranje PHP kode"
4540
 
4541
  #. translators: %s HTML tags
4542
+ #: settings.php:4639
4543
  msgid "%s Banner %s code generator"
4544
  msgstr "Generator kode za %s pasice %s"
4545
 
4546
  #. translators: %s HTML tags
4547
+ #: settings.php:4640
4548
  msgid "Support for %s header and footer %s code"
4549
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4550
 
4551
  #. translators: %s HTML tags
4552
+ #: settings.php:4641
4553
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4554
  msgstr ""
4555
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4556
 
4557
  #. translators: %s HTML tags
4558
+ #: settings.php:4642
4559
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4560
  msgstr ""
4561
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4562
  "strežnika"
4563
 
4564
  #. translators: %s HTML tags
4565
+ #: settings.php:4643
4566
  msgid "Client-side %s mobile device detection %s (works with caching)"
4567
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4568
 
4569
  #. translators: %s HTML tags
4570
+ #: settings.php:4644
4571
  msgid ""
4572
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4573
  "protection"
4576
  "vsebine"
4577
 
4578
  #. translators: %s HTML tags
4579
+ #: settings.php:4645
4580
  msgid "%s Ad blocking statistics %s"
4581
  msgstr "%s Statistika blokiranja oglasov %s"
4582
 
4583
  #. translators: %s HTML tags
4584
+ #: settings.php:4646
4585
  msgid ""
4586
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4587
  "referers"
4589
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4590
 
4591
  #. translators: %s HTML tags
4592
+ #: settings.php:4647
4593
  msgid ""
4594
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4595
  msgstr ""
4596
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4597
 
4598
  #. translators: %s HTML tags
4599
+ #: settings.php:4648
4600
  msgid "%s Multisite options %s to limit settings on the sites"
4601
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4602
 
4603
  #. translators: %s HTML tags
4604
+ #: settings.php:4649
4605
  msgid "%s Import/Export %s block or plugin settings"
4606
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4607
 
4608
  #. translators: %s HTML tags
4609
+ #: settings.php:4650
4610
  msgid "%s Insertion scheduling %s with fallback option"
4611
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4612
 
4613
  #. translators: %s HTML tags
4614
+ #: settings.php:4651
4615
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4616
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4617
 
4618
  #. translators: %s HTML tags
4619
+ #: settings.php:4652
4620
  msgid "Simple troubleshooting with many %s debugging functions %s"
4621
  msgstr ""
4622
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4623
 
4624
  #. translators: %s HTML tags
4625
+ #: settings.php:4653
4626
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4627
  msgstr ""
4628
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4629
 
4630
  #. translators: %s HTML tags
4631
+ #: settings.php:4654
4632
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4633
  msgstr ""
4634
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4635
 
4636
  #. translators: %s HTML tags
4637
+ #: settings.php:4655
4638
  msgid ""
4639
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4640
  msgstr ""
4641
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4642
 
4643
  #. translators: %s HTML tags
4644
+ #: settings.php:4656
4645
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4646
  msgstr ""
4647
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
4648
 
4649
  #. translators: %s HTML tags
4650
+ #: settings.php:4657
4651
  msgid "No ads on the settings page"
4652
  msgstr "Stran z nastavitvami brez oglasov"
4653
 
4654
  #. translators: %s HTML tags
4655
+ #: settings.php:4658
4656
  msgid "Premium support"
4657
  msgstr "Vrhunska podpora"
4658
 
4659
  #. translators: %s HTML tags
4660
+ #: settings.php:4661
4661
  msgid ""
4662
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4663
  "website with many advertising features to automatically insert adverts on "
4684
  "bodo ohranile)."
4685
 
4686
  #. translators: %s HTML tags
4687
+ #: settings.php:4674
4688
  msgid "Looking for %s Pro Ad Management plugin? %s"
4689
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
4690
 
4691
  #. translators: %s HTML tags
4692
+ #: settings.php:4679
4693
  msgid "Ads between posts"
4694
  msgstr "Oglasi med prispevki"
4695
 
4696
  #. translators: %s HTML tags
4697
+ #: settings.php:4680
4698
  msgid "Ads between comments"
4699
  msgstr "Oglasi med komentarji"
4700
 
4701
  #. translators: %s HTML tags
4702
+ #: settings.php:4681
4703
  msgid "Support via email"
4704
  msgstr "Podpora prek elektronske pošte"
4705
 
4706
  #. translators: %s HTML tags
4707
+ #: settings.php:4687
4708
  msgid "%s Sticky positions %s"
4709
  msgstr "%s Lepljivi položaji %s"
4710
 
4711
  #. translators: %s HTML tags
4712
+ #: settings.php:4688
4713
  msgid "%s Limit insertions %s"
4714
  msgstr "%s Omeji vstavljanja %s"
4715
 
4716
  #. translators: %s HTML tags
4717
+ #: settings.php:4689
4718
  msgid "%s Clearance %s options"
4719
  msgstr "Možnosti %s izogibanja %s"
4720
 
4721
  #. translators: %s HTML tags
4722
+ #: settings.php:4695
4723
  msgid "Ad rotation"
4724
  msgstr "Vrtenje oglasov"
4725
 
4726
  #. translators: %s HTML tags
4727
+ #: settings.php:4696
4728
  msgid "%s A/B testing %s"
4729
  msgstr "%s A/B testiranje %s"
4730
 
4731
  #. translators: %s HTML tags
4732
+ #: settings.php:4697
4733
  msgid "%s Ad tracking %s"
4734
  msgstr "%s Sledenje oglasom %s"
4735
 
4736
  #. translators: %s HTML tags
4737
+ #: settings.php:4703
4738
  msgid "Support for %s AMP pages %s"
4739
  msgstr "Podpora za %s AMP strani %s"
4740
 
4741
  #. translators: %s HTML tags
4742
+ #: settings.php:4704
4743
  msgid "%s Ad blocking detection %s"
4744
  msgstr "%s Zaznavanje blokiranja oglasov %s"
4745
 
4746
  #. translators: %s HTML tags
4747
+ #: settings.php:4705
4748
  msgid "%s Mobile device detection %s"
4749
  msgstr "%s Zaznavanje mobilne naprave %s"
4750
 
4751
  #. translators: %s HTML tags
4752
+ #: settings.php:4712
4753
  msgid "64 code blocks"
4754
  msgstr "64 kodnih blokov"
4755
 
4756
  #. translators: %s HTML tags
4757
+ #: settings.php:4713
4758
  msgid "%s GEO targeting %s"
4759
  msgstr "%s GEO ciljanje %s"
4760
 
4761
  #. translators: %s HTML tags
4762
+ #: settings.php:4714
4763
  msgid "%s Scheduling %s"
4764
  msgstr "%s Urnik %s"
4765
 
5404
  msgstr ""
5405
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
5406
 
 
 
 
 
 
 
 
 
 
5407
  #: strings.php:201
5408
  msgid "Delete"
5409
  msgstr "Pobriši"
5542
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
5543
  "na optimalna mesta"
5544
 
5545
+ #~ msgid "days"
5546
+ #~ msgstr "dni"
5547
+
5548
+ #~ msgid "View details"
5549
+ #~ msgstr "Poglej podrobnosti"
5550
+
5551
+ #~ msgid "More information about %s"
5552
+ #~ msgstr "Za več informacij o %s"
5553
+
5554
+ #~ msgid "Check for updates"
5555
+ #~ msgstr "Preveri posodobitve"
5556
+
5557
+ #~ msgctxt "the plugin title"
5558
+ #~ msgid "The %s plugin is up to date."
5559
+ #~ msgstr "Vtičnik %s je posodobljen."
5560
+
5561
+ #~ msgctxt "the plugin title"
5562
+ #~ msgid "A new version of the %s plugin is available."
5563
+ #~ msgstr "Nova različica vtičnika %s je na voljo."
5564
+
5565
+ #~ msgctxt "the plugin title"
5566
+ #~ msgid "Could not determine if updates are available for %s."
5567
+ #~ msgstr "Ne morem ugotoviti ali so za %s na voljo posodobitve."
5568
+
5569
+ #, fuzzy
5570
+ #~| msgid "Update license status"
5571
+ #~ msgid "Unknown update checker status \"%s\""
5572
+ #~ msgstr "Posodobi status licence"
5573
+
5574
+ #~ msgid "There is no changelog available."
5575
+ #~ msgstr "Dnevnik sprememb ni na razpolago."
5576
+
5577
  #~ msgid "Enable tracking"
5578
  #~ msgstr "Omogoči sledenje"
5579
 
5928
  #~ msgid "Only required temporarily"
5929
  #~ msgstr "Potrebujem samo začasno"
5930
 
 
 
 
5931
  #~ msgid "Details (optional)"
5932
  #~ msgstr "Podrobnosti (izbirno)"
5933
 
5945
 
5946
  #~ msgid "Submit and Deactivate"
5947
  #~ msgstr "Pošlji in Onemogoči"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.4.18\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-06-13 19:59:55+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,463 +12,463 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:356
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:372
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:379
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:450
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:457
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:466
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:473
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:483
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
- #: ad-inserter.php:1080
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
- #: ad-inserter.php:1085
62
  msgid "After"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name Prepend content of HTML element (before
66
  #. the content of the HTML element)
67
- #: ad-inserter.php:1090 strings.php:98
68
  msgid "Prepend content"
69
  msgstr ""
70
 
71
  #. translators: Debugging position name Append content of HTML element (after
72
  #. the content of the HTML element)
73
- #: ad-inserter.php:1095 strings.php:99
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
- #: ad-inserter.php:1100 strings.php:100
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
- #: ad-inserter.php:1105 strings.php:150
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
- #: ad-inserter.php:1152
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
- #: ad-inserter.php:1156
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
- #: ad-inserter.php:1365
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
- #: ad-inserter.php:1646 ad-inserter.php:2498
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
- #: ad-inserter.php:2069
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
- #: ad-inserter.php:2069
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
- #: ad-inserter.php:2070
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
- #: ad-inserter.php:2071
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
- #: ad-inserter.php:2072
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
- #: ad-inserter.php:2073
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
- #: ad-inserter.php:2074
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
- #: ad-inserter.php:2269
138
  msgid "Hey, you are now using %1$s %2$s block."
139
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
- #: ad-inserter.php:2270 includes/functions.php:1530
144
  msgid "No, thank you."
145
  msgstr ""
146
 
147
  #. Translators: %s: Ad Inserter
148
- #: ad-inserter.php:2273
149
  msgid ""
150
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
151
  msgstr ""
152
 
153
- #: ad-inserter.php:2274 includes/functions.php:1533
154
  msgid "Not now, maybe later."
155
  msgstr ""
156
 
157
- #: ad-inserter.php:2284
158
  msgid "I would really appreciate if you could rate the plugin on WordPres."
159
  msgstr ""
160
 
161
- #: ad-inserter.php:2286
162
  msgid ""
163
  "Positive reviews are a great incentive to fix bugs and to add new features "
164
  "for better monetization of your website. Thank you, Igor"
165
  msgstr ""
166
 
167
  #. translators: %s: Ad Inserter
168
- #: ad-inserter.php:2292
169
  msgid "Rate %s"
170
  msgstr ""
171
 
172
- #: ad-inserter.php:2297
173
  msgid "I already did."
174
  msgstr ""
175
 
176
- #: ad-inserter.php:2311
177
  msgctxt "Menu item"
178
  msgid "Settings"
179
  msgstr ""
180
 
181
  #. translators: %s: Ad Inserter
182
- #: ad-inserter.php:2385
183
  msgctxt "Meta box name"
184
  msgid "%s Individual Exceptions"
185
  msgstr ""
186
 
187
- #: ad-inserter.php:2414 ad-inserter.php:8160 class.php:1967
188
  #: includes/preview.php:1976 includes/preview.php:2020
189
- #: includes/preview.php:2057 settings.php:3704 strings.php:3
190
  msgid "Block"
191
  msgstr ""
192
 
193
- #: ad-inserter.php:2415 settings.php:3705 settings.php:3779
194
  msgid "Name"
195
  msgstr ""
196
 
197
- #: ad-inserter.php:2416 settings.php:3707
198
  msgid "Automatic insertion"
199
  msgstr ""
200
 
201
- #: ad-inserter.php:2419
202
  msgid "Default insertion for pages"
203
  msgstr ""
204
 
205
- #: ad-inserter.php:2420
206
  msgid "Default insertion for posts"
207
  msgstr ""
208
 
209
  #. translators: For this post or page
210
- #: ad-inserter.php:2423
211
  msgctxt "Page"
212
  msgid "For this"
213
  msgstr ""
214
 
215
- #: ad-inserter.php:2424
216
  msgctxt "Post"
217
  msgid "For this"
218
  msgstr ""
219
 
220
- #: ad-inserter.php:2432
221
  msgctxt "Enabled/disabled on all"
222
  msgid "pages"
223
  msgstr ""
224
 
225
- #: ad-inserter.php:2433
226
  msgctxt "Default insertion for"
227
  msgid "pages"
228
  msgstr ""
229
 
230
- #: ad-inserter.php:2437
231
  msgctxt "Enabled/disabled on all"
232
  msgid "posts"
233
  msgstr ""
234
 
235
- #: ad-inserter.php:2438
236
  msgctxt "Default insertion for"
237
  msgid "posts"
238
  msgstr ""
239
 
240
- #: ad-inserter.php:2457 ad-inserter.php:2470 strings.php:156
241
  msgid "Enabled"
242
  msgstr ""
243
 
244
  #. translators: Menu items
245
- #: ad-inserter.php:2457 ad-inserter.php:2470 includes/functions.php:2191
246
  #: strings.php:16
247
  msgid "Disabled"
248
  msgstr ""
249
 
250
  #. translators: Enabled on all pages or posts
251
- #: ad-inserter.php:2460
252
  msgid "Enabled on all"
253
  msgstr ""
254
 
255
  #. translators: Disabled on all pages or posts
256
- #: ad-inserter.php:2462
257
  msgid "Disabled on all"
258
  msgstr ""
259
 
260
  #. translators: No individual exceptions enabled for pages or posts
261
- #: ad-inserter.php:2490
262
  msgid "No individual exceptions enabled for"
263
  msgstr ""
264
 
265
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
266
- #: ad-inserter.php:2495
267
  msgid ""
268
  "Default insertion for %1$s can be configured for each block on %2$s page - "
269
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
270
  "checkbox.<br />"
271
  msgstr ""
272
 
273
- #: ad-inserter.php:2500
274
  msgid ""
275
  "Default value is <strong>blank</strong> and means no individual exceptions "
276
  "(even if previously defined here).<br />"
277
  msgstr ""
278
 
279
- #: ad-inserter.php:2503
280
  msgctxt "Pages"
281
  msgid ""
282
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
283
  "enabled</strong> to enable individual exception settings on this page.<br />"
284
  msgstr ""
285
 
286
- #: ad-inserter.php:2504
287
  msgctxt "Posts"
288
  msgid ""
289
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
290
  "enabled</strong> to enable individual exception settings on this page.<br />"
291
  msgstr ""
292
 
293
- #: ad-inserter.php:2506
294
  msgid "For more information check page %s"
295
  msgstr ""
296
 
297
  #. translators: Ad Inserter Exceptions documentation page
298
- #: ad-inserter.php:2508
299
  msgid "Individual Exceptions"
300
  msgstr ""
301
 
302
- #: ad-inserter.php:2555
303
  msgid "STATIC PAGE"
304
  msgstr ""
305
 
306
- #: ad-inserter.php:2558
307
  msgid "POST"
308
  msgstr ""
309
 
310
- #: ad-inserter.php:2561
311
  msgid "HOMEPAGE"
312
  msgstr ""
313
 
314
- #: ad-inserter.php:2564
315
  msgid "CATEGORY PAGE"
316
  msgstr ""
317
 
318
- #: ad-inserter.php:2567
319
  msgid "SEARCH PAGE"
320
  msgstr ""
321
 
322
- #: ad-inserter.php:2570
323
  msgid "ARCHIVE PAGE"
324
  msgstr ""
325
 
326
- #: ad-inserter.php:2573
327
  msgid "ERROR 404 PAGE"
328
  msgstr ""
329
 
330
- #: ad-inserter.php:2576
331
  msgid "AJAX CALL"
332
  msgstr ""
333
 
334
- #: ad-inserter.php:2579
335
  msgid "UNKNOWN PAGE TYPE"
336
  msgstr ""
337
 
338
- #: ad-inserter.php:2596
339
  msgid "Click to delete ad blocking detection cokies"
340
  msgstr ""
341
 
342
- #: ad-inserter.php:2597
343
  msgid "AD BLOCKING STATUS UNKNOWN"
344
  msgstr ""
345
 
346
  #. translators: %s: AdSense Auto Ads
347
- #: ad-inserter.php:2621
348
  msgid ""
349
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
350
  "positions"
351
  msgstr ""
352
 
353
- #: ad-inserter.php:2760
354
  msgid "Code for insertion"
355
  msgstr ""
356
 
357
- #: ad-inserter.php:2760
358
  msgid "character"
359
  msgid_plural "characters"
360
  msgstr[0] ""
361
  msgstr[1] ""
362
 
363
- #: ad-inserter.php:2803
364
  msgid "Header code"
365
  msgstr ""
366
 
367
- #: ad-inserter.php:2803
368
  msgctxt "Header code"
369
  msgid "DISABLED"
370
  msgstr ""
371
 
372
- #: ad-inserter.php:2803 ad-inserter.php:3025
373
  msgid "character inserted"
374
  msgid_plural "characters inserted"
375
  msgstr[0] ""
376
  msgstr[1] ""
377
 
378
- #: ad-inserter.php:2836
379
  msgid "Automatically placed by AdSense Auto ads code"
380
  msgstr ""
381
 
382
- #: ad-inserter.php:3025
383
  msgid "Footer code"
384
  msgstr ""
385
 
386
- #: ad-inserter.php:3025
387
  msgctxt "Footer code"
388
  msgid "DISABLED"
389
  msgstr ""
390
 
391
- #: ad-inserter.php:3031
392
  msgid "JAVASCRIPT NOT WORKING"
393
  msgstr ""
394
 
395
- #: ad-inserter.php:3031
396
  msgid "NO JAVASCRIPT ERRORS"
397
  msgstr ""
398
 
399
- #: ad-inserter.php:3031
400
  msgid "JAVASCRIPT ERRORS"
401
  msgstr ""
402
 
403
  #. translators: block name (block with default settings)
404
- #: ad-inserter.php:5163
405
  msgctxt "Block name"
406
  msgid "Default"
407
  msgstr ""
408
 
409
  #. translators: %s: Ad Inserter
410
- #: ad-inserter.php:5734
411
  msgid "Error importing %s settings."
412
  msgstr ""
413
 
414
- #: ad-inserter.php:5735
415
  msgid "Error importing settings for block"
416
  msgid_plural "Error importing settings for blocks:"
417
  msgstr[0] ""
418
  msgstr[1] ""
419
 
420
- #: ad-inserter.php:5784
421
  msgid "Settings saved."
422
  msgstr ""
423
 
424
- #: ad-inserter.php:5869
425
  msgid "Settings cleared."
426
  msgstr ""
427
 
428
- #: ad-inserter.php:6214 ad-inserter.php:6216 ad-inserter.php:6239
429
  msgid "word"
430
  msgid_plural "words"
431
  msgstr[0] ""
432
  msgstr[1] ""
433
 
434
- #: ad-inserter.php:6253 ad-inserter.php:6365
435
  msgid "HTML TAGS REMOVED"
436
  msgstr ""
437
 
438
- #: ad-inserter.php:6441
439
  msgid "BEFORE COMMENTS"
440
  msgstr ""
441
 
442
- #: ad-inserter.php:6549
443
  msgid "AFTER COMMENTS"
444
  msgstr ""
445
 
446
- #: ad-inserter.php:6612
447
  msgid "BETWEEN COMMENTS"
448
  msgstr ""
449
 
450
- #: ad-inserter.php:7800
451
  msgid "requires WordPress 4.0 or newer"
452
  msgstr ""
453
 
454
- #: ad-inserter.php:7800
455
  msgid "Please update!"
456
  msgstr ""
457
 
458
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
459
  #. name with HTML tags will be added)
460
- #: ad-inserter.php:8033
461
  msgid "Thank you for installing"
462
  msgstr ""
463
 
464
  #. translators: Opt-in message: %s: HTML tags
465
- #: ad-inserter.php:8035
466
  msgid ""
467
  "We would like to %s track its usage %s on your site. This is completely "
468
  "optional and can be disabled at any time."
469
  msgstr ""
470
 
471
- #: ad-inserter.php:8037
472
  msgid ""
473
  "We don't record any sensitive data, only information regarding the WordPress "
474
  "environment and plugin usage, which will help us to make improvements to the "
@@ -476,7 +476,7 @@ msgid ""
476
  msgstr ""
477
 
478
  #. translators: Deactivation message: %s: HTML tags
479
- #: ad-inserter.php:8074
480
  msgid ""
481
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
482
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -484,55 +484,55 @@ msgid ""
484
  msgstr ""
485
 
486
  #. translators: %s: Ad Inserter
487
- #: ad-inserter.php:8117
488
  msgid "%s block."
489
  msgstr ""
490
 
491
  #. translators: widget title
492
- #: ad-inserter.php:8133 ad-inserter.php:8169
493
  msgid "Processing log"
494
  msgstr ""
495
 
496
  #. translators: widget title
497
- #: ad-inserter.php:8135 ad-inserter.php:8170
498
  msgid "Dummy widget"
499
  msgstr ""
500
 
501
  #. translators: widget title
502
- #: ad-inserter.php:8137 ad-inserter.php:8168
503
  msgid "Debugging tools"
504
  msgstr ""
505
 
506
  #. translators: block status (widget title)
507
- #: ad-inserter.php:8144
508
  msgctxt "block"
509
  msgid "PAUSED"
510
  msgstr ""
511
 
512
- #: ad-inserter.php:8145
513
  msgid "WIDGET DISABLED"
514
  msgstr ""
515
 
516
- #: ad-inserter.php:8146
517
  msgid "Unknown block"
518
  msgstr ""
519
 
520
- #: ad-inserter.php:8155 includes/functions.php:2721 settings.php:1045
521
  msgid "Title"
522
  msgstr ""
523
 
524
- #: ad-inserter.php:8177
525
  msgctxt "Widget"
526
  msgid "Sticky"
527
  msgstr ""
528
 
529
- #: ad-inserter.php:8226
530
  msgid ""
531
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
532
  "Inserter you need to first deactivate Ad Inserter Pro."
533
  msgstr ""
534
 
535
- #: ad-inserter.php:8227
536
  msgid ""
537
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
538
  "will clear all settings that are available only in the Pro version "
@@ -544,130 +544,130 @@ msgstr ""
544
  msgid "PHP error in %s block"
545
  msgstr ""
546
 
547
- #: class.php:1933
548
  msgid "Counters"
549
  msgstr ""
550
 
551
- #: class.php:1937
552
  msgid "Content"
553
  msgstr ""
554
 
555
- #: class.php:1942
556
  msgid "Excerpt"
557
  msgstr ""
558
 
559
- #: class.php:1947 strings.php:17
560
  msgid "Before post"
561
  msgstr ""
562
 
563
- #: class.php:1952 strings.php:18
564
  msgid "After post"
565
  msgstr ""
566
 
567
- #: class.php:1957 settings.php:1631 settings.php:3711
568
  msgid "Widget"
569
  msgstr ""
570
 
571
- #: class.php:1962 settings.php:3709
572
  msgid "PHP function call"
573
  msgstr ""
574
 
575
- #: class.php:1997
576
  msgid "AJAX REQUEST"
577
  msgstr ""
578
 
579
- #: class.php:2000
580
  msgid "Ajax request for block in iframe"
581
  msgstr ""
582
 
583
- #: class.php:2030
584
  msgid "Ajax request url, click to open it in a new tab"
585
  msgstr ""
586
 
587
- #: class.php:2033
588
  msgid "IN THE LOOP"
589
  msgstr ""
590
 
591
- #: class.php:2033
592
  msgid "YES"
593
  msgstr ""
594
 
595
- #: class.php:2033
596
  msgid "NO"
597
  msgstr ""
598
 
599
- #: class.php:2069
600
  msgid "BLOCK"
601
  msgstr ""
602
 
603
- #: class.php:2069
604
  msgctxt "block or widget"
605
  msgid "INSERTED BUT NOT VISIBLE"
606
  msgstr ""
607
 
608
- #: class.php:2411 class.php:2470
609
  msgid "ACTIVE GROUPS"
610
  msgstr ""
611
 
612
  #. translators: %s: list parameters and type
613
- #: class.php:2645
614
  msgid "parameters='%s' type='%s'"
615
  msgstr ""
616
 
617
  #. translators: %s: list parameters and type
618
- #: class.php:2647
619
  msgid "referers='%s' type='%s'"
620
  msgstr ""
621
 
622
  #. translators: %s: list parameters and type
623
- #: class.php:2708
624
  msgid "countries='%s' type='%s'"
625
  msgstr ""
626
 
627
  #. translators: %s: list parameters and type
628
- #: class.php:2710
629
  msgid "ip addresses='%s' type='%s'"
630
  msgstr ""
631
 
632
- #: class.php:2944 strings.php:232
633
  msgid "BEFORE"
634
  msgstr ""
635
 
636
- #: class.php:2952 strings.php:234
637
  msgid "PREPEND CONTENT"
638
  msgstr ""
639
 
640
- #: class.php:2956 strings.php:235
641
  msgid "APPEND CONTENT"
642
  msgstr ""
643
 
644
- #: class.php:2960 strings.php:236
645
  msgid "REPLACE CONTENT"
646
  msgstr ""
647
 
648
- #: class.php:2964 strings.php:237
649
  msgid "REPLACE ELEMENT"
650
  msgstr ""
651
 
652
- #: class.php:2975 strings.php:233
653
  msgid "AFTER"
654
  msgstr ""
655
 
656
- #: class.php:3042
657
  msgctxt "JavaScript"
658
  msgid "script"
659
  msgstr ""
660
 
661
- #: class.php:3045 settings.php:1900
662
  msgid "for"
663
  msgstr ""
664
 
665
- #: class.php:5593 class.php:5645
666
  msgctxt "category name"
667
  msgid "Uncategorized"
668
  msgstr ""
669
 
670
- #: class.php:6138
671
  msgid ""
672
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
673
  "extension for PHP."
@@ -707,523 +707,523 @@ msgstr ""
707
  msgid "PAGE BLOCKED"
708
  msgstr ""
709
 
710
- #: includes/functions.php:254
711
  msgid "%d of %d names shown"
712
  msgstr ""
713
 
714
  #. translators: %s: name filter
715
- #: includes/functions.php:273
716
  msgid "No name matches filter"
717
  msgstr ""
718
 
719
- #: includes/functions.php:329 settings.php:174
720
  msgid "Online documentation"
721
  msgstr ""
722
 
723
- #: includes/functions.php:329 settings.php:174
724
  msgid "Documentation"
725
  msgstr ""
726
 
727
- #: includes/functions.php:342 settings.php:187
728
  msgid "Blocks"
729
  msgstr ""
730
 
731
  #. translators: %s: Ad Inserter Pro
732
- #: includes/functions.php:365
733
  msgid ""
734
  "Import %s settings when saving - if checked, the encoded settings below will "
735
  "be imported for all blocks and settings"
736
  msgstr ""
737
 
738
- #: includes/functions.php:365
739
  msgid "Import Settings for"
740
  msgstr ""
741
 
742
- #: includes/functions.php:369
743
  msgid "Saved settings for"
744
  msgstr ""
745
 
746
- #: includes/functions.php:388
747
  msgid "License Key"
748
  msgstr ""
749
 
750
- #: includes/functions.php:391
751
  msgid "License Key for"
752
  msgstr ""
753
 
754
- #: includes/functions.php:397
755
  msgid "Hide license key"
756
  msgstr ""
757
 
758
- #: includes/functions.php:397
759
  msgid "Hide key"
760
  msgstr ""
761
 
762
- #: includes/functions.php:418
763
  msgid "Main content element"
764
  msgstr ""
765
 
766
- #: includes/functions.php:421
767
  msgid ""
768
  "Main content element (#id or .class) for 'Stick to the content' position. "
769
  "Leave empty unless position is not properly calculated."
770
  msgstr ""
771
 
772
- #: includes/functions.php:422 settings.php:1201 settings.php:2519
773
  msgid "Open HTML element selector"
774
  msgstr ""
775
 
776
- #: includes/functions.php:427
777
  msgid "Lazy loading offset"
778
  msgstr ""
779
 
780
- #: includes/functions.php:430
781
  msgid "Offset of the block from the visible viewport when it should be loaded"
782
  msgstr ""
783
 
784
- #: includes/functions.php:441
785
  msgid "Export / Import Block Settings"
786
  msgstr ""
787
 
788
- #: includes/functions.php:456
789
  msgid "Track impressions and clicks for this block"
790
  msgstr ""
791
 
792
- #: includes/functions.php:456
793
  msgid " - global tracking disabled"
794
  msgstr ""
795
 
796
- #: includes/functions.php:463
797
  msgid "Generate PDF report"
798
  msgstr ""
799
 
800
- #: includes/functions.php:468
801
  msgid "Open public report"
802
  msgstr ""
803
 
804
- #: includes/functions.php:482
805
  msgid "Toggle Ad Blocking Statistics"
806
  msgstr ""
807
 
808
- #: includes/functions.php:490 includes/functions.php:2518
809
  msgid "Toggle Statistics"
810
  msgstr ""
811
 
812
  #. translators: %s: Ad Inserter Pro
813
- #: includes/functions.php:506
814
  msgid "%s license key is not set. Continue?"
815
  msgstr ""
816
 
817
  #. translators: %s: Ad Inserter Pro
818
- #: includes/functions.php:510
819
  msgid "Invalid %s license key. Continue?"
820
  msgstr ""
821
 
822
  #. translators: %s: Ad Inserter Pro
823
- #: includes/functions.php:514
824
  msgid "%s license overused. Continue?"
825
  msgstr ""
826
 
827
- #: includes/functions.php:518 settings.php:1970
828
  msgid "Save Settings"
829
  msgstr ""
830
 
831
- #: includes/functions.php:578 includes/preview.php:2106
832
  msgid "Horizontal position"
833
  msgstr ""
834
 
835
- #: includes/functions.php:601
836
  msgid ""
837
  "Horizontal margin from the content or screen edge, empty means default value "
838
  "from CSS"
839
  msgstr ""
840
 
841
- #: includes/functions.php:609 includes/preview.php:2161
842
  msgid "Vertical position"
843
  msgstr ""
844
 
845
- #: includes/functions.php:624
846
  msgid ""
847
  "Vertical margin from the top or bottom screen edge, empty means default "
848
  "value from CSS"
849
  msgstr ""
850
 
851
- #: includes/functions.php:649 includes/preview.php:2212
852
  msgid "Animation"
853
  msgstr ""
854
 
855
- #: includes/functions.php:667
856
  msgid "Trigger"
857
  msgstr ""
858
 
859
- #: includes/functions.php:676
860
  msgid ""
861
  "Trigger value: page scroll in %, page scroll in px or element with selector "
862
  "(#id or .class) becomes visible"
863
  msgstr ""
864
 
865
- #: includes/functions.php:680
866
  msgid "Offset"
867
  msgstr ""
868
 
869
- #: includes/functions.php:680
870
  msgid "Offset of trigger element"
871
  msgstr ""
872
 
873
- #: includes/functions.php:684
874
  msgid "Delay"
875
  msgstr ""
876
 
877
- #: includes/functions.php:684
878
  msgid "Delay animation after trigger condition"
879
  msgstr ""
880
 
881
- #: includes/functions.php:688
882
  msgid "Trigger once"
883
  msgstr ""
884
 
885
- #: includes/functions.php:690
886
  msgid "Trigger animation only once"
887
  msgstr ""
888
 
889
- #: includes/functions.php:732
890
  msgid "Tracking is globally disabled"
891
  msgstr ""
892
 
893
- #: includes/functions.php:736
894
  msgid "Tracking for this block is disabled"
895
  msgstr ""
896
 
897
- #: includes/functions.php:743
898
  msgid "Double click to toggle controls in public reports"
899
  msgstr ""
900
 
901
- #: includes/functions.php:749 settings.php:3205 settings.php:3241
902
- #: settings.php:3284 strings.php:212
903
  msgid "Loading..."
904
  msgstr ""
905
 
906
- #: includes/functions.php:770
907
  msgid ""
908
  "Clear statistics data for the selected range - clear both dates to delete "
909
  "all data for this block"
910
  msgstr ""
911
 
912
- #: includes/functions.php:774
913
  msgid "Auto refresh data for the selected range every 60 seconds"
914
  msgstr ""
915
 
916
- #: includes/functions.php:777 includes/functions.php:4735
917
  msgid "Load data for last month"
918
  msgstr ""
919
 
920
- #: includes/functions.php:777 includes/functions.php:4735
921
  msgid "Last Month"
922
  msgstr ""
923
 
924
- #: includes/functions.php:780 includes/functions.php:4738
925
  msgid "Load data for this month"
926
  msgstr ""
927
 
928
- #: includes/functions.php:780 includes/functions.php:4738
929
  msgid "This Month"
930
  msgstr ""
931
 
932
- #: includes/functions.php:783 includes/functions.php:4741
933
  msgid "Load data for this year"
934
  msgstr ""
935
 
936
- #: includes/functions.php:783 includes/functions.php:4741
937
  msgid "This Year"
938
  msgstr ""
939
 
940
- #: includes/functions.php:786 includes/functions.php:4744
941
  msgid "Load data for the last 15 days"
942
  msgstr ""
943
 
944
- #: includes/functions.php:789 includes/functions.php:4747
945
  msgid "Load data for the last 30 days"
946
  msgstr ""
947
 
948
- #: includes/functions.php:792 includes/functions.php:4750
949
  msgid "Load data for the last 90 days"
950
  msgstr ""
951
 
952
- #: includes/functions.php:795 includes/functions.php:4753
953
  msgid "Load data for the last 180 days"
954
  msgstr ""
955
 
956
- #: includes/functions.php:798 includes/functions.php:4756
957
  msgid "Load data for the last 365 days"
958
  msgstr ""
959
 
960
- #: includes/functions.php:808 includes/functions.php:4766
961
  msgid "Load data for the selected range"
962
  msgstr ""
963
 
964
- #: includes/functions.php:824
965
  msgid ""
966
  "Import settings when saving - if checked, the encoded settings below will be "
967
  "imported for this block"
968
  msgstr ""
969
 
970
- #: includes/functions.php:824
971
  msgid "Import settings for block"
972
  msgstr ""
973
 
974
- #: includes/functions.php:828
975
  msgid ""
976
  "Import block name when saving - if checked and 'Import settings for block' "
977
  "is also checked, the name from encoded settings below will be imported for "
978
  "this block"
979
  msgstr ""
980
 
981
- #: includes/functions.php:828
982
  msgid "Import block name"
983
  msgstr ""
984
 
985
- #: includes/functions.php:832
986
  msgid "Saved settings for block"
987
  msgstr ""
988
 
989
- #: includes/functions.php:845
990
  msgid "Export / Import Ad Inserter Pro Settings"
991
  msgstr ""
992
 
993
- #: includes/functions.php:855
994
  msgid "Are you sure you want to clear all statistics data for all blocks?"
995
  msgstr ""
996
 
997
- #: includes/functions.php:857
998
  msgid "Clear All Statistics Data"
999
  msgstr ""
1000
 
1001
- #: includes/functions.php:884
1002
  msgid "Toggle country/city editor"
1003
  msgstr ""
1004
 
1005
- #: includes/functions.php:890
1006
  msgid "IP Addresses"
1007
  msgstr ""
1008
 
1009
- #: includes/functions.php:893
1010
  msgid "Toggle IP address editor"
1011
  msgstr ""
1012
 
1013
- #: includes/functions.php:896
1014
  msgid ""
1015
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1016
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1017
  msgstr ""
1018
 
1019
- #: includes/functions.php:900
1020
  msgid "Blacklist IP addresses"
1021
  msgstr ""
1022
 
1023
- #: includes/functions.php:904
1024
  msgid "Whitelist IP addresses"
1025
  msgstr ""
1026
 
1027
- #: includes/functions.php:915
1028
  msgid "Countries"
1029
  msgstr ""
1030
 
1031
- #: includes/functions.php:916
1032
  msgid "Cities"
1033
  msgstr ""
1034
 
1035
- #: includes/functions.php:920 includes/functions.php:2483
1036
  msgid "Toggle country editor"
1037
  msgstr ""
1038
 
1039
- #: includes/functions.php:923
1040
  msgid "Toggle city editor"
1041
  msgstr ""
1042
 
1043
- #: includes/functions.php:927 includes/functions.php:2486
1044
  msgid "Comma separated country ISO Alpha-2 codes"
1045
  msgstr ""
1046
 
1047
- #: includes/functions.php:931
1048
  msgid "Blacklist countries"
1049
  msgstr ""
1050
 
1051
- #: includes/functions.php:935
1052
  msgid "Whitelist countries"
1053
  msgstr ""
1054
 
1055
- #: includes/functions.php:1251 includes/functions.php:1486
1056
  msgid "Enter license key"
1057
  msgstr ""
1058
 
1059
  #. translators: %s: Ad Inserter Pro
1060
- #: includes/functions.php:1257
1061
  msgid ""
1062
  "%s license key is not set. Plugin functionality is limited and updates are "
1063
  "disabled."
1064
  msgstr ""
1065
 
1066
- #: includes/functions.php:1269 includes/functions.php:1495
1067
  msgid "Check license key"
1068
  msgstr ""
1069
 
1070
  #. translators: %s: Ad Inserter Pro
1071
- #: includes/functions.php:1275
1072
  msgid "Invalid %s license key."
1073
  msgstr ""
1074
 
1075
  #. translators: %s: Ad Inserter Pro
1076
- #: includes/functions.php:1284
1077
  msgid "%s license expired. Plugin updates are disabled."
1078
  msgstr ""
1079
 
1080
- #: includes/functions.php:1285
1081
  msgid "Renew license"
1082
  msgstr ""
1083
 
1084
  #. translators: %s: Ad Inserter Pro
1085
- #: includes/functions.php:1293
1086
  msgid "%s license overused. Plugin updates are disabled."
1087
  msgstr ""
1088
 
1089
- #: includes/functions.php:1294
1090
  msgid "Manage licenses"
1091
  msgstr ""
1092
 
1093
- #: includes/functions.php:1294
1094
  msgid "Upgrade license"
1095
  msgstr ""
1096
 
1097
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1098
- #: includes/functions.php:1488
1099
  msgid ""
1100
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1101
  "limited and updates are disabled."
1102
  msgstr ""
1103
 
1104
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1105
- #: includes/functions.php:1497
1106
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1107
  msgstr ""
1108
 
1109
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1110
- #: includes/functions.php:1513
1111
  msgid ""
1112
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1113
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1114
  msgstr ""
1115
 
1116
  #. translators: 1, 3: HTML tags, 2: percentage
1117
- #: includes/functions.php:1520
1118
  msgid ""
1119
  "During the license period and 30 days after the license has expired we offer "
1120
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1121
  msgstr ""
1122
 
1123
- #: includes/functions.php:1547
1124
  msgid "Renew the licence"
1125
  msgstr ""
1126
 
1127
- #: includes/functions.php:1549
1128
  msgid "Update license status"
1129
  msgstr ""
1130
 
1131
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1132
- #: includes/functions.php:1560
1133
  msgid ""
1134
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1135
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1136
  msgstr ""
1137
 
1138
  #. Translators: %s: HTML tag
1139
- #: includes/functions.php:1582
1140
  msgid "Warning: %s MaxMind IP geolocation database not found."
1141
  msgstr ""
1142
 
1143
- #: includes/functions.php:2120
1144
  msgid "Geolocation"
1145
  msgstr ""
1146
 
1147
- #: includes/functions.php:2124
1148
  msgid "Exceptions"
1149
  msgstr ""
1150
 
1151
- #: includes/functions.php:2129
1152
  msgid "Multisite"
1153
  msgstr ""
1154
 
1155
- #: includes/functions.php:2134
1156
  msgid "Tracking"
1157
  msgstr ""
1158
 
1159
  #. translators: %d: days, hours, minutes
1160
- #: includes/functions.php:2165
1161
  msgid "Scheduled in %d days %d hours %d minutes"
1162
  msgstr ""
1163
 
1164
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1165
  #. HTML code for long dash separator
1166
- #: includes/functions.php:2174
1167
  msgid "Active %s expires in %d days %d hours %d minutes"
1168
  msgstr ""
1169
 
1170
- #: includes/functions.php:2178
1171
  msgid "Expired"
1172
  msgstr ""
1173
 
1174
- #: includes/functions.php:2186 settings.php:1284 settings.php:1299
1175
- #: settings.php:1886
1176
  msgid "and"
1177
  msgstr ""
1178
 
1179
- #: includes/functions.php:2189
1180
  msgid "fallback"
1181
  msgstr ""
1182
 
1183
- #: includes/functions.php:2190
1184
  msgid "Block to be used when scheduling expires"
1185
  msgstr ""
1186
 
1187
- #: includes/functions.php:2215
1188
  msgid "Load in iframe"
1189
  msgstr ""
1190
 
1191
- #: includes/functions.php:2219 includes/placeholders.php:389
1192
  msgid "Width"
1193
  msgstr ""
1194
 
1195
- #: includes/functions.php:2220
1196
  msgid "iframe width, empty means full width (100%)"
1197
  msgstr ""
1198
 
1199
- #: includes/functions.php:2226 includes/placeholders.php:384
1200
  msgid "Height"
1201
  msgstr ""
1202
 
1203
- #: includes/functions.php:2227
1204
  msgid "iframe height, empty means adjust it to iframe content height"
1205
  msgstr ""
1206
 
1207
- #: includes/functions.php:2234
1208
  msgid "Ad label in iframe"
1209
  msgstr ""
1210
 
1211
- #: includes/functions.php:2239
1212
  msgid "Preview iframe code"
1213
  msgstr ""
1214
 
1215
- #: includes/functions.php:2239 includes/preview.php:1974 settings.php:961
1216
- #: settings.php:2581
1217
  msgid "Preview"
1218
  msgstr ""
1219
 
1220
- #: includes/functions.php:2253 includes/functions.php:3794
1221
- #: includes/functions.php:3857 settings.php:2023
1222
  msgid "Ad Blocking"
1223
  msgstr ""
1224
 
1225
  #. translators: 1, 2 and 3, 4: HTML tags
1226
- #: includes/functions.php:2262
1227
  msgid ""
1228
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1229
  "for tracking!"
@@ -1231,290 +1231,351 @@ msgstr ""
1231
 
1232
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1233
  #. header
1234
- #: includes/functions.php:2271
1235
  msgid ""
1236
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1237
  "enabled and automatic insertion %6$s!"
1238
  msgstr ""
1239
 
1240
- #: includes/functions.php:2289
1241
  msgid "When ad blocking is detected"
1242
  msgstr ""
1243
 
1244
- #: includes/functions.php:2298
1245
  msgid "replacement"
1246
  msgstr ""
1247
 
1248
- #: includes/functions.php:2299
1249
  msgid "Block to be shown when ad blocking is detected"
1250
  msgstr ""
1251
 
1252
- #: includes/functions.php:2300
1253
  msgctxt "replacement"
1254
  msgid "None"
1255
  msgstr ""
1256
 
1257
- #: includes/functions.php:2317
1258
  msgid "Close button"
1259
  msgstr ""
1260
 
1261
- #: includes/functions.php:2364
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1262
  msgid "Lazy loading"
1263
  msgstr ""
1264
 
1265
  #. Translators: %s MaxMind
1266
- #: includes/functions.php:2418
1267
  msgid "This product includes GeoLite2 data created by %s"
1268
  msgstr ""
1269
 
1270
- #: includes/functions.php:2429
1271
  msgid "IP geolocation database"
1272
  msgstr ""
1273
 
1274
- #: includes/functions.php:2432
1275
  msgid "Select IP geolocation database."
1276
  msgstr ""
1277
 
1278
- #: includes/functions.php:2443
1279
  msgid "Automatic database updates"
1280
  msgstr ""
1281
 
1282
- #: includes/functions.php:2446
1283
  msgid ""
1284
  "Automatically download and update free GeoLite2 IP geolocation database by "
1285
  "MaxMind"
1286
  msgstr ""
1287
 
1288
- #: includes/functions.php:2454
1289
  msgid "Database"
1290
  msgstr ""
1291
 
1292
- #: includes/functions.php:2457
1293
  msgid ""
1294
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1295
  "file"
1296
  msgstr ""
1297
 
1298
  #. translators: %d: group number
1299
- #: includes/functions.php:2475
1300
  msgid "Group %d"
1301
  msgstr ""
1302
 
1303
- #: includes/functions.php:2481
1304
  msgid "countries"
1305
  msgstr ""
1306
 
1307
- #: includes/functions.php:2526
1308
  msgid ""
1309
  "Enable impression and click tracking. You also need to enable tracking for "
1310
  "each block you want to track."
1311
  msgstr ""
1312
 
1313
- #: includes/functions.php:2533
1314
  msgid "Generate report"
1315
  msgstr ""
1316
 
1317
- #: includes/functions.php:2541
1318
  msgid "Impression and Click Tracking"
1319
  msgstr ""
1320
 
1321
- #: includes/functions.php:2542 settings.php:2469
1322
  msgctxt "ad blocking detection"
1323
  msgid "NOT ENABLED"
1324
  msgstr ""
1325
 
1326
- #: includes/functions.php:2558
1327
  msgid "Internal"
1328
  msgstr ""
1329
 
1330
- #: includes/functions.php:2562
1331
  msgid "Track impressions and clicks with internal tracking and statistics"
1332
  msgstr ""
1333
 
1334
- #: includes/functions.php:2567
1335
  msgid "External"
1336
  msgstr ""
1337
 
1338
- #: includes/functions.php:2571
1339
  msgid ""
1340
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1341
  "code installed)"
1342
  msgstr ""
1343
 
1344
- #: includes/functions.php:2576
1345
  msgid "Track Pageviews"
1346
  msgstr ""
1347
 
1348
- #: includes/functions.php:2582
1349
  msgid "Track Pageviews by Device (as configured for viewports)"
1350
  msgstr ""
1351
 
1352
- #: includes/functions.php:2592
1353
  msgid "Track for Logged in Users"
1354
  msgstr ""
1355
 
1356
- #: includes/functions.php:2598
1357
  msgid "Track impressions and clicks from logged in users"
1358
  msgstr ""
1359
 
1360
- #: includes/functions.php:2608
1361
  msgid "Click Detection"
1362
  msgstr ""
1363
 
1364
- #: includes/functions.php:2614
1365
  msgid ""
1366
  "Standard method detects clicks only on banners with links, Advanced method "
1367
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1368
  msgstr ""
1369
 
1370
- #: includes/functions.php:2640
1371
  msgid "Report header image"
1372
  msgstr ""
1373
 
1374
- #: includes/functions.php:2643
1375
  msgid ""
1376
  "Image or logo to be displayed in the header of the statistins report. "
1377
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1378
  "to reset to default image."
1379
  msgstr ""
1380
 
1381
- #: includes/functions.php:2644 strings.php:224
1382
  msgid "Select or upload header image"
1383
  msgstr ""
1384
 
1385
- #: includes/functions.php:2649
1386
  msgid "Report header title"
1387
  msgstr ""
1388
 
1389
- #: includes/functions.php:2652
1390
  msgid ""
1391
  "Title to be displayed in the header of the statistics report. Text or HTML "
1392
  "code, clear to reset to default text."
1393
  msgstr ""
1394
 
1395
- #: includes/functions.php:2657
1396
  msgid "Report header description"
1397
  msgstr ""
1398
 
1399
- #: includes/functions.php:2660
1400
  msgid ""
1401
  "Description to be displayed in the header of the statistics report. Text or "
1402
  "HTML code, clear to reset to default text."
1403
  msgstr ""
1404
 
1405
- #: includes/functions.php:2665
1406
  msgid "Report footer"
1407
  msgstr ""
1408
 
1409
- #: includes/functions.php:2668
1410
  msgid ""
1411
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1412
  "to default text."
1413
  msgstr ""
1414
 
1415
- #: includes/functions.php:2673
1416
  msgid "Public report key"
1417
  msgstr ""
1418
 
1419
- #: includes/functions.php:2676
1420
  msgid "String to generate unique report IDs. Clear to reset to default value."
1421
  msgstr ""
1422
 
1423
- #: includes/functions.php:2708
1424
  msgid "Are you sure you want to clear all exceptions for block"
1425
  msgstr ""
1426
 
1427
- #: includes/functions.php:2709 settings.php:1048
1428
  msgid "Clear all exceptions for block"
1429
  msgstr ""
1430
 
1431
- #: includes/functions.php:2716
1432
  msgid "Are you sure you want to clear all exceptions?"
1433
  msgstr ""
1434
 
1435
- #: includes/functions.php:2716
1436
  msgid "Clear all exceptions for all blocks"
1437
  msgstr ""
1438
 
1439
- #: includes/functions.php:2721 settings.php:3443 settings.php:3781
1440
  msgid "Type"
1441
  msgstr ""
1442
 
1443
- #: includes/functions.php:2739
1444
  msgid "View"
1445
  msgstr ""
1446
 
1447
- #: includes/functions.php:2740 includes/placeholders.php:353
1448
- #: includes/preview.php:2281 settings.php:1187
1449
  msgid "Edit"
1450
  msgstr ""
1451
 
1452
- #: includes/functions.php:2770
1453
  msgid "Are you sure you want to clear all exceptions for"
1454
  msgstr ""
1455
 
1456
- #: includes/functions.php:2771
1457
  msgid "Clear all exceptions for"
1458
  msgstr ""
1459
 
1460
- #: includes/functions.php:2784
1461
  msgid "No exceptions"
1462
  msgstr ""
1463
 
1464
  #. translators: %s: Ad Inserter Pro
1465
- #: includes/functions.php:2795
1466
  msgid "%s options for network blogs"
1467
  msgstr ""
1468
 
1469
  #. translators: %s: Ad Inserter Pro
1470
- #: includes/functions.php:2800
1471
  msgid "Enable %s widgets for sub-sites"
1472
  msgstr ""
1473
 
1474
- #: includes/functions.php:2800
1475
  msgid "Widgets"
1476
  msgstr ""
1477
 
1478
- #: includes/functions.php:2805
1479
  msgid "Enable PHP code processing for sub-sites"
1480
  msgstr ""
1481
 
1482
- #: includes/functions.php:2805
1483
  msgid "PHP Processing"
1484
  msgstr ""
1485
 
1486
  #. translators: %s: Ad Inserter Pro
1487
- #: includes/functions.php:2810
1488
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1489
  msgstr ""
1490
 
1491
- #: includes/functions.php:2810
1492
  msgid "Post/Page exceptions"
1493
  msgstr ""
1494
 
1495
  #. translators: %s: Ad Inserter Pro
1496
- #: includes/functions.php:2815
1497
  msgid "Enable %s settings page for sub-sites"
1498
  msgstr ""
1499
 
1500
- #: includes/functions.php:2815
1501
  msgid "Settings page"
1502
  msgstr ""
1503
 
1504
  #. translators: %s: Ad Inserter Pro
1505
- #: includes/functions.php:2820
1506
  msgid "Enable %s settings of main site to be used for all blogs"
1507
  msgstr ""
1508
 
1509
- #: includes/functions.php:2820
1510
  msgid "Main site settings used for all blogs"
1511
  msgstr ""
1512
 
1513
- #: includes/functions.php:2831 settings.php:2468
1514
  msgid "Ad Blocking Detection"
1515
  msgstr ""
1516
 
1517
- #: includes/functions.php:2837
1518
  msgid ""
1519
  "Standard method is reliable but should be used only if Advanced method does "
1520
  "not work. Advanced method recreates files used for detection with random "
@@ -1522,144 +1583,144 @@ msgid ""
1522
  "publicly accessible"
1523
  msgstr ""
1524
 
1525
- #: includes/functions.php:3457 includes/functions.php:3547
1526
- #: includes/functions.php:3567
1527
  msgid "AD BLOCKING"
1528
  msgstr ""
1529
 
1530
- #: includes/functions.php:3458 includes/functions.php:3498
1531
- #: includes/functions.php:3541 includes/functions.php:3568
1532
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1533
  msgstr ""
1534
 
1535
- #: includes/functions.php:3461 includes/functions.php:3540
1536
- #: includes/functions.php:3574
1537
  msgid "NO AD BLOCKING"
1538
  msgstr ""
1539
 
1540
- #: includes/functions.php:3497 includes/functions.php:3504
1541
  msgid "AD BLOCKING REPLACEMENT"
1542
  msgstr ""
1543
 
1544
- #: includes/functions.php:3647 includes/functions.php:3856
1545
  msgid "Pageviews"
1546
  msgstr ""
1547
 
1548
- #: includes/functions.php:3793
1549
  msgctxt "Version"
1550
  msgid "Unknown"
1551
  msgstr ""
1552
 
1553
- #: includes/functions.php:3793
1554
  msgctxt "Times"
1555
  msgid "DISPLAYED"
1556
  msgstr ""
1557
 
1558
- #: includes/functions.php:3793
1559
  msgid "No version"
1560
  msgstr ""
1561
 
1562
- #: includes/functions.php:3794
1563
  msgctxt "Times"
1564
  msgid "BLOCKED"
1565
  msgstr ""
1566
 
1567
- #: includes/functions.php:3856
1568
  msgid "Impressions"
1569
  msgstr ""
1570
 
1571
- #: includes/functions.php:3857 includes/functions.php:3858
1572
- #: includes/functions.php:3913
1573
  msgid "Clicks"
1574
  msgstr ""
1575
 
1576
- #: includes/functions.php:3858
1577
  msgid "events"
1578
  msgstr ""
1579
 
1580
- #: includes/functions.php:3859
1581
  msgid "Ad Blocking Share"
1582
  msgstr ""
1583
 
1584
  #. translators: CTR as Click Through Rate
1585
- #: includes/functions.php:3859 includes/functions.php:3919
1586
  msgid "CTR"
1587
  msgstr ""
1588
 
1589
- #: includes/functions.php:4001
1590
  msgid "pageviews"
1591
  msgid_plural "pageviews"
1592
  msgstr[0] ""
1593
  msgstr[1] ""
1594
 
1595
- #: includes/functions.php:4001
1596
  msgid "impressions"
1597
  msgid_plural "impressions"
1598
  msgstr[0] ""
1599
  msgstr[1] ""
1600
 
1601
- #: includes/functions.php:4005
1602
  msgid "event"
1603
  msgid_plural "events"
1604
  msgstr[0] ""
1605
  msgstr[1] ""
1606
 
1607
- #: includes/functions.php:4005
1608
  msgid "click"
1609
  msgid_plural "clicks"
1610
  msgstr[0] ""
1611
  msgstr[1] ""
1612
 
1613
- #: includes/functions.php:4100
1614
  msgctxt "Pageviews / Impressions"
1615
  msgid "Average"
1616
  msgstr ""
1617
 
1618
- #: includes/functions.php:4121
1619
  msgctxt "Ad Blocking / Clicks"
1620
  msgid "Average"
1621
  msgstr ""
1622
 
1623
- #: includes/functions.php:4145
1624
  msgctxt "Ad Blocking Share / CTR"
1625
  msgid "Average"
1626
  msgstr ""
1627
 
1628
  #. Translators: %s: Ad Inserter Pro
1629
- #: includes/functions.php:4327 includes/functions.php:4419
1630
- #: includes/functions.php:4680 strings.php:179
1631
  msgid "%s Report"
1632
  msgstr ""
1633
 
1634
- #: includes/functions.php:4586
1635
  msgid "for last month"
1636
  msgstr ""
1637
 
1638
- #: includes/functions.php:4591
1639
  msgid "for this month"
1640
  msgstr ""
1641
 
1642
- #: includes/functions.php:4596
1643
  msgid "for this year"
1644
  msgstr ""
1645
 
1646
- #: includes/functions.php:4601
1647
  msgid "for the last 15 days"
1648
  msgstr ""
1649
 
1650
- #: includes/functions.php:4606
1651
  msgid "for the last 30 days"
1652
  msgstr ""
1653
 
1654
- #: includes/functions.php:4611
1655
  msgid "for the last 90 days"
1656
  msgstr ""
1657
 
1658
- #: includes/functions.php:4616
1659
  msgid "for the last 180 days"
1660
  msgstr ""
1661
 
1662
- #: includes/functions.php:4621
1663
  msgid "for the last 365 days"
1664
  msgstr ""
1665
 
@@ -1687,7 +1748,7 @@ msgstr ""
1687
  msgid "Placeholder"
1688
  msgstr ""
1689
 
1690
- #: includes/placeholders.php:363 settings.php:808 settings.php:3782
1691
  msgid "Size"
1692
  msgstr ""
1693
 
@@ -1795,11 +1856,11 @@ msgstr ""
1795
  msgid "Ad Blocking Detected Message Preview"
1796
  msgstr ""
1797
 
1798
- #: includes/preview-adb.php:348 settings.php:2594
1799
  msgid "Message CSS"
1800
  msgstr ""
1801
 
1802
- #: includes/preview-adb.php:353 settings.php:2602
1803
  msgid "Overlay CSS"
1804
  msgstr ""
1805
 
@@ -1839,8 +1900,8 @@ msgstr ""
1839
  msgid "background"
1840
  msgstr ""
1841
 
1842
- #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1148
1843
- #: settings.php:3708
1844
  msgid "Alignment"
1845
  msgstr ""
1846
 
@@ -2046,296 +2107,296 @@ msgstr ""
2046
  msgid "General Settings"
2047
  msgstr ""
2048
 
2049
- #: settings.php:592 settings.php:2321 settings.php:2388 settings.php:2574
2050
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2051
  msgstr ""
2052
 
2053
- #: settings.php:599
2054
  msgid "Toggle tools"
2055
  msgstr ""
2056
 
2057
- #: settings.php:607
2058
  msgid "Process PHP code in block"
2059
  msgstr ""
2060
 
2061
- #: settings.php:614
2062
  msgid "Disable insertion of this block"
2063
  msgstr ""
2064
 
2065
- #: settings.php:626
2066
  msgid "Toggle code generator"
2067
  msgstr ""
2068
 
2069
- #: settings.php:630
2070
  msgid "Toggle rotation editor"
2071
  msgstr ""
2072
 
2073
- #: settings.php:634
2074
  msgid "Open visual HTML editor"
2075
  msgstr ""
2076
 
2077
- #: settings.php:644 settings.php:1984
2078
  msgid "Show AdSense ad units"
2079
  msgstr ""
2080
 
2081
- #: settings.php:653
2082
  msgid "Clear block"
2083
  msgstr ""
2084
 
2085
- #: settings.php:658 settings.php:3676
2086
  msgid "Copy block"
2087
  msgstr ""
2088
 
2089
- #: settings.php:662
2090
  msgid "Paste name"
2091
  msgstr ""
2092
 
2093
- #: settings.php:666
2094
  msgid "Paste code"
2095
  msgstr ""
2096
 
2097
- #: settings.php:670
2098
  msgid "Paste settings"
2099
  msgstr ""
2100
 
2101
- #: settings.php:674
2102
  msgid "Paste block (name, code and settings)"
2103
  msgstr ""
2104
 
2105
- #: settings.php:693
2106
  msgid "Rotation groups"
2107
  msgstr ""
2108
 
2109
- #: settings.php:697
2110
  msgid "Remove option"
2111
  msgstr ""
2112
 
2113
- #: settings.php:701
2114
  msgid "Add option"
2115
  msgstr ""
2116
 
2117
- #: settings.php:716
2118
  msgid "Import code"
2119
  msgstr ""
2120
 
2121
- #: settings.php:720
2122
  msgid "Generate code"
2123
  msgstr ""
2124
 
2125
- #: settings.php:725
2126
  msgid "Banner"
2127
  msgstr ""
2128
 
2129
- #: settings.php:736
2130
  msgid "Image"
2131
  msgstr ""
2132
 
2133
- #: settings.php:744
2134
  msgid "Link"
2135
  msgstr ""
2136
 
2137
- #: settings.php:755
2138
  msgid "Open link in a new tab"
2139
  msgstr ""
2140
 
2141
- #: settings.php:756
2142
  msgid "Select Image"
2143
  msgstr ""
2144
 
2145
- #: settings.php:757
2146
  msgid "Select Placeholder"
2147
  msgstr ""
2148
 
2149
- #: settings.php:769
2150
  msgid "Comment"
2151
  msgstr ""
2152
 
2153
- #: settings.php:778
2154
  msgctxt "AdSense"
2155
  msgid "Publisher ID"
2156
  msgstr ""
2157
 
2158
- #: settings.php:787
2159
  msgctxt "AdSense"
2160
  msgid "Ad Slot ID"
2161
  msgstr ""
2162
 
2163
- #: settings.php:796
2164
  msgid "Ad Type"
2165
  msgstr ""
2166
 
2167
- #: settings.php:820
2168
  msgid "AMP Ad"
2169
  msgstr ""
2170
 
2171
- #: settings.php:837
2172
  msgid "Show ad units from your AdSense account"
2173
  msgstr ""
2174
 
2175
- #: settings.php:837
2176
  msgid "AdSense ad units"
2177
  msgstr ""
2178
 
2179
- #: settings.php:854
2180
  msgctxt "AdSense"
2181
  msgid "Layout"
2182
  msgstr ""
2183
 
2184
- #: settings.php:863
2185
  msgctxt "AdSense"
2186
  msgid "Layout Key"
2187
  msgstr ""
2188
 
2189
- #: settings.php:873
2190
  msgid "Full width"
2191
  msgstr ""
2192
 
2193
- #: settings.php:875
2194
  msgctxt "Full width"
2195
  msgid "Enabled"
2196
  msgstr ""
2197
 
2198
- #: settings.php:876
2199
  msgctxt "Full width"
2200
  msgid "Disabled"
2201
  msgstr ""
2202
 
2203
- #: settings.php:957
2204
  msgid ""
2205
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2206
  "Cookie or Referer (domain)"
2207
  msgstr ""
2208
 
2209
- #: settings.php:957
2210
  msgid "Lists"
2211
  msgstr ""
2212
 
2213
- #: settings.php:958
2214
  msgid "Widget, Shortcode and PHP function call"
2215
  msgstr ""
2216
 
2217
- #: settings.php:958
2218
  msgid "Manual"
2219
  msgstr ""
2220
 
2221
- #: settings.php:959
2222
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2223
  msgstr ""
2224
 
2225
- #: settings.php:959
2226
  msgid "Devices"
2227
  msgstr ""
2228
 
2229
- #: settings.php:960
2230
  msgid ""
2231
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2232
  "feeds), Filter, Scheduling, General tag"
2233
  msgstr ""
2234
 
2235
- #: settings.php:960
2236
  msgid "Misc"
2237
  msgstr ""
2238
 
2239
- #: settings.php:961
2240
  msgid "Preview code and alignment"
2241
  msgstr ""
2242
 
2243
- #: settings.php:964 settings.php:1968
2244
  msgid ""
2245
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2246
  "editor is active before saving settings."
2247
  msgstr ""
2248
 
2249
- #: settings.php:966
2250
  msgid "Save All Settings"
2251
  msgstr ""
2252
 
2253
- #: settings.php:977
2254
  msgid "Enable insertion on posts"
2255
  msgstr ""
2256
 
2257
- #: settings.php:979 settings.php:985
2258
  msgid ""
2259
  "Individual post exceptions (if enabled here) can be configured in post "
2260
  "editor. Leave blank for no individual post exceptions."
2261
  msgstr ""
2262
 
2263
- #: settings.php:985 settings.php:3092
2264
  msgid "Posts"
2265
  msgstr ""
2266
 
2267
- #: settings.php:989 settings.php:990
2268
  msgid ""
2269
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2270
  "page or theme homepage (available positions may depend on hooks used by the "
2271
  "theme)"
2272
  msgstr ""
2273
 
2274
- #: settings.php:990 settings.php:3094
2275
  msgid "Homepage"
2276
  msgstr ""
2277
 
2278
- #: settings.php:994 settings.php:995
2279
  msgid "Enable insertion on category blog pages (including sub-pages)"
2280
  msgstr ""
2281
 
2282
- #: settings.php:995 settings.php:3095
2283
  msgid "Category pages"
2284
  msgstr ""
2285
 
2286
- #: settings.php:998
2287
  msgid "Check theme for available positions for automatic insertion"
2288
  msgstr ""
2289
 
2290
- #: settings.php:1005
2291
  msgid "Enable insertion on static pages"
2292
  msgstr ""
2293
 
2294
- #: settings.php:1007 settings.php:1013
2295
  msgid ""
2296
  "Individual static page exceptions (if enabled here) can be configured in "
2297
  "page editor. Leave blank for no individual page exceptions."
2298
  msgstr ""
2299
 
2300
- #: settings.php:1013 settings.php:3093
2301
  msgid "Static pages"
2302
  msgstr ""
2303
 
2304
- #: settings.php:1017 settings.php:1018
2305
  msgid "Enable insertion on search blog pages"
2306
  msgstr ""
2307
 
2308
- #: settings.php:1018 settings.php:3097
2309
  msgid "Search pages"
2310
  msgstr ""
2311
 
2312
- #: settings.php:1022 settings.php:1023
2313
  msgid "Enable insertion on tag or archive blog pages"
2314
  msgstr ""
2315
 
2316
- #: settings.php:1023
2317
  msgid "Tag / Archive pages"
2318
  msgstr ""
2319
 
2320
- #: settings.php:1029
2321
  msgid "Toggle list of individual exceptions"
2322
  msgstr ""
2323
 
2324
- #: settings.php:1045
2325
  msgctxt "post"
2326
  msgid "Type"
2327
  msgstr ""
2328
 
2329
  #. translators: %d: block number
2330
- #: settings.php:1047
2331
  msgid "Are you sure you want to clear all exceptions for block %d?"
2332
  msgstr ""
2333
 
2334
- #: settings.php:1079 settings.php:1227 settings.php:1761
2335
  msgid "Insertion"
2336
  msgstr ""
2337
 
2338
- #: settings.php:1117
2339
  msgid ""
2340
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2341
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -2345,7 +2406,7 @@ msgid ""
2345
  "negative number means counting from the opposite direction"
2346
  msgstr ""
2347
 
2348
- #: settings.php:1118
2349
  msgid ""
2350
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2351
  "means every N images, empty means all images, 0 means random image, value "
@@ -2355,257 +2416,257 @@ msgid ""
2355
  "direction"
2356
  msgstr ""
2357
 
2358
- #: settings.php:1131
2359
  msgid ""
2360
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2361
  "numbers, %N means every N excerpts, empty means all excerpts"
2362
  msgstr ""
2363
 
2364
- #: settings.php:1132
2365
  msgid ""
2366
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2367
  "numbers, %N means every N posts, empty means all posts"
2368
  msgstr ""
2369
 
2370
- #: settings.php:1133
2371
  msgid ""
2372
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2373
  "numbers, %N means every N comments, empty means all comments"
2374
  msgstr ""
2375
 
2376
- #: settings.php:1140
2377
  msgid "Toggle paragraph counting settings"
2378
  msgstr ""
2379
 
2380
- #: settings.php:1141
2381
  msgid "Toggle paragraph clearance settings"
2382
  msgstr ""
2383
 
2384
- #: settings.php:1144
2385
  msgid "Toggle insertion filter settings"
2386
  msgstr ""
2387
 
2388
- #: settings.php:1162
2389
  msgid "Toggle insertion and alignment icons"
2390
  msgstr ""
2391
 
2392
- #: settings.php:1176
2393
  msgid "Custom CSS code for the wrapping div"
2394
  msgstr ""
2395
 
2396
- #: settings.php:1179 settings.php:1180 settings.php:1181 settings.php:1182
2397
- #: settings.php:1183 settings.php:1184
2398
  msgid "CSS code for the wrapping div, click to edit"
2399
  msgstr ""
2400
 
2401
- #: settings.php:1197
2402
  msgid "HTML element"
2403
  msgstr ""
2404
 
2405
- #: settings.php:1210
2406
  msgid "HTML element selector or comma separated list of selectors"
2407
  msgstr ""
2408
 
2409
- #: settings.php:1216 settings.php:2479
2410
  msgid "Action"
2411
  msgstr ""
2412
 
2413
- #: settings.php:1228
2414
  msgid ""
2415
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2416
  "Server-side insertion inserts block when the page is generated but needs "
2417
  "Output buffering enabled."
2418
  msgstr ""
2419
 
2420
- #: settings.php:1238
2421
  msgid "JavaScript code position"
2422
  msgstr ""
2423
 
2424
- #: settings.php:1239
2425
  msgid ""
2426
  "Page position where the JavaScript code for client-side insertion will be "
2427
  "inserted. Should be after the HTML element if not waiting for DOM ready."
2428
  msgstr ""
2429
 
2430
- #: settings.php:1254
2431
  msgid "Count"
2432
  msgstr ""
2433
 
2434
- #: settings.php:1260
2435
  msgid "paragraphs with tags"
2436
  msgstr ""
2437
 
2438
- #: settings.php:1266
2439
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2440
  msgstr ""
2441
 
2442
- #: settings.php:1275
2443
  msgid "that have between"
2444
  msgstr ""
2445
 
2446
- #: settings.php:1281
2447
  msgid "Minimum number of paragraph words, leave empty for no limit"
2448
  msgstr ""
2449
 
2450
- #: settings.php:1290
2451
  msgid "Maximum number of paragraph words, leave empty for no limit"
2452
  msgstr ""
2453
 
2454
- #: settings.php:1293 settings.php:1888
2455
  msgid "words"
2456
  msgstr ""
2457
 
2458
- #: settings.php:1308 settings.php:1374 settings.php:1400
2459
  msgid "Comma separated texts"
2460
  msgstr ""
2461
 
2462
- #: settings.php:1317
2463
  msgid "Minimum number of paragraphs"
2464
  msgstr ""
2465
 
2466
  #. translators: %s: list of HTML tags
2467
- #: settings.php:1332
2468
  msgid ""
2469
  "Count also paragraphs inside %s elements - defined on general plugin "
2470
  "settings page - tab &#9881; / tab General"
2471
  msgstr ""
2472
 
2473
- #: settings.php:1332
2474
  msgid "Count inside special elements"
2475
  msgstr ""
2476
 
2477
- #: settings.php:1343
2478
  msgid "Minimum number of words in paragraphs above"
2479
  msgstr ""
2480
 
2481
- #: settings.php:1349
2482
  msgid ""
2483
  "Used only with automatic insertion After paragraph and empty paragraph "
2484
  "numbers"
2485
  msgstr ""
2486
 
2487
- #: settings.php:1359 settings.php:1385
2488
  msgid "In"
2489
  msgstr ""
2490
 
2491
- #: settings.php:1365
2492
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2493
  msgstr ""
2494
 
2495
- #: settings.php:1368
2496
  msgid "paragraphs above avoid"
2497
  msgstr ""
2498
 
2499
- #: settings.php:1391
2500
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2501
  msgstr ""
2502
 
2503
- #: settings.php:1394
2504
  msgid "paragraphs below avoid"
2505
  msgstr ""
2506
 
2507
- #: settings.php:1410
2508
  msgid "If text is found"
2509
  msgstr ""
2510
 
2511
- #: settings.php:1417
2512
  msgid "check up to"
2513
  msgstr ""
2514
 
2515
- #: settings.php:1425
2516
  msgctxt "check up to"
2517
  msgid "paragraphs"
2518
  msgstr ""
2519
 
2520
- #: settings.php:1441
2521
  msgid "Categories"
2522
  msgstr ""
2523
 
2524
- #: settings.php:1444
2525
  msgid "Toggle category editor"
2526
  msgstr ""
2527
 
2528
- #: settings.php:1447
2529
  msgid "Comma separated category slugs"
2530
  msgstr ""
2531
 
2532
- #: settings.php:1451
2533
  msgid "Blacklist categories"
2534
  msgstr ""
2535
 
2536
- #: settings.php:1455
2537
  msgid "Whitelist categories"
2538
  msgstr ""
2539
 
2540
- #: settings.php:1467
2541
  msgid "Tags"
2542
  msgstr ""
2543
 
2544
- #: settings.php:1470
2545
  msgid "Toggle tag editor"
2546
  msgstr ""
2547
 
2548
- #: settings.php:1473
2549
  msgid "Comma separated tag slugs"
2550
  msgstr ""
2551
 
2552
- #: settings.php:1477
2553
  msgid "Blacklist tags"
2554
  msgstr ""
2555
 
2556
- #: settings.php:1481
2557
  msgid "Whitelist tags"
2558
  msgstr ""
2559
 
2560
- #: settings.php:1493
2561
  msgid "Taxonomies"
2562
  msgstr ""
2563
 
2564
- #: settings.php:1496
2565
  msgid "Toggle taxonomy editor"
2566
  msgstr ""
2567
 
2568
- #: settings.php:1499
2569
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2570
  msgstr ""
2571
 
2572
- #: settings.php:1503
2573
  msgid "Blacklist taxonomies"
2574
  msgstr ""
2575
 
2576
- #: settings.php:1507
2577
  msgid "Whitelist taxonomies"
2578
  msgstr ""
2579
 
2580
- #: settings.php:1519
2581
  msgid "Post IDs"
2582
  msgstr ""
2583
 
2584
- #: settings.php:1522
2585
  msgid "Toggle post/page ID editor"
2586
  msgstr ""
2587
 
2588
- #: settings.php:1525
2589
  msgid "Comma separated post/page IDs"
2590
  msgstr ""
2591
 
2592
- #: settings.php:1529
2593
  msgid "Blacklist IDs"
2594
  msgstr ""
2595
 
2596
- #: settings.php:1533
2597
  msgid "Whitelist IDs"
2598
  msgstr ""
2599
 
2600
- #: settings.php:1545
2601
  msgid "Urls"
2602
  msgstr ""
2603
 
2604
- #: settings.php:1548
2605
  msgid "Toggle url editor"
2606
  msgstr ""
2607
 
2608
- #: settings.php:1551
2609
  msgid ""
2610
  "Comma separated urls (page addresses) starting with / after domain name (e."
2611
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -2613,220 +2674,220 @@ msgid ""
2613
  "start*. *url-pattern*, *url-end)"
2614
  msgstr ""
2615
 
2616
- #: settings.php:1555
2617
  msgid "Blacklist urls"
2618
  msgstr ""
2619
 
2620
- #: settings.php:1559
2621
  msgid "Whitelist urls"
2622
  msgstr ""
2623
 
2624
- #: settings.php:1570
2625
  msgid "Url parameters"
2626
  msgstr ""
2627
 
2628
- #: settings.php:1574
2629
  msgid "Toggle url parameter and cookie editor"
2630
  msgstr ""
2631
 
2632
- #: settings.php:1577
2633
  msgid ""
2634
  "Comma separated url query parameters or cookies with optional values (use "
2635
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
2636
  msgstr ""
2637
 
2638
- #: settings.php:1581
2639
  msgid "Blacklist url parameters"
2640
  msgstr ""
2641
 
2642
- #: settings.php:1585
2643
  msgid "Whitelist url parameters"
2644
  msgstr ""
2645
 
2646
- #: settings.php:1596
2647
  msgid "Referrers"
2648
  msgstr ""
2649
 
2650
- #: settings.php:1599
2651
  msgid "Toggle referer editor"
2652
  msgstr ""
2653
 
2654
- #: settings.php:1602
2655
  msgid ""
2656
  "Comma separated domains, use # for no referrer, you can also use partial "
2657
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
2658
  msgstr ""
2659
 
2660
- #: settings.php:1606
2661
  msgid "Blacklist referers"
2662
  msgstr ""
2663
 
2664
- #: settings.php:1610
2665
  msgid "Whitelist referers"
2666
  msgstr ""
2667
 
2668
- #: settings.php:1630
2669
  msgid "Enable widget for this block"
2670
  msgstr ""
2671
 
2672
- #: settings.php:1642
2673
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2674
  msgstr ""
2675
 
2676
- #: settings.php:1643 settings.php:3710
2677
  msgid "Shortcode"
2678
  msgstr ""
2679
 
2680
- #: settings.php:1658
2681
  msgid ""
2682
  "Enable PHP function call to insert this block at any position in theme file. "
2683
  "If function is disabled for block it will return empty string."
2684
  msgstr ""
2685
 
2686
- #: settings.php:1659
2687
  msgid "PHP function"
2688
  msgstr ""
2689
 
2690
- #: settings.php:1674
2691
  msgid "Client-side device detection"
2692
  msgstr ""
2693
 
2694
- #: settings.php:1675
2695
  msgid "Server-side device detection"
2696
  msgstr ""
2697
 
2698
- #: settings.php:1682
2699
  msgid "Use client-side detection to"
2700
  msgstr ""
2701
 
2702
- #: settings.php:1684
2703
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
2704
  msgstr ""
2705
 
2706
  #. Translators: only on (the following devices): viewport names (devices)
2707
  #. listed
2708
- #: settings.php:1689
2709
  msgid "only on"
2710
  msgstr ""
2711
 
2712
- #: settings.php:1717
2713
  msgid "Device min width %s px"
2714
  msgstr ""
2715
 
2716
- #: settings.php:1743
2717
  msgid "Use server-side detection to insert block only for"
2718
  msgstr ""
2719
 
2720
- #: settings.php:1762
2721
  msgid "Filter"
2722
  msgstr ""
2723
 
2724
- #: settings.php:1763
2725
  msgid "Word Count"
2726
  msgstr ""
2727
 
2728
- #: settings.php:1764
2729
  msgid "Scheduling"
2730
  msgstr ""
2731
 
2732
- #: settings.php:1765
2733
  msgid "Display"
2734
  msgstr ""
2735
 
2736
- #: settings.php:1767 settings.php:2016
2737
  msgid "General"
2738
  msgstr ""
2739
 
2740
- #: settings.php:1779
2741
  msgid "Old settings for AMP pages detected"
2742
  msgstr ""
2743
 
2744
- #: settings.php:1779
2745
  msgid ""
2746
  "To insert different codes on normal and AMP pages separate them with "
2747
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
2748
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
2749
  msgstr ""
2750
 
2751
- #: settings.php:1779
2752
  msgid "AMP pages"
2753
  msgstr ""
2754
 
2755
- #: settings.php:1784
2756
  msgid "Enable insertion for Ajax requests"
2757
  msgstr ""
2758
 
2759
- #: settings.php:1784
2760
  msgid "Ajax requests"
2761
  msgstr ""
2762
 
2763
- #: settings.php:1789
2764
  msgid "Enable insertion in RSS feeds"
2765
  msgstr ""
2766
 
2767
- #: settings.php:1789
2768
  msgid "RSS Feed"
2769
  msgstr ""
2770
 
2771
- #: settings.php:1794
2772
  msgid "Enable insertion on page for Error 404: Page not found"
2773
  msgstr ""
2774
 
2775
- #: settings.php:1794
2776
  msgid "Error 404 page"
2777
  msgstr ""
2778
 
2779
- #: settings.php:1806
2780
  msgid "Maximum number of insertion of this block. Empty or 0 means no limit."
2781
  msgstr ""
2782
 
2783
- #: settings.php:1807
2784
  msgid "Max"
2785
  msgstr ""
2786
 
2787
- #: settings.php:1807
2788
  msgid "insertions"
2789
  msgstr ""
2790
 
2791
- #: settings.php:1809
2792
  msgid ""
2793
  "Count this block for Max blocks per page limit (defined on the tab &#9881; / "
2794
  "tab General)"
2795
  msgstr ""
2796
 
2797
- #: settings.php:1812 settings.php:2185
2798
  msgid "Max blocks per page"
2799
  msgstr ""
2800
 
2801
- #: settings.php:1824
2802
  msgid "Insert for"
2803
  msgstr ""
2804
 
2805
- #: settings.php:1832
2806
  msgid ""
2807
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
2808
  "currently active). Might speed up insertion on content pages when "
2809
  "the_content filter is called multiple times."
2810
  msgstr ""
2811
 
2812
- #: settings.php:1835
2813
  msgid "Insert only in the loop"
2814
  msgstr ""
2815
 
2816
- #: settings.php:1841
2817
  msgid ""
2818
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
2819
  msgstr ""
2820
 
2821
- #: settings.php:1841
2822
  msgid "Disable caching"
2823
  msgstr ""
2824
 
2825
- #: settings.php:1853
2826
  msgid "Filter insertions"
2827
  msgstr ""
2828
 
2829
- #: settings.php:1856
2830
  msgid ""
2831
  "Filter multiple insertions by specifying wanted insertions for this block - "
2832
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -2834,535 +2895,535 @@ msgid ""
2834
  "using only one insertion type."
2835
  msgstr ""
2836
 
2837
- #: settings.php:1859
2838
  msgid "using"
2839
  msgstr ""
2840
 
2841
- #: settings.php:1878
2842
  msgid "Checked means specified calls are unwanted"
2843
  msgstr ""
2844
 
2845
- #: settings.php:1878
2846
  msgid "Invert filter"
2847
  msgstr ""
2848
 
2849
- #: settings.php:1884
2850
  msgid "Post/Static page must have between"
2851
  msgstr ""
2852
 
2853
- #: settings.php:1885
2854
  msgid "Minimum number of post/static page words, leave empty for no limit"
2855
  msgstr ""
2856
 
2857
- #: settings.php:1887
2858
  msgid "Maximum number of post/static page words, leave empty for no limit"
2859
  msgstr ""
2860
 
2861
- #: settings.php:1900
2862
  msgid "days after publishing"
2863
  msgstr ""
2864
 
2865
- #: settings.php:1902
2866
  msgid "Not available"
2867
  msgstr ""
2868
 
2869
- #: settings.php:1915 settings.php:2177
2870
  msgid "Ad label"
2871
  msgstr ""
2872
 
2873
- #: settings.php:1934
2874
  msgid "General tag"
2875
  msgstr ""
2876
 
2877
- #: settings.php:1938
2878
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
2879
  msgstr ""
2880
 
2881
  #. translators: %s: HTML tags
2882
- #: settings.php:1947
2883
  msgid ""
2884
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
2885
  "side device detection!"
2886
  msgstr ""
2887
 
2888
- #: settings.php:1959
2889
  msgid "Settings"
2890
  msgstr ""
2891
 
2892
- #: settings.php:1962
2893
  msgid "Settings timestamp"
2894
  msgstr ""
2895
 
2896
- #: settings.php:1975
2897
  msgid "Are you sure you want to reset all settings?"
2898
  msgstr ""
2899
 
2900
- #: settings.php:1975
2901
  msgid "Reset All Settings"
2902
  msgstr ""
2903
 
2904
- #: settings.php:1991
2905
  msgid "Edit ads.txt file"
2906
  msgstr ""
2907
 
2908
- #: settings.php:2017
2909
  msgid "Viewports"
2910
  msgstr ""
2911
 
2912
- #: settings.php:2018
2913
  msgid "Hooks"
2914
  msgstr ""
2915
 
2916
- #: settings.php:2019
2917
  msgid "Header"
2918
  msgstr ""
2919
 
2920
- #: settings.php:2020 strings.php:30
2921
  msgid "Footer"
2922
  msgstr ""
2923
 
2924
- #: settings.php:2025
2925
  msgid "Debugging"
2926
  msgstr ""
2927
 
2928
- #: settings.php:2035
2929
  msgid "Plugin priority"
2930
  msgstr ""
2931
 
2932
- #: settings.php:2043
2933
  msgid "Output buffering"
2934
  msgstr ""
2935
 
2936
- #: settings.php:2046
2937
  msgid "Needed for position Above header but may not work with all themes"
2938
  msgstr ""
2939
 
2940
- #: settings.php:2054
2941
  msgid "Syntax highlighting theme"
2942
  msgstr ""
2943
 
2944
- #: settings.php:2061
2945
  msgctxt "no syntax highlighting themes"
2946
  msgid "None"
2947
  msgstr ""
2948
 
2949
- #: settings.php:2062
2950
  msgid "No Syntax Highlighting"
2951
  msgstr ""
2952
 
2953
- #: settings.php:2064
2954
  msgctxt "syntax highlighting themes"
2955
  msgid "Light"
2956
  msgstr ""
2957
 
2958
- #: settings.php:2079
2959
  msgctxt "syntax highlighting themes"
2960
  msgid "Dark"
2961
  msgstr ""
2962
 
2963
- #: settings.php:2105
2964
  msgid "Min. user role for ind. exceptions editing"
2965
  msgstr ""
2966
 
2967
- #: settings.php:2115
2968
  msgid "Disable caching for logged in administrators"
2969
  msgstr ""
2970
 
2971
- #: settings.php:2118
2972
  msgid ""
2973
  "Enabled means that logged in administrators will see non-cached (live) pages "
2974
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
2975
  msgstr ""
2976
 
2977
- #: settings.php:2126
2978
  msgid "Sticky widget mode"
2979
  msgstr ""
2980
 
2981
- #: settings.php:2129
2982
  msgid ""
2983
  "CSS mode is the best approach but may not work with all themes. JavaScript "
2984
  "mode works with most themes but may reload ads on page load."
2985
  msgstr ""
2986
 
2987
- #: settings.php:2137
2988
  msgid "Sticky widget top margin"
2989
  msgstr ""
2990
 
2991
- #: settings.php:2145
2992
  msgid "Dynamic blocks"
2993
  msgstr ""
2994
 
2995
- #: settings.php:2158
2996
  msgid "Functions for paragraph counting"
2997
  msgstr ""
2998
 
2999
- #: settings.php:2161
3000
  msgid ""
3001
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3002
  "functions if paragraphs are not counted properly on non-english pages."
3003
  msgstr ""
3004
 
3005
- #: settings.php:2169
3006
  msgid "No paragraph counting inside"
3007
  msgstr ""
3008
 
3009
- #: settings.php:2180
3010
  msgid "Label text or HTML code"
3011
  msgstr ""
3012
 
3013
- #: settings.php:2188
3014
  msgid ""
3015
  "Maximum number of inserted blocks per page. You need to enable Max page "
3016
  "insertions (button Misc / tab Insertion) to count block for this limit."
3017
  msgstr ""
3018
 
3019
- #: settings.php:2202
3020
  msgid "Plugin usage tracking"
3021
  msgstr ""
3022
 
3023
  #. translators: %s: Ad Inserter
3024
- #: settings.php:2205
3025
  msgid ""
3026
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3027
  "Only information regarding the WordPress environment and %s usage is "
3028
  "recorded (once per month and on events like plugin activation/deactivation)."
3029
  msgstr ""
3030
 
3031
- #: settings.php:2223
3032
  msgid "CSS class name for the wrapping div"
3033
  msgstr ""
3034
 
3035
- #: settings.php:2223
3036
  msgid "Block class name"
3037
  msgstr ""
3038
 
3039
- #: settings.php:2227
3040
  msgid "Include general plugin block class"
3041
  msgstr ""
3042
 
3043
- #: settings.php:2227
3044
  msgid "Block class"
3045
  msgstr ""
3046
 
3047
- #: settings.php:2232
3048
  msgid "Include block number class"
3049
  msgstr ""
3050
 
3051
- #: settings.php:2232
3052
  msgid "Block number class"
3053
  msgstr ""
3054
 
3055
- #: settings.php:2237
3056
  msgid ""
3057
  "Instead of alignment classes generate inline alignment styles for blocks"
3058
  msgstr ""
3059
 
3060
- #: settings.php:2237
3061
  msgid "Inline styles"
3062
  msgstr ""
3063
 
3064
- #: settings.php:2243
3065
  msgid "Preview of the block wrapping code"
3066
  msgstr ""
3067
 
3068
- #: settings.php:2244
3069
  msgid "Wrapping div"
3070
  msgstr ""
3071
 
3072
- #: settings.php:2245 settings.php:2685
3073
  msgid "BLOCK CODE"
3074
  msgstr ""
3075
 
3076
- #: settings.php:2253
3077
  msgid "Viewport Settings used for client-side device detection"
3078
  msgstr ""
3079
 
3080
  #. Translators: %d: viewport number
3081
- #: settings.php:2261
3082
  msgid "Viewport %d name"
3083
  msgstr ""
3084
 
3085
- #: settings.php:2264
3086
  msgid "min width"
3087
  msgstr ""
3088
 
3089
- #: settings.php:2275
3090
  msgid "Custom Hooks"
3091
  msgstr ""
3092
 
3093
- #: settings.php:2287 settings.php:2290
3094
  msgid "Enable hook"
3095
  msgstr ""
3096
 
3097
  #. translators: %d: hook number
3098
- #: settings.php:2290
3099
  msgid "Hook %d name"
3100
  msgstr ""
3101
 
3102
- #: settings.php:2293
3103
  msgid "Hook name for automatic insertion selection"
3104
  msgstr ""
3105
 
3106
- #: settings.php:2296
3107
  msgid "action"
3108
  msgstr ""
3109
 
3110
- #: settings.php:2299
3111
  msgid "Action name as used in the do_action () function"
3112
  msgstr ""
3113
 
3114
- #: settings.php:2302
3115
  msgid "priority"
3116
  msgstr ""
3117
 
3118
- #: settings.php:2305
3119
  msgid "Priority for the hook (default is 10)"
3120
  msgstr ""
3121
 
3122
- #: settings.php:2326
3123
  msgid "Enable insertion of this code into HTML page header"
3124
  msgstr ""
3125
 
3126
- #: settings.php:2330 settings.php:2397 settings.php:2579
3127
  msgid "Process PHP code"
3128
  msgstr ""
3129
 
3130
- #: settings.php:2334
3131
  msgid "HTML Page Header Code"
3132
  msgstr ""
3133
 
3134
- #: settings.php:2342
3135
  msgid "Code in the %s section of the HTML page"
3136
  msgstr ""
3137
 
3138
- #: settings.php:2343
3139
  msgctxt "code in the header"
3140
  msgid "NOT ENABLED"
3141
  msgstr ""
3142
 
3143
- #: settings.php:2360 settings.php:2428
3144
  msgid "Use server-side detection to insert code only for"
3145
  msgstr ""
3146
 
3147
- #: settings.php:2375
3148
  msgid ""
3149
  "Enable insertion of this code into HTML page header on page for Error 404: "
3150
  "Page not found"
3151
  msgstr ""
3152
 
3153
- #: settings.php:2375 settings.php:2443
3154
  msgid "Insert on Error 404 page"
3155
  msgstr ""
3156
 
3157
- #: settings.php:2393
3158
  msgid "Enable insertion of this code into HTML page footer"
3159
  msgstr ""
3160
 
3161
- #: settings.php:2401
3162
  msgid "HTML Page Footer Code"
3163
  msgstr ""
3164
 
3165
  #. translators: %s: HTML tags
3166
- #: settings.php:2409
3167
  msgid "Code before the %s tag of the the HTML page"
3168
  msgstr ""
3169
 
3170
- #: settings.php:2410
3171
  msgctxt "code in the footer"
3172
  msgid "NOT ENABLED"
3173
  msgstr ""
3174
 
3175
- #: settings.php:2443
3176
  msgid ""
3177
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3178
  "Page not found"
3179
  msgstr ""
3180
 
3181
- #: settings.php:2459
3182
  msgid "Code for ad blocking detection inserted. Click for details."
3183
  msgstr ""
3184
 
3185
- #: settings.php:2464
3186
  msgid "Enable detection of ad blocking"
3187
  msgstr ""
3188
 
3189
- #: settings.php:2482
3190
  msgid "Global action when ad blocking is detected"
3191
  msgstr ""
3192
 
3193
- #: settings.php:2488
3194
  msgid "No action for"
3195
  msgstr ""
3196
 
3197
- #: settings.php:2489
3198
  msgid "Exceptions for global action when ad blocking is detected."
3199
  msgstr ""
3200
 
3201
- #: settings.php:2499
3202
  msgid "Delay Action"
3203
  msgstr ""
3204
 
3205
- #: settings.php:2502
3206
  msgid ""
3207
  "Number of page views to delay action when ad blocking is detected. Leave "
3208
  "empty for no delay (action fires on first page view). Sets cookie."
3209
  msgstr ""
3210
 
3211
- #: settings.php:2502
3212
  msgctxt "Delay Action for x "
3213
  msgid "page views"
3214
  msgstr ""
3215
 
3216
- #: settings.php:2507
3217
  msgid "No Action Period"
3218
  msgstr ""
3219
 
3220
- #: settings.php:2510
3221
  msgid ""
3222
  "Number of days to supress action when ad blocking is detected. Leave empty "
3223
  "for no no-action period (action fires always after defined page view delay). "
3224
  "Sets cookie."
3225
  msgstr ""
3226
 
3227
- #: settings.php:2510
3228
  msgctxt "no action period"
3229
  msgid "days"
3230
  msgstr ""
3231
 
3232
- #: settings.php:2515
3233
  msgid "Custom Selectors"
3234
  msgstr ""
3235
 
3236
- #: settings.php:2518
3237
  msgid ""
3238
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3239
  "blocking detection. Invisible element or element with zero height means ad "
3240
  "blocking is present."
3241
  msgstr ""
3242
 
3243
- #: settings.php:2530
3244
  msgid "Redirection Page"
3245
  msgstr ""
3246
 
3247
- #: settings.php:2542
3248
  msgid "Custom Url"
3249
  msgstr ""
3250
 
3251
- #: settings.php:2547
3252
  msgid ""
3253
  "Static page for redirection when ad blocking is detected. For other pages "
3254
  "select Custom url and set it below."
3255
  msgstr ""
3256
 
3257
- #: settings.php:2556
3258
  msgid "Custom Redirection Url"
3259
  msgstr ""
3260
 
3261
- #: settings.php:2568
3262
  msgid "Message HTML code"
3263
  msgstr ""
3264
 
3265
- #: settings.php:2581
3266
  msgid "Preview message when ad blocking is detected"
3267
  msgstr ""
3268
 
3269
- #: settings.php:2610
3270
  msgid "Prevent visitors from closing the warning message"
3271
  msgstr ""
3272
 
3273
- #: settings.php:2610
3274
  msgid "Undismissible Message"
3275
  msgstr ""
3276
 
3277
- #: settings.php:2616
3278
  msgid "Not undismissible for"
3279
  msgstr ""
3280
 
3281
- #: settings.php:2617
3282
  msgid "Users which can close the warning message."
3283
  msgstr ""
3284
 
3285
- #: settings.php:2631
3286
  msgid ""
3287
  "Force showing admin toolbar for administrators when viewing site. Enable "
3288
  "this option when you are logged in as admin and you don't see admin toolbar."
3289
  msgstr ""
3290
 
3291
- #: settings.php:2639
3292
  msgid "Disable header code (Header tab)"
3293
  msgstr ""
3294
 
3295
- #: settings.php:2643
3296
  msgid "Disable footer code (Footer tab)"
3297
  msgstr ""
3298
 
3299
  #. translators: %s: Ad Inserter
3300
- #: settings.php:2647
3301
  msgid "Disable %s JavaScript code"
3302
  msgstr ""
3303
 
3304
  #. translators: %s: Ad Inserter
3305
- #: settings.php:2651
3306
  msgid "Disable %s CSS code"
3307
  msgstr ""
3308
 
3309
- #: settings.php:2655
3310
  msgid ""
3311
  "Disable PHP code processing (in all blocks including header and footer code)"
3312
  msgstr ""
3313
 
3314
- #: settings.php:2659
3315
  msgid "Disable insertion of all blocks"
3316
  msgstr ""
3317
 
3318
- #: settings.php:2663
3319
  msgid "Disable insertions"
3320
  msgstr ""
3321
 
3322
  #. translators: %s: Ad Inserter
3323
- #: settings.php:2675
3324
  msgid "%s CSS CODE"
3325
  msgstr ""
3326
 
3327
- #: settings.php:2678
3328
  msgid "HEADER CODE"
3329
  msgstr ""
3330
 
3331
  #. translators: %s: PHP tags
3332
- #: settings.php:2684
3333
  msgid "BLOCK PHP CODE"
3334
  msgstr ""
3335
 
3336
  #. translators: %s: Ad Inserter
3337
- #: settings.php:2690
3338
  msgid "%s JS CODE"
3339
  msgstr ""
3340
 
3341
- #: settings.php:2693
3342
  msgid "FOOTER CODE"
3343
  msgstr ""
3344
 
3345
- #: settings.php:2702
3346
  msgid "Force showing admin toolbar when viewing site"
3347
  msgstr ""
3348
 
3349
- #: settings.php:2709
3350
  msgid "Enable debugging functions in admin toolbar"
3351
  msgstr ""
3352
 
3353
- #: settings.php:2711
3354
  msgid "Debugging functions in admin toolbar"
3355
  msgstr ""
3356
 
3357
- #: settings.php:2718
3358
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3359
  msgstr ""
3360
 
3361
- #: settings.php:2720
3362
  msgid "Debugging functions on mobile screens"
3363
  msgstr ""
3364
 
3365
- #: settings.php:2727
3366
  msgid ""
3367
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3368
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -3371,201 +3432,201 @@ msgid ""
3371
  "administrators debugging is always enabled."
3372
  msgstr ""
3373
 
3374
- #: settings.php:2729
3375
  msgid "Remote debugging"
3376
  msgstr ""
3377
 
3378
- #: settings.php:2736
3379
  msgid ""
3380
  "Disable translation to see original texts for the settings and messages in "
3381
  "English"
3382
  msgstr ""
3383
 
3384
- #: settings.php:2738
3385
  msgid "Disable translation"
3386
  msgstr ""
3387
 
3388
- #: settings.php:3080
3389
  msgid "Available positions for current theme"
3390
  msgstr ""
3391
 
3392
- #: settings.php:3081
3393
  msgid "Error checking pages"
3394
  msgstr ""
3395
 
3396
- #: settings.php:3084
3397
  msgid "Toggle theme checker for available positions for automatic insertion"
3398
  msgstr ""
3399
 
3400
- #: settings.php:3084
3401
  msgctxt "Button"
3402
  msgid "Check"
3403
  msgstr ""
3404
 
3405
- #: settings.php:3091
3406
  msgid "Position"
3407
  msgstr ""
3408
 
3409
- #: settings.php:3096
3410
  msgid "Archive pages"
3411
  msgstr ""
3412
 
3413
- #: settings.php:3155
3414
  msgid ""
3415
  "Position not available because output buffering (tab [*]) is not enabled"
3416
  msgstr ""
3417
 
3418
- #: settings.php:3158 strings.php:220
3419
  msgid "Position not checked yet"
3420
  msgstr ""
3421
 
3422
- #: settings.php:3189
3423
  msgid "Toggle active/all blocks"
3424
  msgstr ""
3425
 
3426
- #: settings.php:3193 strings.php:207
3427
  msgid "Rearrange block order"
3428
  msgstr ""
3429
 
3430
- #: settings.php:3198
3431
  msgid "Save new block order"
3432
  msgstr ""
3433
 
3434
- #: settings.php:3198
3435
  msgid "Save Changes"
3436
  msgstr ""
3437
 
3438
- #: settings.php:3223
3439
  msgid "Toggle active/all ad units"
3440
  msgstr ""
3441
 
3442
- #: settings.php:3227
3443
  msgid "Reload AdSense ad units"
3444
  msgstr ""
3445
 
3446
- #: settings.php:3231
3447
  msgid "Clear authorization to access AdSense account"
3448
  msgstr ""
3449
 
3450
- #: settings.php:3235 settings.php:3867 settings.php:3934 strings.php:215
3451
  msgid "Google AdSense Homepage"
3452
  msgstr ""
3453
 
3454
- #: settings.php:3258
3455
  msgid "Reload ads.txt file"
3456
  msgstr ""
3457
 
3458
  #. translators: %s: ads.txt
3459
- #: settings.php:3262
3460
  msgid "Open %s"
3461
  msgstr ""
3462
 
3463
- #: settings.php:3266
3464
  msgid "Switch to table view"
3465
  msgstr ""
3466
 
3467
- #: settings.php:3270
3468
  msgid "Switch to editor"
3469
  msgstr ""
3470
 
3471
- #: settings.php:3274
3472
  msgid "Save ads.txt file"
3473
  msgstr ""
3474
 
3475
- #: settings.php:3409 settings.php:3417 strings.php:200
3476
  msgid "Warning"
3477
  msgstr ""
3478
 
3479
- #: settings.php:3409
3480
  msgid "ads.txt file must be placed on the root domain"
3481
  msgstr ""
3482
 
3483
  #. translators: %s: file path
3484
- #: settings.php:3410
3485
  msgid "WordPress is installed in %s"
3486
  msgstr ""
3487
 
3488
- #: settings.php:3411
3489
  msgid "Showing file"
3490
  msgstr ""
3491
 
3492
- #: settings.php:3417
3493
  msgid "File %s not found"
3494
  msgstr ""
3495
 
3496
- #: settings.php:3424
3497
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3498
  msgstr ""
3499
 
3500
- #: settings.php:3441
3501
  msgid "Advertising system"
3502
  msgstr ""
3503
 
3504
- #: settings.php:3442
3505
  msgid "Account ID"
3506
  msgstr ""
3507
 
3508
- #: settings.php:3444
3509
  msgid "Certification authority ID"
3510
  msgstr ""
3511
 
3512
- #: settings.php:3459
3513
  msgid "Account ID found in block and present in ads.txt"
3514
  msgstr ""
3515
 
3516
- #: settings.php:3463
3517
  msgid "Account ID found in block but not present in ads.txt"
3518
  msgstr ""
3519
 
3520
- #: settings.php:3679
3521
  msgid "Preview block"
3522
  msgstr ""
3523
 
3524
- #: settings.php:3688
3525
  msgid "Insertion disabled"
3526
  msgstr ""
3527
 
3528
- #: settings.php:3712
3529
  msgid "Widget positions"
3530
  msgstr ""
3531
 
3532
- #: settings.php:3778
3533
  msgid "Ad unit"
3534
  msgstr ""
3535
 
3536
- #: settings.php:3780
3537
  msgid "Slot ID"
3538
  msgstr ""
3539
 
3540
- #: settings.php:3806
3541
  msgid "Copy AdSense code"
3542
  msgstr ""
3543
 
3544
- #: settings.php:3809
3545
  msgid "Preview AdSense ad"
3546
  msgstr ""
3547
 
3548
- #: settings.php:3812
3549
  msgid "Get AdSense code"
3550
  msgstr ""
3551
 
3552
  #. translators: %s: HTML tags
3553
- #: settings.php:3844
3554
  msgid ""
3555
  "Please %s clear authorization %s with the button %s above and once again "
3556
  "authorize access to your AdSense account."
3557
  msgstr ""
3558
 
3559
- #: settings.php:3863
3560
  msgid "AdSense Integration"
3561
  msgstr ""
3562
 
3563
- #: settings.php:3865
3564
  msgid "AdSense Integration - Step 2"
3565
  msgstr ""
3566
 
3567
  #. translators: %s: HTML tags
3568
- #: settings.php:3871
3569
  msgid ""
3570
  "Authorize %s to access your AdSense account. Click on the %s Get "
3571
  "Authorization Code %s button to open a new window where you can allow "
@@ -3574,7 +3635,7 @@ msgid ""
3574
  msgstr ""
3575
 
3576
  #. translators: %s: HTML tags
3577
- #: settings.php:3878
3578
  msgid ""
3579
  "If you get error, can't access ad units or would like to use own Google API "
3580
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -3582,7 +3643,7 @@ msgid ""
3582
  msgstr ""
3583
 
3584
  #. translators: %s: HTML tags
3585
- #: settings.php:3880
3586
  msgid ""
3587
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3588
  "Authorization Code %s button to open a new window where you can allow "
@@ -3591,38 +3652,38 @@ msgid ""
3591
  msgstr ""
3592
 
3593
  #. translators: %s: HTML tags
3594
- #: settings.php:3887
3595
  msgid ""
3596
  "If you get error %s invalid client %s click on the button %s Clear and "
3597
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3598
  msgstr ""
3599
 
3600
- #: settings.php:3898
3601
  msgid "Get Authorization Code"
3602
  msgstr ""
3603
 
3604
- #: settings.php:3901
3605
  msgid "Enter Authorization Code"
3606
  msgstr ""
3607
 
3608
- #: settings.php:3911
3609
  msgid "Use own API IDs"
3610
  msgstr ""
3611
 
3612
- #: settings.php:3913
3613
  msgid "Clear and return to Step 1"
3614
  msgstr ""
3615
 
3616
- #: settings.php:3917
3617
  msgid "Authorize"
3618
  msgstr ""
3619
 
3620
- #: settings.php:3933
3621
  msgid "AdSense Integration - Step 1"
3622
  msgstr ""
3623
 
3624
  #. translators: %s: Ad Inserter
3625
- #: settings.php:3937
3626
  msgid ""
3627
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3628
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -3631,176 +3692,176 @@ msgid ""
3631
  msgstr ""
3632
 
3633
  #. translators: %s: HTML tags
3634
- #: settings.php:3946
3635
  msgid "Go to %s Google APIs and Services console %s"
3636
  msgstr ""
3637
 
3638
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3639
- #: settings.php:3947
3640
  msgid ""
3641
  "Create %1$s project - if the project and IDs are already created click on "
3642
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3643
  msgstr ""
3644
 
3645
  #. translators: %s: HTML tags
3646
- #: settings.php:3948
3647
  msgid ""
3648
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3649
  "create a new project"
3650
  msgstr ""
3651
 
3652
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3653
- #: settings.php:3949
3654
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3655
  msgstr ""
3656
 
3657
  #. translators: %s: HTML tags
3658
- #: settings.php:3950
3659
  msgid ""
3660
  "Click on project selection, wait for the project to be created and then and "
3661
  "select %s as the current project"
3662
  msgstr ""
3663
 
3664
  #. translators: %s: HTML tags
3665
- #: settings.php:3951
3666
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3667
  msgstr ""
3668
 
3669
  #. translators: %s: HTML tags
3670
- #: settings.php:3952
3671
  msgid "Search for adsense and enable %s"
3672
  msgstr ""
3673
 
3674
  #. translators: %s: HTML tags
3675
- #: settings.php:3953
3676
  msgid "Click on %s CREATE CREDENTIALS %s"
3677
  msgstr ""
3678
 
3679
  #. translators: %s: HTML tags
3680
- #: settings.php:3954
3681
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3682
  msgstr ""
3683
 
3684
  #. translators: %s: HTML tags
3685
- #: settings.php:3955
3686
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3687
  msgstr ""
3688
 
3689
  #. translators: %s: HTML tags
3690
- #: settings.php:3956
3691
  msgid "Click on %s What credentials do I need? %s"
3692
  msgstr ""
3693
 
3694
  #. translators: %s: HTML tags
3695
- #: settings.php:3957
3696
  msgid ""
3697
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3698
  "Ad Inserter client %s"
3699
  msgstr ""
3700
 
3701
  #. translators: %s: HTML tags
3702
- #: settings.php:3958
3703
  msgid ""
3704
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3705
  "enter %s"
3706
  msgstr ""
3707
 
3708
  #. translators: %s: HTML tags
3709
- #: settings.php:3959
3710
  msgid "Click on %s Continue %s"
3711
  msgstr ""
3712
 
3713
  #. translators: %s: HTML tags
3714
- #: settings.php:3960
3715
  msgid "Click on %s Done %s"
3716
  msgstr ""
3717
 
3718
  #. translators: %s: HTML tags
3719
- #: settings.php:3961
3720
  msgid ""
3721
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
3722
  "secret %s"
3723
  msgstr ""
3724
 
3725
- #: settings.php:3962
3726
  msgid "Copy them to the appropriate fields below"
3727
  msgstr ""
3728
 
3729
- #: settings.php:3968
3730
  msgid "Client ID"
3731
  msgstr ""
3732
 
3733
- #: settings.php:3971
3734
  msgid "Enter Client ID"
3735
  msgstr ""
3736
 
3737
- #: settings.php:3976
3738
  msgid "Client secret"
3739
  msgstr ""
3740
 
3741
- #: settings.php:3979
3742
  msgid "Enter Client secret"
3743
  msgstr ""
3744
 
3745
- #: settings.php:3989
3746
  msgid "Use default API IDs"
3747
  msgstr ""
3748
 
3749
- #: settings.php:3994
3750
  msgid "Save"
3751
  msgstr ""
3752
 
3753
- #: settings.php:4270 settings.php:4283 settings.php:4296 settings.php:4311
3754
  msgid "Blank ad blocks? Looking for AdSense alternative?"
3755
  msgstr ""
3756
 
3757
- #: settings.php:4275 settings.php:4288 settings.php:4301 settings.php:4316
3758
- #: settings.php:4496 settings.php:4500 settings.php:4518 settings.php:4522
3759
- #: settings.php:4530 settings.php:4533 settings.php:4539 settings.php:4551
3760
  msgid "Looking for AdSense alternative?"
3761
  msgstr ""
3762
 
3763
- #: settings.php:4327
3764
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
3765
  msgstr ""
3766
 
3767
- #: settings.php:4332 settings.php:4498 settings.php:4502 settings.php:4510
3768
- #: settings.php:4536
3769
  msgid "Use Infolinks ads with Adsense to earn more"
3770
  msgstr ""
3771
 
3772
- #: settings.php:4351 settings.php:4389
3773
  msgid "Support plugin development"
3774
  msgstr ""
3775
 
3776
- #: settings.php:4352 settings.php:4390
3777
  msgid ""
3778
  "If you like Ad Inserter and have a moment, please help me spread the word by "
3779
  "reviewing the plugin on WordPres"
3780
  msgstr ""
3781
 
3782
- #: settings.php:4352
3783
  msgctxt "Review ad Inserter"
3784
  msgid "Review"
3785
  msgstr ""
3786
 
3787
- #: settings.php:4353
3788
  msgid ""
3789
  "Support free Ad Inserter development. If you are making money with Ad "
3790
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
3791
  "you!"
3792
  msgstr ""
3793
 
3794
- #: settings.php:4353
3795
  msgid "Donate"
3796
  msgstr ""
3797
 
3798
- #: settings.php:4360 settings.php:4405
3799
  msgid "Average rating of the plugin - Thank you!"
3800
  msgstr ""
3801
 
3802
  #. translators: %s: Ad Inserter, HTML tags
3803
- #: settings.php:4371
3804
  msgid ""
3805
  "You've been using %s for a while now, and I hope you're happy with it. "
3806
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -3809,31 +3870,31 @@ msgid ""
3809
  "your website. %s Thank you!"
3810
  msgstr ""
3811
 
3812
- #: settings.php:4390
3813
  msgid "Review"
3814
  msgstr ""
3815
 
3816
- #: settings.php:4394
3817
  msgid "Ad Inserter on Twitter"
3818
  msgstr ""
3819
 
3820
- #: settings.php:4395
3821
  msgid "Ad Inserter on Facebook"
3822
  msgstr ""
3823
 
3824
- #: settings.php:4398
3825
  msgid "Follow Ad Inserter"
3826
  msgstr ""
3827
 
3828
  #. translators: %s: HTML tags
3829
- #: settings.php:4425
3830
  msgid ""
3831
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
3832
  "and %s Common Settings %s pages"
3833
  msgstr ""
3834
 
3835
  #. translators: %s: HTML tags
3836
- #: settings.php:4437
3837
  msgid ""
3838
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
3839
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -3841,320 +3902,320 @@ msgid ""
3841
  msgstr ""
3842
 
3843
  #. translators: %s: HTML tags
3844
- #: settings.php:4458
3845
  msgid ""
3846
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
3847
  "purchase you refer to us"
3848
  msgstr ""
3849
 
3850
  #. translators: %s: HTML tags
3851
- #: settings.php:4465
3852
  msgid ""
3853
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
3854
  "diagnose and fix the problem."
3855
  msgstr ""
3856
 
3857
  #. translators: %s: HTML tags
3858
- #: settings.php:4469
3859
  msgid ""
3860
  "If you need any kind of help or support, please do not hesitate to open a "
3861
  "thread on the %s support forum. %s"
3862
  msgstr ""
3863
 
3864
- #: settings.php:4514 settings.php:4555
3865
  msgid "A/B testing - Track ad impressions and clicks"
3866
  msgstr ""
3867
 
3868
- #: settings.php:4547 settings.php:4559
3869
  msgid "Code preview with visual CSS editor"
3870
  msgstr ""
3871
 
3872
- #: settings.php:4567
3873
  msgid "Looking for Pro Ad Management plugin?"
3874
  msgstr ""
3875
 
3876
- #: settings.php:4568
3877
  msgid "To Optimally Monetize your WordPress website?"
3878
  msgstr ""
3879
 
3880
  #. translators: %s HTML tags
3881
- #: settings.php:4571
3882
  msgid "%s AdSense Integration %s"
3883
  msgstr ""
3884
 
3885
  #. translators: %s HTML tags
3886
- #: settings.php:4572
3887
  msgid "Syntax highlighting %s editor %s"
3888
  msgstr ""
3889
 
3890
  #. translators: %s HTML tags
3891
- #: settings.php:4573
3892
  msgid "%s Code preview %s with visual CSS editor"
3893
  msgstr ""
3894
 
3895
  #. translators: %s HTML tags
3896
- #: settings.php:4574
3897
  msgid "Simple user interface - all settings on a single page"
3898
  msgstr ""
3899
 
3900
  #. translators: %s HTML tags
3901
- #: settings.php:4575
3902
  msgid ""
3903
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
3904
  "image / excerpt"
3905
  msgstr ""
3906
 
3907
  #. translators: %s HTML tags
3908
- #: settings.php:4576
3909
  msgid "%s Automatic insertion %s between posts on blog pages"
3910
  msgstr ""
3911
 
3912
  #. translators: %s HTML tags
3913
- #: settings.php:4577
3914
  msgid "%s Automatic insertion %s before, between and after comments"
3915
  msgstr ""
3916
 
3917
  #. translators: %s HTML tags
3918
- #: settings.php:4578
3919
  msgid "%s Automatic insertion %s after %s or before %s tag"
3920
  msgstr ""
3921
 
3922
  #. translators: %s HTML tags
3923
- #: settings.php:4579
3924
  msgid "Automatic insertion at %s custom hook positions %s"
3925
  msgstr ""
3926
 
3927
  #. translators: %s HTML tags
3928
- #: settings.php:4580
3929
  msgid ""
3930
  "Insertion %s before or after any HTML element on the page %s (using CSS "
3931
  "selectors)"
3932
  msgstr ""
3933
 
3934
  #. translators: %s HTML tags
3935
- #: settings.php:4581
3936
  msgid "%s Insertion exceptions %s for individual posts and pages"
3937
  msgstr ""
3938
 
3939
  #. translators: %s HTML tags
3940
- #: settings.php:4582
3941
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
3942
  msgstr ""
3943
 
3944
  #. translators: %s HTML tags
3945
- #: settings.php:4583
3946
  msgid ""
3947
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
3948
  "scrolls)"
3949
  msgstr ""
3950
 
3951
  #. translators: %s HTML tags
3952
- #: settings.php:4584
3953
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
3954
  msgstr ""
3955
 
3956
  #. translators: %s HTML tags
3957
- #: settings.php:4585
3958
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
3959
  msgstr ""
3960
 
3961
  #. translators: %s HTML tags
3962
- #: settings.php:4586
3963
  msgid ""
3964
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
3965
  "visible)"
3966
  msgstr ""
3967
 
3968
  #. translators: %s HTML tags
3969
- #: settings.php:4587
3970
  msgid ""
3971
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
3972
  msgstr ""
3973
 
3974
  #. translators: %s HTML tags
3975
- #: settings.php:4588
3976
  msgid "Block %s alignment and style %s customizations"
3977
  msgstr ""
3978
 
3979
  #. translators: %s HTML tags
3980
- #: settings.php:4589
3981
  msgid ""
3982
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
3983
  "TOS)"
3984
  msgstr ""
3985
 
3986
  #. translators: %s HTML tags
3987
- #: settings.php:4590
3988
  msgid ""
3989
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
3990
  "feeds"
3991
  msgstr ""
3992
 
3993
  #. translators: %s HTML tags
3994
- #: settings.php:4591
3995
  msgid "%s Ad rotation %s (works also with caching)"
3996
  msgstr ""
3997
 
3998
  #. translators: %s HTML tags
3999
- #: settings.php:4592
4000
  msgid "Create, edit and check %s ads.txt %s file"
4001
  msgstr ""
4002
 
4003
  #. translators: %s HTML tags
4004
- #: settings.php:4593
4005
  msgid ""
4006
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4007
  "AdSense)"
4008
  msgstr ""
4009
 
4010
  #. translators: %s HTML tags
4011
- #: settings.php:4594
4012
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4013
  msgstr ""
4014
 
4015
  #. translators: %s HTML tags
4016
- #: settings.php:4595
4017
  msgid "%s Public web reports %s for clients, export to PDF"
4018
  msgstr ""
4019
 
4020
  #. translators: %s HTML tags
4021
- #: settings.php:4596
4022
  msgid "Support for %s A/B testing %s"
4023
  msgstr ""
4024
 
4025
  #. translators: %s HTML tags
4026
- #: settings.php:4597
4027
  msgid "Support for %s lazy loading %s"
4028
  msgstr ""
4029
 
4030
  #. translators: %s HTML tags
4031
- #: settings.php:4598
4032
  msgid "Support for ads on %s AMP pages %s"
4033
  msgstr ""
4034
 
4035
  #. translators: %s HTML tags
4036
- #: settings.php:4599
4037
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4038
  msgstr ""
4039
 
4040
  #. translators: %s HTML tags
4041
- #: settings.php:4600
4042
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4043
  msgstr ""
4044
 
4045
  #. translators: %s HTML tags
4046
- #: settings.php:4601
4047
  msgid "PHP code processing"
4048
  msgstr ""
4049
 
4050
  #. translators: %s HTML tags
4051
- #: settings.php:4602
4052
  msgid "%s Banner %s code generator"
4053
  msgstr ""
4054
 
4055
  #. translators: %s HTML tags
4056
- #: settings.php:4603
4057
  msgid "Support for %s header and footer %s code"
4058
  msgstr ""
4059
 
4060
  #. translators: %s HTML tags
4061
- #: settings.php:4604
4062
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4063
  msgstr ""
4064
 
4065
  #. translators: %s HTML tags
4066
- #: settings.php:4605
4067
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4068
  msgstr ""
4069
 
4070
  #. translators: %s HTML tags
4071
- #: settings.php:4606
4072
  msgid "Client-side %s mobile device detection %s (works with caching)"
4073
  msgstr ""
4074
 
4075
  #. translators: %s HTML tags
4076
- #: settings.php:4607
4077
  msgid ""
4078
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4079
  "protection"
4080
  msgstr ""
4081
 
4082
  #. translators: %s HTML tags
4083
- #: settings.php:4608
4084
  msgid "%s Ad blocking statistics %s"
4085
  msgstr ""
4086
 
4087
  #. translators: %s HTML tags
4088
- #: settings.php:4609
4089
  msgid ""
4090
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4091
  "referers"
4092
  msgstr ""
4093
 
4094
  #. translators: %s HTML tags
4095
- #: settings.php:4610
4096
  msgid ""
4097
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4098
  msgstr ""
4099
 
4100
  #. translators: %s HTML tags
4101
- #: settings.php:4611
4102
  msgid "%s Multisite options %s to limit settings on the sites"
4103
  msgstr ""
4104
 
4105
  #. translators: %s HTML tags
4106
- #: settings.php:4612
4107
  msgid "%s Import/Export %s block or plugin settings"
4108
  msgstr ""
4109
 
4110
  #. translators: %s HTML tags
4111
- #: settings.php:4613
4112
  msgid "%s Insertion scheduling %s with fallback option"
4113
  msgstr ""
4114
 
4115
  #. translators: %s HTML tags
4116
- #: settings.php:4614
4117
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4118
  msgstr ""
4119
 
4120
  #. translators: %s HTML tags
4121
- #: settings.php:4615
4122
  msgid "Simple troubleshooting with many %s debugging functions %s"
4123
  msgstr ""
4124
 
4125
  #. translators: %s HTML tags
4126
- #: settings.php:4616
4127
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4128
  msgstr ""
4129
 
4130
  #. translators: %s HTML tags
4131
- #: settings.php:4617
4132
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4133
  msgstr ""
4134
 
4135
  #. translators: %s HTML tags
4136
- #: settings.php:4618
4137
  msgid ""
4138
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4139
  msgstr ""
4140
 
4141
  #. translators: %s HTML tags
4142
- #: settings.php:4619
4143
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4144
  msgstr ""
4145
 
4146
  #. translators: %s HTML tags
4147
- #: settings.php:4620
4148
  msgid "No ads on the settings page"
4149
  msgstr ""
4150
 
4151
  #. translators: %s HTML tags
4152
- #: settings.php:4621
4153
  msgid "Premium support"
4154
  msgstr ""
4155
 
4156
  #. translators: %s HTML tags
4157
- #: settings.php:4624
4158
  msgid ""
4159
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4160
  "website with many advertising features to automatically insert adverts on "
@@ -4169,82 +4230,82 @@ msgid ""
4169
  msgstr ""
4170
 
4171
  #. translators: %s HTML tags
4172
- #: settings.php:4637
4173
  msgid "Looking for %s Pro Ad Management plugin? %s"
4174
  msgstr ""
4175
 
4176
  #. translators: %s HTML tags
4177
- #: settings.php:4642
4178
  msgid "Ads between posts"
4179
  msgstr ""
4180
 
4181
  #. translators: %s HTML tags
4182
- #: settings.php:4643
4183
  msgid "Ads between comments"
4184
  msgstr ""
4185
 
4186
  #. translators: %s HTML tags
4187
- #: settings.php:4644
4188
  msgid "Support via email"
4189
  msgstr ""
4190
 
4191
  #. translators: %s HTML tags
4192
- #: settings.php:4650
4193
  msgid "%s Sticky positions %s"
4194
  msgstr ""
4195
 
4196
  #. translators: %s HTML tags
4197
- #: settings.php:4651
4198
  msgid "%s Limit insertions %s"
4199
  msgstr ""
4200
 
4201
  #. translators: %s HTML tags
4202
- #: settings.php:4652
4203
  msgid "%s Clearance %s options"
4204
  msgstr ""
4205
 
4206
  #. translators: %s HTML tags
4207
- #: settings.php:4658
4208
  msgid "Ad rotation"
4209
  msgstr ""
4210
 
4211
  #. translators: %s HTML tags
4212
- #: settings.php:4659
4213
  msgid "%s A/B testing %s"
4214
  msgstr ""
4215
 
4216
  #. translators: %s HTML tags
4217
- #: settings.php:4660
4218
  msgid "%s Ad tracking %s"
4219
  msgstr ""
4220
 
4221
  #. translators: %s HTML tags
4222
- #: settings.php:4666
4223
  msgid "Support for %s AMP pages %s"
4224
  msgstr ""
4225
 
4226
  #. translators: %s HTML tags
4227
- #: settings.php:4667
4228
  msgid "%s Ad blocking detection %s"
4229
  msgstr ""
4230
 
4231
  #. translators: %s HTML tags
4232
- #: settings.php:4668
4233
  msgid "%s Mobile device detection %s"
4234
  msgstr ""
4235
 
4236
  #. translators: %s HTML tags
4237
- #: settings.php:4675
4238
  msgid "64 code blocks"
4239
  msgstr ""
4240
 
4241
  #. translators: %s HTML tags
4242
- #: settings.php:4676
4243
  msgid "%s GEO targeting %s"
4244
  msgstr ""
4245
 
4246
  #. translators: %s HTML tags
4247
- #: settings.php:4677
4248
  msgid "%s Scheduling %s"
4249
  msgstr ""
4250
 
@@ -4884,13 +4945,6 @@ msgstr ""
4884
  msgid "Invalid date range - only data for 1 year can be displayed"
4885
  msgstr ""
4886
 
4887
- #: strings.php:194 strings.php:195 strings.php:196 strings.php:197
4888
- #: strings.php:198 strings.php:199
4889
- msgid "day"
4890
- msgid_plural "days"
4891
- msgstr[0] ""
4892
- msgstr[1] ""
4893
-
4894
  #: strings.php:201
4895
  msgid "Delete"
4896
  msgstr ""
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.4.23\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-07-31 18:27:42+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:376
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:392
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:399
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:470
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:477
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:486
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:493
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:503
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
+ #: ad-inserter.php:1100
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
+ #: ad-inserter.php:1105
62
  msgid "After"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name Prepend content of HTML element (before
66
  #. the content of the HTML element)
67
+ #: ad-inserter.php:1110 strings.php:98
68
  msgid "Prepend content"
69
  msgstr ""
70
 
71
  #. translators: Debugging position name Append content of HTML element (after
72
  #. the content of the HTML element)
73
+ #: ad-inserter.php:1115 strings.php:99
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
+ #: ad-inserter.php:1120 strings.php:100
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
+ #: ad-inserter.php:1125 strings.php:150
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
+ #: ad-inserter.php:1172
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
+ #: ad-inserter.php:1176
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
+ #: ad-inserter.php:1385
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
+ #: ad-inserter.php:1672 ad-inserter.php:2540
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
+ #: ad-inserter.php:2107
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
+ #: ad-inserter.php:2107
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
+ #: ad-inserter.php:2108
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
+ #: ad-inserter.php:2109
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
+ #: ad-inserter.php:2110
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
+ #: ad-inserter.php:2111
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
+ #: ad-inserter.php:2112
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
+ #: ad-inserter.php:2311
138
  msgid "Hey, you are now using %1$s %2$s block."
139
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
+ #: ad-inserter.php:2312 includes/functions.php:1569
144
  msgid "No, thank you."
145
  msgstr ""
146
 
147
  #. Translators: %s: Ad Inserter
148
+ #: ad-inserter.php:2315
149
  msgid ""
150
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
151
  msgstr ""
152
 
153
+ #: ad-inserter.php:2316 includes/functions.php:1572
154
  msgid "Not now, maybe later."
155
  msgstr ""
156
 
157
+ #: ad-inserter.php:2326
158
  msgid "I would really appreciate if you could rate the plugin on WordPres."
159
  msgstr ""
160
 
161
+ #: ad-inserter.php:2328
162
  msgid ""
163
  "Positive reviews are a great incentive to fix bugs and to add new features "
164
  "for better monetization of your website. Thank you, Igor"
165
  msgstr ""
166
 
167
  #. translators: %s: Ad Inserter
168
+ #: ad-inserter.php:2334
169
  msgid "Rate %s"
170
  msgstr ""
171
 
172
+ #: ad-inserter.php:2339
173
  msgid "I already did."
174
  msgstr ""
175
 
176
+ #: ad-inserter.php:2353
177
  msgctxt "Menu item"
178
  msgid "Settings"
179
  msgstr ""
180
 
181
  #. translators: %s: Ad Inserter
182
+ #: ad-inserter.php:2427
183
  msgctxt "Meta box name"
184
  msgid "%s Individual Exceptions"
185
  msgstr ""
186
 
187
+ #: ad-inserter.php:2456 ad-inserter.php:8343 class.php:1972
188
  #: includes/preview.php:1976 includes/preview.php:2020
189
+ #: includes/preview.php:2057 settings.php:3741 strings.php:3
190
  msgid "Block"
191
  msgstr ""
192
 
193
+ #: ad-inserter.php:2457 settings.php:3742 settings.php:3816
194
  msgid "Name"
195
  msgstr ""
196
 
197
+ #: ad-inserter.php:2458 settings.php:3744
198
  msgid "Automatic insertion"
199
  msgstr ""
200
 
201
+ #: ad-inserter.php:2461
202
  msgid "Default insertion for pages"
203
  msgstr ""
204
 
205
+ #: ad-inserter.php:2462
206
  msgid "Default insertion for posts"
207
  msgstr ""
208
 
209
  #. translators: For this post or page
210
+ #: ad-inserter.php:2465
211
  msgctxt "Page"
212
  msgid "For this"
213
  msgstr ""
214
 
215
+ #: ad-inserter.php:2466
216
  msgctxt "Post"
217
  msgid "For this"
218
  msgstr ""
219
 
220
+ #: ad-inserter.php:2474
221
  msgctxt "Enabled/disabled on all"
222
  msgid "pages"
223
  msgstr ""
224
 
225
+ #: ad-inserter.php:2475
226
  msgctxt "Default insertion for"
227
  msgid "pages"
228
  msgstr ""
229
 
230
+ #: ad-inserter.php:2479
231
  msgctxt "Enabled/disabled on all"
232
  msgid "posts"
233
  msgstr ""
234
 
235
+ #: ad-inserter.php:2480
236
  msgctxt "Default insertion for"
237
  msgid "posts"
238
  msgstr ""
239
 
240
+ #: ad-inserter.php:2499 ad-inserter.php:2512 strings.php:156
241
  msgid "Enabled"
242
  msgstr ""
243
 
244
  #. translators: Menu items
245
+ #: ad-inserter.php:2499 ad-inserter.php:2512 includes/functions.php:2230
246
  #: strings.php:16
247
  msgid "Disabled"
248
  msgstr ""
249
 
250
  #. translators: Enabled on all pages or posts
251
+ #: ad-inserter.php:2502
252
  msgid "Enabled on all"
253
  msgstr ""
254
 
255
  #. translators: Disabled on all pages or posts
256
+ #: ad-inserter.php:2504
257
  msgid "Disabled on all"
258
  msgstr ""
259
 
260
  #. translators: No individual exceptions enabled for pages or posts
261
+ #: ad-inserter.php:2532
262
  msgid "No individual exceptions enabled for"
263
  msgstr ""
264
 
265
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
266
+ #: ad-inserter.php:2537
267
  msgid ""
268
  "Default insertion for %1$s can be configured for each block on %2$s page - "
269
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
270
  "checkbox.<br />"
271
  msgstr ""
272
 
273
+ #: ad-inserter.php:2542
274
  msgid ""
275
  "Default value is <strong>blank</strong> and means no individual exceptions "
276
  "(even if previously defined here).<br />"
277
  msgstr ""
278
 
279
+ #: ad-inserter.php:2545
280
  msgctxt "Pages"
281
  msgid ""
282
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
283
  "enabled</strong> to enable individual exception settings on this page.<br />"
284
  msgstr ""
285
 
286
+ #: ad-inserter.php:2546
287
  msgctxt "Posts"
288
  msgid ""
289
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
290
  "enabled</strong> to enable individual exception settings on this page.<br />"
291
  msgstr ""
292
 
293
+ #: ad-inserter.php:2548
294
  msgid "For more information check page %s"
295
  msgstr ""
296
 
297
  #. translators: Ad Inserter Exceptions documentation page
298
+ #: ad-inserter.php:2550
299
  msgid "Individual Exceptions"
300
  msgstr ""
301
 
302
+ #: ad-inserter.php:2597
303
  msgid "STATIC PAGE"
304
  msgstr ""
305
 
306
+ #: ad-inserter.php:2600
307
  msgid "POST"
308
  msgstr ""
309
 
310
+ #: ad-inserter.php:2603
311
  msgid "HOMEPAGE"
312
  msgstr ""
313
 
314
+ #: ad-inserter.php:2606
315
  msgid "CATEGORY PAGE"
316
  msgstr ""
317
 
318
+ #: ad-inserter.php:2609
319
  msgid "SEARCH PAGE"
320
  msgstr ""
321
 
322
+ #: ad-inserter.php:2612
323
  msgid "ARCHIVE PAGE"
324
  msgstr ""
325
 
326
+ #: ad-inserter.php:2615
327
  msgid "ERROR 404 PAGE"
328
  msgstr ""
329
 
330
+ #: ad-inserter.php:2618
331
  msgid "AJAX CALL"
332
  msgstr ""
333
 
334
+ #: ad-inserter.php:2621
335
  msgid "UNKNOWN PAGE TYPE"
336
  msgstr ""
337
 
338
+ #: ad-inserter.php:2638
339
  msgid "Click to delete ad blocking detection cokies"
340
  msgstr ""
341
 
342
+ #: ad-inserter.php:2639
343
  msgid "AD BLOCKING STATUS UNKNOWN"
344
  msgstr ""
345
 
346
  #. translators: %s: AdSense Auto Ads
347
+ #: ad-inserter.php:2663
348
  msgid ""
349
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
350
  "positions"
351
  msgstr ""
352
 
353
+ #: ad-inserter.php:2802
354
  msgid "Code for insertion"
355
  msgstr ""
356
 
357
+ #: ad-inserter.php:2802
358
  msgid "character"
359
  msgid_plural "characters"
360
  msgstr[0] ""
361
  msgstr[1] ""
362
 
363
+ #: ad-inserter.php:2845
364
  msgid "Header code"
365
  msgstr ""
366
 
367
+ #: ad-inserter.php:2845
368
  msgctxt "Header code"
369
  msgid "DISABLED"
370
  msgstr ""
371
 
372
+ #: ad-inserter.php:2845 ad-inserter.php:3067
373
  msgid "character inserted"
374
  msgid_plural "characters inserted"
375
  msgstr[0] ""
376
  msgstr[1] ""
377
 
378
+ #: ad-inserter.php:2878
379
  msgid "Automatically placed by AdSense Auto ads code"
380
  msgstr ""
381
 
382
+ #: ad-inserter.php:3067
383
  msgid "Footer code"
384
  msgstr ""
385
 
386
+ #: ad-inserter.php:3067
387
  msgctxt "Footer code"
388
  msgid "DISABLED"
389
  msgstr ""
390
 
391
+ #: ad-inserter.php:3073
392
  msgid "JAVASCRIPT NOT WORKING"
393
  msgstr ""
394
 
395
+ #: ad-inserter.php:3073
396
  msgid "NO JAVASCRIPT ERRORS"
397
  msgstr ""
398
 
399
+ #: ad-inserter.php:3073
400
  msgid "JAVASCRIPT ERRORS"
401
  msgstr ""
402
 
403
  #. translators: block name (block with default settings)
404
+ #: ad-inserter.php:5235
405
  msgctxt "Block name"
406
  msgid "Default"
407
  msgstr ""
408
 
409
  #. translators: %s: Ad Inserter
410
+ #: ad-inserter.php:5815
411
  msgid "Error importing %s settings."
412
  msgstr ""
413
 
414
+ #: ad-inserter.php:5816
415
  msgid "Error importing settings for block"
416
  msgid_plural "Error importing settings for blocks:"
417
  msgstr[0] ""
418
  msgstr[1] ""
419
 
420
+ #: ad-inserter.php:5865
421
  msgid "Settings saved."
422
  msgstr ""
423
 
424
+ #: ad-inserter.php:5950
425
  msgid "Settings cleared."
426
  msgstr ""
427
 
428
+ #: ad-inserter.php:6295 ad-inserter.php:6297 ad-inserter.php:6320
429
  msgid "word"
430
  msgid_plural "words"
431
  msgstr[0] ""
432
  msgstr[1] ""
433
 
434
+ #: ad-inserter.php:6334 ad-inserter.php:6446
435
  msgid "HTML TAGS REMOVED"
436
  msgstr ""
437
 
438
+ #: ad-inserter.php:6522
439
  msgid "BEFORE COMMENTS"
440
  msgstr ""
441
 
442
+ #: ad-inserter.php:6630
443
  msgid "AFTER COMMENTS"
444
  msgstr ""
445
 
446
+ #: ad-inserter.php:6693
447
  msgid "BETWEEN COMMENTS"
448
  msgstr ""
449
 
450
+ #: ad-inserter.php:7982
451
  msgid "requires WordPress 4.0 or newer"
452
  msgstr ""
453
 
454
+ #: ad-inserter.php:7982
455
  msgid "Please update!"
456
  msgstr ""
457
 
458
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
459
  #. name with HTML tags will be added)
460
+ #: ad-inserter.php:8216
461
  msgid "Thank you for installing"
462
  msgstr ""
463
 
464
  #. translators: Opt-in message: %s: HTML tags
465
+ #: ad-inserter.php:8218
466
  msgid ""
467
  "We would like to %s track its usage %s on your site. This is completely "
468
  "optional and can be disabled at any time."
469
  msgstr ""
470
 
471
+ #: ad-inserter.php:8220
472
  msgid ""
473
  "We don't record any sensitive data, only information regarding the WordPress "
474
  "environment and plugin usage, which will help us to make improvements to the "
476
  msgstr ""
477
 
478
  #. translators: Deactivation message: %s: HTML tags
479
+ #: ad-inserter.php:8257
480
  msgid ""
481
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
482
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
484
  msgstr ""
485
 
486
  #. translators: %s: Ad Inserter
487
+ #: ad-inserter.php:8300
488
  msgid "%s block."
489
  msgstr ""
490
 
491
  #. translators: widget title
492
+ #: ad-inserter.php:8316 ad-inserter.php:8352
493
  msgid "Processing log"
494
  msgstr ""
495
 
496
  #. translators: widget title
497
+ #: ad-inserter.php:8318 ad-inserter.php:8353
498
  msgid "Dummy widget"
499
  msgstr ""
500
 
501
  #. translators: widget title
502
+ #: ad-inserter.php:8320 ad-inserter.php:8351
503
  msgid "Debugging tools"
504
  msgstr ""
505
 
506
  #. translators: block status (widget title)
507
+ #: ad-inserter.php:8327
508
  msgctxt "block"
509
  msgid "PAUSED"
510
  msgstr ""
511
 
512
+ #: ad-inserter.php:8328
513
  msgid "WIDGET DISABLED"
514
  msgstr ""
515
 
516
+ #: ad-inserter.php:8329
517
  msgid "Unknown block"
518
  msgstr ""
519
 
520
+ #: ad-inserter.php:8338 includes/functions.php:2819 settings.php:1049
521
  msgid "Title"
522
  msgstr ""
523
 
524
+ #: ad-inserter.php:8360
525
  msgctxt "Widget"
526
  msgid "Sticky"
527
  msgstr ""
528
 
529
+ #: ad-inserter.php:8409
530
  msgid ""
531
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
532
  "Inserter you need to first deactivate Ad Inserter Pro."
533
  msgstr ""
534
 
535
+ #: ad-inserter.php:8410
536
  msgid ""
537
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
538
  "will clear all settings that are available only in the Pro version "
544
  msgid "PHP error in %s block"
545
  msgstr ""
546
 
547
+ #: class.php:1938
548
  msgid "Counters"
549
  msgstr ""
550
 
551
+ #: class.php:1942
552
  msgid "Content"
553
  msgstr ""
554
 
555
+ #: class.php:1947
556
  msgid "Excerpt"
557
  msgstr ""
558
 
559
+ #: class.php:1952 strings.php:17
560
  msgid "Before post"
561
  msgstr ""
562
 
563
+ #: class.php:1957 strings.php:18
564
  msgid "After post"
565
  msgstr ""
566
 
567
+ #: class.php:1962 settings.php:1635 settings.php:3748
568
  msgid "Widget"
569
  msgstr ""
570
 
571
+ #: class.php:1967 settings.php:3746
572
  msgid "PHP function call"
573
  msgstr ""
574
 
575
+ #: class.php:2002
576
  msgid "AJAX REQUEST"
577
  msgstr ""
578
 
579
+ #: class.php:2005
580
  msgid "Ajax request for block in iframe"
581
  msgstr ""
582
 
583
+ #: class.php:2035
584
  msgid "Ajax request url, click to open it in a new tab"
585
  msgstr ""
586
 
587
+ #: class.php:2038
588
  msgid "IN THE LOOP"
589
  msgstr ""
590
 
591
+ #: class.php:2038
592
  msgid "YES"
593
  msgstr ""
594
 
595
+ #: class.php:2038
596
  msgid "NO"
597
  msgstr ""
598
 
599
+ #: class.php:2074
600
  msgid "BLOCK"
601
  msgstr ""
602
 
603
+ #: class.php:2074
604
  msgctxt "block or widget"
605
  msgid "INSERTED BUT NOT VISIBLE"
606
  msgstr ""
607
 
608
+ #: class.php:2461 class.php:2520
609
  msgid "ACTIVE GROUPS"
610
  msgstr ""
611
 
612
  #. translators: %s: list parameters and type
613
+ #: class.php:2695
614
  msgid "parameters='%s' type='%s'"
615
  msgstr ""
616
 
617
  #. translators: %s: list parameters and type
618
+ #: class.php:2697
619
  msgid "referers='%s' type='%s'"
620
  msgstr ""
621
 
622
  #. translators: %s: list parameters and type
623
+ #: class.php:2758
624
  msgid "countries='%s' type='%s'"
625
  msgstr ""
626
 
627
  #. translators: %s: list parameters and type
628
+ #: class.php:2760
629
  msgid "ip addresses='%s' type='%s'"
630
  msgstr ""
631
 
632
+ #: class.php:3029 strings.php:232
633
  msgid "BEFORE"
634
  msgstr ""
635
 
636
+ #: class.php:3037 strings.php:234
637
  msgid "PREPEND CONTENT"
638
  msgstr ""
639
 
640
+ #: class.php:3041 strings.php:235
641
  msgid "APPEND CONTENT"
642
  msgstr ""
643
 
644
+ #: class.php:3045 strings.php:236
645
  msgid "REPLACE CONTENT"
646
  msgstr ""
647
 
648
+ #: class.php:3049 strings.php:237
649
  msgid "REPLACE ELEMENT"
650
  msgstr ""
651
 
652
+ #: class.php:3060 strings.php:233
653
  msgid "AFTER"
654
  msgstr ""
655
 
656
+ #: class.php:3127
657
  msgctxt "JavaScript"
658
  msgid "script"
659
  msgstr ""
660
 
661
+ #: class.php:3130 settings.php:1904
662
  msgid "for"
663
  msgstr ""
664
 
665
+ #: class.php:5721 class.php:5773
666
  msgctxt "category name"
667
  msgid "Uncategorized"
668
  msgstr ""
669
 
670
+ #: class.php:6266
671
  msgid ""
672
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
673
  "extension for PHP."
707
  msgid "PAGE BLOCKED"
708
  msgstr ""
709
 
710
+ #: includes/functions.php:287
711
  msgid "%d of %d names shown"
712
  msgstr ""
713
 
714
  #. translators: %s: name filter
715
+ #: includes/functions.php:306
716
  msgid "No name matches filter"
717
  msgstr ""
718
 
719
+ #: includes/functions.php:363 settings.php:174
720
  msgid "Online documentation"
721
  msgstr ""
722
 
723
+ #: includes/functions.php:363 settings.php:174
724
  msgid "Documentation"
725
  msgstr ""
726
 
727
+ #: includes/functions.php:376 settings.php:187
728
  msgid "Blocks"
729
  msgstr ""
730
 
731
  #. translators: %s: Ad Inserter Pro
732
+ #: includes/functions.php:399
733
  msgid ""
734
  "Import %s settings when saving - if checked, the encoded settings below will "
735
  "be imported for all blocks and settings"
736
  msgstr ""
737
 
738
+ #: includes/functions.php:399
739
  msgid "Import Settings for"
740
  msgstr ""
741
 
742
+ #: includes/functions.php:403
743
  msgid "Saved settings for"
744
  msgstr ""
745
 
746
+ #: includes/functions.php:422
747
  msgid "License Key"
748
  msgstr ""
749
 
750
+ #: includes/functions.php:425
751
  msgid "License Key for"
752
  msgstr ""
753
 
754
+ #: includes/functions.php:431
755
  msgid "Hide license key"
756
  msgstr ""
757
 
758
+ #: includes/functions.php:431
759
  msgid "Hide key"
760
  msgstr ""
761
 
762
+ #: includes/functions.php:452
763
  msgid "Main content element"
764
  msgstr ""
765
 
766
+ #: includes/functions.php:455
767
  msgid ""
768
  "Main content element (#id or .class) for 'Stick to the content' position. "
769
  "Leave empty unless position is not properly calculated."
770
  msgstr ""
771
 
772
+ #: includes/functions.php:456 settings.php:1205 settings.php:2524
773
  msgid "Open HTML element selector"
774
  msgstr ""
775
 
776
+ #: includes/functions.php:461
777
  msgid "Lazy loading offset"
778
  msgstr ""
779
 
780
+ #: includes/functions.php:464
781
  msgid "Offset of the block from the visible viewport when it should be loaded"
782
  msgstr ""
783
 
784
+ #: includes/functions.php:475
785
  msgid "Export / Import Block Settings"
786
  msgstr ""
787
 
788
+ #: includes/functions.php:490
789
  msgid "Track impressions and clicks for this block"
790
  msgstr ""
791
 
792
+ #: includes/functions.php:490
793
  msgid " - global tracking disabled"
794
  msgstr ""
795
 
796
+ #: includes/functions.php:497
797
  msgid "Generate PDF report"
798
  msgstr ""
799
 
800
+ #: includes/functions.php:502
801
  msgid "Open public report"
802
  msgstr ""
803
 
804
+ #: includes/functions.php:516
805
  msgid "Toggle Ad Blocking Statistics"
806
  msgstr ""
807
 
808
+ #: includes/functions.php:524 includes/functions.php:2616
809
  msgid "Toggle Statistics"
810
  msgstr ""
811
 
812
  #. translators: %s: Ad Inserter Pro
813
+ #: includes/functions.php:540
814
  msgid "%s license key is not set. Continue?"
815
  msgstr ""
816
 
817
  #. translators: %s: Ad Inserter Pro
818
+ #: includes/functions.php:544
819
  msgid "Invalid %s license key. Continue?"
820
  msgstr ""
821
 
822
  #. translators: %s: Ad Inserter Pro
823
+ #: includes/functions.php:548
824
  msgid "%s license overused. Continue?"
825
  msgstr ""
826
 
827
+ #: includes/functions.php:552 settings.php:1975
828
  msgid "Save Settings"
829
  msgstr ""
830
 
831
+ #: includes/functions.php:612 includes/preview.php:2106
832
  msgid "Horizontal position"
833
  msgstr ""
834
 
835
+ #: includes/functions.php:635
836
  msgid ""
837
  "Horizontal margin from the content or screen edge, empty means default value "
838
  "from CSS"
839
  msgstr ""
840
 
841
+ #: includes/functions.php:643 includes/preview.php:2161
842
  msgid "Vertical position"
843
  msgstr ""
844
 
845
+ #: includes/functions.php:658
846
  msgid ""
847
  "Vertical margin from the top or bottom screen edge, empty means default "
848
  "value from CSS"
849
  msgstr ""
850
 
851
+ #: includes/functions.php:683 includes/preview.php:2212
852
  msgid "Animation"
853
  msgstr ""
854
 
855
+ #: includes/functions.php:701
856
  msgid "Trigger"
857
  msgstr ""
858
 
859
+ #: includes/functions.php:710
860
  msgid ""
861
  "Trigger value: page scroll in %, page scroll in px or element with selector "
862
  "(#id or .class) becomes visible"
863
  msgstr ""
864
 
865
+ #: includes/functions.php:714
866
  msgid "Offset"
867
  msgstr ""
868
 
869
+ #: includes/functions.php:714
870
  msgid "Offset of trigger element"
871
  msgstr ""
872
 
873
+ #: includes/functions.php:718
874
  msgid "Delay"
875
  msgstr ""
876
 
877
+ #: includes/functions.php:718
878
  msgid "Delay animation after trigger condition"
879
  msgstr ""
880
 
881
+ #: includes/functions.php:722
882
  msgid "Trigger once"
883
  msgstr ""
884
 
885
+ #: includes/functions.php:724
886
  msgid "Trigger animation only once"
887
  msgstr ""
888
 
889
+ #: includes/functions.php:766
890
  msgid "Tracking is globally disabled"
891
  msgstr ""
892
 
893
+ #: includes/functions.php:770
894
  msgid "Tracking for this block is disabled"
895
  msgstr ""
896
 
897
+ #: includes/functions.php:777
898
  msgid "Double click to toggle controls in public reports"
899
  msgstr ""
900
 
901
+ #: includes/functions.php:783 settings.php:3237 settings.php:3273
902
+ #: settings.php:3316 strings.php:212
903
  msgid "Loading..."
904
  msgstr ""
905
 
906
+ #: includes/functions.php:804
907
  msgid ""
908
  "Clear statistics data for the selected range - clear both dates to delete "
909
  "all data for this block"
910
  msgstr ""
911
 
912
+ #: includes/functions.php:808
913
  msgid "Auto refresh data for the selected range every 60 seconds"
914
  msgstr ""
915
 
916
+ #: includes/functions.php:811 includes/functions.php:4840
917
  msgid "Load data for last month"
918
  msgstr ""
919
 
920
+ #: includes/functions.php:811 includes/functions.php:4840
921
  msgid "Last Month"
922
  msgstr ""
923
 
924
+ #: includes/functions.php:814 includes/functions.php:4843
925
  msgid "Load data for this month"
926
  msgstr ""
927
 
928
+ #: includes/functions.php:814 includes/functions.php:4843
929
  msgid "This Month"
930
  msgstr ""
931
 
932
+ #: includes/functions.php:817 includes/functions.php:4846
933
  msgid "Load data for this year"
934
  msgstr ""
935
 
936
+ #: includes/functions.php:817 includes/functions.php:4846
937
  msgid "This Year"
938
  msgstr ""
939
 
940
+ #: includes/functions.php:820 includes/functions.php:4849
941
  msgid "Load data for the last 15 days"
942
  msgstr ""
943
 
944
+ #: includes/functions.php:823 includes/functions.php:4852
945
  msgid "Load data for the last 30 days"
946
  msgstr ""
947
 
948
+ #: includes/functions.php:826 includes/functions.php:4855
949
  msgid "Load data for the last 90 days"
950
  msgstr ""
951
 
952
+ #: includes/functions.php:829 includes/functions.php:4858
953
  msgid "Load data for the last 180 days"
954
  msgstr ""
955
 
956
+ #: includes/functions.php:832 includes/functions.php:4861
957
  msgid "Load data for the last 365 days"
958
  msgstr ""
959
 
960
+ #: includes/functions.php:842 includes/functions.php:4871
961
  msgid "Load data for the selected range"
962
  msgstr ""
963
 
964
+ #: includes/functions.php:858
965
  msgid ""
966
  "Import settings when saving - if checked, the encoded settings below will be "
967
  "imported for this block"
968
  msgstr ""
969
 
970
+ #: includes/functions.php:858
971
  msgid "Import settings for block"
972
  msgstr ""
973
 
974
+ #: includes/functions.php:862
975
  msgid ""
976
  "Import block name when saving - if checked and 'Import settings for block' "
977
  "is also checked, the name from encoded settings below will be imported for "
978
  "this block"
979
  msgstr ""
980
 
981
+ #: includes/functions.php:862
982
  msgid "Import block name"
983
  msgstr ""
984
 
985
+ #: includes/functions.php:866
986
  msgid "Saved settings for block"
987
  msgstr ""
988
 
989
+ #: includes/functions.php:879
990
  msgid "Export / Import Ad Inserter Pro Settings"
991
  msgstr ""
992
 
993
+ #: includes/functions.php:889
994
  msgid "Are you sure you want to clear all statistics data for all blocks?"
995
  msgstr ""
996
 
997
+ #: includes/functions.php:891
998
  msgid "Clear All Statistics Data"
999
  msgstr ""
1000
 
1001
+ #: includes/functions.php:918
1002
  msgid "Toggle country/city editor"
1003
  msgstr ""
1004
 
1005
+ #: includes/functions.php:924
1006
  msgid "IP Addresses"
1007
  msgstr ""
1008
 
1009
+ #: includes/functions.php:927
1010
  msgid "Toggle IP address editor"
1011
  msgstr ""
1012
 
1013
+ #: includes/functions.php:930
1014
  msgid ""
1015
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1016
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1017
  msgstr ""
1018
 
1019
+ #: includes/functions.php:934
1020
  msgid "Blacklist IP addresses"
1021
  msgstr ""
1022
 
1023
+ #: includes/functions.php:938
1024
  msgid "Whitelist IP addresses"
1025
  msgstr ""
1026
 
1027
+ #: includes/functions.php:949
1028
  msgid "Countries"
1029
  msgstr ""
1030
 
1031
+ #: includes/functions.php:950
1032
  msgid "Cities"
1033
  msgstr ""
1034
 
1035
+ #: includes/functions.php:954 includes/functions.php:2581
1036
  msgid "Toggle country editor"
1037
  msgstr ""
1038
 
1039
+ #: includes/functions.php:957
1040
  msgid "Toggle city editor"
1041
  msgstr ""
1042
 
1043
+ #: includes/functions.php:961 includes/functions.php:2584
1044
  msgid "Comma separated country ISO Alpha-2 codes"
1045
  msgstr ""
1046
 
1047
+ #: includes/functions.php:965
1048
  msgid "Blacklist countries"
1049
  msgstr ""
1050
 
1051
+ #: includes/functions.php:969
1052
  msgid "Whitelist countries"
1053
  msgstr ""
1054
 
1055
+ #: includes/functions.php:1286 includes/functions.php:1525
1056
  msgid "Enter license key"
1057
  msgstr ""
1058
 
1059
  #. translators: %s: Ad Inserter Pro
1060
+ #: includes/functions.php:1292
1061
  msgid ""
1062
  "%s license key is not set. Plugin functionality is limited and updates are "
1063
  "disabled."
1064
  msgstr ""
1065
 
1066
+ #: includes/functions.php:1304 includes/functions.php:1534
1067
  msgid "Check license key"
1068
  msgstr ""
1069
 
1070
  #. translators: %s: Ad Inserter Pro
1071
+ #: includes/functions.php:1310
1072
  msgid "Invalid %s license key."
1073
  msgstr ""
1074
 
1075
  #. translators: %s: Ad Inserter Pro
1076
+ #: includes/functions.php:1319
1077
  msgid "%s license expired. Plugin updates are disabled."
1078
  msgstr ""
1079
 
1080
+ #: includes/functions.php:1320
1081
  msgid "Renew license"
1082
  msgstr ""
1083
 
1084
  #. translators: %s: Ad Inserter Pro
1085
+ #: includes/functions.php:1328
1086
  msgid "%s license overused. Plugin updates are disabled."
1087
  msgstr ""
1088
 
1089
+ #: includes/functions.php:1329
1090
  msgid "Manage licenses"
1091
  msgstr ""
1092
 
1093
+ #: includes/functions.php:1329
1094
  msgid "Upgrade license"
1095
  msgstr ""
1096
 
1097
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1098
+ #: includes/functions.php:1527
1099
  msgid ""
1100
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1101
  "limited and updates are disabled."
1102
  msgstr ""
1103
 
1104
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1105
+ #: includes/functions.php:1536
1106
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1107
  msgstr ""
1108
 
1109
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1110
+ #: includes/functions.php:1552
1111
  msgid ""
1112
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1113
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1114
  msgstr ""
1115
 
1116
  #. translators: 1, 3: HTML tags, 2: percentage
1117
+ #: includes/functions.php:1559
1118
  msgid ""
1119
  "During the license period and 30 days after the license has expired we offer "
1120
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1121
  msgstr ""
1122
 
1123
+ #: includes/functions.php:1586
1124
  msgid "Renew the licence"
1125
  msgstr ""
1126
 
1127
+ #: includes/functions.php:1588
1128
  msgid "Update license status"
1129
  msgstr ""
1130
 
1131
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1132
+ #: includes/functions.php:1599
1133
  msgid ""
1134
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1135
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1136
  msgstr ""
1137
 
1138
  #. Translators: %s: HTML tag
1139
+ #: includes/functions.php:1621
1140
  msgid "Warning: %s MaxMind IP geolocation database not found."
1141
  msgstr ""
1142
 
1143
+ #: includes/functions.php:2159
1144
  msgid "Geolocation"
1145
  msgstr ""
1146
 
1147
+ #: includes/functions.php:2163
1148
  msgid "Exceptions"
1149
  msgstr ""
1150
 
1151
+ #: includes/functions.php:2168
1152
  msgid "Multisite"
1153
  msgstr ""
1154
 
1155
+ #: includes/functions.php:2173
1156
  msgid "Tracking"
1157
  msgstr ""
1158
 
1159
  #. translators: %d: days, hours, minutes
1160
+ #: includes/functions.php:2204
1161
  msgid "Scheduled in %d days %d hours %d minutes"
1162
  msgstr ""
1163
 
1164
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1165
  #. HTML code for long dash separator
1166
+ #: includes/functions.php:2213
1167
  msgid "Active %s expires in %d days %d hours %d minutes"
1168
  msgstr ""
1169
 
1170
+ #: includes/functions.php:2217
1171
  msgid "Expired"
1172
  msgstr ""
1173
 
1174
+ #: includes/functions.php:2225 settings.php:1288 settings.php:1303
1175
+ #: settings.php:1890
1176
  msgid "and"
1177
  msgstr ""
1178
 
1179
+ #: includes/functions.php:2228
1180
  msgid "fallback"
1181
  msgstr ""
1182
 
1183
+ #: includes/functions.php:2229
1184
  msgid "Block to be used when scheduling expires"
1185
  msgstr ""
1186
 
1187
+ #: includes/functions.php:2254
1188
  msgid "Load in iframe"
1189
  msgstr ""
1190
 
1191
+ #: includes/functions.php:2258 includes/placeholders.php:389
1192
  msgid "Width"
1193
  msgstr ""
1194
 
1195
+ #: includes/functions.php:2259
1196
  msgid "iframe width, empty means full width (100%)"
1197
  msgstr ""
1198
 
1199
+ #: includes/functions.php:2265 includes/placeholders.php:384
1200
  msgid "Height"
1201
  msgstr ""
1202
 
1203
+ #: includes/functions.php:2266
1204
  msgid "iframe height, empty means adjust it to iframe content height"
1205
  msgstr ""
1206
 
1207
+ #: includes/functions.php:2273
1208
  msgid "Ad label in iframe"
1209
  msgstr ""
1210
 
1211
+ #: includes/functions.php:2278
1212
  msgid "Preview iframe code"
1213
  msgstr ""
1214
 
1215
+ #: includes/functions.php:2278 includes/preview.php:1974 settings.php:965
1216
+ #: settings.php:2586
1217
  msgid "Preview"
1218
  msgstr ""
1219
 
1220
+ #: includes/functions.php:2292 includes/functions.php:3899
1221
+ #: includes/functions.php:3962 settings.php:2028
1222
  msgid "Ad Blocking"
1223
  msgstr ""
1224
 
1225
  #. translators: 1, 2 and 3, 4: HTML tags
1226
+ #: includes/functions.php:2301
1227
  msgid ""
1228
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1229
  "for tracking!"
1231
 
1232
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1233
  #. header
1234
+ #: includes/functions.php:2310
1235
  msgid ""
1236
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1237
  "enabled and automatic insertion %6$s!"
1238
  msgstr ""
1239
 
1240
+ #: includes/functions.php:2328
1241
  msgid "When ad blocking is detected"
1242
  msgstr ""
1243
 
1244
+ #: includes/functions.php:2337
1245
  msgid "replacement"
1246
  msgstr ""
1247
 
1248
+ #: includes/functions.php:2338
1249
  msgid "Block to be shown when ad blocking is detected"
1250
  msgstr ""
1251
 
1252
+ #: includes/functions.php:2339
1253
  msgctxt "replacement"
1254
  msgid "None"
1255
  msgstr ""
1256
 
1257
+ #: includes/functions.php:2356
1258
  msgid "Close button"
1259
  msgstr ""
1260
 
1261
+ #: includes/functions.php:2408
1262
+ msgid "Auto close after"
1263
+ msgstr ""
1264
+
1265
+ #: includes/functions.php:2409
1266
+ msgid ""
1267
+ "Time in seconds in which the ad will automatically close. Leave empty to "
1268
+ "disable auto closing."
1269
+ msgstr ""
1270
+
1271
+ #. Translators: Don't show for x days
1272
+ #: includes/functions.php:2414
1273
+ msgid "Don't show for"
1274
+ msgstr ""
1275
+
1276
+ #: includes/functions.php:2415
1277
+ msgid ""
1278
+ "Time in days in which closed ad will not be shown again. Use decimal value "
1279
+ "for shorter time period or leave empty to show it again on page reload."
1280
+ msgstr ""
1281
+
1282
+ #. Translators: Don't show for x days
1283
+ #: includes/functions.php:2417 strings.php:194 strings.php:195 strings.php:196
1284
+ #: strings.php:197 strings.php:198 strings.php:199
1285
+ msgid "day"
1286
+ msgid_plural "days"
1287
+ msgstr[0] ""
1288
+ msgstr[1] ""
1289
+
1290
+ #. Translators: Delay showing for x pageviews
1291
+ #: includes/functions.php:2435
1292
+ msgid "Delay showing for"
1293
+ msgstr ""
1294
+
1295
+ #: includes/functions.php:2436
1296
+ msgid ""
1297
+ "Number of pageviews before the code is inserted (and ad displayed). Leave "
1298
+ "empty to insert the code for the first pageview."
1299
+ msgstr ""
1300
+
1301
+ #. Translators: Delay showing for x pageviews
1302
+ #. Translators: Show every x pageviews
1303
+ #: includes/functions.php:2438 includes/functions.php:2445
1304
+ msgid "pageview"
1305
+ msgid_plural "pageviews"
1306
+ msgstr[0] ""
1307
+ msgstr[1] ""
1308
+
1309
+ #. Translators: Show every x pageviews
1310
+ #: includes/functions.php:2442
1311
+ msgid "Show every"
1312
+ msgid_plural "Show every"
1313
+ msgstr[0] ""
1314
+ msgstr[1] ""
1315
+
1316
+ #: includes/functions.php:2443
1317
+ msgid ""
1318
+ "Number of pageviews to insert the code again. Leave empty to insert the code "
1319
+ "for every pageview."
1320
+ msgstr ""
1321
+
1322
+ #: includes/functions.php:2462
1323
  msgid "Lazy loading"
1324
  msgstr ""
1325
 
1326
  #. Translators: %s MaxMind
1327
+ #: includes/functions.php:2516
1328
  msgid "This product includes GeoLite2 data created by %s"
1329
  msgstr ""
1330
 
1331
+ #: includes/functions.php:2527
1332
  msgid "IP geolocation database"
1333
  msgstr ""
1334
 
1335
+ #: includes/functions.php:2530
1336
  msgid "Select IP geolocation database."
1337
  msgstr ""
1338
 
1339
+ #: includes/functions.php:2541
1340
  msgid "Automatic database updates"
1341
  msgstr ""
1342
 
1343
+ #: includes/functions.php:2544
1344
  msgid ""
1345
  "Automatically download and update free GeoLite2 IP geolocation database by "
1346
  "MaxMind"
1347
  msgstr ""
1348
 
1349
+ #: includes/functions.php:2552
1350
  msgid "Database"
1351
  msgstr ""
1352
 
1353
+ #: includes/functions.php:2555
1354
  msgid ""
1355
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1356
  "file"
1357
  msgstr ""
1358
 
1359
  #. translators: %d: group number
1360
+ #: includes/functions.php:2573
1361
  msgid "Group %d"
1362
  msgstr ""
1363
 
1364
+ #: includes/functions.php:2579
1365
  msgid "countries"
1366
  msgstr ""
1367
 
1368
+ #: includes/functions.php:2624
1369
  msgid ""
1370
  "Enable impression and click tracking. You also need to enable tracking for "
1371
  "each block you want to track."
1372
  msgstr ""
1373
 
1374
+ #: includes/functions.php:2631
1375
  msgid "Generate report"
1376
  msgstr ""
1377
 
1378
+ #: includes/functions.php:2639
1379
  msgid "Impression and Click Tracking"
1380
  msgstr ""
1381
 
1382
+ #: includes/functions.php:2640 settings.php:2474
1383
  msgctxt "ad blocking detection"
1384
  msgid "NOT ENABLED"
1385
  msgstr ""
1386
 
1387
+ #: includes/functions.php:2656
1388
  msgid "Internal"
1389
  msgstr ""
1390
 
1391
+ #: includes/functions.php:2660
1392
  msgid "Track impressions and clicks with internal tracking and statistics"
1393
  msgstr ""
1394
 
1395
+ #: includes/functions.php:2665
1396
  msgid "External"
1397
  msgstr ""
1398
 
1399
+ #: includes/functions.php:2669
1400
  msgid ""
1401
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1402
  "code installed)"
1403
  msgstr ""
1404
 
1405
+ #: includes/functions.php:2674
1406
  msgid "Track Pageviews"
1407
  msgstr ""
1408
 
1409
+ #: includes/functions.php:2680
1410
  msgid "Track Pageviews by Device (as configured for viewports)"
1411
  msgstr ""
1412
 
1413
+ #: includes/functions.php:2690
1414
  msgid "Track for Logged in Users"
1415
  msgstr ""
1416
 
1417
+ #: includes/functions.php:2696
1418
  msgid "Track impressions and clicks from logged in users"
1419
  msgstr ""
1420
 
1421
+ #: includes/functions.php:2706
1422
  msgid "Click Detection"
1423
  msgstr ""
1424
 
1425
+ #: includes/functions.php:2712
1426
  msgid ""
1427
  "Standard method detects clicks only on banners with links, Advanced method "
1428
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1429
  msgstr ""
1430
 
1431
+ #: includes/functions.php:2738
1432
  msgid "Report header image"
1433
  msgstr ""
1434
 
1435
+ #: includes/functions.php:2741
1436
  msgid ""
1437
  "Image or logo to be displayed in the header of the statistins report. "
1438
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1439
  "to reset to default image."
1440
  msgstr ""
1441
 
1442
+ #: includes/functions.php:2742 strings.php:224
1443
  msgid "Select or upload header image"
1444
  msgstr ""
1445
 
1446
+ #: includes/functions.php:2747
1447
  msgid "Report header title"
1448
  msgstr ""
1449
 
1450
+ #: includes/functions.php:2750
1451
  msgid ""
1452
  "Title to be displayed in the header of the statistics report. Text or HTML "
1453
  "code, clear to reset to default text."
1454
  msgstr ""
1455
 
1456
+ #: includes/functions.php:2755
1457
  msgid "Report header description"
1458
  msgstr ""
1459
 
1460
+ #: includes/functions.php:2758
1461
  msgid ""
1462
  "Description to be displayed in the header of the statistics report. Text or "
1463
  "HTML code, clear to reset to default text."
1464
  msgstr ""
1465
 
1466
+ #: includes/functions.php:2763
1467
  msgid "Report footer"
1468
  msgstr ""
1469
 
1470
+ #: includes/functions.php:2766
1471
  msgid ""
1472
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1473
  "to default text."
1474
  msgstr ""
1475
 
1476
+ #: includes/functions.php:2771
1477
  msgid "Public report key"
1478
  msgstr ""
1479
 
1480
+ #: includes/functions.php:2774
1481
  msgid "String to generate unique report IDs. Clear to reset to default value."
1482
  msgstr ""
1483
 
1484
+ #: includes/functions.php:2806
1485
  msgid "Are you sure you want to clear all exceptions for block"
1486
  msgstr ""
1487
 
1488
+ #: includes/functions.php:2807 settings.php:1052
1489
  msgid "Clear all exceptions for block"
1490
  msgstr ""
1491
 
1492
+ #: includes/functions.php:2814
1493
  msgid "Are you sure you want to clear all exceptions?"
1494
  msgstr ""
1495
 
1496
+ #: includes/functions.php:2814
1497
  msgid "Clear all exceptions for all blocks"
1498
  msgstr ""
1499
 
1500
+ #: includes/functions.php:2819 settings.php:3475 settings.php:3818
1501
  msgid "Type"
1502
  msgstr ""
1503
 
1504
+ #: includes/functions.php:2837
1505
  msgid "View"
1506
  msgstr ""
1507
 
1508
+ #: includes/functions.php:2838 includes/placeholders.php:353
1509
+ #: includes/preview.php:2281 settings.php:1191
1510
  msgid "Edit"
1511
  msgstr ""
1512
 
1513
+ #: includes/functions.php:2868
1514
  msgid "Are you sure you want to clear all exceptions for"
1515
  msgstr ""
1516
 
1517
+ #: includes/functions.php:2869
1518
  msgid "Clear all exceptions for"
1519
  msgstr ""
1520
 
1521
+ #: includes/functions.php:2882
1522
  msgid "No exceptions"
1523
  msgstr ""
1524
 
1525
  #. translators: %s: Ad Inserter Pro
1526
+ #: includes/functions.php:2893
1527
  msgid "%s options for network blogs"
1528
  msgstr ""
1529
 
1530
  #. translators: %s: Ad Inserter Pro
1531
+ #: includes/functions.php:2898
1532
  msgid "Enable %s widgets for sub-sites"
1533
  msgstr ""
1534
 
1535
+ #: includes/functions.php:2898
1536
  msgid "Widgets"
1537
  msgstr ""
1538
 
1539
+ #: includes/functions.php:2903
1540
  msgid "Enable PHP code processing for sub-sites"
1541
  msgstr ""
1542
 
1543
+ #: includes/functions.php:2903
1544
  msgid "PHP Processing"
1545
  msgstr ""
1546
 
1547
  #. translators: %s: Ad Inserter Pro
1548
+ #: includes/functions.php:2908
1549
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1550
  msgstr ""
1551
 
1552
+ #: includes/functions.php:2908
1553
  msgid "Post/Page exceptions"
1554
  msgstr ""
1555
 
1556
  #. translators: %s: Ad Inserter Pro
1557
+ #: includes/functions.php:2913
1558
  msgid "Enable %s settings page for sub-sites"
1559
  msgstr ""
1560
 
1561
+ #: includes/functions.php:2913
1562
  msgid "Settings page"
1563
  msgstr ""
1564
 
1565
  #. translators: %s: Ad Inserter Pro
1566
+ #: includes/functions.php:2918
1567
  msgid "Enable %s settings of main site to be used for all blogs"
1568
  msgstr ""
1569
 
1570
+ #: includes/functions.php:2918
1571
  msgid "Main site settings used for all blogs"
1572
  msgstr ""
1573
 
1574
+ #: includes/functions.php:2929 settings.php:2473
1575
  msgid "Ad Blocking Detection"
1576
  msgstr ""
1577
 
1578
+ #: includes/functions.php:2935
1579
  msgid ""
1580
  "Standard method is reliable but should be used only if Advanced method does "
1581
  "not work. Advanced method recreates files used for detection with random "
1583
  "publicly accessible"
1584
  msgstr ""
1585
 
1586
+ #: includes/functions.php:3562 includes/functions.php:3652
1587
+ #: includes/functions.php:3672
1588
  msgid "AD BLOCKING"
1589
  msgstr ""
1590
 
1591
+ #: includes/functions.php:3563 includes/functions.php:3603
1592
+ #: includes/functions.php:3646 includes/functions.php:3673
1593
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1594
  msgstr ""
1595
 
1596
+ #: includes/functions.php:3566 includes/functions.php:3645
1597
+ #: includes/functions.php:3679
1598
  msgid "NO AD BLOCKING"
1599
  msgstr ""
1600
 
1601
+ #: includes/functions.php:3602 includes/functions.php:3609
1602
  msgid "AD BLOCKING REPLACEMENT"
1603
  msgstr ""
1604
 
1605
+ #: includes/functions.php:3752 includes/functions.php:3961
1606
  msgid "Pageviews"
1607
  msgstr ""
1608
 
1609
+ #: includes/functions.php:3898
1610
  msgctxt "Version"
1611
  msgid "Unknown"
1612
  msgstr ""
1613
 
1614
+ #: includes/functions.php:3898
1615
  msgctxt "Times"
1616
  msgid "DISPLAYED"
1617
  msgstr ""
1618
 
1619
+ #: includes/functions.php:3898
1620
  msgid "No version"
1621
  msgstr ""
1622
 
1623
+ #: includes/functions.php:3899
1624
  msgctxt "Times"
1625
  msgid "BLOCKED"
1626
  msgstr ""
1627
 
1628
+ #: includes/functions.php:3961
1629
  msgid "Impressions"
1630
  msgstr ""
1631
 
1632
+ #: includes/functions.php:3962 includes/functions.php:3963
1633
+ #: includes/functions.php:4018
1634
  msgid "Clicks"
1635
  msgstr ""
1636
 
1637
+ #: includes/functions.php:3963
1638
  msgid "events"
1639
  msgstr ""
1640
 
1641
+ #: includes/functions.php:3964
1642
  msgid "Ad Blocking Share"
1643
  msgstr ""
1644
 
1645
  #. translators: CTR as Click Through Rate
1646
+ #: includes/functions.php:3964 includes/functions.php:4024
1647
  msgid "CTR"
1648
  msgstr ""
1649
 
1650
+ #: includes/functions.php:4106
1651
  msgid "pageviews"
1652
  msgid_plural "pageviews"
1653
  msgstr[0] ""
1654
  msgstr[1] ""
1655
 
1656
+ #: includes/functions.php:4106
1657
  msgid "impressions"
1658
  msgid_plural "impressions"
1659
  msgstr[0] ""
1660
  msgstr[1] ""
1661
 
1662
+ #: includes/functions.php:4110
1663
  msgid "event"
1664
  msgid_plural "events"
1665
  msgstr[0] ""
1666
  msgstr[1] ""
1667
 
1668
+ #: includes/functions.php:4110
1669
  msgid "click"
1670
  msgid_plural "clicks"
1671
  msgstr[0] ""
1672
  msgstr[1] ""
1673
 
1674
+ #: includes/functions.php:4205
1675
  msgctxt "Pageviews / Impressions"
1676
  msgid "Average"
1677
  msgstr ""
1678
 
1679
+ #: includes/functions.php:4226
1680
  msgctxt "Ad Blocking / Clicks"
1681
  msgid "Average"
1682
  msgstr ""
1683
 
1684
+ #: includes/functions.php:4250
1685
  msgctxt "Ad Blocking Share / CTR"
1686
  msgid "Average"
1687
  msgstr ""
1688
 
1689
  #. Translators: %s: Ad Inserter Pro
1690
+ #: includes/functions.php:4432 includes/functions.php:4524
1691
+ #: includes/functions.php:4785 strings.php:179
1692
  msgid "%s Report"
1693
  msgstr ""
1694
 
1695
+ #: includes/functions.php:4691
1696
  msgid "for last month"
1697
  msgstr ""
1698
 
1699
+ #: includes/functions.php:4696
1700
  msgid "for this month"
1701
  msgstr ""
1702
 
1703
+ #: includes/functions.php:4701
1704
  msgid "for this year"
1705
  msgstr ""
1706
 
1707
+ #: includes/functions.php:4706
1708
  msgid "for the last 15 days"
1709
  msgstr ""
1710
 
1711
+ #: includes/functions.php:4711
1712
  msgid "for the last 30 days"
1713
  msgstr ""
1714
 
1715
+ #: includes/functions.php:4716
1716
  msgid "for the last 90 days"
1717
  msgstr ""
1718
 
1719
+ #: includes/functions.php:4721
1720
  msgid "for the last 180 days"
1721
  msgstr ""
1722
 
1723
+ #: includes/functions.php:4726
1724
  msgid "for the last 365 days"
1725
  msgstr ""
1726
 
1748
  msgid "Placeholder"
1749
  msgstr ""
1750
 
1751
+ #: includes/placeholders.php:363 settings.php:812 settings.php:3819
1752
  msgid "Size"
1753
  msgstr ""
1754
 
1856
  msgid "Ad Blocking Detected Message Preview"
1857
  msgstr ""
1858
 
1859
+ #: includes/preview-adb.php:348 settings.php:2599
1860
  msgid "Message CSS"
1861
  msgstr ""
1862
 
1863
+ #: includes/preview-adb.php:353 settings.php:2607
1864
  msgid "Overlay CSS"
1865
  msgstr ""
1866
 
1900
  msgid "background"
1901
  msgstr ""
1902
 
1903
+ #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1152
1904
+ #: settings.php:3745
1905
  msgid "Alignment"
1906
  msgstr ""
1907
 
2107
  msgid "General Settings"
2108
  msgstr ""
2109
 
2110
+ #: settings.php:596 settings.php:2326 settings.php:2393 settings.php:2579
2111
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2112
  msgstr ""
2113
 
2114
+ #: settings.php:603
2115
  msgid "Toggle tools"
2116
  msgstr ""
2117
 
2118
+ #: settings.php:611
2119
  msgid "Process PHP code in block"
2120
  msgstr ""
2121
 
2122
+ #: settings.php:618
2123
  msgid "Disable insertion of this block"
2124
  msgstr ""
2125
 
2126
+ #: settings.php:630
2127
  msgid "Toggle code generator"
2128
  msgstr ""
2129
 
2130
+ #: settings.php:634
2131
  msgid "Toggle rotation editor"
2132
  msgstr ""
2133
 
2134
+ #: settings.php:638
2135
  msgid "Open visual HTML editor"
2136
  msgstr ""
2137
 
2138
+ #: settings.php:648 settings.php:1989
2139
  msgid "Show AdSense ad units"
2140
  msgstr ""
2141
 
2142
+ #: settings.php:657
2143
  msgid "Clear block"
2144
  msgstr ""
2145
 
2146
+ #: settings.php:662 settings.php:3713
2147
  msgid "Copy block"
2148
  msgstr ""
2149
 
2150
+ #: settings.php:666
2151
  msgid "Paste name"
2152
  msgstr ""
2153
 
2154
+ #: settings.php:670
2155
  msgid "Paste code"
2156
  msgstr ""
2157
 
2158
+ #: settings.php:674
2159
  msgid "Paste settings"
2160
  msgstr ""
2161
 
2162
+ #: settings.php:678
2163
  msgid "Paste block (name, code and settings)"
2164
  msgstr ""
2165
 
2166
+ #: settings.php:697
2167
  msgid "Rotation groups"
2168
  msgstr ""
2169
 
2170
+ #: settings.php:701
2171
  msgid "Remove option"
2172
  msgstr ""
2173
 
2174
+ #: settings.php:705
2175
  msgid "Add option"
2176
  msgstr ""
2177
 
2178
+ #: settings.php:720
2179
  msgid "Import code"
2180
  msgstr ""
2181
 
2182
+ #: settings.php:724
2183
  msgid "Generate code"
2184
  msgstr ""
2185
 
2186
+ #: settings.php:729
2187
  msgid "Banner"
2188
  msgstr ""
2189
 
2190
+ #: settings.php:740
2191
  msgid "Image"
2192
  msgstr ""
2193
 
2194
+ #: settings.php:748
2195
  msgid "Link"
2196
  msgstr ""
2197
 
2198
+ #: settings.php:759
2199
  msgid "Open link in a new tab"
2200
  msgstr ""
2201
 
2202
+ #: settings.php:760
2203
  msgid "Select Image"
2204
  msgstr ""
2205
 
2206
+ #: settings.php:761
2207
  msgid "Select Placeholder"
2208
  msgstr ""
2209
 
2210
+ #: settings.php:773
2211
  msgid "Comment"
2212
  msgstr ""
2213
 
2214
+ #: settings.php:782
2215
  msgctxt "AdSense"
2216
  msgid "Publisher ID"
2217
  msgstr ""
2218
 
2219
+ #: settings.php:791
2220
  msgctxt "AdSense"
2221
  msgid "Ad Slot ID"
2222
  msgstr ""
2223
 
2224
+ #: settings.php:800
2225
  msgid "Ad Type"
2226
  msgstr ""
2227
 
2228
+ #: settings.php:824
2229
  msgid "AMP Ad"
2230
  msgstr ""
2231
 
2232
+ #: settings.php:841
2233
  msgid "Show ad units from your AdSense account"
2234
  msgstr ""
2235
 
2236
+ #: settings.php:841
2237
  msgid "AdSense ad units"
2238
  msgstr ""
2239
 
2240
+ #: settings.php:858
2241
  msgctxt "AdSense"
2242
  msgid "Layout"
2243
  msgstr ""
2244
 
2245
+ #: settings.php:867
2246
  msgctxt "AdSense"
2247
  msgid "Layout Key"
2248
  msgstr ""
2249
 
2250
+ #: settings.php:877
2251
  msgid "Full width"
2252
  msgstr ""
2253
 
2254
+ #: settings.php:879
2255
  msgctxt "Full width"
2256
  msgid "Enabled"
2257
  msgstr ""
2258
 
2259
+ #: settings.php:880
2260
  msgctxt "Full width"
2261
  msgid "Disabled"
2262
  msgstr ""
2263
 
2264
+ #: settings.php:961
2265
  msgid ""
2266
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2267
  "Cookie or Referer (domain)"
2268
  msgstr ""
2269
 
2270
+ #: settings.php:961
2271
  msgid "Lists"
2272
  msgstr ""
2273
 
2274
+ #: settings.php:962
2275
  msgid "Widget, Shortcode and PHP function call"
2276
  msgstr ""
2277
 
2278
+ #: settings.php:962
2279
  msgid "Manual"
2280
  msgstr ""
2281
 
2282
+ #: settings.php:963
2283
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2284
  msgstr ""
2285
 
2286
+ #: settings.php:963
2287
  msgid "Devices"
2288
  msgstr ""
2289
 
2290
+ #: settings.php:964
2291
  msgid ""
2292
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2293
  "feeds), Filter, Scheduling, General tag"
2294
  msgstr ""
2295
 
2296
+ #: settings.php:964
2297
  msgid "Misc"
2298
  msgstr ""
2299
 
2300
+ #: settings.php:965
2301
  msgid "Preview code and alignment"
2302
  msgstr ""
2303
 
2304
+ #: settings.php:968 settings.php:1973
2305
  msgid ""
2306
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2307
  "editor is active before saving settings."
2308
  msgstr ""
2309
 
2310
+ #: settings.php:970
2311
  msgid "Save All Settings"
2312
  msgstr ""
2313
 
2314
+ #: settings.php:981
2315
  msgid "Enable insertion on posts"
2316
  msgstr ""
2317
 
2318
+ #: settings.php:983 settings.php:989
2319
  msgid ""
2320
  "Individual post exceptions (if enabled here) can be configured in post "
2321
  "editor. Leave blank for no individual post exceptions."
2322
  msgstr ""
2323
 
2324
+ #: settings.php:989 settings.php:3124
2325
  msgid "Posts"
2326
  msgstr ""
2327
 
2328
+ #: settings.php:993 settings.php:994
2329
  msgid ""
2330
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2331
  "page or theme homepage (available positions may depend on hooks used by the "
2332
  "theme)"
2333
  msgstr ""
2334
 
2335
+ #: settings.php:994 settings.php:3126
2336
  msgid "Homepage"
2337
  msgstr ""
2338
 
2339
+ #: settings.php:998 settings.php:999
2340
  msgid "Enable insertion on category blog pages (including sub-pages)"
2341
  msgstr ""
2342
 
2343
+ #: settings.php:999 settings.php:3127
2344
  msgid "Category pages"
2345
  msgstr ""
2346
 
2347
+ #: settings.php:1002
2348
  msgid "Check theme for available positions for automatic insertion"
2349
  msgstr ""
2350
 
2351
+ #: settings.php:1009
2352
  msgid "Enable insertion on static pages"
2353
  msgstr ""
2354
 
2355
+ #: settings.php:1011 settings.php:1017
2356
  msgid ""
2357
  "Individual static page exceptions (if enabled here) can be configured in "
2358
  "page editor. Leave blank for no individual page exceptions."
2359
  msgstr ""
2360
 
2361
+ #: settings.php:1017 settings.php:3125
2362
  msgid "Static pages"
2363
  msgstr ""
2364
 
2365
+ #: settings.php:1021 settings.php:1022
2366
  msgid "Enable insertion on search blog pages"
2367
  msgstr ""
2368
 
2369
+ #: settings.php:1022 settings.php:3129
2370
  msgid "Search pages"
2371
  msgstr ""
2372
 
2373
+ #: settings.php:1026 settings.php:1027
2374
  msgid "Enable insertion on tag or archive blog pages"
2375
  msgstr ""
2376
 
2377
+ #: settings.php:1027
2378
  msgid "Tag / Archive pages"
2379
  msgstr ""
2380
 
2381
+ #: settings.php:1033
2382
  msgid "Toggle list of individual exceptions"
2383
  msgstr ""
2384
 
2385
+ #: settings.php:1049
2386
  msgctxt "post"
2387
  msgid "Type"
2388
  msgstr ""
2389
 
2390
  #. translators: %d: block number
2391
+ #: settings.php:1051
2392
  msgid "Are you sure you want to clear all exceptions for block %d?"
2393
  msgstr ""
2394
 
2395
+ #: settings.php:1083 settings.php:1231 settings.php:1765
2396
  msgid "Insertion"
2397
  msgstr ""
2398
 
2399
+ #: settings.php:1121
2400
  msgid ""
2401
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2402
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
2406
  "negative number means counting from the opposite direction"
2407
  msgstr ""
2408
 
2409
+ #: settings.php:1122
2410
  msgid ""
2411
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2412
  "means every N images, empty means all images, 0 means random image, value "
2416
  "direction"
2417
  msgstr ""
2418
 
2419
+ #: settings.php:1135
2420
  msgid ""
2421
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2422
  "numbers, %N means every N excerpts, empty means all excerpts"
2423
  msgstr ""
2424
 
2425
+ #: settings.php:1136
2426
  msgid ""
2427
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2428
  "numbers, %N means every N posts, empty means all posts"
2429
  msgstr ""
2430
 
2431
+ #: settings.php:1137
2432
  msgid ""
2433
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2434
  "numbers, %N means every N comments, empty means all comments"
2435
  msgstr ""
2436
 
2437
+ #: settings.php:1144
2438
  msgid "Toggle paragraph counting settings"
2439
  msgstr ""
2440
 
2441
+ #: settings.php:1145
2442
  msgid "Toggle paragraph clearance settings"
2443
  msgstr ""
2444
 
2445
+ #: settings.php:1148
2446
  msgid "Toggle insertion filter settings"
2447
  msgstr ""
2448
 
2449
+ #: settings.php:1166
2450
  msgid "Toggle insertion and alignment icons"
2451
  msgstr ""
2452
 
2453
+ #: settings.php:1180
2454
  msgid "Custom CSS code for the wrapping div"
2455
  msgstr ""
2456
 
2457
+ #: settings.php:1183 settings.php:1184 settings.php:1185 settings.php:1186
2458
+ #: settings.php:1187 settings.php:1188
2459
  msgid "CSS code for the wrapping div, click to edit"
2460
  msgstr ""
2461
 
2462
+ #: settings.php:1201
2463
  msgid "HTML element"
2464
  msgstr ""
2465
 
2466
+ #: settings.php:1214
2467
  msgid "HTML element selector or comma separated list of selectors"
2468
  msgstr ""
2469
 
2470
+ #: settings.php:1220 settings.php:2484
2471
  msgid "Action"
2472
  msgstr ""
2473
 
2474
+ #: settings.php:1232
2475
  msgid ""
2476
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2477
  "Server-side insertion inserts block when the page is generated but needs "
2478
  "Output buffering enabled."
2479
  msgstr ""
2480
 
2481
+ #: settings.php:1242
2482
  msgid "JavaScript code position"
2483
  msgstr ""
2484
 
2485
+ #: settings.php:1243
2486
  msgid ""
2487
  "Page position where the JavaScript code for client-side insertion will be "
2488
  "inserted. Should be after the HTML element if not waiting for DOM ready."
2489
  msgstr ""
2490
 
2491
+ #: settings.php:1258
2492
  msgid "Count"
2493
  msgstr ""
2494
 
2495
+ #: settings.php:1264
2496
  msgid "paragraphs with tags"
2497
  msgstr ""
2498
 
2499
+ #: settings.php:1270
2500
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2501
  msgstr ""
2502
 
2503
+ #: settings.php:1279
2504
  msgid "that have between"
2505
  msgstr ""
2506
 
2507
+ #: settings.php:1285
2508
  msgid "Minimum number of paragraph words, leave empty for no limit"
2509
  msgstr ""
2510
 
2511
+ #: settings.php:1294
2512
  msgid "Maximum number of paragraph words, leave empty for no limit"
2513
  msgstr ""
2514
 
2515
+ #: settings.php:1297 settings.php:1892
2516
  msgid "words"
2517
  msgstr ""
2518
 
2519
+ #: settings.php:1312 settings.php:1378 settings.php:1404
2520
  msgid "Comma separated texts"
2521
  msgstr ""
2522
 
2523
+ #: settings.php:1321
2524
  msgid "Minimum number of paragraphs"
2525
  msgstr ""
2526
 
2527
  #. translators: %s: list of HTML tags
2528
+ #: settings.php:1336
2529
  msgid ""
2530
  "Count also paragraphs inside %s elements - defined on general plugin "
2531
  "settings page - tab &#9881; / tab General"
2532
  msgstr ""
2533
 
2534
+ #: settings.php:1336
2535
  msgid "Count inside special elements"
2536
  msgstr ""
2537
 
2538
+ #: settings.php:1347
2539
  msgid "Minimum number of words in paragraphs above"
2540
  msgstr ""
2541
 
2542
+ #: settings.php:1353
2543
  msgid ""
2544
  "Used only with automatic insertion After paragraph and empty paragraph "
2545
  "numbers"
2546
  msgstr ""
2547
 
2548
+ #: settings.php:1363 settings.php:1389
2549
  msgid "In"
2550
  msgstr ""
2551
 
2552
+ #: settings.php:1369
2553
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2554
  msgstr ""
2555
 
2556
+ #: settings.php:1372
2557
  msgid "paragraphs above avoid"
2558
  msgstr ""
2559
 
2560
+ #: settings.php:1395
2561
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2562
  msgstr ""
2563
 
2564
+ #: settings.php:1398
2565
  msgid "paragraphs below avoid"
2566
  msgstr ""
2567
 
2568
+ #: settings.php:1414
2569
  msgid "If text is found"
2570
  msgstr ""
2571
 
2572
+ #: settings.php:1421
2573
  msgid "check up to"
2574
  msgstr ""
2575
 
2576
+ #: settings.php:1429
2577
  msgctxt "check up to"
2578
  msgid "paragraphs"
2579
  msgstr ""
2580
 
2581
+ #: settings.php:1445
2582
  msgid "Categories"
2583
  msgstr ""
2584
 
2585
+ #: settings.php:1448
2586
  msgid "Toggle category editor"
2587
  msgstr ""
2588
 
2589
+ #: settings.php:1451
2590
  msgid "Comma separated category slugs"
2591
  msgstr ""
2592
 
2593
+ #: settings.php:1455
2594
  msgid "Blacklist categories"
2595
  msgstr ""
2596
 
2597
+ #: settings.php:1459
2598
  msgid "Whitelist categories"
2599
  msgstr ""
2600
 
2601
+ #: settings.php:1471
2602
  msgid "Tags"
2603
  msgstr ""
2604
 
2605
+ #: settings.php:1474
2606
  msgid "Toggle tag editor"
2607
  msgstr ""
2608
 
2609
+ #: settings.php:1477
2610
  msgid "Comma separated tag slugs"
2611
  msgstr ""
2612
 
2613
+ #: settings.php:1481
2614
  msgid "Blacklist tags"
2615
  msgstr ""
2616
 
2617
+ #: settings.php:1485
2618
  msgid "Whitelist tags"
2619
  msgstr ""
2620
 
2621
+ #: settings.php:1497
2622
  msgid "Taxonomies"
2623
  msgstr ""
2624
 
2625
+ #: settings.php:1500
2626
  msgid "Toggle taxonomy editor"
2627
  msgstr ""
2628
 
2629
+ #: settings.php:1503
2630
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2631
  msgstr ""
2632
 
2633
+ #: settings.php:1507
2634
  msgid "Blacklist taxonomies"
2635
  msgstr ""
2636
 
2637
+ #: settings.php:1511
2638
  msgid "Whitelist taxonomies"
2639
  msgstr ""
2640
 
2641
+ #: settings.php:1523
2642
  msgid "Post IDs"
2643
  msgstr ""
2644
 
2645
+ #: settings.php:1526
2646
  msgid "Toggle post/page ID editor"
2647
  msgstr ""
2648
 
2649
+ #: settings.php:1529
2650
  msgid "Comma separated post/page IDs"
2651
  msgstr ""
2652
 
2653
+ #: settings.php:1533
2654
  msgid "Blacklist IDs"
2655
  msgstr ""
2656
 
2657
+ #: settings.php:1537
2658
  msgid "Whitelist IDs"
2659
  msgstr ""
2660
 
2661
+ #: settings.php:1549
2662
  msgid "Urls"
2663
  msgstr ""
2664
 
2665
+ #: settings.php:1552
2666
  msgid "Toggle url editor"
2667
  msgstr ""
2668
 
2669
+ #: settings.php:1555
2670
  msgid ""
2671
  "Comma separated urls (page addresses) starting with / after domain name (e."
2672
  "g. /permalink-url, use only when you need to taget a specific url not "
2674
  "start*. *url-pattern*, *url-end)"
2675
  msgstr ""
2676
 
2677
+ #: settings.php:1559
2678
  msgid "Blacklist urls"
2679
  msgstr ""
2680
 
2681
+ #: settings.php:1563
2682
  msgid "Whitelist urls"
2683
  msgstr ""
2684
 
2685
+ #: settings.php:1574
2686
  msgid "Url parameters"
2687
  msgstr ""
2688
 
2689
+ #: settings.php:1578
2690
  msgid "Toggle url parameter and cookie editor"
2691
  msgstr ""
2692
 
2693
+ #: settings.php:1581
2694
  msgid ""
2695
  "Comma separated url query parameters or cookies with optional values (use "
2696
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
2697
  msgstr ""
2698
 
2699
+ #: settings.php:1585
2700
  msgid "Blacklist url parameters"
2701
  msgstr ""
2702
 
2703
+ #: settings.php:1589
2704
  msgid "Whitelist url parameters"
2705
  msgstr ""
2706
 
2707
+ #: settings.php:1600
2708
  msgid "Referrers"
2709
  msgstr ""
2710
 
2711
+ #: settings.php:1603
2712
  msgid "Toggle referer editor"
2713
  msgstr ""
2714
 
2715
+ #: settings.php:1606
2716
  msgid ""
2717
  "Comma separated domains, use # for no referrer, you can also use partial "
2718
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
2719
  msgstr ""
2720
 
2721
+ #: settings.php:1610
2722
  msgid "Blacklist referers"
2723
  msgstr ""
2724
 
2725
+ #: settings.php:1614
2726
  msgid "Whitelist referers"
2727
  msgstr ""
2728
 
2729
+ #: settings.php:1634
2730
  msgid "Enable widget for this block"
2731
  msgstr ""
2732
 
2733
+ #: settings.php:1646
2734
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2735
  msgstr ""
2736
 
2737
+ #: settings.php:1647 settings.php:3747
2738
  msgid "Shortcode"
2739
  msgstr ""
2740
 
2741
+ #: settings.php:1662
2742
  msgid ""
2743
  "Enable PHP function call to insert this block at any position in theme file. "
2744
  "If function is disabled for block it will return empty string."
2745
  msgstr ""
2746
 
2747
+ #: settings.php:1663
2748
  msgid "PHP function"
2749
  msgstr ""
2750
 
2751
+ #: settings.php:1678
2752
  msgid "Client-side device detection"
2753
  msgstr ""
2754
 
2755
+ #: settings.php:1679
2756
  msgid "Server-side device detection"
2757
  msgstr ""
2758
 
2759
+ #: settings.php:1686
2760
  msgid "Use client-side detection to"
2761
  msgstr ""
2762
 
2763
+ #: settings.php:1688
2764
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
2765
  msgstr ""
2766
 
2767
  #. Translators: only on (the following devices): viewport names (devices)
2768
  #. listed
2769
+ #: settings.php:1693
2770
  msgid "only on"
2771
  msgstr ""
2772
 
2773
+ #: settings.php:1721
2774
  msgid "Device min width %s px"
2775
  msgstr ""
2776
 
2777
+ #: settings.php:1747
2778
  msgid "Use server-side detection to insert block only for"
2779
  msgstr ""
2780
 
2781
+ #: settings.php:1766
2782
  msgid "Filter"
2783
  msgstr ""
2784
 
2785
+ #: settings.php:1767
2786
  msgid "Word Count"
2787
  msgstr ""
2788
 
2789
+ #: settings.php:1768
2790
  msgid "Scheduling"
2791
  msgstr ""
2792
 
2793
+ #: settings.php:1769
2794
  msgid "Display"
2795
  msgstr ""
2796
 
2797
+ #: settings.php:1771 settings.php:2021
2798
  msgid "General"
2799
  msgstr ""
2800
 
2801
+ #: settings.php:1783
2802
  msgid "Old settings for AMP pages detected"
2803
  msgstr ""
2804
 
2805
+ #: settings.php:1783
2806
  msgid ""
2807
  "To insert different codes on normal and AMP pages separate them with "
2808
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
2809
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
2810
  msgstr ""
2811
 
2812
+ #: settings.php:1783
2813
  msgid "AMP pages"
2814
  msgstr ""
2815
 
2816
+ #: settings.php:1788
2817
  msgid "Enable insertion for Ajax requests"
2818
  msgstr ""
2819
 
2820
+ #: settings.php:1788
2821
  msgid "Ajax requests"
2822
  msgstr ""
2823
 
2824
+ #: settings.php:1793
2825
  msgid "Enable insertion in RSS feeds"
2826
  msgstr ""
2827
 
2828
+ #: settings.php:1793
2829
  msgid "RSS Feed"
2830
  msgstr ""
2831
 
2832
+ #: settings.php:1798
2833
  msgid "Enable insertion on page for Error 404: Page not found"
2834
  msgstr ""
2835
 
2836
+ #: settings.php:1798
2837
  msgid "Error 404 page"
2838
  msgstr ""
2839
 
2840
+ #: settings.php:1810
2841
  msgid "Maximum number of insertion of this block. Empty or 0 means no limit."
2842
  msgstr ""
2843
 
2844
+ #: settings.php:1811
2845
  msgid "Max"
2846
  msgstr ""
2847
 
2848
+ #: settings.php:1811
2849
  msgid "insertions"
2850
  msgstr ""
2851
 
2852
+ #: settings.php:1813
2853
  msgid ""
2854
  "Count this block for Max blocks per page limit (defined on the tab &#9881; / "
2855
  "tab General)"
2856
  msgstr ""
2857
 
2858
+ #: settings.php:1816 settings.php:2190
2859
  msgid "Max blocks per page"
2860
  msgstr ""
2861
 
2862
+ #: settings.php:1828
2863
  msgid "Insert for"
2864
  msgstr ""
2865
 
2866
+ #: settings.php:1836
2867
  msgid ""
2868
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
2869
  "currently active). Might speed up insertion on content pages when "
2870
  "the_content filter is called multiple times."
2871
  msgstr ""
2872
 
2873
+ #: settings.php:1839
2874
  msgid "Insert only in the loop"
2875
  msgstr ""
2876
 
2877
+ #: settings.php:1845
2878
  msgid ""
2879
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
2880
  msgstr ""
2881
 
2882
+ #: settings.php:1845
2883
  msgid "Disable caching"
2884
  msgstr ""
2885
 
2886
+ #: settings.php:1857
2887
  msgid "Filter insertions"
2888
  msgstr ""
2889
 
2890
+ #: settings.php:1860
2891
  msgid ""
2892
  "Filter multiple insertions by specifying wanted insertions for this block - "
2893
  "single number, comma separated numbers or %N for every N insertions - empty "
2895
  "using only one insertion type."
2896
  msgstr ""
2897
 
2898
+ #: settings.php:1863
2899
  msgid "using"
2900
  msgstr ""
2901
 
2902
+ #: settings.php:1882
2903
  msgid "Checked means specified calls are unwanted"
2904
  msgstr ""
2905
 
2906
+ #: settings.php:1882
2907
  msgid "Invert filter"
2908
  msgstr ""
2909
 
2910
+ #: settings.php:1888
2911
  msgid "Post/Static page must have between"
2912
  msgstr ""
2913
 
2914
+ #: settings.php:1889
2915
  msgid "Minimum number of post/static page words, leave empty for no limit"
2916
  msgstr ""
2917
 
2918
+ #: settings.php:1891
2919
  msgid "Maximum number of post/static page words, leave empty for no limit"
2920
  msgstr ""
2921
 
2922
+ #: settings.php:1904
2923
  msgid "days after publishing"
2924
  msgstr ""
2925
 
2926
+ #: settings.php:1906
2927
  msgid "Not available"
2928
  msgstr ""
2929
 
2930
+ #: settings.php:1919 settings.php:2182
2931
  msgid "Ad label"
2932
  msgstr ""
2933
 
2934
+ #: settings.php:1939
2935
  msgid "General tag"
2936
  msgstr ""
2937
 
2938
+ #: settings.php:1943
2939
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
2940
  msgstr ""
2941
 
2942
  #. translators: %s: HTML tags
2943
+ #: settings.php:1952
2944
  msgid ""
2945
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
2946
  "side device detection!"
2947
  msgstr ""
2948
 
2949
+ #: settings.php:1964
2950
  msgid "Settings"
2951
  msgstr ""
2952
 
2953
+ #: settings.php:1967
2954
  msgid "Settings timestamp"
2955
  msgstr ""
2956
 
2957
+ #: settings.php:1980
2958
  msgid "Are you sure you want to reset all settings?"
2959
  msgstr ""
2960
 
2961
+ #: settings.php:1980
2962
  msgid "Reset All Settings"
2963
  msgstr ""
2964
 
2965
+ #: settings.php:1996
2966
  msgid "Edit ads.txt file"
2967
  msgstr ""
2968
 
2969
+ #: settings.php:2022
2970
  msgid "Viewports"
2971
  msgstr ""
2972
 
2973
+ #: settings.php:2023
2974
  msgid "Hooks"
2975
  msgstr ""
2976
 
2977
+ #: settings.php:2024
2978
  msgid "Header"
2979
  msgstr ""
2980
 
2981
+ #: settings.php:2025 strings.php:30
2982
  msgid "Footer"
2983
  msgstr ""
2984
 
2985
+ #: settings.php:2030
2986
  msgid "Debugging"
2987
  msgstr ""
2988
 
2989
+ #: settings.php:2040
2990
  msgid "Plugin priority"
2991
  msgstr ""
2992
 
2993
+ #: settings.php:2048
2994
  msgid "Output buffering"
2995
  msgstr ""
2996
 
2997
+ #: settings.php:2051
2998
  msgid "Needed for position Above header but may not work with all themes"
2999
  msgstr ""
3000
 
3001
+ #: settings.php:2059
3002
  msgid "Syntax highlighting theme"
3003
  msgstr ""
3004
 
3005
+ #: settings.php:2066
3006
  msgctxt "no syntax highlighting themes"
3007
  msgid "None"
3008
  msgstr ""
3009
 
3010
+ #: settings.php:2067
3011
  msgid "No Syntax Highlighting"
3012
  msgstr ""
3013
 
3014
+ #: settings.php:2069
3015
  msgctxt "syntax highlighting themes"
3016
  msgid "Light"
3017
  msgstr ""
3018
 
3019
+ #: settings.php:2084
3020
  msgctxt "syntax highlighting themes"
3021
  msgid "Dark"
3022
  msgstr ""
3023
 
3024
+ #: settings.php:2110
3025
  msgid "Min. user role for ind. exceptions editing"
3026
  msgstr ""
3027
 
3028
+ #: settings.php:2120
3029
  msgid "Disable caching for logged in administrators"
3030
  msgstr ""
3031
 
3032
+ #: settings.php:2123
3033
  msgid ""
3034
  "Enabled means that logged in administrators will see non-cached (live) pages "
3035
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3036
  msgstr ""
3037
 
3038
+ #: settings.php:2131
3039
  msgid "Sticky widget mode"
3040
  msgstr ""
3041
 
3042
+ #: settings.php:2134
3043
  msgid ""
3044
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3045
  "mode works with most themes but may reload ads on page load."
3046
  msgstr ""
3047
 
3048
+ #: settings.php:2142
3049
  msgid "Sticky widget top margin"
3050
  msgstr ""
3051
 
3052
+ #: settings.php:2150
3053
  msgid "Dynamic blocks"
3054
  msgstr ""
3055
 
3056
+ #: settings.php:2163
3057
  msgid "Functions for paragraph counting"
3058
  msgstr ""
3059
 
3060
+ #: settings.php:2166
3061
  msgid ""
3062
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3063
  "functions if paragraphs are not counted properly on non-english pages."
3064
  msgstr ""
3065
 
3066
+ #: settings.php:2174
3067
  msgid "No paragraph counting inside"
3068
  msgstr ""
3069
 
3070
+ #: settings.php:2185
3071
  msgid "Label text or HTML code"
3072
  msgstr ""
3073
 
3074
+ #: settings.php:2193
3075
  msgid ""
3076
  "Maximum number of inserted blocks per page. You need to enable Max page "
3077
  "insertions (button Misc / tab Insertion) to count block for this limit."
3078
  msgstr ""
3079
 
3080
+ #: settings.php:2207
3081
  msgid "Plugin usage tracking"
3082
  msgstr ""
3083
 
3084
  #. translators: %s: Ad Inserter
3085
+ #: settings.php:2210
3086
  msgid ""
3087
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3088
  "Only information regarding the WordPress environment and %s usage is "
3089
  "recorded (once per month and on events like plugin activation/deactivation)."
3090
  msgstr ""
3091
 
3092
+ #: settings.php:2228
3093
  msgid "CSS class name for the wrapping div"
3094
  msgstr ""
3095
 
3096
+ #: settings.php:2228
3097
  msgid "Block class name"
3098
  msgstr ""
3099
 
3100
+ #: settings.php:2232
3101
  msgid "Include general plugin block class"
3102
  msgstr ""
3103
 
3104
+ #: settings.php:2232
3105
  msgid "Block class"
3106
  msgstr ""
3107
 
3108
+ #: settings.php:2237
3109
  msgid "Include block number class"
3110
  msgstr ""
3111
 
3112
+ #: settings.php:2237
3113
  msgid "Block number class"
3114
  msgstr ""
3115
 
3116
+ #: settings.php:2242
3117
  msgid ""
3118
  "Instead of alignment classes generate inline alignment styles for blocks"
3119
  msgstr ""
3120
 
3121
+ #: settings.php:2242
3122
  msgid "Inline styles"
3123
  msgstr ""
3124
 
3125
+ #: settings.php:2248
3126
  msgid "Preview of the block wrapping code"
3127
  msgstr ""
3128
 
3129
+ #: settings.php:2249
3130
  msgid "Wrapping div"
3131
  msgstr ""
3132
 
3133
+ #: settings.php:2250 settings.php:2690
3134
  msgid "BLOCK CODE"
3135
  msgstr ""
3136
 
3137
+ #: settings.php:2258
3138
  msgid "Viewport Settings used for client-side device detection"
3139
  msgstr ""
3140
 
3141
  #. Translators: %d: viewport number
3142
+ #: settings.php:2266
3143
  msgid "Viewport %d name"
3144
  msgstr ""
3145
 
3146
+ #: settings.php:2269
3147
  msgid "min width"
3148
  msgstr ""
3149
 
3150
+ #: settings.php:2280
3151
  msgid "Custom Hooks"
3152
  msgstr ""
3153
 
3154
+ #: settings.php:2292 settings.php:2295
3155
  msgid "Enable hook"
3156
  msgstr ""
3157
 
3158
  #. translators: %d: hook number
3159
+ #: settings.php:2295
3160
  msgid "Hook %d name"
3161
  msgstr ""
3162
 
3163
+ #: settings.php:2298
3164
  msgid "Hook name for automatic insertion selection"
3165
  msgstr ""
3166
 
3167
+ #: settings.php:2301
3168
  msgid "action"
3169
  msgstr ""
3170
 
3171
+ #: settings.php:2304
3172
  msgid "Action name as used in the do_action () function"
3173
  msgstr ""
3174
 
3175
+ #: settings.php:2307
3176
  msgid "priority"
3177
  msgstr ""
3178
 
3179
+ #: settings.php:2310
3180
  msgid "Priority for the hook (default is 10)"
3181
  msgstr ""
3182
 
3183
+ #: settings.php:2331
3184
  msgid "Enable insertion of this code into HTML page header"
3185
  msgstr ""
3186
 
3187
+ #: settings.php:2335 settings.php:2402 settings.php:2584
3188
  msgid "Process PHP code"
3189
  msgstr ""
3190
 
3191
+ #: settings.php:2339
3192
  msgid "HTML Page Header Code"
3193
  msgstr ""
3194
 
3195
+ #: settings.php:2347
3196
  msgid "Code in the %s section of the HTML page"
3197
  msgstr ""
3198
 
3199
+ #: settings.php:2348
3200
  msgctxt "code in the header"
3201
  msgid "NOT ENABLED"
3202
  msgstr ""
3203
 
3204
+ #: settings.php:2365 settings.php:2433
3205
  msgid "Use server-side detection to insert code only for"
3206
  msgstr ""
3207
 
3208
+ #: settings.php:2380
3209
  msgid ""
3210
  "Enable insertion of this code into HTML page header on page for Error 404: "
3211
  "Page not found"
3212
  msgstr ""
3213
 
3214
+ #: settings.php:2380 settings.php:2448
3215
  msgid "Insert on Error 404 page"
3216
  msgstr ""
3217
 
3218
+ #: settings.php:2398
3219
  msgid "Enable insertion of this code into HTML page footer"
3220
  msgstr ""
3221
 
3222
+ #: settings.php:2406
3223
  msgid "HTML Page Footer Code"
3224
  msgstr ""
3225
 
3226
  #. translators: %s: HTML tags
3227
+ #: settings.php:2414
3228
  msgid "Code before the %s tag of the the HTML page"
3229
  msgstr ""
3230
 
3231
+ #: settings.php:2415
3232
  msgctxt "code in the footer"
3233
  msgid "NOT ENABLED"
3234
  msgstr ""
3235
 
3236
+ #: settings.php:2448
3237
  msgid ""
3238
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3239
  "Page not found"
3240
  msgstr ""
3241
 
3242
+ #: settings.php:2464
3243
  msgid "Code for ad blocking detection inserted. Click for details."
3244
  msgstr ""
3245
 
3246
+ #: settings.php:2469
3247
  msgid "Enable detection of ad blocking"
3248
  msgstr ""
3249
 
3250
+ #: settings.php:2487
3251
  msgid "Global action when ad blocking is detected"
3252
  msgstr ""
3253
 
3254
+ #: settings.php:2493
3255
  msgid "No action for"
3256
  msgstr ""
3257
 
3258
+ #: settings.php:2494
3259
  msgid "Exceptions for global action when ad blocking is detected."
3260
  msgstr ""
3261
 
3262
+ #: settings.php:2504
3263
  msgid "Delay Action"
3264
  msgstr ""
3265
 
3266
+ #: settings.php:2507
3267
  msgid ""
3268
  "Number of page views to delay action when ad blocking is detected. Leave "
3269
  "empty for no delay (action fires on first page view). Sets cookie."
3270
  msgstr ""
3271
 
3272
+ #: settings.php:2507
3273
  msgctxt "Delay Action for x "
3274
  msgid "page views"
3275
  msgstr ""
3276
 
3277
+ #: settings.php:2512
3278
  msgid "No Action Period"
3279
  msgstr ""
3280
 
3281
+ #: settings.php:2515
3282
  msgid ""
3283
  "Number of days to supress action when ad blocking is detected. Leave empty "
3284
  "for no no-action period (action fires always after defined page view delay). "
3285
  "Sets cookie."
3286
  msgstr ""
3287
 
3288
+ #: settings.php:2515
3289
  msgctxt "no action period"
3290
  msgid "days"
3291
  msgstr ""
3292
 
3293
+ #: settings.php:2520
3294
  msgid "Custom Selectors"
3295
  msgstr ""
3296
 
3297
+ #: settings.php:2523
3298
  msgid ""
3299
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3300
  "blocking detection. Invisible element or element with zero height means ad "
3301
  "blocking is present."
3302
  msgstr ""
3303
 
3304
+ #: settings.php:2535
3305
  msgid "Redirection Page"
3306
  msgstr ""
3307
 
3308
+ #: settings.php:2547
3309
  msgid "Custom Url"
3310
  msgstr ""
3311
 
3312
+ #: settings.php:2552
3313
  msgid ""
3314
  "Static page for redirection when ad blocking is detected. For other pages "
3315
  "select Custom url and set it below."
3316
  msgstr ""
3317
 
3318
+ #: settings.php:2561
3319
  msgid "Custom Redirection Url"
3320
  msgstr ""
3321
 
3322
+ #: settings.php:2573
3323
  msgid "Message HTML code"
3324
  msgstr ""
3325
 
3326
+ #: settings.php:2586
3327
  msgid "Preview message when ad blocking is detected"
3328
  msgstr ""
3329
 
3330
+ #: settings.php:2615
3331
  msgid "Prevent visitors from closing the warning message"
3332
  msgstr ""
3333
 
3334
+ #: settings.php:2615
3335
  msgid "Undismissible Message"
3336
  msgstr ""
3337
 
3338
+ #: settings.php:2621
3339
  msgid "Not undismissible for"
3340
  msgstr ""
3341
 
3342
+ #: settings.php:2622
3343
  msgid "Users which can close the warning message."
3344
  msgstr ""
3345
 
3346
+ #: settings.php:2636
3347
  msgid ""
3348
  "Force showing admin toolbar for administrators when viewing site. Enable "
3349
  "this option when you are logged in as admin and you don't see admin toolbar."
3350
  msgstr ""
3351
 
3352
+ #: settings.php:2644
3353
  msgid "Disable header code (Header tab)"
3354
  msgstr ""
3355
 
3356
+ #: settings.php:2648
3357
  msgid "Disable footer code (Footer tab)"
3358
  msgstr ""
3359
 
3360
  #. translators: %s: Ad Inserter
3361
+ #: settings.php:2652
3362
  msgid "Disable %s JavaScript code"
3363
  msgstr ""
3364
 
3365
  #. translators: %s: Ad Inserter
3366
+ #: settings.php:2656
3367
  msgid "Disable %s CSS code"
3368
  msgstr ""
3369
 
3370
+ #: settings.php:2660
3371
  msgid ""
3372
  "Disable PHP code processing (in all blocks including header and footer code)"
3373
  msgstr ""
3374
 
3375
+ #: settings.php:2664
3376
  msgid "Disable insertion of all blocks"
3377
  msgstr ""
3378
 
3379
+ #: settings.php:2668
3380
  msgid "Disable insertions"
3381
  msgstr ""
3382
 
3383
  #. translators: %s: Ad Inserter
3384
+ #: settings.php:2680
3385
  msgid "%s CSS CODE"
3386
  msgstr ""
3387
 
3388
+ #: settings.php:2683
3389
  msgid "HEADER CODE"
3390
  msgstr ""
3391
 
3392
  #. translators: %s: PHP tags
3393
+ #: settings.php:2689
3394
  msgid "BLOCK PHP CODE"
3395
  msgstr ""
3396
 
3397
  #. translators: %s: Ad Inserter
3398
+ #: settings.php:2695
3399
  msgid "%s JS CODE"
3400
  msgstr ""
3401
 
3402
+ #: settings.php:2698
3403
  msgid "FOOTER CODE"
3404
  msgstr ""
3405
 
3406
+ #: settings.php:2707
3407
  msgid "Force showing admin toolbar when viewing site"
3408
  msgstr ""
3409
 
3410
+ #: settings.php:2714
3411
  msgid "Enable debugging functions in admin toolbar"
3412
  msgstr ""
3413
 
3414
+ #: settings.php:2716
3415
  msgid "Debugging functions in admin toolbar"
3416
  msgstr ""
3417
 
3418
+ #: settings.php:2723
3419
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3420
  msgstr ""
3421
 
3422
+ #: settings.php:2725
3423
  msgid "Debugging functions on mobile screens"
3424
  msgstr ""
3425
 
3426
+ #: settings.php:2732
3427
  msgid ""
3428
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3429
  "tags, processing) by url parameters for non-logged in users. Enable this "
3432
  "administrators debugging is always enabled."
3433
  msgstr ""
3434
 
3435
+ #: settings.php:2734
3436
  msgid "Remote debugging"
3437
  msgstr ""
3438
 
3439
+ #: settings.php:2741
3440
  msgid ""
3441
  "Disable translation to see original texts for the settings and messages in "
3442
  "English"
3443
  msgstr ""
3444
 
3445
+ #: settings.php:2743
3446
  msgid "Disable translation"
3447
  msgstr ""
3448
 
3449
+ #: settings.php:3112
3450
  msgid "Available positions for current theme"
3451
  msgstr ""
3452
 
3453
+ #: settings.php:3113
3454
  msgid "Error checking pages"
3455
  msgstr ""
3456
 
3457
+ #: settings.php:3116
3458
  msgid "Toggle theme checker for available positions for automatic insertion"
3459
  msgstr ""
3460
 
3461
+ #: settings.php:3116
3462
  msgctxt "Button"
3463
  msgid "Check"
3464
  msgstr ""
3465
 
3466
+ #: settings.php:3123
3467
  msgid "Position"
3468
  msgstr ""
3469
 
3470
+ #: settings.php:3128
3471
  msgid "Archive pages"
3472
  msgstr ""
3473
 
3474
+ #: settings.php:3187
3475
  msgid ""
3476
  "Position not available because output buffering (tab [*]) is not enabled"
3477
  msgstr ""
3478
 
3479
+ #: settings.php:3190 strings.php:220
3480
  msgid "Position not checked yet"
3481
  msgstr ""
3482
 
3483
+ #: settings.php:3221
3484
  msgid "Toggle active/all blocks"
3485
  msgstr ""
3486
 
3487
+ #: settings.php:3225 strings.php:207
3488
  msgid "Rearrange block order"
3489
  msgstr ""
3490
 
3491
+ #: settings.php:3230
3492
  msgid "Save new block order"
3493
  msgstr ""
3494
 
3495
+ #: settings.php:3230
3496
  msgid "Save Changes"
3497
  msgstr ""
3498
 
3499
+ #: settings.php:3255
3500
  msgid "Toggle active/all ad units"
3501
  msgstr ""
3502
 
3503
+ #: settings.php:3259
3504
  msgid "Reload AdSense ad units"
3505
  msgstr ""
3506
 
3507
+ #: settings.php:3263
3508
  msgid "Clear authorization to access AdSense account"
3509
  msgstr ""
3510
 
3511
+ #: settings.php:3267 settings.php:3904 settings.php:3971 strings.php:215
3512
  msgid "Google AdSense Homepage"
3513
  msgstr ""
3514
 
3515
+ #: settings.php:3290
3516
  msgid "Reload ads.txt file"
3517
  msgstr ""
3518
 
3519
  #. translators: %s: ads.txt
3520
+ #: settings.php:3294
3521
  msgid "Open %s"
3522
  msgstr ""
3523
 
3524
+ #: settings.php:3298
3525
  msgid "Switch to table view"
3526
  msgstr ""
3527
 
3528
+ #: settings.php:3302
3529
  msgid "Switch to editor"
3530
  msgstr ""
3531
 
3532
+ #: settings.php:3306
3533
  msgid "Save ads.txt file"
3534
  msgstr ""
3535
 
3536
+ #: settings.php:3441 settings.php:3449 strings.php:200
3537
  msgid "Warning"
3538
  msgstr ""
3539
 
3540
+ #: settings.php:3441
3541
  msgid "ads.txt file must be placed on the root domain"
3542
  msgstr ""
3543
 
3544
  #. translators: %s: file path
3545
+ #: settings.php:3442
3546
  msgid "WordPress is installed in %s"
3547
  msgstr ""
3548
 
3549
+ #: settings.php:3443
3550
  msgid "Showing file"
3551
  msgstr ""
3552
 
3553
+ #: settings.php:3449
3554
  msgid "File %s not found"
3555
  msgstr ""
3556
 
3557
+ #: settings.php:3456
3558
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3559
  msgstr ""
3560
 
3561
+ #: settings.php:3473
3562
  msgid "Advertising system"
3563
  msgstr ""
3564
 
3565
+ #: settings.php:3474
3566
  msgid "Account ID"
3567
  msgstr ""
3568
 
3569
+ #: settings.php:3476
3570
  msgid "Certification authority ID"
3571
  msgstr ""
3572
 
3573
+ #: settings.php:3491
3574
  msgid "Account ID found in block and present in ads.txt"
3575
  msgstr ""
3576
 
3577
+ #: settings.php:3495
3578
  msgid "Account ID found in block but not present in ads.txt"
3579
  msgstr ""
3580
 
3581
+ #: settings.php:3716
3582
  msgid "Preview block"
3583
  msgstr ""
3584
 
3585
+ #: settings.php:3725
3586
  msgid "Insertion disabled"
3587
  msgstr ""
3588
 
3589
+ #: settings.php:3749
3590
  msgid "Widget positions"
3591
  msgstr ""
3592
 
3593
+ #: settings.php:3815
3594
  msgid "Ad unit"
3595
  msgstr ""
3596
 
3597
+ #: settings.php:3817
3598
  msgid "Slot ID"
3599
  msgstr ""
3600
 
3601
+ #: settings.php:3843
3602
  msgid "Copy AdSense code"
3603
  msgstr ""
3604
 
3605
+ #: settings.php:3846
3606
  msgid "Preview AdSense ad"
3607
  msgstr ""
3608
 
3609
+ #: settings.php:3849
3610
  msgid "Get AdSense code"
3611
  msgstr ""
3612
 
3613
  #. translators: %s: HTML tags
3614
+ #: settings.php:3881
3615
  msgid ""
3616
  "Please %s clear authorization %s with the button %s above and once again "
3617
  "authorize access to your AdSense account."
3618
  msgstr ""
3619
 
3620
+ #: settings.php:3900
3621
  msgid "AdSense Integration"
3622
  msgstr ""
3623
 
3624
+ #: settings.php:3902
3625
  msgid "AdSense Integration - Step 2"
3626
  msgstr ""
3627
 
3628
  #. translators: %s: HTML tags
3629
+ #: settings.php:3908
3630
  msgid ""
3631
  "Authorize %s to access your AdSense account. Click on the %s Get "
3632
  "Authorization Code %s button to open a new window where you can allow "
3635
  msgstr ""
3636
 
3637
  #. translators: %s: HTML tags
3638
+ #: settings.php:3915
3639
  msgid ""
3640
  "If you get error, can't access ad units or would like to use own Google API "
3641
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
3643
  msgstr ""
3644
 
3645
  #. translators: %s: HTML tags
3646
+ #: settings.php:3917
3647
  msgid ""
3648
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3649
  "Authorization Code %s button to open a new window where you can allow "
3652
  msgstr ""
3653
 
3654
  #. translators: %s: HTML tags
3655
+ #: settings.php:3924
3656
  msgid ""
3657
  "If you get error %s invalid client %s click on the button %s Clear and "
3658
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3659
  msgstr ""
3660
 
3661
+ #: settings.php:3935
3662
  msgid "Get Authorization Code"
3663
  msgstr ""
3664
 
3665
+ #: settings.php:3938
3666
  msgid "Enter Authorization Code"
3667
  msgstr ""
3668
 
3669
+ #: settings.php:3948
3670
  msgid "Use own API IDs"
3671
  msgstr ""
3672
 
3673
+ #: settings.php:3950
3674
  msgid "Clear and return to Step 1"
3675
  msgstr ""
3676
 
3677
+ #: settings.php:3954
3678
  msgid "Authorize"
3679
  msgstr ""
3680
 
3681
+ #: settings.php:3970
3682
  msgid "AdSense Integration - Step 1"
3683
  msgstr ""
3684
 
3685
  #. translators: %s: Ad Inserter
3686
+ #: settings.php:3974
3687
  msgid ""
3688
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3689
  "To do this you need to authorize %s to access your AdSense account. The "
3692
  msgstr ""
3693
 
3694
  #. translators: %s: HTML tags
3695
+ #: settings.php:3983
3696
  msgid "Go to %s Google APIs and Services console %s"
3697
  msgstr ""
3698
 
3699
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3700
+ #: settings.php:3984
3701
  msgid ""
3702
  "Create %1$s project - if the project and IDs are already created click on "
3703
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3704
  msgstr ""
3705
 
3706
  #. translators: %s: HTML tags
3707
+ #: settings.php:3985
3708
  msgid ""
3709
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3710
  "create a new project"
3711
  msgstr ""
3712
 
3713
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3714
+ #: settings.php:3986
3715
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3716
  msgstr ""
3717
 
3718
  #. translators: %s: HTML tags
3719
+ #: settings.php:3987
3720
  msgid ""
3721
  "Click on project selection, wait for the project to be created and then and "
3722
  "select %s as the current project"
3723
  msgstr ""
3724
 
3725
  #. translators: %s: HTML tags
3726
+ #: settings.php:3988
3727
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3728
  msgstr ""
3729
 
3730
  #. translators: %s: HTML tags
3731
+ #: settings.php:3989
3732
  msgid "Search for adsense and enable %s"
3733
  msgstr ""
3734
 
3735
  #. translators: %s: HTML tags
3736
+ #: settings.php:3990
3737
  msgid "Click on %s CREATE CREDENTIALS %s"
3738
  msgstr ""
3739
 
3740
  #. translators: %s: HTML tags
3741
+ #: settings.php:3991
3742
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3743
  msgstr ""
3744
 
3745
  #. translators: %s: HTML tags
3746
+ #: settings.php:3992
3747
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3748
  msgstr ""
3749
 
3750
  #. translators: %s: HTML tags
3751
+ #: settings.php:3993
3752
  msgid "Click on %s What credentials do I need? %s"
3753
  msgstr ""
3754
 
3755
  #. translators: %s: HTML tags
3756
+ #: settings.php:3994
3757
  msgid ""
3758
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3759
  "Ad Inserter client %s"
3760
  msgstr ""
3761
 
3762
  #. translators: %s: HTML tags
3763
+ #: settings.php:3995
3764
  msgid ""
3765
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3766
  "enter %s"
3767
  msgstr ""
3768
 
3769
  #. translators: %s: HTML tags
3770
+ #: settings.php:3996
3771
  msgid "Click on %s Continue %s"
3772
  msgstr ""
3773
 
3774
  #. translators: %s: HTML tags
3775
+ #: settings.php:3997
3776
  msgid "Click on %s Done %s"
3777
  msgstr ""
3778
 
3779
  #. translators: %s: HTML tags
3780
+ #: settings.php:3998
3781
  msgid ""
3782
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
3783
  "secret %s"
3784
  msgstr ""
3785
 
3786
+ #: settings.php:3999
3787
  msgid "Copy them to the appropriate fields below"
3788
  msgstr ""
3789
 
3790
+ #: settings.php:4005
3791
  msgid "Client ID"
3792
  msgstr ""
3793
 
3794
+ #: settings.php:4008
3795
  msgid "Enter Client ID"
3796
  msgstr ""
3797
 
3798
+ #: settings.php:4013
3799
  msgid "Client secret"
3800
  msgstr ""
3801
 
3802
+ #: settings.php:4016
3803
  msgid "Enter Client secret"
3804
  msgstr ""
3805
 
3806
+ #: settings.php:4026
3807
  msgid "Use default API IDs"
3808
  msgstr ""
3809
 
3810
+ #: settings.php:4031
3811
  msgid "Save"
3812
  msgstr ""
3813
 
3814
+ #: settings.php:4307 settings.php:4320 settings.php:4333 settings.php:4348
3815
  msgid "Blank ad blocks? Looking for AdSense alternative?"
3816
  msgstr ""
3817
 
3818
+ #: settings.php:4312 settings.php:4325 settings.php:4338 settings.php:4353
3819
+ #: settings.php:4533 settings.php:4537 settings.php:4555 settings.php:4559
3820
+ #: settings.php:4567 settings.php:4570 settings.php:4576 settings.php:4588
3821
  msgid "Looking for AdSense alternative?"
3822
  msgstr ""
3823
 
3824
+ #: settings.php:4364
3825
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
3826
  msgstr ""
3827
 
3828
+ #: settings.php:4369 settings.php:4535 settings.php:4539 settings.php:4547
3829
+ #: settings.php:4573
3830
  msgid "Use Infolinks ads with Adsense to earn more"
3831
  msgstr ""
3832
 
3833
+ #: settings.php:4388 settings.php:4426
3834
  msgid "Support plugin development"
3835
  msgstr ""
3836
 
3837
+ #: settings.php:4389 settings.php:4427
3838
  msgid ""
3839
  "If you like Ad Inserter and have a moment, please help me spread the word by "
3840
  "reviewing the plugin on WordPres"
3841
  msgstr ""
3842
 
3843
+ #: settings.php:4389
3844
  msgctxt "Review ad Inserter"
3845
  msgid "Review"
3846
  msgstr ""
3847
 
3848
+ #: settings.php:4390
3849
  msgid ""
3850
  "Support free Ad Inserter development. If you are making money with Ad "
3851
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
3852
  "you!"
3853
  msgstr ""
3854
 
3855
+ #: settings.php:4390
3856
  msgid "Donate"
3857
  msgstr ""
3858
 
3859
+ #: settings.php:4397 settings.php:4442
3860
  msgid "Average rating of the plugin - Thank you!"
3861
  msgstr ""
3862
 
3863
  #. translators: %s: Ad Inserter, HTML tags
3864
+ #: settings.php:4408
3865
  msgid ""
3866
  "You've been using %s for a while now, and I hope you're happy with it. "
3867
  "Positive %s reviews %s are a great way to show your appreciation for my "
3870
  "your website. %s Thank you!"
3871
  msgstr ""
3872
 
3873
+ #: settings.php:4427
3874
  msgid "Review"
3875
  msgstr ""
3876
 
3877
+ #: settings.php:4431
3878
  msgid "Ad Inserter on Twitter"
3879
  msgstr ""
3880
 
3881
+ #: settings.php:4432
3882
  msgid "Ad Inserter on Facebook"
3883
  msgstr ""
3884
 
3885
+ #: settings.php:4435
3886
  msgid "Follow Ad Inserter"
3887
  msgstr ""
3888
 
3889
  #. translators: %s: HTML tags
3890
+ #: settings.php:4462
3891
  msgid ""
3892
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
3893
  "and %s Common Settings %s pages"
3894
  msgstr ""
3895
 
3896
  #. translators: %s: HTML tags
3897
+ #: settings.php:4474
3898
  msgid ""
3899
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
3900
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
3902
  msgstr ""
3903
 
3904
  #. translators: %s: HTML tags
3905
+ #: settings.php:4495
3906
  msgid ""
3907
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
3908
  "purchase you refer to us"
3909
  msgstr ""
3910
 
3911
  #. translators: %s: HTML tags
3912
+ #: settings.php:4502
3913
  msgid ""
3914
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
3915
  "diagnose and fix the problem."
3916
  msgstr ""
3917
 
3918
  #. translators: %s: HTML tags
3919
+ #: settings.php:4506
3920
  msgid ""
3921
  "If you need any kind of help or support, please do not hesitate to open a "
3922
  "thread on the %s support forum. %s"
3923
  msgstr ""
3924
 
3925
+ #: settings.php:4551 settings.php:4592
3926
  msgid "A/B testing - Track ad impressions and clicks"
3927
  msgstr ""
3928
 
3929
+ #: settings.php:4584 settings.php:4596
3930
  msgid "Code preview with visual CSS editor"
3931
  msgstr ""
3932
 
3933
+ #: settings.php:4604
3934
  msgid "Looking for Pro Ad Management plugin?"
3935
  msgstr ""
3936
 
3937
+ #: settings.php:4605
3938
  msgid "To Optimally Monetize your WordPress website?"
3939
  msgstr ""
3940
 
3941
  #. translators: %s HTML tags
3942
+ #: settings.php:4608
3943
  msgid "%s AdSense Integration %s"
3944
  msgstr ""
3945
 
3946
  #. translators: %s HTML tags
3947
+ #: settings.php:4609
3948
  msgid "Syntax highlighting %s editor %s"
3949
  msgstr ""
3950
 
3951
  #. translators: %s HTML tags
3952
+ #: settings.php:4610
3953
  msgid "%s Code preview %s with visual CSS editor"
3954
  msgstr ""
3955
 
3956
  #. translators: %s HTML tags
3957
+ #: settings.php:4611
3958
  msgid "Simple user interface - all settings on a single page"
3959
  msgstr ""
3960
 
3961
  #. translators: %s HTML tags
3962
+ #: settings.php:4612
3963
  msgid ""
3964
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
3965
  "image / excerpt"
3966
  msgstr ""
3967
 
3968
  #. translators: %s HTML tags
3969
+ #: settings.php:4613
3970
  msgid "%s Automatic insertion %s between posts on blog pages"
3971
  msgstr ""
3972
 
3973
  #. translators: %s HTML tags
3974
+ #: settings.php:4614
3975
  msgid "%s Automatic insertion %s before, between and after comments"
3976
  msgstr ""
3977
 
3978
  #. translators: %s HTML tags
3979
+ #: settings.php:4615
3980
  msgid "%s Automatic insertion %s after %s or before %s tag"
3981
  msgstr ""
3982
 
3983
  #. translators: %s HTML tags
3984
+ #: settings.php:4616
3985
  msgid "Automatic insertion at %s custom hook positions %s"
3986
  msgstr ""
3987
 
3988
  #. translators: %s HTML tags
3989
+ #: settings.php:4617
3990
  msgid ""
3991
  "Insertion %s before or after any HTML element on the page %s (using CSS "
3992
  "selectors)"
3993
  msgstr ""
3994
 
3995
  #. translators: %s HTML tags
3996
+ #: settings.php:4618
3997
  msgid "%s Insertion exceptions %s for individual posts and pages"
3998
  msgstr ""
3999
 
4000
  #. translators: %s HTML tags
4001
+ #: settings.php:4619
4002
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4003
  msgstr ""
4004
 
4005
  #. translators: %s HTML tags
4006
+ #: settings.php:4620
4007
  msgid ""
4008
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4009
  "scrolls)"
4010
  msgstr ""
4011
 
4012
  #. translators: %s HTML tags
4013
+ #: settings.php:4621
4014
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4015
  msgstr ""
4016
 
4017
  #. translators: %s HTML tags
4018
+ #: settings.php:4622
4019
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4020
  msgstr ""
4021
 
4022
  #. translators: %s HTML tags
4023
+ #: settings.php:4623
4024
  msgid ""
4025
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4026
  "visible)"
4027
  msgstr ""
4028
 
4029
  #. translators: %s HTML tags
4030
+ #: settings.php:4624
4031
  msgid ""
4032
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4033
  msgstr ""
4034
 
4035
  #. translators: %s HTML tags
4036
+ #: settings.php:4625
4037
  msgid "Block %s alignment and style %s customizations"
4038
  msgstr ""
4039
 
4040
  #. translators: %s HTML tags
4041
+ #: settings.php:4626
4042
  msgid ""
4043
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4044
  "TOS)"
4045
  msgstr ""
4046
 
4047
  #. translators: %s HTML tags
4048
+ #: settings.php:4627
4049
  msgid ""
4050
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4051
  "feeds"
4052
  msgstr ""
4053
 
4054
  #. translators: %s HTML tags
4055
+ #: settings.php:4628
4056
  msgid "%s Ad rotation %s (works also with caching)"
4057
  msgstr ""
4058
 
4059
  #. translators: %s HTML tags
4060
+ #: settings.php:4629
4061
  msgid "Create, edit and check %s ads.txt %s file"
4062
  msgstr ""
4063
 
4064
  #. translators: %s HTML tags
4065
+ #: settings.php:4630
4066
  msgid ""
4067
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4068
  "AdSense)"
4069
  msgstr ""
4070
 
4071
  #. translators: %s HTML tags
4072
+ #: settings.php:4631
4073
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4074
  msgstr ""
4075
 
4076
  #. translators: %s HTML tags
4077
+ #: settings.php:4632
4078
  msgid "%s Public web reports %s for clients, export to PDF"
4079
  msgstr ""
4080
 
4081
  #. translators: %s HTML tags
4082
+ #: settings.php:4633
4083
  msgid "Support for %s A/B testing %s"
4084
  msgstr ""
4085
 
4086
  #. translators: %s HTML tags
4087
+ #: settings.php:4634
4088
  msgid "Support for %s lazy loading %s"
4089
  msgstr ""
4090
 
4091
  #. translators: %s HTML tags
4092
+ #: settings.php:4635
4093
  msgid "Support for ads on %s AMP pages %s"
4094
  msgstr ""
4095
 
4096
  #. translators: %s HTML tags
4097
+ #: settings.php:4636
4098
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4099
  msgstr ""
4100
 
4101
  #. translators: %s HTML tags
4102
+ #: settings.php:4637
4103
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4104
  msgstr ""
4105
 
4106
  #. translators: %s HTML tags
4107
+ #: settings.php:4638
4108
  msgid "PHP code processing"
4109
  msgstr ""
4110
 
4111
  #. translators: %s HTML tags
4112
+ #: settings.php:4639
4113
  msgid "%s Banner %s code generator"
4114
  msgstr ""
4115
 
4116
  #. translators: %s HTML tags
4117
+ #: settings.php:4640
4118
  msgid "Support for %s header and footer %s code"
4119
  msgstr ""
4120
 
4121
  #. translators: %s HTML tags
4122
+ #: settings.php:4641
4123
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4124
  msgstr ""
4125
 
4126
  #. translators: %s HTML tags
4127
+ #: settings.php:4642
4128
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4129
  msgstr ""
4130
 
4131
  #. translators: %s HTML tags
4132
+ #: settings.php:4643
4133
  msgid "Client-side %s mobile device detection %s (works with caching)"
4134
  msgstr ""
4135
 
4136
  #. translators: %s HTML tags
4137
+ #: settings.php:4644
4138
  msgid ""
4139
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4140
  "protection"
4141
  msgstr ""
4142
 
4143
  #. translators: %s HTML tags
4144
+ #: settings.php:4645
4145
  msgid "%s Ad blocking statistics %s"
4146
  msgstr ""
4147
 
4148
  #. translators: %s HTML tags
4149
+ #: settings.php:4646
4150
  msgid ""
4151
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4152
  "referers"
4153
  msgstr ""
4154
 
4155
  #. translators: %s HTML tags
4156
+ #: settings.php:4647
4157
  msgid ""
4158
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4159
  msgstr ""
4160
 
4161
  #. translators: %s HTML tags
4162
+ #: settings.php:4648
4163
  msgid "%s Multisite options %s to limit settings on the sites"
4164
  msgstr ""
4165
 
4166
  #. translators: %s HTML tags
4167
+ #: settings.php:4649
4168
  msgid "%s Import/Export %s block or plugin settings"
4169
  msgstr ""
4170
 
4171
  #. translators: %s HTML tags
4172
+ #: settings.php:4650
4173
  msgid "%s Insertion scheduling %s with fallback option"
4174
  msgstr ""
4175
 
4176
  #. translators: %s HTML tags
4177
+ #: settings.php:4651
4178
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4179
  msgstr ""
4180
 
4181
  #. translators: %s HTML tags
4182
+ #: settings.php:4652
4183
  msgid "Simple troubleshooting with many %s debugging functions %s"
4184
  msgstr ""
4185
 
4186
  #. translators: %s HTML tags
4187
+ #: settings.php:4653
4188
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4189
  msgstr ""
4190
 
4191
  #. translators: %s HTML tags
4192
+ #: settings.php:4654
4193
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4194
  msgstr ""
4195
 
4196
  #. translators: %s HTML tags
4197
+ #: settings.php:4655
4198
  msgid ""
4199
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4200
  msgstr ""
4201
 
4202
  #. translators: %s HTML tags
4203
+ #: settings.php:4656
4204
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4205
  msgstr ""
4206
 
4207
  #. translators: %s HTML tags
4208
+ #: settings.php:4657
4209
  msgid "No ads on the settings page"
4210
  msgstr ""
4211
 
4212
  #. translators: %s HTML tags
4213
+ #: settings.php:4658
4214
  msgid "Premium support"
4215
  msgstr ""
4216
 
4217
  #. translators: %s HTML tags
4218
+ #: settings.php:4661
4219
  msgid ""
4220
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4221
  "website with many advertising features to automatically insert adverts on "
4230
  msgstr ""
4231
 
4232
  #. translators: %s HTML tags
4233
+ #: settings.php:4674
4234
  msgid "Looking for %s Pro Ad Management plugin? %s"
4235
  msgstr ""
4236
 
4237
  #. translators: %s HTML tags
4238
+ #: settings.php:4679
4239
  msgid "Ads between posts"
4240
  msgstr ""
4241
 
4242
  #. translators: %s HTML tags
4243
+ #: settings.php:4680
4244
  msgid "Ads between comments"
4245
  msgstr ""
4246
 
4247
  #. translators: %s HTML tags
4248
+ #: settings.php:4681
4249
  msgid "Support via email"
4250
  msgstr ""
4251
 
4252
  #. translators: %s HTML tags
4253
+ #: settings.php:4687
4254
  msgid "%s Sticky positions %s"
4255
  msgstr ""
4256
 
4257
  #. translators: %s HTML tags
4258
+ #: settings.php:4688
4259
  msgid "%s Limit insertions %s"
4260
  msgstr ""
4261
 
4262
  #. translators: %s HTML tags
4263
+ #: settings.php:4689
4264
  msgid "%s Clearance %s options"
4265
  msgstr ""
4266
 
4267
  #. translators: %s HTML tags
4268
+ #: settings.php:4695
4269
  msgid "Ad rotation"
4270
  msgstr ""
4271
 
4272
  #. translators: %s HTML tags
4273
+ #: settings.php:4696
4274
  msgid "%s A/B testing %s"
4275
  msgstr ""
4276
 
4277
  #. translators: %s HTML tags
4278
+ #: settings.php:4697
4279
  msgid "%s Ad tracking %s"
4280
  msgstr ""
4281
 
4282
  #. translators: %s HTML tags
4283
+ #: settings.php:4703
4284
  msgid "Support for %s AMP pages %s"
4285
  msgstr ""
4286
 
4287
  #. translators: %s HTML tags
4288
+ #: settings.php:4704
4289
  msgid "%s Ad blocking detection %s"
4290
  msgstr ""
4291
 
4292
  #. translators: %s HTML tags
4293
+ #: settings.php:4705
4294
  msgid "%s Mobile device detection %s"
4295
  msgstr ""
4296
 
4297
  #. translators: %s HTML tags
4298
+ #: settings.php:4712
4299
  msgid "64 code blocks"
4300
  msgstr ""
4301
 
4302
  #. translators: %s HTML tags
4303
+ #: settings.php:4713
4304
  msgid "%s GEO targeting %s"
4305
  msgstr ""
4306
 
4307
  #. translators: %s HTML tags
4308
+ #: settings.php:4714
4309
  msgid "%s Scheduling %s"
4310
  msgstr ""
4311
 
4945
  msgid "Invalid date range - only data for 1 year can be displayed"
4946
  msgstr ""
4947
 
 
 
 
 
 
 
 
4948
  #: strings.php:201
4949
  msgid "Delete"
4950
  msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
6
  Requires at least: 4.0
7
  Tested up to: 5.2
8
  Requires PHP: 5.6
9
- Stable tag: 2.4.22
10
  License: GPLv3
11
 
12
  Manage ads: Google AdSense, Media.net, Amazon banners, ad rotation, sticky widgets, AMP ads, DFP, PHP, tracking, AdSense header and footer code
@@ -313,6 +313,14 @@ If you are not happy to reveal this information and you have opted in, simply di
313
 
314
  == Changelog ==
315
 
 
 
 
 
 
 
 
 
316
  = 2.4.22 =
317
  - Fix for remote code execution vulnerability - credit to Wordfence
318
 
@@ -448,6 +456,14 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
448
 
449
  == Upgrade Notice ==
450
 
 
 
 
 
 
 
 
 
451
  = 2.4.22 =
452
  Fix for remote code execution vulnerability
453
 
6
  Requires at least: 4.0
7
  Tested up to: 5.2
8
  Requires PHP: 5.6
9
+ Stable tag: 2.4.23
10
  License: GPLv3
11
 
12
  Manage ads: Google AdSense, Media.net, Amazon banners, ad rotation, sticky widgets, AMP ads, DFP, PHP, tracking, AdSense header and footer code
313
 
314
  == Changelog ==
315
 
316
+ = 2.4.23 =
317
+ - Added support to define custom fields with shortocdes
318
+ - Added support to delay showing ads for specified number of pageviews (Pro only)
319
+ - Added support to remember closed ad for specified time period (Pro only)
320
+ - Added support to automatically close ad after specified time period (Pro only)
321
+ - Fix for false positive ad blocking detection (Pro only)
322
+ - Few minor bug fixes, cosmetic changes and code improvements
323
+
324
  = 2.4.22 =
325
  - Fix for remote code execution vulnerability - credit to Wordfence
326
 
456
 
457
  == Upgrade Notice ==
458
 
459
+ = 2.4.23 =
460
+ Added support to define custom fields with shortocdes;
461
+ Added support to delay showing ads for specified number of pageviews (Pro only);
462
+ Added support to remember closed ad for specified time period (Pro only);
463
+ Added support to automatically close ad after specified time period (Pro only);
464
+ Fix for false positive ad blocking detection (Pro only);
465
+ Few minor bug fixes, cosmetic changes and code improvements;
466
+
467
  = 2.4.22 =
468
  Fix for remote code execution vulnerability
469
 
settings.php CHANGED
@@ -529,7 +529,11 @@ function generate_settings_form (){
529
 
530
  $adb_block_action_active = $obj->get_adb_block_action () != AI_ADB_BLOCK_ACTION_DO_NOTHING;
531
 
532
- $display_options = $obj->get_show_label () || $obj->get_lazy_loading () || $obj->get_close_button () || $obj->get_auto_close_time () || $obj->get_stay_closed_time () || $obj->get_iframe ();
 
 
 
 
533
 
534
  $show_misc =
535
  $insertion_options ||
@@ -1922,6 +1926,8 @@ function generate_settings_form (){
1922
 
1923
  <?php if (function_exists ('ai_close_button')) ai_close_button ($block, $obj, $default); ?>
1924
 
 
 
1925
  <?php if (function_exists ('ai_iframes')) ai_iframes ($block, $obj, $default); ?>
1926
  </div>
1927
 
529
 
530
  $adb_block_action_active = $obj->get_adb_block_action () != AI_ADB_BLOCK_ACTION_DO_NOTHING;
531
 
532
+ $display_options =
533
+ $obj->get_show_label () || $obj->get_lazy_loading () ||
534
+ $obj->get_close_button () || $obj->get_auto_close_time () || $obj->get_stay_closed_time () ||
535
+ $obj->get_delay_showing () || $obj->get_show_every () ||
536
+ $obj->get_iframe ();
537
 
538
  $show_misc =
539
  $insertion_options ||
1926
 
1927
  <?php if (function_exists ('ai_close_button')) ai_close_button ($block, $obj, $default); ?>
1928
 
1929
+ <?php if (function_exists ('ai_delay_showing')) ai_delay_showing ($block, $obj, $default); ?>
1930
+
1931
  <?php if (function_exists ('ai_iframes')) ai_iframes ($block, $obj, $default); ?>
1932
  </div>
1933